@charset "UTF-8";
/*============================================================================================================
	base
============================================================================================================*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a {
  color: inherit;
  text-decoration: none;
}
@media screen and (min-width: 769px) {
  a {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  img {
    width: 100%;
  }
}

@media screen and (min-width: 769px) {
  .hidden-pc {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .hidden-sp {
    display: none !important;
  }
}
/*------------------------------------------
	root
------------------------------------------*/
:root {
  --header-height: 100px;
  --inner-width: min(100%, 1080px + (var(--inner-padding) * 2));
  --inner-padding: 10px;
  --color-txt: #000;
  --color-green: #009458;
  --color-blue: #2771B9;
  --color-beige: #F7F2E9;
  --cv-height: 60px;
}
@media screen and (max-width: 768px) {
  :root {
    --header-height: 70px;
    --inner-padding: 20px;
  }
}

/*------------------------------------------
	font
------------------------------------------*/
body {
  color: var(--color-txt);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0;
  font-family: "IBM Plex Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.5;
}

.f-mochiy {
  font-weight: 400;
  font-family: "Mochiy Pop One", sans-serif;
}

.f-rammetto {
  font-weight: 400;
  font-family: "Rammetto One", sans-serif;
}

/*------------------------------------------
	smooth scroll / frame
------------------------------------------*/
html {
  scroll-behavior: smooth;
}
@media screen and (min-width: 769px) {
  html {
    scroll-padding-top: var(--header-height);
  }
}

@media screen and (min-width: 769px) {
  body {
    min-width: 1000px;
  }
}

.inner {
  width: var(--inner-width);
  margin-inline: auto;
  padding-inline: var(--inner-padding);
}

/*------------------------------------------
	scroll action
------------------------------------------*/
.js-scroll {
  -webkit-transition: opacity 1s, -webkit-transform 1.5s;
  transition: opacity 1s, -webkit-transform 1.5s;
  transition: opacity 1s, transform 1.5s;
  transition: opacity 1s, transform 1.5s, -webkit-transform 1.5s;
}
.js-scroll:nth-child(2) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.js-scroll:nth-child(3) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.js-scroll:nth-child(4) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.js-scroll:nth-child(5) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.js-scroll.is-fadeInUp {
  opacity: 0;
  -webkit-transform: translate(0, 100px);
          transform: translate(0, 100px);
}
.js-scroll.is-fadeInUp.is-view {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  .js-scroll.is-fadeInUp {
    -webkit-transform: translate(0, 40px);
            transform: translate(0, 40px);
  }
}
.js-scroll.is-fadeIn {
  opacity: 0;
}
.js-scroll.is-fadeIn.is-view {
  opacity: 1;
}

