@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;
  }
}
/*------------------------------------------
	gsap animation
------------------------------------------*/
.fade-in {
  opacity: 0;
  -webkit-filter: blur(12px);
          filter: blur(12px);
}

.step-in {
  opacity: 0;
  -webkit-filter: blur(12px);
          filter: blur(12px);
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}

/*------------------------------------------
	font
------------------------------------------*/
body {
  color: var(--color-txt);
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-family: "Zen Old Mincho", "游明朝体", YuMincho, "游明朝", "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", 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-cinzel {
  font-weight: 300;
  font-family: "Cinzel", serif;
}

/*------------------------------------------
	root
------------------------------------------*/
:root {
  --header-height: 100px;
  --inner-width: min(100%, 1080px + (var(--inner-padding) * 2));
  --inner-padding: 10px;
  --color-txt: #404040;
  --color-green: #0F5C3C;
  --color-hover-green: #587F6F;
  --colo-light-green: #F5FDEA;
  --color-light-yellow: #FBFDEA;
}
@media screen and (max-width: 768px) {
  :root {
    --header-height: 60px;
    --inner-padding: 20px;
    --cv-height: 60px;
  }
}

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

.inner {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
}
@media screen and (max-width: 768px) {
  .inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/*------------------------------------------
	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%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.l-header__logo {
  width: 187px;
  -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;
    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: 110px;
    padding: 0 20px 0 30px;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(0, 0, 0, 0.35)), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0, rgba(255, 255, 255, 0) 100%);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .l-header__logo {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .l-header.is-scroll {
    height: 90px;
    background: #fff;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.07);
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.07);
  }
  .l-header.is-scroll .l-header__logo {
    width: 130px;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    mix-blend-mode: difference;
  }
  .l-header.is-scroll .l-nav-list__item {
    color: var(--color-green);
  }
}
@media screen and (max-width: 768px) {
  .l-header__logo {
    position: absolute;
    z-index: 9990;
    top: 15px;
    left: 15px;
    width: 120px;
  }
  .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: 14px;
    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);
  }
  .l-header-cv__btn .en {
    margin-left: 10px;
  }
  .l-header-cv__btn.is-red a {
    background: #96300A;
  }
}

/*============================================================================================================
	footer
============================================================================================================*/
.l-footer {
  padding: 0;
  background: var(--color-txt);
}
.l-footer p, .l-footer li {
  line-height: 1.8;
  letter-spacing: 0.08em;
  font-family: "Zen old Mincho", "游明朝体", YuMincho, "游明朝", "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.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 calc(var(--cv-height) + 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: 30px;
  bottom: 30px;
  border-radius: 50%;
  text-indent: 200%;
  font-size: 10px;
  white-space: nowrap;
  overflow: hidden;
  z-index: 9000;
}
.pagetop a {
  width: 100%;
  height: 100%;
  display: block;
  background: var(--color-green);
  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::after {
    width: 10px;
    height: 10px;
  }
}

/*============================================================================================================
	nav
============================================================================================================*/
.l-nav a {
  display: block;
}
.l-nav__entry {
  color: #fff;
  font-weight: 400;
  line-height: 1.5;
}
.l-nav__entry a {
  overflow: hidden;
  position: relative;
  z-index: 1;
  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: 2px solid var(--color-green);
  background: var(--color-green);
}
.l-nav__entry span {
  display: contents;
}

/* 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: 25px;
  }
  .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: 5px 30px;
  }
  .l-nav-list__item {
    color: #fff;
    text-align: center;
    line-height: 1.5;
  }
  .l-nav-list__item a {
    position: relative;
    padding: 5px 0;
  }
  .l-nav-list__item a::after {
    content: "";
    display: block;
    width: 1px;
    height: 1px;
    background: currentColor;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .l-nav-list__item a:hover {
    opacity: 1;
  }
  .l-nav-list__item a:hover::after {
    width: 100%;
    opacity: 1;
  }
  .l-nav__entry {
    width: 160px;
    font-size: 16px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .l-nav__entry a {
    height: 55px;
  }
  .l-nav__entry a::after {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .l-nav__entry a:hover {
    opacity: 1;
  }
  .l-nav__entry a:hover::after {
    width: 220%;
    height: 220%;
  }
  .l-nav__entry .big {
    font-size: 19px;
  }
}
/* SP */
@media screen and (max-width: 768px) {
  .gnavBtn {
    overflow: hidden;
    cursor: pointer;
    width: 60px;
    height: 60px;
    z-index: 9992;
    position: fixed;
    top: 0;
    right: 0;
    background: var(--color-green);
  }
  .gnavBtn span {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 30px;
    height: 1px;
    background: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .gnavBtn span:nth-of-type(1) {
    top: 26px;
  }
  .gnavBtn span:nth-of-type(2) {
    bottom: 26px;
  }
  .gnavBtn.is-close span:nth-of-type(1) {
    -webkit-transform: translateY(3px) rotate(-200deg);
            transform: translateY(3px) rotate(-200deg);
  }
  .gnavBtn.is-close span:nth-of-type(2) {
    -webkit-transform: translateY(-4px) rotate(200deg);
            transform: translateY(-4px) rotate(200deg);
  }
  .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;
    border-right: 2px solid var(--color-green);
    border-bottom: 2px solid var(--color-green);
    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: 16px;
    letter-spacing: 0.2em;
  }
  .l-nav__entry a {
    height: 60px;
  }
  .l-nav__entry a::after {
    width: 15px;
    height: 15px;
  }
  .l-nav__entry .big {
    font-size: 19px;
  }
}
/*============================================================================================================
	.l-mv
============================================================================================================*/
.l-mv {
  margin-bottom: 20px;
  position: relative;
}
.l-mv img {
  width: 100%;
}
.l-mv__entry {
  position: absolute;
  z-index: 3;
  right: 2.5%;
  bottom: 8%;
  width: max(156px, 10.7vw);
  height: max(156px, 10.7vw);
  border-radius: 50%;
  color: #fff;
  font-size: max(14px, 0.95vw);
  text-align: center;
  line-height: max(170%, 1.6vw);
  letter-spacing: 0.04em;
}
.l-mv__entry::after {
  content: "";
  display: block;
  width: max(146px, 10.1vw);
  height: max(50px, 3.5vw);
  background: url("../img/txt_entry01.svg") no-repeat center/contain;
  position: absolute;
  left: min(8px, 0.6vw);
  bottom: min(2px, 0.1vw);
  pointer-events: none;
  z-index: 2;
}
.l-mv__entry a {
  position: relative;
  z-index: 1;
  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: 100%;
  padding: 0 0 max(20px, 1.5vw);
  border-radius: inherit;
  border: 1px solid #96300A;
  -webkit-transition: none;
  transition: none;
}
.l-mv__entry a::after {
  content: "";
  display: block;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border-radius: inherit;
  background: #96300A;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: -2;
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  .l-mv__entry a::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: #fff;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: -1;
    opacity: 0.5;
    -webkit-transform: scale(0);
            transform: scale(0);
    pointer-events: none;
  }
  .l-mv__entry a:hover {
    opacity: 1;
  }
  .l-mv__entry a:hover::before {
    -webkit-animation: btnFade 0.7s ease-in-out forwards;
            animation: btnFade 0.7s ease-in-out forwards;
  }
}
@media screen and (max-width: 768px) {
  .l-mv {
    margin-bottom: 0;
  }
  .l-mv__entry {
    width: 28.2vw;
    height: 28.2vw;
    bottom: 3%;
    font-size: 2.5vw;
    line-height: 4vw;
  }
  .l-mv__entry::after {
    width: 27vw;
    height: 9vw;
    left: 5%;
    bottom: 4%;
  }
  .l-mv__entry a {
    padding-bottom: 5vw;
  }
  .l-mv__entry a::after {
    width: calc(100% - 4px);
    height: calc(100% - 4px);
  }
}

@-webkit-keyframes btnFade {
  0% {
    opacity: 0.5;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}

@keyframes btnFade {
  0% {
    opacity: 0.5;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}
.js-mv-slider {
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  height: max(780px, 60vw);
}
@media screen and (max-width: 768px) {
  .js-mv-slider {
    height: 153vw;
  }
}
.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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 44px;
  letter-spacing: 0.02em;
  line-height: 1.45;
  font-weight: 600;
  color: var(--color-green);
  font-family: "Zen Old Mincho", "游明朝体", YuMincho, "游明朝", "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.c-tit01__en {
  margin-bottom: 15px;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1.375;
  font-family: "Cinzel", serif !important;
  color: var(--color-txt);
}
.c-tit01.is-white {
  color: #fff;
}
.c-tit01.is-white .c-tit01__en {
  color: #fff;
}
.c-tit01.is-left {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: left;
}
@media screen and (min-width: 769px) {
  .c-tit01.is-vertical {
    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: left;
        -ms-flex-pack: left;
            justify-content: left;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    letter-spacing: 0.2em;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    gap: 10px;
  }
  .c-tit01.is-vertical .c-tit01__en {
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  .c-tit01 {
    font-size: 27px;
    letter-spacing: 0.08em;
    line-height: 2;
  }
  .c-tit01__en {
    margin-bottom: 0px;
    background-size: 60px;
    font-size: 14px;
  }
  .c-tit01.is-left {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.c-tit02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 76px;
  letter-spacing: 0.04em;
  line-height: 1.34;
  color: #C4D9D1;
}
@media screen and (max-width: 768px) {
  .c-tit02 {
    font-size: 52px;
    letter-spacing: 0.08em;
    line-height: 2;
  }
}

.c-bg01 {
  background: var(--color-green) url("../img/bg_pattern03.svg");
}
@media screen and (max-width: 768px) {
  .c-bg01 {
    background-size: 120px;
  }
}

/*------------------------------------------
	.secMessage
------------------------------------------*/
.secMessage {
  padding: 100px 0 160px;
  background: var(--color-light-green);
  position: relative;
}
.secMessage::after {
  content: "";
  display: block;
  width: 1000px;
  height: 1280px;
  background: url("../img/bg_message.webp") no-repeat center/contain;
  position: absolute;
  top: 19.5%;
  left: calc(50% - 640px);
  z-index: -1;
  -webkit-filter: blur(300px);
          filter: blur(300px);
}
.secMessage__secTit {
  margin-bottom: 48px;
}
.secMessage-inner {
  margin-top: 100px;
  max-width: 1020px;
}
.secMessage-wrap {
  width: min(100%, 1440px);
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 184px;
}
.secMessage-wrap-txtBox {
  width: min(48.7% - 100px, 420px);
}
.secMessage-wrap__tit {
  margin-bottom: 35px;
  font-size: 24px;
  line-height: 200%;
  letter-spacing: 0.02em;
  color: var(--color-green);
}
.secMessage-wrap__txt {
  line-height: 2.5;
}
.secMessage-wrap__img {
  width: min(43.05%, 620px);
}
.secMessage-box {
  width: min(100%, 1440px);
  margin: 100px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 220px;
}
.secMessage-box-txtBox {
  width: min(50% - 100px, 510px);
}
.secMessage-box__tit {
  margin-bottom: 35px;
  font-size: 24px;
  line-height: 200%;
  letter-spacing: 0.02em;
  color: var(--color-green);
}
.secMessage-box__txt {
  font-size: 17px;
  letter-spacing: 0;
  line-height: 400%;
}
.secMessage-box__highlight {
  font-size: 24px;
  line-height: 220%;
  letter-spacing: 0.02em;
  color: var(--color-green);
  margin-top: 30px;
}
.secMessage-box__img {
  width: min(34%, 490px);
}
.secMessage-sec {
  width: min(100%, 1440px);
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 207px;
}
.secMessage-sec + .secMessage-sec {
  margin-top: 100px;
}
.secMessage-sec-txtBox {
  width: min(48.7% - 100px, 363px);
}
.secMessage-sec__txt {
  font-size: 17px;
  letter-spacing: 0;
  line-height: 400%;
}
.secMessage-sec__img {
  width: min(51.4%, 430px);
}
@media screen and (min-width: 769px) {
  .secMessage-sec:nth-of-type(odd) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media screen and (max-width: 768px) {
  .secMessage {
    padding: 60px 0;
  }
  .secMessage::after {
    content: "";
    display: block;
    width: 100%;
    height: 1280px;
    background: url("../img/bg_message.webp") no-repeat center/contain;
    position: absolute;
    top: 19.5%;
    left: 0;
    z-index: -1;
    -webkit-filter: blur(300px);
            filter: blur(300px);
  }
  .secMessage-inner {
    margin-top: 60px;
    max-width: 100%;
  }
  .secMessage__secTit {
    margin-bottom: 10px;
  }
  .secMessage-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    padding: 0;
  }
  .secMessage-wrap-txtBox {
    width: 100%;
    padding: 0 20px;
  }
  .secMessage-wrap__tit {
    margin-bottom: 35px;
    font-size: 22px;
    line-height: 200%;
    letter-spacing: 0.02em;
    color: var(--color-green);
  }
  .secMessage-wrap__txt {
    line-height: 2.5;
  }
  .secMessage-wrap__img {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    width: 100%;
    margin-bottom: 30px;
  }
  .secMessage-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
  .secMessage-box-txtBox {
    width: 100%;
    padding: 0 40px;
  }
  .secMessage-box__tit {
    font-size: 24px;
    line-height: 200%;
    letter-spacing: 0.02em;
    color: var(--color-green);
  }
  .secMessage-box__txt {
    font-size: 17px;
    letter-spacing: 0;
    line-height: 200%;
  }
  .secMessage-box__highlight {
    font-size: 21px;
    line-height: 170%;
  }
  .secMessage-box__img {
    width: 100%;
    margin-bottom: 30px;
  }
  .secMessage-sec {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
  .secMessage-sec + .secMessage-sec {
    margin-top: 80px;
  }
  .secMessage-sec-txtBox {
    width: calc(100% - 40px);
    margin: 0 auto;
  }
  .secMessage-sec__tit {
    margin-bottom: 25px;
    font-size: 20px;
    letter-spacing: 0.08em;
  }
  .secMessage-sec__txt {
    line-height: 2;
  }
  .secMessage-sec__img {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    width: 100%;
    margin-bottom: 30px;
  }
}

/*------------------------------------------
	.secFeature
------------------------------------------*/
.secFeature {
  padding-block: 100px 120px;
  background: url("../img/bg_feature.webp") no-repeat center top/cover;
  margin-bottom: 80px;
}
.secFeature-inner {
  max-width: 980px;
}
.secFeature__secTit {
  margin-bottom: 48px;
}
.secFeature__lead {
  text-align: center;
  color: #fff;
  letter-spacing: 0;
}
.secFeature-list {
  margin-top: 40px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  counter-reset: item-counter;
}
.secFeature-list__item {
  background: rgba(255, 255, 255, 0.9);
  padding: 50px 40px;
  position: relative;
}
.secFeature-list__item::before {
  content: counter(item-counter, decimal-leading-zero);
  counter-increment: item-counter;
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 16px;
  font-weight: 400;
  color: var(--color-txt);
  line-height: 1;
  letter-spacing: 0.64px;
  font-family: "Cinzel", serif;
}
.secFeature-list__item__tit {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  line-height: 180%; /* 39.6px */
  color: var(--color-green);
}
.secFeature-list__item__txt {
  margin-top: 30px;
  font-size: 15px;
  font-weight: 400;
  line-height: 185%; /* 27.75px */
  letter-spacing: 0.45px;
}
@media screen and (max-width: 768px) {
  .secFeature {
    padding-block: 60px;
    margin-bottom: 0;
  }
  .secFeature__secTit {
    margin-bottom: 28px;
  }
  .secFeature-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .secFeature-list__item {
    padding: 40px 30px;
  }
  .secFeature-list__item__txt {
    margin-top: 20px;
  }
}

/*------------------------------------------
	.secJob
------------------------------------------*/
.secJob {
  padding-block: 80px 160px;
  position: relative;
  overflow: hidden;
}
.secJob::after {
  content: "";
  display: block;
  width: 100%;
  height: 87%;
  background: var(--colo-light-green);
  position: absolute;
  top: 10.5%;
  left: calc(50% - 310px);
  z-index: -1;
}
.secJob-secTitBox {
  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: 40px;
  margin-bottom: 100px;
}
.secJob-secTitBox02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
  margin-top: 100px;
}
.secJob__lead {
  font-weight: 400;
  line-height: 200%; /* 32px */
  letter-spacing: 0.32px;
}
.secJob .mb48 {
  margin-bottom: 48px;
}
.secJob__tit {
  font-size: 24px;
  font-weight: 600;
  line-height: 170%; /* 40.8px */
  letter-spacing: 0.02em;
  position: relative;
  padding-left: 80px;
  color: var(--color-green);
  margin-bottom: 48px;
}
.secJob__tit::before {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: var(--color-txt);
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.secJob-flow {
  margin-bottom: -40px;
}
.secJob-schedule {
  position: relative;
}
.secJob-imgBox {
  overflow-x: auto;
  position: relative;
  right: 0;
  top: 0;
  bottom: 0;
  padding-bottom: 20px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
.secJob-imgBox::-webkit-scrollbar {
  height: 8px;
}
.secJob-imgBox::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}
.secJob-imgBox::-webkit-scrollbar-thumb {
  background: var(--color-green);
  border-radius: 4px;
}
.secJob-imgBox::-webkit-scrollbar-thumb:hover {
  background: var(--color-hover-green);
}
.secJob-imgBox img {
  display: block;
  max-width: none;
  width: 1494px;
  height: auto;
}
.secJob__scroll {
  margin-top: 5px;
}
.secJob-content {
  margin-top: 100px;
}
.secJob-content-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 78px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 78px;
}
.secJob-content-list__item {
  cursor: pointer;
  position: relative;
}
.secJob-content-list__item::before {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 64px;
  height: 64px;
  background: url("../img/ico_arrow02.svg") no-repeat center center/contain;
  z-index: 2;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.secJob-content-list__item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(64, 64, 64, 0.4);
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.secJob-content-list__item__txt {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  width: 100%;
  z-index: 1;
  font-size: 22px;
  font-weight: 600;
  line-height: 170%; /* 37.4px */
  letter-spacing: 2.2px;
}
.secJob-content-list__item:hover::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.secJob-content-list__item:hover::after {
  background: rgba(15, 92, 60, 0.7);
}
@media screen and (max-width: 768px) {
  .secJob-content {
    margin-top: 60px;
    padding: 0 20px;
  }
  .secJob-content-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .secJob-content-list__item::before {
    right: 10px;
    bottom: 10px;
    width: 40px;
    height: 40px;
  }
  .secJob-content-list__item__txt {
    font-size: 20px;
    line-height: 150%;
  }
}
.secJob-point {
  margin-top: 100px;
}
.secJob-point-inner {
  max-width: 980px;
}
.secJob-point-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.secJob-point-list__item {
  background: #FFF;
  -webkit-box-shadow: 0px 0px 34px 0px rgba(0, 0, 0, 0.04);
          box-shadow: 0px 0px 34px 0px rgba(0, 0, 0, 0.04);
  padding: 50px 40px;
}
.secJob-point-list__item__tit {
  color: var(--color-green);
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  line-height: 180%; /* 39.6px */
}
.secJob-point-list__item__txt {
  margin-top: 30px;
  font-size: 15px;
  font-weight: 400;
  line-height: 185%; /* 27.75px */
  letter-spacing: 0.45px;
}
@media screen and (max-width: 768px) {
  .secJob {
    padding-block: 80px 60px;
  }
  .secJob::after {
    content: "";
    display: block;
    width: 80%;
    height: 87%;
    background: var(--colo-light-green);
    position: absolute;
    top: 10.5%;
    left: auto;
    right: 0;
    z-index: -1;
  }
  .secJob__tit {
    margin-bottom: 32px;
    padding-left: 90px;
    font-size: 20px;
  }
  .secJob__tit::before {
    left: 15px;
  }
  .secJob-flow {
    margin-bottom: 60px;
  }
  .secJob-schedule {
    padding: 0 20px;
  }
  .secJob-secTitBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
  }
  .secJob-secTitBox02 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0px;
    margin-bottom: 0px;
  }
  .secJob__lead {
    font-size: 15px;
  }
  .secJob-point {
    margin-top: 100px;
  }
  .secJob-point-inner {
    max-width: 980px;
  }
  .secJob-point-list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .secJob-point-list__item {
    background: #FFF;
    -webkit-box-shadow: 0px 0px 34px 0px rgba(0, 0, 0, 0.04);
            box-shadow: 0px 0px 34px 0px rgba(0, 0, 0, 0.04);
    padding: 40px 30px;
  }
  .secJob-point-list__item__tit {
    color: var(--color-green);
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    line-height: 180%; /* 39.6px */
  }
  .secJob-point-list__item__txt {
    margin-top: 30px;
    font-size: 15px;
    font-weight: 400;
    line-height: 185%; /* 27.75px */
    letter-spacing: 0.45px;
  }
}

.secFlow-front__num {
  display: table;
  margin: 0 auto -10px;
  position: relative;
  z-index: 2;
}
.secFlow-front-imgBox {
  position: relative;
  z-index: -1;
}
.secFlow-front-imgBox::before, .secFlow-front-imgBox::after {
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  background: no-repeat center/contain;
  position: absolute;
  pointer-events: none;
}
.secFlow-front-imgBox::before {
  background-image: url("../img/bg_interview03.svg");
  top: -2px;
  left: -2px;
}
.secFlow-front-imgBox::after {
  background-image: url("../img/bg_interview04.svg");
  bottom: -2px;
  right: -2px;
}
.secFlow-front-imgBox img {
  width: 100%;
}
.secFlow-front__tag {
  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;
  background: var(--color-green);
  color: #fff;
  position: absolute;
  left: 20px;
  top: 18px;
  font-size: 16px;
  padding: 6px 16px;
  font-weight: 700;
}
.secFlow-front__tit {
  color: #fff;
  font-weight: 600;
  font-size: 28px;
  letter-spacing: 0.1em;
  line-height: 170%;
  margin: 0;
  z-index: 2;
  bottom: 248px;
  left: -30px;
  position: absolute;
}
.secFlow-front__tit-bg {
  display: table;
  padding: 6px 16px;
  background: var(--color-green);
}
.secFlow-front__tit-bg + .secFlow-front__tit-bg {
  margin-top: 4px;
}
.secFlow-front__txt {
  color: var(--color-txt);
  text-align: left;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  z-index: 1;
  background: #FFF;
  line-height: 200%;
  letter-spacing: 0.02em;
  -webkit-box-shadow: 0px 0px 34px 0px rgba(0, 0, 0, 0.04);
          box-shadow: 0px 0px 34px 0px rgba(0, 0, 0, 0.04);
  padding: 30px;
  width: 436px;
  position: relative;
  bottom: 10%;
  right: -50%;
  left: auto;
}
.secFlow-front__more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: -34px 0 0 auto;
  color: #fff;
  font-family: "Chonburi", serif;
  font-size: 16px;
  line-height: 230%;
  letter-spacing: 0.05em;
  position: relative;
}
.secFlow-front__more a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.secFlow-front__more a::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-green) url("../img/ico_arrow01.svg") no-repeat right 11px center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.secFlow-front__more img {
  display: block;
}
@media screen and (min-width: 769px) {
  .secFlow-front__more a {
    opacity: 1;
  }
  .secFlow-front__more a:hover {
    color: var(--color-green);
  }
  .secFlow-front__more a:hover::after {
    opacity: 1;
    background: var(--color-green) url("../img/ico_arrow01.svg") no-repeat right 11px center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
@media screen and (max-width: 768px) {
  .secFlow-front__num {
    display: block;
    margin-bottom: -5px;
    width: 55%;
  }
  .secFlow-front-imgBox::before, .secFlow-front-imgBox::after {
    width: 40px;
    height: 40px;
  }
  .secFlow-front__tag {
    font-size: 12px;
    top: 4px;
    left: 4px;
  }
  .secFlow-front__tit {
    font-size: min(5vw, 20px);
    text-align: left;
    margin: -20px 0 0;
    left: 10px;
    bottom: 0;
    position: inherit;
  }
  .secFlow-front__tit-bg {
    padding: 4px 6px;
  }
  .secFlow-front__txt {
    margin: 16px 0 0 0;
    font-size: 14px;
    position: initial;
    width: 100%;
  }
  .secFlow-front__more {
    margin: 20px auto 0;
  }
}

.js-flow-slider .splide__pagination {
  margin: 50px auto 0;
}
.js-flow-slider .splide__pagination li {
  width: 8px;
  height: 8px;
  margin: 0 5px;
  border-radius: 50%;
  border: 1px solid #000;
}
.js-flow-slider .splide__pagination li button {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
  border-radius: inherit;
  background: var(--bg-green);
  padding: 0;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.js-flow-slider .splide__pagination li button:hover, .js-flow-slider .splide__pagination li button.is-active {
  opacity: 1;
  background: var(--color-green);
}
@media screen and (max-width: 768px) {
  .js-flow-slider .splide__pagination {
    margin-top: 30px;
  }
}

/* common - modal */
.c-modal01 {
  width: min(100%, 900px);
  margin: 0 auto;
  padding: 0 0 60px;
  background: url("../img/bg_modal.webp") no-repeat center top/cover;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-modal01 {
    padding-bottom: 30px;
  }
}

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: 200%;
  white-space: nowrap;
  overflow: hidden;
}
.mfp-close.modalClose01::before, .mfp-close.modalClose01::after {
  content: "";
  display: block;
  width: 45%;
  height: 1px;
  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 {
  background: var(--color-green);
}

.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: 50px auto 0;
  padding: 0;
  border: 1px solid #404040;
  color: #404040 !important;
  font-size: 16px;
  font-family: "Cinzel", serif;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 769px) {
  .mfp-close.modalClose02:hover {
    color: #fff !important;
    background: var(--color-green);
    border-color: var(--color-green);
  }
}
@media screen and (max-width: 768px) {
  .mfp-close.modalClose02 {
    margin-top: 40px;
  }
}

.secPeople-content-top {
  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;
  margin-bottom: 60px;
}
.secPeople-content-top-txtBox {
  width: calc(40.4% + 55px);
  margin: 85px -140px 0 70px;
  padding: 10px 0;
  position: relative;
  z-index: 2;
}
.secPeople-content-top__tag {
  display: table;
  margin-bottom: 15px;
  padding: 3px 10px;
  background: var(--color-green);
  color: #fff;
  font-size: 13px;
  line-height: 1.5;
}
.secPeople-content-top__tag.is-gold {
  background: var(--color-green);
}
.secPeople-content-top__tit {
  margin-bottom: 15px;
  font-size: 32px;
  line-height: 2.2;
}
.secPeople-content-top__tit-bg {
  padding: 5px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  background: #fff;
}
.secPeople-content-top__prof {
  display: table;
  padding: 3px 8px;
  background: var(--color-green);
  color: #fff;
  font-size: 15px;
  line-height: 1.5;
}
.secPeople-content-top__prof + .secPeople-content-top__prof {
  margin-top: 4px;
}
.secPeople-content-top__img {
  width: 64.6%;
}
.secPeople-content-comment {
  width: min(100% - 40px, 728px);
  margin: 0 auto;
}
.secPeople-content-comment__tit {
  min-height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  padding: 0 0 0 65px;
  font-size: 19px;
  line-height: 1.5;
  position: relative;
}
.secPeople-content-comment__tit::after {
  content: "Q";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  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;
  border-radius: 50%;
  background: var(--color-green);
  color: #fff;
  font-size: 21px;
  font-family: "Cormorant", serif;
}
.secPeople-content-comment__txt {
  margin-bottom: 30px;
  padding: 30px;
  background: #fff;
  border-radius: 4px;
  color: var(--color-txt);
  font-weight: 400;
  letter-spacing: 0.03em;
}
.secPeople-content-comment__txt:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .secPeople-content-top {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    margin-bottom: 30px;
  }
  .secPeople-content-top-txtBox {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
  }
  .secPeople-content-top__tag {
    margin-bottom: 13px;
  }
  .secPeople-content-top__tit {
    font-size: 18px;
  }
  .secPeople-content-top__prof {
    font-size: 13px;
  }
  .secPeople-content-top__img {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    width: 100%;
  }
  .secPeople-content-comment {
    width: calc(100% - 40px);
  }
  .secPeople-content-comment__tit {
    min-height: 35px;
    margin-bottom: 15px;
    padding-left: 50px;
    font-size: 15px;
  }
  .secPeople-content-comment__tit::after {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  .secPeople-content-comment__txt {
    padding: 15px;
    font-size: 12px;
  }
}

/*------------------------------------------
	splide
------------------------------------------*/
.js-flow-slider .secFlow-front-nav {
  width: min(100%, 288px);
  margin: 0 0 0 150px;
  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;
  position: relative;
  top: -155px;
}
.js-flow-slider .my-carousel-progress {
  background: #EAEAEA;
}
.js-flow-slider .my-carousel-progress-bar {
  background: var(--color-green);
  height: 2px;
  -webkit-transition: width 1000ms ease;
  transition: width 1000ms ease;
  width: 0;
}
.js-flow-slider .splide__slide img {
  width: 100%;
  height: auto;
}
.js-flow-slider .splide__arrows {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 8px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 8px;
}
.js-flow-slider .splide__arrow {
  cursor: pointer;
  aspect-ratio: 1/1;
  padding: 0;
  background: var(--color-green) url("../img/ico_arrow01.svg") no-repeat center 48%;
  border-radius: 50%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
}
.js-flow-slider .splide__arrow svg {
  display: none;
}
.js-flow-slider .splide__arrow.splide__arrow--prev {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.js-flow-slider .splide__arrow:hover {
  background-color: var(--color-green);
}
@media screen and (max-width: 768px) {
  .js-flow-slider .secFlow-front-nav {
    width: min(100% - 40px, 250px);
    margin: 30px auto 0;
    top: 0;
  }
}

.secSearch-sec {
  width: min(100%, 980px);
  margin-top: 12px;
  margin-inline: auto;
}
.secSearch-sec__tit {
  margin-bottom: 25px;
  padding: 8px 0 8px 20px;
  font-weight: 700;
  font-size: 20px;
  position: relative;
}
.secSearch-sec__tit::after {
  content: "";
  display: block;
  width: 4px;
  height: 100%;
  border-radius: 10px;
  background: var(--color-blue);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.secSearch-sec-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 25px 1fr 25px 1fr 25px 1fr;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 25px;
}
.secSearch-sec-list__item {
  font-weight: 400;
  text-align: center;
  line-height: 1.5;
  color: #fff;
  letter-spacing: 0.05em;
}
.secSearch-sec-list__item 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;
  min-height: 60px;
  padding: 10px 35px;
  background: var(--color-green) url(../img/ico_arrow03.svg) no-repeat right 25px center;
}
@media screen and (min-width: 769px) {
  .secSearch-sec-list__item a:hover {
    opacity: 1;
    background-color: var(--color-hover-green);
  }
}
@media screen and (max-width: 768px) {
  .secSearch-sec-list {
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px 10px;
  }
  .secSearch-sec-list__item {
    letter-spacing: 0;
  }
  .secSearch-sec-list__item a {
    padding-inline: 15px;
    background-position: right 8px center;
    background-size: 6px;
  }
}

/*------------------------------------------
	.secGallery
------------------------------------------*/
.secGallery {
  padding-block: 0 80px;
}
.secGallery img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .secGallery {
    padding-block: 0 20px;
  }
}

/*------------------------------------------
	.secWelfare
------------------------------------------*/
.secWelfare {
  padding-block: 80px 130px;
  position: relative;
}
.secWelfare::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("../img/bg_welfare.webp") no-repeat center/cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-filter: blur(200px);
          filter: blur(200px);
}
.secWelfare-inner {
  max-width: 1140px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}
.secWelfare__secTit {
  margin-bottom: 30px;
}
.secWelfare__txtBox {
  margin-top: 120px;
}
.secWelfare__img {
  -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%, 560px);
  position: relative;
  right: -100px;
}
.secWelfare-list {
  display: -ms-grid;
  display: grid;
  gap: 18px;
}
.secWelfare-list__item {
  line-height: 200%;
  letter-spacing: 0.02em;
  font-size: 16px;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.secWelfare-list__item::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  background: url("../img/ico_check.svg") no-repeat center center/contain;
  margin-right: 18px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .secWelfare {
    padding-block: 60px;
  }
  .secWelfare-inner {
    display: block;
  }
  .secWelfare__txtBox {
    margin-top: 60px;
  }
  .secWelfare__lead {
    text-align: center;
  }
  .secWelfare__img {
    margin-top: 40px;
    width: 100%;
    right: auto;
    padding: 0 10%;
  }
}

