* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul {
  list-style-type: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol,
div {
  margin: 0;
  padding: 0;
}

html {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 62.5%;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 2;
  color: #303030;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  vertical-align: middle;
  font-style: italic;
}

main {
  margin-top: 108px;
  padding-top: 1px;
}
@media screen and (max-width: 1200px) {
  main {
    margin-top: 76px;
  }
}
@media screen and (max-width: 767px) {
  main {
    margin-top: 61px;
  }
}

.image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.image--100 {
  height: 100%;
}
.image--auto {
  width: auto;
}
.image--contain {
  -o-object-fit: contain;
     object-fit: contain;
}
.image--br {
  border-radius: 10px;
}

.button {
  position: relative;
  min-width: 340px;
  min-height: 60px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 5px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .button {
    min-width: 295px;
    max-width: 100%;
    font-size: 14px;
  }
}
.button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url("./public/img/common/button-arrow.svg") no-repeat center/cover;
}
.button:hover::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.3);
  pointer-events: none;
}
.button--sns {
  min-width: 295px;
  height: 50px;
}
.button--blue {
  background: #155c92;
}
.button--green {
  background: #06c655;
}
.button--black {
  min-width: 250px;
  min-height: 60px;
  background: #000;
}
@media screen and (max-width: 767px) {
  .button--black {
    min-width: 150px;
    min-height: 50px;
  }
}
.button--black::after {
  display: none;
}
.button--center {
  margin: 0 auto;
}

.container {
  padding: 0 5.33%;
  margin: 0 auto;
  max-width: calc(1000px + 10.66%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .container {
    max-width: 100%;
  }
}

.heading {
  font-size: 4rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .heading {
    font-size: 32px;
  }
}
.heading--center {
  text-align: center;
}
.heading--sm {
  font-size: 2.4rem;
}
.heading--line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .heading--line {
    gap: 16px;
    margin-bottom: 24px;
  }
}
.heading--line::before {
  display: inline-block;
  content: "";
  width: 12px;
  height: 50px;
  background: #155c92;
}
@media screen and (max-width: 767px) {
  .heading--line::before {
    width: 8px;
    height: 34px;
  }
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}
.header__container {
  max-width: calc(1920px + 4.32%);
  padding: 24px 2.16%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
}
@media screen and (max-width: 1200px) {
  .header__container {
    max-width: 100%;
    padding-block: 8px;
    -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.16);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.16);
  }
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 174px;
  }
}
.header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
}
@media screen and (max-width: 1200px) {
  .header__menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: calc(100% - 61px);
    padding-top: 64px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 32px;
    background: #f1eae0;
    -webkit-transition: 0.6s ease;
    transition: 0.6s ease;
    z-index: -1;
  }
}
@media screen and (max-width: 767px) {
  .header__menu {
    padding-inline: 10.6666666667%;
  }
}
@media screen and (max-width: 1200px) {
  .header__menu.active {
    top: 61px;
    overflow-y: scroll;
  }
}
.header__menu-item {
  font-size: 1.8rem;
}
.header__line-button {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 160px;
  min-height: 60px;
  border-radius: 5px;
  background: #06c655;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  gap: 8.8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .header__line-button {
    min-width: 45px;
    min-height: 45px;
  }
}
.header__line-button::before {
  display: inline-block;
  content: "";
  width: 25px;
  height: 24px;
  background: url("./public/img/common/line-logo.svg") no-repeat center/cover;
}
.header__line-button:hover::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.3);
  pointer-events: none;
}
@media screen and (max-width: 1200px) {
  .header__menu-button-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
    margin-top: 8px;
  }
}
.header__button-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

.banner--no-image {
  padding-top: 52px;
}
.banner__text {
  font-size: 5rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .banner__text {
    font-size: 30px;
  }
}
.banner__image-wrapper {
  position: relative;
  max-width: 1840px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .banner__image-wrapper {
    height: 150px;
  }
}
.banner__image-text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 5rem;
  font-weight: 700;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .banner__image-text {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .banner__image-text {
    font-size: 25px;
  }
}

.breadcrumbs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
  margin: 24px 0;
}
@media screen and (max-width: 767px) {
  .breadcrumbs__list {
    margin: 12px 0;
    gap: 0 30px;
  }
}
.breadcrumbs__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .breadcrumbs__item {
    font-size: 12px;
  }
}
.breadcrumbs__item::after {
  position: absolute;
  right: -15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  width: 4px;
  height: 7px;
  background: url("./public/img/common/breadcrumb-arrow.svg") no-repeat center/cover;
  pointer-events: none;
}
.breadcrumbs__item:last-child::after {
  display: none;
}

