@charset "UTF-8";
@font-face {
  font-family: "sans";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/notosans/NotoSansJP-Light.otf");
  src: url("../fonts/notosans/NotoSansJP-Light.woff2") format("woff"), url("../fonts/notosans/NotoSansJP-Light.ttf") format("truetype");
}
@font-face {
  font-family: "sans";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/notosans/NotoSansJP-Regular.otf");
  src: url("../fonts/notosans/NotoSansJP-Regular.woff2") format("woff"), url("../fonts/notosans/NotoSansJP-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "sans";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/notosans/NotoSansJP-Medium.otf");
  src: url("../fonts/notosans/NotoSansJP-Medium.woff2") format("woff"), url("../fonts/notosans/NotoSansJP-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "sans";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/notosans/NotoSansJP-Bold.otf");
  src: url("../fonts/notosans/NotoSansJP-Bold.woff2") format("woff"), url("../fonts/notosans/NotoSansJP-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "sans";
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/notosans/NotoSansJP-Regular.otf");
  src: url("../fonts/notosans/NotoSansJP-Regular.woff2") format("woff"), url("../fonts/notosans/NotoSansJP-Regular.ttf") format("truetype");
}
.sans {
  font-family: "sans", sans-serif;
}

@font-face {
  font-family: "avenir";
  font-style: normal;
  font-weight: 100;
  src: url("../fonts/avenir/AvenirNext-UltraLight.otf");
  src: url("../fonts/avenir/AvenirNext-UltraLight.woff") format("woff"), url("../fonts/avenir/AvenirNext-UltraLight.ttf") format("truetype");
}
.avenir {
  font-family: "avenir", sans-serif;
}

/* 共通 color
*******************/
/* カラー
*******************/
.c-white {
  color: #ffffff !important;
}
.c-black {
  color: #595757 !important;
}
.c-blue {
  color: #144aa6 !important;
}
.c-yellow {
  color: #fff582 !important;
}
.c-red {
  color: #eb6d56 !important;
}
.c-green {
  color: #c4d700 !important;
}
.c-orange {
  color: #ff9020 !important;
}
.c-gray {
  color: #000000 !important;
}

/* bgカラー
*******************/
.bg-white {
  background-color: #ffffff !important;
}
.bg-black {
  background-color: #595757 !important;
}
.bg-blue {
  background-color: #144aa6 !important;
}
.bg-yellow {
  background-color: #fff582 !important;
}
.bg-red {
  background-color: #eb6d56 !important;
}
.bg-green {
  background-color: #c4d700 !important;
}
.bg-orange {
  background-color: #ff9020 !important;
}
.bg-gray {
  background-color: #000000 !important;
}

/* border color
*******************/
.bc-white {
  border-color: #ffffff !important;
}
.bc-black {
  border-color: #595757 !important;
}
.bc-blue {
  border-color: #144aa6 !important;
}
.bc-yellow {
  border-color: #fff582 !important;
}
.bc-red {
  border-color: #eb6d56 !important;
}
.bc-green {
  border-color: #c4d700 !important;
}
.bc-orange {
  border-color: #ff9020 !important;
}
.bc-gray {
  border-color: #000000 !important;
}

html {
  font-size: 62.5%;
  font-family: "sans", sans-serif;
  color: #000000;
}
html * {
  box-sizing: border-box;
}

body.fixed {
  overflow: hidden;
}

p, a, li, dd, dt, th, td {
  font-size: 1.6rem;
  line-height: 1.7;
}

.sp {
  display: none !important;
}

img {
  max-width: 100%;
  pointer-events: none;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.pc_block {
  display: block;
}

.container {
  overflow: hidden;
}

.lwrap {
  max-width: 1150px;
  margin: auto;
}

.tel a {
  pointer-events: none;
}

/* float
*******************/
.fl-l {
  float: left;
}
.fl-r {
  float: right;
}

/* clear
*******************/
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/* txt 揃え
*******************/
.alignCenter {
  text-align: center;
}
.alignLeft {
  text-align: left;
}
.alignRight {
  text-align: right;
}

/* flex
*******************/
.flex {
  display: flex;
}
.flex.col-2 {
  flex-wrap: wrap;
}
.flex.col-2 .item {
  width: 48%;
  margin-right: 4%;
}
.flex.col-2 .item:nth-child(2n) {
  margin-right: 0;
}
.flex.col-3 {
  flex-wrap: wrap;
}
.flex.col-3 .item {
  width: 32%;
  margin-right: 2%;
}
.flex.col-3 .item:nth-child(3n) {
  margin-right: 0;
}
.flex.col-4 {
  flex-wrap: wrap;
}
.flex.col-4 .item {
  width: 23.5%;
  margin-right: 2%;
}
.flex.col-4 .item:nth-child(4n) {
  margin-right: 0;
}
.flex.col-5 {
  flex-wrap: wrap;
}
.flex.col-5 .item {
  width: 18.4%;
  margin-right: 2%;
}
.flex.col-5 .item:nth-child(5n) {
  margin-right: 0;
}

/* border
*******************/
.border-solid-top {
  border-top: 1px solid #000000;
}
.border-solid-left {
  border-left: 1px solid #000000;
}
.border-solid-right {
  border-right: 1px solid #000000;
}
.border-solid-bottom {
  border-bottom: 1px solid #000000;
}
.border-dashed-top {
  border-top: 1px dashed #000000;
}
.border-dashed-left {
  border-left: 1px dashed #000000;
}
.border-dashed-right {
  border-right: 1px dashed #000000;
}
.border-dashed-bottom {
  border-bottom: 1px dashed #000000;
}
.border-dotted-top {
  border-top: 1px dotted #000000;
}
.border-dotted-left {
  border-left: 1px dotted #000000;
}
.border-dotted-right {
  border-right: 1px dotted #000000;
}
.border-dotted-bottom {
  border-bottom: 1px dotted #000000;
}

/* circle
*******************/
.circle {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  width: 10rem;
  height: 10rem;
  border-radius: 100%;
  background-color: #000000;
  text-align: center;
  position: relative;
}
/* square
*******************/
.square {
  display: inline-block;
  width: 10rem;
  height: 10rem;
  background-color: #000000;
  text-align: center;
  position: relative;
}
.square > span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
}

/* 角丸
*******************/
.round-15 {
  border-radius: 1.5rem;
}
.round-30 {
  border-radius: 3rem;
}
.round-60 {
  border-radius: 6rem;
}
.round-90 {
  border-radius: 9rem;
}
.round-100 {
  border-radius: 100%;
}

/* box shadow
*******************/
.b-shadow {
  box-shadow: 0.5rem 0.5rem 0.4rem rgba(0, 0, 0, 0.2);
}

/* text shadow
*******************/
.t-shadow {
  text-shadow: 0.43rem 0.43rem 0.323rem rgba(0, 0, 0, 0.6);
}

/* marker
*******************/
.marker-yellow {
  background: linear-gradient(transparent 0%, #fff582 0%);
  display: inline-block;
}
.marker-green {
  background: linear-gradient(transparent 60%, #c4d700 60%);
  display: inline-block;
}

@media screen and (max-width: 1180px) {
  .lwrap {
    margin: 0 1.5rem;
  }
}
/*******************
スマホ
******************/
@media screen and (max-width: 767px) {
  html {
    font-size: 1.33333vw;
  }
  p, a, li, dd, dt, th, td {
    font-size: 2.8rem;
  }
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .tel a {
    pointer-events: auto;
  }
  .lwrap {
    margin: 0 2.5rem;
  }
}
.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  z-index: 990;
  transition: box-shadow 0.3s ease;
}
.header.fixed {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.header__inner {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .header__inner {
    top: 5.5rem;
  }
}
@media (min-width: 1150px) {
  .header__inner {
    width: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.header__logo * {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.header__logo a {
  transition: opacity 0.3s;
}
.header__logo a:hover {
  opacity: 0.8;
}
.header__logo img {
  width: clamp(8.85rem, 11.8vw, 17.7rem);
}
@media screen and (max-width: 767px) {
  .header__logo img {
    width: 26.4rem;
  }
}

.header__nav {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .header__nav {
    flex-wrap: wrap;
  }
}

.header__menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .header__menu {
    order: 2;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.3rem;
    padding-top: 0.3rem;
  }
}

.header__item {
  height: 100%;
  display: flex;
  align-items: center;
  border-left: solid 1px #595757;
}
@media screen and (max-width: 767px) {
  .header__item {
    border-left: none;
  }
}

.header__link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #595757;
  transition: color 0.3s;
  gap: 1rem;
  padding: clamp(1rem, 1.3333333333vw, 2rem);
}
@media (max-width: 1023px) {
  .header__link {
    padding: 0.25rem;
  }
}
@media screen and (max-width: 767px) {
  .header__link {
    background-color: #ebebec;
    padding-left: 2rem;
    width: 100%;
    height: 100%;
    min-height: 8.2rem;
  }
}
.header__link:hover {
  color: #c4d700;
}

.header__link__icon {
  position: relative;
  display: grid;
  place-items: center;
}
.header__link__icon > img {
  width: clamp(1.5rem, 2vw, 3rem);
}
@media screen and (max-width: 767px) {
  .header__link__icon > img {
    width: 3.5rem;
  }
}
.header__link__icon > img:nth-of-type(2) {
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: opacity 0.3s;
  opacity: 0;
}
.header__link__icon > img:nth-of-type(2):where(.header__link:hover *) {
  opacity: 1;
}

.header__link__text {
  font-size: clamp(1rem, 0.7333333333vw, 1.1rem);
  letter-spacing: 0.03em;
  line-height: 1.1818181818;
}
@media screen and (max-width: 767px) {
  .header__link__text {
    font-size: 1.8rem;
  }
}

.header__buttons {
  position: relative;
  display: block;
}
.header__buttons button {
  width: clamp(12rem, 16vw, 24rem);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  background-color: #000000;
  color: #fff;
  font-size: 1.6rem;
  letter-spacing: 0.025em;
  text-decoration: none;
}
.header__buttons button:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .header__buttons button {
    width: 30.5rem;
    height: 11rem;
    font-size: 2.5rem;
  }
  .header__buttons button:hover {
    opacity: 1;
  }
}

.header__buttons__menu {
  position: absolute;
  top: 93px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  width: 100%;
  background-color: #fff;
}
.header__buttons__menu a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  background-color: #C2D807;
  color: #595757;
  text-decoration: none;
  transition: background-color .4s, color .4s;
}
.header__buttons__menu a:hover {
  background-color: #000;
  color: #fff;
}
.header__buttons__menu a span:after {
  content: '';
  display: inline-block;
  margin-left: 6px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #595757;
  border-right: 2px solid #595757;
  transform: rotate(45deg) translateY(-2px);
  transition: border-color .4s;
}
.header__buttons__menu a:hover span:after {
  border-color: #fff;
}
@media screen and (max-width: 767px) {
  .header__buttons__menu {
    top: 11rem;
  }
  .header__buttons__menu a {
    font-size: 2.4rem;
  }
}

.footer {
  padding: 8rem 0 9rem;
}
.footer-logo {
  text-align: center;
  margin-top: 7rem;
}
.footer-logo img {
  width: 31rem;
}
.footer .btn {
  text-align: center;
}
.footer .btn a {
  text-decoration: none;
  background-color: #000;
  border-radius: 1rem;
  font-size: 2.6rem;
  text-align: center;
  color: #fff;
  padding: 5rem 0;
  max-width: 56rem;
  width: 100%;
  display: inline-block;
  position: relative;
}
.footer .btn a::before {
  content: "";
  position: absolute;
  right: 8rem;
  top: 50%;
  width: 1.1rem;
  height: 1.1rem;
  border-top: 0.2rem solid #fff;
  border-right: 0.2rem solid #fff;
  transform: translateY(-50%) rotate(45deg);
}
.footer .btn a i {
  margin-right: 3rem;
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
}
.footer .btn a i img {
  width: 6.2rem;
}

/*******************
スマホ
******************/
@media screen and (max-width: 767px) {
  .footer {
    padding: 19rem 0 10rem;
  }
  .footer-logo img {
    width: 39.3rem;
  }
  .footer .btn a {
    font-size: 2.6rem;
    padding: 4.55rem 0;
  }
  .footer .btn a::before {
    right: 4rem;
    width: 1.6rem;
    height: 1.6rem;
    border-top: 0.3rem solid #fff;
    border-right: 0.3rem solid #fff;
  }
  .footer .btn a i {
    margin-left: 0rem;
  }
  .footer .btn a i img {
    width: 5.2rem;
  }
}
/* CSS Document */
.animation span {
  opacity: 0;
}
.animation span:nth-of-type(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.animation span:nth-of-type(2) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.animation span:nth-of-type(3) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.animation span:nth-of-type(4) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.animation span:nth-of-type(5) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.animation span:nth-of-type(6) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.animation span:nth-of-type(7) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.animation span:nth-of-type(8) {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
.animation span:nth-of-type(9) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.animation span:nth-of-type(10) {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
.animation span:nth-of-type(11) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.animation span:nth-of-type(12) {
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}
.animation span:nth-of-type(13) {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
.animation span:nth-of-type(14) {
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
}
.animation span:nth-of-type(15) {
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}
.animation span:nth-of-type(16) {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}
.animation.active span {
  -webkit-animation-name: horizontalRotate;
          animation-name: horizontalRotate;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 8s;
          animation-duration: 8s;
  -webkit-animation-timing-function: cubic-bezier(0, 0.4, 0.3, 1);
          animation-timing-function: cubic-bezier(0, 0.4, 0.3, 1);
}

.fadein {
  opacity: 0;
}
.fadein.active {
  -webkit-animation-name: fadein;
          animation-name: fadein;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
}

.fadein2 {
  opacity: 0;
}
.fadein2.active {
  -webkit-animation-name: fadein;
          animation-name: fadein;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
}

@-webkit-keyframes horizontalRotate {
  0% {
    transform: translateY(36%);
    opacity: 0;
  }
  50% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes horizontalRotate {
  0% {
    transform: translateY(36%);
    opacity: 0;
  }
  50% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* margin
*******************/
.mt-0 {
  margin-top: 0rem !important;
}

.mb-0 {
  margin-bottom: 0rem !important;
}

.mt-5 {
  margin-top: 0.5rem !important;
}

.mb-5 {
  margin-bottom: 0.5rem !important;
}

.mt-10 {
  margin-top: 1rem !important;
}

.mb-10 {
  margin-bottom: 1rem !important;
}

.mt-15 {
  margin-top: 1.5rem !important;
}

.mb-15 {
  margin-bottom: 1.5rem !important;
}

.mt-20 {
  margin-top: 2rem !important;
}

.mb-20 {
  margin-bottom: 2rem !important;
}

.mt-25 {
  margin-top: 2.5rem !important;
}

.mb-25 {
  margin-bottom: 2.5rem !important;
}

.mt-30 {
  margin-top: 3rem !important;
}

.mb-30 {
  margin-bottom: 3rem !important;
}

.mt-35 {
  margin-top: 3.5rem !important;
}

.mb-35 {
  margin-bottom: 3.5rem !important;
}

.mt-40 {
  margin-top: 4rem !important;
}

.mb-40 {
  margin-bottom: 4rem !important;
}

.mt-45 {
  margin-top: 4.5rem !important;
}

.mb-45 {
  margin-bottom: 4.5rem !important;
}

.mt-50 {
  margin-top: 5rem !important;
}

.mb-50 {
  margin-bottom: 5rem !important;
}

.mt-55 {
  margin-top: 5.5rem !important;
}

.mb-55 {
  margin-bottom: 5.5rem !important;
}

.mt-60 {
  margin-top: 6rem !important;
}

.mb-60 {
  margin-bottom: 6rem !important;
}

.mt-65 {
  margin-top: 6.5rem !important;
}

.mb-65 {
  margin-bottom: 6.5rem !important;
}

.mt-70 {
  margin-top: 7rem !important;
}

.mb-70 {
  margin-bottom: 7rem !important;
}

.mt-75 {
  margin-top: 7.5rem !important;
}

.mb-75 {
  margin-bottom: 7.5rem !important;
}

.mt-80 {
  margin-top: 8rem !important;
}

.mb-80 {
  margin-bottom: 8rem !important;
}

.mt-85 {
  margin-top: 8.5rem !important;
}

.mb-85 {
  margin-bottom: 8.5rem !important;
}

.mt-90 {
  margin-top: 9rem !important;
}

.mb-90 {
  margin-bottom: 9rem !important;
}

.mt-95 {
  margin-top: 9.5rem !important;
}

.mb-95 {
  margin-bottom: 9.5rem !important;
}

.mt-100 {
  margin-top: 10rem !important;
}

.mb-100 {
  margin-bottom: 10rem !important;
}

.mt-105 {
  margin-top: 10.5rem !important;
}

.mb-105 {
  margin-bottom: 10.5rem !important;
}

.mt-110 {
  margin-top: 11rem !important;
}

.mb-110 {
  margin-bottom: 11rem !important;
}

.mt-115 {
  margin-top: 11.5rem !important;
}

.mb-115 {
  margin-bottom: 11.5rem !important;
}

.mt-120 {
  margin-top: 12rem !important;
}

.mb-120 {
  margin-bottom: 12rem !important;
}

.mt-125 {
  margin-top: 12.5rem !important;
}

.mb-125 {
  margin-bottom: 12.5rem !important;
}

.mt-130 {
  margin-top: 13rem !important;
}

.mb-130 {
  margin-bottom: 13rem !important;
}

.mt-135 {
  margin-top: 13.5rem !important;
}

.mb-135 {
  margin-bottom: 13.5rem !important;
}

.mt-140 {
  margin-top: 14rem !important;
}

.mb-140 {
  margin-bottom: 14rem !important;
}

.mt-145 {
  margin-top: 14.5rem !important;
}

.mb-145 {
  margin-bottom: 14.5rem !important;
}

.mt-150 {
  margin-top: 15rem !important;
}

.mb-150 {
  margin-bottom: 15rem !important;
}

/* padding
*******************/
.pd-0 {
  box-sizing: border-box;
  padding: 0rem !important;
}

.pd-5 {
  box-sizing: border-box;
  padding: 0.5rem !important;
}

.pd-10 {
  box-sizing: border-box;
  padding: 1rem !important;
}

.pd-15 {
  box-sizing: border-box;
  padding: 1.5rem !important;
}

.pd-20 {
  box-sizing: border-box;
  padding: 2rem !important;
}

.pd-25 {
  box-sizing: border-box;
  padding: 2.5rem !important;
}

.pd-30 {
  box-sizing: border-box;
  padding: 3rem !important;
}

.pd-35 {
  box-sizing: border-box;
  padding: 3.5rem !important;
}

.pd-40 {
  box-sizing: border-box;
  padding: 4rem !important;
}

.pd-45 {
  box-sizing: border-box;
  padding: 4.5rem !important;
}

.pd-50 {
  box-sizing: border-box;
  padding: 5rem !important;
}

.pd-55 {
  box-sizing: border-box;
  padding: 5.5rem !important;
}

.pd-60 {
  box-sizing: border-box;
  padding: 6rem !important;
}

.pd-65 {
  box-sizing: border-box;
  padding: 6.5rem !important;
}

.pd-70 {
  box-sizing: border-box;
  padding: 7rem !important;
}

.pd-75 {
  box-sizing: border-box;
  padding: 7.5rem !important;
}

.pd-80 {
  box-sizing: border-box;
  padding: 8rem !important;
}

.pd-85 {
  box-sizing: border-box;
  padding: 8.5rem !important;
}

.pd-90 {
  box-sizing: border-box;
  padding: 9rem !important;
}

.pd-95 {
  box-sizing: border-box;
  padding: 9.5rem !important;
}

.pd-100 {
  box-sizing: border-box;
  padding: 10rem !important;
}

.pd-105 {
  box-sizing: border-box;
  padding: 10.5rem !important;
}

.pd-110 {
  box-sizing: border-box;
  padding: 11rem !important;
}

.pd-115 {
  box-sizing: border-box;
  padding: 11.5rem !important;
}

.pd-120 {
  box-sizing: border-box;
  padding: 12rem !important;
}

.pd-125 {
  box-sizing: border-box;
  padding: 12.5rem !important;
}

.pd-130 {
  box-sizing: border-box;
  padding: 13rem !important;
}

.pd-135 {
  box-sizing: border-box;
  padding: 13.5rem !important;
}

.pd-140 {
  box-sizing: border-box;
  padding: 14rem !important;
}

.pd-145 {
  box-sizing: border-box;
  padding: 14.5rem !important;
}

.pd-150 {
  box-sizing: border-box;
  padding: 15rem !important;
}

/* 背景
*******************/
.curve {
  position: relative;
  padding-top: 10vw;
}
.curve::before {
  display: block;
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateY(0%) translateX(-50%);
  width: 120%;
  height: 10vw;
  border-bottom-right-radius: 50% 100%;
  border-bottom-left-radius: 50% 100%;
  background-color: #ffffff;
  content: "";
}

body {
  background: #e6e9eb url(../images/bg.png) repeat center/auto;
  color: #595757;
  font-feature-settings: "palt";
}

picture {
  display: block;
}

img {
  height: auto;
}

.mv img {
  width: 100%;
  max-width: unset;
}

.about {
  padding-top: 14.5rem;
  padding-bottom: 10rem;
}
.about_ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 7rem;
  font-weight: 400;
  font-size: 2.6rem;
  letter-spacing: 0.08em;
  row-gap: 1.5rem;
}
.about_ttl span span {
  vertical-align: top;
}
.about_ttl span strong {
  font-weight: 700;
  font-size: 5rem;
  letter-spacing: 0.03em;
}
.about_ttl span small {
  font-size: 1.6rem;
}
.about .intro {
  margin-bottom: 23rem;
}
.about .intro_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  row-gap: 6rem;
}
.about .intro_left {
  width: 50%;
}
.about .intro_left_txt {
  font-size: 2rem;
  line-height: 1.7;
  text-align: center;
  letter-spacing: 0.1em;
}
.about .intro_right {
  width: 50%;
}
.about .intro_right_list {
  display: grid;
  row-gap: 2rem;
}
.about .intro_right_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 2px dotted #040000;
  border-radius: 0.8rem;
}
.about .intro_right_num {
  font-family: "avenir", sans-serif;
  padding-left: 3rem;
  font-weight: 100;
  font-size: 8rem;
  letter-spacing: 0.03em;
}
.about .intro_right_box {
  padding: 3.5rem 2rem;
}
.about .intro_right_ttl {
  margin-bottom: 1.5rem;
  border-radius: 100vh;
  background-color: #c2d500;
  font-weight: 400;
  font-size: 2.2rem;
  text-align: center;
  letter-spacing: 0.05em;
}
.about .intro_right_txt {
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.about .intro_right_img {
  flex-shrink: 0;
  width: 40%;
  height: 100%;
}
.about .intro_right_img img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about .points {
  display: grid;
  row-gap: 10rem;
}
.about .points_item {
  padding: 0 5rem 8rem;
  border-radius: 3.7rem;
  background-color: #fff;
}
.about .points_item.img {
  padding: 0;
}
.about .points_ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  left: 50%;
  transform: translate(-50%, -40%);
  max-width: 79.4rem;
  min-height: 9rem;
  padding: 1.5rem 1.5rem;
  border: 0.6rem solid #fff;
  border-radius: 100vh;
  background-color: #bfd200;
  font-weight: 800;
  font-size: 2.8rem;
  text-align: center;
  letter-spacing: 0.1em;
}
.about .points_ttl::before {
  display: inline-block;
  position: absolute;
  top: calc(100% - 1px);
  right: 30%;
  width: 3.7rem;
  height: 2.6rem;
  background: url(../images/points_ttl_arrow.svg) no-repeat center/contain;
  vertical-align: middle;
  content: "";
}
.about .points_lead {
  max-width: 88.6rem;
  margin: 0 auto 6rem;
  font-size: 2.5rem;
  line-height: 1.76;
  letter-spacing: 0.08em;
}
.about .points_lead b {
  display: block;
  font-size: 3rem;
  text-align: center;
  letter-spacing: 0.05em;
}
.about .points_worries_list {
  display: flex;
  margin-bottom: 0.5rem;
}
.about .points_worries_item {
  flex: 1;
}
.about .points_worries_item:nth-of-type(1) {
  margin-top: 6%;
}
.about .points_worries_item:nth-of-type(2) {
  transform: scale(1.1);
  transform-origin: top right;
}
.about .points_worries_item:nth-of-type(3) {
  margin-top: 6%;
}
.about .points_end_txt {
  max-width: 85.8rem;
  font-size: 2.5rem;
  line-height: 1.76;
  text-align: center;
  letter-spacing: 0.08em;
  margin-inline: auto;
}
.about .points_end_txt span {
  display: block;
  margin-bottom: 1.5rem;
  font-weight: 700;
  font-size: 3.2rem;
  text-decoration: underline;
  -webkit-text-decoration-color: #c2d500;
          text-decoration-color: #c2d500;
  letter-spacing: 0.1em;
  text-underline-offset: -0.3em;
  text-decoration-thickness: 1.4rem;
}
.about .points_graph {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about .points_graph_left {
  position: relative;
  width: 42%;
}
.about .points_graph_left::before {
  content: "";
  position: absolute;
  bottom: 30%;
  left: 95%;
  width: 30%;
  height: 1px;
  border-bottom: 0.4rem dotted #e96d56;
}
.about .points_graph_right {
  width: 52%;
}
.about .points_graph_right_ttl {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.6333333333;
  letter-spacing: 0.1em;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
.about .points_graph_right_ttl::before {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 8.3rem;
  height: 8.3rem;
  border-radius: 100%;
  background-color: #c2d500;
  color: #fff;
  font-weight: 700;
  font-size: 5.7rem;
  text-transform: uppercase;
  content: "Q";
}
.about .points_graph_right_txt {
  color: #e96d56;
  font-weight: 700;
  font-size: 4rem;
  line-height: 2;
  text-align: center;
  text-decoration: underline;
  -webkit-text-decoration-color: #e96d56;
          text-decoration-color: #e96d56;
  -webkit-text-decoration-style: wavy;
          text-decoration-style: wavy;
  letter-spacing: 0.1em;
  text-underline-offset: 0.3em;
  text-decoration-thickness: 0.3rem;
}
.about .points_graph_right_txt span {
  font-size: 1.5em;
}
.about .points_step_list {
  display: flex;
  margin-bottom: 9rem;
  padding: 0;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
  list-style: none;
}
.about .points_step_item {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 2rem 1rem;
  border-radius: 1rem;
  background-color: #e2e5e7;
}
.about .points_step_item:not(:last-of-type)::after {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 100%;
  z-index: 1;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  content: "";
  border-top: 3.6rem solid transparent;
  border-bottom: 3.6rem solid transparent;
  border-left: 3.8rem solid #595757;
  border-right: 0;
}
.about .points_step_item_ttl {
  font-weight: 300;
  font-size: 3rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.about .points_step_item_ttl span {
  position: relative;
  z-index: 1;
}
.about .points_step_item_ttl span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 100%;
  background-color: #fff;
  content: "";
}
.about .points_step_item_img {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
}
.about .points_step_item_txt {
  font-size: 2.6rem;
  line-height: 1.2307692308;
  text-align: center;
  letter-spacing: 0.03em;
}
.about .points_content_inner {
  position: relative;
  margin-bottom: 2rem;
}
.about .points_content_inner > *:nth-of-type(1) {
  max-width: 59.6rem;
  margin-inline: auto;
}
.about .points_content_inner > *:nth-of-type(2) {
  position: absolute;
  top: -11%;
  left: 4%;
  max-width: 21.2rem;
}
.about .points_content_inner > *:nth-of-type(3) {
  position: absolute;
  top: -15%;
  right: 14%;
  max-width: 12rem;
}
.about .points_content_txt {
  font-size: 2.6rem;
  line-height: 1.2307692308;
  text-align: center;
  letter-spacing: 0.03em;
}
.about .points_item.development {
  padding: 0;
  background-color: transparent;
}
.about .points_item.development .points_ttl {
  transform: translate(-50%, 50%);
}

@media (767px < width <= 1280px) {
  .about {
    padding-top: 10rem;
  }
  .about_ttl {
    margin-bottom: 0;
    font-size: 2.08rem;
  }
  .about_ttl strong {
    font-size: 4rem;
  }
  .about_ttl small {
    font-size: 1.28rem;
  }
  .about .intro {
    margin-bottom: 15rem;
  }
  .about .intro_row {
    flex-wrap: wrap;
  }
  .about .intro_left {
    width: 100%;
  }
  .about .intro_left_txt {
    font-size: 1.6rem;
  }
  .about .intro_right {
    width: 100%;
  }
  .about .intro_right_num {
    padding-left: 8%;
    font-size: 6.4rem;
  }
  .about .intro_right_ttl {
    font-size: 1.76rem;
  }
  .about .intro_right_txt {
    font-size: 1.44rem;
  }
  .about .intro_right_img {
    width: 30%;
  }
  .about .points_item {
    padding: 0 3.5rem 5rem;
  }
  .about .points_ttl {
    font-size: 2.24rem;
  }
  .about .points_lead {
    font-size: 2rem;
  }
  .about .points_lead b {
    font-size: 2.4rem;
  }
  .about .points_end_txt {
    font-size: 2rem;
  }
  .about .points_end_txt span {
    font-size: 2.56rem;
  }
  .about .points_graph_left::before {
    width: 20%;
  }
  .about .points_graph_right_ttl {
    font-size: 2.24rem;
  }
  .about .points_graph_right_ttl::before {
    width: 6.64rem;
    height: 6.64rem;
    font-size: 4.56rem;
  }
  .about .points_graph_right_txt {
    font-size: 3.2rem;
  }
  .about .points_step_list {
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
  .about .points_step_item:not(:last-of-type)::after {
    border-top: 2.88rem solid transparent;
    border-bottom: 2.88rem solid transparent;
    border-left: 3.04rem solid #595757;
  }
  .about .points_step_item_ttl {
    font-size: 2.4rem;
  }
  .about .points_step_item_ttl span::before {
    width: 2.7rem;
    height: 2.7rem;
  }
  .about .points_step_item_txt {
    font-size: 1.82rem;
  }
  .about .points_content_inner > *:nth-of-type(1) {
    max-width: 90%;
  }
  .about .points_content_inner > *:nth-of-type(2) {
    left: 0;
    max-width: min(16.5625vw, 21.2rem);
  }
  .about .points_content_inner > *:nth-of-type(3) {
    right: 0%;
    max-width: min(9.375vw, 12rem);
  }
  .about .points_content_txt {
    font-size: 2.08rem;
  }
}
@media screen and (max-width: 767px) {
  .about {
    padding-top: 10rem;
  }
  .about .lwrap {
    margin: 0 3rem;
  }
  .about_ttl {
    margin-bottom: 0;
    font-size: 3rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
    row-gap: 0.5rem;
  }
  .about_ttl strong {
    font-size: 4.9rem;
  }
  .about_ttl small {
    display: block;
    font-size: 2rem;
    text-align: end;
  }
  .about .intro {
    margin-bottom: 31rem;
    padding-inline: 1.5rem;
  }
  .about .intro_row {
    flex-wrap: wrap;
    row-gap: 7rem;
  }
  .about .intro_left {
    width: 100%;
  }
  .about .intro_left_img {
    margin-bottom: 6rem;
  }
  .about .intro_left_txt {
    font-size: 2.7rem;
    line-height: 1.6428571429;
    letter-spacing: 0.01em;
  }
  .about .intro_right {
    width: 100%;
  }
  .about .intro_right_item {
    flex-direction: column;
    position: relative;
    border: 0.4rem solid #c2d500;
    border-radius: 2rem;
  }
  .about .intro_right_btn {
    position: absolute;
    bottom: 25%;
    right: 4rem;
    z-index: 2;
    width: 5.3rem;
    height: 5.3rem;
    border: 0.1rem solid #595757;
    border-radius: 100%;
    cursor: pointer;
    transition: transform 0.3s ease, bottom 0.3s ease;
  }
  .about .intro_right_btn::before, .about .intro_right_btn::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 2.4rem;
    height: 0.2rem;
    background-color: #595757;
  }
  .about .intro_right_btn::before {
    left: 0.5rem;
    transform: rotate(45deg) translateY(-50%);
  }
  .about .intro_right_btn::after {
    right: 0.5rem;
    transform: rotate(-45deg) translateY(-50%);
  }
  .about .intro_right_btn.open {
    bottom: 5%;
    transform: rotate(180deg);
  }
  .about .intro_right_num {
    padding-left: 0;
    font-size: 7.7rem;
    line-height: 1;
  }
  .about .intro_right_ttl {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 12rem;
    margin-bottom: 0;
    border-radius: 1.6rem;
    font-size: 3.6rem;
    -moz-column-gap: 3.5rem;
         column-gap: 3.5rem;
    padding-inline: 5.5rem;
  }
  .about .intro_right_body {
    display: none;
    width: 100%;
    margin-top: -2rem;
    border-radius: 0 0 1.6rem 1.6rem;
    background-color: #fff;
  }
  .about .intro_right_txt {
    padding: 4rem 5rem;
    font-size: 3rem;
    line-height: 1.4666666667;
  }
  .about .intro_right_img {
    width: 100%;
    height: auto;
  }
  .about .points {
    row-gap: 17rem;
  }
  .about .points_item {
    padding: 0 4rem 9rem;
    border-radius: 3.7rem;
    background-color: #fff;
  }
  .about .points_item.img {
    padding: 0;
  }
  .about .points_ttl {
    transform: translate(-50%, -50%);
    width: calc(100% + 8rem);
    max-width: unset;
    min-height: 10rem;
    font-size: 2.8rem;
    letter-spacing: 0.02em;
  }
  .about .points_ttl::before {
    right: 25%;
    width: 6rem;
    height: 4rem;
  }
  .about .points_lead {
    margin: 0 auto 3rem;
    font-size: 2.6rem;
    line-height: 1.5384615385;
    letter-spacing: 0.02em;
  }
  .about .points_lead b {
    font-size: 2.9rem;
  }
  .about .points_worries_list {
    flex-direction: column;
    margin-bottom: 0.5rem;
  }
  .about .points_worries_item {
    flex: unset;
  }
  .about .points_worries_item:nth-of-type(1) {
    width: 39.6rem;
    margin: 0 0 0 auto;
  }
  .about .points_worries_item:nth-of-type(2) {
    transform: unset;
    width: 33.3rem;
    margin: -23rem auto 0 0;
  }
  .about .points_worries_item:nth-of-type(3) {
    width: 33.2rem;
    margin: -15rem 0 0 auto;
  }
  .about .points_end_txt {
    margin-top: -9.5rem;
    font-size: 2.5rem;
    line-height: 1.76;
    text-align: start;
  }
  .about .points_end_txt span {
    margin-bottom: 2.5rem;
    font-size: 3.7rem;
  }
  .about .points_graph {
    flex-direction: column-reverse;
    padding-top: 3rem;
  }
  .about .points_graph_left, .about .points_graph_right {
    width: 100%;
  }
  .about .points_graph_left::before {
    content: none;
  }
  .about .points_graph_left picture {
    width: 85%;
    margin-inline: auto;
  }
  .about .points_graph_right_ttl {
    margin-bottom: 4.5rem;
    font-size: 3.6rem;
    line-height: 1.2972972973;
    letter-spacing: 0;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
  .about .points_step {
    padding: 5rem 2rem 0;
  }
  .about .points_step_list {
    flex-direction: column;
    margin-bottom: 22rem;
    row-gap: 4rem;
  }
  .about .points_step_item {
    padding: 2rem 3.5rem;
    border-radius: 1.5rem;
  }
  .about .points_step_item:not(:last-of-type)::after {
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-right: 3.6rem solid transparent;
    border-left: 3.6rem solid transparent;
    border-top: 3.8rem solid #595757;
    border-bottom: 0;
  }
  .about .points_step_item_ttl {
    font-size: 5.2rem;
  }
  .about .points_step_item_ttl span::before {
    width: 8rem;
    height: 8rem;
  }
  .about .points_step_item_img {
    max-width: 37rem;
    margin-bottom: 0;
  }
  .about .points_content_inner {
    margin-bottom: 10.5rem;
  }
  .about .points_content_inner > *:nth-of-type(1) {
    max-width: unset;
    margin-inline: -3rem;
  }
  .about .points_content_inner > *:nth-of-type(2) {
    position: absolute;
    top: -52%;
    left: 27%;
    max-width: 24.2rem;
  }
  .about .points_content_inner > *:nth-of-type(3) {
    position: absolute;
    top: auto;
    right: 21%;
    bottom: -23%;
    max-width: 28.3rem;
  }
  .about .points_content_txt {
    font-size: 2.6rem;
    line-height: 1.2307692308;
    text-align: center;
    letter-spacing: 0.03em;
  }
  .about .points_item.development .points_ttl {
    width: 100%;
  }
}
.cont02 {
  padding-top: 4rem;
}

.accordion {
  position: relative;
  border-radius: 4.5rem;
  background-color: #fff;
}
.accordion_btn {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 10rem;
  height: 5rem;
  cursor: pointer;
}
.accordion_btn::before, .accordion_btn::after {
  position: absolute;
  top: 50%;
  width: 5.25rem;
  height: 1px;
  background-color: #595757;
  content: "";
}
.accordion_btn::before {
  left: 0;
  transform: rotate(25deg) translateY(-50%);
}
.accordion_btn::after {
  right: 0;
  transform: rotate(-25deg) translateY(-50%);
}
.accordion_btn.open {
  bottom: 3%;
}
.accordion_btn.open::before, .accordion_btn.open::after {
  width: 10rem;
}
.accordion_ttl {
  padding: 9.5rem 1.5rem;
  border-radius: 4.5rem;
  background-color: #c2d500;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.5333333333;
  text-align: center;
  letter-spacing: 0.1em;
}
.accordion_body {
  display: none;
  padding: 5rem 7rem 15rem;
  border-radius: 0 0 2.5rem 2.5rem;
  background-color: #fff;
}
.accordion_body_ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  font-weight: 700;
  font-size: 5rem;
  text-align: center;
  letter-spacing: 0.03em;
  -moz-column-gap: 5rem;
       column-gap: 5rem;
}
.accordion_body_ttl span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 11.3rem;
  height: 11.3rem;
  border-radius: 100%;
  background-color: #e4007f;
  color: #fff;
  font-weight: 400;
  font-size: 2.1rem;
  line-height: 1.3333333333;
  text-align: center;
  letter-spacing: 0.03em;
}
.accordion_body_kv {
  max-width: 73rem;
  margin: 0 auto 4rem;
}
.accordion_body_list {
  display: flex;
  margin: 0 -5rem 12rem;
  padding: 0;
  list-style: none;
  counter-reset: counter;
}
.accordion_body_list_item {
  flex: 1;
  padding-inline: 5rem;
}
.accordion_body_list_item:not(:last-of-type) {
  border-right: 0.2rem dotted #040000;
}
.accordion_body_list_box {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.accordion_body_list_box_bg {
  padding: 2.5rem 2rem;
  border-radius: 2.5rem 2.5rem 0 0;
  background-color: #c2d500;
}
.accordion_body_list_box_ttl {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 1.28;
  letter-spacing: 0.05em;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.accordion_body_list_box_ttl::before {
  font-family: "avenir", sans-serif;
  font-weight: 300;
  font-size: 6rem;
  line-height: 1;
  counter-increment: counter 1;
  content: "" counter(counter);
}
.accordion_body_list_txt {
  font-size: 2.3rem;
  line-height: 1.6086956522;
  letter-spacing: 0.05em;
}
.accordion_body_txt {
  margin-bottom: 5rem;
  font-weight: 700;
  font-size: 2.6rem;
  text-align: center;
  text-decoration: underline;
  -webkit-text-decoration-color: #c2d500;
          text-decoration-color: #c2d500;
  letter-spacing: 0.08em;
  text-underline-offset: -0.3em;
  text-decoration-thickness: 1.4rem;
}
.accordion_body_flow {
  display: flex;
  justify-content: space-between;
  padding: 0;
  list-style: none;
}
.accordion_body_flow_item {
  width: 46%;
}
.accordion_body_flow_item:not(:last-of-type) {
  position: relative;
}
.accordion_body_flow_item:not(:last-of-type)::after {
  display: block;
  position: absolute;
  top: 35%;
  left: 107%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  content: "";
  border-top: 2rem solid transparent;
  border-bottom: 2rem solid transparent;
  border-left: 3.4rem solid #c2d500;
  border-right: 0;
}
.accordion_body_flow_item_img {
  margin-bottom: 0.5rem;
}
.accordion_body_flow_item_txt {
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

@media (767px < width <= 1280px) {
  .cont02 {
    padding-top: 0;
  }
  .accordion_btn {
    bottom: 3%;
    width: 8rem;
    height: 4rem;
  }
  .accordion_btn::before, .accordion_btn::after {
    width: 4.2rem;
  }
  .accordion_btn.open {
    bottom: 2%;
  }
  .accordion_btn.open::before, .accordion_btn.open::after {
    width: 8rem;
  }
  .accordion_ttl {
    padding: 5rem;
    font-size: 2.4rem;
  }
  .accordion_body {
    padding: 5rem 3.5rem 10rem;
  }
  .accordion_body_ttl {
    font-size: 4rem;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
  .accordion_body_ttl span {
    width: 9.04rem;
    height: 9.04rem;
    font-size: 1.68rem;
  }
  .accordion_body_kv {
    max-width: 80%;
  }
  .accordion_body_list {
    margin: 0 -1rem 8rem;
  }
  .accordion_body_list_item {
    padding-inline: 1rem;
  }
  .accordion_body_list_box {
    margin-bottom: 1rem;
  }
  .accordion_body_list_box_bg {
    padding: 1.5rem 1.5rem;
  }
  .accordion_body_list_box_ttl {
    font-size: 1.75rem;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
  .accordion_body_list_box_ttl::before {
    font-size: 4.2rem;
  }
  .accordion_body_list_txt {
    font-size: 1.61rem;
  }
  .accordion_body_txt {
    font-size: 2.08rem;
  }
  .accordion_body_flow_item:not(:last-of-type)::after {
    top: 30%;
    left: 104%;
  }
  .accordion_body_flow_item_txt {
    font-size: 1.62rem;
  }
}
@media screen and (max-width: 767px) {
  .cont02 {
    padding-top: 12rem;
  }
  .accordion {
    border-radius: 4rem;
  }
  .accordion_ttl {
    padding: 8rem 1.5rem;
    border-radius: 4rem;
    font-size: 3.2rem;
    line-height: 1.65625;
  }
  .accordion_body {
    display: none;
    padding: 6rem 4.5rem 25rem;
    border-radius: 0 0 4rem 4rem;
  }
  .accordion_body_ttl {
    margin-bottom: 4.5rem;
    font-size: 4.6rem;
    letter-spacing: 0.01em;
  }
  .accordion_body_kv {
    max-width: 73rem;
    margin: 0 auto 4rem;
  }
  .accordion .tag {
    position: relative;
    z-index: 1;
    margin-bottom: -10rem;
    padding-left: 5rem;
  }
  .accordion .tag span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 11.3rem;
    height: 11.3rem;
    border-radius: 100%;
    background-color: #e4007f;
    color: #fff;
    font-weight: 400;
    font-size: 2.4rem;
    line-height: 1.25;
    text-align: center;
    letter-spacing: 0.03em;
  }
  .accordion_body_list {
    flex-direction: column;
    margin: 0 0 12rem;
    row-gap: 3rem;
  }
  .accordion_body_list_item {
    padding-inline: 0;
  }
  .accordion_body_list_item:not(:last-of-type) {
    border-right: none;
  }
  .accordion_body_list_box {
    flex-direction: row;
    margin-bottom: 0;
  }
  .accordion_body_list_box_bg {
    width: 50%;
    padding: 5.5rem 2rem;
    border-radius: 4rem 0 0 4rem;
    background-color: #c2d500;
  }
  .accordion_body_list_box_ttl {
    margin-bottom: 2.5rem;
    font-size: 2.9rem;
  }
  .accordion_body_list_box_ttl::before {
    font-size: 6.8rem;
  }
  .accordion_body_list_txt {
    font-size: 2.3rem;
    line-height: 1.6086956522;
    letter-spacing: 0.02em;
  }
  .accordion_body_list_box_img {
    overflow: hidden;
    width: 50%;
    height: 100%;
    border-radius: 0 4rem 4rem 0;
  }
  .accordion_body_list_box_img img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .accordion_body_txt {
    font-size: 3.1rem;
    letter-spacing: 0.05em;
  }
  .accordion_body_flow {
    flex-direction: column;
    row-gap: 10rem;
  }
  .accordion_body_flow_item {
    width: 100%;
  }
  .accordion_body_flow_item:not(:last-of-type)::after {
    top: 107%;
    left: 50%;
    transform: translateX(-50%);
    border-style: solid;
    border-right: 4.6rem solid transparent;
    border-left: 4.6rem solid transparent;
    border-top: 4.4rem solid #c2d500;
    border-bottom: 0;
  }
  .accordion_body_flow_item_img {
    margin-bottom: 0.5rem;
  }
  .accordion_body_flow_item_txt {
    font-size: 2.5rem;
    line-height: 1.3846153846;
    letter-spacing: 0.01em;
  }
}
.bg_green {
  position: relative;
  margin-top: 20rem;
  padding-top: 24rem;
  padding-bottom: 17rem;
  background-color: #c2d500;
}
.bg_green::before {
  display: block;
  position: absolute;
  bottom: calc(100% - 1px);
  left: 0;
  width: 100%;
  height: auto;
  background: url(../images/bg-green_before.png) no-repeat center/cover;
  content: "";
  aspect-ratio: 150/12;
}
.bg_green .bg_green_inner {
  border-radius: 3rem;
  background-color: #fff;
  padding-inline: 3.5rem;
}
.bg_green .bg_green_inner > * {
  max-width: 1015px;
  margin-inline: auto;
}

@media (767px < width <= 1280px) {
  .bg_green {
    margin-top: 10rem;
    padding-top: 15rem;
    padding-bottom: 10rem;
  }
  .bg_green .bg_green_inner {
    padding-inline: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .bg_green {
    margin-top: 40rem;
    padding-top: 16rem;
    padding-bottom: 16rem;
  }
  .bg_green .bg_green_inner {
    padding-inline: 3rem;
  }
}
.function {
  padding-bottom: 10rem;
}
.function_top_img {
  position: relative;
  left: 50%;
  transform: translate(-50%, -65%);
  max-width: 53.3rem;
  margin-bottom: -22%;
}
.function_ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 7.5rem;
  font-weight: 500;
  font-size: 3rem;
  text-align: center;
  letter-spacing: 0.03em;
  row-gap: 2rem;
}
.function_ttl span {
  display: inline-block;
  padding: 2.5rem 6.5rem;
  border: 0.3rem solid #c2d500;
  border-radius: 100vh;
  font-weight: 300;
  font-size: 4.4rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.function_index {
  display: flex;
  margin-bottom: 8rem;
  -moz-column-gap: 3.5rem;
       column-gap: 3.5rem;
}
.function_index_item {
  flex: 1;
  padding-bottom: 6rem;
}
.function_index_link {
  display: block;
  position: relative;
}
.function_index_link::after {
  display: inline-block;
  position: absolute;
  top: calc(100% + 2rem);
  left: 50%;
  transform: translateX(-50%);
  width: 6.5rem;
  height: 3.38rem;
  background: url(../images/function_link_arrow.svg) no-repeat center/contain;
  vertical-align: middle;
  content: "";
}
.function_list {
  display: grid;
  row-gap: 7rem;
}
.function_item_box {
  border: 0.2rem solid #bfd200;
  border-radius: 2.5rem;
}
.function_item_box_ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 8.8rem;
  padding: 1.5rem 1.5rem;
  border-radius: 2.3rem 2.3rem 0 0;
  background-color: #c2d500;
  font-weight: normal;
  font-size: 3rem;
  line-height: 1.6;
  text-align: center;
  letter-spacing: 0.05em;
}
.function_item_box_body {
  padding: 5rem 6rem 4rem;
}
.function_item_box_body_lead {
  margin-bottom: 2.5rem;
  font-weight: 500;
  font-size: 2.9rem;
  line-height: 1.6551724138;
  letter-spacing: 0.05em;
}
.function_item_box_body_row {
  display: flex;
  justify-content: space-between;
}
.function_item_box_body_row_item p {
  font-size: 1.8rem;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
}
.function_item_box_body_row_item_ttl {
  display: block;
  width: calc(100% - 3rem);
  margin-bottom: 1rem;
  padding: 1.5rem 1.5rem;
  border-radius: 100vh;
  background-color: #868686;
  color: #fff;
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 1;
  text-align: center;
  margin-inline: auto;
}
.function_item_remarks {
  font-size: 1.8rem;
  line-height: 1.3888888889;
  text-align: right;
  letter-spacing: 0.03em;
}

#function01 .function_item_box {
  margin-bottom: 1rem;
}
#function01 .function_item_box_body_row_item:nth-of-type(1) {
  width: 34%;
}
#function01 .function_item_box_body_row_item:nth-of-type(2) {
  width: 32%;
}
#function01 .function_item_box_body_row_item:nth-of-type(3) {
  width: 32%;
}

#function02 .function_item_box_body {
  padding-bottom: 7rem;
}
#function02 .function_item_box_body_row {
  position: relative;
  margin-bottom: 2rem;
  padding-right: 2%;
}
#function02 .function_item_box_body_row_item:nth-of-type(1) {
  width: 32%;
}
#function02 .function_item_box_body_row_item:nth-of-type(2) {
  width: 30%;
}
#function02 .function_item_box_body_row_item:nth-of-type(3) {
  width: 30%;
}
#function02 .function_item_box_body_row_item:nth-of-type(3) .function_item_box_body_row_item_img {
  margin-top: -5%;
}
#function02 .function_item_box_body_row_item:nth-of-type(4) {
  position: absolute;
  top: 6rem;
  left: calc(100% - 1rem);
  width: 5.5rem;
}
#function02 .function_item_box_body_detail {
  padding: 7rem 6rem 8rem;
  border-top: 0.2rem solid #bfd200;
}
#function02 .function_item_box_body_detail_ttl {
  margin-bottom: 4rem;
  font-weight: 500;
  font-size: 2.9rem;
  line-height: 1.6551724138;
  letter-spacing: 0.05em;
}
#function02 .function_item_box_body_detail_img_list {
  display: flex;
  margin-bottom: 2rem;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}
