@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;
  --cv-height: 62px;
  --color-txt: #444;
  --color-green: #1ca22d;
  --color-brown: #b28247;
  --color-orange: #fdba00;
  --color-gradi01: linear-gradient(
    135deg,
    var(--color-green) 50%,
    #86bb2b 100%
  );
  --color-gradi02: linear-gradient(135deg, var(--color-orange) 0, #ff9000 100%);
  --color-gradi03: linear-gradient(135deg, #f3b028 0, #fde800 100%);
}
@media screen and (max-width: 768px) {
  :root {
    --header-height: 80px;
    --inner-padding: 20px;
    --cv-height: 60px;
  }
}

/*------------------------------------------
	font
------------------------------------------*/
body {
  color: var(--color-txt);
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", "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-erica {
  font-weight: 400;
  font-family: "Erica One", sans-serif;
}

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

body {
  background: #fcfdfb;
}
@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%;
  height: var(--header-height);
  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;
}
@media screen and (min-width: 769px) {
  .l-header {
    min-width: 1000px;
    gap: 24px;
    padding-inline: 30px;
    position: fixed;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .l-header__logo a {
    position: relative;
  }
  .l-header__logo .l-header__logo-img {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .l-header__logo .l-header__logo-img--scroll {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
  }
  .l-header.is-scroll {
    background: #fff;
  }
  .l-header.is-scroll .l-header__logo .l-header__logo-img:not(.l-header__logo-img--scroll) {
    opacity: 0;
  }
  .l-header.is-scroll .l-header__logo .l-header__logo-img--scroll {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    padding-inline: 15px 90px;
    position: absolute;
    left: 0 !important;
  }
  .l-header__logo {
    width: 105px;
  }
  .l-header__logo .l-header__logo-img--scroll {
    display: none;
  }
}

/*	.l-header__entry
------------------------------------------*/
.l-header__entry {
  width: 160px;
  height: var(--cv-height);
  border-radius: 100px;
  color: #fff;
  font-weight: 700;
  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__entry {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .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 (max-width: 768px) {
  .l-header__entry {
    width: calc(100% - 20px);
    border-radius: 10px 10px 0 0;
    font-size: 18px;
    letter-spacing: 0.2em;
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 9992;
  }
  .l-header__entry a {
    border: 1px solid #fff;
    border-bottom: none;
  }
}

/*============================================================================================================
	footer
============================================================================================================*/
.l-footer {
  padding: 0;
  background: #1ca22d;
  position: relative;
}
.l-footer p,
.l-footer li {
  line-height: 1.8;
  letter-spacing: 0.08em;
  font-family: "Zen Kaku Gothic New", "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: 45px 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 25px;
  padding: 0;
  gap: 20px 0;
}
.l-footer-nav__item {
  list-style: none;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
}
.l-footer-nav__item + .l-footer-nav__item {
  position: relative;
}
.l-footer-nav__item + .l-footer-nav__item::after {
  content: "";
  display: block;
  width: 1px;
  height: 70%;
  background: currentColor;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.l-footer-nav__item a {
  display: block;
  padding-inline: 20px;
  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: 11px;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .l-footer .hidden-pc {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .l-footer .hidden-sp {
    display: none;
  }
  .l-footer-inner {
    padding: 30px 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 + .l-footer-nav__item::after {
    content: none;
  }
  .l-footer-nav__item a {
    padding: 10px 0;
  }
  .l-footer-copyright {
    font-size: 10px;
  }
}

.pagetop {
  display: none;
  width: 130px;
  aspect-ratio: 1/1;
  color: #1ca22d;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  font-family: "Erica One", sans-serif;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  position: fixed;
  right: 20px;
  bottom: 20px;
  overflow: hidden;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background: url(../img/ico_pagetop01.webp) no-repeat left center/contain;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .pagetop {
    width: 65px;
    font-size: 11px;
    right: 10px;
    bottom: calc(var(--cv-height) + 10px);
  }
  .pagetop a {
    background-size: auto 95%;
  }
}

/*============================================================================================================
	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 32px;
  }
  .l-nav-list__item {
    font-weight: 700;
    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-orange);
  }
  .gnavBtn span {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 28px;
    height: 2px;
    border-radius: 10px;
    background: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .gnavBtn span:nth-of-type(1) {
    top: 20px;
  }
  .gnavBtn span:nth-of-type(2) {
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .gnavBtn span:nth-of-type(3) {
    bottom: 20px;
  }
  .gnavBtn.is-close span:nth-of-type(1) {
    -webkit-transform: translateY(9px) rotate(-225deg);
            transform: translateY(9px) rotate(-225deg);
  }
  .gnavBtn.is-close span:nth-of-type(2) {
    left: 50%;
    opacity: 0;
  }
  .gnavBtn.is-close span:nth-of-type(3) {
    -webkit-transform: translateY(-9px) rotate(225deg);
            transform: translateY(-9px) 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-weight: 700;
    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-orange);
    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 {
  display: -ms-grid;
  display: grid;
  margin-bottom: 27px;
  padding: calc(var(--header-height) + 4px) 30px 80px 0;
  background: url(../img/bg_mv01.webp) no-repeat left -34% top min(-130px, -13vw)/61.1%, url(../img/bg_mv02.svg) no-repeat right -12% bottom/31.95%;
  position: relative;
}
.l-mv img {
  width: 100%;
}
.l-mv-icoBox {
  background: url(../img/ico_mv01.webp) no-repeat left bottom/auto 100%, url(../img/ico_mv02.webp) no-repeat right bottom/auto 61.4%;
}
@media screen and (min-width: 769px) {
  .l-mv {
    -ms-grid-columns: 1fr 56.8%;
    grid-template-columns: 1fr 56.8%;
    -ms-grid-rows: auto 1fr;
    grid-template-rows: auto 1fr;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .l-mv > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-mv > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .l-mv > *:nth-child(3) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .l-mv > *:nth-child(4) {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
  .l-mv-txtBox {
    -ms-flex-item-align: start;
        -ms-grid-row-align: start;
        align-self: start;
    width: 87%;
    margin: 19.5% 0 0 auto;
  }
  .l-mv__txt01 {
    width: 92.3%;
    margin-bottom: 8.2%;
  }
  .l-mv__txt02 {
    width: 52.6%;
  }
  .l-mv-icoBox {
    -ms-flex-item-align: start;
        -ms-grid-row-align: start;
        align-self: start;
    width: 94.2%;
    aspect-ratio: 574/303;
    margin: 6.8% 4.2% 0 auto;
  }
  .l-mv-imgBox {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 1/2/3/3;
  }
}
@media screen and (max-width: 768px) {
  .l-mv {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    margin-bottom: 30px;
    padding: calc(var(--header-height) + 10vw) 30px 0;
    background-position: left -50vw top -50vw, right -59% bottom 14.5%;
    background-size: 157%, 56.4%;
  }
  .l-mv-txtBox {
    -webkit-box-ordinal-group: -1;
        -ms-flex-order: -2;
            order: -2;
    width: 100%;
    margin-bottom: 6vw;
  }
  .l-mv__txt01 {
    width: 98%;
    margin-bottom: 6.8vw;
  }
  .l-mv__txt02 {
    width: 63%;
  }
  .l-mv-icoBox {
    width: 85%;
    aspect-ratio: 279/112;
    margin-inline: auto;
    background-size: auto 100%;
  }
  .l-mv-imgBox {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-bottom: 5vw;
  }
}

.js-mv-slider {
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  aspect-ratio: 800/780;
  overflow: clip;
  border-radius: 32px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .js-mv-slider {
    border-radius: 24px;
  }
}
.js-mv-slider.is-initialized {
  opacity: 1;
}
.js-mv-slider .splide__track {
  height: 100%;
}
.js-mv-slider img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*============================================================================================================
	main
============================================================================================================*/
.c-tit01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
  font-weight: 700;
  font-size: 21px;
}
.c-tit01__en {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  color: var(--color-green);
  font-weight: 400;
  font-size: 100px;
  line-height: 1;
  font-family: "Erica One", sans-serif;
}
@media screen and (max-width: 768px) {
  .c-tit01 {
    gap: 8px;
    font-size: 16px;
  }
  .c-tit01__en {
    font-size: 46px;
  }
}
@media screen and (max-width: 374px) {
  .c-tit01 {
    font-size: 14px;
  }
  .c-tit01__en {
    font-size: 42px;
  }
}

/*------------------------------------------
	.secUs
------------------------------------------*/
.secUs {
  padding-block: 74px 100px;
  background: url(../img/ico_chara01.webp) no-repeat right calc(50% - 170px) top/192px, url(../img/ico_chara02.webp) no-repeat right max(30px, 50% - 450px) bottom/179px;
}
.secUs__catch {
  margin-bottom: 40px;
  font-weight: 900;
  font-size: 48px;
  line-height: 1.4;
  letter-spacing: 0.06em;
}
.secUs__catch .color {
  color: var(--color-green);
}
.secUs__txt + .secUs__txt {
  margin-top: 24px;
}
.secUs-imgBox01, .secUs-imgBox02 {
  position: relative;
}
.secUs-imgBox01::before, .secUs-imgBox01::after, .secUs-imgBox02::before, .secUs-imgBox02::after {
  content: "";
  display: block;
  background: no-repeat center/contain;
  position: absolute;
  z-index: -1;
  pointer-events: none;
}
.secUs-imgBox01 img, .secUs-imgBox02 img {
  width: 100%;
}
.secUs-imgBox01::before {
  width: 20%;
  aspect-ratio: 142/144;
  background-image: url(../img/bg_us01.svg);
  right: 0;
  bottom: calc(100% - 1px);
}
.secUs-imgBox01::after {
  width: 26.6%;
  aspect-ratio: 189/204;
  background-image: url(../img/bg_us02.svg);
  left: -12.7%;
  bottom: -21%;
}
.secUs-imgBox01 img {
  border-radius: 16px 0 0 16px;
}
.secUs-imgBox02::before {
  content: none;
}
.secUs-imgBox02::after {
  width: 30.9%;
  left: 0;
  bottom: calc(100% - 1px);
  aspect-ratio: 142/144;
  background-image: url(../img/bg_us03.svg);
}
.secUs-imgBox02 img {
  border-radius: 0 16px 16px 0;
}
@media screen and (min-width: 769px) {
  .secUs-inner {
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 50px 49.3%;
    grid-template-columns: 1fr 49.3%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    grid-gap: 0 50px;
  }
  .secUs__secTit {
    -ms-grid-column-span: 2;
    grid-column: span 2;
    width: var(--inner-width);
    margin: 0 auto 78px;
    padding-inline: var(--inner-padding);
  }
  .secUs-txtBox {
    width: min(100%, 510px);
    margin-inline: auto 0;
    padding-left: var(--inner-padding);
  }
  .secUs-txtBox-in {
    width: min(100%, 455px);
  }
  .secUs-imgBox02 {
    margin-top: 20px;
    width: max(400px, 100% - 220px);
  }
}
@media screen and (max-width: 768px) {
  .secUs {
    --inner-padding: 30px;
    padding-block: 80px calc(18vw + 100px);
    background-position: right 10px top 40px, right 10px bottom;
    background-size: 97px, 90px;
  }
  .secUs__secTit {
    width: calc(100% - var(--inner-padding) * 2);
    margin: 0 auto 64px;
  }
  .secUs-txtBox {
    width: calc(100% - var(--inner-padding) * 2);
    margin: 0 auto 58px;
  }
  .secUs__catch {
    margin-bottom: 30px;
    font-size: min(9vw, 36px);
  }
  .secUs__txt {
    font-size: 15px;
  }
  .secUs__txt + .secUs__txt {
    margin-top: 16px;
  }
  .secUs-imgBox01 {
    width: 87.2%;
    margin: 0 0 70px auto;
  }
  .secUs-imgBox01::before {
    width: 21%;
  }
  .secUs-imgBox01::after {
    width: 24.4%;
    left: -11.8%;
    bottom: -16.5%;
  }
  .secUs-imgBox02 {
    width: 68.7%;
  }
  .secUs-imgBox02::after {
    width: 26.5%;
    top: calc(100% - 1px);
    bottom: auto;
    -webkit-transform: scale(1, -1);
            transform: scale(1, -1);
  }
}
@media screen and (max-width: 374px) {
  .secUs {
    --inner-padding: 20px;
    background-position: right 5px top 55px, right 10px bottom;
    background-size: 80px, 90px;
  }
}

/*------------------------------------------
	.secWorks
------------------------------------------*/
.secWorks {
  overflow-x: clip;
  margin-bottom: 95px;
  padding-block: 120px;
  background: url(../img/bg_works01.svg) no-repeat left min(0px, 50% - 450px) top, url(../img/bg_dot01.webp) repeat center/24px, var(--color-gradi01);
  border-radius: 120px;
}
.secWorks__secTit {
  margin-bottom: 60px;
  color: #fff;
}
.secWorks__secTit .c-tit01__en {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .secWorks {
    margin-bottom: 40px;
    padding-block: 80px 30px;
    background: url(../img/bg_works01.svg) no-repeat left top/260px, url(../img/bg_dot01.webp) repeat center/12px, var(--color-gradi01);
    border-radius: 32px;
  }
  .secWorks__secTit {
    margin-bottom: 40px;
  }
}

/*	.secWorks-box01
------------------------------------------*/
.secWorks-box01 {
  margin-bottom: 45px;
  position: relative;
  z-index: 1;
}
.secWorks-box01::after {
  content: "";
  display: block;
  width: 190px;
  aspect-ratio: 1/1;
  background: url(../img/bg_works02.svg) no-repeat center/contain;
  position: absolute;
  top: -65px;
  right: -65px;
  z-index: -1;
  pointer-events: none;
}
.secWorks-box01-top {
  overflow: clip;
  margin-bottom: 45px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: min(44.5%, 480px) 1fr;
  grid-template-columns: min(44.5%, 480px) 1fr;
  border-radius: 16px;
  background: #fff;
}
.secWorks-box01-top-txtBox {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  padding: 30px 40px;
}
.secWorks-box01-top__tit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 30px 0;
  padding: 6px 14px;
  background: #fde800;
  border-radius: 8px;
  color: var(--color-green);
  font-weight: 700;
  font-size: 28px;
}
.secWorks-box01-top-point {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  grid-gap: 25px;
}
.secWorks-box01-top-point__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 28px;
}
.secWorks-box01-top-point__num {
  min-width: 65px;
  line-height: 0.85;
  text-align: center;
  background: var(--color-gradi01);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.secWorks-box01-top-point__num .big {
  display: block;
  font-size: 2.875em;
}
.secWorks-box01-top-point__txt {
  font-weight: 900;
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.secWorks-box01-top-point__txt .color {
  color: var(--color-green);
}
.secWorks-box01-top-point__txt .big {
  font-size: 2.55em;
  line-height: 1;
  vertical-align: -0.05em;
}
.secWorks-box01-top__img {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.secWorks-box01-shift {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 45px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 45px;
}
.secWorks-box01-shift__item {
  overflow: clip;
  min-height: 190px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 120px 12px 1fr;
  grid-template-columns: 120px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 12px;
  padding: 20px 75px 20px 50px;
  background: #fff;
  border-radius: 16px;
  position: relative;
}
.secWorks-box01-shift__tit {
  width: 70px;
  height: 140px;
  padding-left: 10px;
  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;
  font-weight: 900;
  font-size: 28px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
}
.secWorks-box01-shift__tit::after {
  content: "";
  display: block;
  height: 100%;
  aspect-ratio: 1/1;
  background: var(--color-orange);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}
.secWorks-box01-shift__tit.is-yellow::after {
  background: #fde800;
}
.secWorks-box01-shift__en {
  color: var(--color-green);
  font-size: 16px;
  line-height: 1;
}
.secWorks-box01-shift__ico {
  width: 100%;
}
.secWorks-box01-shift-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  grid-gap: 12px;
}
.secWorks-box01-shift-list__item {
  padding-left: 1.1em;
  font-weight: 900;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  position: relative;
}
.secWorks-box01-shift-list__item::after {
  content: "";
  display: block;
  width: 0.6em;
  aspect-ratio: 1/1;
  background: var(--color-orange);
  border-radius: 50%;
  position: absolute;
  top: 0.45em;
  left: 0;
}
@media screen and (min-width: 769px) {
  .secWorks-box01-shift__tit {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    letter-spacing: 0.2em;
  }
  .secWorks-box01-shift__en {
    height: 100%;
    text-align: center;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    position: absolute;
    top: 0;
    left: 18px;
  }
}
@media screen and (max-width: 768px) {
  .secWorks-box01::after {
    width: 100px;
    top: -40px;
    right: -30px;
  }
  .secWorks-box01-top {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    margin-bottom: 15px;
  }
  .secWorks-box01-top-txtBox {
    padding: 20px 15px 25px;
  }
  .secWorks-box01-top__tit {
    margin-bottom: 20px;
    padding-inline: 10px;
    font-size: 20px;
  }
  .secWorks-box01-top-point {
    grid-gap: 20px;
  }
  .secWorks-box01-top-point__item {
    gap: 15px;
  }
  .secWorks-box01-top-point__num {
    min-width: 45px;
    font-size: 12px;
  }
  .secWorks-box01-top-point__num .big {
    font-size: 2.5em;
  }
  .secWorks-box01-top-point__txt {
    font-size: 17px;
  }
  .secWorks-box01-top__img {
    height: auto;
    -o-object-fit: fill;
       object-fit: fill;
  }
  .secWorks-box01-shift {
    grid-gap: 15px;
  }
  .secWorks-box01-shift__item {
    min-height: auto;
    display: block;
    padding: 0 10px 15px;
  }
  .secWorks-box01-shift__tit {
    width: min(85%, 100px);
    height: auto;
    aspect-ratio: 140/70;
    margin-bottom: 12px;
    padding: 0 0 5px;
    font-size: 18px;
    letter-spacing: 0.1em;
    position: relative;
    bottom: auto;
    left: 0;
  }
  .secWorks-box01-shift__tit::after {
    width: 100%;
    height: auto;
    top: auto;
    bottom: 0;
  }
  .secWorks-box01-shift__en {
    margin-bottom: 12px;
    font-size: 14px;
    text-align: center;
  }
  .secWorks-box01-shift__ico {
    width: auto;
    height: 65px;
    display: block;
    margin: 0 auto 12px;
  }
  .secWorks-box01-shift-list__item {
    padding-left: 1em;
    font-size: 15px;
  }
  .secWorks-box01-shift-list__item::after {
    width: 0.5em;
  }
}

/*	.secWorks-box02
------------------------------------------*/
.secWorks-box02 {
  margin-bottom: 62px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 45px 1fr 45px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 45px;
}
.secWorks-box02__item {
  overflow: clip;
  border-radius: 16px;
  position: relative;
}
.secWorks-box02__tit {
  padding: 10px 30px;
  background: #34bf46;
  border-radius: 0 16px 0 0;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.secWorks-box02__tit.is-orange {
  background: #fd9400;
}
.secWorks-box02__tit.is-brown {
  background: #9b6123;
}
.secWorks-box02__img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .secWorks-box02 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}

/*	.secWorks-entry
------------------------------------------*/
.secWorks-entry__tit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 32px;
  padding-inline: 36px;
  color: #fff;
  font-weight: 900;
  font-size: 24px;
  text-align: center;
  letter-spacing: 0.04em;
  position: relative;
}
.secWorks-entry__tit::before, .secWorks-entry__tit::after {
  content: "";
  display: block;
  width: 32px;
  aspect-ratio: 32/58;
  background: url(../img/ico_chon01.svg) no-repeat center/contain;
  position: absolute;
  bottom: -11px;
}
.secWorks-entry__tit::before {
  left: 0;
}
.secWorks-entry__tit::after {
  right: 0;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.secWorks-entry-btn {
  overflow: clip;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  border-radius: 24px;
}
.secWorks-entry-btn a {
  display: block;
  border-radius: inherit;
}
@media screen and (min-width: 769px) {
  .secWorks-entry-btn a:hover {
    opacity: 1;
  }
  .secWorks-entry-btn a:hover img {
    -webkit-filter: brightness(1.15);
            filter: brightness(1.15);
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
  }
  .secWorks-entry-btn img {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
}
@media screen and (max-width: 768px) {
  .secWorks-entry__tit {
    margin-bottom: 25px;
    padding-inline: 28px;
    font-size: min(5.4vw, 22px);
  }
  .secWorks-entry__tit::before, .secWorks-entry__tit::after {
    width: 20px;
    bottom: 0;
  }
  .secWorks-entry-btn {
    width: calc(100% - 20px);
  }
}

/*------------------------------------------
	.secInterview
------------------------------------------*/
.secInterview {
  overflow-x: clip;
  padding-block: 45px 120px;
  position: relative;
}
.secInterview::after {
  content: "";
  display: block;
  width: 330px;
  aspect-ratio: 330/335;
  background: url(../img/bg_interview01.svg) no-repeat center/contain;
  position: absolute;
  right: 0;
  top: -95px;
  z-index: -1;
  pointer-events: none;
}
.secInterview__secTit {
  margin-bottom: 80px;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .secInterview {
    padding-block: 80px;
  }
  .secInterview::after {
    width: 100px;
    top: -40px;
  }
  .secInterview__secTit {
    margin-bottom: 60px;
  }
}

/*	.secInterview-data
------------------------------------------*/
.secInterview-data {
  margin-bottom: 100px;
  position: relative;
  z-index: 2;
}
.secInterview-data::after {
  content: "";
  display: block;
  width: 225px;
  aspect-ratio: 450/548;
  background: url(../img/ico_chara03.webp) no-repeat center/contain;
  position: absolute;
  left: 0;
  bottom: calc(100% - 1px);
  z-index: -1;
  pointer-events: none;
}
.secInterview-data-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  grid-gap: 40px;
}
.secInterview-data-list img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .secInterview-data {
    margin-bottom: 60px;
  }
  .secInterview-data::after {
    width: 80px;
    left: -10px;
  }
  .secInterview-data-listWrap {
    margin-right: calc(var(--inner-padding) * -1);
    padding-right: var(--inner-padding);
  }
  .secInterview-data-list {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
  }
  .secInterview-data-list__item {
    width: 300px;
  }
}

/*	.secInterview-sec
------------------------------------------*/
.secInterview-sec + .secInterview-sec {
  margin-top: 112px;
}
.secInterview-sec__tit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 30px;
  padding-inline: 36px;
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.04em;
  position: relative;
}
.secInterview-sec__tit::before, .secInterview-sec__tit::after {
  content: "";
  display: block;
  width: 32px;
  aspect-ratio: 32/58;
  background: url(../img/ico_chon01.svg) no-repeat center/contain;
  position: absolute;
  bottom: 0;
}
.secInterview-sec__tit::before {
  left: 0;
}
.secInterview-sec__tit::after {
  right: 0;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
@media screen and (max-width: 768px) {
  .secInterview-sec + .secInterview-sec {
    margin-top: 80px;
  }
  .secInterview-sec__tit {
    padding-inline: 28px;
    font-size: min(6.5vw, 26px);
  }
  .secInterview-sec__tit::before, .secInterview-sec__tit::after {
    width: 20px;
    bottom: 0;
  }
}

/*	.secInterview-point
------------------------------------------*/
.secInterview-point-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  grid-gap: 30px;
  position: relative;
}
.secInterview-point-list::before, .secInterview-point-list::after {
  content: "";
  display: block;
  background: no-repeat center/contain;
  position: absolute;
  z-index: -1;
  pointer-events: none;
}
.secInterview-point-list::before {
  width: 660px;
  aspect-ratio: 660/335;
  background-image: url(../img/bg_interview02.svg);
  top: -330px;
  left: max(-510px, 50% - 1050px);
}
.secInterview-point-list::after {
  width: 460px;
  aspect-ratio: 1/1;
  background-image: url(../img/bg_interview03.svg);
  bottom: -150px;
  right: -300px;
}
.secInterview-point-list__item {
  --itemColor: var(--color-green);
  --itemColorBg: var(--color-gradi01);
  overflow: clip;
  min-height: 360px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 260px 62px 1fr;
  grid-template-columns: 260px 1fr;
  grid-gap: 62px;
  padding-inline: 40px 50px;
  background: url(../img/bg_dot01.webp) repeat center/24px, var(--itemColorBg);
  border-radius: 24px;
  color: #fff;
}
.secInterview-point-list__item:nth-of-type(even) {
  --itemColor: #ff9000;
  --itemColorBg: var(--color-gradi02);
}
.secInterview-point-list-txtBox {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  padding-block: 30px;
}
.secInterview-point-list__tit {
  margin-bottom: 5px;
  font-weight: 900;
  font-size: 34px;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
.secInterview-point-list__prof {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 24px 0;
  padding: 3px 11px;
  border: 1px solid;
  border-radius: 4px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
.secInterview-point-list__comment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  margin-top: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
}
.secInterview-point-list__comment .big {
  padding: 11px 10px;
  background: #fff;
  border-radius: 8px;
  color: var(--itemColor);
  font-weight: 900;
  font-size: 22px;
}
.secInterview-point-list__img {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  width: 100%;
  -ms-flex-item-align: end;
      -ms-grid-row-align: end;
      align-self: end;
}
@media screen and (max-width: 768px) {
  .secInterview-point-list::before {
    width: 200px;
    top: -80px;
    left: -150px;
  }
  .secInterview-point-list::after {
    width: 150px;
    bottom: -50px;
    right: -50px;
  }
  .secInterview-point-list__item {
    min-height: auto;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 25px;
    padding: 20px 20px 30px;
    background: url(../img/bg_dot01.webp) repeat center/12px, var(--itemColorBg);
  }
  .secInterview-point-list-txtBox {
    padding-block: 0;
  }
  .secInterview-point-list__tit {
    margin-bottom: 20px;
    font-size: 22px;
    text-align: center;
  }
  .secInterview-point-list__prof {
    margin: 0 auto 20px;
  }
  .secInterview-point-list__comment {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    margin-top: 25px;
    font-size: 18px;
    text-align: center;
  }
  .secInterview-point-list__comment .big {
    padding: 6px 12px;
    font-size: 20px;
  }
  .secInterview-point-list__img {
    width: min(60%, 200px);
    display: block;
    margin-inline: auto;
  }
}

/*	.secInterview-message
------------------------------------------*/
.secInterview-message-txtBox {
  padding: 40px 60px;
  border-radius: 24px;
  background: #ecf6e2;
  position: relative;
}
.secInterview-message-txtBox::after {
  content: "";
  display: block;
  width: 40px;
  height: 32px;
  clip-path: polygon(0 0, 100% 7px, 100% 100%);
  background: inherit;
  position: absolute;
  top: 0;
  bottom: 0;
  right: calc(100% - 1px);
  margin: auto;
}
.secInterview-message__catch {
  margin-bottom: 8px;
  color: var(--color-green);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.5;
}
.secInterview-message__tit {
  margin-block: 25px 6px;
  font-weight: 700;
  font-size: 18px;
}
.secInterview-message__txt {
  font-weight: 400;
  line-height: 1.85;
}
@media screen and (min-width: 769px) {
  .secInterview-message {
    width: min(100%, 980px);
    margin-inline: auto;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 250px 30px 1fr;
    grid-template-columns: 250px 1fr;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    grid-gap: 0 30px;
  }
  .secInterview-message__secTit {
    -ms-grid-column-span: 2;
    grid-column: span 2;
    margin-bottom: 40px;
  }
  .secInterview-message__img {
    width: 100%;
    -ms-flex-item-align: end;
        -ms-grid-row-align: end;
        align-self: end;
  }
}
@media screen and (max-width: 768px) {
  .secInterview-message__img {
    display: block;
    width: min(50%, 150px);
    margin: 0 auto;
  }
  .secInterview-message-txtBox {
    padding: 25px 20px;
    border-radius: 12px;
  }
  .secInterview-message-txtBox::after {
    height: 25px;
    clip-path: polygon(0 0, 100% 100%, 15px 100%);
    top: auto;
    right: max(25px, 50% - 130px);
    bottom: calc(100% - 1px);
  }
  .secInterview-message__catch {
    margin-bottom: 12px;
    font-size: 22px;
    text-align: center;
  }
  .secInterview-message__tit {
    margin-block: 20px 5px;
    font-size: 15px;
  }
}

/*------------------------------------------
	.secGallery
------------------------------------------*/
.secGallery {
  margin-bottom: 8px;
}
.secGallery img {
  width: 100%;
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  .secGallery {
    margin-bottom: 4px;
  }
}

/*------------------------------------------
	.secFaq
------------------------------------------*/
.secFaq {
  padding-block: 120px 100px;
  background: url(../img/bg_faq01.svg) no-repeat left min(0px, 50% - 450px) top, url(../img/bg_dot01.webp) repeat center/24px, var(--color-gradi03);
}
.secFaq__secTit {
  margin-bottom: 60px;
}
.secFaq__secTit .c-tit01__en {
  color: var(--color-txt);
}
.secFaq-boxWrap {
  width: min(100%, 980px);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
.secFaq-boxWrap::after {
  content: "";
  display: block;
  width: 214px;
  aspect-ratio: 428/550;
  background: url(../img/ico_chara04.webp) no-repeat center/contain;
  position: absolute;
  left: calc(50% - 285px);
  bottom: calc(100% - 1px);
  z-index: -1;
  pointer-events: none;
}
.secFaq-box__tit {
  cursor: pointer;
  min-height: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 84px;
  background: var(--color-brown);
  border-radius: 6px;
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.secFaq-box__tit::after {
  content: "Q";
  width: 44px;
  height: 44px;
  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-bottom: 3px;
  background: #fff;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: var(--color-brown);
  font-weight: 400;
  font-size: 28px;
  font-family: "Erica One", sans-serif;
  position: absolute;
  left: 20px;
  top: 0;
  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 20px;
  background: #fff;
  border-radius: 0 0 6px 6px;
  line-height: 1.65;
}
.secFaq-box-content + .secFaq-box__tit {
  margin-top: 20px;
}
.secFaq-box-content__block {
  margin-block: 10px 16px;
}
.secFaq-box-content .color {
  color: var(--color-green);
  font-weight: 700;
}
.secFaq-box-content .small {
  font-weight: 400;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .secFaq {
    padding-block: 80px;
    background: url(../img/bg_faq01.svg) no-repeat left top/120px, url(../img/bg_dot01.webp) repeat center/12px, var(--color-gradi03);
  }
  .secFaq__secTit {
    margin-bottom: 40px;
  }
  .secFaq-boxWrap::after {
    width: 90px;
    left: auto;
    right: 0;
  }
  .secFaq-box__tit {
    min-height: 55px;
    padding: 12px 45px 12px 60px;
    font-size: 16px;
  }
  .secFaq-box__tit::after {
    width: 35px;
    height: 35px;
    font-size: 20px;
    left: 10px;
  }
  .secFaq-box__tit .btn {
    width: 20px;
    height: 20px;
    right: 15px;
  }
  .secFaq-box__tit .btn::before, .secFaq-box__tit .btn::after {
    height: 2px;
  }
  .secFaq-box-content {
    padding: 15px;
    font-size: 13px;
  }
  .secFaq-box-content + .secFaq-box__tit {
    margin-top: 15px;
  }
  .secFaq-box-content .small {
    font-size: 12px;
  }
}

/*------------------------------------------
	.secSearch
------------------------------------------*/
.secSearch {
  padding-block: 120px 130px;
  background: url(../img/bg_search01.svg) no-repeat left min(0px, 50% - 555px) top, url(../img/bg_search02.svg) no-repeat right min(0px, 50% - 650px) top 30%;
  position: relative;
  background-color: #fff;
}
.secSearch-inner {
  position: relative;
  z-index: 2;
}
.secSearch__chara {
  position: absolute;
  top: 63px;
  right: calc(50% - 84px);
}
@media screen and (min-width: 769px) {
  .secSearch__secTit {
    position: absolute;
    top: 0;
    left: calc(var(--inner-padding) * 1);
  }
}
@media screen and (max-width: 768px) {
  .secSearch {
    padding-block: 80px;
    background-size: 100px, 60px;
    background-position: left top, right top 500px;
  }
  .secSearch__secTit {
    margin-bottom: 60px;
  }
  .secSearch__chara {
    width: 90px;
    top: 50px;
    right: 20px;
  }
}

/*	.secSearch-sec
------------------------------------------*/
.secSearch-sec__tit {
  margin-bottom: 40px;
  font-weight: 700;
  font-size: 32px;
  position: relative;
  z-index: 1;
}
.secSearch-sec__tit::after {
  content: "";
  display: block;
  width: 52px;
  aspect-ratio: 52/48;
  background: url(../img/ico_tit01.svg) no-repeat center/contain;
  position: absolute;
  top: -22px;
  left: -26px;
  z-index: -1;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .secSearch-sec + .secSearch-sec {
    margin-top: 80px;
  }
  .secSearch-sec__tit {
    margin: 0 auto 30px 10px;
    font-size: 22px;
  }
  .secSearch-sec__tit::after {
    width: 35px;
    top: -12px;
    left: -18px;
  }
}

/*	.secSearch-area
------------------------------------------*/
.secSearch-area__lead {
  font-size: 19px;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 769px) {
  .secSearch-area {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 59%;
    grid-template-columns: 1fr 59%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .secSearch-area-txtBox {
    margin-top: 265px;
  }
}
@media screen and (max-width: 768px) {
  .secSearch-area-txtBox {
    margin-bottom: 30px;
  }
  .secSearch-area__tit {
    margin-bottom: 20px;
  }
  .secSearch-area__lead {
    font-size: 15px;
  }
}

/*	.secSearch-style
------------------------------------------*/
.secSearch-style-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 45px 1fr 45px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 45px;
}
.secSearch-style-list__item {
  border-radius: 100px;
  color: #fff;
  font-weight: 700;
  line-height: 1.5;
}
.secSearch-style-list__item a {
  min-height: 62px;
  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: 10px 50px;
  border-radius: inherit;
  background: var(--color-green);
  position: relative;
}
.secSearch-style-list__item a::after {
  content: "";
  display: block;
  width: 21px;
  aspect-ratio: 21/14;
  -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: 30px;
  bottom: 0;
  margin: auto;
}
@media screen and (min-width: 769px) {
  .secSearch-style {
    margin-top: 50px;
  }
  .secSearch-style-list__item a {
    border: 2px solid var(--color-green);
  }
  .secSearch-style-list__item a:hover {
    opacity: 1;
    background: #fff;
    color: var(--color-green);
  }
}
@media screen and (max-width: 768px) {
  .secSearch-style-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 15px;
  }
  .secSearch-style-list__item {
    font-size: 17px;
  }
  .secSearch-style-list__item a {
    min-height: 65px;
    padding-inline: 45px;
  }
  .secSearch-style-list__item a::after {
    right: 20px;
  }
}

/*	.secSearch-sns
------------------------------------------*/
.secSearch-sns-list__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 80px 30px 1fr;
  grid-template-columns: 80px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 30px;
  padding: 40px 70px 40px 60px;
  border-bottom: 1px dashed var(--color-green);
}
.secSearch-sns-list__ico {
  color: #555;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.1;
  text-align: center;
}
.secSearch-sns-list__ico img {
  display: block;
  margin: 0 auto 13px;
}
.secSearch-sns-list-btn {
  width: min(100%, 800px);
  margin-inline: auto 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  grid-gap: 40px;
}
.secSearch-sns-list-btn__item {
  border-radius: 100px;
  font-weight: 700;
  line-height: 1.2;
}
.secSearch-sns-list-btn__item a {
  min-height: 94px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  padding: 10px 45px 10px 88px;
  background: #fff;
  border-radius: inherit;
  border: 2px solid var(--color-green);
  position: relative;
}
.secSearch-sns-list-btn__item a::after {
  content: "";
  display: block;
  width: 21px;
  aspect-ratio: 21/14;
  -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: var(--color-green);
  position: absolute;
  top: 0;
  right: 18px;
  bottom: 0;
  margin: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.secSearch-sns-list-btn__ico {
  width: 70px;
  position: absolute;
  top: 0;
  left: 8px;
  bottom: 0;
  margin: auto;
}
.secSearch-sns-list-btn__name01 {
  color: var(--color-green);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 769px) {
  .secSearch-sns {
    margin-top: 80px;
  }
  .secSearch-sns-list-btn__item a {
    overflow: clip;
    z-index: 1;
  }
  .secSearch-sns-list-btn__item a::before {
    content: "";
    display: block;
    width: 110%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: var(--color-green);
    -webkit-transform: translate(70%, -50%);
            transform: translate(70%, -50%);
    position: absolute;
    left: -5px;
    z-index: -1;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    pointer-events: none;
  }
  .secSearch-sns-list-btn__item a:hover {
    opacity: 1;
    color: #fff;
  }
  .secSearch-sns-list-btn__item a:hover::before {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  .secSearch-sns-list-btn__item a:hover::after {
    background: #fff;
    right: 13px;
  }
  .secSearch-sns-list-btn__item a:hover .secSearch-sns-list-btn__name01 {
    color: #fff;
  }
}
@media screen and (max-width: 768px) {
  .secSearch-sns__tit {
    margin-bottom: 20px;
  }
  .secSearch-sns-list__item {
    -ms-grid-columns: min(20%, 60px) min(3%, 15px) 1fr;
    grid-template-columns: min(20%, 60px) 1fr;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    grid-gap: min(3%, 15px);
    padding: 25px 0;
  }
  .secSearch-sns-list__ico {
    margin-top: min(5vw, 8px);
    font-size: min(4vw, 15px);
  }
  .secSearch-sns-list__ico img {
    width: 75%;
    margin-bottom: 8px;
  }
  .secSearch-sns-list-btn {
    width: 100%;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 15px;
  }
  .secSearch-sns-list-btn__item a {
    min-height: 70px;
    gap: 6px;
    padding-block: 5px;
    padding-inline: 60px min(7vw, 30px);
  }
  .secSearch-sns-list-btn__item a::after {
    width: min(4vw, 17px);
    right: min(3vw, 15px);
  }
  .secSearch-sns-list-btn__ico {
    width: 48px;
    left: 5px;
  }
  .secSearch-sns-list-btn__name01 {
    font-size: min(2.8vw, 12px);
  }
  .secSearch-sns-list-btn__name02 {
    font-size: min(4vw, 15px);
  }
}

/*	.secSearch-bnr
------------------------------------------*/
.secSearch-bnr {
  width: min(100%, 980px);
  margin: 80px auto 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px;
}
.secSearch-bnr__item img {
  width: 100%;
  border: 1px solid var(--color-green);
}
@media screen and (max-width: 768px) {
  .secSearch-bnr {
    margin-top: 60px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}
/*# sourceMappingURL=style.css.map */