/*------------------------------------------
	.secFaq
------------------------------------------*/
.secFaq {
  margin-bottom: 65px;
  padding: 75px 0 130px;
  position: relative;
}
.secFaq::after {
  content: "";
  display: block;
  width: calc(50% + 600px);
  height: 80%;
  background: var(--color-light-yellow);
  position: absolute;
  top: 31%;
  right: 0;
  z-index: -2;
  pointer-events: none;
}
.secFaq-inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 30px 68%;
  grid-template-columns: auto 68%;
  grid-gap: 80px 30px;
}
.secFaq-box {
  margin-top: 30px;
}
.secFaq-box__tit {
  cursor: pointer;
  border-bottom: 1px solid #EAEAEA;
  padding: 9px 80px 38px 85px;
  font-size: 19px;
  line-height: 1.5;
  position: relative;
}
.secFaq-box__tit::before {
  content: "Q";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 20px;
  background: var(--color-green);
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  font-size: 21px;
  text-align: center;
  font-family: "Cormorant", serif;
}
.secFaq-box__tit .btn {
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  top: 6px;
  right: 20px;
}
.secFaq-box__tit .btn::before, .secFaq-box__tit .btn::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: var(--color-green);
  -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 .btn::after {
  opacity: 0;
  top: -20px;
}
.secFaq-box-content {
  display: none;
  padding: 30px 20px 10px 85px;
  color: var(--color-green);
  font-weight: 600;
}
.secFaq-box-content + .secFaq-box__tit {
  margin-top: 28px;
}
@media screen and (max-width: 768px) {
  .secFaq {
    margin-bottom: 0;
    padding: 30px 0;
  }
  .secFaq::before {
    height: 110px;
    top: -20px;
    background-position: right 20px center;
  }
  .secFaq::after {
    width: calc(100% - 60px);
  }
  .secFaq-inner {
    display: block;
  }
  .secFaq__secTit {
    margin-bottom: 40px;
  }
  .secFaq-box {
    margin-top: 0;
  }
  .secFaq-box__tit {
    min-height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 8px 30px 8px 50px;
    font-size: 15px;
  }
  .secFaq-box__tit::before {
    width: 34px;
    height: 34px;
    left: 0;
    bottom: 0;
    margin: auto;
    font-size: 15px;
  }
  .secFaq-box__tit .btn {
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 20px;
    height: 20px;
  }
  .secFaq-box__tit .btn::before, .secFaq-box__tit .btn::after {
    height: 1px;
  }
  .secFaq-box-content {
    padding: 10px 0 10px 50px;
    font-size: 13px;
  }
  .secFaq-box-content + .secFaq-box__tit {
    margin-top: 15px;
  }
}

