@charset "UTF-8";
/* ページ全般の設定 */
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

/*@media screen and (max-width: 1023px) and (min-width: 768px) {
    html {
        font-size: 1vw;
    }
}*/
body {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: clamp(12px, 1.13vw + 3.34px, 18px);
  line-height: 1.75;
  color: #5F4D26;
  letter-spacing: 0.1em;
  overflow-x: hidden;
}
@media (max-width: 767px) {
  body {
    font-size: clamp(11px, 3.06vw - 0.48px, 23px);
  }
}

li {
  list-style: none;
}

a {
  color: #5F4D26;
  text-decoration: none;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

em {
  font-style: normal;
}

@media (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

@media (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

.flex {
  display: flex;
}
@media (max-width: 767px) {
  .flex {
    flex-direction: column;
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 767px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.content-width {
  max-width: 87.9rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .content-width {
    width: 100%;
  }
}

.content-width-s {
  max-width: 79.7rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .content-width-s {
    width: 100%;
  }
}

.section-title-wrap {
  position: relative;
}
.section-title-wrap .hexagon-wrap {
  width: 6.5rem;
  position: absolute;
  top: 0;
  left: -3rem;
  transform: rotate(90deg);
}
@media (max-width: 767px) {
  .section-title-wrap .hexagon-wrap {
    width: 9.0666666667vw;
    left: -2.6666666667vw;
  }
}
.section-title-wrap .hexagon {
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  aspect-ratio: 200/173;
}
.section-title-wrap .section-title {
  position: relative;
  z-index: 1;
  line-height: 1.3;
  font-size: clamp(19px, 1.13vw + 10.33px, 32px);
  font-weight: 800;
}
@media (max-width: 767px) {
  .section-title-wrap .section-title {
    font-size: clamp(16px, 4.08vw + 0.69px, 32px);
    font-weight: 700;
  }
}
.section-title-wrap .section-title .ja {
  font-size: clamp(12px, 0.26vw + 10px, 15px);
  display: block;
}
@media (max-width: 767px) {
  .section-title-wrap .section-title .ja {
    font-size: clamp(10px, 2.3vw + 1.39px, 19px);
  }
}
.section-title-wrap .section-title .en {
  font-size: 2.3rem;
  display: block;
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .section-title-wrap .section-title .en {
    font-size: clamp(13px, 3.57vw - 0.39px, 27px);
  }
}

.fade {
  opacity: 0;
  transition: opacity 1s ease;
}

.fade.active {
  opacity: 1;
}

.fade-load {
  opacity: 0;
  transition: opacity 1s ease;
}

.fade-load.active {
  opacity: 1;
}

.fade-reveal {
  position: relative;
}

.fade-reveal::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, white 40%, rgba(255, 255, 255, 0));
  opacity: 1;
  transition: opacity 1.5s ease;
}

.fade-reveal img {
  opacity: 0;
  transition: opacity 1.5s ease;
}

.fade-reveal.active img {
  opacity: 1;
}

.fade-reveal.active::after {
  opacity: 0;
}

.wave-bottom {
  position: relative;
}
.wave-bottom::after {
  position: absolute;
  content: "";
  background-image: url(../images/corner-bottom.svg);
  background-size: cover;
  background-position: center bottom;
  width: 100%;
  height: 8rem;
  bottom: 0;
  left: 0;
  z-index: 1;
}
@media (max-width: 1024px) {
  .wave-bottom::after {
    background-image: url(../images/sp_corner-bottom.svg);
    height: 7.2vw;
  }
}

.wave-top {
  position: relative;
}
.wave-top::before {
  position: absolute;
  content: "";
  background-image: url(../images/corner-top.svg);
  background-size: cover;
  background-position: center top;
  width: 100%;
  height: 8rem;
  top: 0;
  left: 0;
  z-index: 1;
}
@media (max-width: 1024px) {
  .wave-top::before {
    background-image: url(../images/sp_corner-top.svg);
    height: 7.2vw;
  }
}

.wave-block {
  width: 100%;
  height: 2rem;
  background: #c7b6ac;
}
@media (max-width: 767px) {
  .wave-block {
    height: 0.5rem;
  }
}

.header {
  width: 100%;
  background: #fff;
  z-index: 11;
  height: 7.8rem;
  position: relative;
}
@media (max-width: 767px) {
  .header {
    padding: 0 1.6rem;
    height: 7.4rem;
  }
}
.header .header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  height: 7.8rem;
  width: 90%;
}
@media (max-width: 767px) {
  .header .header__inner {
    height: 7.4rem;
    width: 100%;
    align-items: center;
  }
}
.header .header__logo {
  line-height: 1;
  display: flex;
  max-width: 10.8854166667vw;
  width: 100%;
}
@media (min-width:1920px) {
  .header .header__logo {
    max-width: 20.9rem;
  }
}
@media (max-width: 767px) {
  .header .header__logo {
    max-width: 27.7333333333vw;
  }
}
@media (max-width: 767px) {
  .header .header__right {
    display: none;
  }
}
.header nav {
  width: 100%;
}
.header .header__menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5625vw;
}
@media (min-width:1920px) {
  .header .header__menu {
    gap: 3rem;
  }
}
.header .header__menu li a {
  font-size: clamp(16px, 0.87vw + 9.33px, 26px);
  font-weight: 700;
  letter-spacing: 0;
  transition: 0.3s;
  color: #6e6e6e;
}
.header .header__menu li a:hover {
  color: #8f8056;
  text-decoration: underline;
}
.header .header__menu li .ntr {
  font-size: 1.5625vw;
}
@media (min-width:1920px) {
  .header .header__menu li .ntr {
    font-size: 3rem;
  }
}

/*=================================================
    SP ハンバーガーメニュー
===================================================*/
/* ハンバーガーメニューボタン */
.hamburger-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 7.4rem;
  height: 7.4rem;
  z-index: 100;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

/* SVG重ねる */
.hamburger-btn img {
  position: absolute;
  transition: 0.35s ease;
}

/* 初期状態 */
.icon-humberger {
  opacity: 1;
  width: 3rem;
}

.icon-humberger-close {
  opacity: 0;
  transform: rotate(-90deg);
  width: 2rem;
}

/* 押した瞬間ちょっと拡大 */
.hamburger-btn:active {
  transform: scale(1.5);
}

.hamburger-btn.active {
  top: 5rem;
  right: 1.6rem;
}

/* 切替 */
.hamburger-btn.active .icon-humberger {
  opacity: 0;
}

.hamburger-btn.active .icon-humberger-close {
  opacity: 1;
  transform: rotate(0deg);
}

/* メニューの中身 */
#hamburger-menu {
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  visibility: hidden;
  padding: 3rem 2rem 6.4rem;
}
#hamburger-menu .hamburger-menu__list {
  margin: 12rem auto 0;
}
#hamburger-menu .hamburger-menu__list li {
  margin-bottom: 5rem;
  text-align: center;
}
#hamburger-menu .hamburger-menu__list li:last-child {
  margin-bottom: 0;
}
#hamburger-menu .hamburger-menu__list li a {
  font-family: "Helvetica Neue", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
  display: block;
  color: #6e6e6e;
}

