@keyframes yurari {
  0% {
    transform: rotate(8deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes yurari_2deg {
  0% {
    transform: rotate(2deg);
  }
  100% {
    transform: rotate(-2deg);
  }
}
@keyframes yurari_1deg {
  0% {
    transform: rotate(1deg);
  }
  100% {
    transform: rotate(-1deg);
  }
}
@keyframes yurari_10deg {
  0% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(-7deg);
  }
}
@keyframes zoom {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  40% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  80% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes passing-bar {
  0% {
    transform: scaleX(0) translateX(-100%);
  }
  50% {
    transform: scaleX(1) translateX(0);
  }
  51% {
    transform: scaleX(1) translateX(0);
  }
  100% {
    transform: scaleX(1) translateX(101%);
  }
}
@keyframes passing-txt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes roll {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes mask-bg {
  0% {
    transform: translate(0, 101%);
  }
  40%, 60% {
    transform: translate(0, 0%);
  }
  100% {
    transform: translate(0, -100%);
  }
}
@keyframes bg {
  0% {
    opacity: 0;
    transform: scaleX(0) translateX(-5%);
  }
  30% {
    transform: scaleX(1) translateX(0);
  }
  100% {
    transform: scaleX(1) translateX(0);
  }
  30%, 100% {
    opacity: 1;
  }
}
@keyframes stroke-width {
  0% {
    width: 0;
    opacity: 1;
  }
  100% {
    width: calc(100% - 20px);
    width: 100%;
    opacity: 1;
  }
}
@keyframes stroke-height {
  0% {
    height: 0;
    opacity: 1;
  }
  100% {
    height: calc(100% - 20px);
    height: 100%;
    opacity: 1;
  }
}
p,
a,
li,
dt,
dd,
th,
td {
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  p,
  a,
  li,
  dt,
  dd,
  th,
  td {
    line-height: 1.8;
  }
}

.display_w600 {
  display: none;
}
@media screen and (max-width: 600px) {
  .display_w600 {
    display: block;
  }
}

.f_en {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.commitment .sec .box {
  justify-content: space-between;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .commitment .sec .box {
    margin-bottom: 30px;
  }
}
.commitment .sec .box .img {
  width: 47%;
}
@media screen and (max-width: 1024px) {
  .commitment .sec .box .img {
    width: 100%;
    margin-bottom: 20px;
  }
}
.commitment .sec .box .content {
  width: 47%;
}
@media screen and (max-width: 1024px) {
  .commitment .sec .box .content {
    width: 100%;
    margin-bottom: 20px;
  }
}
.commitment .sec .box .title {
  position: relative;
}
.commitment .sec .box .title::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--gold);
  margin: auto;
}
.commitment .sec .box .title .en {
  font-size: 3.2rem;
  letter-spacing: 0.1em;
  display: block;
}
@media screen and (max-width: 1024px) {
  .commitment .sec .box .title .en {
    font-size: clamp(12px, 1.6rem, 1.6rem);
  }
}
.commitment .sec .box .title .ja {
  font-size: 1.5rem;
}
@media screen and (max-width: 1024px) {
  .commitment .sec .box .title .ja {
    font-size: clamp(12px, 0.75rem, 0.75rem);
  }
}
.commitment .sec .detail {
  position: relative;
}
.commitment .sec .detail::before {
  content: "";
  display: block;
  background-color: rgba(200, 188, 164, 0.7);
  width: 90%;
  height: 120%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .commitment .sec .detail::before {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
}
.commitment .sec .detail__list {
  padding: 60px;
  display: flex;
  gap: 5%;
  margin: auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .commitment .sec .detail__list {
    flex-direction: column;
  }
}
@media screen and (max-width: 600px) {
  .commitment .sec .detail__list {
    padding: 30px;
  }
}
.commitment .sec .detail__item {
  width: 30%;
}
@media screen and (max-width: 1024px) {
  .commitment .sec .detail__item {
    width: 100%;
    margin-bottom: 20px;
  }
}
.commitment .sec .detail__item .img {
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .commitment .sec .detail__item .img {
    margin-bottom: 10px;
  }
}
.commitment .sec .detail__item .title {
  font-size: 1.1em;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-align: center;
}
.commitment .sec:nth-of-type(2) .box, .commitment .sec:nth-of-type(4) .box  {
  flex-direction: row-reverse;
}
@media screen and (max-width: 1024px) {
  .commitment .sec:nth-of-type(2) .box, .commitment .sec:nth-of-type(4) .box {
    flex-direction: column;
  }
}
.commitment .sec:nth-of-type(2) .detail::before, .commitment .sec:nth-of-type(4) .detail::before {
  right: unset;
  left: 0;
  z-index: 1;
}

.fancy-ico span {
  background-color: var(--gold) !important;
}