/*------------------------------------------
	.secRecruit
------------------------------------------*/
.secRecruit {
  padding-block: 132px;
  background: url("../img/bg_entry_pc.webp") no-repeat center/cover;
}
.secRecruit__secTit {
  margin-top: 20px;
  color: #fff;
  font-weight: 700;
  font-size: 33px;
}
.secRecruit-inner {
  width: min(100%, 1000px);
}
.secRecruit__lead {
  text-align: center;
  color: #FFF;
  font-size: 32px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.64px;
  margin-bottom: 48px;
}
.secRecruit-btn {
  -ms-grid-column-span: 2;
  grid-column: span 2;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
}
.secRecruit-btn__item {
  color: #fff;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
}
.secRecruit-btn__item-en {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  font-weight: 400;
  font-size: 34px;
  margin-top: 4px;
}
.secRecruit-btn__item a {
  height: 103px;
  padding: 5px 20px 0;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 2px solid var(--color-green);
  background: var(--color-green);
}
@media screen and (min-width: 769px) {
  .secRecruit-btn__item a:hover {
    opacity: 1;
    background-color: #fff;
    color: var(--color-green);
  }
}
@media screen and (max-width: 768px) {
  .secRecruit {
    padding-block: 80px;
  }
  .secRecruit-inner {
    display: block;
  }
  .secRecruit__secTit {
    margin: 0 auto 30px;
    font-size: 28px;
    text-align: center;
  }
  .secRecruit__lead {
    font-size: 22px;
  }
  .secRecruit-btn {
    width: min(100%, 400px);
    margin-inline: auto;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 8px;
  }
  .secRecruit-btn__item {
    font-size: 16px;
  }
  .secRecruit-btn__item-en {
    font-size: 26px;
  }
  .secRecruit-btn__item a {
    height: 90px;
  }
}
/*# sourceMappingURL=style.css.map */