.category-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .category-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 8.5px;
    margin-bottom: 32px;
  }
}
.category-list--columns-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  .category-list--columns-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 8.5px 0;
  }
}
.category-list__item {
  padding-inline: 8.5px;
  border-left: 1px solid #1c1b1b;
}
@media screen and (max-width: 767px) {
  .category-list__item:nth-child(2) {
    border-right: 1px solid #1c1b1b;
  }
}
.category-list__item:last-child {
  border-right: 1px solid #1c1b1b;
}
.category-list__label {
  min-height: 39px;
  border-radius: 5px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4444444444em;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.category-list__label.active {
  background: #e0edf6;
}

.banner-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .banner-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.banner-links__item {
  position: relative;
  width: 50%;
  aspect-ratio: 960/280;
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
  overflow: hidden;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1200px) {
  .banner-links__item {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .banner-links__item {
    width: 100%;
    font-size: 16px;
  }
}
.banner-links__item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 42px;
  width: 48px;
  height: 48px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("./public/img/common/button-arrow.svg") no-repeat center/cover;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 1200px) {
  .banner-links__item::after {
    width: 24px;
    height: 24px;
  }
}
.banner-links__item:hover .banner-links__image {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.banner-links__item:hover::after {
  right: 35px;
}
.banner-links__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.footer {
  padding-block: 100px 48px;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-block: 72.5px 102px;
  }
}
.footer__container {
  padding: 0 5.33%;
  margin: 0 auto;
  max-width: calc(1000px + 10.66%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .footer__container {
    max-width: 100%;
  }
}
.footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
  margin-bottom: 100px;
}
@media screen and (max-width: 1200px) {
  .footer__sns {
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .footer__sns {
    gap: 40px;
    margin-bottom: 72px;
  }
}
@media screen and (max-width: 767px) {
  .footer__sns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer__sns-item {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .footer__sns-item {
    width: 100%;
  }
}
.footer__sns-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  margin-bottom: 40px;
  font-size: 3.2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .footer__sns-heading {
    margin-bottom: 36px;
    font-size: 26px;
  }
}
.footer__sns-heading::before {
  display: inline-block;
  content: "";
  width: 12px;
  height: 40px;
  background: #155c92;
}
@media screen and (max-width: 767px) {
  .footer__sns-heading::before {
    width: 8px;
    height: 30px;
  }
}
.footer__ig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .footer__ig-grid {
    height: auto;
    grid-template-columns: repeat(2, 1fr);
  }
}
.footer__ig-grid-block.large {
  grid-column: span 2;
  grid-row: span 2;
}
.footer__ig-grid-block:hover picture {
  display: block;
  position: relative;
}
.footer__ig-grid-block:hover picture::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.3);
  pointer-events: none;
}
.footer__line-block {
  min-height: 220px;
  border: 1px solid #bbb;
  border-radius: 10px;
  padding: 39px 60px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 11px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .footer__line-block {
    gap: 20px;
    min-height: 182px;
    padding: 32px 6%;
  }
}
.footer__line-text {
  font-size: 1.8rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer__line-text {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 820px) {
  .footer__line-button {
    min-width: 295px;
  }
}
.footer__block {
  background: #f1eae0;
  border-radius: 20px;
  min-height: 242px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 20px 32px;
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .footer__block {
    min-height: 323px;
    padding-block: 19px 46px;
    margin-bottom: 19px;
  }
}
.footer__logo {
  width: 367px;
  height: 80px;
  margin-bottom: 17px;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    width: auto;
    height: auto;
    margin-bottom: 32px;
  }
}
.footer__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .footer__menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 32px;
    gap: 24px;
  }
}
.footer__menu-item {
  font-size: 1.8rem;
  line-height: 1.4444444444em;
}
@media screen and (max-width: 767px) {
  .footer__menu-item {
    font-size: 14px;
  }
}
.footer__menu-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer__menu-bottom-item {
  position: relative;
  padding-inline: 20px;
  font-size: 1.4rem;
  line-height: 1.4285714286em;
}
@media screen and (max-width: 767px) {
  .footer__menu-bottom-item {
    font-size: 12px;
  }
}
.footer__menu-bottom-item:first-child::before {
  content: "";
  width: 1px;
  height: 11px;
  background: #bbb;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.footer__copyright {
  text-align: center;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    font-size: 14px;
  }
}
.footer__back-top {
  position: fixed;
  bottom: 40px;
  right: 53px;
  width: 70px;
}
@media screen and (max-width: 767px) {
  .footer__back-top {
    bottom: 20px;
    right: 5.33%;
    width: 50px;
  }
}

