@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
/* ------------------------------------------------------------
reset.min.css
リセット関係・clearfixなど

common.css
レイアウト、スタイルを記載したcss
------------------------------------------------------------ */
/* 全デバイス/画面サイズに共通 かつ
　　479：スマートフォン縦：基本・レイアウト指定 */
* html body {
  background: url(null) fixed;
}
html {
  font-size: 62.5%;
  overflow-x: hidden;
}
body {
  margin: 0;
  padding: 0;
  background: var(--ylw-color);
  color: var(--blk-color);
  font-size: 16px;
  line-height: 2em;
  font-weight: 400;
  font-style: normal;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Helvetica Neue", Arial, Meiryo, sans-serif;
  overflow-wrap: break-word;
  text-size-adjust: 100%;
  font-feature-settings: "palt";
  letter-spacing: 2.4px;
}
:root {
  --wht-color: #FFF;
  --blk-color: #000;
  --org-color: #F5933F;
  --green-color: #ABCB74;
  --green2-color: #CBE2A3;
  --green3-color: #72992D;
  --gray-color: #B0B0B0;
  --ylw-color: #FFFAE8;
  --ylw2-color: #FFEDAF;
}
.pc {
  display: block !important;
}
.sp {
  display: none !important;
}
.vertical {
  /*ブロックの進行方向*/
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  /*文字の向き：英字や数字も日本語のように正立*/
  /*-webkit-text-orientation: upright;
  -ms-text-orientation: upright;
  text-orientation: upright;*/
  margin: 0 0 0 auto;
  /*overflow: hidden;*/
}
.roboto-condensed {
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
.noto-sans {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
@media (min-width: 751px) {
  /*電話番号リンクをスマホのみ有効にする*/
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/* ------------------------------------------------------------ */
/* font */
.lato {
  font-family: "Lato", sans-serif;
}
.serif {
  font-family: "Noto Serif JP", serif;
}
/* ------------------------------------------------------------ */
/* img */
img {
  width: 100%;
}
.pic_box {
  display: block;
}
/* ------------------------------------------------------------ */
/* link */
a {
  cursor: pointer;
  line-height: inherit;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
a:link, a:visited, a:hover, a:active {
  text-decoration: none;
}
a:hover {
  opacity: .8;
  -webkit-transition: .5s;
  transition: .5s;
}
/* ------------------------------------------------------------ */
/* common layouts */
.wrapper {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.inner {
  width: 90%;
  max-width: 90%;
  height: auto;
  margin: 0 auto;
}
.base {
  height: auto;
  position: relative;
}
.center {
  text-align: center;
}
.bold {
  font-weight: 500;
}
.cls-1 {
  fill: #000;
  stroke-width: 0px;
}
.clip_bg {
  position: relative;
  z-index: 0;
  overflow: hidden;
  clip-path: inset(0 0 0 0);
  width: 100%;
  margin: 0;
}
.clip_bg::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  mask-repeat: no-repeat;
  mask-position: 100% 0;
  mask-size: 100%;
  position: absolute;
  z-index: 2;
  top: -1px;
  left: 0;
}
/* ------------------------------------------------------------ */
/* ttl  txt */
h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}
.main_ttl {
  position: relative;
  font-weight: 700;
}
/* ------------------------------------------------------------ */
/* flx_box */
.flx_box {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
/* ------------------------------------------------------------ */
/* animation */
/* フェードイン */
.FadeIn {
  opacity: 0;
  transition-duration: .8s;
}
.FadeIn.is-show {
  opacity: 1;
}
/* 上へ */
.InUp {
  opacity: 0;
  transform: translate(0, 60px);
  -webkit-transform: translate(0, 60px);
  transition: 0.8s;
}
.InUp.is-show {
  opacity: 1;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}
/* 左へ */
.InLft {
  opacity: 0;
  transform: translate(60px, 0);
  -webkit-transform: translate(60px, 0);
  transition: 0.8s;
}
.InLft.is-show {
  opacity: 1;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}
/* 右へ */
.InRgt {
  opacity: 0;
  transform: translate(-60px, 0);
  -webkit-transform: translate(-60px, 0);
  transition: 0.8s;
}
.InRgt.is-show {
  opacity: 1;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}
/* シール横 */
.StickerX {
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  transition: 0.8s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
}
.StickerX.is-show {
  webkit-clip-path: inset(0);
  clip-path: inset(0);
}
/* シール縦 */
.StickerY {
  -webkit-clip-path: inset(0 0 100% 0);
  clip-path: inset(0 0 100% 0);
  transition: 0.8s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
}
.StickerY.is-show {
  webkit-clip-path: inset(0);
  clip-path: inset(0);
}
/* マトリックス */
.matrix .bg-wrap, .matrix .bg-wrap .inn {
  display: block;
}
.matrix .bg-wrap {
  overflow: hidden;
  opacity: 0;
}
.matrix .bg-wrap .inn {
  opacity: 0;
  transform: matrix(1, 0, 0, 1, 0, 100);
  transition: 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.matrix.show .bg-wrap {
  opacity: 1;
}
.matrix.show .bg-wrap .inn {
  opacity: 1;
  transform: matrix(1, 0, 0, 1, 0, 0);
}
/* 発火タイミング調整 */
.in01 {
  animation-delay: 0.3s !important;
  transition-delay: 0.3s !important;
}
.in02 {
  animation-delay: 0.5s !important;
  transition-delay: 0.5s !important;
}
/* ------------------------------------------------------------ */
/* swiper */
.hero .swiper-button-next, .hero .swiper-button-prev {
  color: transparent;
}
.hero .swiper-horizontal > .swiper-pagination-bullets, .hero .swiper-pagination-bullets.swiper-pagination-horizontal, .hero .swiper-pagination-custom, .hero .swiper-pagination-fraction {
  max-width: -webkit-max-content !important;
  max-width: max-content !important;
  width: max-content !important;
  margin: 0 !important;
  left: auto !important;
  right: 7% !important;
  bottom: 2% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
}
.hero .swiper-pagination-bullet {
  background: #999 !important;
  opacity: 1 !important;
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 4px)) !important;
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 4px)) !important;
}
.hero .swiper-pagination-bullet-active {
  background: var(--wht-color) !important;
  opacity: 1 !important;
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 6px)) !important;
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 6px)) !important;
}
.hero .swiper-horizontal > .hero .swiper-pagination-bullets .swiper-pagination-bullet, .hero .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 9px) !important;
}
/* ------------------------------------------------------------ */
/* loop */
.loop01 {
  overflow: hidden;
}
.loop01_list {
  display: flex;
  width: 100vw;
  padding-top: 10px;
  padding-bottom: 10px;
}
.loop01_item {
  flex: 0 0 auto;
  font-size: 15rem;
  line-height: normal;
  white-space: nowrap;
  padding-right: 2.5rem;
  padding-left: 2.5rem;
  color: var(--green-color);
  text-shadow: 1px 1px 0 var(--wht-color), -1px -1px 0 var(--wht-color), -1px 1px 0 var(--wht-color), 1px -1px 0 var(--wht-color), 0px 1px 0 var(--wht-color), 0-1px 0 var(--wht-color), -1px 0 0 var(--wht-color), 1px 0 0 var(--wht-color);
}
.loop01_item:nth-child(odd) {
  animation: loop 50s -25s linear infinite;
}
.loop01_item:nth-child(even) {
  animation: loop2 50s linear infinite;
}
@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
.loop02 {
  display: flex;
  overflow: hidden;
}
.loop02_list {
  display: flex;
  animation: loop-list 50s linear infinite;
}
.loop02_item {
  width: calc(100vw / 3);
  display: block;
}
.loop02_item img {
  width: 100%;
}
@keyframes loop-list {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
/* ------------------------------------------------------------ */
/* opening */
html, body {
  height: 100%;
}
/* ------------------------------------------------------------ */
/* section */
.link_box .link_btn {
  font-size: 1.6rem;
  margin: 2rem auto 0;
  max-width: 315px;
  width: 100%;
  border-radius: 50px;
  background: var(--wht-color);
}
.link_box .link_btn a {
  display: block;
  width: 100%;
  padding: 2rem;
}
/* ------------------------------------------------------------ */
/* hero */
.mv-slider {
  position: absolute;
  width: calc(100vw - 20%);
  height: calc(100vh - 25rem);
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0;
  z-index: -1;
}
.mv-slider .swiper-wrapper {
  overflow: hidden;
  border-radius: 0 100px 100px 0;
}
.mv-slider .swiper-slide {
  height: calc(100vh - 25rem);
}
.mv-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero {
  position: relative;
  z-index: 3;
  height: 100vh;
  overflow: hidden;
  background: var(--ylw-color);
}
.hero .contents {
  width: 100%;
  height: 100%;
}
.hero .contents .inner {
  z-index: 2;
  height: 100%;
}
.hero .logo {
  width: 131px;
  position: absolute;
  top: 3%;
  left: 3%;
}
.hero .ttl_box {
  max-width: -webkit-max-content;
  max-width: max-content;
  max-height: -webkit-max-content;
  max-height: max-content;
  width: 100%;
  position: absolute;
  top: 20%;
  right: 8%;
}
.hero .ttl_box .faq_icon {
  max-width: 160px;
  width: 160px;
  position: absolute;
  top: -16rem;
  left: -13rem;
  z-index: -1;
  display: block;
}
.hero .main_ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-height: -webkit-max-content;
  max-height: max-content;
  max-width: -webkit-max-content;
  max-width: max-content;
  width: 100px;
}
.hero .main_ttl span {
  display: block;
}
.hero .main_ttl .ttl {
  max-width: 90px;
  margin-top: 3rem;
}
.hero .main_ttl .ttl img {
  width: 100%;
}
/* .hero .main_ttl .large {
  font-size: 9.6rem;
  line-height: normal;
  margin-bottom: -3rem;
}
.hero .main_ttl .small {
  font-size: 3.3rem;
  line-height: 5rem;
  letter-spacing: 1rem;
} */
.hero .ttl_box .deco {
  position: absolute;
  z-index: -2;
  top: -20rem;
  left: -30rem;
  width: 501px;
  max-width: 501px;
  margin: 0 auto;
}
.hero h3 {
  position: absolute;
  bottom: 6%;
  left: 3%;
  max-width: 717px;
  width: 50%;
}
/* ------------------------------------------------------------ */
/* intro */
.intro {
  background: var(--ylw-color);
  padding: 21.8rem 0;
  z-index: 3;
}
.intro .inner {
  max-width: 650px;
  z-index: 2;
}
.intro .ttl_box {
  text-align: center;
  position: relative;
  z-index: 2;
}
.intro .ttl_box .main_ttl {
  line-height: 5.5rem;
  letter-spacing: 0.5rem;
}
.intro .ttl_box .main_ttl span {
  display: inline-block;
}
.intro .ttl_box .main_ttl .small {
  font-size: 2.8rem;
}
.intro .ttl_box .main_ttl .clr {
  font-size: 3.6rem;
  color: var(--org-color);
  vertical-align: sub;
}
.intro .ttl_box .main_ttl .large {
  font-size: 6.4rem;
}
.intro .ttl_box .main_ttl .medium {
  font-size: 3.2rem;
}
.intro .txt_box {
  position: relative;
}
.intro .txt_box p {
  text-align: justify;
  font-size: 1.6rem;
  line-height: 3.5rem;
  margin: 3.3rem auto 0;
}
.intro .deco {
  width: 100%;
  position: absolute;
  z-index: -1;
}
.intro .deco.lft {
  max-width: 432px;
  left: -17.7rem;
  top: -26rem;
}
.intro .deco.rgt {
  max-width: 496px;
  right: -17.6rem;
  bottom: -25rem;
}
.intro .pic_box.list_pic {
  width: 100%;
}
/* ------------------------------------------------------------ */
/* answer */
.answer {
  background: url("../img/answer_img_03.webp") center bottom / contain no-repeat var(--ylw-color);
  padding: 26.5rem 0 37.6rem;
  z-index: 3;
}
.answer .inner {
  max-width: 1080px;
}
.answer .ttl_box {
  max-height: -webkit-max-content;
  max-height: max-content;
  width: -webkit-max-content;
  width: max-content;
  position: relative;
  z-index: 2;
  margin: 0 auto;
}
.answer .ttl_box .faq_icon {
  max-width: 160px;
  width: 160px;
  position: absolute;
  top: -11rem;
  right: -9rem;
  z-index: -1;
  display: block;
}
.answer .main_ttl {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  max-height: -webkit-max-content;
  max-height: max-content;
  max-width: -webkit-max-content;
  max-width: max-content;
  line-height: 6rem;
  margin: 0 auto -10rem;
  -webkit-text-orientation: upright;
  -ms-text-orientation: upright;
  text-orientation: upright;
}
.answer .main_ttl .large {
  font-size: 3.2rem;
  letter-spacing: 1.5rem;
  position: relative;
  top: -1.5rem;
}
.answer .main_ttl .large .small {
  margin-bottom: 1rem;
}
.answer .main_ttl .large .mrg {
  display: inline-block;
  position: relative;
  left: 0.8rem;
}
.answer .main_ttl .small {
  font-size: 2.3rem;
  letter-spacing: 1rem;
}
.answer .pic_box {
  width: 100%;
  margin-bottom: 4.5rem;
}
.answer .txt_box {
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
}
.answer .txt_box h3 {
  font-size: 2.3rem;
  line-height: 4.2rem;
  letter-spacing: 0.5rem;
  font-weight: bold;
}
.answer .txt_box p {
  text-align: justify;
  font-size: 1.6rem;
  line-height: 3.5rem;
  padding-left: 16%;
  flex: 1;
}
/* ------------------------------------------------------------ */
/* reason */
.reason {
  background: var(--ylw-color);
  color: var(--wht-color);
  z-index: 3;
}
.reason .contents {
  width: 100%;
  background: var(--green-color);
  padding: 21rem 0 8rem;
}
.reason .inner {
  max-width: 920px;
}
.reason .ttl_box {
  max-height: -webkit-max-content;
  max-height: max-content;
  width: 100%;
  position: relative;
  z-index: 2;
  margin: 0 auto 7.3rem;
}
.reason .ttl_box .faq_icon {
  max-width: 160px;
  width: 160px;
  position: absolute;
  bottom: 5rem;
  left: -12rem;
  z-index: -1;
  display: block;
}
.reason .main_ttl {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  max-height: -webkit-max-content;
  max-height: max-content;
  max-width: -webkit-max-content;
  max-width: max-content;
  width: 100%;
  line-height: 4.8rem;
  letter-spacing: 0.5rem;
  margin: 0 auto;
}
.reason .main_ttl .large {
  font-size: 3.2rem;
  margin-bottom: 4.8rem;
}
.reason .contents_list .contents_item {
  width: 100%;
  align-items: center;
  margin-bottom: 6rem;
}
.reason .contents_list .contents_item .item_ttl_box {
  align-items: flex-start;
  width: 63%;
}
.reason .contents_list .contents_item .item_ttl_box .ttl {
  margin-bottom: 1.5rem;
  align-items: center;
}
.reason .contents_list .contents_item .item_ttl_box h3 {
  position: relative;
  display: inline-block;
  font-size: 4.5rem;
  line-height: normal;
  letter-spacing: 0.5rem;
  font-weight: 500;
}
.reason .contents_list .contents_item .item_ttl_box h3 .fuki {
  max-width: 50px;
  position: absolute;
  top: -2.5rem;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
}
.reason .contents_list .contents_item .item_ttl_box h4 {
  font-size: 1.8rem;
  line-height: 2.9rem;
  font-weight: 700;
  margin-left: 5%;
  flex: 1;
}
.reason .contents_list .contents_item p {
  font-size: 1.4rem;
  line-height: 3rem;
  text-align: justify;
}
.reason .contents_list .contents_item .pic_box {
  width: 30%;
}
.reason .contents_list .contents_item:nth-of-type(1) .pic_box {
  max-width: 242px;
}
.reason .contents_list .contents_item:nth-of-type(2) .pic_box {
  max-width: 252px;
}
.reason .contents_list .contents_item:nth-of-type(3) .pic_box {
  max-width: 233px;
}
/* ------------------------------------------------------------ */
/* banner */
.banner.clip_bg {
  background: var(--ylw-color);
}
.banner.clip_bg::before {
  mask-image: url("../img/reason_img_09.svg");
  background-color: var(--green-color);
}
.banner .inner {
  max-width: 825px;
  z-index: 3;
}
.banner a {
  display: block;
}
/* ------------------------------------------------------------ */
/* series */
.series {
  background: var(--ylw-color);
  padding: 0;
  overflow: hidden;
}
.series .inner {
  max-width: 100%;
  width: 100%;
  z-index: 2;
}
.series .contents {
  background: var(--ylw-color);
  position: relative;
  z-index: 4;
  padding: 23.8rem 0 0;
}
.series .ttl_box {
  width: 100%;
  max-height: -webkit-max-content;
  max-height: max-content;
  position: relative;
  z-index: 2;
  margin: 0 auto;
}
.series .main_ttl {
  max-height: -webkit-max-content;
  max-height: max-content;
  max-width: -webkit-max-content;
  max-width: max-content;
  width: 100%;
  margin: 0 auto;
}
.series .main_ttl span {
  display: block;
}
.series .main_ttl .medium {
  font-size: 2rem;
  margin-bottom: 3.5rem;
}
.series .main_ttl .large {
  font-size: 2.3rem;
  line-height: 3.8rem;
  margin-bottom: 0.9rem;
}
.series .main_ttl .small {
  font-size: 1.6rem;
}
.series .main_ttl .logo {
  margin-bottom: 3.5rem;
}
.series .ttl_box .deco {
  position: absolute;
  z-index: -1;
  width: 100%;
}
.series .ttl_box .deco.lft {
  left: 15%;
  width: 30%;
  top: 15%;
  max-width: 434px;
}
.series .ttl_box .deco.rgt {
  top: -20%;
  right: 19%;
  width: 29%;
  max-width: 417px;
}
.series .main_pic {
  position: relative;
  z-index: 3;
}
.series .main_pic, .series .sub_pic {
  width: 100%;
}
.series .txt_box {
  max-width: -webkit-max-content;
  max-width: max-content;
  width: 80%;
  margin: 0 auto;
  padding: 7.7rem 0;
}
.series .txt_box h3 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 3.5rem;
}
.series .txt_box p {
  font-size: 1.5rem;
  line-height: 2.8rem;
  text-align: justify;
  max-width: 484px;
  width: 100%;
  margin: 0 auto;
}
.series .link_box {
  padding: 175px 0;
}
.series .link_box h2 {
  font-size: 2.8rem;
  line-height: 4.4rem;
  margin-bottom: 2.5rem;
  font-weight: 700;
}
.series .link_box .inner {
  max-width: 800px;
  position: relative;
  left: -5%;
}
.series .link_box .flx_box {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.series .link_box .catalog {
  max-width: 378px;
  width: 50%;
}
.series .link_box .txt_box {
  max-width: -webkit-max-content;
  max-width: max-content;
  width: 50%;
}
.series .link_box .txt_box .fuki {
  font-size: 1.7rem;
  letter-spacing: 0.1rem;
  text-align: center;
  margin: 0 auto 1rem;
  max-width: -webkit-max-content;
  max-width: max-content;
  width: 100%;
  position: relative;
  padding: 0 15px;
  font-weight: 500;
}
.series .link_box .txt_box .fuki::before, .series .link_box .txt_box .fuki::after {
  content: "";
  height: 23px;
  width: 1px;
  background: #000;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
.series .link_box .txt_box .fuki::after {
  transform: rotate(-30deg);
  left: 0;
}
.series .link_box .txt_box .fuki::before {
  transform: rotate(30deg);
  right: 0;
}
.series .link_box .txt_box .link_btn {
  text-align: center;
}
.series .link_box .txt_box .link_btn a {
  margin: 0 auto;
  text-align: center;
}
/* ------------------------------------------------------------ */
/* plan */
.plan {
  background: var(--green-color);
  color: var(--wht-color);
  padding: 11.1rem 0 15rem;
}
.plan .inner {
  max-width: 1080px;
}
.plan .ttl {
  max-width: 90px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
.plan h2 {
  font-size: 2.4rem;
  line-height: 4.5rem;
  text-align: center;
  font-weight: bold;
  margin-bottom: 7rem;
}
.plan .plan-slider-wrapper {
  overflow: hidden;
  padding: 0 5rem 5rem;
}
.plan .plan-slider {
  overflow: hidden;
}
.plan .swiper-button-next, .plan .swiper-button-prev {
  color: transparent;
}
.plan .swiper-button-next {
  right: 0;
}
.plan .swiper-button-prev {
  left: 0;
}
/* 前へ次への矢印カスタマイズ */
.plan .swiper-button-prev::after, .plan .swiper-button-next::after {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0;
  height: 0;
  background: url(../img/icon_arrow.svg) center / 100% no-repeat;
  width: 30px;
  height: 45px;
}
/* 前への矢印カスタマイズ */
.plan .swiper-button-prev::after {
  transform: scale(-1, 1);
}
/* 次への矢印カスタマイズ */
.plan .swiper-button-next::after {}
.plan .swiper-horizontal > .plan .swiper-pagination-bullets, .plan .swiper-pagination-bullets.swiper-pagination-horizontal, .plan .swiper-pagination-custom, .plan .swiper-pagination-fraction {
  margin: 0 auto !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
}
.plan .swiper-pagination-bullet {
  background: var(--green-color) !important;
  border: 1px solid var(--wht-color);
  opacity: 1 !important;
  width: 10px !important;
  height: 10px !important;
  border-radius: 100px;
}
.plan .swiper-pagination-bullet-active {
  background: var(--wht-color) !important;
  opacity: 1 !important;
  width: 10px !important;
  height: 10px !important;
}
.plan .swiper-horizontal > .plan .swiper-pagination-bullets .swiper-pagination-bullet, .plan .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 9px) !important;
}
/* accordion */
.accordion-item {
  background: var(--wht-color);
  color: var(--blk-color);
  border-radius: 10px;
}
.accordion-item:not(:last-of-type) {
  margin-bottom: 2rem;
}
/* ヘッダー部分 */
.accordion-header {
  cursor: pointer;
}
.accordion-title {
  font-weight: bold;
  background: var(--org-color);
  color: var(--wht-color);
  padding: 0.5rem 5%;
  border-radius: 10px 10px 0 0;
  font-weight: 300;
  text-align: center;
}
.accordion-ph {
  padding: 2.5rem 7%;
}
/* 開閉アイコン */
.accordion-icon {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
}
.accordion-icon::before, .accordion-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: var(--wht-color);
  transition: transform .3s;
}
/* 縦線 */
.accordion-icon::before {
  width: 1px;
  height: 16px;
  margin-left: -1px;
  transform: translateY(-50%);
}
/* 横線 */
.accordion-icon::after {
  width: 16px;
  height: 1px;
  margin-top: -1px;
  transform: translateX(-50%);
}
/* 開いているときは縦線を非表示に */
.accordion-item.is-active .accordion-icon::before {
  transform: translateY(-50%) rotate(90deg);
}
/* コンテンツ部分 */
.accordion-content {
  height: 0;
  overflow: hidden;
  transition: height 0.3s;
}
.accordion-content__inner {
  padding: 2rem 10% 5.6rem;
}
/* ------------------------------------------------------------ */
/* point */
.point {
  background: var(--ylw-color);
  padding: 16rem 0;
}
.point .inner {
  max-width: 1440px;
  width: 100%;
}
.point .point_item {
  justify-content: space-between;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  margin: 0 auto 17rem;
  z-index: 2;
}
.point .point_item:last-of-type {
  margin-bottom: 0;
}
.point .point_item .main_pic {
  max-width: 763px;
}
.point .point_item h4 {
  position: relative;
  z-index: 2;
  max-width: -webkit-max-content;
  max-width: max-content;
  max-height: -webkit-max-content;
  max-height: max-content;
  height: 100%;
  font-weight: 700;
  font-size: 2.8rem;
  margin: 0;
  line-height: 5rem;
}
.point .point_item h4::before {
  content: "";
  z-index: -1;
  border-radius: 50px;
  width: 85px;
  height: 85px;
  position: absolute;
  top: -4.3rem;
  right: -2rem;
  background: var(--org-color);
}
.point .point_item h4 .down {
  position: relative;
  top: 2rem;
}
.point .point_item img {
  margin: 0;
}
.point .point_item .deco {
  position: absolute;
  z-index: -1;
}
.point .point_item.item1 {
  max-width: 1170px;
  width: 81%;
  margin: 0 0 12rem;
  flex-direction: row-reverse;
}
.point .point_item.item1 img {
  width: 84%;
}
.point .point_item.item2 {
  max-width: 1086px;
  width: 75%;
  flex-direction: row-reverse;
  align-items: flex-end;
}
.point .point_item.item2 img:nth-of-type(1) {
  width: 52%;
  padding-bottom: 23.5%;
}
.point .point_item.item2 img:nth-of-type(2) {
  width: 41%;
}
.point .point_item.item3 {
  max-width: 737px;
  width: 51%;
}
.point .point_item.item3 img:nth-of-type(1) {
  width: 70%;
}
.point .point_item.item3 .deco {
  width: 55%;
  top: -35%;
  right: -40%;
}
.point .point_item.item4 {
  max-width: 987px;
  width: 69%;
  flex-direction: row-reverse;
}
.point .point_item.item4 img:nth-of-type(1) {
  width: 78%;
}
.point .point_item.item5 {
  max-width: 1049px;
  width: 73%;
  padding-bottom: 26rem;
  align-items: flex-start;
}
.point .point_item.item5 h4 {
  margin-left: 8%;
}
.point .point_item.item5 img:nth-of-type(1) {
  width: 67%;
}
.point .point_item.item5 img:nth-of-type(2) {
  width: 26%;
  position: absolute;
  left: 0;
  bottom: 0;
}
.point .point_item.item5 .deco {
  width: 36%;
  bottom: -13%;
  right: -30%;
  left: 0;
  margin: 0 auto;
}
.point .point_item.item6 {
  max-width: 1098px;
  width: 76%;
}
.point .point_item.item6 img:nth-of-type(1) {
  width: 100%;
}
.point .point_item.item7 {
  max-width: 767px;
  width: 53%;
  flex-direction: row-reverse;
}
.point .point_item.item7 img:nth-of-type(1) {
  width: 68%;
}
.point .point_item.item8 {
  max-width: 1215px;
  width: 84%;
  margin: 0 0 17rem auto;
}
.point .point_item.item8 img:nth-of-type(1) {
  width: 80%;
}
.point .point_item.item9 {
  max-width: 1003px;
  width: 70%;
  align-items: flex-end;
}
.point .point_item.item9 img:nth-of-type(1) {
  width: 63%;
  padding-bottom: 12.5%;
}
.point .point_item.item9 img:nth-of-type(2) {
  width: 29%;
}
.point .point_item.item9 .deco {
  width: 39%;
  top: 1%;
  right: -10%;
}
/* ------------------------------------------------------------ */
/* engawa */
.engawa .link_box {
  background: var(--org-color);
}
.engawa .main_ttl .logo {
  width: 25.2rem;
}
.engawa .ttl_box .deco .rgt {
  max-width: 298px;
  right: -14rem;
  top: -9rem;
}
.engawa .ttl_box .deco .lft {
  max-width: 434px;
  left: -25rem;
  bottom: -21rem;
}
/* ------------------------------------------------------------ */
/* model */
.model {
  z-index: 4;
  background: var(--green-color);
  color: var(--blk-color);
  padding: 23.3rem 0 10rem;
}
.model .main_box .loop01 {
  position: absolute;
  top: -20rem;
  left: 0;
  z-index: -1;
}
.model .lineup_list {
  align-items: flex-end;
}
.model h2 {
  font-size: 2.4rem;
  line-height: 4.2rem;
  font-weight: bold;
  text-align: center;
  color: var(--wht-color);
  max-width: max-content;
  margin: 0 auto 4rem;
}
.model .lineup_box .inner {
  max-width: 841px;
}
.model .lineup_box .lineup_item {
  width: 100%;
  text-align: center;
}
.model .lineup_box .lineup_item p {
  margin-top: 4.2rem;
}
.model .lineup_box .lineup_item p img {
  max-width: 131px;
  width: 100%;
}
.model .lineup_box .lineup_item p span {
  font-size: 2.2rem;
  display: block;
  margin-top: 1.5rem;
  font-weight: 700;
}
.model .lineup_box .link_box {
  -webkit-max-width: max-content;
  max-width: max-content;
  width: 100%;
  margin: 3rem auto 13.5rem;
}
.model .lineup_box .link_box h2 {
  font-size: 1.5rem;
  line-height: 3.5rem;
  letter-spacing: 0;
}
.model .link_box .link_btn {
  color: #5BAE9E;
  margin: 3rem auto 0;
}
.model .window_box {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 1440 / 739;
  overflow: hidden;
  background: url("../img/model_img_03.webp")center / cover no-repeat;
  color: var(--wht-color);
}
.model .window_box::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  -webkit-mask-image: url("../img/model_img_05.svg");
  mask-image: url("../img/model_img_05.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: 100% 0;
  mask-position: 100% 0;
  -webkit-mask-size: 100%;
  mask-size: 100%;
  background: var(--green-color);
  position: absolute;
  z-index: 2;
  top: -1px;
  left: 0;
}
.model .window_box .ttl_box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: -webkit-max-content;
  height: max-content;
  max-width: -webkit-max-content;
  max-width: max-content;
  line-height: 6rem;
  -webkit-text-orientation: upright;
  -ms-text-orientation: upright;
  text-orientation: upright;
  width: 100%;
  z-index: 2;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.model .window_box .main_ttl {
  font-size: 2.6rem;
  line-height: 5rem;
  letter-spacing: 0.5rem;
}
.model .window_box p {
  font-weight: 300;
  margin-bottom: 1rem;
}
/* ------------------------------------------------------------ */
/* other */
.other {
  padding: 13.4rem 0 13.6rem;
}
.other .inner {
  max-width: 925px;
}
.other h2 {
  text-align: center;
  max-width: max-content;
  margin: 0 auto 3.5rem;
}
.other h2 span {
  display: block;
}
.other h2 .en {
  color: var(--gray-color);
  font-size: 1.8rem;
  font-weight: 200;
  margin-bottom: 1rem;
}
.other h2 .ja {
  color: var(--blk-color);
  font-size: 1.9rem;
  font-weight: 600;
}
.other h3 {
  letter-spacing: 0.1rem;
}
.other p {
  text-align: justify;
  font-size: 1.4rem;
  line-height: 3rem;
  letter-spacing: 0.07rem;
}
.other .spec {
  width: 55%;
  padding-right: 6%;
  border-right: 1px dotted var(--gray-color);
}
.other .spec p {
  letter-spacing: 0;
}
.other .spec .top p {
  font-size: 1.1rem;
  line-height: 2.5rem;
  margin: 1.5rem 0;
}
.other .spec .btm {
  text-align: center;
  border: 1.5px solid var(--blk-color);
  border-radius: 10px;
  padding: 3rem 0;
}
.other .spec .btm::before, .other .spec .btm::after {
  content: "";
  background: var(--ylw-color);
  width: 2px;
  height: 90%;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
.other .spec .btm::before {
  left: -2px;
}
.other .spec .btm::after {
  right: -2px;
}
.other .spec .btm h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 1.5rem 0 1rem;
  line-height: 2.5rem;
}
.other .spec .btm sup {
  vertical-align: super;
  font-size: 1rem;
}
.other .spec .btm p {
  font-size: 1.1rem;
  line-height: 2.1rem;
  letter-spacing: 0;
  max-width: max-content;
  margin: 0 auto;
}
.other .spec .btm img {
  max-width: 105px;
}
.other .movie {
  width: 45%;
  padding-left: 6%;
  text-align: center;
}
.other .movie img:first-of-type {
  width: 100%;
}
.other .movie img:last-of-type {
  width: 68%;
  margin: 4.7rem 0 3.5rem;
}
.other .arrange {
  width: 100%;
  border-top: 1px dotted var(--gray-color);
  padding-top: 7rem;
  margin-top: 7rem;
  align-items: center;
}
.other .arrange h2 {
  text-align: left;
  margin: 0 0 3.5rem;
}
.other .arrange .lft {
  width: 49%;
}
.other .arrange .rgt {
  width: 38%;
}
/* ------------------------------------------------------------ */
/* cntact */
.contact {
  background: var(--green2-color);
  z-index: 3;
}
.contact .cont_box {
  z-index: 2;
}
.contact .window_box {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 1440 / 739;
  overflow: hidden;
  background: url("../img/form_img_01.webp")center / cover no-repeat;
  color: var(--wht-color);
}
.contact .window_box::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  -webkit-mask-image: url("../img/form_img_02.svg");
  mask-image: url("../img/form_img_02.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: 100% 0;
  mask-position: 100% 0;
  -webkit-mask-size: 100%;
  mask-size: 100%;
  background: var(--ylw-color);
  position: absolute;
  z-index: 2;
  top: -1px;
  left: 0;
}
.contact .window_box .ttl_box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: -webkit-max-content;
  height: max-content;
  max-width: -webkit-max-content;
  max-width: max-content;
  line-height: 6rem;
  -webkit-text-orientation: upright;
  -ms-text-orientation: upright;
  text-orientation: upright;
  width: 100%;
  z-index: 2;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.contact .window_box .main_ttl {
  font-size: 2.6rem;
  line-height: 5rem;
  letter-spacing: 0.5rem;
}
.contact .window_box p {
  font-weight: 300;
  margin-bottom: 1rem;
}
.contact .contact-cont {
  padding: 12.8rem 0 18.4rem;
}
.contact .contact-cont .inner {
  max-width: 906px;
}
.contact .contact-cont .ttl-box {
  text-align: center;
  font-weight: 600;
}
.contact .contact-cont .ttl-box h2 {
  font-size: 2rem;
  line-height: 4.5rem;
  font-weight: 600;
  margin-bottom: 10rem;
}
.contact .contact-cont .pamphlet_box {
  max-width: 906px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 6rem;
  margin-bottom: 11.4rem;
  border-bottom: 1px dotted var(--blk-color);
}
.contact .contact-cont .pamphlet_box .logo {
  max-width: 122px;
  width: 100%;
  margin-bottom: 8.7rem;
}
.contact .contact-cont .pamphlet .pamphlet_img {
  max-width: min(409px, 45%);
  margin: 0;
}
.contact .contact-cont .pamphlet p {
  text-align: left;
  font-size: 1.3rem;
  line-height: 2rem;
  font-weight: 600;
}
.contact .contact-cont .pamphlet p .small {
  font-size: 1.2rem;
  font-weight: 400;
}
.contact .ttl_box {
  margin: 0 auto 3rem;
}
.contact .ttl_box .main_ttl {
  font-size: 2.6rem;
  line-height: 5.5rem;
  font-weight: 600;
  letter-spacing: 0.5rem;
  margin: 0 auto;
}
/* 入力エリアベース */
.input-area {
  max-width: 900px;
  width: 90%;
  margin: 0 auto;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 2.3rem;
}
/* フォーム項目 */
.contact-list dl {
  display: flex;
  justify-content: space-between;
  max-width: 600px;
  width: 100%;
  margin: 0 auto 3rem;
}
.contact-list dl.txt {
  align-items: flex-start;
}
.contact-list dt {
  max-width: 220px;
  width: 32%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.contact-list dt i {
  display: none;
}
.contact-list .dummy-required {
  margin: 0 0 0 1rem;
  padding: 2px 8px;
  background: var(--green3-color);
  color: var(--wht-color);
  font-size: .8em;
  line-height: normal;
}
.contact-list dd {
  width: 65%;
}
.contact-list dd input[type="text"], .contact-list dd input[type="email"], .contact-list dd input[type="tel"], .contact-list dd textarea, .contact-list dd select {
  width: 100%;
  padding: 1rem 1.5rem;
  box-sizing: border-box;
  border: 1px solid var(--blk-color);
  background: var(--wht-color);
  font-size: 1.4rem;
}
.contact-list .post dd {
  justify-content: space-between;
}
.contact-list .post dd input {
  width: 65%;
}
.contact-list .post dd .auto {
  width: 30%;
}
/* 自動入力ボタン */
.contact-list dd .auto {
  display: inline-block;
  background: var(--wht-color);
  padding: 1rem 1.5rem;
  border: 1px solid var(--blk-color);
  font-size: 1.2rem;
  text-align: center;
}
/* ドメイン注意 */
.domain-box {
  background: #a7a7a7;
  color: var(--wht-color);
  padding: 2.4rem 4.6rem;
  margin: 6rem auto;
  max-width: 601px;
  width: 100%;
  font-size: 1.1rem;
  line-height: 1.6;
}
.domain-box h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  text-align: center;
}
/* 送信ボタン */
#form_submit input {
  display: block;
  max-width: 250px;
  width: 100%;
  padding: 1.5rem 0;
  margin: 2.5rem auto 0;
  text-align: center;
  background: var(--green3-color);
  color: var(--wht-color);
  border: none;
  border-radius: 50px;
  font-size: 1.6rem;
  cursor: pointer;
  transition: 0.4s;
  letter-spacing: 0.2rem;
}
span.error_blank {
  color: #D15555;
}
.contact .deco {
  position: absolute;
  z-index: -1;
}
.contact .deco.lft {
  left: 0;
  top: 0;
  max-width: 333px;
  width: 23%;
}
.contact .deco.rgt {
  right: 0;
  top: 30%;
  max-width: 434px;
  width: 30%;
}
/* ------------------------------------------------------------ */
/* done */
.done {
  background: var(--ylw-color);
}
.done .formWrap {
  max-width: 700px;
  width: 90%;
  color: var(--blk-color);
  box-sizing: border-box;
  margin: 0 auto;
  padding: 12rem 0;
}
.done .formWrap .contents_box {
  padding: 7rem 5%;
  font-size: 1.8rem;
  font-weight: 700;
}
.done .formWrap .contents_box .link_box .link_btn {
  -webkit-appearance: none;
  display: block;
  max-width: 250px;
  width: 100%;
  padding: 1.5rem 0;
  text-align: center;
  background: var(--green3-color);
  color: var(--wht-color);
  border: none;
  font-size: 1.6rem;
  margin: 2.5rem auto 0;
  opacity: 1;
  cursor: pointer;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  letter-spacing: 0.2rem;
  border-radius: 50px;
}
.done .formWrap .contents_box .link_box .link_btn a {
  padding: 0;
}
/* ------------------------------------------------------------ */
/* footer */
footer {
  padding: 9rem 0 4.1rem;
  background: var(--wht-color);
  z-index: 3;
}
footer .inner {
  max-width: 1304px;
}
footer .txt_box .logo {
  display: block;
  max-width: 176px;
}
footer .txt_box {
  max-width: 865px;
  margin: 0 0 3.5rem;
}
footer .txt_box p {
  font-size: 1.4rem;
  line-height: 2.5rem;
}
footer .copyright {
  font-size: 1.3rem;
  text-align: right;
  letter-spacing: 0;
}
/* ------------------------------------------------------------ */
/* fixed */
#fixed {
  width: 170px;
  height: 149px;
  bottom: 4%;
  right: 0;
  -webkit-transition: 1s;
  transition: 1s;
  transform: translateX(100%);
  position: fixed;
  z-index: 997;
}
#fixed a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#fixed a img {
  width: 100%;
}
#fixed a, #fixed a img {
  -webkit-transition: .5s;
  transition: .5s;
}
#fixed.is-fixed {
  transform: translateX(0%);
  right: 3%;
}
#fixed.is-hide {
  transform: translateX(100%);
}
@media screen and (max-width: 1024px) {
  /* デスクトップ/タブレット横 */
  /* ------------------------------------------------------------ */
  /* hero */
  .hero .ttl_box {
    right: 3%;
  }
  /* ------------------------------------------------------------ */
  /* point */
  .point .point_item h4 {
    height: 100%;
    font-size: 2.5rem;
    line-height: 4.5rem;
  }
}
@media screen and (max-width: 767px) {
  /* タブレット縦 / スマートフォン横 */
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  /* ------------------------------------------------------------ */
  /* animation */
  /* 発火タイミング調整 */
  .in01 {
    animation-delay: 0s !important;
    transition-delay: 0s !important;
  }
  .in02 {
    animation-delay: 0s !important;
    transition-delay: 0s !important;
  }
  /* ------------------------------------------------------------ */
  /* series */
  .series .ttl_box .deco.rgt {
    top: -30%;
    right: 0;
    width: 42%;
    right: 0;
  }
  .series .ttl_box .deco.lft {
    top: auto;
    bottom: 0;
    width: 44%;
    left: 0;
  }
  /* ------------------------------------------------------------ */
  /* contact */
  .contact .window_box {
    aspect-ratio: 5 / 8;
    background: url(../img/form_img_01_sp.webp) center / cover no-repeat;
  }
  .contact .window_box::before {
    -webkit-mask-image: url(../img/form_img_02_sp.svg);
    mask-image: url(../img/form_img_02_sp.svg);
  }
  .contact .window_box .ttl_box {
    line-height: 4rem;
  }
  .contact .contact-cont {
    padding: 12.3rem 0 14.3rem;
  }
  .contact-list dd input, .contact-list dd textarea, .contact-list dd select {
    font-size: 1.3rem;
  }
  .domain-box {
    padding: 2.4rem 10%;
    margin-bottom: 5rem;
  }
  #form_submit input {
    font-size: 1.4rem;
    padding: 1rem 0;
  }
  .contact .deco.lft {
    width: 43%;
  }
  .contact .deco.rgt {
    width: 37%;
    top: 17rem;
  }
  /* ------------------------------------------------------------ */
  /* done */
  .done .formWrap {
    padding: 7rem 0;
  }
  .done .formWrap .contents_box {
    padding: 5rem;
    font-size: 1.6rem;
  }
  .done .formWrap .contents_box .link_box .link_btn {
    font-size: 1.4rem;
    padding: 1rem 0;
  }
}
@media screen and (max-width: 599px) {
  /* ------------------------------------------------------------ */
  /* 共通 */
  .inner {
    width: 85%;
  }
  /* ------------------------------------------------------------ */
  /* section */
  .link_box .link_btn {
    font-size: 1.2rem;
    max-width: 215px;
  }
  .link_box .link_btn a {
    padding: 1.2rem;
  }
  /* ------------------------------------------------------------ */
  /* loop */
  .loop01_item {
    font-size: 6rem;
    letter-spacing: 0.8rem;
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .loop02_item {
    width: 100vw;
  }
  /* ------------------------------------------------------------ */
  /* hero */
  .hero {
    min-height: 634px;
    height: 634px;
  }
  .hero .logo {
    width: min(70px, 22%);
    top: 3.5rem;
  }
  .hero .ttl_box {
    top: 9%;
  }
  .hero .ttl_box .faq_icon {
    max-width: 76px;
    width: 76px;
    position: relative;
    top: -1rem;
    left: -2rem;
    margin: 0;
  }
  .hero .ttl_box .deco {
    top: 0;
    left: -7rem;
    margin: 0 auto;
    width: 191px;
    max-width: 191px;
  }
  .hero .main_ttl .ttl {
    max-width: 50px;
    margin-top: 1rem;
  }
  /* .hero .main_ttl .large {
    font-size: 6.5rem;
  }
  .hero .main_ttl .small {
    font-size: 2.3rem;
    line-height: 3.3rem;
    letter-spacing: 0.5rem;
  } */
  .hero h3 {
    bottom: 3%;
    max-width: 297px;
    width: 93%;
  }
  .mv-slider {
    /*min-height: 444px;
    height: 444px;*/
    height: 75%;
    width: calc(100% - 12% - 55px);
    top: 0;
  }
  .mv-slider .swiper-slide {
    height: 100%;
  }
  .mv-slider .swiper-wrapper {
    border-radius: 0 10px 10px 0;
  }
  /* ------------------------------------------------------------ */
  /* intro */
  .intro {
    padding: 7rem 0 21.7rem;
  }
  .intro .inner {
    width: 95%;
  }
  .intro .txt_box p {
    font-size: 1.4rem;
    line-height: 2.5rem;
    width: 80%;
    margin: 2rem auto;
  }
  .intro .deco.lft {
    left: -15%;
    top: -80%;
    max-width: 184px;
    width: 57%;
    transform: rotate(-15deg);
  }
  .intro .deco.rgt {
    right: -5%;
    bottom: -110%;
    max-width: 215px;
    width: 58%;
  }
  .intro .ttl_box .main_ttl {
    line-height: 3.5rem;
    letter-spacing: 0.3rem;
  }
  .intro .ttl_box .main_ttl .small {
    font-size: 1.8rem;
  }
  .intro .ttl_box .main_ttl .clr {
    font-size: 2.3rem;
  }
  .intro .ttl_box .main_ttl .large {
    font-size: 3.5rem;
  }
  .intro .ttl_box .main_ttl .medium {
    font-size: 1.8rem;
  }
  .intro .txt_box {
    margin: 2rem auto;
  }
  /* ------------------------------------------------------------ */
  /* answer */
  .answer {
    padding: 10.5rem 0 20.8rem;
  }
  .answer .ttl_box .faq_icon {
    max-width: 73px;
    width: 73px;
    top: -6.5rem;
    right: -5.1rem;
  }
  .answer .main_ttl {
    line-height: 4.5rem;
    margin: 0 auto 1.5rem;
  }
  .answer .main_ttl .large {
    font-size: 2.6rem;
    letter-spacing: 0.8rem;
  }
  .answer .main_ttl .large .small {
    margin-bottom: 0.5rem;
  }
  .answer .main_ttl .small {
    font-size: 2rem;
    letter-spacing: 0.5rem;
  }
  .answer .pic_box {
    margin: -4.5rem auto 3rem;
  }
  .answer .txt_box h3 {
    width: 100%;
    font-size: 1.8rem;
    line-height: 3.3rem;
    margin-bottom: 2.5rem;
  }
  .answer .txt_box p {
    width: 100%;
    font-size: 1.4rem;
    line-height: 2.5rem;
    padding-left: 0;
  }
  /* ------------------------------------------------------------ */
  /* reason */
  .reason .ttl_box {
    margin: 0 auto 6rem;
  }
  .reason .ttl_box .faq_icon {
    max-width: 64px;
    width: 64px;
    bottom: 0;
    left: 0;
    top: -7rem;
  }
  .reason .main_ttl {
    max-width: 100%;
    line-height: 3rem;
    letter-spacing: 0.2rem;
  }
  .reason .main_ttl .large {
    font-size: 1.8rem;
    line-height: 3.5rem;
    margin: 0;    
  }
  .reason .contents {
    padding: 11rem 0 5.3rem;
  }
  .reason .contents_list .contents_item {
    width: 100%;
    margin-bottom: 6.5rem;
  }
  .reason .contents_list .contents_item:last-of-type {
    margin-bottom: 0;
  }
  .reason .contents_list .contents_item .item_ttl_box {
    width: 100%;
  }
  .reason .contents_list .contents_item .pic_box {
    width: 100%;
    margin: 4.2rem auto 0;
  }
  .reason .contents_list .contents_item .item_ttl_box h3 {
    font-size: 3.6rem;
  }
  .reason .contents_list .contents_item .item_ttl_box h3 .fuki {
    top: -3rem;
  }
  .reason .contents_list .contents_item .item_ttl_box h4 {
    font-size: 1.5rem;
    letter-spacing: 0.15rem;
  }
  .reason .contents_list .contents_item .item_txt_box {
    margin: 1rem auto 0;
  }
  .reason .contents_list .contents_item p {
    line-height: 2.5rem;
    margin: 0.5rem auto 0;
  }
  .reason .contents_list .contents_item:nth-of-type(1) .pic_box {
    max-width: 204px;
  }
  .reason .contents_list .contents_item:nth-of-type(2) .pic_box {
    max-width: 211px;
  }
  .reason .contents_list .contents_item:nth-of-type(3) .pic_box {
    max-width: 196px;
  }
  /* ------------------------------------------------------------ */
  /* series */
  .series .inner {
    width: 100%;
  }
  .series .link_box {
    padding: 73px 0;
    left: 0;
  }
  .series .link_box .inner {
    left: 0;
  }
  .series .link_box .catalog {
    width: 100%;
    max-width: 320px;
    margin-bottom: 0.5rem;
  }
  .series .link_box .txt_box {
    width: 100%;
  }
  .series .link_box .txt_box .fuki {
    font-size: 1.4rem;
    line-height: 2.5rem;
  }
  .series .link_box .txt_box .fuki::before, .series .link_box .txt_box .fuki::after {
    height: 18px;
  }
  .series .contents {
    padding: 16.1rem 0 0;
  }
  .series .main_ttl {
    margin: 0 auto 5rem;
  }
  .series .main_ttl .medium {
    font-size: 1.6rem;
    margin-bottom: 2.4rem;
  }
  .series .main_ttl .large {
    font-size: 1.8rem;
    line-height: 3rem;
    margin-bottom: 0.4rem;
  }
  .series .main_ttl .small {
    font-size: 1.4rem;
  }
  .series .main_ttl .logo {
    margin-bottom: 2.7rem;
  }
  .series .txt_box {
    padding: 3.3rem 0 8.1rem;
  }
  .series .txt_box h3 {
    font-size: 1.7rem;
    margin-bottom: 1.4rem;
    text-align: left;
  }
  .series .txt_box p {
    font-size: 1.4rem;
  }
  .series .link_box h2 {
    font-size: 1.6rem;
    line-height: 2.5rem;
    margin-bottom: 3rem;
  }
  /* ------------------------------------------------------------ */
  /* plan */
  .plan {
    padding: 4.5rem 0 6rem;
  }
  .plan h2 {
    font-size: 1.7rem;
    line-height: 2.9rem;
    margin: 1rem auto 4rem;
  }
  .plan .inner {
    width: 95%;
  }
  /* ------------------------------------------------------------ */
  /* point */
  .point {
    padding: 13.4rem 0 28.5rem;
  }
  .point .inner .point_item {
    flex-wrap: wrap;
    justify-content: center;
  }
  .point .inner .point_item h4 {
    font-size: 2rem;
  }
  .point .point_item.item1 {
    width: 100%;
    margin: 0 auto 17rem;
  }
  .point .point_item.item1 {
    margin: 0 auto 5rem;
  }
  .point .point_item.item1 img {
    margin-top: 5rem;
    width: 90%;
  }
  .point .point_item.item2 {
    width: 80%;
  }
  .point .point_item.item2 img:nth-of-type(1) {
    width: 84%;
    margin: 0 0 0 auto;
    padding-bottom: 5rem;
  }
  .point .point_item.item2 img:nth-of-type(2) {
    width: 72%;
    margin: 0 auto 0 0;
  }
  .point .point_item.item3 {
    width: 90%;
  }
  .point .point_item.item3 h4 {
    margin-bottom: 5rem;
  }
  .point .point_item.item3 img:nth-of-type(1) {
    width: 100%;
  }
  .point .point_item.item4 {
    width: 90%;
  }
  .point .point_item.item4 h4 {
    margin-bottom: 5rem;
  }
  .point .point_item.item4 img:nth-of-type(1) {
    width: 100%;
  }
  .point .point_item.item5 {
    width: 90%;
    padding-bottom: 0;
  }
  .point .point_item.item5 h4 {
    margin: 0 auto 5rem;
  }
  .point .point_item.item5 img:nth-of-type(1) {
    width: 100%;
    padding-left: 21%;
    margin: 0 0 6rem auto;
  }
  .point .point_item.item5 img:nth-of-type(2) {
    width: 56%;
    position: initial;
    margin: 0 auto 0 0;
  }
  .point .point_item.item6 {
    width: 100%;
  }
  .point .point_item.item7 {
    width: 90%;
  }
  .point .point_item.item7 h4 {
    margin-bottom: 5rem;
  }
  .point .point_item.item7 img:nth-of-type(1) {
    width: 100%;
  }
  .point .point_item.item8 {
    width: 90%;
    margin: 0 auto 6rem;
  }
  .point .point_item.item8 h4 {
    margin-bottom: 5rem;
  }
  .point .point_item.item8 img:nth-of-type(1) {
    width: 100%;
  }
  .point .point_item.item9 {
    width: 95%;
  }
  .point .point_item.item9 img:nth-of-type(1) {
    width: 85%;
    margin: 0 0 0 auto;
    padding-bottom: 6rem;
  }
  .point .point_item.item9 img:nth-of-type(2) {
    width: 46%;
    margin: 0 auto 0 0;
  }
  .point .point_item.item3 .deco {
    width: 35%;
    top: -18%;
    right: 0;
  }
  .point .point_item.item5 .deco {
    width: 57%;
    right: -40%;
    bottom: -16%;
  }
  .point .point_item.item9 .deco {
    width: 60%;
    top: auto;
    bottom: -38%;
    right: 0;
  }
  /* ------------------------------------------------------------ */
  /* engawa */
  .engawa .main_ttl .logo {
    width: 19.9rem;
  }
  .engawa .ttl_box .deco .rgt {
    max-width: 232px;
    right: -14rem;
    top: -8rem;
    width: 72.5%;
  }
  .engawa .ttl_box .deco .lft {
    max-width: 216px;
    left: -18rem;
    bottom: -15rem;
    transform: rotate(6deg);
  }
  /* ------------------------------------------------------------ */
  /* model */
  .model {
    padding: 13.7rem 0 6rem;
  }
  .model .lineup_box .inner {
    width: 95%;
  }
  .model .main_box .loop01 {
    top: -10rem;
  }
  .model h2 {
    font-size: 2rem;
    line-height: 3.4rem;
    margin: 0 auto 3.8rem;
  }
  .model .lineup_box .lineup_item {
    width: 100%;
  }
  .model .lineup_box .lineup_item p img {
    max-width: 99px;
  }
  .model .lineup_box .lineup_item p span {
    font-size: 1.7rem;
  }
  .model .window_box {
    aspect-ratio: 5 / 8;
    background: url(../img/model_img_03_sp.webp) center / cover no-repeat;
  }
  .model .window_box::before {
    -webkit-mask-image: url(../img/model_img_05_sp.svg);
    mask-image: url(../img/model_img_05_sp.svg);
  }
  .model .window_box .ttl_box {
    line-height: 4rem;
  }
  .model .link_box .link_btn {
    margin: 4.9rem auto 0;
  }
  /* ------------------------------------------------------------ */
  /* other */
  .other {
    padding: 7.5rem 0 8.9rem;
  }
  .other .inner {
    width: 95%;
  }
  .other p {
    font-size: 1.2rem;
    line-height: 2.4rem;
    letter-spacing: 0.06rem;
  }
  .other .spec {
    width: 100%;
    padding: 0 0 5rem;
    margin-bottom: 5rem;
    border-right: none;
    border-bottom: 1px dotted var(--gray-color);
  }
  .other .spec .btm img {
    width: 21%;
  }
  .other .spec .btm h3 {
    font-size: 1.3rem;
    line-height: 2.2rem;
  }
  .other .spec .btm p {
    width: 85%;
    line-height: 1.8rem;
  }
  .other .movie {
    width: 100%;
    padding-left: 0;
  }
  .other .arrange {
    padding-top: 5rem;
    margin-top: 5rem;
  }
  .other h2 .en {
    font-size: 1.7rem;
    margin-bottom: 0.5rem;
  }
  .other h2 .ja {
    font-size: 1.8rem;
  }
  .other .txt_box {
    width: 90%;
    margin: 0 auto;
  }
  .other .arrange .lft {
    width: 100%;
    margin: 0 auto 3.6rem;
  }
  .other .arrange .rgt {
    width: 90%;
    margin: 0 auto;
  }
  .other .arrange h2 {
    text-align: center;
    margin: 0 auto 3.5rem;
  }
  /* ------------------------------------------------------------ */
  /* contact */
  .contact .contact-cont .ttl-box h2 {
    font-size: 1.6rem;
    line-height: 3rem;
    margin-bottom: 12rem;
  }
  .contact .contact-cont .pamphlet_box {
    margin-bottom: 6rem;
  }
  .contact .contact-cont .pamphlet_box .logo {
    width: 32%;
    margin-bottom: 5.5rem;
  }
  .contact .contact-cont .pamphlet .pamphlet_img {
    max-width: 100%;
  }
  .contact .contact-cont .pamphlet .pamphlet_img:not(:last-of-type) {
    margin-bottom: 1.5rem;
  }
  .contact-list dl {
    display: block;
  }
  .contact-list dt {
    width: 100%;
    max-width: max-content;
    margin-bottom: 0.5rem;
  }
  .contact-list dd {
    width: 100%;
    max-width: 100%;
  }
  .input-area {
    width: 100%;
  }
  /* ------------------------------------------------------------ */
  /* footer */
  footer {
    padding: 7rem 0 4.1rem;
  }
  footer .txt_box .logo {
    max-width: 154px;
    margin: 0 auto 5.4rem;
  }
  footer .txt_box {
    margin: 0 0 3.2rem;
  }
  footer .copyright {
    text-align: left;
  }
  /* ------------------------------------------------------------ */
  /* fixed */
  #fixed {
    width: 122px;
    height: 107px;
    bottom: 2.5%;
  }
  @media screen and (max-height: 580px) {
    .mv-slider {
      height: 444px;
    }
  }
}
/* ------------------------------------------------------------ */
/* Safari だけに適用 */
_::-webkit-full-page-media, _:future, :root .answer .ttl_box {
  width: 250px;
  height: 500px;
}
_::-webkit-full-page-media, _:future, :root .point .point_item h4 {
  height: 500px;
}
_::-webkit-full-page-media, _:future, :root .point .point_item.item5 h4 {
  left: 8%;
}
@media screen and (max-width: 599px) {
  _::-webkit-full-page-media, _:future, :root .point .point_item.item5 h4 {
    left: 0;
  }
}