/* ハンバーガーメニュー開いた時 */
#hamburger-menu.active {
  overflow: scroll;
  visibility: visible;
  transition: all 0.5s;
  left: 0;
  -webkit-overflow-scrolling: touch;
}

body.active {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

@media (min-width: 768px) {
  .hamburger-menu {
    display: none;
  }
}
@media (max-width: 767px) {
  .hamburger-menu {
    display: block;
  }
}

@media (min-width: 768px) {
  .hamburger-btn {
    display: none;
  }
}
@media (max-width: 767px) {
  .hamburger-btn {
    display: flex;
  }
}

#hamburger-menu .hamburger-menu__list li a.current,
#menu li a.current {
  color: #8f8056;
  text-decoration: underline;
}

.mv {
  position: relative;
}
.mv .mv__img img {
  width: 100%;
  height: 68rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .mv .mv__img img {
    height: 64vw;
  }
}
.mv .mv__title {
  position: absolute;
  transform: translateY(-50%) translateX(-50%);
  top: 50%;
  bottom: 50%;
  left: 50%;
  right: 50%;
  z-index: 1;
  width: 30.3125vw;
  height: 10.5208333333vw;
}
@media (max-width: 767px) {
  .mv .mv__title {
    width: 48vw;
    height: 16.5333333333vw;
  }
}