.top__container {
  padding: 0 5.33%;
  margin: 0 auto;
  max-width: calc(1000px + 10.66%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .top__container {
    max-width: 100%;
  }
}
.top__release-date {
  position: absolute;
  top: 27px;
  right: 24px;
  width: 174px;
}
@media screen and (max-width: 767px) {
  .top__release-date {
    width: 93px;
  }
}
.top__mv-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 400px;
  height: 70px;
  margin: 0 auto;
  border: 1px solid #000;
  border-radius: 35px;
  margin-top: 24px;
  padding: 15px 29px;
  font-size: 1.8rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top__mv-nav {
    width: 295px;
    max-width: 100%;
    padding: 10.5px 20px 9.5px;
  }
}
.top__mv-page {
  width: 106px;
  border-left: 1px solid #bbb;
}
@media screen and (max-width: 767px) {
  .top__mv-page {
    width: 80px;
  }
}
.top__mv-label {
  width: 153px;
  border-left: 1px solid #bbb;
  border-right: 1px solid #bbb;
}
@media screen and (max-width: 767px) {
  .top__mv-label {
    width: 117px;
  }
}
.top__mv-arrow-left, .top__mv-arrow-right {
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .top__mv-arrow-left, .top__mv-arrow-right {
    width: 8px;
  }
}
.top__mv-arrow-left {
  margin-right: auto;
}
.top__mv-arrow-right {
  margin-left: auto;
}
.top__mv-picture {
  height: 100%;
}
.top__commitment {
  padding-block: 100px;
}
@media screen and (max-width: 767px) {
  .top__commitment {
    padding-block: 64px;
  }
}
.top__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.top__flex--gap-40 {
  gap: 40px;
}
@media screen and (max-width: 1200px) {
  .top__flex--gap-40 {
    gap: 20px;
  }
}
.top__flex--gap-64 {
  gap: 64px;
}
@media screen and (max-width: 1200px) {
  .top__flex--gap-64 {
    gap: 32px;
  }
}
.top__flex--gap-80 {
  gap: 80px;
}
@media screen and (max-width: 1200px) {
  .top__flex--gap-80 {
    gap: 32px;
  }
}
@media screen and (max-width: 767px) {
  .top__flex--sp-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .top__flex--sp-col-rev {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.top__commitment-block {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.top__commitment-image {
  width: 430px;
}
@media screen and (max-width: 767px) {
  .top__commitment-image {
    width: 100%;
  }
}
.top__commitment-subheading {
  margin-bottom: 32px;
  font-size: 3rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .top__commitment-subheading {
    margin-bottom: 24px;
    font-size: 24px;
  }
}
.top__commitment-subheading .dot {
  position: relative;
}
.top__commitment-subheading .dot::before {
  display: block;
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 5px;
  height: 5px;
  background: #155c92;
  border-radius: 50%;
}
.top__commitment-description {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .top__commitment-description {
    font-size: 16px;
  }
}
.top__points {
  position: relative;
  margin-top: 64px;
  overflow: hidden;
}
.top__points::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1313px;
  height: 326px;
  background: url("./public/img/top/point-bg.png") no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .top__points::before {
    width: 486px;
    height: 452px;
    background: url("./public/img/top/point-bg-sp.png") no-repeat center/cover;
  }
}
.top__points-list {
  margin-block: 40px 48px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 19px;
}
@media screen and (max-width: 767px) {
  .top__points-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
    margin-block: 24px 32px;
  }
}
.top__point {
  position: relative;
}
@media screen and (max-width: 767px) {
  .top__point {
    width: 31.3432835821%;
  }
}
.top__point-label {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 42px;
  min-height: 111px;
  background: #fff;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 2.4rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1200px) {
  .top__point-label {
    font-size: 1.8rem;
    min-height: 90px;
  }
}
@media screen and (max-width: 767px) {
  .top__point-label {
    min-width: 25px;
    min-height: 66px;
    font-size: 14px;
  }
}
.top__products {
  padding: 80px 0;
  background: #f1eae0;
}
.top__product-block-large {
  margin-bottom: 56px;
}
@media screen and (max-width: 767px) {
  .top__product-block-large {
    margin-bottom: 32px;
  }
}
.top__product-image-container {
  position: relative;
}
.top__product-image {
  width: 380px;
}
@media screen and (max-width: 767px) {
  .top__product-image {
    width: 100%;
  }
}
.top__product-image--small {
  width: 220px;
}
@media screen and (max-width: 767px) {
  .top__product-image--small {
    width: 100%;
  }
}
.top__product-marker {
  position: absolute;
  width: 68px;
  top: -8px;
  right: -8px;
}
@media screen and (max-width: 767px) {
  .top__product-marker {
    width: 44px;
    top: 0;
    right: 0;
  }
}
.top__product-marker--large {
  width: 90px;
}
@media screen and (max-width: 767px) {
  .top__product-marker--large {
    top: 15px;
    right: 9px;
  }
}
.top__product-info {
  width: 540px;
}
@media screen and (max-width: 767px) {
  .top__product-info {
    max-width: 100%;
  }
}
.top__product-info--small {
  width: 188px;
}
.top__product-info-heading {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 4px;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.5em;
  background: #fff;
  padding: 8px;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .top__product-info-heading {
    font-size: 24px;
    margin-bottom: 8px;
  }
}
.top__product-info-heading--small {
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .top__product-info-heading--small {
    font-size: 16px;
  }
}
.top__product-pricing {
  font-size: 2rem;
  line-height: 1.45em;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .top__product-pricing {
    font-size: 16px;
    margin-bottom: 16px;
  }
}
.top__product-pricing > .number {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1em;
}
@media screen and (max-width: 768px) {
  .top__product-pricing > .number {
    font-size: 26px;
  }
}
.top__product-pricing.mb-0 {
  margin-bottom: 0;
}
.top__product-description {
  font-size: 1.8rem;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .top__product-description {
    font-size: 14px;
  }
}
.top__product-button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.8rem;
  font-weight: 700;
  color: #155c92;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.top__product-button::after {
  content: "";
  width: 22px;
  height: 22px;
  background: url("./public/img/top/product-arrow.svg") no-repeat center/cover;
}
.top__product-block-container {
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .top__product-block-container {
    margin-bottom: 40px;
    gap: 15px;
  }
}
.top__product-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 28px;
}
@media screen and (max-width: 767px) {
  .top__product-block {
    width: calc((100% - 15px) / 2);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
  }
}
.top__menu {
  padding-block: 100px;
}
@media screen and (max-width: 767px) {
  .top__menu {
    padding-block: 64px 72px;
  }
}
.top__menu-cat-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .top__menu-cat-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 8.5px;
    margin-bottom: 32px;
  }
}
.top__menu-cat-item {
  padding-inline: 8.5px;
  border-left: 1px solid #1c1b1b;
}
@media screen and (max-width: 767px) {
  .top__menu-cat-item:nth-child(2) {
    border-right: 1px solid #1c1b1b;
  }
}
.top__menu-cat-item:last-child {
  border-right: 1px solid #1c1b1b;
}
.top__menu-cat-label {
  min-height: 39px;
  border-radius: 5px;
  font-size: 1.8rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.top__menu-cat-label.active {
  background: #e0edf6;
}
.top__menu-items {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 48px;
  -webkit-animation: 0.8s fade-in ease;
          animation: 0.8s fade-in ease;
}
@media screen and (max-width: 767px) {
  .top__menu-items {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 32px;
  }
}
.top__menu-items.active {
  display: grid;
}
.top__menu-item:hover picture {
  position: relative;
  display: block;
}
.top__menu-item:hover picture::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.3);
  pointer-events: none;
}
.top__menu-item-image {
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .top__menu-item-image {
    margin-bottom: 12px;
  }
}
.top__menu-item-heading, .top__menu-item-pricing {
  font-size: 2rem;
  line-height: 1.45em;
}
@media screen and (max-width: 767px) {
  .top__menu-item-heading, .top__menu-item-pricing {
    font-size: 14px;
  }
}
.top__menu-item-heading {
  font-weight: 700;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .top__menu-item-heading {
    margin-bottom: 8px;
  }
}
.top__info {
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .top__info {
    padding-bottom: 72px;
  }
}
.top__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 2rem;
  line-height: 1.45em;
  margin-block: 40px 20px;
}
@media screen and (max-width: 767px) {
  .top__table {
    font-size: 14px;
    margin-block: 32px;
  }
}
.top__table tr {
  border-top: 1px solid #bbb;
}
.top__table tr:last-child {
  border-bottom: 1px solid #bbb;
}
.top__table tr:last-child td:first-child {
  border-bottom: 1px solid #155c92;
}
.top__table td {
  padding-block: 32px;
}
@media screen and (max-width: 767px) {
  .top__table td {
    padding-block: 20px;
  }
}
.top__table td:first-child {
  width: 155px;
  border-top: 1px solid #155c92;
}
@media screen and (max-width: 767px) {
  .top__table td:first-child {
    width: 23.8805970149%;
  }
}
.top__faq-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .top__faq-list {
    gap: 25px;
  }
}
.top__faq-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 17px;
}
@media screen and (max-width: 767px) {
  .top__faq-item {
    gap: 7px;
  }
}
.top__question, .top__answer {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top__q, .top__a {
  font-size: 3rem;
  font-weight: 700;
  padding-right: 20px;
}
@media screen and (max-width: 767px) {
  .top__q, .top__a {
    font-size: 24px;
  }
}
.top__q {
  color: #155c92;
}
.top__question {
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .top__question {
    font-size: 16px;
  }
}
.top__answer {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .top__answer {
    font-size: 14px;
  }
}
.top__question-content, .top__answer-content {
  position: relative;
  padding-left: 20px;
}
.top__question-content::before, .top__answer-content::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 80%;
  background: #bbb;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.top__question-content {
  line-height: 1.4583333333em;
}
.top__question-content::before {
  height: 70%;
}
.top__map-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media screen and (max-width: 1200px) {
  .top__map-container {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .top__map-container {
    grid-template-columns: 1fr;
  }
}
.top__map {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .top__map {
    aspect-ratio: 67/53;
  }
}

@-webkit-keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.kodawari {
  padding-block: 76px 132px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .kodawari {
    padding-block: 32px 66px;
  }
}
.kodawari__main-heading {
  font-size: 3rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .kodawari__main-heading {
    font-size: 24px;
  }
}
.kodawari__main-heading .dot {
  position: relative;
}
.kodawari__main-heading .dot::before {
  display: block;
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 5px;
  height: 5px;
  background: #155c92;
  border-radius: 50%;
}
.kodawari__item + .kodawari__item {
  margin-top: 72px;
}
.kodawari__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 64px;
}
@media screen and (max-width: 767px) {
  .kodawari__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
  }
}
.kodawari__item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .kodawari__item:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.kodawari__content {
  width: 536px;
}
@media screen and (max-width: 767px) {
  .kodawari__content {
    max-width: 100%;
  }
}
.kodawari__image-wrapper {
  position: relative;
  z-index: 0;
}
.kodawari__image-wrapper::before {
  content: "";
  position: absolute;
  left: -56px;
  bottom: -32px;
  width: 100%;
  height: 100%;
  background: #f1eae0;
  border-radius: 10px;
  z-index: -1;
}
.kodawari__image-wrapper--shadow-right::before {
  content: "";
  position: absolute;
  left: auto;
  right: -56px;
  bottom: -32px;
  background: #f1eae0;
  border-radius: 10px;
}
.kodawari__image {
  width: 500px;
}
@media screen and (max-width: 767px) {
  .kodawari__image {
    width: 100%;
  }
}
.kodawari__subheading {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.25em;
  color: #bbb;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .kodawari__subheading {
    font-size: 16px;
    line-height: normal;
    margin-bottom: 4px;
  }
}
.kodawari__heading {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.125em;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .kodawari__heading {
    font-size: 20px;
    margin-bottom: 12px;
  }
}
.kodawari__description {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .kodawari__description {
    font-size: 14px;
  }
}

