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

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

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

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

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

q,
blockquote {
  quotes: none;
}

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

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

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

@media screen and (min-width: 769px) {
  .hidden-pc {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .hidden-sp {
    display: none !important;
  }
}
/*------------------------------------------
	root
------------------------------------------*/
:root {
  --header-height: 100px;
  --inner-width: min(100%, 1080px + (var(--inner-padding) * 2));
  --inner-padding: 10px;
  --cv-height: 48px;
  --color-txt: #555;
  --color-green: #5c9d0f;
  --color-pink: #ff6898;
  --color-blue: #07a4bd;
  --color-gradi01: linear-gradient(to right, var(--color-blue) 0, #8edd31 100%);
  --color-gradi02: linear-gradient(
    to bottom,
    var(--color-blue) 0,
    #8edd31 100%
  );
  --box-shadow01: 0 14px 34px 0 rgba(85, 85, 85, 0.08);
}
@media screen and (max-width: 768px) {
  :root {
    --header-height: 70px;
    --inner-padding: 20px;
    --cv-height: 60px;
    --box-shadow01: 0 7px 17px 0 rgba(85, 85, 85, 0.08);
  }
}

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

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

.f-outfit {
  font-family: "Outfit", sans-serif;
}

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

body {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(25%, rgba(215, 240, 243, 0.25)), color-stop(50%, rgba(255, 213, 226, 0.25)), color-stop(70%, rgba(235, 243, 216, 0.25)));
  background: linear-gradient(to bottom, rgba(215, 240, 243, 0.25) 25%, rgba(255, 213, 226, 0.25) 50%, rgba(235, 243, 216, 0.25) 70%);
}
@media screen and (min-width: 769px) {
  body {
    min-width: 1000px;
  }
}

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

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

/*============================================================================================================
	l-header
============================================================================================================*/
.l-header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 9990;
  top: 0;
  left: 0;
}
.l-header__logo {
  width: 300px;
  aspect-ratio: 300/182;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 0 0 40px 0;
  position: absolute;
  top: 0;
  left: 0;
}
.l-header__logo a {
  width: 73.3%;
  display: block;
}
.l-header__logo a img {
  width: 100%;
  display: block;
}
.l-header__logo-txt {
  color: #000;
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0;
}
@media screen and (min-width: 769px) {
  .l-header {
    height: var(--header-height);
    gap: 24px;
    position: sticky;
    padding-inline: 320px 50px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .l-header.is-scroll {
    background: #fff;
  }
  .l-header.is-scroll .l-header__logo {
    width: 220px;
  }
  .l-header__logo {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .l-header {
    padding-inline: 240px 20px;
  }
  .l-header__logo {
    width: 220px;
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    position: relative;
  }
  .l-header__logo {
    width: 166px;
    aspect-ratio: 166/94;
    gap: 5px;
    border-radius: 0 0 24px 0;
  }
  .l-header__logo a {
    width: 81%;
  }
  .l-header__logo-txt {
    font-size: 9px;
  }
}

/*	.l-header__entry
------------------------------------------*/
.l-header__entry {
  width: 148px;
  height: var(--cv-height);
  border-radius: 100px;
  background: var(--color-gradi01);
  color: #fff;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.04em;
}
.l-header__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: 100%;
  border-radius: inherit;
}
@media screen and (min-width: 769px) {
  .l-header__entry {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .l-header__entry a:hover {
    opacity: 1;
    background: var(--color-blue);
  }
}
@media screen and (max-width: 768px) {
  .l-header__entry {
    width: calc(100% - 20px);
    border-radius: 10px 10px 0 0;
    font-size: 18px;
    letter-spacing: 0.2em;
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 9992;
  }
}

/*============================================================================================================
	footer
============================================================================================================*/
.l-footer {
  padding: 0;
  background: #5c9d0f;
  position: relative;
}
.l-footer p,
.l-footer li {
  line-height: 1.8;
  letter-spacing: 0.08em;
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
}
.l-footer a,
.l-footer span {
  color: inherit !important;
  font-family: inherit;
  font-weight: inherit;
}
.l-footer a,
.l-footer li,
.l-footer div,
.l-footer span {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.l-footer-inner {
  width: min(100%, 1100px);
  margin-inline: auto;
  padding: 45px 10px;
}
.l-footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto 20px;
  padding: 0;
  gap: 20px 0;
}
.l-footer-nav__item {
  list-style: none;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
}
.l-footer-nav__item + .l-footer-nav__item {
  position: relative;
}
.l-footer-nav__item + .l-footer-nav__item::after {
  content: "";
  display: block;
  width: 1px;
  height: 70%;
  background: currentColor;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.l-footer-nav__item a {
  display: block;
  padding-inline: 25px;
  color: inherit;
  text-decoration: none;
}
.l-footer-nav__item a:hover {
  opacity: 1;
  text-decoration: underline;
}
.l-footer-copyright {
  margin: 0;
  color: #fff !important;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .l-footer .hidden-pc {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .l-footer .hidden-sp {
    display: none;
  }
  .l-footer-inner {
    padding: 30px 20px 100px;
  }
  .l-footer-nav {
    display: block;
    margin: 0 auto 30px;
  }
  .l-footer-nav__item {
    border-bottom: 1px dashed;
    font-size: 12px;
    text-align: left;
  }
  .l-footer-nav__item + .l-footer-nav__item::after {
    content: none;
  }
  .l-footer-nav__item a {
    padding: 10px 0;
  }
  .l-footer-copyright {
    font-size: 10px;
  }
}

.pagetop {
  display: none;
  width: 70px;
  height: 70px;
  position: fixed;
  right: 30px;
  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: #5c9d0f;
  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;
}

/* PC */
@media screen and (min-width: 769px) {
  .l-nav {
    display: block !important;
    height: auto !important;
    margin-inline: auto 0;
  }
  .l-nav-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
  }
  .l-nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px 24px;
  }
  .l-nav-list__item {
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    line-height: 1.5;
    letter-spacing: 0;
  }
  .l-nav-list__item a:hover {
    opacity: 1;
    color: var(--color-blue);
  }
}
/* SP */
@media screen and (max-width: 768px) {
  .gnavBtn {
    overflow: hidden;
    cursor: pointer;
    width: 64px;
    height: 64px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9992;
    background: var(--color-gradi01);
  }
  .gnavBtn span {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 28px;
    height: 2px;
    border-radius: 10px;
    background: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .gnavBtn span:nth-of-type(1) {
    top: 23px;
  }
  .gnavBtn span:nth-of-type(2) {
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .gnavBtn span:nth-of-type(3) {
    bottom: 23px;
  }
  .gnavBtn.is-close span:nth-of-type(1) {
    -webkit-transform: translateY(8px) rotate(-225deg);
            transform: translateY(8px) 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(-8px) rotate(225deg);
            transform: translateY(-8px) rotate(225deg);
  }
  .l-nav {
    display: none;
    padding: 80px 20px calc(var(--cv-height) + 50px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9991;
    background: rgba(255, 255, 255, 0.95);
    overflow: auto;
  }
  .l-nav::-webkit-scrollbar {
    display: none;
  }
  .l-nav-list__item {
    border-bottom: 1px solid #999;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
  }
  .l-nav-list__item a {
    padding: 15px 30px 15px 20px;
    position: relative;
  }
  .l-nav-list__item a::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    color: var(--color-blue);
    border-right: 2px solid;
    border-bottom: 2px solid;
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    margin: auto;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}
/*============================================================================================================
	.l-mv
============================================================================================================*/
.l-mv {
  margin-bottom: 120px;
  padding-inline: 50px;
  position: relative;
}
.l-mv img {
  width: 100%;
}
.l-mv__txt {
  color: #fff;
  font-size: max(24px, 2.4vw);
  line-height: 1.1;
  letter-spacing: 0.29em;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  position: absolute;
  top: 13%;
  right: calc(7% + 50px);
  z-index: 2;
}
.l-mv__txt .bg {
  display: block;
  padding: max(12px, 1.2vw) max(6px, 0.55vw) max(4px, 0.4vw);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background: var(--color-gradi02);
}
.l-mv__txt .bg + .bg {
  margin-right: max(5px, 0.5vw);
}
.l-mv-imgBox img {
  border-radius: 40px;
}
@media screen and (max-width: 768px) {
  .l-mv {
    margin-bottom: 60px;
    padding: 20px 20px 0;
  }
  .l-mv__txt {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 5.5vw;
    letter-spacing: 0.25em;
    top: 29.5%;
    right: 0;
    left: 0;
    margin: auto;
  }
  .l-mv__txt .bg {
    padding: 3vw 1.1vw 1.3vw;
  }
  .l-mv__txt .bg + .bg {
    margin-right: 1.3vw;
  }
  .l-mv-imgBox img {
    border-radius: 24px;
  }
}

/*============================================================================================================
	main
============================================================================================================*/
.c-tit01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 7px;
  font-weight: 700;
  font-size: 44px;
  letter-spacing: 0.05em;
}
.c-tit01__en {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.1em;
  font-family: "Outfit", sans-serif;
  background: var(--color-gradi01);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}
.c-tit01__en::after {
  content: "";
  display: block;
  width: 39px;
  width: 2.4375em;
  aspect-ratio: 1/1;
  background: url(../img/ico_tit01.svg) no-repeat center/contain;
  position: absolute;
  top: -0.75em;
  left: -1.375em;
  z-index: -1;
  pointer-events: none;
}
.c-tit01.is-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 24px;
}
.c-tit01.is-row .c-tit01__en {
  margin-bottom: 4px;
}
@media screen and (min-width: 769px) {
  .c-tit01.is-row {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  .c-tit01 {
    font-size: 26px;
  }
  .c-tit01__en {
    font-size: 14px;
  }
  .c-tit01__en::after {
    left: -1em;
  }
  .c-tit01.is-row {
    gap: 15px;
  }
  .c-tit01.is-row .c-tit01__en {
    margin-bottom: 1px;
  }
}

.c-tit02 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 400;
  font-size: 86px;
  line-height: 1.2;
  letter-spacing: 0.06em;
  font-family: "Outfit", sans-serif;
  background: var(--color-gradi01);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media screen and (max-width: 768px) {
  .c-tit02 {
    font-size: 48px;
  }
}

.c-tit03 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 7px;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.05em;
}
.c-tit03__en {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.1em;
  font-family: "Outfit", sans-serif;
  background: var(--color-gradi01);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media screen and (max-width: 768px) {
  .c-tit03 {
    font-size: 22px;
  }
  .c-tit03__en {
    font-size: 14px;
  }
}

/*------------------------------------------
	.secFeature
------------------------------------------*/
.secFeature {
  padding-block: 0 100px;
}
.secFeature__secTit {
  margin-bottom: 80px;
}
.secFeature-top {
  width: min(100% - var(--inner-padding) * 2, 1160px);
  margin: 0 auto 80px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 100px min(44.9%, 520px);
  grid-template-columns: 1fr min(44.9%, 520px);
  grid-gap: 100px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.secFeature-top-txtBox {
  width: min(100%, 500px);
  margin-inline: auto 0;
}
.secFeature-top__txt {
  font-size: 18px;
  line-height: 2.4;
}
.secFeature-top-imgBox img {
  display: block;
  border-radius: 16px;
}
.secFeature-top-imgBox img:nth-of-type(1) {
  width: 82.7%;
}
.secFeature-top-imgBox img:nth-of-type(2) {
  width: 57.7%;
  margin: -11.54% 0 0 auto;
}
@media screen and (max-width: 768px) {
  .secFeature {
    padding-block: 80px 40px;
  }
  .secFeature__secTit {
    margin-bottom: 30px;
  }
  .secFeature-top {
    width: calc(100% - var(--inner-padding) * 2);
    margin-bottom: 60px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 40px;
  }
  .secFeature-top-txtBox {
    width: calc(100% - 20px);
    margin-inline: auto;
  }
  .secFeature-top__txt {
    font-size: 16px;
    line-height: 2;
  }
}

/*	.secFeature-movieBox
------------------------------------------*/
.secFeature-movieBox {
  width: min(100%, 720px);
  aspect-ratio: 16/9;
  margin: 0 auto 80px;
}
.secFeature-movieBox iframe,
.secFeature-movieBox video {
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .secFeature-movieBox {
    margin-bottom: 60px;
  }
}

/*	.secFeature-point
------------------------------------------*/
.secFeature-point {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 40px;
}
.secFeature-point__item {
  overflow: clip;
  border-radius: 8px;
  background: #fff;
  -webkit-box-shadow: var(--box-shadow01);
          box-shadow: var(--box-shadow01);
}
.secFeature-point__img {
  width: 100%;
}
.secFeature-point-txtBox {
  padding: 25px 20px 50px;
}
.secFeature-point__tit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 30px;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  background: var(--color-gradi01);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.secFeature-point__txt {
  font-size: 14px;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .secFeature-point {
    width: calc(100% - 20px);
    margin-inline: auto;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
  .secFeature-point-txtBox {
    padding: 20px;
  }
  .secFeature-point__tit {
    margin-bottom: 15px;
  }
}

/*------------------------------------------
	.secJob
------------------------------------------*/
.secJob {
  padding-block: 0 180px;
}
.secJob__secTit {
  margin-bottom: 63px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .secJob {
    padding-block: 80px 40px;
  }
  .secJob__secTit {
    margin-bottom: 50px;
  }
}

/*	.secJob-set
------------------------------------------*/
.secJob-set {
  --themeColor: var(--color-green);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 50px 50%;
  grid-template-columns: 1fr 50%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  grid-gap: 50px;
}
.secJob-set .is-pink {
  --themeColor: var(--color-pink);
}
.secJob-set .is-blue {
  --themeColor: var(--color-blue);
}
@media screen and (max-width: 768px) {
  .secJob-set {
    display: block;
    scroll-margin-top: var(--header-height);
  }
  .secJob-set__back {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    border-radius: 0 0 8px 8px;
    color: var(--color-blue);
    font-weight: 500;
  }
  .secJob-set__back a {
    height: 40px;
    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-inline: 30px;
    background: #d7f0f3;
    border-radius: inherit;
    position: relative;
  }
  .secJob-set__back a::after {
    content: "";
    display: block;
    width: 6px;
    aspect-ratio: 7/13;
    -webkit-mask-image: url(../img/ico_arrow01.svg);
    mask-image: url(../img/ico_arrow01.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    background: currentColor;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
}

/*	.secJob-nav
------------------------------------------*/
.secJob-navWrap {
  margin-top: 10px;
}
.secJob-nav + .secJob-nav {
  margin-top: 43px;
}
.secJob-nav__name {
  margin-bottom: 10px;
  padding-left: 1em;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.45;
  letter-spacing: 0;
  position: relative;
}
.secJob-nav__name::after {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  background: var(--themeColor);
  position: absolute;
  top: 0.55em;
  left: 0;
}
.secJob-nav-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 12px 20px;
}
.secJob-nav-list__item {
  cursor: pointer;
  padding-block: 10px;
  border-bottom: 1px solid #c7c7c7;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
}
.secJob-nav-list__item::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background: currentColor;
  position: absolute;
  left: 0;
  bottom: -1px;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.secJob-nav-list__item.is-active {
  color: var(--themeColor);
}
.secJob-nav-list__item.is-active::after {
  opacity: 1;
}
@media screen and (min-width: 769px) {
  .secJob-nav-list__item:hover {
    color: var(--themeColor);
  }
}
@media screen and (max-width: 768px) {
  .secJob-navWrap {
    margin-block: 0 20px;
  }
  .secJob-nav + .secJob-nav {
    margin-top: 20px;
  }
  .secJob-nav__name {
    margin-bottom: 8px;
    font-size: 15px;
  }
  .secJob-nav-list {
    grid-gap: 0 10px;
  }
  .secJob-nav-list__item {
    padding-block: 9px;
    font-size: 11px;
  }
}

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

/*	.secJob-content
------------------------------------------*/
.secJob-content {
  overflow: clip;
  background: #fff;
  -webkit-box-shadow: var(--box-shadow01);
          box-shadow: var(--box-shadow01);
  border-radius: 16px;
}
.secJob-content-txtBox {
  padding: 30px 40px 56px;
}
.secJob-content__tit {
  margin-bottom: 14px;
  color: var(--themeColor);
  font-weight: 700;
  font-size: 24px;
}
.secJob-content__txt + .secJob-content__txt {
  margin-top: 20px;
}
.secJob-content__txt span {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
}
.secJob-content__entry {
  width: min(100%, 380px);
  margin: 20px auto 0 0;
  border-radius: 100px;
  background: var(--color-gradi01);
  color: #fff;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}
.secJob-content__entry a {
  min-height: 64px;
  padding: 10px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: inherit;
  background: url(../img/ico_arrow01.svg) no-repeat right 30px center;
}
@media screen and (min-width: 769px) {
  .secJob-content__entry a:hover {
    opacity: 1;
    background-color: var(--color-blue);
  }
}
@media screen and (max-width: 768px) {
  .secJob-content-txtBox {
    padding: 30px;
  }
  .secJob-content__tit {
    margin-bottom: 10px;
    font-size: 20px;
  }
  .secJob-content__entry {
    width: 100%;
    margin: 20px auto 0;
    font-size: 16px;
  }
  .secJob-content__entry a {
    padding-inline: 30px;
    background-position: right 20px center;
  }
}

/*------------------------------------------
	.secBenefits
------------------------------------------*/
.secBenefits {
  padding-block: 0 160px;
}
.secBenefits__secTit {
  margin-bottom: 60px;
}
.secBenefits-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}
.secBenefits-list__item {
  padding: 40px 25px;
  background: #fff;
  border-radius: 8px;
  -webkit-box-shadow: var(--box-shadow01);
          box-shadow: var(--box-shadow01);
}
.secBenefits-list__ico {
  width: min(34.5%, 100px);
  display: block;
  margin: 0 auto 20px;
}
.secBenefits-list__tit {
  margin-bottom: 30px;
  color: var(--color-blue);
  font-weight: 700;
  font-size: 24px;
  text-align: center;
}
.secBenefits-list__txt {
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .secBenefits {
    padding-block: 80px 40px;
  }
  .secBenefits__secTit {
    margin-bottom: 30px;
  }
  .secBenefits-list {
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
  }
  .secBenefits-list__item {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: subgrid;
    grid-template-rows: subgrid;
    -ms-grid-row-span: 3;
    grid-row: span 3;
    grid-gap: 12px;
    padding: 20px 15px;
  }
  .secBenefits-list__ico {
    width: min(60%, 70px);
    margin-bottom: 0;
  }
  .secBenefits-list__tit {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    margin-bottom: 0;
    font-size: 17px;
  }
  .secBenefits-list__txt {
    font-size: 13px;
  }
}

/*------------------------------------------
	.secFaq
------------------------------------------*/
.secFaq {
  padding-block: 0 96px;
}
.secFaq-inner {
  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: 50px;
}
.secFaq__secTit {
  margin-top: 15px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.secFaq-box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 680px;
}
.secFaq-box__tit, .secFaq-box__txt {
  -webkit-box-shadow: var(--box-shadow01);
          box-shadow: var(--box-shadow01);
}
.secFaq-box__tit {
  min-height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 50px 10px 62px;
  background: #ffd5e2;
  border-radius: 12px 12px 0 0;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  position: relative;
}
.secFaq-box__tit::after {
  content: "Q";
  display: block;
  height: 1em;
  color: var(--color-pink);
  font-weight: 400;
  font-size: 24px;
  font-family: "Outfit", sans-serif;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 27px;
  bottom: 0;
  margin: auto;
}
.secFaq-box__txt {
  padding: 30px;
  background: #fff;
  border-radius: 0 0 12px 12px;
  position: relative;
  z-index: 2;
}
.secFaq-box__txt + .secFaq-box__tit {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .secFaq {
    padding-block: 80px;
  }
  .secFaq-inner {
    display: block;
  }
  .secFaq__secTit {
    margin-block: 0 40px;
  }
  .secFaq-box {
    max-width: none;
  }
  .secFaq-box__tit {
    min-height: 50px;
    padding-inline: 45px 15px;
    font-size: 16px;
  }
  .secFaq-box__tit::after {
    font-size: 22px;
    left: 15px;
  }
  .secFaq-box__txt {
    padding: 15px 20px;
  }
}

/*------------------------------------------
	.secGallery
------------------------------------------*/
.secGallery {
  margin-bottom: 160px;
}
.secGallery img {
  width: 100%;
  border-radius: 16px;
}
.secGallery .splide__list {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.secGallery .splide__slide.is-down {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .secGallery {
    margin-bottom: 0;
  }
  .secGallery img {
    border-radius: 12px;
  }
}

/*------------------------------------------
	.secMessage
------------------------------------------*/
.secMessage {
  padding-block: 0 160px;
}
.secMessage-inner {
  width: min(100% - var(--inner-padding) * 2, 1180px);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: min(53.5%, 620px) 50px 1fr;
  grid-template-columns: min(53.5%, 620px) 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 50px;
}
.secMessage-txtBox {
  width: min(100%, 435px);
  margin-inline: auto 0;
}
.secMessage__secTit {
  margin-bottom: 45px;
}
.secMessage__txt {
  font-size: 18px;
  line-height: 2.4;
}
.secMessage-imgBox {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 3.2% 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 3.2%;
}
.secMessage-imgBox img {
  display: block;
  border-radius: 40px;
}
.secMessage-imgBox img:nth-of-type(1) {
  margin-top: 20%;
}
@media screen and (min-width: 769px) {
  .secMessage-imgBox {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}
@media screen and (max-width: 768px) {
  .secMessage {
    padding-block: 80px 40px;
  }
  .secMessage-inner {
    width: 100%;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 40px;
  }
  .secMessage-txtBox {
    width: calc(100% - 20px);
    margin-inline: auto;
  }
  .secMessage__secTit {
    margin-bottom: 30px;
  }
  .secMessage__txt {
    font-size: 16px;
    line-height: 2;
  }
  .secMessage-imgBox img {
    border-radius: 20px;
  }
}

/*------------------------------------------
	.secSearch
------------------------------------------*/
.secSearch {
  padding-block: 0 160px;
}
.secSearch__secTit {
  margin-bottom: 35px;
}
.secSearch-top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 57.4%;
  grid-template-columns: 1fr 57.4%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 30px;
  margin: 0 auto 64px;
  padding-left: 10px;
}
.secSearch-top-txtBox {
  width: min(100%, 410px);
  margin: 20px 0 0 auto;
}
.secSearch-top__lead {
  font-size: 24px;
}
.secSearch-top__img {
  width: 100%;
  border-radius: 40px 0 0 40px;
}
@media screen and (max-width: 768px) {
  .secSearch {
    padding-block: 80px;
  }
  .secSearch__secTit {
    margin-bottom: 30px;
  }
  .secSearch-top {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 40px;
    margin-bottom: 60px;
    padding-inline: var(--inner-padding);
  }
  .secSearch-top-txtBox {
    width: 100%;
    margin: 0 auto;
  }
  .secSearch-top__lead {
    font-size: 17px;
  }
  .secSearch-top__img {
    width: calc(100% + var(--inner-padding));
    max-width: none;
    border-radius: 20px 0 0 20px;
  }
}

/*	.secSearch-sec
------------------------------------------*/
.secSearch-sec {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 220px 30px 1fr;
  grid-template-columns: 220px 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  grid-gap: 30px;
}
.secSearch-sec + .secSearch-sec {
  margin-top: 60px;
}
.secSearch-sec-list {
  width: min(100%, 800px);
  margin-inline: auto 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 25px 1fr 25px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 25px;
}
.secSearch-sec-list__item {
  border-radius: 100px;
  background: var(--color-gradi01);
  color: #fff;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  -webkit-transition: background 0.35s ease-out;
  transition: background 0.35s ease-out;
}
.secSearch-sec-list__item.is-job-grp1 {
  background: var(--color-green);
}
.secSearch-sec-list__item.is-job-grp2 {
  background: var(--color-pink);
}
.secSearch-sec-list__item.is-job-grp3 {
  background: var(--color-blue);
}
.secSearch-sec-list__item .small {
  font-weight: 400;
  font-size: 0.75em;
}
.secSearch-sec-list__item a {
  min-height: 64px;
  height: 100%;
  padding: 10px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: inherit;
  background: url(../img/ico_arrow01.svg) no-repeat right 12px center;
}
@media screen and (min-width: 769px) {
  .secSearch-sec-list__item a {
    -webkit-transition: background-color 0.35s ease-out, opacity 0.35s ease-out;
    transition: background-color 0.35s ease-out, opacity 0.35s ease-out;
  }
}
@media screen and (min-width: 769px) {
  .secSearch-sec-list__item a:hover {
    opacity: 1;
    background-color: var(--color-blue);
  }
  .secSearch-sec-list__item.is-job-grp1 a:hover, .secSearch-sec-list__item.is-job-grp2 a:hover, .secSearch-sec-list__item.is-job-grp3 a:hover {
    background-color: transparent;
  }
  .secSearch-sec-list__item.is-job-grp1:hover {
    background: color-mix(in srgb, var(--color-green) 72%, black);
  }
  .secSearch-sec-list__item.is-job-grp2:hover {
    background: color-mix(in srgb, var(--color-pink) 72%, black);
  }
  .secSearch-sec-list__item.is-job-grp3:hover {
    background: color-mix(in srgb, var(--color-blue) 72%, black);
  }
}
@media screen and (max-width: 768px) {
  .secSearch-sec {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
  .secSearch-sec-list {
    width: 100%;
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
  }
  .secSearch-sec-list__item {
    font-size: 16px;
  }
}
@media screen and (max-width: 580px) {
  .secSearch-sec-list.is-wide-sp {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 15px;
  }
}

/*------------------------------------------
	.secAccess
------------------------------------------*/
.secAccess {
  margin-bottom: 120px;
  padding-block: 95px 100px;
  position: relative;
}
.secAccess::after {
  content: "";
  display: block;
  width: calc(50% + 380px);
  height: 100%;
  background: #fff;
  border-radius: 0 40px 40px 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  pointer-events: none;
}
.secAccess-inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 50px 50%;
  grid-template-columns: 1fr 50%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  grid-gap: 50px;
}
.secAccess-txtBox {
  width: min(100%, 420px);
}
.secAccess__secTit {
  margin-bottom: 35px;
}
.secAccess__address {
  margin-bottom: 60px;
  font-size: 18px;
}
.secAccess-how__tit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 12px 0;
  padding: 5px 14px;
  background: #d7f0f3;
  border-radius: 6px;
  color: var(--color-blue);
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0;
}
.secAccess-how__txt {
  line-height: 1.5;
}
.secAccess-how__txt + .secAccess-how__tit {
  margin-top: 32px;
}
.secAccess-mapBox {
  height: 570px;
}
.secAccess-mapBox iframe {
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .secAccess {
    margin-bottom: 40px;
    padding-block: 80px 40px;
  }
  .secAccess::after {
    width: calc(100% - 10px);
    border-radius: 0 20px 20px 0;
  }
  .secAccess-inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 40px;
  }
  .secAccess-txtBox {
    width: 100%;
  }
  .secAccess__secTit {
    margin-bottom: 30px;
  }
  .secAccess__address {
    margin-bottom: 30px;
    font-size: 16px;
  }
  .secAccess-how__txt + .secAccess-how__tit {
    margin-top: 20px;
  }
  .secAccess-mapBox {
    height: 300px;
  }
}
/*# sourceMappingURL=style.css.map */