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

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

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

q, blockquote {
  quotes: none;
}

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

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

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

@media screen and (min-width: 769px) {
  .hidden-pc {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .hidden-sp {
    display: none !important;
  }
}
/*------------------------------------------
	root
------------------------------------------*/
:root {
  --header-height: 100px;
  --inner-width: min(100%, 1080px + (var(--inner-padding) * 2));
  --inner-padding: 10px;
  --color-txt: #000;
  --color-red: #EB5C3C;
  --color-green: #6ABD79;
  --color-blue: #3371BE;
}
@media screen and (max-width: 768px) {
  :root {
    --header-height: 70px;
    --inner-padding: 20px;
  }
}

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

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

.f-outfit {
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0;
}

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

body {
  background: #FFFEF0;
}
@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%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  z-index: 9990;
}
.l-header__logo {
  position: fixed;
  top: 0;
  left: 0;
  width: 230px;
  height: 100px;
  border-radius: 0 0 40px 0;
}
.l-header__logo a {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: inherit;
  background: #fff;
}
.l-header__logo img {
  display: block;
}
.l-header-entryWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.l-header__entry {
  position: fixed;
  top: 20px;
  right: 110px;
  z-index: 9992;
  width: 240px;
  border-radius: 100px;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0;
}
.l-header__entry a {
  min-height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: inherit;
  background: var(--color-red);
  border: 2px solid #000;
}
.l-header__entry + .l-header__entry {
  right: 360px;
}
@media screen and (min-width: 769px) {
  .l-header__entry a:hover {
    opacity: 1;
    border-color: var(--color-red);
    background: #fff;
    color: var(--color-red);
  }
}
@media screen and (max-width: 768px) {
  .l-header__logo {
    position: absolute;
    width: min(100vw - 205px, 155px);
    height: 70px;
    border-radius: 0 0 16px 0;
  }
  .l-header__logo img {
    width: min(90%, 115px);
  }
  .l-header__entry {
    top: auto;
    width: 50%;
    border-bottom: none;
    position: fixed;
    z-index: 9990;
    bottom: 0;
    border-top: 1px solid;
    margin: auto;
    color: #fff;
    text-align: center;
    font-size: 15px;
    line-height: 1.25;
    border-radius: 0;
  }
  .l-header__entry:first-child {
    right: 4px;
  }
  .l-header__entry:last-child {
    right: auto;
    left: 4px;
  }
  .l-header__entry a {
    min-height: 60px;
  }
}

/*============================================================================================================
	footer
============================================================================================================*/
.l-footer {
  padding: 0;
  background: #EB5C3C;
  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: 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;
  }
  .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: 100%;
  font-size: 10px;
  white-space: nowrap;
  overflow: hidden;
  z-index: 9000;
}
.pagetop a {
  width: 100%;
  height: 100%;
  display: block;
  background: var(--color-red);
  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: 70px;
  }
  .pagetop a::after {
    width: 10px;
    height: 10px;
  }
}

/*============================================================================================================
	nav
============================================================================================================*/
.gnavBtn {
  overflow: hidden;
  cursor: pointer;
  width: 80px;
  height: 80px;
  position: fixed;
  z-index: 9992;
  top: 20px;
  right: 20px;
  background: #fff;
  border-radius: 50%;
  border: 2px solid #000;
  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-transition: all 0.3s;
  transition: all 0.3s;
}
.gnavBtn::after {
  content: "MENU";
  font-size: 18px;
  text-align: center;
}
.gnavBtn.is-close::after {
  content: "CLOSE";
}
.gnavBtn:hover {
  border-color: var(--color-red);
  color: var(--color-red);
}
@media screen and (max-width: 768px) {
  .gnavBtn {
    width: 60px;
    height: 60px;
    top: 10px;
    right: 10px;
  }
  .gnavBtn::after {
    font-size: 14px;
  }
}

.l-nav {
  top: 0;
  right: -400px;
  width: 400px;
  height: 100%;
  position: fixed;
  z-index: 9991;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.l-nav.is-open {
  right: 0;
}
.l-nav.is-open .l-nav-overlay {
  left: 0;
  width: 100%;
}
.l-nav-inner {
  width: 100%;
  height: 100%;
  padding: 150px 50px 100px;
  background: #fff;
  position: relative;
  z-index: 2;
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.l-nav-inner::-webkit-scrollbar {
  display: none;
}
.l-nav-list__item {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.5;
}
.l-nav-list__item:last-of-type {
  margin-bottom: 0;
}
.l-nav-list__item a {
  display: block;
  padding: 10px 20px 10px 0;
  position: relative;
}
.l-nav-list__item a::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid;
  border-bottom: 2px solid;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 5px);
  right: 2px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  pointer-events: none;
}
.l-nav-list__item-en {
  display: block;
  margin-bottom: 5px;
  color: var(--color-red);
  font-size: 26px;
  line-height: 1.2;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.l-nav-overlay {
  cursor: pointer;
  position: fixed;
  width: 0;
  height: 100%;
  top: 0;
  left: 100%;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 769px) {
  .l-nav-list__item a:hover {
    opacity: 1;
    color: var(--color-blue);
  }
  .l-nav-list__item a:hover::after {
    top: 50%;
  }
  .l-nav-list__item a:hover .l-nav-list__item-en {
    color: var(--color-blue);
  }
}
@media screen and (max-width: 768px) {
  .l-nav {
    right: -280px;
    width: 280px;
  }
  .l-nav-inner {
    padding: 100px 20px;
  }
  .l-nav-list__item {
    margin-bottom: 10px;
    font-size: 14px;
  }
  .l-nav-list__item a::after {
    width: 8px;
    height: 8px;
  }
  .l-nav-list__item-en {
    font-size: 20px;
  }
}

/*============================================================================================================
	components
============================================================================================================*/
/*------------------------------------------
	tit
------------------------------------------*/
.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;
  color: var(--color-red);
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  letter-spacing: 0.04em;
}
.c-tit01__en {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  margin-bottom: 10px;
  font-size: 74px;
  line-height: 1;
  letter-spacing: 0;
  font-family: "Outfit", sans-serif;
}
.c-tit01.is-left {
  text-align: left;
}
@media screen and (max-width: 768px) {
  .c-tit01 {
    font-size: 16px;
  }
  .c-tit01__en {
    font-size: 40px;
  }
}