/*============================================================================================================
	l-header
============================================================================================================*/
.l-header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 9990;
  top: 0;
  left: 0;
}
.l-header__logo a, .l-header__logo img {
  display: block;
}
.l-header__entry {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  width: 150px;
  height: var(--cv-height);
  border-radius: 100px;
  color: #fff;
  font-size: 18px;
  text-align: center;
}
.l-header__entry a {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: inherit;
  background: var(--color-green);
}
@media screen and (min-width: 769px) {
  .l-header {
    height: var(--header-height);
    min-width: 1000px;
    gap: 24px;
    position: fixed;
    padding-inline: 40px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .l-header:not(.is-scroll) {
    --header-height: 150px;
  }
  .l-header.is-scroll {
    background: var(--color-beige);
  }
  .l-header__entry a {
    border: 2px solid var(--color-green);
  }
  .l-header__entry a:hover {
    opacity: 1;
    background: #fff;
    color: var(--color-green);
  }
}
@media screen and (min-width: 769px) and (max-width: 1000px) {
  .l-header {
    padding-inline: 20px;
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    position: relative;
    left: 0 !important;
  }
  .l-header__logo {
    position: absolute;
    top: 15px;
    left: 15px;
  }
  .l-header__logo img {
    width: 140px;
  }
  .l-header__entry {
    width: calc(100% - 40px);
    border-radius: 20px 20px 0 0;
    font-size: 20px;
    letter-spacing: 0.2em;
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    z-index: 9992;
  }
  .l-header__entry a {
    border: 2px solid #fff;
    border-bottom: none;
  }
}

/*============================================================================================================
	footer
============================================================================================================*/
.l-footer {
  overflow-x: clip;
  padding: 0;
  background: url(../img/bg_footer01_pc.webp) no-repeat center top/max(1440px, 100%) 60px, linear-gradient(to bottom, rgba(255, 255, 255, 0) 59px, #009458 59px);
  position: relative;
}
.l-footer::before, .l-footer::after {
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
}
.l-footer::before {
  width: 417px;
  aspect-ratio: 417/129;
  background: url(../img/bg_footer02.svg) no-repeat center/contain;
  top: -80px;
  left: calc(50% - 570px);
  z-index: -1;
}
.l-footer::after {
  width: 420px;
  aspect-ratio: 420/105;
  background: url(../img/bg_footer03.svg) no-repeat left bottom, url(../img/bg_footer04.svg) no-repeat right top;
  top: -48px;
  right: calc(50% - 528px);
}
.l-footer p, .l-footer li {
  line-height: 1.8;
  letter-spacing: 0.08em;
  font-family: "IBM Plex Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
}
.l-footer a, .l-footer span {
  color: inherit !important;
  font-family: inherit;
  font-weight: inherit;
}
.l-footer a, .l-footer li, .l-footer div, .l-footer span {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.l-footer-inner {
  width: min(100%, 1100px);
  margin-inline: auto;
  padding: 80px 10px;
}
.l-footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto 20px;
  padding: 0;
  gap: 20px 0;
}
.l-footer-nav__item {
  list-style: none;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  text-align: center;
}
.l-footer-nav__item a {
  display: block;
  padding-inline: 15px;
  color: inherit;
  text-decoration: none;
}
.l-footer-nav__item a:hover {
  opacity: 1;
  text-decoration: underline;
}
.l-footer-copyright {
  margin: 0;
  color: #fff !important;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .l-footer .hidden-pc {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .l-footer {
    background: url(../img/bg_footer01_sp.webp) no-repeat center top/100% 20px, linear-gradient(to bottom, rgba(255, 255, 255, 0) 19px, #009458 19px);
  }
  .l-footer .hidden-sp {
    display: none;
  }
  .l-footer::before {
    width: min(44.4%, 173px);
    top: auto;
    bottom: calc(100% - 20px);
    left: 5px;
  }
  .l-footer::after {
    width: min(40%, 156px);
    aspect-ratio: 156/42;
    background-size: 31%, 61%;
    top: auto;
    bottom: calc(100% - 23px);
    right: 5px;
  }
  .l-footer-inner {
    padding: 50px 20px 100px;
  }
  .l-footer-nav {
    display: block;
    margin: 0 auto 30px;
  }
  .l-footer-nav__item {
    border-bottom: 1px dashed;
    font-size: 12px;
    text-align: left;
  }
  .l-footer-nav__item a {
    padding: 10px 0;
  }
  .l-footer-copyright {
    font-size: 10px;
  }
}

.pagetop {
  display: none;
  width: 90px;
  height: 90px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  border-radius: 50%;
  color: #000 !important;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0.05em;
  z-index: 9000;
}
.pagetop a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 22px;
  background: #F8BA30;
  border-radius: inherit;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
.pagetop a::after {
  content: "";
  display: block;
  width: 35.5%;
  aspect-ratio: 32/82;
  background: url(../img/ico_pagetop01.svg) no-repeat center/contain;
  position: absolute;
  top: -41px;
  right: 0;
  left: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .pagetop {
    position: fixed !important;
    width: 50px;
    height: 50px;
    right: 10px;
    bottom: calc(var(--cv-height) + 10px) !important;
    font-size: 11px;
  }
  .pagetop a {
    padding-top: 13px;
  }
  .pagetop a::after {
    top: -27px;
  }
}

/*============================================================================================================
	nav
============================================================================================================*/
.l-nav a {
  display: block;
}

/* PC */
@media screen and (min-width: 769px) {
  .l-nav {
    display: block !important;
    height: auto !important;
    margin-inline: auto 0;
  }
  .l-nav-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
  }
  .l-nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px 24px;
  }
  .l-nav-list__item {
    text-align: center;
    line-height: 1.5;
  }
  .l-nav-list__item a:hover {
    opacity: 1;
    color: var(--color-green);
  }
}
/* SP */
@media screen and (max-width: 768px) {
  .gnavBtn {
    overflow: hidden;
    cursor: pointer;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 9992;
    background: var(--color-green);
  }
  .gnavBtn span {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 24px;
    height: 2px;
    border-radius: 10px;
    background: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .gnavBtn span:nth-of-type(1) {
    top: 25px;
  }
  .gnavBtn span:nth-of-type(2) {
    bottom: 25px;
  }
  .gnavBtn.is-close span:nth-of-type(1) {
    -webkit-transform: translateY(4px) rotate(-225deg);
            transform: translateY(4px) rotate(-225deg);
  }
  .gnavBtn.is-close span:nth-of-type(2) {
    -webkit-transform: translateY(-4px) rotate(225deg);
            transform: translateY(-4px) rotate(225deg);
  }
  .l-nav {
    display: none;
    padding: 80px 20px calc(var(--cv-height) + 50px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9991;
    background: rgba(255, 255, 255, 0.95);
    overflow: auto;
  }
  .l-nav::-webkit-scrollbar {
    display: none;
  }
  .l-nav-list__item {
    border-bottom: 1px solid #999;
    font-size: 16px;
    line-height: 1.5;
  }
  .l-nav-list__item a {
    padding: 15px 30px 15px 20px;
    position: relative;
  }
  .l-nav-list__item a::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    color: var(--color-green);
    border-right: 2px solid;
    border-bottom: 2px solid;
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    margin: auto;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}
/*============================================================================================================
	.l-mv
============================================================================================================*/
.l-mv {
  padding: 80px 0 0;
  position: relative;
}
.l-mv::before, .l-mv::after {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  z-index: -1;
  pointer-events: none;
}
.l-mv::before {
  height: 74%;
  background: var(--color-beige);
  top: 0;
}
.l-mv::after {
  height: 17%;
  background: url(../img/bg_mv01_pc.webp) no-repeat center/max(1440px, 100%) 100%;
  top: calc(74% - 1px);
}
.l-mv img {
  width: 100%;
}
.l-mv__txt {
  width: 38%;
  position: absolute;
  top: calc(80px + 26.5%);
  left: 24.2%;
  z-index: 2;
}
.l-mv-imgBox {
  width: calc(100% - 200px);
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .l-mv {
    padding: 65px 0 20vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3vw;
  }
  .l-mv::before {
    height: 89%;
  }
  .l-mv::after {
    height: 11%;
    background: url(../img/bg_mv01_sp.webp) no-repeat center/100% 100%;
    top: calc(89% - 1px);
  }
  .l-mv__txt {
    width: 82%;
    margin-inline: auto;
    position: static;
  }
  .l-mv-imgBox {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    width: 100%;
  }
}

/*============================================================================================================
	main
============================================================================================================*/
.c-tit01 {
  font-weight: 400;
  font-size: 64px;
  text-align: center;
  font-family: "Mochiy Pop One", sans-serif;
  line-height: 1.3;
}
.c-tit01__color {
  color: var(--subColor);
}
.c-tit01.is-left {
  text-align: left;
}
@media screen and (max-width: 768px) {
  .c-tit01 {
    font-size: 36px;
  }
}

/*------------------------------------------
	.secAbout
------------------------------------------*/
.secAbout {
  overflow-x: clip;
  --inner-width: min(100%, 1120px + (var(--inner-padding) * 2));
  padding-block: 110px 160px;
  background: url(../img/bg_about01.webp) no-repeat right calc(50% - 640px) top/282px;
}
@media screen and (max-width: 768px) {
  .secAbout {
    padding-block: 60px 20px;
    background-position: right calc(50% - 185px) top;
    background-size: 152px;
  }
}

/*	.secAbout-box01
------------------------------------------*/
.secAbout-box01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  position: relative;
}
.secAbout-box01::after {
  content: "";
  display: block;
  background: no-repeat center/contain;
  position: absolute;
  z-index: -1;
  pointer-events: none;
}
.secAbout-box01__tit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: 44px;
  line-height: 1.3;
  white-space: nowrap;
  position: absolute;
  z-index: 2;
}
.secAbout-box01__tit .bg {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  padding: 10px 20px;
  background: var(--bgColor);
  border-radius: 8px;
}
.secAbout-box01__tit .bg + .bg {
  margin-top: 8px;
}
.secAbout-box01__tit .sm {
  margin-top: 10px;
  font-size: 18px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  padding: 10px 20px;
  background: var(--bgColor);
  border-radius: 8px;
}
.secAbout-box01__tit .sm + .bg {
  margin-top: 8px;
}
.secAbout-box01-imgBox {
  position: relative;
}
.secAbout-box01-imgBox::after {
  content: "";
  display: block;
  background: no-repeat center/contain;
  position: absolute;
  pointer-events: none;
}
.secAbout-box01-imgBox img {
  width: 100%;
}
.secAbout-box01__txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 28px;
  line-height: 1.6;
  text-align: center;
}
.secAbout-box01.is-one {
  --bgColor: #009DE3;
}
.secAbout-box01.is-one::after {
  width: 226px;
  aspect-ratio: 226/209;
  background-image: url(../img/bg_about05.svg);
  top: 62px;
  left: calc(50% - 815px);
}
.secAbout-box01.is-one .secAbout-box01__tit {
  top: 10px;
  left: 20px;
}
.secAbout-box01.is-one .secAbout-box01__tit .bg + .bg {
  margin-left: 165px;
}
.secAbout-box01.is-one .secAbout-box01__tit .sm {
  margin-left: 167px;
}
.secAbout-box01.is-one .secAbout-box01-imgBox {
  width: 53.5%;
}
.secAbout-box01.is-one .secAbout-box01-imgBox::after {
  width: 29.2%;
  aspect-ratio: 175/106;
  background-image: url(../img/bg_about03.svg);
  left: 53.5%;
  bottom: -11%;
}
.secAbout-box01.is-two {
  --bgColor: var(--color-green);
  margin-top: 30px;
}
.secAbout-box01.is-two::after {
  width: 171px;
  aspect-ratio: 171/134;
  background-image: url(../img/bg_about06.svg);
  bottom: -20px;
  left: calc(50% - 640px);
}
.secAbout-box01.is-two .secAbout-box01__tit {
  top: 0;
  right: 20px;
}
.secAbout-box01.is-two .secAbout-box01__tit .bg + .bg {
  margin-left: 44px;
}
.secAbout-box01.is-two .secAbout-box01-imgBox {
  width: 46.7%;
}
.secAbout-box01.is-two .secAbout-box01-imgBox::after {
  width: 22.4%;
  aspect-ratio: 117/135;
  background-image: url(../img/bg_about04.svg);
  left: 67%;
  top: -23%;
}
@media screen and (min-width: 769px) {
  .secAbout-box01.is-one .secAbout-box01__txt {
    max-width: 460px;
    margin-top: -15px;
  }
  .secAbout-box01.is-two {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .secAbout-box01.is-two .secAbout-box01__txt {
    max-width: 480px;
  }
}
@media screen and (max-width: 768px) {
  .secAbout-box01 {
    display: block;
  }
  .secAbout-box01__tit {
    font-size: min(6.7vw, 27px);
  }
  .secAbout-box01__tit .bg {
    padding: min(1.5vw, 6px) min(3.5vw, 15px);
    border-radius: min(1.5vw, 6px);
  }
  .secAbout-box01__tit .bg + .bg {
    margin-top: min(1vw, 5px);
  }
  .secAbout-box01-imgBox {
    width: min(100% - 10px, 340px) !important;
    margin: 0 auto 30px;
  }
  .secAbout-box01__txt {
    font-size: 18px;
  }
  .secAbout-box01.is-one::after {
    width: 90px;
    top: auto;
    left: calc(50% - 228px);
    bottom: 43px;
  }
  .secAbout-box01.is-one .secAbout-box01__tit {
    top: -3%;
    left: max(1%, 50% - 170px);
  }
  .secAbout-box01.is-one .secAbout-box01__tit .bg + .bg {
    margin-left: 34%;
  }
  .secAbout-box01.is-one .secAbout-box01__tit .sm {
    font-size: 15px;
    margin-top: 4px;
    margin-left: 14%;
  }
  .secAbout-box01.is-two {
    margin-top: 60px;
  }
  .secAbout-box01.is-two::after {
    width: 71px;
    left: calc(50% - 185px);
    bottom: -57px;
  }
  .secAbout-box01.is-two .secAbout-box01__tit {
    right: auto;
    left: max(1%, 50% - 170px);
  }
  .secAbout-box01.is-two .secAbout-box01__tit .bg + .bg {
    margin-left: min(7vw, 28px);
  }
  .secAbout-box01.is-two .secAbout-box01-imgBox::after {
    width: 17.7%;
    left: 74%;
    top: -10.5%;
  }
}

/*	.secAbout-box02
------------------------------------------*/
.secAbout-box02 {
  margin-top: 50px;
  position: relative;
}
.secAbout-box02::before, .secAbout-box02::after {
  content: "";
  display: block;
  background: no-repeat center/contain;
  position: absolute;
  z-index: -1;
  pointer-events: none;
}
.secAbout-box02::before {
  width: 326px;
  aspect-ratio: 652/618;
  background-image: url(../img/bg_about02.webp);
  left: calc(50% - 820px);
  bottom: -90px;
}
.secAbout-box02::after {
  width: 282px;
  aspect-ratio: 282/92;
  background-image: url(../img/bg_about07.svg);
  bottom: -110px;
  right: calc(50% - 660px);
}
.secAbout-box02__tit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 30px;
  padding-inline: 75px;
  color: var(--color-blue);
  font-size: 64px;
  text-align: center;
  line-height: 1.3;
  position: relative;
}
.secAbout-box02__tit::before, .secAbout-box02__tit::after {
  content: "";
  display: block;
  width: 53px;
  aspect-ratio: 53/83;
  background: url(../img/ico_chon01.svg) no-repeat center/contain;
  position: absolute;
  bottom: 2px;
}
.secAbout-box02__tit::before {
  left: 0;
}
.secAbout-box02__tit::after {
  right: 0;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.secAbout-box02__tit .small {
  display: block;
  margin-bottom: 8px;
  color: var(--color-txt);
  font-size: 24px;
}
.secAbout-box02__txt {
  font-size: 18px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .secAbout-box02 {
    margin-top: 95px;
  }
  .secAbout-box02::before {
    width: 136px;
    left: calc(50% - 240px);
    bottom: -23px;
  }
  .secAbout-box02::after {
    width: 118px;
    right: calc(50% - 220px);
    bottom: 40px;
  }
  .secAbout-box02__tit {
    margin-bottom: 20px;
    padding-inline: 50px;
    font-size: min(9vw, 34px);
  }
  .secAbout-box02__tit::before, .secAbout-box02__tit::after {
    width: auto;
    height: 77%;
  }
  .secAbout-box02__tit .small {
    margin-bottom: 5px;
    font-size: 18px;
  }
  .secAbout-box02__txt {
    font-size: 16px;
  }
}

/*	.secAbout-tenant
------------------------------------------*/
.secAbout-tenant {
  margin-top: 90px;
}
.secAbout-tenant__tit {
  margin-bottom: 40px;
  padding-bottom: 15px;
  background: url(../img/ico_tit01.svg) no-repeat center bottom;
  font-size: 24px;
  text-align: center;
}
.secAbout-tenant-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}
.secAbout-tenant-list__item-in {
  width: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.secAbout-tenant-list__item img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .secAbout-tenant {
    margin-top: 70px;
  }
  .secAbout-tenant__tit {
    margin-bottom: 20px;
    background-size: 52px;
    font-size: 18px;
  }
  .secAbout-tenant-list__item {
    gap: 20px;
  }
  .secAbout-tenant-list__item-in {
    width: 100px;
    height: 100px;
  }
}