#function02 .function_item_box_body_detail_img_item {
  flex: 1;
}
#function02 .function_item_box_body_detail_txt {
  margin-bottom: 13rem;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
#function02 .function_item_box_body_detail_img_box {
  position: relative;
  margin-bottom: 8.5rem;
}
#function02 .function_item_box_body_detail_img_tag {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: -12%;
  row-gap: 1rem;
}
#function02 .function_item_box_body_detail_img_tag:nth-of-type(1) {
  left: 25%;
}
#function02 .function_item_box_body_detail_img_tag:nth-of-type(2) {
  right: 25%;
}
#function02 .function_item_box_body_detail_img_tag_year {
  padding: 2rem 2.5rem;
  border-radius: 100vh;
  background-color: #bfd200;
  font-size: 2.5rem;
  text-align: center;
  letter-spacing: 0.05em;
}
#function02 .function_item_box_body_detail_img_tag_height {
  font-size: 2.1rem;
  text-align: center;
  letter-spacing: 0.05em;
}
#function02 .function_item_box_body_detail_img {
  max-width: 76.8rem;
  margin-inline: auto;
}
#function02 .function_item_box_body_detail_comment {
  position: relative;
  padding: 3rem 2rem;
  border-radius: 3.2rem;
  background-color: #c2d500;
}
#function02 .function_item_box_body_detail_comment::before {
  content: "";
  position: absolute;
  bottom: calc(100% - 2rem);
  right: 12%;
  display: inline-block;
  vertical-align: middle;
  width: 6.4rem;
  height: 7.4rem;
  background: url(../images/comment_arrow.svg) no-repeat center/contain;
}
#function02 .function_item_box_body_detail_comment::after {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 100%;
  height: 100%;
  border: 0.3rem solid #c2d500;
  border-radius: 3.2rem;
  content: "";
}
#function02 .function_item_box_body_detail_comment_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#function02 .function_item_box_body_detail_comment_row_left {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 32%;
  row-gap: 1rem;
}
#function02 .function_item_box_body_detail_comment_row_left_img {
  max-width: 15.4rem;
}
#function02 .function_item_box_body_detail_comment_row_left_txt {
  text-align: center;
  letter-spacing: 0.05em;
}
#function02 .function_item_box_body_detail_comment_row_left_txt p {
  margin-bottom: 1rem;
  font-size: 2rem;
  line-height: 1.35;
}
#function02 .function_item_box_body_detail_comment_row_left_txt h4 {
  font-weight: 400;
  font-size: 3rem;
  line-height: 1;
}
#function02 .function_item_box_body_detail_comment_row_right {
  width: 67%;
}
#function02 .function_item_box_body_detail_comment_row_right p {
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