.menu {
  padding-block: 76px 100px;
}
.menu__category-list {
  margin-bottom: 47.5px;
}
@media screen and (max-width: 767px) {
  .menu__category-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
}
@media screen and (max-width: 767px) {
  .menu__category-list .category-list__item:nth-child(2) {
    border-right: none;
  }
}
@media screen and (max-width: 767px) {
  .menu__category-list .category-list__label {
    font-size: 16px;
  }
}
.menu__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px 40px;
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .menu__list {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 24px;
  }
}
.menu__item:hover picture {
  position: relative;
  display: block;
}
.menu__item:hover picture::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.3);
  pointer-events: none;
}
.menu__item-heading, .menu__item-pricing {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.45em;
}
@media screen and (max-width: 767px) {
  .menu__item-heading, .menu__item-pricing {
    font-size: 16px;
  }
}
.menu__item-heading {
  margin-block: 24px 12px;
}
.menu__item-pricing {
  font-weight: 500;
}

.menu-detail__container {
  max-width: 1000px;
  margin: 0 auto;
}
.menu-detail__block-wrapper {
  max-width: calc(1200px + 10.66%);
  padding-inline: 5.33%;
  margin: 0 auto;
}
.menu-detail__block {
  max-width: 1200px;
  padding-inline: 64px;
  padding-block: 64px;
  margin: 0 auto;
  min-height: 940px;
  border-radius: 10px;
  background: #f1eae0;
}
@media screen and (max-width: 820px) {
  .menu-detail__block {
    min-height: auto;
  }
}
@media screen and (max-width: 767px) {
  .menu-detail__block {
    padding-block: 32px;
    padding-inline: 5.33%;
  }
}
.menu-detail__image-info-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 70px;
  margin-bottom: 40px;
}
@media screen and (max-width: 820px) {
  .menu-detail__image-info-container {
    gap: 35px;
  }
}
@media screen and (max-width: 767px) {
  .menu-detail__image-info-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.menu-detail__image {
  width: 430px;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .menu-detail__image {
    max-width: 100%;
  }
}
.menu-detail__info {
  width: 500px;
}
@media screen and (max-width: 767px) {
  .menu-detail__info {
    width: 100%;
  }
}
.menu-detail__heading {
  font-size: 4rem;
  font-weight: 700;
  line-height: 0.9em;
  margin-bottom: 12px;
}
@media screen and (max-width: 1200px) {
  .menu-detail__heading {
    font-size: 3rem;
  }
}
.menu-detail__pricing {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.4583333333em;
  margin-bottom: 48px;
}
@media screen and (max-width: 1200px) {
  .menu-detail__pricing {
    font-size: 1.8rem;
    margin-bottom: 24px;
  }
}
.menu-detail__pricing > .large {
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.4523809524em;
}
@media screen and (max-width: 1200px) {
  .menu-detail__pricing > .large {
    font-size: 3.2rem;
  }
}
.menu-detail__additional-info-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.menu-detail__additional-info-row + .menu-detail__additional-info-row {
  margin-top: 16px;
}
.menu-detail__label {
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
  background: #000;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 20px;
  min-width: 120px;
  min-height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 820px) {
  .menu-detail__label {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .menu-detail__label {
    font-size: 16px;
  }
}
.menu-detail__info-detail {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.8em;
}
@media screen and (max-width: 820px) {
  .menu-detail__info-detail {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .menu-detail__info-detail {
    font-size: 14px;
  }
}
.menu-detail__specification-heading {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.125em;
  margin-bottom: 20px;
}
@media screen and (max-width: 820px) {
  .menu-detail__specification-heading {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .menu-detail__specification-heading {
    font-size: 24px;
  }
}
.menu-detail__specification-description {
  background: #fff;
  padding: 24px;
  border-radius: 10px;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .menu-detail__specification-description {
    font-size: 14px;
    margin-bottom: 24px;
  }
}
.menu-detail__button {
  position: relative;
  min-width: 250px;
  min-height: 60px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 5px;
  margin: 0 auto;
  background: #000;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.menu-detail__button:hover::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.3);
  pointer-events: none;
}

.access__section {
  padding-block: 100px;
}
@media screen and (max-width: 767px) {
  .access__section {
    padding-block: 50px;
  }
}
.access__section--bg {
  background: #f1eae0;
}
.access__info-grid {
  display: grid;
  grid-template-columns: 155px 1fr;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.45em;
  color: #1c1b1b;
}
@media screen and (max-width: 767px) {
  .access__info-grid {
    grid-template-columns: 100px 1fr;
    font-size: 16px;
    line-height: 1.5em;
  }
}
.access__info-grid dt,
.access__info-grid dd {
  padding-block: 32px;
}
@media screen and (max-width: 767px) {
  .access__info-grid dt,
  .access__info-grid dd {
    padding-block: 16px;
  }
}
.access__info-grid dt {
  border-top: 1px solid #155c92;
}
.access__info-grid dd {
  border-top: 1px solid #bbb;
}
.access__info-grid:last-child dt {
  border-bottom: 1px solid #155c92;
}
.access__info-grid:last-child dd {
  border-bottom: 1px solid #bbb;
}
.access__timeline-wrapper {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .access__timeline-wrapper {
    margin-bottom: 20px;
    gap: 16px;
  }
}
.access__timeline {
  border-radius: 10px;
  overflow: hidden;
}
.access__timeline-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 18px;
  background: #155c92;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .access__timeline-header {
    font-size: 16px;
  }
}
.access__timeline-header::before {
  content: "";
  width: 24px;
  height: 24px;
  margin-right: 14px;
  background: url("./public/img/common/time.svg") no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .access__timeline-header::before {
    width: 18px;
    height: 18px;
    margin-right: 10px;
  }
}
.access__timeline-content {
  padding: 20px 32px 32px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .access__timeline-content {
    padding: 16px 24px 24px;
  }
}
.access__list-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2.4rem;
  letter-spacing: 0.03em;
  color: #1c1b1b;
}
@media screen and (max-width: 767px) {
  .access__list-header {
    margin-bottom: 12px;
    font-size: 18px;
  }
}
.access__list-num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  font-size: 3.2rem;
  color: #155c92;
}
.access__list-num::after {
  content: "";
  display: inline-block;
  margin-inline: 20px;
  width: 1px;
  height: 24px;
  background: #bbb;
}
@media screen and (max-width: 767px) {
  .access__list-num::after {
    margin-inline: 15px;
  }
}
.access__list {
  list-style-type: none;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 2em;
  color: #1c1b1b;
}
@media screen and (max-width: 767px) {
  .access__list {
    font-size: 16px;
    line-height: 2em;
  }
}
.access__map {
  height: 400px;
}