/*------------------------------------------
	.secPerson
------------------------------------------*/
.secPerson {
  overflow-x: clip;
  padding-block: 0 210px;
  background: url(../img/bg_person01.svg) no-repeat left calc(50% - 655px) top 120px;
  position: relative;
}
.secPerson::after {
  content: "";
  display: block;
  width: 150px;
  aspect-ratio: 150/144;
  background: url(../img/bg_person02.svg) no-repeat center/contain;
  position: absolute;
  top: -37px;
  right: calc(50% - 525px);
  z-index: -1;
  pointer-events: none;
}
.secPerson__secTit {
  --subColor: var(--color-green);
  margin: 0 auto 0 40px;
}
.secPerson__lead {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: -15px 5px 80px auto;
  font-size: 18px;
}
.secPerson-list {
  counter-reset: number;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 33px 1fr 33px 1fr 33px 1fr;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 33px;
}
.secPerson-list__item {
  text-align: center;
  position: relative;
}
.secPerson-list__item::after {
  counter-increment: number;
  content: counter(number, decimal-leading-zero);
  width: 100%;
  display: block;
  font-weight: 400;
  font-size: 42px;
  line-height: 1;
  font-family: "Rammetto One", sans-serif;
  position: absolute;
  top: -17px;
  left: 0;
}
.secPerson-list__img {
  width: 100%;
  margin-bottom: -30px;
}
.secPerson-list__txt {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 16px;
  background: var(--color-beige);
  border-radius: 8px;
  font-size: 18px;
  line-height: 1.3;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.secPerson-list__txt + .secPerson-list__txt {
  margin-top: 4px;
}
.secPerson-list-box {
  width: min(100%, 205px);
  height: 82px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 30px auto 0;
  padding: 15px;
  border: 1px solid #000;
  border-radius: 20px;
  position: relative;
}
.secPerson-list-box__tit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-inline: 10px;
  background: #fff;
  color: var(--color-green);
  font-size: 18px;
  line-height: 1;
  position: absolute;
  top: -0.5em;
  right: 0;
  left: 0;
  margin: auto;
}
.secPerson-list-box__txt {
  font-weight: 500;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .secPerson {
    padding-block: 80px 65px;
    background-position: left -38px top 250px;
    background-size: 108px;
  }
  .secPerson::after {
    width: 90px;
    top: 37px;
    right: 25px;
  }
  .secPerson__secTit {
    margin: 0 auto 40px 5px;
  }
  .secPerson__lead {
    margin: 0 5px 40px auto;
    font-size: 16px;
  }
  .secPerson-list {
    margin-inline: calc(var(--inner-padding) * -0.5);
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px 10px;
  }
  .secPerson-list__item::after {
    font-size: 27px;
    top: -10px;
  }
  .secPerson-list__img {
    width: calc(100% - 10px);
    display: block;
    margin: 0 auto -24px;
  }
  .secPerson-list__txt {
    padding: 5px 10px;
    font-size: min(3.3vw, 14px);
  }
  .secPerson-list-box {
    width: min(100%, 135px);
    height: 54px;
    margin-top: 18px;
    padding: 13px 5px 5px;
    border-radius: 13px;
  }
  .secPerson-list-box__tit {
    padding-inline: 2px;
    font-size: 14px;
  }
  .secPerson-list-box__txt {
    font-size: 13px;
  }
}