.page-shiyuukai .mv video {
  width: 100%;
  height: 68rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .page-shiyuukai .mv video {
    height: 66.6666666667vw;
  }
}
.page-shiyuukai .mv .mv__title {
  width: 19.375vw;
  height: 24.9479166667vw;
}
@media (max-width: 767px) {
  .page-shiyuukai .mv .mv__title {
    width: 29.0666666667vw;
    height: 33.3333333333vw;
  }
}

.policy {
  padding: 15rem 2rem;
}
@media (max-width: 767px) {
  .policy {
    padding: 13.3333333333vw 8vw;
  }
}
.policy .section-title {
  color: #8a7b54;
}
.policy .section-subtitle {
  color: #5F4D26;
  font-size: clamp(20px, 0.87vw + 13.33px, 30px);
  margin-top: 2rem;
  letter-spacing: 0;
  font-weight: 600;
}
@media (max-width: 767px) {
  .policy .section-subtitle {
    font-size: clamp(16px, 4.34vw - 0.26px, 33px);
  }
}
.policy .hexagon {
  background: #f1ebdf;
}
.policy .policy__message {
  margin-top: 3rem;
}
@media (max-width: 767px) {
  .policy .policy__message {
    margin-top: 1rem;
  }
}
.policy .policy__message .message-text {
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .policy .policy__message .message-text {
    margin-bottom: 2rem;
    font-size: clamp(11px, 3.06vw - 0.48px, 23px);
  }
}
.policy .policy__message .message-text:last-of-type {
  margin-bottom: 0;
}
.policy .policy__message .message-catch {
  font-size: clamp(18px, 0.69vw + 12.67px, 26px);
}
@media (max-width: 767px) {
  .policy .policy__message .message-catch {
    font-size: clamp(14px, 3.83vw - 0.35px, 29px);
  }
}
.policy .policy__message .message-name {
  text-align: right;
  margin-top: 3rem;
  font-size: clamp(13px, 0.43vw + 9.67px, 18px);
}
@media (max-width: 767px) {
  .policy .policy__message .message-name {
    font-size: clamp(11px, 4.59vw - 6.22px, 29px);
    margin-top: 0;
  }
}