.privacy {
  margin-block: 100px 0;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .privacy {
    margin-block: 50px 0;
  }
}
.privacy__wrapper {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid #bbb;
}
@media screen and (max-width: 767px) {
  .privacy__wrapper {
    margin-top: 24px;
    padding-top: 24px;
  }
}
.privacy__row:not(:last-child) {
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .privacy__row:not(:last-child) {
    margin-bottom: 24px;
  }
}
.privacy__text {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .privacy__text {
    font-size: 16px;
    line-height: 2em;
  }
}
.privacy__header {
  margin-bottom: 24px;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.125em;
}
@media screen and (max-width: 767px) {
  .privacy__header {
    font-size: 24px;
    line-height: 1.3333333333em;
  }
}
.privacy__link {
  color: #155c92;
  text-decoration: underline;
}

.sitemap {
  margin-block: 100px 0;
}
@media screen and (max-width: 767px) {
  .sitemap {
    margin-block: 50px 0;
  }
}
.sitemap__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .sitemap__grid {
    grid-template-columns: 1fr;
  }
}
.sitemap__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .sitemap__links {
    gap: 20px;
  }
}
.sitemap__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 12px;
  padding-bottom: 20px;
  border-bottom: 1px solid #bbb;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .sitemap__link {
    padding-right: 6px;
    padding-bottom: 10px;
  }
}
.sitemap__link::after {
  content: "";
  width: 7px;
  height: 12px;
  -webkit-mask: url("./public/img/common/breadcrumb-arrow.svg") no-repeat center/100% 100%;
          mask: url("./public/img/common/breadcrumb-arrow.svg") no-repeat center/100% 100%;
  background: #155c92;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
}