.c-tit02 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 9px 56px;
  border: 2px solid #000;
  border-radius: 24px 24px 0 24px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.04em;
}
.c-tit02.is-yellow {
  background: #FFF390;
}
.c-tit02.is-blue {
  background: #CBE9F3;
}
@media screen and (max-width: 768px) {
  .c-tit02 {
    padding-inline: 30px;
    font-size: 18px;
  }
}

/*------------------------------------------
	.c-pagelink01
------------------------------------------*/
.c-pagelink01 {
  padding-block: 0 100px;
}
.c-pagelink01-bnr {
  overflow: hidden;
  width: calc(50% - 10px);
  border-radius: 8px;
}
.c-pagelink01-bnrWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
.c-pagelink01-bnr a {
  display: block;
  height: 100%;
  padding: 25px 10px 25px 42%;
  border-radius: inherit;
}
.c-pagelink01-bnr__txt {
  font-weight: 700;
  font-size: clamp(30px, 3vw, 34px);
  line-height: 1.5;
  letter-spacing: 0;
}
.c-pagelink01-bnr__txt .bg {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 3px 20px;
  background: #fff;
  border: 2px solid #000;
  border-radius: 12px;
}
.c-pagelink01-bnr__txt .bg + .bg {
  margin-top: 8px;
}
.c-pagelink01-bnr__click {
  width: min(100%, 185px);
  min-height: 46px;
  margin: 20px auto 0 0;
  padding-inline: 25px;
  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: #000 url(../img/common/ico_arrow02.svg) no-repeat right 13px center;
  border-radius: 100px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}
.c-pagelink01-bnr.is-blue a {
  background: var(--color-blue) url(../img/common/img_pagelink01.svg) no-repeat left 20px bottom/auto 98%;
}
.c-pagelink01-bnr.is-green a {
  padding-left: 35.5%;
  background: var(--color-green) url(../img/common/img_pagelink02.svg) no-repeat left 20px bottom/auto 88%;
}
@media screen and (max-width: 768px) {
  .c-pagelink01 {
    padding-block: 0 80px;
  }
  .c-pagelink01-bnr {
    width: min(100%, 350px);
    margin-inline: auto;
  }
  .c-pagelink01-bnrWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-pagelink01-bnr a {
    padding: 20px 10px 20px 40% !important;
  }
  .c-pagelink01-bnr__txt {
    font-size: min(5.2vw, 22px);
  }
  .c-pagelink01-bnr__txt .bg {
    padding: min(1vw, 4px) min(1.5vw, 8px);
    border-radius: min(2vw, 8px);
  }
  .c-pagelink01-bnr__txt .bg + .bg {
    margin-top: 4px;
  }
  .c-pagelink01-bnr__click {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-height: 32px;
    margin-top: 10px;
    padding-inline: 20px;
    background-position: right 8px center;
    background-size: 6px;
    font-size: min(3.5vw, 12px);
  }
  .c-pagelink01-bnr.is-blue a {
    background-position: left 1% bottom;
    background-size: auto 90%;
  }
  .c-pagelink01-bnr.is-green a {
    background-position: left 6% bottom;
    background-size: auto 82%;
  }
}

/*------------------------------------------
	tab
------------------------------------------*/
@media screen and (max-width: 768px) {
  .js-tab-set {
    scroll-margin-top: var(--header-height);
  }
}

.js-tab-btn {
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 769px) {
  .js-tab-btn:hover {
    opacity: 0.7;
  }
}

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

.c-tab-back01 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 40px 0 auto;
  border-radius: 0 0 8px 8px;
  color: #fff;
  font-weight: 700;
  line-height: 1.5;
}
.c-tab-back01 a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  height: 60px;
  padding: 15px 30px;
  border-radius: inherit;
  background: #000;
  position: relative;
}
.c-tab-back01 a::after {
  content: "";
  display: block;
  width: 18px;
  aspect-ratio: 14/10;
  background: url(../img/common/ico_arrow01.svg) no-repeat center/contain;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .c-tab-back01 {
    margin-right: 20px;
  }
  .c-tab-back01 a {
    height: 50px;
    padding: 10px 12px 10px 20px;
  }
  .c-tab-back01 a::after {
    width: 14px;
  }
}