@media (767px < width <= 1280px) {
  .function_top_img {
    max-width: 60%;
  }
  .function_ttl {
    font-size: 2.4rem;
  }
  .function_ttl span {
    padding: 1.5rem 5rem;
    font-size: 3.52rem;
  }
  .function_item_box_ttl {
    min-height: 7.04rem;
    font-size: 2.4rem;
  }
  .function_item_box_body {
    padding: 4rem 3.5rem;
  }
  .function_item_box_body_lead {
    font-size: 2.32rem;
  }
  .function_item_box_body_row_item p {
    font-size: 1.6rem;
  }
  .function_item_box_body_row_item_ttl {
    width: 100%;
    font-size: 1.6rem;
  }
  .function_item_remarks {
    font-size: 1.6rem;
  }
  #function02 .function_item_box_body {
    padding-bottom: 5rem;
  }
  #function02 .function_item_box_body_row {
    margin-bottom: 5rem;
    padding-right: 3rem;
  }
  #function02 .function_item_box_body_row_item:nth-of-type(1) {
    width: 34%;
  }
  #function02 .function_item_box_body_row_item:nth-of-type(2) {
    width: 32%;
  }
  #function02 .function_item_box_body_row_item:nth-of-type(3) {
    width: 32%;
  }
  #function02 .function_item_box_body_row_item:nth-of-type(4) {
    top: 15%;
    width: 4rem;
  }
  #function02 .function_item_box_body_detail {
    padding: 4rem 3.5rem;
  }
  #function02 .function_item_box_body_detail_ttl {
    font-size: 2.32rem;
  }
  #function02 .function_item_box_body_detail_txt {
    margin-bottom: 10rem;
    font-size: 1.6rem;
  }
  #function02 .function_item_box_body_detail_img_tag {
    top: -5%;
  }
  #function02 .function_item_box_body_detail_img_tag_year {
    padding: 1rem 1.5rem;
    font-size: 2rem;
  }
  #function02 .function_item_box_body_detail_img_tag_height {
    font-size: 1.68rem;
  }
  #function02 .function_item_box_body_detail_comment {
    padding: 3rem 1.5rem;
  }
  #function02 .function_item_box_body_detail_comment_row_left {
    width: 28%;
  }
  #function02 .function_item_box_body_detail_comment_row_left_img {
    max-width: 70%;
  }
  #function02 .function_item_box_body_detail_comment_row_left_txt p {
    font-size: 1.6rem;
  }
  #function02 .function_item_box_body_detail_comment_row_left_txt h4 {
    font-size: 2.4rem;
  }
  #function02 .function_item_box_body_detail_comment_row_right {
    width: 68%;
  }
  #function02 .function_item_box_body_detail_comment_row_right p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .function_top_img {
    transform: translate(-50%, -50%);
    margin-bottom: -26%;
  }
  .function_ttl {
    margin-bottom: 3rem;
    font-size: 2.6rem;
    row-gap: 3rem;
  }
  .function_index {
    margin-bottom: 6rem;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }
  .function_list {
    row-gap: 9rem;
  }
  .function_item_box {
    border-radius: 4rem;
  }
  .function_item_box_ttl {
    min-height: 9.3rem;
    border-radius: 3.8rem 3.8rem 0 0;
    font-size: 3.6rem;
  }
  .function_item_box_body {
    padding: 5.5rem 3rem 6.5rem;
  }
  .function_item_box_body_lead {
    font-size: 2.8rem;
  }
  .function_item_box_body_row {
    flex-wrap: wrap;
    row-gap: 7rem;
  }
  .function_item_box_body_row_item p {
    font-size: 2.6rem;
    line-height: 1.4615384615;
    letter-spacing: 0;
  }
  .function_item_box_body_row_item_ttl {
    font-size: 2.5rem;
    padding-inline: 0;
  }
  .function_item_remarks {
    font-size: 2rem;
    text-align: start;
  }
  #function01 .function_item_box {
    margin-bottom: 2rem;
  }
  #function01 .function_item_box_body_row_item:nth-of-type(1) {
    width: 100%;
  }
  #function01 .function_item_box_body_row_item:nth-of-type(2) {
    width: 49%;
  }
  #function01 .function_item_box_body_row_item:nth-of-type(3) {
    width: 49%;
  }
  #function02 .function_item_box_body {
    padding-bottom: 10rem;
  }
  #function02 .function_item_box_body_row {
    margin-bottom: 4rem;
    padding-right: 0;
  }
  #function02 .function_item_box_body_row_item .function_item_box_body_row_item_ttl {
    width: 100%;
  }
  #function02 .function_item_box_body_row_item .function_item_box_body_row_item_img {
    margin-bottom: 2rem;
  }
  #function02 .function_item_box_body_row_item:nth-of-type(1) {
    width: 100%;
  }
  #function02 .function_item_box_body_row_item:nth-of-type(1) p {
    margin-bottom: 4rem;
  }
  #function02 .function_item_box_body_row_item:nth-of-type(2), #function02 .function_item_box_body_row_item:nth-of-type(3) {
    width: 45%;
  }
  #function02 .function_item_box_body_row_item:nth-of-type(2) p, #function02 .function_item_box_body_row_item:nth-of-type(3) p {
    font-size: 2.3rem;
  }
  #function02 .function_item_box_body_row_item:nth-of-type(3) .function_item_box_body_row_item_img {
    margin-top: -5%;
  }
  #function02 .function_item_box_body_row_item:nth-of-type(4) {
    position: unset;
    width: 5%;
    padding-top: 4rem;
  }
  #function02 .function_item_box_body_detail {
    padding: 13rem 3rem 10rem;
  }
  #function02 .function_item_box_body_detail_ttl {
    margin-bottom: 3rem;
    font-size: 2.8rem;
  }
  #function02 .function_item_box_body_detail_img_list {
    flex-direction: column;
    margin-bottom: 3rem;
    row-gap: 3.5rem;
  }
  #function02 .function_item_box_body_detail_txt {
    margin-bottom: 15rem;
    font-size: 2.3rem;
    line-height: 1.5217391304;
    letter-spacing: 0.03em;
  }
  #function02 .function_item_box_body_detail_img_box {
    margin-bottom: 10.5rem;
  }
  #function02 .function_item_box_body_detail_img_tag:nth-of-type(1) {
    left: 10%;
  }
  #function02 .function_item_box_body_detail_img_tag:nth-of-type(2) {
    right: 10%;
  }
  #function02 .function_item_box_body_detail_img_tag_year {
    font-size: 2.6rem;
  }
  #function02 .function_item_box_body_detail_img_tag_height {
    font-size: 2.7rem;
  }
  #function02 .function_item_box_body_detail_img {
    max-width: unset;
  }
  #function02 .function_item_box_body_detail_comment {
    padding: 5rem 3rem 8rem;
  }
  #function02 .function_item_box_body_detail_comment::before {
    right: 15%;
  }
  #function02 .function_item_box_body_detail_comment_row {
    flex-direction: column;
    row-gap: 3rem;
  }
  #function02 .function_item_box_body_detail_comment_row_left {
    flex-direction: row;
    width: 100%;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }
  #function02 .function_item_box_body_detail_comment_row_left_txt {
    text-align: start;
  }
  #function02 .function_item_box_body_detail_comment_row_left_txt p {
    margin-bottom: 0;
    font-size: 2.3rem;
  }
  #function02 .function_item_box_body_detail_comment_row_left_txt h4 {
    font-size: 3.3rem;
  }
  #function02 .function_item_box_body_detail_comment_row_right {
    width: 100%;
  }
  #function02 .function_item_box_body_detail_comment_row_right p {
    font-size: 2.6rem;
    line-height: 1.5384615385;
    letter-spacing: 0.03em;
  }
}
.features {
  padding-top: 2rem;
  padding-bottom: 15rem;
}
.features_ttl {
  display: inline-block;
  position: relative;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
  margin-bottom: 6rem;
  padding: 3rem 6rem;
  border: 0.4rem solid #c2d500;
  border-bottom-width: 1rem;
  border-radius: 100vh;
  background-color: #fff;
  font-weight: 500;
  font-size: 3rem;
  text-align: center;
  letter-spacing: 0.05em;
}
.features_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 940px;
  gap: 2rem 6rem;
  margin-inline: auto;
}
.features_item {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}
.features_item_ttl {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 2.8rem;
  line-height: 1.7142857143;
  letter-spacing: 0.05em;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
.features_item_ttl img {
  flex-shrink: 1;
  width: 6.4rem;
}
.features_item_txt {
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

@media (767px < width <= 1280px) {
  .features {
    padding-top: 0;
    padding-bottom: 10rem;
  }
  .features_ttl {
    font-size: 2.4rem;
  }
  .features_list {
    gap: 4rem 2rem;
  }
  .features_item {
    row-gap: 1rem;
  }
  .features_item_ttl {
    font-size: 2.24rem;
  }
  .features_item_ttl img {
    width: 5.12rem;
  }
  .features_item_txt {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .features {
    padding-top: 9rem;
    padding-bottom: 10rem;
  }
  .features_ttl {
    display: block;
    position: unset;
    transform: unset;
    padding: 3.5rem 1.5rem;
    border-bottom-width: 1.5rem;
    font-size: 3.6rem;
    margin-inline: -2rem;
  }
  .features_list {
    display: grid;
    grid-template-columns: unset;
    row-gap: 9rem;
  }
  .features_item {
    padding-inline: 2rem;
    row-gap: 0;
  }
  .features_item_ttl {
    justify-content: center;
    margin-bottom: 4rem;
    font-size: 3.8rem;
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
  }
  .features_item_ttl img {
    width: 8.5rem;
  }
  .features_item_txt {
    font-size: 2.6rem;
    line-height: 1.5384615385;
  }
}
.scene {
  padding-top: 18rem;
  padding-bottom: 21rem;
  background-color: #fff;
}
.scene_ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  margin-bottom: -3rem;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1.5625;
  text-align: center;
  letter-spacing: 0.08em;
  row-gap: 1rem;
}
.scene_ttl img {
  max-width: 41.3rem;
}
.scene_intro_img {
  max-width: 100rem;
  margin: 0 auto 1rem;
}
.scene_lead {
  margin-bottom: 11rem;
  font-size: 2.5rem;
  line-height: 1.76;
  text-align: center;
  letter-spacing: 0.08em;
}
.scene_list {
  display: grid;
  margin-bottom: 8rem;
}
.scene_item {
  display: flex;
}
.scene_item:nth-of-type(1) .scene_item_left img {
  transform: scale(1.15);
  transform-origin: top left;
}
.scene_item:nth-of-type(1) .scene_item_right {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 16rem;
}
.scene_item:nth-of-type(1) .scene_item_right p {
  margin-bottom: 9rem;
  padding-right: 10%;
}
.scene_item:nth-of-type(1) .scene_item_right img {
  transform: scale(1.1);
  transform-origin: bottom right;
}
.scene_item:nth-of-type(2) {
  margin-top: -6.5rem;
  padding-inline: 6rem;
}
.scene_item:nth-of-type(2) .scene_item_left {
  position: relative;
  z-index: 1;
}
.scene_item:nth-of-type(2) .scene_item_left p {
  margin-bottom: 3rem;
}
.scene_item:nth-of-type(2) .scene_item_right {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 19rem;
}
.scene_item:nth-of-type(2) .scene_item_right p {
  margin-bottom: 3rem;
}
.scene_item:nth-of-type(2) .scene_item_right img {
  transform: translateX(-3rem);
}
.scene_item:nth-of-type(3) {
  padding: 3rem 2rem;
}
.scene_item:nth-of-type(3) .scene_item_left {
  position: relative;
  z-index: 0;
}
.scene_item:nth-of-type(3) .scene_item_left img {
  transform: scale(0.95);
  transform-origin: top left;
}
.scene_item:nth-of-type(3) .scene_item_right {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-top: 11rem;
}
.scene_item:nth-of-type(3) .scene_item_right p {
  margin-bottom: 6rem;
  padding-right: 5%;
}
.scene_item:nth-of-type(3) .scene_item_right picture {
  padding-right: 33%;
}
.scene_item:nth-of-type(3) .scene_item_right img {
  transform: scale(1.15);
  transform-origin: top right;
}
.scene_item_left {
  flex: 1;
}
.scene_item_right {
  flex: 1;
}
.scene_item_txt {
  display: inline-block;
  font-size: 2.4rem;
  line-height: 1.5416666667;
}
.scene_end_txt {
  max-width: 95.1rem;
  font-size: 2.1rem;
  line-height: 1.619047619;
  letter-spacing: 0.08em;
  margin-inline: auto;
}

@media (767px < width <= 1280px) {
  .scene {
    padding-top: 10rem;
    padding-bottom: 20rem;
  }
  .scene_ttl {
    margin-bottom: 0;
    font-size: 2.56rem;
  }
  .scene_lead {
    margin-bottom: 10rem;
    font-size: 2rem;
  }
  .scene_item:nth-of-type(1) .scene_item_right {
    padding-top: 15%;
  }
  .scene_item:nth-of-type(1) .scene_item_right p {
    margin-bottom: 20%;
    padding-right: 0;
  }
  .scene_item:nth-of-type(1) .scene_item_right img {
    transform: scale(1.1);
    transform-origin: bottom right;
  }
  .scene_item:nth-of-type(2) {
    margin-top: -6.5rem;
    padding-inline: 3%;
  }
  .scene_item:nth-of-type(2) .scene_item_right {
    padding-top: 20%;
  }
  .scene_item:nth-of-type(3) {
    padding: 3% 2%;
  }
  .scene_item:nth-of-type(3) .scene_item_right {
    padding-top: 10%;
  }
  .scene_item:nth-of-type(3) .scene_item_right p {
    margin-bottom: 10%;
  }
  .scene_item_txt {
    font-size: 1.92rem;
  }
  .scene_end_txt {
    font-size: 1.68rem;
  }
}
@media screen and (max-width: 767px) {
  .scene {
    padding-top: 10rem;
    padding-bottom: 32rem;
  }
  .scene_ttl {
    margin-bottom: -1rem;
    font-size: 3.3rem;
  }
  .scene_ttl img {
    max-width: 41.3rem;
  }
  .scene_intro_img {
    margin: 0 auto 0.5rem;
  }
  .scene_lead {
    margin-bottom: 8rem;
    font-size: 2.6rem;
    line-height: 1.6923076923;
  }
  .scene_list {
    margin-bottom: 2rem;
  }
  .scene_item:nth-of-type(1) .scene_item_right {
    align-items: flex-end;
    padding-top: 8rem;
  }
  .scene_item:nth-of-type(1) .scene_item_right p {
    margin-bottom: 8rem;
    padding-right: 0;
  }
  .scene_item:nth-of-type(1) .scene_item_right picture {
    padding-right: 6rem;
  }
  .scene_item:nth-of-type(2) {
    margin-top: 1.5rem;
    padding-inline: 2rem;
  }
  .scene_item:nth-of-type(2) .scene_item_left p {
    margin-bottom: 1.5rem;
  }
  .scene_item:nth-of-type(2) .scene_item_left img {
    transform-origin: top left;
    transform: scale(1.1);
  }
  .scene_item:nth-of-type(2) .scene_item_right {
    align-items: flex-end;
    padding-top: 8rem;
  }
  .scene_item:nth-of-type(2) .scene_item_right img {
    transform: unset;
  }
  .scene_item:nth-of-type(3) {
    padding: 5rem 3rem 0;
  }
  .scene_item:nth-of-type(3) .scene_item_left img {
    transform: scale(1.1);
  }
  .scene_item:nth-of-type(3) .scene_item_right {
    padding-top: 2.5rem;
  }
  .scene_item:nth-of-type(3) .scene_item_right p {
    margin-bottom: 4rem;
    padding-right: 0;
  }
  .scene_item:nth-of-type(3) .scene_item_right picture {
    padding-right: 8%;
  }
  .scene_item:nth-of-type(3) .scene_item_right img {
    transform: unset;
  }
  .scene_end_txt {
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
    padding-inline: 2rem;
  }
}
.detail {
  padding-top: 10rem;
  padding-bottom: 15rem;
}
.detail_ttl {
  position: relative;
  left: 50%;
  transform: translate(-50%, calc(-50% - 10rem));
  max-width: 81.1rem;
  margin-bottom: -27%;
}
.detail_table {
  width: 100%;
  max-width: 82.5rem;
  margin-bottom: 10rem;
  border-collapse: collapse;
  background-color: #fff;
  margin-inline: auto;
}
.detail_table tr > * {
  padding: 1.3rem 1rem;
  border: 1px solid #211815;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.2777777778;
  text-align: start;
  letter-spacing: 0.05em;
  vertical-align: middle;
}
.detail_table p {
  margin-bottom: 0.5rem;
}
.detail_table dl {
  display: grid;
  grid-template-columns: auto 1fr;
}
.detail_table dt {
  -moz-text-align-last: justify;
       text-align-last: justify; /* Chrome・Firefox用 */
  text-justify: inter-ideograph; /* IE・Edge用 */
}
.detail_table dd {
  position: relative;
  padding-left: 1em;
}
.detail_table dd::before {
  content: "：";
  position: absolute;
  left: 0;
}
.detail_lineup_ttl {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 63.4rem;
  min-height: 10rem;
  margin-bottom: 5rem;
  padding: 1rem 1.5rem;
  border-radius: 100vh;
  background-color: #fff;
  font-weight: 300;
  font-size: 4.4rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.detail_lineup_list {
  display: flex;
  justify-content: space-between;
}
.detail_lineup_item {
  display: flex;
  flex: 1;
  flex-direction: column;
  row-gap: 3rem;
}
.detail_lineup_img img {
  transform: scale(1.3);
  transform-origin: center;
}
.detail_lineup_txt {
  font-weight: 400;
  font-size: 2.9rem;
  text-align: center;
  letter-spacing: 0.03em;
}

@media (767px < width <= 1280px) {
  .detail {
    padding-bottom: 10rem;
  }
  .detail_ttl {
    max-width: 60%;
  }
  .detail_table tr > * {
    font-size: 1.6rem;
  }
  .detail_lineup_ttl {
    min-height: 8rem;
    font-size: 3.52rem;
  }
  .detail_lineup_item {
    row-gap: 2rem;
  }
  .detail_lineup_txt {
    font-size: 2.32rem;
  }
}
@media screen and (max-width: 767px) {
  .detail {
    padding-bottom: 23rem;
  }
  .detail_ttl {
    margin-bottom: -50%;
  }
  .detail_table {
    margin-bottom: 25rem;
  }
  .detail_table tr > * {
    padding: 1.6rem 1rem;
    font-size: 2.6rem;
    line-height: 1.2692307692;
  }
  .detail_table th {
    width: 22%;
    background-color: rgba(230, 233, 235, 0.4);
  }
  .detail_table dt,
.detail_table dd {
    font-size: 2.3rem;
  }
  .detail_lineup_ttl {
    margin-bottom: -5rem;
  }
  .detail_lineup_list {
    flex-direction: column;
  }
  .detail_lineup_item {
    width: 100%;
    row-gap: 0;
  }
  .detail_lineup_item:nth-of-type(1) {
    order: 2;
    margin-top: -5rem;
  }
  .detail_lineup_item:nth-of-type(2) {
    order: 1;
  }
  .detail_lineup_item:nth-of-type(3) {
    order: 3;
    margin-top: -5rem;
  }
  .detail_lineup_img img {
    transform: unset;
    width: 100%;
    max-width: unset;
  }
  .detail_lineup_txt {
    position: relative;
    margin-top: -8rem;
    font-size: 3rem;
  }
}
.footer {
  background-color: #fff;
}