@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: #333;
  --color-green: #1D9474;
  --color-green-light: #F5F7FB;
  --color-yellow: #FFFB00;
}
@media screen and (max-width: 768px) {
  :root {
    --header-height: 60px;
    --inner-padding: 20px;
    --cv-height: 60px;
  }
}

/*------------------------------------------
	font
------------------------------------------*/
body {
  color: var(--color-txt);
  font-size: 16px;
  line-height: 1.85;
  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.4;
}

.f-lato {
  font-weight: 700;
  font-family: "Lato", sans-serif;
}

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

body {
  background: #F9F4EA;
}
@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;
}
.l-header__logo {
  width: 417px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.l-header__logo a, .l-header__logo img {
  display: block;
}
.l-header__logo img {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .l-header {
    position: fixed;
    z-index: 9990;
    top: 0;
    left: 0;
    padding: 0 40px;
    gap: 20px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background: #F9F4EA;
  }
  .l-header.is-scroll {
    height: 80px;
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    position: relative;
    padding: 0 70px 0 15px;
    z-index: 9990;
  }
  .l-header__logo {
    width: 260px;
  }
  .l-header__logo-txt {
    margin-top: 6px;
    padding: 2px;
    font-size: 11px;
  }
  .l-header-cv {
    position: fixed;
    z-index: 9992;
    left: 0;
    bottom: -50px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: bottom 0.5s;
    transition: bottom 0.5s;
  }
  .l-header-cv.is-show {
    bottom: 0;
  }
  .l-header-cv__btn {
    width: 100%;
    color: #fff;
    font-size: 16px;
    text-align: center;
    letter-spacing: 0.04em;
  }
  .l-header-cv__btn a {
    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;
    height: 50px;
    background: var(--color-green);
    gap: 10px;
  }
  .l-header-cv__btn a img {
    width: 16px;
  }
}

/*============================================================================================================
	footer
============================================================================================================*/
.l-footer {
  padding: 0;
  background: var(--color-green);
}
.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: 50px 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 {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 1px;
  height: 70%;
  background: currentColor;
  margin: auto;
}
.l-footer-nav__item a {
  display: block;
  padding: 0 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 30px;
  }
  .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: 80px;
  height: 80px;
  position: fixed;
  right: 15px;
  bottom: 30px;
  border-radius: 50%;
  text-indent: 100%;
  font-size: 10px;
  white-space: nowrap;
  overflow: hidden;
  z-index: 9000;
}
.pagetop a {
  width: 100%;
  height: 100%;
  display: block;
  background: var(--color-green);
  border: 2px solid #fff;
  border-radius: inherit;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff !important;
  position: relative;
}
.pagetop a::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  clip-path: polygon(0 0, 100% 0, 100% 2px, 2px 2px, 2px 100%, 0 100%);
  background: currentColor;
  position: absolute;
  top: calc(50% - 2px);
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .pagetop {
    width: 40px;
    height: 40px;
    right: 10px;
    bottom: calc(var(--cv-height) + 10px);
  }
  .pagetop a {
    border-width: 1px;
  }
  .pagetop a::after {
    width: 10px;
    height: 10px;
  }
}

/*============================================================================================================
	nav
============================================================================================================*/
.l-nav a {
  display: block;
}
.l-nav-list__item {
  font-weight: 700;
  letter-spacing: 0;
}
.l-nav__entry {
  border-radius: 8px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0;
}
.l-nav__entry a {
  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;
  height: 50px;
  border-radius: inherit;
  background: var(--color-green);
}