/*------------------------------------------
	.secSearch
------------------------------------------*/
.secSearch {
  margin-bottom: 220px;
  padding-block: 10px 40px;
  background: var(--color-beige);
  position: relative;
}
.secSearch::before, .secSearch::after {
  content: "";
  display: block;
  width: 100%;
  background: no-repeat center/max(100%, 1440px) 100%;
  position: absolute;
  left: 0;
  z-index: -1;
  pointer-events: none;
}
.secSearch::before {
  height: 149px;
  background-image: url(../img/bg_search01_pc.webp);
  bottom: calc(100% - 1px);
}
.secSearch::after {
  height: 180px;
  background-image: url(../img/bg_search02_pc.webp);
  top: calc(100% - 1px);
}
.secSearch-inner {
  position: relative;
  z-index: 2;
}
.secSearch__secTit {
  --subColor: var(--color-blue);
  margin-bottom: 85px;
}
.secSearch__bg01, .secSearch__bg02 {
  width: 100%;
  position: absolute;
  pointer-events: none;
}
.secSearch__bg01 {
  height: 318px;
  background: url(../img/bg_search03.svg) no-repeat left calc(50% - 483px) top, url(../img/bg_search04.svg) no-repeat right calc(50% - 503px) bottom;
  top: -103px;
}
.secSearch__bg02 {
  height: 362px;
  background: url(../img/bg_search05.svg) no-repeat left calc(50% - 536px) top, url(../img/bg_search06.svg) no-repeat right calc(50% - 595px) bottom;
  bottom: -118px;
}
@media screen and (max-width: 768px) {
  .secSearch {
    margin-bottom: 50px;
    padding-block: 80px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 86px, var(--color-beige) 86px);
  }
  .secSearch::before, .secSearch::after {
    background-size: 100% 100%;
  }
  .secSearch::before {
    height: 72px;
    background-image: url(../img/bg_search01_sp.webp);
    top: 15px;
    bottom: auto;
  }
  .secSearch::after {
    height: 49px;
    background-image: url(../img/bg_search02_sp.webp);
  }
  .secSearch__secTit {
    margin-bottom: 65px;
  }
  .secSearch__bg01 {
    height: 194px;
    background-position: left 25px top, right 25px bottom;
    background-size: 91px, 62px;
    top: 15px;
  }
  .secSearch__bg02 {
    height: 138px;
    background-position: 10px top, right -17px bottom;
    background-size: 116px, 124px;
    bottom: -20px;
  }
}