.news {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .news {
    margin-top: 50px;
  }
}
.news__categories {
  height: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: stretch;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.news__categories li {
  padding-inline: 8px;
  border-left: 1px solid #1c1b1b;
}
.news__categories li:last-child {
  border-right: 1px solid #1c1b1b;
}
.news__category {
  height: 39px;
  border-radius: 5px;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.4444444444em;
  color: #1c1b1b;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.news__category.active {
  background: #e0edf6;
}
.news__category:hover {
  opacity: 0.8;
  background: #e0edf6;
}
.news__menu-container {
  margin-block: 48.5px 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .news__menu-container {
    margin-block: 30px;
  }
}
.news__menu {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  padding: 24px 50px 24px 0;
  border-top: 1px solid #bbb;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
}
@media screen and (max-width: 767px) {
  .news__menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    padding: 24px 12px;
  }
}
.news__menu:last-child {
  border-bottom: 1px solid #bbb;
}
.news__menu::after {
  position: absolute;
  top: 50%;
  right: 20px;
  content: "";
  margin-left: auto;
  width: 8px;
  height: 14px;
  -webkit-mask: url("./public/img/common/breadcrumb-arrow.svg") no-repeat center/100% 100%;
          mask: url("./public/img/common/breadcrumb-arrow.svg") no-repeat center/100% 100%;
  background: #155c92;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .news__menu::after {
    display: none;
  }
}
.news__menu:hover::after {
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}
.news__menu:hover picture {
  position: relative;
  display: block;
}
.news__menu:hover picture::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.3);
  pointer-events: none;
}
.news__image-container {
  width: 220px;
}
.news__image {
  overflow: hidden;
}
.news__menu-text {
  -ms-flex-preferred-size: 640px;
      flex-basis: 640px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #1c1b1b;
}
@media screen and (max-width: 767px) {
  .news__menu-text {
    -ms-flex-preferred-size: unset;
        flex-basis: unset;
  }
}
.news__menu-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 1.6rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .news__menu-label {
    gap: 12px;
    margin-bottom: 8px;
  }
}
.news__menu-circle {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #155c92;
}
.news__menu-description {
  font-size: 2rem;
  line-height: 1.6em;
}
@media screen and (max-width: 767px) {
  .news__menu-description {
    font-size: 18px;
    line-height: 1.4444444444em;
  }
}