/* PC */
@media screen and (min-width: 769px) {
  .l-nav {
    display: block !important;
    height: auto !important;
  }
  .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 30px;
  }
  .l-nav-list__item {
    text-align: center;
    line-height: 1.5;
  }
  .l-nav-list__item a {
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  .l-nav-list__item a::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    background: var(--color-green);
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
    pointer-events: none;
  }
  .l-nav-list__item a:hover {
    opacity: 1;
    color: var(--color-green);
  }
  .l-nav-list__item a:hover::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  .l-nav__entry {
    width: 125px;
  }
  .l-nav__entry a:hover {
    opacity: 1;
    background: #f59900;
  }
}
/* SP */
@media screen and (max-width: 768px) {
  .gnavBtn {
    overflow: hidden;
    cursor: pointer;
    width: 50px;
    height: 50px;
    z-index: 9992;
    border-radius: 50%;
    position: fixed;
    top: 10px;
    right: 10px;
    background: var(--color-green);
  }
  .gnavBtn span {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 26px;
    height: 2px;
    border-radius: 10px;
    background: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .gnavBtn span:nth-of-type(1) {
    top: 17px;
  }
  .gnavBtn span:nth-of-type(2) {
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .gnavBtn span:nth-of-type(3) {
    bottom: 17px;
  }
  .gnavBtn.is-close span:nth-of-type(1) {
    -webkit-transform: translateY(7px) rotate(-225deg);
            transform: translateY(7px) 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(-7px) rotate(225deg);
            transform: translateY(-7px) rotate(225deg);
  }
  .l-nav {
    display: none;
    padding: 80px 20px;
    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-nav__entry {
    width: min(100%, 400px);
    margin: 30px auto 0;
    font-size: 18px;
    letter-spacing: 0.1em;
  }
  .l-nav__entry a {
    height: 65px;
  }
  .l-nav__entry a img {
    width: 16px;
  }
}
/*============================================================================================================
	.l-mv
============================================================================================================*/
.l-mv {
  margin: 135px 0 0;
  padding-bottom: 50px;
  background: url("../img/bg_wave01.svg") no-repeat left bottom/100%;
  position: relative;
}
.l-mv img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .l-mv {
    margin-top: 20px;
    margin-bottom: 0;
    padding: 0 5%;
  }
}

.js-mv-slider {
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  aspect-ratio: 1440/710;
}
.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;
}
@media screen and (max-width: 768px) {
  .js-mv-slider {
    aspect-ratio: 670/1292;
  }
}

/*============================================================================================================
	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;
  font-weight: 900;
  font-size: 48px;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 180%;
}
.c-tit01__en {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  padding-left: 5px;
  margin-bottom: 7px;
  color: var(--color-green);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: 0.2em;
  font-family: "Lato", sans-serif;
}
.c-tit01__en.is-white {
  color: #fff;
}
.c-tit01.is-white {
  color: #fff;
}
.c-tit01.is-left {
  text-align: left;
}
@media screen and (max-width: 768px) {
  .c-tit01 {
    font-size: 34px;
  }
  .c-tit01__en {
    font-size: 14px;
    margin-bottom: 0;
  }
}

/*	tab common
------------------------------------------*/
.js-tab-btn {
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.js-tab-content {
  display: none;
}
.js-tab-content.is-show {
  display: block;
}

@media screen and (max-width: 768px) {
  .c-tab-set {
    scroll-margin-top: 80px;
  }
  .c-tab-set__back {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 10px 0 auto;
    border-radius: 0 0 10px 10px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
  }
  .c-tab-set__back a {
    height: 60px;
    padding: 0 40px 0 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: var(--color-green);
    border-radius: inherit;
    position: relative;
  }
  .c-tab-set__back a::after {
    content: "";
    display: block;
    width: 8px;
    aspect-ratio: 13/25;
    background: url(../img/ico_arrow01.svg) no-repeat center/contain;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    position: absolute;
    top: 0;
    right: 20px;
    bottom: 0;
    margin: auto;
  }
}

/*------------------------------------------
	.secMessage
------------------------------------------*/
.secMessage {
  padding-block: 90px 290px;
  background: var(--color-green);
  position: relative;
}
.secMessage__secTit {
  margin-bottom: 60px;
}
.secMessage__secTit::before {
  content: "";
  display: block;
  position: absolute;
  top: -70px;
  left: 320px;
  width: 152.27px;
  aspect-ratio: 152/121;
  height: 121px;
  background: url(../img/ico_illust01.png) no-repeat center bottom/contain;
}
.secMessage-inner {
  width: min(100%, 1160px);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}
.secMessage-txtBox {
  color: #fff;
  -ms-grid-column: 1;
      grid-column-start: 1;
  -ms-grid-row: 2;
      grid-row-start: 2;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-row-span: 1;
  grid-row-end: 3;
  width: min(100%, 500px);
}
.secMessage__txt {
  margin-top: 50px;
  font-size: 18px;
  line-height: 220%;
}
.secMessage-imgBox {
  -ms-grid-row-span: 2;
  grid-row: span 2/span 2;
  -ms-grid-column: 2;
      grid-column-start: 2;
  -ms-grid-row: 1;
      grid-row-start: 1;
  width: min(100%, 620px);
}
.secMessage-imgBox img {
  width: 100%;
}
.secMessage-data {
  margin-top: 60px;
  width: min(100%, 1160px);
}
.secMessage-data-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.secMessage-data-list__item img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .secMessage {
    padding-block: 80px;
    background-position: left 5px top 140px, right 10px bottom;
    background-size: 80px, 75px;
    margin-top: -1px;
  }
  .secMessage__secTit {
    margin-bottom: 50px;
  }
  .secMessage__secTit::before {
    top: -30px;
    left: auto;
    right: 20px;
    width: 120px;
  }
  .secMessage-inner {
    display: block;
    margin: 0 auto;
  }
  .secMessage__txt {
    margin-top: 40px;
    font-size: 16px;
  }
  .secMessage-imgBox {
    margin-top: 30px;
  }
  .secMessage-imgBox img {
    width: 100%;
  }
  .secMessage-data {
    margin-top: 40px;
  }
  .secMessage-data-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0 10;
  }
  .secMessage-data-list__item img {
    width: 100%;
  }
}

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