/*	.secSearch-sec
------------------------------------------*/
.secSearch-sec + .secSearch-sec {
  margin-top: 85px;
}
.secSearch-sec__tit {
  margin-bottom: 40px;
  padding-bottom: 18px;
  background: url(../img/ico_tit01.svg) no-repeat center bottom;
  font-weight: 400;
  font-size: 24px;
  font-family: "Mochiy Pop One", sans-serif;
  text-align: center;
}
.secSearch-sec-list {
  --btnColor: var(--color-blue);
  --gap: 25px;
  width: min(100%, 980px);
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: var(--gap);
}
.secSearch-sec-list.is-green {
  --btnColor: var(--color-green);
}
.secSearch-sec-list__item {
  width: calc((100% - var(--gap) * 2) / 3);
  border-radius: 100px;
  color: #fff;
  font-size: 16px;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
.secSearch-sec-list__item a {
  min-height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 35px;
  border-radius: inherit;
  background: var(--btnColor);
  position: relative;
}
.secSearch-sec-list__item a::after {
  content: "";
  display: block;
  width: 7px;
  aspect-ratio: 7/13;
  -webkit-mask-image: url(../img/ico_arrow01.svg);
  mask-image: url(../img/ico_arrow01.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background: currentColor;
  position: absolute;
  top: 0;
  right: 25px;
  bottom: 0;
  margin: auto;
}
@media screen and (min-width: 769px) {
  .secSearch-sec-list__item a {
    border: 2px solid var(--btnColor);
  }
  .secSearch-sec-list__item a:hover {
    opacity: 1;
    background: #fff;
    color: var(--btnColor);
  }
}
@media screen and (max-width: 768px) {
  .secSearch-sec + .secSearch-sec {
    margin-top: 70px;
  }
  .secSearch-sec__tit {
    margin-bottom: 30px;
    padding-bottom: 15px;
    background-size: 52px;
    font-size: 18px;
  }
  .secSearch-sec-list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
  }
  .secSearch-sec-list__item {
    width: 100%;
    font-size: 14px;
  }
  .secSearch-sec-list__item a {
    padding-inline: 20px;
  }
  .secSearch-sec-list__item a::after {
    right: 15px;
  }
}
@media screen and (max-width: 374px) {
  .secSearch-sec-list__item {
    font-size: 13px;
  }
  .secSearch-sec-list__item a {
    padding-inline: 15px;
  }
  .secSearch-sec-list__item a::after {
    width: 6px;
    right: 10px;
  }
}

/*	.secSearch-genre
------------------------------------------*/
.secSearch-genre-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 45px 1fr 45px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 45px;
}
.secSearch-genre-list__item a {
  display: block;
}
.secSearch-genre-list__item:nth-of-type(2) .secSearch-genre-list-imgBox {
  -webkit-mask-image: url(../img/bg_genre02.svg);
  mask-image: url(../img/bg_genre02.svg);
}
.secSearch-genre-list__item:nth-of-type(3) .secSearch-genre-list-imgBox {
  -webkit-mask-image: url(../img/bg_genre03.svg);
  mask-image: url(../img/bg_genre03.svg);
}
.secSearch-genre-list__item:nth-of-type(4) .secSearch-genre-list-imgBox {
  -webkit-mask-image: url(../img/bg_genre04.svg);
  mask-image: url(../img/bg_genre04.svg);
}
.secSearch-genre-list__item:nth-of-type(5) .secSearch-genre-list-imgBox {
  -webkit-mask-image: url(../img/bg_genre05.svg);
  mask-image: url(../img/bg_genre05.svg);
}
.secSearch-genre-list__item:nth-of-type(6) .secSearch-genre-list-imgBox {
  -webkit-mask-image: url(../img/bg_genre06.svg);
  mask-image: url(../img/bg_genre06.svg);
}
.secSearch-genre-list-imgBox {
  -webkit-mask-image: url(../img/bg_genre01.svg);
  mask-image: url(../img/bg_genre01.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.secSearch-genre-list-imgBox img {
  width: 100%;
}
.secSearch-genre-list__txt {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: -20px auto 0;
  padding: 8px 16px;
  background: #fff;
  border-radius: 8px;
  font-size: 18px;
  text-align: center;
  line-height: 1.3;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  .secSearch-genre-list__item a:hover {
    opacity: 1;
  }
  .secSearch-genre-list__item a:hover .secSearch-genre-list-imgBox img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-filter: brightness(0.8);
            filter: brightness(0.8);
  }
  .secSearch-genre-list__item a:hover .secSearch-genre-list__txt {
    background: var(--color-green);
    color: #fff;
  }
  .secSearch-genre-list-imgBox img {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .secSearch-genre-list__txt {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
@media screen and (max-width: 768px) {
  .secSearch-genre-list {
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }
  .secSearch-genre-list__txt {
    margin-top: -10px;
    padding: 5px 10px;
    font-size: min(3.3vw, 14px);
  }
}

/*------------------------------------------
	.secFaq
------------------------------------------*/
.secFaq {
  padding-block: 0 170px;
}
.secFaq__secTit {
  --subColor: #E5440E;
  margin-bottom: 20px;
}
.secFaq__note {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 65px;
  padding-left: 1em;
  text-indent: -1em;
  font-weight: 400;
  font-size: 15px;
}
.secFaq__txt {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px auto;
  padding-left: 1em;
  text-indent: -1em;
  font-weight: 400;
  font-size: 15px;
}
.secFaq-box {
  width: min(100%, 980px);
  margin-inline: auto;
}
.secFaq-box__tit {
  cursor: pointer;
  min-height: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 100px 15px 84px;
  background: var(--color-green);
  border-radius: 6px;
  color: #fff;
  font-size: 20px;
  line-height: 1.5;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.secFaq-box__tit::after {
  content: "Q";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  color: var(--color-green);
  font-size: 21px;
  position: absolute;
  top: 0;
  left: 20px;
  bottom: 0;
  margin: auto;
}
.secFaq-box__tit .btn {
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 40px;
  margin: auto;
}
.secFaq-box__tit .btn::before, .secFaq-box__tit .btn::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.secFaq-box__tit .btn::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.secFaq-box__tit.is-open {
  border-radius: 6px 6px 0 0;
}
.secFaq-box__tit.is-open .btn::after {
  opacity: 0;
  top: -20px;
}
.secFaq-box-content {
  display: none;
  padding: 30px 40px;
  background: var(--color-beige);
  border-radius: 0 0 6px 6px;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.65;
}
.secFaq-box-content + .secFaq-box__tit {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .secFaq {
    padding-block: 80px 100px;
  }
  .secFaq__secTit {
    margin-bottom: 30px;
  }
  .secFaq__note {
    margin-bottom: 30px;
    font-size: 13px;
  }
  .secFaq-box__tit {
    min-height: 55px;
    padding: 12px 40px 12px 55px;
    font-size: 16px;
  }
  .secFaq-box__tit::after {
    width: 30px;
    height: 30px;
    font-size: 17px;
    left: 10px;
  }
  .secFaq-box__tit .btn {
    width: 20px;
    height: 20px;
    right: 10px;
  }
  .secFaq-box__tit .btn::before, .secFaq-box__tit .btn::after {
    height: 2px;
  }
  .secFaq-box-content {
    padding: 20px;
    font-size: 14px;
  }
  .secFaq-box-content + .secFaq-box__tit {
    margin-top: 15px;
  }
}
/*# sourceMappingURL=style.css.map */