@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;
}
@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 .gallery__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6%;
}
.commitment .sec .gallery__item {
  width: 20%;
}
@media screen and (max-width: 1024px) {
  .commitment .sec .gallery__item {
    width: 47%;
  }
}
.commitment .sec .gallery__item a {
  display: block;
  aspect-ratio: 412/303;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.commitment .sec .gallery__item a img {
  transform: scale(1);
  transition: all 0.3s;
}
.commitment .sec .gallery__item a:hover {
  cursor: pointer;
}
.commitment .sec .gallery__item a:hover img {
  transform: scale(1.02);
  transition: all 0.3s;
}
.commitment .sec:nth-of-type(2) .box {
  flex-direction: row-reverse;
}
@media screen and (max-width: 1024px) {
  .commitment .sec:nth-of-type(2) .box {
    flex-direction: column;
  }
}