/*------------------------------------------
	.secMerit
------------------------------------------*/
.secMerit {
  padding-block: 110px 60px;
  background: url(../img/ico_illust02.png) no-repeat left calc(50% - 290px) top 120px/120px, url(../img/ico_illust03.png) no-repeat right calc(50% - 270px) top 110px/150px, url(../img/bg_wave02.svg) no-repeat center bottom/100%;
}
.secMerit__secTit {
  margin-bottom: 80px;
}
.secMerit-list {
  margin-inline: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}
@media screen and (max-width: 768px) {
  .secMerit {
    padding-block: 60px 40px;
    background: url(../img/ico_illust02.png) no-repeat left 20px top 30px/60px, url(../img/ico_illust03.png) no-repeat right 20px top 30px/70px, url(../img/bg_wave02.svg) no-repeat center bottom/100%;
  }
  .secMerit__secTit {
    margin-bottom: 40px;
  }
  .secMerit-list {
    width: min(100%, 390px);
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 10px;
  }
}

/*------------------------------------------
	.secInterview
------------------------------------------*/
.secInterview {
  padding-block: 60px 180px;
  background-color: #F5D8A9;
  background-image: url("../img/bg_wave03.svg"), url("../img/ico_illust04.png");
  background-repeat: no-repeat, no-repeat;
  background-position: center bottom, right calc(50% - 350px) top 60px;
  background-size: 100%, 200px;
  position: relative;
}
.secInterview__secTit {
  margin-bottom: 60px;
}
.secInterview__subTit {
  position: relative;
  margin-bottom: 40px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding-left: 20px;
}
.secInterview__subTit::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--color-green);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.secInterview-data {
  margin-top: 60px;
}
.secInterview-data-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.secInterview-data-list__item img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .secInterview {
    margin-bottom: 40px;
    padding-block: 80px 40px;
    background-position: center bottom, right 20px top 30px;
    background-size: 100%, 110px;
  }
  .secInterview__secTit {
    margin-bottom: 40px;
  }
  .secInterview__subTit {
    margin-bottom: 20px;
    font-size: 18px;
  }
  .secInterview-data {
    margin-top: 20px;
  }
  .secInterview-data-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.secInterview-front__item a {
  display: block;
  position: relative;
}
.secInterview-front-imgBox {
  position: relative;
}
.secInterview-front-imgBox img {
  width: 100%;
}
.secInterview-front__job {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
  padding: 6px 22px;
  background: var(--color-yellow);
  color: var(--color-green);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.secInterview-front-txtBox {
  width: calc(100% - 40px);
  margin: -35px auto 0;
  position: relative;
  z-index: 2;
}
.secInterview-front__tit {
  width: calc(100% - 5px);
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  line-height: 2;
}
.secInterview-front__tit .bg {
  padding: 4px 16px;
  background: var(--color-green);
  border-radius: 4px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.secInterview-front__prof {
  margin-top: 8px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
}
.secInterview-front__more {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  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: 8px;
  margin: 12px 0 0 auto;
  font-weight: 700;
  font-size: 16px;
}
.secInterview-front__more::after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: var(--color-green) url(../img/ico_arrow03.svg) no-repeat center;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 769px) {
  .secInterview-front__item a:hover {
    opacity: 0.7;
  }
  .secInterview-front__item a:hover .secInterview-front-imgBox img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-filter: brightness(0.8);
            filter: brightness(0.8);
  }
  .secInterview-front__item a:hover .secInterview-front-txtBox {
    color: var(--color-green);
  }
  .secInterview-front__item a:hover .secInterview-front__tit {
    color: var(--color-green);
  }
  .secInterview-front__item a:hover .secInterview-front__tit .bg {
    background: var(--color-yellow);
  }
  .secInterview-front__item a:hover .secInterview-front__more::after {
    background-color: var(--color-yellow);
    background-image: url(../img/ico_arrow04.svg);
  }
  .secInterview-front-imgBox {
    overflow: hidden;
  }
  .secInterview-front-imgBox img {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .secInterview-front__tit, .secInterview-front__tit .bg, .secInterview-front__more, .secInterview-front__more::after {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
@media screen and (max-width: 768px) {
  .secInterview-front__job {
    top: 5px;
    right: 5px;
    padding: 3px 10px;
    font-size: 13px;
  }
  .secInterview-front-txtBox {
    width: calc(100% - 20px);
    margin-top: -15px;
  }
  .secInterview-front__tit {
    font-size: min(4.2vw, 16px);
    line-height: 2.2;
  }
  .secInterview-front__tit .bg {
    padding-inline: 7px;
  }
  .secInterview-front__prof {
    font-size: 13px;
  }
  .secInterview-front__more {
    margin-top: 25px;
    font-size: 13px;
  }
  .secInterview-front__more::after {
    width: 35px;
    height: 35px;
    background-size: 12px;
  }
}

.secInterview-front-nav {
  width: min(100% - var(--inner-padding) * 2, 288px);
  margin: 30px auto 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 88px;
  grid-template-columns: 1fr 88px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 20px;
}
.secInterview-front-nav .my-carousel-progress {
  background: #fff;
}
.secInterview-front-nav .my-carousel-progress-bar {
  background: var(--color-green);
  height: 2px;
  -webkit-transition: width 1000ms ease;
  transition: width 1000ms ease;
  width: 0;
}
.secInterview-front-nav .splide__arrows {
  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;
}
.secInterview-front-nav .splide__arrow {
  width: 40px;
  aspect-ratio: 1/1;
  padding: 0;
  background: var(--color-green) url(../img/ico_arrow05.svg) no-repeat center;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.secInterview-front-nav .splide__arrow svg {
  display: none;
}
.secInterview-front-nav .splide__arrow.splide__arrow--prev {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.secInterview-front-nav .splide__arrow:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .secInterview-front-nav {
    margin-top: 30px;
  }
}

.secInterview-content {
  overflow: hidden;
  width: min(100%, 800px);
  margin: 0 auto;
  position: relative;
  background: var(--color-green);
  border-radius: 16px;
}
.secInterview-content-top {
  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;
  height: 310px;
  gap: 10px;
  padding: 0 40px;
  background: url("../img/bg_talk02_pc.webp") no-repeat center/cover;
}
.secInterview-content-top-txtBox {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #fff;
  text-align: center;
}
.secInterview-content-top__en {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 20px;
  padding: 5px 30px;
  border: 1px solid;
  border-radius: 100px;
  font-size: 16px;
}
.secInterview-content-top__tit {
  line-height: 1.1;
  font-weight: 900;
  font-size: 31px;
}
.secInterview-content-top__tit .big {
  display: block;
  margin-top: 5px;
  font-size: 80px;
}
.secInterview-content-top-imgBox {
  width: min(60%, 532px);
  -ms-flex-item-align: end;
      align-self: flex-end;
  overflow: hidden;
}
.secInterview-content-top-imgBox img {
  width: 100%;
  margin-bottom: -5px;
}
.secInterview-content-inner {
  width: min(100% - 40px, 670px);
  margin: 0 auto;
  padding: 60px 0;
}
.secInterview-content-q + .secInterview-content-q {
  margin-top: 80px;
}
.secInterview-content-q-titBox {
  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;
  gap: 10px;
  padding: 0 0 20px;
  border-bottom: 4px solid #fff;
  margin-bottom: 30px;
}
.secInterview-content-q__num {
  display: -ms-grid;
  display: grid;
  place-content: center;
  width: 56px;
  height: 56px;
  aspect-ratio: 1/1;
  font-weight: 700;
  font-size: 26px;
  line-height: 140%;
  letter-spacing: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--color-green);
  font-family: "Barlow", sans-serif;
  padding: 20px;
}
.secInterview-content-q__tit {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  position: relative;
  color: #fff;
}
.secInterview-content-q-list__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 90px 30px 1fr;
  grid-template-columns: 90px 1fr;
  grid-column-gap: 30px;
}
.secInterview-content-q-list__item + .secInterview-content-q-list__item {
  margin-top: 30px;
}
.secInterview-content-q-list-imgBox {
  font-size: 14px;
  text-align: center;
}
.secInterview-content-q-list-imgBox img {
  width: 100%;
  border-radius: 50%;
}
.secInterview-content-q-list__txt {
  font-size: 16px;
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  position: relative;
}
.secInterview-content-q-list__txt::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url("../img/ico_fukidashi01.svg") no-repeat left center/contain;
  position: absolute;
  top: min(50px, 27%);
  right: calc(100% - 1px);
}
.secInterview-content-q__img {
  display: block;
  margin: 30px auto 0;
  width: 100%;
  border-radius: 20px;
}
.secInterview-content-schedule {
  margin: 100px auto 0;
}
.secInterview-content-schedule__tit {
  margin-bottom: 50px;
  font-weight: 900;
  font-size: 31px;
  text-align: center;
}
.secInterview-content-schedule__tit-en {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 12px;
  padding: 6px 35px;
  border-radius: 100px;
  background: var(--color-red);
  color: #fff;
  font-size: 16px;
}
.secInterview-content-schedule-list {
  padding: 80px;
  border: 1px solid var(--color-red);
  border-radius: 20px;
}
.secInterview-content-schedule-list__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 90px 30px 1fr;
  grid-template-columns: 90px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-column-gap: 30px;
  padding: 0 0 20px;
  position: relative;
}
.secInterview-content-schedule-list__item::after {
  content: "";
  display: block;
  width: calc(100% - 100px);
  height: 1px;
  background: #D9C9A1;
  position: absolute;
  right: 0;
  bottom: 0;
}
.secInterview-content-schedule-list__item + .secInterview-content-schedule-list__item {
  margin-top: 30px;
}
.secInterview-content-schedule-list__item:last-of-type {
  padding-bottom: 0;
}
.secInterview-content-schedule-list__item:last-of-type::after {
  content: none;
}
.secInterview-content-schedule-list__time {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  padding: 2px;
  border-radius: 100px;
  background: var(--color-red);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0.1em;
}
.secInterview-content-schedule-list__txt {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  font-size: 15px;
  line-height: 1.85;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .secInterview-content-top {
    display: block;
    height: auto;
    padding: 50px 20px 0;
    background-image: url("../img/bg_talk02_sp.webp");
  }
  .secInterview-content-top-txtBox {
    margin-bottom: 30px;
  }
  .secInterview-content-top__en {
    font-size: 14px;
  }
  .secInterview-content-top__tit {
    font-size: 28px;
  }
  .secInterview-content-top__tit .big {
    font-size: 60px;
  }
  .secInterview-content-top-imgBox {
    width: 100%;
  }
  .secInterview-content-inner {
    width: 100%;
    padding: 60px 20px 40px;
  }
  .secInterview-content-q + .secInterview-content-q {
    margin-top: 50px;
  }
  .secInterview-content-q__num {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .secInterview-content-q__tit {
    font-size: 16px;
  }
  .secInterview-content-q__tit::after {
    font-size: 30px;
  }
  .secInterview-content-q-list__item {
    -ms-grid-columns: 54px 20px 1fr;
    grid-template-columns: 54px 1fr;
    grid-column-gap: 20px;
  }
  .secInterview-content-q-list__item + .secInterview-content-q-list__item {
    margin-top: 20px;
  }
  .secInterview-content-q-list-imgBox {
    font-size: 12px;
  }
  .secInterview-content-q-list__txt {
    font-size: 15px;
    line-height: 165%;
    padding: 20px;
  }
  .secInterview-content-q-list__txt::after {
    width: 13px;
    top: 20px;
  }
  .secInterview-content-schedule {
    margin-top: 60px;
  }
  .secInterview-content-schedule__tit {
    margin-bottom: 30px;
    font-size: 22px;
  }
  .secInterview-content-schedule__tit-en {
    margin-bottom: 10px;
    font-size: 12px;
  }
  .secInterview-content-schedule-list {
    padding: 20px;
  }
  .secInterview-content-schedule-list__item {
    -ms-grid-columns: 60px 15px 1fr;
    grid-template-columns: 60px 1fr;
    grid-column-gap: 15px;
    padding-bottom: 15px;
  }
  .secInterview-content-schedule-list__item::after {
    width: calc(100% - 70px);
  }
  .secInterview-content-schedule-list__item + .secInterview-content-schedule-list__item {
    margin-top: 15px;
  }
  .secInterview-content-schedule-list__time {
    font-size: 14px;
  }
  .secInterview-content-schedule-list__txt {
    font-size: 14px;
  }
}

/*	popup - js
------------------------------------------*/
body .mfp-bg {
  z-index: 9993;
  opacity: 0.5;
  background: #000;
}
body .mfp-wrap {
  z-index: 9994;
}
body .mfp-container {
  padding: 0;
}
body .mfp-content {
  position: static;
  padding: 40px 15px;
}
@media screen and (max-width: 768px) {
  body .mfp-content {
    padding: 15px;
  }
}

.mfp-close.modalClose01, .mfp-close.modalClose02 {
  cursor: pointer;
  opacity: 1;
  z-index: 3;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.mfp-close.modalClose01 {
  position: absolute;
  top: 10px !important;
  right: 10px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: #404040;
  border-radius: 50%;
  font-size: 10px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.mfp-close.modalClose01::before, .mfp-close.modalClose01::after {
  content: "";
  display: block;
  width: 45%;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  pointer-events: none;
}
.mfp-close.modalClose01::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.mfp-close.modalClose01::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.mfp-close.modalClose01:hover {
  opacity: 0.7;
}
.mfp-close.modalClose02 {
  position: static;
  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: min(100%, 180px);
  height: 44px;
  margin: 40px auto 0;
  padding: 0;
  border-radius: 200px;
  border: 1px solid #fff;
  color: #fff !important;
  font-weight: 500;
  font-size: 16px;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 769px) {
  .mfp-close.modalClose02:hover {
    background: var(--color-red);
    color: #fff !important;
  }
}
@media screen and (max-width: 768px) {
  .mfp-close.modalClose02 {
    margin: 30px auto 0;
  }
}

/*------------------------------------------
	.secJob
------------------------------------------*/
.secJob {
  padding-block: 40px 260px;
  background: url("../img/bg_wave04.svg") no-repeat center bottom/100%, url(../img/ico_illust05.png) no-repeat left calc(50% - 320px) top 40px/200px;
}
.secJob__secTit {
  margin-bottom: 60px;
}
.secJob__subTit {
  position: relative;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.1em;
  line-height: 180%;
  text-align: center;
}
.secJob__subTit::before, .secJob__subTit::after {
  content: "";
  display: inline-block;
  width: 32px;
  height: 42px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
}
.secJob__subTit::before {
  background-image: url(../img/ico_check01.svg);
  margin-right: 4px;
}
.secJob__subTit::after {
  background-image: url(../img/ico_check02.svg);
  margin-left: 4px;
}
.secJob-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 26px 1fr 26px 1fr 26px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.secJob-list__item img {
  width: 100%;
}
.secJob-employee {
  display: -ms-grid;
  display: grid;
  gap: 20px;
  margin-top: 60px;
}
.secJob-employee-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
}
.secJob-employee-boxWrap {
  background: #fff;
  border-radius: 16px;
  padding-bottom: 40px;
}
.secJob-employee-box.is-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.secJob-employee-box img {
  border-radius: 16px;
}
.secJob-employee-box-txtBox {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.secJob-employee-box-txtBox__tit {
  margin-bottom: 24px;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.04em;
  color: #F59900;
}
.secJob-employee-box-txtBox__tit.is-green {
  color: var(--color-green);
}
.secJob-employee-box-txtBox__txt {
  font-size: 18px;
  line-height: 185%;
  letter-spacing: 0.02em;
}
.secJob-employee-box-note {
  margin-top: 24px;
}
.secJob-employee-box-note-list {
  padding: 20px 20px 20px 40px;
  background: #F9F4EA;
  border-radius: 14px;
  list-style-type: disc;
}
.secJob-employee-box-note-list__item {
  font-size: 16px;
  font-weight: 500;
  line-height: 185%;
  letter-spacing: 0.02em;
}
.secJob-employee-box-note-list__item::marker {
  font-size: 10px;
}
.secJob-career {
  margin: 0 auto;
  text-align: center;
}
.secJob-career__tit {
  margin-bottom: 40px;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .secJob {
    margin-top: -1px;
    padding-block: 40px 80px;
    background: url("../img/bg_wave04.svg") no-repeat center bottom/200%, url(../img/ico_illust05.png) no-repeat left 20px top 0/100px;
  }
  .secJob__subTit {
    position: relative;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0;
    line-height: 180%;
    text-align: center;
  }
  .secJob__subTit::before, .secJob__subTit::after {
    content: "";
    display: inline-block;
    width: 24px;
    height: 36px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
  }
  .secJob-list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 8px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .secJob-list__item img {
    width: 100%;
  }
  .secJob-employee {
    display: -ms-grid;
    display: grid;
    gap: 10px;
    margin-top: 40px;
  }
  .secJob-employee-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
    background: #fff;
    padding: 16px;
    border-radius: 16px;
  }
  .secJob-employee-boxWrap {
    background: #fff;
    border-radius: 16px;
    padding-bottom: 40px;
  }
  .secJob-employee-box.is-start {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .secJob-employee-box img {
    border-radius: 16px;
  }
  .secJob-employee-box-txtBox {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .secJob-employee-box-txtBox__tit {
    margin-bottom: 16px;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 0.04em;
    color: #F59900;
  }
  .secJob-employee-box-txtBox__tit.is-green {
    color: var(--color-green);
  }
  .secJob-employee-box-txtBox__txt {
    font-size: 16px;
    line-height: 185%;
    letter-spacing: 0.02em;
  }
  .secJob-employee-box-note {
    margin-top: 24px;
  }
  .secJob-employee-box-note-list {
    padding: 20px 20px 20px 40px;
    background: #F9F4EA;
    border-radius: 14px;
    list-style-type: disc;
  }
  .secJob-employee-box-note-list__item {
    font-size: 14px;
    font-weight: 500;
    line-height: 185%;
    letter-spacing: 0.02em;
  }
  .secJob-employee-box-note-list__item::marker {
    font-size: 10px;
  }
  .secJob-career {
    margin: 20px auto 0;
    text-align: center;
  }
  .secJob-career__tit {
    margin-bottom: 40px;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 0;
    line-height: 150%;
  }
  .secJob-career img {
    width: 70%;
  }
}

/*------------------------------------------
	.secFlow
------------------------------------------*/
.secFlow {
  margin-top: -60px;
  padding-block: 40px 120px;
  background-color: #73B3A2;
  background-image: url(../img/bg_group01.svg), url(../img/ico_illust06.png);
  background-repeat: no-repeat, no-repeat;
  background-position: right calc(50% - 460px) top, right calc(50% - 380px) top;
  background-size: auto, 223px;
}
.secFlow-inner {
  width: min(100%, 940px);
}
.secFlow__secTit {
  margin-bottom: 64px;
}
@media screen and (max-width: 768px) {
  .secFlow {
    padding-block: 80px 40px;
    background-color: #73B3A2;
    background-image: url(../img/bg_group01.svg), url(../img/ico_illust06.png);
    background-repeat: no-repeat, no-repeat;
    background-position: right calc(50% - 460px) top, right 20px top 20px;
    background-size: auto, 90px;
  }
  .secFlow__secTit {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 768px) {
  .secFlow-set {
    margin-inline: calc(var(--inner-padding) * -0.5);
  }
}

.secFlow-nav {
  --item-height: 90px;
  height: var(--item-height);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 10px;
  margin-inline: auto;
}
.secFlow-nav__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 300px;
  height: calc(100% - 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;
  padding: 5px;
  background: var(--color-green);
  border-radius: 8px 8px 0 0;
  color: #fff;
  font-weight: 700;
  font-size: 19px;
  text-align: center;
  line-height: 1.4;
}
.secFlow-nav__item.is-active {
  height: 100%;
  background: #F59900;
  color: #fff;
}
@media screen and (min-width: 769px) {
  .secFlow-nav__item:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .secFlow-nav {
    --item-height: 70px;
    gap: 5px;
  }
  .secFlow-nav__item {
    height: calc(100% - 5px);
    font-size: min(5vw, 16px);
    line-height: 1.5;
    letter-spacing: 0;
  }
}

.secFlow-content {
  padding: 80px;
  background: #fff;
  border-radius: 16px;
}
.secFlow-content-box {
  display: -ms-grid;
  display: grid;
  place-content: center;
  grid-gap: 40px;
}
.secFlow-content__tit {
  margin-bottom: 18px;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.05em;
}
.secFlow-content__txt {
  margin-bottom: 30px;
}
.secFlow-content-data {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 122px 16px 1fr;
  grid-template-columns: 122px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 16px;
}
.secFlow-content-data__tit {
  padding: 3px 10px;
  background: var(--color-green);
  border-radius: 100px;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.05em;
}
.secFlow-content__img {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  width: 100%;
}
.secFlow-content__btn {
  width: min(100%, 480px);
  margin: 40px auto 0;
  border-radius: 100px;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
.secFlow-content__btn a {
  min-height: 80px;
  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) url(../img/ico_arrow02.svg) no-repeat right 30px center;
}
@media screen and (min-width: 769px) {
  .secFlow-content__btn a:hover {
    opacity: 1;
    background-color: #f59900;
  }
}
@media screen and (max-width: 768px) {
  .secFlow-content {
    border-radius: 0 0 16px 16px;
    padding: 40px 20px 40px;
  }
  .secFlow-content-box {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 25px;
  }
  .secFlow-content__tit {
    margin-bottom: 20px;
    font-size: 20px;
  }
  .secFlow-content__txt {
    margin-bottom: 20px;
  }
  .secFlow-content-data {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 0;
  }
  .secFlow-content-data__tit {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-bottom: 8px;
    min-width: 100px;
    font-size: 14px;
  }
  .secFlow-content-data__txt + .secFlow-content-data__tit {
    margin-top: 20px;
  }
  .secFlow-content__btn {
    margin-top: 30px;
    font-size: 18px;
  }
  .secFlow-content__btn a {
    min-height: 70px;
    padding-inline: 30px;
    background-position: right 20px center;
  }
}

/*------------------------------------------
	.secEntry
------------------------------------------*/
.secEntry {
  padding-block: 80px 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 120px 52.8%;
  grid-template-columns: 1fr 52.8%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 120px;
  position: relative;
}
.secEntry::after {
  content: "";
  display: block;
  width: 214px;
  aspect-ratio: 214/224;
  background: url(../img/ico_illust07.png) no-repeat center/contain;
  position: absolute;
  left: calc(50% - 540px);
  top: -60px;
  z-index: 1;
  pointer-events: none;
}
.secEntry-txtBox {
  width: min(100%, 380px);
  margin-inline: auto 0;
}
.secEntry__secTit {
  margin-bottom: 80px;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.7;
  letter-spacing: 0.06em;
  position: relative;
}
.secEntry__btn {
  border-radius: 100px;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
.secEntry__btn a {
  min-height: 80px;
  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) url(../img/ico_arrow01.svg) no-repeat right 30px center;
}
.secEntry__img {
  width: 100%;
  border-radius: 80px 0 0 0;
}
@media screen and (min-width: 769px) {
  .secEntry__btn a:hover {
    opacity: 1;
    background-color: #f59900;
  }
}
@media screen and (max-width: 768px) {
  .secEntry {
    padding: 0;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
  .secEntry-txtBox {
    width: calc(100% - var(--inner-padding) * 2);
    margin-inline: auto;
  }
  .secEntry__secTit {
    margin-bottom: 30px;
    padding-top: 60px;
    font-size: 30px;
    text-align: center;
  }
  .secEntry__secTit::after {
    width: 200px;
    right: auto;
    bottom: auto;
    top: 0;
    left: max(-20px, 50% - 180px);
  }
  .secEntry__btn {
    font-size: 18px;
  }
  .secEntry__btn a {
    min-height: 70px;
    padding-inline: 30px;
    background-position: right 20px center;
  }
  .secEntry__img {
    width: 100%;
  }
}
/*# sourceMappingURL=style.css.map */