.case {
  position: relative;
}
.case::after {
  position: absolute;
  content: "";
  background-image: url(../images/corner-top-2.svg);
  background-size: cover;
  background-position: top left;
  width: 100%;
  height: 7.2916666667vw;
  bottom: 0;
  left: 0;
}
@media (max-width: 767px) {
  .case::after {
    background-image: url(../images/sp_corner-top-2.svg);
    height: 21.3333333333vw;
  }
}
.case .case__head {
  padding: 15rem 2rem;
  background: #c7b6ac;
}
@media (max-width: 767px) {
  .case .case__head {
    padding: 8vw 5.3333333333vw 13.3333333333vw;
  }
}
.case .section-title {
  color: #fff;
}
.case .hexagon {
  background: #d2c1b7;
}
.case .case__variety {
  margin: 5rem auto 0;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
}
@media (max-width: 767px) {
  .case .case__variety {
    margin: 2rem auto 0;
    flex-direction: column;
  }
}
.case .case__variety .case__variety__left,
.case .case__variety .case__variety__right {
  width: 44rem;
  position: relative;
}
@media (min-width:768px) and (max-width: 1024px) {
  .case .case__variety .case__variety__left,
  .case .case__variety .case__variety__right {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .case .case__variety .case__variety__left,
  .case .case__variety .case__variety__right {
    width: 100%;
  }
}
.case .case__variety .case__variety__item {
  background-image: url(../images/bg-case.png);
  background-size: 100% 100%;
  max-width: 44rem;
  width: 100%;
  height: 14.7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
  padding: 0 1rem 0 4rem;
}
@media (max-width: 767px) {
  .case .case__variety .case__variety__item {
    max-width: 100%;
    width: 100%;
    height: 28vw;
    flex-direction: row-reverse;
    padding: 0 10.6666666667vw 0 2.4vw;
    margin-bottom: 1rem;
    justify-content: center;
    gap: 2.6666666667vw;
  }
}
.case .case__variety .case__variety__item .case-list {
  color: #fff;
  font-size: clamp(12px, 0.35vw + 9.33px, 16px);
  width: 61%;
}
@media (max-width: 767px) {
  .case .case__variety .case__variety__item .case-list {
    font-size: clamp(11px, 3.06vw - 0.48px, 23px);
  }
}
.case .case__variety .case__variety__item .case-img {
  width: 15.3rem;
}
@media (max-width: 767px) {
  .case .case__variety .case__variety__item .case-img {
    width: 27.7333333333vw;
  }
}
.case .case__variety .case__variety__item:last-child {
  margin-bottom: 0;
}
.case .case__variety .case__variety__center {
  text-align: center;
  background-image: url(../images/hexagon.svg);
  background-size: contain;
  width: 19.2rem;
  height: 19.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: clamp(18px, 0.69vw + 12.67px, 26px);
  font-weight: 700;
  letter-spacing: 0;
  color: #8A7B54;
}
@media (max-width: 767px) {
  .case .case__variety .case__variety__center {
    width: 35.7333333333vw;
    height: 35.7333333333vw;
    font-size: clamp(16px, 4.34vw - 0.26px, 33px);
    margin: 0 auto;
  }
}
@media (min-width: 768px) {
  .case .case__variety .case__variety__left {
    right: -4rem;
  }
}
@media (max-width: 767px) {
  .case .case__variety .case__variety__left {
    margin-top: 0.5rem;
  }
}
@media (min-width: 768px) {
  .case .case__variety .case__variety__right {
    left: -4rem;
  }
}
.case .case__variety .case__variety__right .case__variety__item {
  flex-direction: row-reverse;
  padding: 0 4rem 0 0.7rem;
  margin-top: 1rem;
}
.case .case-title {
  color: #fff;
  background: rgba(95, 77, 38, 0.7);
  width: 17.2rem;
  height: 17rem;
  border-radius: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  top: -8rem;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
  line-height: 1.4;
}
@media (max-width: 767px) {
  .case .case-title {
    border-radius: 1rem;
    width: 21.3333333333vw;
    height: 20.48vw;
    top: -10.6666666667vw;
  }
}
.case .case-title::after {
  content: "";
  position: absolute;
  display: block;
  top: 1.1rem;
  bottom: 1.1rem;
  left: 1.1rem;
  right: 1.1rem;
  border: 1px solid white;
  border-radius: 1.3rem;
}
@media (max-width: 767px) {
  .case .case-title::after {
    border-radius: 0.7rem;
    top: 0.9rem;
    bottom: 0.9rem;
    left: 0.9rem;
    right: 0.9rem;
  }
}
.case .case-title .num {
  display: block;
  font-size: 4rem;
}
@media (max-width: 767px) {
  .case .case-title .num {
    font-size: clamp(24px, 6.38vw + 0.08px, 49px);
  }
}
.case .case-title .ja {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .case .case-title .ja {
    font-size: clamp(12px, 3.32vw - 0.44px, 25px);
  }
}
.case .case__about .case__about__inner {
  padding: 15rem 2rem;
  position: relative;
}
@media (max-width: 767px) {
  .case .case__about .case__about__inner {
    padding: 18.6666666667vw 5.3333333333vw 13.3333333333vw;
  }
}
.case .case__about .case__item__img img {
  width: 100%;
  height: 67.9rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .case .case__about .case__item__img img {
    height: 56.8vw;
  }
}
.case .case__about .case__about__list .case__about__list__item {
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .case .case__about .case__about__list .case__about__list__item {
    margin-bottom: 2rem;
  }
}
.case .case__about .case__about__list .case__about__list__item:last-child {
  margin-bottom: 0;
}
.case .case__about .case__about__list .case-subtitle {
  font-size: clamp(20px, 0.87vw + 13.33px, 30px);
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .case .case__about .case__about__list .case-subtitle {
    font-size: clamp(14px, 3.83vw - 0.35px, 29px);
    margin-bottom: 1rem;
    letter-spacing: 0;
  }
}
.case .case__about .case__about__list .deail-list {
  padding-left: 1.6rem;
}
@media (max-width: 767px) {
  .case .case__about .case__about__list .deail-list {
    padding-left: 1.5rem;
  }
}
.case .case__about .case__about__list .deail-list li {
  list-style: disc;
}
.case .case__about:last-of-type .case__about__inner {
  padding-bottom: 20rem;
}
@media (max-width: 767px) {
  .case .case__about:last-of-type .case__about__inner {
    padding-bottom: 26.6666666667vw;
  }
}

.step {
  background: #e2d0aa;
  position: relative;
  padding: 7rem 2rem 15rem;
}
@media (max-width: 767px) {
  .step {
    padding: 2rem 2rem 8rem;
  }
}
.step .hexagon {
  background: #f1ebdf;
}
.step .section-title {
  color: #8A7B54;
}
.step .step__list {
  gap: 7rem;
  color: #fff;
  margin-top: 4rem;
}
@media (min-width:1920px) {
  .step .step__list {
    gap: 7rem;
  }
}
@media (max-width: 767px) {
  .step .step__list {
    width: 59.4666666667vw;
    margin: 2rem auto 0;
    gap: 5rem;
  }
}
.step .step__list li {
  background: #7f704f;
  border-radius: 2rem;
  text-align: center;
  padding: 3rem 1rem 6rem;
  position: relative;
}
@media (max-width: 767px) {
  .step .step__list li {
    border-radius: 1rem;
    padding: 5.3333333333vw 1rem;
  }
}
.step .step__list li::after {
  position: absolute;
  content: "";
  background-image: url(../images/arrow-gold.svg);
  background-size: contain;
  width: 3.7rem;
  height: 3.7rem;
  top: 44%;
  transform: rotate(225deg);
  right: -4.2rem;
}
@media (max-width: 767px) {
  .step .step__list li::after {
    width: 2.9rem;
    height: 2.9rem;
    right: 44%;
    bottom: -3.2rem;
    top: inherit;
    transform: rotate(-45deg);
  }
}
@media (max-width: 767px) {
  .step .step__list li .list-title {
    font-size: clamp(14px, 3.57vw + 0.61px, 28px);
  }
}
.step .step__list li p {
  font-size: clamp(17px, 0.52vw + 13px, 23px);
}
@media (max-width: 767px) {
  .step .step__list li p {
    font-size: clamp(15px, 4.08vw - 0.31px, 31px);
  }
}
.step .step__list li .list-img {
  max-width: 12rem;
  width: 100%;
  margin: 2rem auto 0;
}
@media (max-width: 767px) {
  .step .step__list li .list-img {
    max-width: 9.8rem;
  }
}
.step .step__list li:last-child::after {
  display: none;
}

.about {
  padding: 15rem 2rem;
  background-image: url(../images/bg-shiyuukai.png);
  background-size: cover;
  background-position: 50% 50%;
  position: relative;
  color: #232d60;
}
@media (max-width: 767px) {
  .about {
    padding: 18.6666666667vw 8vw 10.6666666667vw;
  }
}
.about .about__text {
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .about .about__text {
    margin-top: 2rem;
    font-size: clamp(13px, 3.32vw + 0.56px, 26px);
  }
}
.about .about__text p {
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .about .about__text p {
    margin-bottom: 2rem;
  }
}
.about .about__text p:last-of-type {
  margin-bottom: 0;
}

.support {
  background-image: conic-gradient(from 152deg at 50% 50%, rgba(0, 87, 225, 0.65) 0%, #F9C5B4 68%, #8290C9 83.2826513993%, rgba(0, 87, 225, 0.63) 100%);
  background-size: cover;
  color: #232d60;
}
.support .support-bg {
  background-image: url(../images/bg-support.png);
  background-size: cover;
  background-position: 50% 50%;
  padding: 10rem 2rem;
}
@media (max-width: 767px) {
  .support .support-bg {
    padding: 13.3333333333vw 5.3333333333vw 18.6666666667vw;
  }
}
@media (max-width: 767px) {
  .support .sp-flex {
    display: flex;
    align-items: center;
  }
}
.support .support__list {
  margin-top: 4rem;
  gap: 5rem;
}
@media (max-width: 767px) {
  .support .support__list {
    margin-top: 2rem;
    gap: 2rem;
  }
}
.support .support__list li {
  height: 53.7rem;
  width: 100%;
  background-image: url(../images/bg-support-list.png);
  background-size: contain;
  background-position: center;
}
@media (max-width: 767px) {
  .support .support__list li {
    height: 100.8vw;
  }
}
.support .support__list li .list-title {
  text-align: center;
  color: #fff;
  padding: 4rem 1rem;
  height: 51%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.support .support__list li .list-title .num {
  display: block;
  font-size: clamp(19px, 1.13vw + 10.33px, 32px);
  line-height: 1;
}
@media (max-width: 767px) {
  .support .support__list li .list-title .num {
    font-size: clamp(20px, 5.1vw + 0.87px, 40px);
  }
}
.support .support__list li .list-title .ja {
  display: block;
  line-height: 1.6;
  font-size: clamp(15px, 0.43vw + 11.67px, 20px);
}
@media (max-width: 767px) {
  .support .support__list li .list-title .ja {
    font-size: clamp(15px, 3.83vw + 0.65px, 30px);
  }
}
.support .support__list li p {
  padding: 1rem 4rem;
}
@media (max-width: 767px) {
  .support .support__list li p {
    font-size: clamp(12px, 3.06vw + 0.52px, 24px);
    padding: 1rem 5.3333333333vw;
  }
}
@media (max-width: 767px) {
  .support .support__list li:nth-child(2) {
    display: none;
  }
}

.example {
  padding: 10rem 2rem;
  background-image: url(../images/bg-shiyuukai.png);
  background-size: cover;
  background-position: 50% 50%;
  position: relative;
  color: #232d60;
}
@media (max-width: 767px) {
  .example {
    padding: 7rem 5.3333333333vw 4rem;
  }
}
.example .example__text {
  background-image: url(../images/example-img.jpg);
  background-size: cover;
  color: #fff;
  height: 45.9rem;
  max-width: 76.2rem;
  margin: 5rem auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}
@media (max-width: 767px) {
  .example .example__text {
    height: 59.4666666667vw;
    max-width: 100%;
    margin: 3rem auto 0;
  }
}
.example .example__text::after {
  position: absolute;
  content: "";
  background: rgba(35, 45, 96, 0.6);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.example .example__text p {
  font-size: clamp(15px, 0.69vw + 9.67px, 23px);
  text-align: center;
  width: 100%;
  position: relative;
  z-index: 1;
  letter-spacing: 0;
  padding: 0 1rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .example .example__text p {
    width: 71%;
    font-size: clamp(12px, 3.06vw + 0.52px, 24px);
  }
}
.example .example__text .etc {
  text-align: right;
  padding: 0 7rem;
}
@media (max-width: 767px) {
  .example .example__text .etc {
    padding: 0;
  }
}

.page-shiyuukai .hexagon {
  background: #e7eded;
}
.page-shiyuukai .section-title-wrap .hexagon-wrap {
  top: -1.5rem;
}
@media (max-width: 767px) {
  .page-shiyuukai .section-title-wrap .hexagon-wrap {
    top: -1.8666666667vw;
  }
}
.page-shiyuukai .step {
  background-image: conic-gradient(from 152deg at 50% 50%, rgba(0, 87, 225, 0.65) 0%, #F9C5B4 68%, rgba(0, 87, 225, 0.66) 100%);
  background-size: cover;
  padding: 0;
}
.page-shiyuukai .step .section-title {
  color: #232d60;
}
.page-shiyuukai .step-bg {
  background-image: url(../images/bg-support.png);
  background-size: cover;
  background-position: 50% 50%;
  padding: 10rem 2rem;
}
@media (max-width: 767px) {
  .page-shiyuukai .step-bg {
    padding: 13.3333333333vw 5.3333333333vw 18.6666666667vw;
  }
}
.page-shiyuukai .step__list li {
  border-radius: 0;
  background: #232d60;
}
.page-shiyuukai .step__list li::after {
  background-image: url(../images/arrow-navy.svg);
}

.company {
  color: #232d60;
  padding: 15rem 2rem 10rem;
  background-image: url(../images/bg-shiyuukai.png);
  background-size: cover;
  background-position: 50% 50%;
}
@media (max-width: 767px) {
  .company {
    padding: 13.3333333333vw 5.3333333333vw 8vw;
  }
}
@media (max-width: 767px) {
  .company .hexagon-wrap {
    width: 4.8vw;
  }
}
.company .hexagon {
  background: #e7eded;
}
@media (min-width: 768px) {
  .company .section-title-wrap {
    padding-left: 2rem;
  }
}
.company .section-title-wrap .section-title {
  font-weight: 700;
}
.company .section-title-wrap .hexagon-wrap {
  top: -1.5rem;
  left: -1rem;
}
@media (max-width: 767px) {
  .company .section-title-wrap .hexagon-wrap {
    top: -1.0666666667vw;
    left: -0.6rem;
  }
}
.company .company__text {
  margin-top: 4rem;
  padding-bottom: 5rem;
  color: #131720;
}
@media (max-width: 767px) {
  .company .company__text {
    margin-top: 2rem;
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .company .company__text p {
    font-size: clamp(13px, 3.06vw + 1.52px, 25px);
  }
}
.company .company__text p a {
  color: #131720;
  text-decoration: underline;
}
.company .company__map iframe {
  max-width: 90.5rem;
  width: 100%;
  height: 40.5rem;
}

.footer {
  background: #232d60;
  color: #fff;
  padding: 5rem 2rem 3rem;
}
@media (max-width: 767px) {
  .footer {
    padding: 8vw 8vw 13.3333333333vw;
  }
}
.footer a {
  color: #fff;
}
.footer .footer__inner {
  width: 70%;
  margin: 0 auto;
}
.footer .footer__flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer .footer__logo {
  max-width: 10.8854166667vw;
  width: 100%;
}
@media (min-width:1920px) {
  .footer .footer__logo {
    max-width: 20.9rem;
  }
}
@media (max-width: 767px) {
  .footer .footer__logo {
    max-width: 29.0666666667vw;
  }
}
.footer .footer__menu {
  display: flex;
  align-items: center;
  gap: 2.0833333333vw;
}
@media (min-width:1920px) {
  .footer .footer__menu {
    gap: 4rem;
  }
}
@media (max-width: 767px) {
  .footer .footer__menu {
    display: none;
  }
}
.footer .footer__menu li a {
  font-size: 1.3020833333vw;
  letter-spacing: 0;
  transition: 0.3s;
  color: #fff;
}
.footer .footer__menu li a:hover {
  color: #8f8056;
  text-decoration: underline;
}
@media (min-width:1920px) {
  .footer .footer__menu li a {
    font-size: 2.5rem;
  }
}
@media (max-width: 767px) {
  .footer .footer__menu li a {
    font-size: 1rem;
  }
}
.footer .footer__menu li:last-child {
  margin-bottom: 0;
}
.footer .copyright {
  text-align: right;
  font-size: clamp(12px, 1.04vw + 4px, 24px);
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .footer .copyright {
    margin-top: 5.3333333333vw;
    font-size: clamp(11px, 3.06vw - 0.48px, 23px);
  }
}/*# sourceMappingURL=style.css.map */