/*============================================================================================================
	page
============================================================================================================*/
/*	home
============================================================================================================*/
/*------------------------------------------
	.homeMv
------------------------------------------*/
.homeMv {
  margin-bottom: 95px;
  padding-block: 140px 90px;
  background: var(--color-blue);
  position: relative;
}
.homeMv img {
  width: 100%;
}
.homeMv__txt {
  width: 32.5%;
  position: absolute;
  z-index: 3;
  top: 38%;
  left: 8.3%;
}
.homeMv-imgBox {
  position: relative;
  z-index: 2;
}
.homeMv-loop {
  overflow: hidden;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: rgba(255, 255, 255, 0.26);
  font-size: 74px;
  line-height: 1;
  white-space: nowrap;
  position: absolute;
  left: 0;
  pointer-events: none;
}
.homeMv-loop__txt {
  --speed: 150s;
  padding-inline: 0.1em;
  -webkit-animation: var(--speed) linear infinite;
          animation: var(--speed) linear infinite;
}
.homeMv-loop__txt:nth-of-type(1) {
  -webkit-animation-name: loop01;
          animation-name: loop01;
  -webkit-animation-delay: calc(var(--speed) * -0.5);
          animation-delay: calc(var(--speed) * -0.5);
}
.homeMv-loop__txt:nth-of-type(2) {
  -webkit-animation-name: loop02;
          animation-name: loop02;
}
.homeMv-loop.is-top {
  top: 75px;
}
.homeMv-loop.is-bottom {
  bottom: 25px;
}
.homeMv-loop.is-bottom .homeMv-loop__txt {
  animation-direction: reverse;
}
@media screen and (max-width: 768px) {
  .homeMv {
    margin-bottom: 0;
    padding-block: calc(70px + 17vw) 17vw;
  }
  .homeMv__txt {
    width: 77%;
    top: auto;
    left: 8%;
    bottom: 7.5%;
  }
  .homeMv-loop {
    font-size: 10.8vw;
  }
  .homeMv-loop__txt {
    --speed: 100s;
  }
  .homeMv-loop.is-top {
    top: calc(70px + 7.5vw);
  }
  .homeMv-loop.is-bottom {
    bottom: 8vw;
  }
}

.js-home-mv-slider {
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  aspect-ratio: 1440/530;
}
@media screen and (max-width: 768px) {
  .js-home-mv-slider {
    aspect-ratio: 390/350;
  }
}
.js-home-mv-slider.is-initialized {
  opacity: 1;
}
.js-home-mv-slider .splide__track {
  height: 100%;
}
.js-home-mv-slider .splide__slide {
  overflow: hidden;
  border-radius: 24px;
  border: 2px solid #000;
}
.js-home-mv-slider img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@-webkit-keyframes loop01 {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes loop01 {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes loop02 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
@keyframes loop02 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
/*------------------------------------------
	.homeSchedule
------------------------------------------*/
.homeSchedule {
  padding-block: 0 95px;
}
.homeSchedule__secTit {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .homeSchedule {
    padding-block: 80px 30px;
  }
  .homeSchedule-inner {
    padding-inline: 10px;
  }
  .homeSchedule__secTit {
    margin-bottom: 40px;
  }
}

.homeSchedule-set {
  width: min(100%, 980px);
  margin-inline: auto;
}

.homeSchedule-nav {
  --itemHeight: 90px;
  height: var(--itemHeight);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 10px;
}
.homeSchedule-nav__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 280px;
  height: calc(var(--itemHeight) - 10px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px;
  border-radius: 8px 8px 0 0;
  border: 2px solid #000;
  border-bottom: none;
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.4;
  text-align: center;
}
.homeSchedule-nav__item.is-green {
  background: var(--color-green);
}
.homeSchedule-nav__item.is-blue {
  background: var(--color-blue);
}
.homeSchedule-nav__item.is-active {
  height: 100%;
}
@media screen and (max-width: 768px) {
  .homeSchedule-nav {
    --itemHeight: 70px;
    width: calc(100% - 20px);
    margin-inline: auto;
    gap: 5px;
  }
  .homeSchedule-nav__item {
    font-size: 16px;
  }
}

.homeSchedule-contentWrap {
  padding: 85px 80px 60px;
  border: 2px solid #000;
  border-radius: 30px;
  background: #fff;
  -webkit-box-shadow: 10px 10px 0 var(--color-red);
          box-shadow: 10px 10px 0 var(--color-red);
}
.homeSchedule-content__secTit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 18px;
  border-radius: 8px 8px 8px 0;
  border: 2px solid #000;
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  text-align: center;
  position: absolute;
  top: calc((10px + 0.75em) * -1);
  right: 0;
  left: 0;
  margin: auto;
  z-index: 2;
}
.homeSchedule-content__secTit.is-green {
  background: var(--color-green);
}
.homeSchedule-content__secTit.is-blue {
  background: var(--color-blue);
}
.homeSchedule-content__secTit.is-yellow {
  background: #EBD100;
  color: var(--color-txt);
}
.homeSchedule-content-top {
  padding: 45px 35px 25px;
  border: 2px solid #000;
  border-radius: 24px;
  background: #E8FAEB;
  position: relative;
}
.homeSchedule-content-top.bg-blue {
  background: #DDF5FD;
}
.homeSchedule-content-top__txt {
  font-weight: 700;
}
.homeSchedule-content-flow {
  margin-top: 60px;
  padding: 68px 30px 53px;
  border: 2px solid #000;
  border-radius: 12px;
  background: #DDF5FD;
  position: relative;
}
.homeSchedule-content-flow.bg-green {
  background: #E8FAEB;
}
.homeSchedule-content-flow-list {
  width: min(100%, 660px);
  margin-inline: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  grid-gap: 30px;
}
.homeSchedule-content-flow-list__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 105px 20px 1fr;
  grid-template-columns: 105px 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  grid-gap: 20px;
}
.homeSchedule-content-flow-list__time {
  padding: 10px 2px;
  border-radius: 100px;
  border: 2px solid #000;
  background: #80B5F5;
  font-size: 20px;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1;
}
.homeSchedule-content-flow-list__time.is-green {
  background: #a6e8b2;
}
.homeSchedule-content-flow-list__tit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 5px;
  padding: 1px 7px;
  background: #fff;
  border: 2px solid #000;
  border-radius: 4px;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
}
.homeSchedule-content-about {
  margin-top: 60px;
  padding: 45px 40px 37px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: min(42.5%, 310px) 40px 1fr;
  grid-template-columns: min(42.5%, 310px) 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 40px;
  border: 2px solid #000;
  border-radius: 24px;
  background: #FFF8BD;
  position: relative;
}
.homeSchedule-content-about__txt {
  line-height: 1.65;
}
.homeSchedule-content-about__img {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  width: 100%;
  border-radius: 24px;
  border: 2px solid #000;
}
@media screen and (max-width: 768px) {
  .homeSchedule-contentWrap {
    padding: 50px 15px 20px;
    border-radius: 12px;
    -webkit-box-shadow: 5px 5px 0 var(--color-red);
            box-shadow: 5px 5px 0 var(--color-red);
  }
  .homeSchedule-content__secTit {
    padding-inline: 15px;
    font-size: 18px;
  }
  .homeSchedule-content-top {
    padding: 40px 15px 15px;
    border-radius: 12px;
  }
  .homeSchedule-content-flow {
    margin-top: 50px;
    padding: 50px 15px 15px;
  }
  .homeSchedule-content-flow-list {
    width: 100%;
    grid-gap: 20px;
  }
  .homeSchedule-content-flow-list__item {
    -ms-grid-columns: 80px 15px 1fr;
    grid-template-columns: 80px 1fr;
    grid-gap: 15px;
  }
  .homeSchedule-content-flow-list__time {
    padding: 6px 0;
    font-size: 15px;
  }
  .homeSchedule-content-flow-list__tit {
    margin-bottom: 3px;
    font-size: 16px;
  }
  .homeSchedule-content-about {
    margin-top: 50px;
    padding: 40px 15px 15px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 20px;
    border-radius: 12px;
  }
  .homeSchedule-content-about__img {
    border-radius: 12px;
  }
}