.news-detail {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .news-detail {
    margin-top: 24px;
  }
}
.news-detail__content {
  padding: 64px 100px;
  border: 1px solid #bbb;
  border-radius: 20px;
  color: #1c1b1b;
}
@media screen and (max-width: 980px) {
  .news-detail__content {
    padding: 64px;
  }
}
@media screen and (max-width: 767px) {
  .news-detail__content {
    padding: 32px 4%;
  }
}
.news-detail__heading {
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .news-detail__heading {
    margin-bottom: 24px;
  }
}
.news-detail__heading--mb-sm {
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .news-detail__heading--mb-sm {
    margin-bottom: 12px;
  }
}
.news-detail__picture-wrapper {
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .news-detail__picture-wrapper {
    margin-bottom: 24px;
    gap: 10px;
  }
}
.news-detail__picture-container {
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .news-detail__picture-container {
    margin-bottom: 24px;
  }
}
.news-detail__picture-container--col-2 {
  width: 100%;
  max-width: 375px;
  margin-bottom: unset;
}
.news-detail__text-body {
  margin-top: 24px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .news-detail__text-body {
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.75em;
  }
}
.news-detail__text-body:not(:last-child) {
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .news-detail__text-body:not(:last-child) {
    margin-bottom: 24px;
  }
}
.news-detail__buttons {
  width: 100%;
  max-width: 614px;
  height: 60px;
  margin: 48px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .news-detail__buttons {
    -ms-flex-pack: distribute;
        justify-content: space-around;
    gap: 5px;
    height: unset;
    margin: 24px auto 0;
  }
}
.news-detail__buttons li {
  height: 100%;
}
.news-detail__button {
  height: 100%;
  border-radius: 5px;
  color: #1c1b1b;
  font-size: 2rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .news-detail__button {
    font-size: 14px;
  }
}

