html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  font-style: normal;
}

.tel-link {
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .tel-link {
    pointer-events: auto;
  }
}
.header {
  display: flex;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  padding: 0 24px;
  transition: all 0.2s;
}
.header__inner {
  max-width: 1380px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0px;
}
.header__inner .header__logo img {
  aspect-ratio: 295/44;
  width: 295px;
  height: auto;
  object-fit: contain;
  transition: all 0.2s;
}
.header__inner .header-right {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-right: 10px;
}
.header__inner .header-right .header-nav {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
.header__inner .header-right .header-nav__item {
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
  text-overflow: ellipsis;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: var(--Font-Line-height-Body-xs, 18px); /* 112.5% */
}
.header__inner .header-right .header-nav__item:last-child:after {
  display: none;
}
.header__inner .header-right .cmn-btn {
  padding-left: 22px;
}

.header.is-active {
  background-color: rgba(0, 0, 0, 0.45);
}
.hamburger-menu {
  z-index: 12;
  width: 40px;
  height: 23px;
  display: none;
  position: relative;
}
.hamburger-menu .menu-open-btn {
  width: 40px;
  height: 23px;
  display: block;
  position: relative;
}
.hamburger-menu .menu-open-btn__line {
  display: block;
  background-color: white;
  width: 100%;
  height: 2px;
  transition: all 0.4s;
}
.hamburger-menu .menu-open-btn__line--middle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.hamburger-menu .menu-open-btn__line--bottom {
  position: absolute;
  bottom: 0;
}
.hamburger-menu .menu-open-btn--white .menu-open-btn__line {
  background-color: white;
}
.hamburger-menu .clicked .menu-open-btn__line {
  transition: all 0.4s;
  background-color: #222;
}
.hamburger-menu .clicked .menu-open-btn__line--top {
  transform: translateY(10px) rotate(-45deg);
}
.hamburger-menu .clicked .menu-open-btn__line--middle {
  display: none;
}
.hamburger-menu .clicked .menu-open-btn__line--bottom {
  transform: translateY(-10px) rotate(45deg);
}

.header-nav-hmb {
  display: none;
  position: fixed;
  z-index: 100;
  right: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.9);
  z-index: 11;
  width: 70vw;
  height: 100vh;
}
.header-nav-hmb .header-items {
  display: flex;
  flex-direction: column;
  max-width: 80%;
  width: 100%;
  margin: 0 auto;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  color: black;
}
.header-nav-hmb .header-items__item {
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  padding-bottom: 16px;
  margin-bottom: 24px;
  border-bottom: 1px dotted black;
}
.header-nav-hmb .header-items__item--cta {
  border-bottom: none;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.header-nav-hmb .header-items__item--cta .contact-section__hours-phone {
  text-align: center;
  color: #222;
  margin-bottom: 0;
}
.header-nav-hmb .header-items__item--cta .contact-section__hours {
  text-align: center;
  color: #222;
}
.header-nav-hmb .header-items__item--cta .contact-section__phone {
  text-align: center;
  align-items: center;
  justify-content: center;
  color: #222;
}
.header-nav-hmb .header-items__item--cta .icon-phone svg {
  fill: #222;
}
.header-nav-hmb .header-items__item--cta .icon-phone svg path {
  fill: #222;
}
.header-nav-hmb .header-items__item--cta .contact-section__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #000000;
  color: #fff;
  /* text/16- Bold -line-hgeiht:160% - -letter-padding:6% */
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 25.6px */
  letter-spacing: 0.64px;
  padding: 12px 0px;
  width: 100%;
}
.header-nav-hmb .header-items--reserve-btn {
  margin-top: 30px;
  text-align: center;
}
.header-nav-hmb .cta {
  max-width: none;
  height: 45px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-nav-hmb .cta--left {
  background: #5389db;
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.header-nav-hmb .cta--left__icon {
  background-image: url(../assets/svgs/download.svg);
  margin-right: 4px;
  margin-top: 6px;
}
.header-nav-hmb .cta--right {
  background: #fff;
  color: #5389db;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.filter-hmb {
  display: none;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
}

@media screen and (max-width: 1200px) {
  .header {
    display: flex;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    padding: 0 24px;
    transition: all 0.2s;
  }
  .header__inner {
    max-width: 1380px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0px;
  }
  .header__inner .header__logo img {
    aspect-ratio: 243/58.83;
    width: 180px;
    height: auto;
    object-fit: contain;
    transition: all 0.2s;
  }
  .header__inner .header-right {
    display: none;
    gap: 40px;
    align-items: center;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-right: 10px;
  }
  .header__inner .header-right .header-nav {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
  }
  .header__inner .header-right .header-nav__item {
    display: flex;
    justify-content: center;
    position: relative;
    color: #fff;
    text-align: center;
    text-overflow: ellipsis;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: var(--Font-Line-height-Body-xs, 18px); /* 112.5% */
  }
  .header__inner .header-right .header-nav__item:last-child:after {
    display: none;
  }
  .header__inner .header-right .cmn-btn {
    padding-left: 22px;
  }
  .header__inner .hamburger-menu {
    display: flex;
  }
}
.footer .footer-wrap {
  background: linear-gradient(90deg, var(--Gradients-Primary-03, #0054B6) 0%, #0D62C3 0.01%, #776DF9 100%);
  display: flex;
  justify-content: center;
  padding: 0 24px;
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 53px;
  padding-bottom: 54px;
  max-width: 1120px;
  width: 100%;
}
.footer__inner .footer-left .footer-logo {
  display: block;
  aspect-ratio: 296/44;
  max-width: 296px;
  width: 100%;
  margin-bottom: 18px;
}
.footer__inner .footer-left .footer-logo img {
  width: 100%;
  height: auto;
}
.footer__inner .footer-left .footer-info {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px; /* 168.75% */
  width: fit-content;
}
.footer__inner .footer-right .footer-nav-list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__inner .footer-right .footer-nav-list .footer-nav-item {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px; /* 168.75% */
  position: relative;
}
.footer .footer-copy {
  background: #103832;
  padding: 20px 24px;
  text-align: center;
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 14px */
  letter-spacing: 0.56px;
}

@media screen and (max-width: 768px) {
  .footer .footer-wrap {
    background: linear-gradient(90deg, var(--Gradients-Primary-03, #0054B6) 0%, #0D62C3 0.01%, #776DF9 100%);
    display: flex;
    justify-content: center;
    padding: 0 24px;
  }
  .footer__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding-top: 32px;
    padding-bottom: 32px;
    max-width: 1120px;
    width: 100%;
  }
  .footer__inner .footer-left .footer-logo {
    display: block;
    aspect-ratio: 296/44;
    max-width: 180px;
    width: 100%;
    margin-bottom: 18px;
  }
  .footer__inner .footer-left .footer-logo img {
    width: 100%;
    height: auto;
  }
  .footer__inner .footer-left .footer-info {
    color: #fff;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px; /* 168.75% */
    width: fit-content;
  }
  .footer__inner .footer-right .footer-nav-list {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }
  .footer__inner .footer-right .footer-nav-list .footer-nav-item {
    color: #fff;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 168.75% */
    position: relative;
  }
  .footer .footer-copy {
    background: #103832;
    padding: 20px 24px;
    text-align: center;
    color: #fff;
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 14px */
    letter-spacing: 0.56px;
  }
}
.cmn-head__en {
  font-family: Montserrat;
  font-size: 92px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 92px */
  letter-spacing: 0.92px;
  margin-bottom: 8px;
}
.cmn-head__jp {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 24px */
  letter-spacing: 0.96px;
}
.cmn-head--blue .cmn-head__en {
  color: #0054b6;
}
.cmn-head--deep-blue .cmn-head__en {
  color: #004392;
}
.cmn-head--white .cmn-head__en {
  color: #fff;
}
.cmn-head--white .cmn-head__jp {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .cmn-head__en {
    font-family: Montserrat;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 92px */
    letter-spacing: 0.92px;
    margin-bottom: 8px;
  }
  .cmn-head__jp {
    color: #000;
    font-family: "Noto Sans JP";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 24px */
    letter-spacing: 0.96px;
  }
  .cmn-head--blue .cmn-head__en {
    color: #0054b6;
  }
  .cmn-head--deep-blue .cmn-head__en {
    color: #004392;
  }
  .cmn-head--white .cmn-head__en {
    color: #fff;
  }
  .cmn-head--white .cmn-head__jp {
    color: #fff;
  }
}
.cmn-btn1 {
  border: 1px solid #fff;
  background: linear-gradient(90deg, var(--Gradients-Primary-03, #0054b6) 0%, #0d62c3 0.01%, #776df9 100%);
  color: #fff;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 18px */
  padding: 20px 0px;
  max-width: 242px;
  width: 100%;
  position: relative;
  display: block;
  filter: drop-shadow(2px 2px 10px rgba(0, 0, 0, 0.25));
}
.cmn-btn1::after {
  content: "";
  position: absolute;
  background-image: url(/assets/images/arrow-right.png);
  background-size: cover;
  width: 16px;
  height: 16px;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}
.cmn-btn1--contact {
  max-width: 201px;
  width: 100%;
  padding: 12px 24px 12px 57px;
  color: var(--General-Neutral-static-white, #fff);
  font-family: "Noto Sans JP";
  font-size: var(--Font-Size-Body-xl, 20px);
  font-style: normal;
  font-weight: 700;
  line-height: var(--Font-Line-height-Body-xl, 30px); /* 150% */
  white-space: nowrap;
}
.cmn-btn1--contact::after {
  content: "";
  position: absolute;
  background-image: url(/assets/images/contact-logo.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 25px;
  height: 18px;
  top: 50%;
  transform: translateY(-50%);
  right: auto;
  left: 24px;
}

.cmn-btn2 {
  border: 1px solid #fff;
  color: #fff;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 18px */
  padding: 20px 0px;
  max-width: 242px;
  width: 100%;
  position: relative;
  display: block;
}
.cmn-btn2::after {
  content: "";
  position: absolute;
  background-image: url(/assets/images/arrow-right.png);
  background-size: cover;
  width: 16px;
  height: 16px;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}

@media screen and (max-width: 768px) {
  .cmn-btn1 {
    border: 1px solid #fff;
    background: linear-gradient(90deg, var(--Gradients-Primary-03, #0054b6) 0%, #0d62c3 0.01%, #776df9 100%);
    color: #fff;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 18px */
    padding: 12px 0px;
    max-width: 242px;
    width: 100%;
    position: relative;
    display: block;
    filter: drop-shadow(2px 2px 10px rgba(0, 0, 0, 0.25));
  }
  .cmn-btn1::after {
    content: "";
    position: absolute;
    background-image: url(/assets/images/arrow-right.png);
    background-size: cover;
    width: 16px;
    height: 16px;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
  }
  .cmn-btn1--contact {
    max-width: 201px;
    width: 100%;
    padding: 12px 24px 12px 57px;
    color: var(--General-Neutral-static-white, #fff);
    font-family: "Noto Sans JP";
    font-size: var(--Font-Size-Body-xl, 20px);
    font-style: normal;
    font-weight: 700;
    line-height: var(--Font-Line-height-Body-xl, 30px); /* 150% */
    white-space: nowrap;
  }
  .cmn-btn1--contact::after {
    content: "";
    position: absolute;
    background-image: url(/assets/images/contact-logo.png);
    background-size: contain;
    width: 25px;
    height: 18px;
    top: 50%;
    transform: translateY(-50%);
    right: auto;
    left: 24px;
  }
  .cmn-btn2 {
    border: 1px solid #fff;
    color: #fff;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 18px */
    padding: 12px 0px;
    max-width: 242px;
    width: 100%;
    position: relative;
    display: block;
  }
  .cmn-btn2::after {
    content: "";
    position: absolute;
    background-image: url(/assets/images/arrow-right.png);
    background-size: cover;
    width: 16px;
    height: 16px;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
  }
}
.center {
  margin: 0 auto;
}

.pv {
  background-image: url(/assets/images/pv-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.pv__inner {
  padding-top: 169px;
  padding-bottom: 169px;
}
.pv .pv-title-en {
  color: #fff;
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 100% */
  margin-bottom: 12px;
}
.pv .pv-title-jp {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 56px */
  letter-spacing: 2.24px;
}
.pv .pv-title-jp span {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 1.6px;
}

@media screen and (max-width: 768px) {
  .pv {
    background-image: url(/assets/images/pv-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .pv__inner {
    padding-top: 100px;
    padding-bottom: 80px;
  }
  .pv .pv-title-en {
    color: #fff;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 100% */
    margin-bottom: 12px;
  }
  .pv .pv-title-jp {
    color: #fff;
    font-family: "Noto Sans JP";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 56px */
    letter-spacing: 2.24px;
  }
  .pv .pv-title-jp span {
    color: #fff;
    font-family: "Noto Sans JP";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 1.6px;
  }
}
.breadcrumbs__inner {
  padding-top: 16px;
  padding-bottom: 80px;
}
.breadcrumbs__inner ul {
  display: flex;
}
.breadcrumbs__inner ul li {
  color: #4c4c4c;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 175%;
}
.breadcrumbs__inner ul li a {
  color: #4c4c4c;
  font-family: "Sawarabi Gothic";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 16px */
  letter-spacing: 0.16px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

@media screen and (max-width: 768px) {
  .breadcrumbs__inner {
    padding-top: 16px;
    padding-bottom: 40px;
  }
}
.subp-head {
  color: #002147;
  font-family: "Noto Sans JP";
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 28px */
  letter-spacing: 1.12px;
  background: linear-gradient(90deg, #eef4ff 0%, #f2f1ff 100%);
  padding: 11px;
}

.subp-head2 {
  color: #002147;
  font-family: "Noto Sans JP";
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 35.2px */
  position: relative;
  padding-left: 27px;
  border-bottom: none;
  position: relative;
  margin-bottom: 44px;
}
.subp-head2::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 1px;
  background: #0054b6;
}
.subp-head2:before {
  content: "";
  display: block;
  width: 12px;
  height: 34px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #0054b6;
}

@media screen and (max-width: 768px) {
  .subp-head {
    color: #002147;
    font-family: "Noto Sans JP";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 28px */
    letter-spacing: 1.12px;
    background: linear-gradient(90deg, #eef4ff 0%, #f2f1ff 100%);
    padding: 11px;
  }
  .subp-head2 {
    color: #002147;
    font-family: "Noto Sans JP";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%; /* 35.2px */
    position: relative;
    padding-left: 20px;
    border-bottom: none;
    position: relative;
    margin-bottom: 20px;
  }
  .subp-head2::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -12px;
    height: 1px;
    background: #0054b6;
  }
  .subp-head2:before {
    content: "";
    display: block;
    width: 10px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #0054b6;
  }
}
.img-scroll-wrapper {
  overflow-x: scroll;
}
.img-scroll-wrapper img {
  width: 1120px;
  height: auto;
  object-fit: contain;
}

.list .single-list {
  padding-bottom: 16px;
  border-bottom: 1px dashed #363636;
  padding-top: 16px;
}
.list .single-list:first-child {
  padding-top: 0px;
}
.list .single-list__date {
  color: #727272;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 16px */
  margin-bottom: 4px;
}
.list .single-list__title {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}
.list .single-list__title a {
  color: #0645ad;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
  text-decoration-line: underline;
}
.list .single-list__title .orange {
  color: #ff6f00;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 28.8px */
}
.list .img-wrap {
  margin-top: 4px;
  margin-bottom: 4px;
}
.list .img-wrap--single img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.list .img-wrap--four {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2.2222222222%;
  row-gap: 16px;
}
.list .img-wrap--four img {
  max-width: 256px;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.list .img-wrap--include-youtube .youtube {
  aspect-ratio: 462/341;
  max-width: 462px;
  width: 100%;
  height: auto;
}
.list .img-wrap--include-youtube .youtube iframe {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .img-scroll-wrapper {
    overflow-x: scroll;
  }
  .img-scroll-wrapper img {
    width: 768px;
    height: auto;
    object-fit: contain;
  }
  .list .single-list {
    padding-bottom: 12px;
    border-bottom: 1px dashed #363636;
    padding-top: 12px;
  }
  .list .single-list:first-child {
    padding-top: 0px;
  }
  .list .single-list__date {
    color: #727272;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 16px */
    margin-bottom: 4px;
  }
  .list .single-list__title {
    color: #000;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
  }
  .list .single-list__title a {
    color: #0645ad;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 22.4px */
    text-decoration-line: underline;
  }
  .list .single-list__title .orange {
    color: #ff6f00;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%; /* 28.8px */
  }
  .list .img-wrap {
    margin-top: 4px;
    margin-bottom: 4px;
  }
  .list .img-wrap--single img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  .list .img-wrap--four {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2.2222222222%;
    row-gap: 16px;
  }
  .list .img-wrap--four img {
    max-width: 256px;
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  .list .img-wrap--include-youtube .youtube {
    aspect-ratio: 462/341;
    max-width: 462px;
    width: 100%;
    height: auto;
  }
  .list .img-wrap--include-youtube .youtube iframe {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}/*# sourceMappingURL=commons.css.map */