/*------------------------------------------
	.homeVoice
------------------------------------------*/
.homeVoice {
  padding-block: 0 120px;
  position: relative;
}
.homeVoice::after {
  content: "";
  display: block;
  width: min(100%, 50% + 500px);
  height: calc(100% - 350px);
  background: #FFF8BD;
  border-radius: 0 240px 240px 0;
  position: absolute;
  top: 40px;
  left: 0;
  z-index: -1;
  pointer-events: none;
}
.homeVoice__secTit {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .homeVoice {
    padding-block: 80px;
  }
  .homeVoice::after {
    width: calc(100% - 10px);
    height: calc(100% - 300px);
    border-radius: 0 80px 80px 0;
    top: 100px;
  }
  .homeVoice__secTit {
    margin-bottom: 40px;
  }
}

.homeVoice-sec {
  overflow-x: clip;
}
.homeVoice-sec + .homeVoice-sec {
  margin-top: 80px;
}
.homeVoice-sec__tit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin: 0 auto 20px 0;
  padding: 10px 30px;
  background: #F7E866;
  border-radius: 12px;
  font-weight: 700;
  font-size: 27px;
}
.homeVoice-sec__tit-q {
  color: var(--color-red);
  font-size: 54px;
  line-height: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.homeVoice-sec-list__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto 1fr;
  grid-template-rows: auto 1fr;
}
.homeVoice-sec-list__item > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.homeVoice-sec-list__item > *:nth-child(2) {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}
.homeVoice-sec-list__prof {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: calc(100% - 40px);
  margin: 0 auto 0 20px;
  padding: 8px 20px;
  border: 2px solid #000;
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
}
.homeVoice-sec-list__prof.is-green {
  background: var(--color-green);
}
.homeVoice-sec-list__prof.is-red {
  background: var(--color-red);
}
.homeVoice-sec-list__prof.is-blue {
  background: var(--color-blue);
}
.homeVoice-sec-list__txt {
  padding: 30px 40px;
  background: #fff;
  border: 2px solid #000;
  border-radius: 12px;
  font-size: 21px;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .homeVoice-sec + .homeVoice-sec {
    margin-top: 50px;
  }
  .homeVoice-sec__tit {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
    margin: 0 auto 20px;
    padding: 10px 15px;
    font-size: 18px;
    text-align: center;
  }
  .homeVoice-sec__tit-q {
    font-size: 28px;
  }
  .homeVoice-sec-list__prof {
    max-width: calc(100% - 20px);
    margin-left: 10px;
    padding: 5px 10px;
    font-size: 14px;
  }
  .homeVoice-sec-list__txt {
    padding: 15px 20px;
    font-size: 14px;
  }
}