.overflow {
  overflow: hidden;
}

.pc {
  display: block !important;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

.sp {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block !important;
  }
}

.sp-flex {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .sp-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

.tablet {
  display: none !important;
}
@media screen and (max-width: 1200px) {
  .tablet {
    display: block !important;
  }
}

.tablet-flex {
  display: none !important;
}
@media screen and (max-width: 1200px) {
  .tablet-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

.ipad-mini {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .ipad-mini {
    display: block !important;
  }
}

.ipad-mini-flex {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .ipad-mini-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

.relative {
  position: relative;
}

.text {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .text {
    font-size: 14px;
  }
}

.hamburger {
  border: 1px solid #ccc !important;
  border-radius: 5px;
}
@media screen and (max-width: 1200px) {
  .hamburger {
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 767px) {
  .hamburger {
    width: 45px;
    height: 45px;
  }
}
.hamburger.is-active {
  z-index: 1001;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 14px 10px;
  display: inline-block;
  cursor: pointer;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 1;
}
.hamburger.is-active:hover {
  opacity: 1;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #000;
}

.hamburger-box {
  width: 20px;
  height: 13px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -0.5px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 20px;
  height: 1px;
  background-color: #000;
  border-radius: 4px;
  position: absolute;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -6px;
}
.hamburger-inner::after {
  bottom: -6px;
}

/*
 * Collapse
 */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  -webkit-transition-duration: 0.13s;
          transition-duration: 0.13s;
  -webkit-transition-delay: 0.13s;
          transition-delay: 0.13s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse .hamburger-inner::after {
  top: -12px;
  -webkit-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse .hamburger-inner::before {
  -webkit-transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, -6px, 0) rotate(-45deg);
          transform: translate3d(0, -6px, 0) rotate(-45deg);
  -webkit-transition-delay: 0.22s;
          transition-delay: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.wp-pagenavi {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi {
    font-size: 14px;
  }
}
.wp-pagenavi .page,
.wp-pagenavi .current {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.wp-pagenavi .page + .page {
  margin-left: 45px;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi .page + .page {
    margin-left: 22.5px;
  }
}
.wp-pagenavi .current {
  width: 50px;
  height: 50px;
  background: #155c92;
  color: #fff;
  border-radius: 10px;
  margin-inline: 25px;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi .current {
    width: 40px;
    height: 40px;
    margin-inline: 12.5px;
  }
}
.wp-pagenavi .previouspostslink {
  margin-right: 64px;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi .previouspostslink {
    margin-right: 32px;
  }
}
.wp-pagenavi .nextpostslink {
  margin-left: 64px;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi .nextpostslink {
    margin-left: 32px;
  }
}