.homeVoice-sec-slider-nav {
  width: min(100% - var(--inner-padding) * 2, 288px);
  margin: 30px auto 0 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 88px;
  grid-template-columns: 1fr 88px;
  grid-gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.homeVoice-sec-slider .my-carousel-progress {
  background: #ddd;
}
.homeVoice-sec-slider .my-carousel-progress-bar {
  background: var(--color-blue);
  height: 2px;
  -webkit-transition: width 1000ms ease;
  transition: width 1000ms ease;
  width: 0;
}
.homeVoice-sec-slider .splide__arrows {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 8px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 8px;
}
.homeVoice-sec-slider .splide__arrow {
  aspect-ratio: 1/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;
  padding: 0;
  background: var(--color-blue);
  border-radius: 50%;
  border: 2px solid var(--color-blue);
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.homeVoice-sec-slider .splide__arrow svg {
  display: none;
}
.homeVoice-sec-slider .splide__arrow::before {
  content: "";
  display: block;
  width: 14px;
  aspect-ratio: 14/10;
  background: #fff;
  -webkit-mask-image: url(../img/common/ico_arrow01.svg);
  mask-image: url(../img/common/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;
}
.homeVoice-sec-slider .splide__arrow.splide__arrow--prev {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.homeVoice-sec-slider .splide__arrow:hover {
  background: #fff;
}
.homeVoice-sec-slider .splide__arrow:hover::before {
  background: var(--color-blue);
}
@media screen and (min-width: 769px) {
  .homeVoice-sec-slider {
    width: max(990px, 100% + 50vw - 540px);
  }
}
@media screen and (max-width: 768px) {
  .homeVoice-sec-slider {
    margin-inline: calc(var(--inner-padding) * -1);
  }
  .homeVoice-sec-slider-nav {
    margin-inline: auto;
  }
}

/*------------------------------------------
	.homeData
------------------------------------------*/
.homeData {
  margin-bottom: 115px;
  padding-block: 95px 100px;
  position: relative;
}
.homeData::after {
  content: "";
  display: block;
  width: min(100%, 50% + 460px);
  height: 100%;
  border-radius: 240px 0 0 240px;
  background: #FCEDDA;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  pointer-events: none;
}
.homeData-inner {
  width: min(100%, 1120px);
}
.homeData__secTit {
  margin-bottom: 60px;
}
.homeData-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 46px 1fr 46px 1fr;
  grid-template-columns: repeat(3, 1fr);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  grid-gap: 21px 46px;
}
.homeData-list__item img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .homeData {
    margin-bottom: 0;
    padding-block: 80px;
  }
  .homeData::after {
    width: calc(100% - 10px);
    height: calc(100% - 40px);
    border-radius: 80px 0 0 80px;
  }
  .homeData__secTit {
    margin-bottom: 40px;
  }
  .homeData-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  .homeData-listWrap {
    overflow: auto;
    margin-inline: calc(var(--inner-padding) * 0.5) calc(var(--inner-padding) * -1);
    padding-right: var(--inner-padding);
  }
  .homeData-list__item {
    width: 250px;
  }
}

/*------------------------------------------
	.homeEnvironment
------------------------------------------*/
.homeEnvironment {
  padding-block: 0 135px;
}
.homeEnvironment__secTit {
  margin-bottom: 60px;
}
.homeEnvironment-sec {
  overflow: clip;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: min(40.5%, 434px) 1fr;
  grid-template-columns: min(40.5%, 434px) 1fr;
  border-radius: 12px;
  border: 2px solid #000;
  background: #fff;
}
.homeEnvironment-sec + .homeEnvironment-sec {
  margin-top: 30px;
}
.homeEnvironment-sec-txtBox {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  padding: 45px 64px;
}
.homeEnvironment-sec__tit {
  margin-bottom: 26px;
  padding-bottom: 24px;
  border-bottom: 1px solid #000;
  color: var(--color-red);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 0.12em;
}
.homeEnvironment-sec__txt {
  font-weight: 700;
  letter-spacing: 0;
  font-size: 19px;
}
.homeEnvironment-sec__img {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-right: 2px solid #000;
}
@media screen and (max-width: 768px) {
  .homeEnvironment {
    padding-block: 80px 30px;
  }
  .homeEnvironment__secTit {
    margin-bottom: 40px;
  }
  .homeEnvironment__secTit .c-tit01__en {
    font-size: min(10.5vw, 40px);
  }
  .homeEnvironment-sec {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .homeEnvironment-sec-txtBox {
    padding: 20px;
  }
  .homeEnvironment-sec__tit {
    margin-bottom: 15px;
    padding-bottom: 15px;
    font-size: 20px;
  }
  .homeEnvironment-sec__img {
    height: auto;
    -o-object-fit: fill;
       object-fit: fill;
    border-right: none;
    border-bottom: 2px solid #000;
  }
}

/*------------------------------------------
	.homeSearch
------------------------------------------*/
.homeSearch {
  padding-block: 0 40px;
}
.homeSearch__secTit {
  margin-bottom: 55px;
}
.homeSearch-sec {
  border-radius: 32px;
  position: relative;
}
.homeSearch-sec__tit {
  position: absolute;
  right: 0;
  left: 0;
  top: calc((11px + 0.75em) * -1);
  margin: auto;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .homeSearch {
    padding-block: 80px;
  }
  .homeSearch__secTit {
    margin-bottom: 80px;
  }
  .homeSearch-sec {
    border-radius: 12px;
  }
}

/*	.homeSearch-job
------------------------------------------*/
.homeSearch-job {
  padding: 46px 60px;
  background: #FEF5CC;
}
.homeSearch-job-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  grid-gap: 20px;
}
.homeSearch-job-list__item {
  overflow: clip;
  border-radius: 16px;
  border: 2px solid #000;
}
.homeSearch-job-list__item a {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 38% 1fr;
  grid-template-columns: 38% 1fr;
  background: #fff;
  position: relative;
}
.homeSearch-job-list__item a::after {
  content: "";
  display: block;
  width: 18px;
  aspect-ratio: 14/10;
  background: var(--color-red);
  -webkit-mask-image: url(../img/common/ico_arrow01.svg);
  mask-image: url(../img/common/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;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: absolute;
  right: 15px;
  bottom: 12px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.homeSearch-job-list__tit {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  padding: 15px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  text-align: center;
}
.homeSearch-job-list-imgBox {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  border-right: 2px solid #000;
}
.homeSearch-job-list-imgBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 769px) {
  .homeSearch-job-list__item a:hover {
    opacity: 1;
    color: var(--color-blue);
  }
  .homeSearch-job-list__item a:hover::after {
    background: var(--color-blue);
    -webkit-transform: scale(1.2) rotate(-45deg);
            transform: scale(1.2) rotate(-45deg);
  }
  .homeSearch-job-list__item a:hover .homeSearch-job-list-imgBox img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-filter: brightness(0.8);
            filter: brightness(0.8);
  }
  .homeSearch-job-list-imgBox {
    overflow: hidden;
  }
  .homeSearch-job-list-imgBox img {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
}
@media screen and (max-width: 768px) {
  .homeSearch-job {
    padding: 50px 20px 20px;
  }
  .homeSearch-job-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .homeSearch-job-list__item {
    border-radius: 12px;
  }
  .homeSearch-job-list__item a {
    -ms-grid-columns: 35% 1fr;
    grid-template-columns: 35% 1fr;
  }
  .homeSearch-job-list__item a::after {
    width: 15px;
    right: 8px;
    bottom: 8px;
  }
  .homeSearch-job-list__tit {
    padding: 5px;
    font-size: 18px;
  }
}

/*	.homeSearch-area
------------------------------------------*/
.homeSearch-area {
  margin-top: 65px;
  padding: 46px 60px;
  background: #DDF5FD;
}
.homeSearch-area-mapBox img {
  display: block;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .homeSearch-area {
    padding: 50px 20px 20px;
  }
}

/*	outline
============================================================================================================*/
/*------------------------------------------
	.outlineMv
------------------------------------------*/
.outlineMv {
  margin-bottom: 95px;
  padding-block: 140px 90px;
  background: var(--color-blue);
  position: relative;
}
.outlineMv img {
  width: 100%;
}
.outlineMv__txt {
  width: 18.7%;
  position: absolute;
  z-index: 3;
  top: 43%;
  left: 8.3%;
}
.outlineMv-imgBox {
  width: 83.4%;
  margin-inline: auto 0;
}
.outlineMv-imgBox img {
  border: 2px solid #000;
  border-radius: 24px;
}
@media screen and (max-width: 768px) {
  .outlineMv {
    margin-bottom: 0;
    padding-block: 110px 130px;
  }
  .outlineMv__txt {
    width: 44.5%;
    top: 46%;
    left: 5%;
  }
  .outlineMv-imgBox {
    margin-inline: auto;
    width: 90%;
  }
}

/*------------------------------------------
	.outlineInfo
------------------------------------------*/
.outlineInfo {
  padding-block: 0 135px;
}
.outlineInfo__secTit {
  margin-bottom: 45px;
}
.outlineInfo-sec__secTit {
  font-weight: 700;
  font-size: 28px;
  text-align: center;
  line-height: 2.7;
}
.outlineInfo-sec__secTit .bg {
  padding: 8px 20px;
  background: #fff;
  border: 2px solid #000;
  border-radius: 12px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.outlineInfo-sec-data {
  width: min(100%, 664px);
  margin-inline: auto;
}
.outlineInfo-sec-data th, .outlineInfo-sec-data td {
  padding-block: 19px;
  font-size: 19px;
  line-height: 1.625;
  letter-spacing: 0.05em;
  vertical-align: top;
}
.outlineInfo-sec-data th {
  width: 120px;
  border-bottom: 1px solid var(--color-blue);
  color: var(--color-blue);
  font-weight: 700;
}
.outlineInfo-sec-data td {
  padding-inline: 15px;
  border-bottom: 1px solid #C9BDAD;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .outlineInfo {
    padding-block: 80px 30px;
  }
  .outlineInfo__secTit {
    margin-bottom: 40px;
  }
  .outlineInfo-sec__secTit {
    font-size: 18px;
    line-height: 2.5;
  }
  .outlineInfo-sec__secTit .bg {
    padding: 5px 10px;
    border-radius: 8px;
  }
  .outlineInfo-sec-data {
    width: 100%;
  }
  .outlineInfo-sec-data th, .outlineInfo-sec-data td {
    display: block;
    width: 100%;
    padding-block: 12px;
  }
  .outlineInfo-sec-data th {
    font-size: 16px;
  }
  .outlineInfo-sec-data td {
    padding-inline: 10px;
    font-size: 14px;
  }
}

/*	.outlineInfo-top
------------------------------------------*/
.outlineInfo-top__secTit {
  margin-bottom: 20px;
}
.outlineInfo-top-content {
  width: min(100%, 820px);
  margin-inline: auto;
  padding: 20px 40px 40px;
  background: #fff;
  border: 2px solid #000;
  border-radius: 30px;
  -webkit-box-shadow: 10px 10px 0 #FFF8BD;
          box-shadow: 10px 10px 0 #FFF8BD;
}
@media screen and (max-width: 768px) {
  .outlineInfo-top-content {
    padding: 10px 20px 20px;
    border-radius: 12px;
    -webkit-box-shadow: 5px 5px 0 #FFF8BD;
            box-shadow: 5px 5px 0 #FFF8BD;
  }
}

/*	.outlineInfo-job
------------------------------------------*/
.outlineInfo-job {
  margin-top: 55px;
}
.outlineInfo-job__secTit {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .outlineInfo-job {
    margin-top: 60px;
    margin-inline: calc(var(--inner-padding) * -0.5);
  }
}

.outlineInfo-job-set {
  width: min(100%, 980px);
  margin-inline: auto;
}

.outlineInfo-job-nav {
  --itemHeight: 80px;
  width: calc(100% - 64px);
  height: var(--itemHeight);
  margin: 0 auto -2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 8px;
}
.outlineInfo-job-nav__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 300px;
  height: calc(var(--itemHeight) - 10px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px;
  border-radius: 16px 16px 16px 0;
  border: 2px solid #000;
  color: #fff;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.4;
  text-align: center;
}
.outlineInfo-job-nav__item.is-green {
  background: var(--color-green);
}
.outlineInfo-job-nav__item.is-blue {
  background: var(--color-blue);
}
.outlineInfo-job-nav__item.is-red {
  background: var(--color-red);
}
.outlineInfo-job-nav__item.is-active {
  height: 100%;
}
@media screen and (max-width: 768px) {
  .outlineInfo-job-nav {
    --itemHeight: 60px;
    width: calc(100% - 30px);
    gap: 5px;
  }
  .outlineInfo-job-nav__item {
    border-radius: 8px 8px 8px 0;
    font-size: 16px;
  }
}

.outlineInfo-job-content {
  padding: 65px 40px 40px;
  border-radius: 30px;
  border: 2px solid #000;
  background: #fff;
  -webkit-box-shadow: 10px 10px 0 var(--itemColor);
          box-shadow: 10px 10px 0 var(--itemColor);
  position: relative;
  z-index: 2;
}
.outlineInfo-job-content.is-green {
  --itemColor: var(--color-green);
}
.outlineInfo-job-content.is-blue {
  --itemColor: var(--color-blue);
}
.outlineInfo-job-content.is-red {
  --itemColor: var(--color-red);
}
.outlineInfo-job-content-in {
  width: min(100%, 820px);
  margin-inline: auto;
  padding: 30px 40px 40px;
  border: 2px solid #000;
  border-radius: 12px;
  background: #FFFEF0;
  position: relative;
}
.outlineInfo-job-content__secTit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 18px;
  background: var(--itemColor);
  border-radius: 8px 8px 8px 0;
  border: 2px solid #000;
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  text-align: center;
  position: absolute;
  top: calc((10px + 0.75em) * -1);
  right: 0;
  left: 0;
  margin: auto;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .outlineInfo-job-content {
    padding: 50px 15px 20px;
    border-radius: 12px;
    -webkit-box-shadow: 5px 5px 0 var(--itemColor);
            box-shadow: 5px 5px 0 var(--itemColor);
  }
  .outlineInfo-job-content-in {
    padding: 30px 20px 20px;
  }
  .outlineInfo-job-content__secTit {
    padding-inline: 15px;
    font-size: 18px;
  }
}

/*------------------------------------------
	.outlinePerson
------------------------------------------*/
.outlinePerson {
  padding-block: 0 85px;
}
.outlinePerson__secTit {
  margin-bottom: 75px;
}
@media screen and (max-width: 768px) {
  .outlinePerson {
    padding-block: 80px 30px;
  }
  .outlinePerson__secTit {
    margin-bottom: 40px;
  }
}

/*	.outlinePerson-top
------------------------------------------*/
.outlinePerson-top {
  width: min(100%, 1040px);
  margin-inline: auto;
}
.outlinePerson-top::before {
  content: "";
  display: block;
  margin: 0 auto -1px;
  width: min(96.5%, 1000px);
  aspect-ratio: 1000/210;
  background: url(../img/outline/bg_person01.svg) no-repeat center bottom/contain;
}
.outlinePerson-top-in {
  padding: 48px 40px 40px;
  border: 2px solid #000;
  background: #FFF8BD;
  border-radius: 24px;
}
.outlinePerson-top__secTit {
  margin-bottom: 25px;
  font-weight: 700;
  font-size: 28px;
  text-align: center;
  letter-spacing: 0;
  line-height: 2;
}
.outlinePerson-top__secTit .bg {
  padding: 7px 10px;
  border: 2px solid #000;
  background: #fff;
  border-radius: 12px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.outlinePerson-top__txt {
  font-weight: 700;
  text-align: center;
  line-height: 2.2;
}
@media screen and (max-width: 768px) {
  .outlinePerson-top-in {
    padding: 20px;
    border-radius: 12px;
  }
  .outlinePerson-top__secTit {
    margin: 0 -10px 15px;
    font-size: min(4.6vw, 18px);
    line-height: 2.5;
  }
  .outlinePerson-top__secTit .bg {
    padding: 5px 10px;
    border-radius: 8px;
  }
  .outlinePerson-top__txt {
    line-height: 2;
    text-align: left;
  }
}

/*	.outlinePerson-list
------------------------------------------*/
.outlinePerson-list {
  width: min(100%, 1040px);
  margin: 60px auto 0;
}
.outlinePerson-list__item:nth-of-type(2) .outlinePerson-list__tit {
  background: var(--color-green);
}
.outlinePerson-list__item:nth-of-type(3) .outlinePerson-list__tit {
  background: #EBD100;
  color: var(--color-txt);
}
.outlinePerson-list__item:nth-of-type(4) .outlinePerson-list__tit {
  background: var(--color-blue);
}
.outlinePerson-list__item:nth-of-type(5) .outlinePerson-list__tit {
  background: #F4DDA5;
  color: var(--color-txt);
}
.outlinePerson-list__tit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 170px;
  padding: 14px 10px;
  border: 2px solid #000;
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  background: var(--color-red);
  color: #fff;
  font-weight: 700;
  font-size: 32px;
  text-align: center;
}
.outlinePerson-list__txt {
  min-height: calc(38px + 3.6em);
  padding: 17px 30px;
  border: 2px solid #000;
  border-radius: 0 12px 12px 12px;
  background: #fff;
  font-size: 22px;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .outlinePerson-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 35px 60px;
  }
  .outlinePerson-list__item {
    width: calc(50% - 30px);
  }
  .outlinePerson-list__item:nth-of-type(even) {
    margin-block: 110px -110px;
  }
}
@media screen and (max-width: 768px) {
  .outlinePerson-list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
  .outlinePerson-list__tit {
    min-width: 120px;
    padding-block: 12px;
    font-size: 18px;
  }
  .outlinePerson-list__txt {
    min-height: auto;
    padding: 15px 20px;
    font-size: 15px;
  }
}

/*------------------------------------------
	.outlineSearch
------------------------------------------*/
.outlineSearch {
  padding-block: 40px;
}
.outlineSearch-inner {
  width: min(100% - var(--inner-padding) * 2, 1080px);
  margin-inline: auto;
  padding: 46px 60px;
  background: #FEF5CC;
  border-radius: 32px;
  position: relative;
}
.outlineSearch__secTit {
  position: absolute;
  right: 0;
  left: 0;
  top: calc((11px + 0.75em) * -1);
  margin: auto;
  z-index: 2;
}
.outlineSearch-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 17px 1fr 17px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 17px;
}
.outlineSearch-list__item {
  overflow: clip;
  border-radius: 16px;
  border: 2px solid #000;
}
.outlineSearch-list__item a {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 41.5% 1fr;
  grid-template-columns: 41.5% 1fr;
  background: #fff;
  position: relative;
}
.outlineSearch-list__item a::after {
  content: "";
  display: block;
  width: 18px;
  aspect-ratio: 14/10;
  background: var(--color-red);
  -webkit-mask-image: url(../img/common/ico_arrow01.svg);
  mask-image: url(../img/common/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;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: absolute;
  right: 10px;
  bottom: 12px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.outlineSearch-list__tit {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  padding: 15px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  text-align: center;
}
.outlineSearch-list-imgBox {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  border-right: 2px solid #000;
}
.outlineSearch-list-imgBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 769px) {
  .outlineSearch-list__item a:hover {
    opacity: 1;
    color: var(--color-blue);
  }
  .outlineSearch-list__item a:hover::after {
    background: var(--color-blue);
    -webkit-transform: scale(1.2) rotate(-45deg);
            transform: scale(1.2) rotate(-45deg);
  }
  .outlineSearch-list__item a:hover .outlineSearch-list-imgBox img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-filter: brightness(0.8);
            filter: brightness(0.8);
  }
  .outlineSearch-list-imgBox {
    overflow: hidden;
  }
  .outlineSearch-list-imgBox img {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
}
@media screen and (max-width: 768px) {
  .outlineSearch {
    padding-block: 100px 80px;
  }
  .outlineSearch-inner {
    padding: 50px 20px 20px;
    border-radius: 12px;
  }
  .outlineSearch-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
  .outlineSearch-list__item {
    border-radius: 12px;
  }
  .outlineSearch-list__item a {
    -ms-grid-columns: 35% 1fr;
    grid-template-columns: 35% 1fr;
  }
  .outlineSearch-list__item a::after {
    width: 15px;
    right: 8px;
    bottom: 8px;
  }
  .outlineSearch-list__tit {
    padding: 5px;
    font-size: 18px;
  }
}
/*# sourceMappingURL=style.css.map */