@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: 110px;
  --inner-width: min(100%, 1080px + (var(--inner-padding) * 2));
  --inner-padding: 10px;
  --color-txt: #333;
  --color-orange: #FE9336;
  --color-yellow: #FFD000;
  --cv-height: 60px;
}
@media screen and (max-width: 768px) {
  :root {
    --header-height: 70px;
    --inner-padding: 20px;
  }
}

/*------------------------------------------
	font
------------------------------------------*/
body {
  color: var(--color-txt);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  font-weight: 700;
  font-family: "Zen Maru Gothic", "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-nunito {
  font-weight: 700;
  font-family: "Nunito", sans-serif;
}

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

body {
  background: #FDFAF1;
}
@media screen and (min-width: 769px) {
  body {
    min-width: 1000px;
  }
}

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

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

/*============================================================================================================
	l-header
============================================================================================================*/
.l-header {
  width: 100%;
  height: var(--header-height);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #FDFAF1;
}
.l-header__logo a, .l-header__logo img {
  display: block;
}
.l-header__logo img {
  width: 100%;
  mix-blend-mode: multiply;
}
.l-header__logo-txt {
  display: block;
  margin-top: 8px;
  padding: 5px;
  border: 1px solid;
  color: var(--color-orange);
  font-size: 19px;
  line-height: 1.3;
  text-align: center;
}
.l-header-cv {
  width: 462px;
  height: var(--cv-height);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  margin-inline: auto 0;
}
.l-header-cv__btn {
  --btnColor: #26B185;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100%;
  border-radius: 0 0 8px 8px;
  color: #fff;
  font-size: 15px;
  text-align: center;
  line-height: 1.4;
}
.l-header-cv__btn a {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: inherit;
  background: var(--btnColor);
}
.l-header-cv__btn.is-dark a {
  --btnColor: #359677;
}
@media screen and (min-width: 769px) {
  .l-header {
    position: sticky;
    z-index: 9990;
    top: 0;
    left: 0;
    padding: 0 60px 10px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 322px 10px 1fr;
    grid-template-columns: 322px 1fr;
    -ms-grid-rows: var(--cv-height) 0 1fr;
    grid-template-rows: var(--cv-height) 1fr;
    grid-gap: 0 10px;
  }
  .l-header > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-header > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .l-header > *:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-header > *:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .l-header {
    -ms-grid-columns: min(27%, 322px) 1fr;
    grid-template-columns: min(27%, 322px) 1fr;
    padding-inline: 20px;
  }
  .l-header__logo-txt {
    font-size: 15px;
  }
  .l-header .l-nav-list {
    gap: 5px 20px;
  }
}
@media screen and (min-width: 769px) {
  .l-header__logo {
    -ms-grid-row-span: 2;
    grid-row: span 2;
    -ms-grid-row-align: end;
        align-self: end;
  }
  .l-header-cv__btn a {
    border: 2px solid var(--btnColor);
    border-top: none;
  }
  .l-header-cv__btn a:hover {
    opacity: 1;
    background: #fff;
    color: var(--btnColor);
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    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;
    padding: 0 70px 0 10px;
  }
  .l-header__logo {
    width: 210px;
  }
  .l-header__logo-txt {
    margin-top: 5px;
    padding: 3px 5px;
    font-size: 12px;
  }
  .l-header-cv {
    width: calc(100% - 10px);
    gap: 4px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: 9992;
  }
  .l-header-cv__btn {
    border-radius: 8px 8px 0 0;
    font-size: min(4.5vw, 15px);
  }
}

/*============================================================================================================
	footer
============================================================================================================*/
.l-footer {
  padding: 0;
  background: #DB9558;
  position: relative;
}
.l-footer p, .l-footer li {
  line-height: 1.8;
  letter-spacing: 0.08em;
  font-family: "Zen Maru Gothic", "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 30px;
}
.l-footer-nav__item {
  list-style: none;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  text-align: center;
}
.l-footer-nav__item a {
  display: block;
  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 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: #333;
  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;
    -ms-flex-item-align: end;
        -ms-grid-row-align: end;
        align-self: end;
    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: 5px 30px;
  }
  .l-nav-list__item {
    text-align: center;
    line-height: 1.5;
  }
  .l-nav-list__item a:hover {
    opacity: 1;
    color: var(--color-orange);
  }
}
/* SP */
@media screen and (max-width: 768px) {
  .gnavBtn {
    overflow: hidden;
    cursor: pointer;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    z-index: 9992;
    position: fixed;
    top: 5px;
    right: 5px;
    background: #359677;
  }
  .gnavBtn span {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 28px;
    height: 2px;
    border-radius: 10px;
    background: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .gnavBtn span:nth-of-type(1) {
    top: 20px;
  }
  .gnavBtn span:nth-of-type(2) {
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .gnavBtn span:nth-of-type(3) {
    bottom: 20px;
  }
  .gnavBtn.is-close span:nth-of-type(1) {
    -webkit-transform: translateY(9px) rotate(-225deg);
            transform: translateY(9px) rotate(-225deg);
  }
  .gnavBtn.is-close span:nth-of-type(2) {
    left: 50%;
    opacity: 0;
  }
  .gnavBtn.is-close span:nth-of-type(3) {
    -webkit-transform: translateY(-9px) rotate(225deg);
            transform: translateY(-9px) rotate(225deg);
  }
  .l-nav {
    display: none;
    padding: 80px 20px calc(var(--cv-height) + 50px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9991;
    background: rgba(255, 255, 255, 0.95);
    overflow: auto;
  }
  .l-nav::-webkit-scrollbar {
    display: none;
  }
  .l-nav-list__item {
    border-bottom: 1px solid #999;
    font-size: 16px;
    line-height: 1.5;
  }
  .l-nav-list__item a {
    padding: 15px 30px 15px 20px;
    position: relative;
  }
  .l-nav-list__item a::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    color: var(--color-orange);
    border-right: 2px solid;
    border-bottom: 2px solid;
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    margin: auto;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}
/*============================================================================================================
	.l-mv
============================================================================================================*/
.l-mv {
  margin: 14px 60px 65px;
  position: relative;
}
.l-mv img {
  width: 100%;
}
.l-mv-txtBox {
  width: calc(100% - 140px);
  position: absolute;
  top: 18.5%;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
}
.l-mv__txt01 {
  width: 46.8%;
}
.l-mv__txt02 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 1.8% auto 0 0;
  padding: max(8px, 0.8vw) max(7px, 0.7vw);
  background: var(--color-orange);
  border-radius: max(8px, 0.8vw);
  color: #fff;
  font-size: max(14px, 1.37vw);
  line-height: 1.3;
  text-align: center;
}
.l-mv-imgBox img {
  border-radius: 40px;
}
@media screen and (max-width: 768px) {
  .l-mv {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 20px 10px 0;
  }
  .l-mv-txtBox {
    width: calc(100% - 20px);
    margin: -9% auto 0;
    position: static;
  }
  .l-mv__txt01 {
    width: 96%;
  }
  .l-mv__txt02 {
    margin-top: 4%;
    padding: 1.6vw 2vw;
    border-radius: 1.3vw;
    font-size: 3.45vw;
  }
  .l-mv-imgBox {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .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: 9px;
  padding-bottom: 30px;
  color: var(--color-orange);
  font-weight: 900;
  font-size: 42px;
  text-align: center;
  position: relative;
}
.c-tit01::after {
  content: "";
  display: block;
  width: 89px;
  aspect-ratio: 89/11;
  -webkit-mask-image: url(../img/ico_line01.svg);
  mask-image: url(../img/ico_line01.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  background: currentColor;
}
.c-tit01__en {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  color: var(--color-yellow);
  font-weight: 700;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .c-tit01 {
    gap: 5px;
    padding-bottom: 20px;
    font-size: 28px;
  }
  .c-tit01::after {
    width: 70px;
  }
  .c-tit01__en {
    font-size: 20px;
  }
}

.c-set01 {
  width: min(100%, 1040px);
  margin-inline: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 28.85% 60px 1fr;
  grid-template-columns: 28.85% 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 60px;
}
.c-set01__img {
  width: 100%;
}
.c-set01__txt {
  padding: 40px;
  background: #F1914A;
  border-radius: 16px;
  color: #fff;
  font-size: 22px;
  position: relative;
}
.c-set01__txt::after {
  content: "";
  display: block;
  width: 28px;
  aspect-ratio: 28/21;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  position: absolute;
  top: 46%;
  right: calc(100% - 1px);
  background: inherit;
}
@media screen and (max-width: 768px) {
  .c-set01 {
    width: 100%;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
  .c-set01__img {
    width: min(70%, 230px);
    display: block;
    margin-inline: auto;
  }
  .c-set01__txt {
    padding: 20px;
    font-size: 16px;
  }
  .c-set01__txt::after {
    width: 18px;
    aspect-ratio: 21/28;
    top: auto;
    right: 50%;
    bottom: calc(100% - 1px);
  }
}

/*------------------------------------------
	.secMessage
------------------------------------------*/
.secMessage__secTit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 38px;
  padding: 0 28px 4px;
  border-bottom: 10px solid var(--color-yellow);
  color: var(--color-orange);
  font-weight: 900;
  font-size: 42px;
  line-height: 1.2;
  text-align: center;
  position: relative;
}
.secMessage__secTit::before, .secMessage__secTit::after {
  content: "";
  display: block;
  width: 26px;
  aspect-ratio: 26/25;
  background: url(../img/ico_chon01.svg) no-repeat center/contain;
  position: absolute;
  bottom: 20px;
}
.secMessage__secTit::before {
  left: -12px;
}
.secMessage__secTit::after {
  right: -12px;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.secMessage__secTit .small {
  display: block;
  margin-bottom: 6px;
  font-size: 22px;
}
.secMessage-imgBox img {
  display: block;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .secMessage {
    padding-block: 60px 0;
  }
  .secMessage-inner {
    padding-inline: 8px;
  }
  .secMessage__secTit {
    margin-bottom: 25px;
    padding-inline: 3.5vw;
    border-width: 0.25em;
    font-size: 6.7vw;
  }
  .secMessage__secTit::before, .secMessage__secTit::after {
    width: 5%;
    bottom: 26%;
  }
  .secMessage__secTit::before {
    left: -3%;
  }
  .secMessage__secTit::after {
    right: -3%;
  }
  .secMessage__secTit .small {
    font-size: 0.52em;
  }
}

/*------------------------------------------
	.secJob
------------------------------------------*/
.secJob {
  overflow-x: clip;
  padding-block: 80px;
  background: #F1914A url(../img/ico_chara01.webp) no-repeat right calc(50% - 322px) top 111px/118px;
  border-radius: 200px 200px 0 0;
  position: relative;
}
.secJob::after {
  content: "";
  display: block;
  width: 168px;
  aspect-ratio: 168/278;
  background: url(../img/bg_job01.svg) no-repeat center/contain;
  position: absolute;
  right: calc(50% - 527px);
  bottom: 0;
  pointer-events: none;
}
.secJob__secTit {
  margin-bottom: 40px;
  color: #fff;
}
.secJob__secTit .c-tit01__en {
  color: #FFFB00;
}
.secJob__line {
  display: inline-block;
  color: #FFFB00;
  position: relative;
}
.secJob__line::after {
  content: "";
  display: block;
  width: calc(100% + 10px);
  height: 10px;
  background: url(../img/ico_line02.svg) repeat-x left center/contain;
  position: absolute;
  bottom: -4px;
  left: -5px;
}
@media screen and (max-width: 768px) {
  .secJob {
    padding-block: 60px;
    background-position: right calc(50% - 90px) top 20px;
    background-size: 60px;
    border-radius: 80px 80px 0 0;
  }
  .secJob::after {
    width: min(17%, 80px);
    right: 5px;
  }
  .secJob__secTit {
    margin-inline: calc(var(--inner-padding) * -0.5);
    font-size: min(7.5vw, 28px);
  }
  .secJob__line::after {
    height: 7px;
    bottom: -3px;
  }
}

/*	.secJob-list
------------------------------------------*/
.secJob-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  margin-bottom: 40px;
}
.secJob-list__item {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
}
.secJob-list__item.is-wide {
  -ms-grid-column-span: 4;
  grid-column: span 4;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: calc((100% - 60px) / 4) 1fr;
  grid-template-columns: calc((100% - 60px) / 4) 1fr;
  min-height: 60px;
}
.secJob-list__item.is-wide .secJob-list__tit {
  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;
}
.secJob-list__tit {
  padding: 9px 10px;
  background: var(--color-yellow);
  font-size: 22px;
  line-height: 1.4;
  text-align: center;
}
.secJob-list__img {
  width: 100%;
}
.secJob-list__txt {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .secJob-list {
    -ms-grid-columns: 1fr 15px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
  }
  .secJob-list__item.is-wide {
    -ms-grid-column-span: 2;
    grid-column: span 2;
    -ms-grid-columns: auto 1fr;
    grid-template-columns: auto 1fr;
    min-height: auto;
  }
  .secJob-list__tit {
    padding: 7px 10px;
    font-size: 17px;
  }
  .secJob-list__txt {
    padding: 15px;
    font-size: 15px;
    text-align: left;
  }
}

/*	.secJob__catch01
------------------------------------------*/
.secJob__catch01 {
  margin-bottom: 17px;
  color: #fff;
  font-size: 38px;
  text-align: center;
  line-height: 1.55;
}
.secJob__catch01 .small {
  display: block;
  font-size: 0.84em;
}
@media screen and (max-width: 768px) {
  .secJob__catch01 {
    margin-bottom: 30px;
    font-size: min(6.5vw, 24px);
  }
  .secJob__catch01 .small {
    margin-bottom: 5px;
  }
}

/*	.secJob-point
------------------------------------------*/
.secJob-point {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  grid-gap: 20px;
  margin-bottom: 20px;
  padding: 40px 60px;
  background: #fff;
  border-radius: 16px;
}
.secJob-point__item {
  padding-left: 1.9em;
  background: url(../img/ico_check01.svg) no-repeat left top 0.15em/1.18em;
  font-size: 22px;
  line-height: 1.5;
}
.secJob-point__item .color {
  color: var(--color-orange);
}
@media screen and (max-width: 768px) {
  .secJob-point {
    margin-bottom: 30px;
    padding: 25px 20px;
    grid-gap: 15px;
  }
  .secJob-point__item {
    font-size: 16px;
  }
}

/*	.secJob__catch02
------------------------------------------*/
.secJob__catch02 {
  color: #fff;
  font-size: 32px;
  text-align: center;
  line-height: 1.55;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .secJob__catch02 {
    font-size: min(6vw, 24px);
  }
  .secJob__catch02 .secJob__line {
    margin-bottom: 5px;
  }
}

/*------------------------------------------
	.secGallery
------------------------------------------*/
.secGallery {
  margin-bottom: 75px;
  padding-block: 10px;
}
.secGallery img {
  width: 100%;
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  .secGallery {
    margin-bottom: 0;
    padding-block: 5px;
  }
}

/*------------------------------------------
	.secUs
------------------------------------------*/
.secUs {
  padding-block: 0 80px;
}
.secUs__secTit {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .secUs {
    padding-block: 80px;
  }
  .secUs__secTit {
    margin-bottom: 40px;
  }
}

/*	.secUs-list
------------------------------------------*/
.secUs-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  margin-bottom: 20px;
}
.secUs-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: 0;
  padding: 20px 10px 24px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--color-orange);
}
.secUs-list__tit {
  margin-bottom: 18px;
  font-size: 24px;
  text-align: center;
}
.secUs-list__results {
  margin-bottom: 4px;
  font-size: 32px;
  text-align: center;
  line-height: 1.2;
}
.secUs-list__results .num {
  color: var(--color-orange);
  font-size: 3.75em;
  line-height: 1;
  vertical-align: -3px;
}
.secUs-list__results .big {
  font-size: 1.19em;
}
.secUs-list__results .small {
  font-size: 0.75em;
}
.secUs-list__txt {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  text-align: center;
  line-height: 1.4;
}
.secUs-list__txt .note {
  font-weight: 500;
}
.secUs-list__ico {
  display: block;
  margin: 0 auto 20px;
}
@media screen and (max-width: 768px) {
  .secUs-list {
    margin-inline: calc(var(--inner-padding) * -0.5);
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
  }
  .secUs-list__item {
    padding: 20px 5px;
  }
  .secUs-list__tit {
    margin-bottom: 15px;
    font-size: 20px;
  }
  .secUs-list__results {
    font-size: 18px;
  }
  .secUs-list__results .num {
    font-size: 3.5em;
  }
  .secUs-list__txt {
    font-size: min(3.3vw, 14px);
    line-height: 1.6;
  }
  .secUs-list__ico {
    margin-bottom: 15px;
    width: min(50%, 70px);
  }
}

/*	.secUs-retirement
------------------------------------------*/
.secUs-retirement {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 36% 30px 1fr;
  grid-template-columns: 36% 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 30px;
  margin-bottom: 30px;
  padding: 25px 80px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--color-orange);
}
.secUs-retirement__tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  font-size: 24px;
  line-height: 1.2;
}
.secUs-retirement__tit::after {
  content: "";
  display: block;
  width: 120px;
  aspect-ratio: 120/57;
  background: url(../img/ico_money01.svg) no-repeat center/contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.secUs-retirement-content {
  width: min(100%, 520px);
}
.secUs-retirement__txt01 {
  margin-bottom: 2px;
  color: var(--color-orange);
  font-size: 24px;
}
.secUs-retirement__txt01 .small {
  font-size: 16px;
}
.secUs-retirement__txt02 {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 20px;
}
.secUs-retirement-case {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 145px 30px 1fr;
  grid-template-columns: 145px 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  grid-gap: 30px;
}
.secUs-retirement-case + .secUs-retirement-case {
  margin-top: 25px;
}
.secUs-retirement-case__tit {
  padding: 3px;
  background: var(--color-orange);
  border-radius: 4px;
  color: #fff;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
}
.secUs-retirement-case-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  grid-gap: 17px;
}
.secUs-retirement-case-list__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr auto;
  grid-template-columns: 1fr auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
  line-height: 1.2;
}
.secUs-retirement-case-list__tit {
  font-weight: 500;
}
.secUs-retirement-case-list__txt {
  text-align: right;
}
.secUs-retirement-case-list__txt .num {
  color: var(--color-orange);
  font-size: 36px;
  line-height: 0.6;
}
@media screen and (max-width: 768px) {
  .secUs-retirement {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    padding: 40px 20px 30px;
    margin-inline: calc(var(--inner-padding) * -0.5);
  }
  .secUs-retirement__tit {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 30px;
    font-size: 20px;
  }
  .secUs-retirement__tit::after {
    width: 80px;
  }
  .secUs-retirement-content {
    width: 100%;
  }
  .secUs-retirement__txt01 {
    margin-bottom: 10px;
    font-size: 18px;
    text-align: center;
  }
  .secUs-retirement__txt01 .small {
    display: block;
    font-size: 14px;
  }
  .secUs-retirement__txt02 {
    margin-inline: -10px;
    font-size: 16px;
    text-align: center;
  }
  .secUs-retirement-case {
    width: min(100%, 300px);
    margin-inline: auto;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
  .secUs-retirement-case + .secUs-retirement-case {
    margin-top: 30px;
  }
  .secUs-retirement-case__tit {
    padding: 5px;
    font-size: 16px;
  }
  .secUs-retirement-case-list {
    grid-gap: 20px;
  }
  .secUs-retirement-case-list__item {
    font-size: 16px;
  }
  .secUs-retirement-case-list__txt .num {
    font-size: 28px;
  }
}

/*------------------------------------------
	.secStore
------------------------------------------*/
.secStore {
  margin-bottom: 80px;
  padding-block: 80px 60px;
  background: #FCF1D0;
}
.secStore__secTit {
  margin-bottom: 40px;
}
.secStore-box {
  width: min(100%, 960px);
  margin-inline: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 51% 30px 1fr;
  grid-template-columns: 51% 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 30px;
}
.secStore__map {
  width: 100%;
}
.secStore-list {
  width: min(100%, 370px);
  margin-inline: auto 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  grid-gap: 16px;
}
.secStore-list__item {
  border-radius: 8px;
  color: #fff;
  font-size: 22px;
  letter-spacing: 0.06em;
  line-height: 1.4;
}
.secStore-list__item a {
  min-height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 40px 10px 30px;
  border-radius: inherit;
  background: var(--color-orange);
  position: relative;
}
.secStore-list__item a::after {
  content: "";
  display: block;
  width: 9px;
  aspect-ratio: 9/16;
  -webkit-mask-image: url(../img/ico_arrow01.svg);
  mask-image: url(../img/ico_arrow01.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background: currentColor;
  position: absolute;
  top: 0;
  right: 27px;
  bottom: 0;
  margin: auto;
}
@media screen and (min-width: 769px) {
  .secStore-list__item a {
    border: 2px solid var(--color-orange);
  }
  .secStore-list__item a:hover {
    opacity: 1;
    background: #fff;
    color: var(--color-orange);
  }
}
@media screen and (max-width: 768px) {
  .secStore {
    margin-bottom: 0;
    padding-block: 80px;
  }
  .secStore-box {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .secStore__map {
    display: block;
    width: min(80%, 260px);
    margin-inline: auto;
  }
  .secStore-list {
    width: 100%;
    -ms-grid-columns: 1fr 15px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
  }
  .secStore-list__item {
    font-size: 15px;
  }
  .secStore-list__item a {
    min-height: 60px;
    padding-inline: 15px 17px;
  }
  .secStore-list__item a::after {
    width: 7px;
    right: 10px;
  }
}
@media screen and (max-width: 374px) {
  .secStore-list__item {
    font-size: 14px;
    letter-spacing: 0;
  }
  .secStore-list__item a {
    padding-left: 12px;
  }
}

/*------------------------------------------
	.secCareer
------------------------------------------*/
.secCareer {
  padding-block: 0 104px;
}
.secCareer__secTit {
  margin-bottom: 58px;
}
.secCareer-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 45px 1fr 45px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 45px;
  margin-bottom: 30px;
}
.secCareer-list__item {
  padding: 47px 10px;
  background: #F6AB4D;
  border-radius: 14px;
  color: #fff;
  text-align: center;
  position: relative;
}
.secCareer-list__item::after {
  content: "";
  display: block;
  width: 40px;
  aspect-ratio: 81/113;
  background: no-repeat center/contain;
  position: absolute;
  top: -28px;
  right: 0;
  left: 0;
  margin: auto;
}
.secCareer-list__item:nth-of-type(1)::after {
  background-image: url(../img/ico_pin01.webp);
}
.secCareer-list__item:nth-of-type(2)::after {
  background-image: url(../img/ico_pin02.webp);
}
.secCareer-list__item:nth-of-type(3)::after {
  background-image: url(../img/ico_pin03.webp);
}
.secCareer-list__tit {
  margin-bottom: 25px;
  font-size: 28px;
}
.secCareer-list__txt {
  font-weight: 500;
  font-size: 19px;
  line-height: 1.55;
}
@media screen and (max-width: 768px) {
  .secCareer {
    padding-block: 80px;
  }
  .secCareer__secTit {
    margin: 0 calc(var(--inner-padding) * -0.5) 40px;
    font-size: min(6.8vw, 26px);
  }
  .secCareer-list {
    width: min(100%, 300px);
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 30px;
    margin: 0 auto 50px;
  }
  .secCareer-list__item {
    padding: 30px 20px;
  }
  .secCareer-list__item::after {
    width: 25px;
    top: -18px;
  }
  .secCareer-list__tit {
    margin-bottom: 15px;
    font-size: 22px;
  }
  .secCareer-list__txt {
    font-size: 16px;
  }
}

/*------------------------------------------
	.secEntry
------------------------------------------*/
.secEntry {
  width: min(100% - var(--inner-padding) * 2, 1080px);
  margin: 0 auto 120px;
  padding: 50px;
  background: #FDF300;
  border-radius: 16px;
  -webkit-box-shadow: 8px 8px 0 0 #D0BC1B;
          box-shadow: 8px 8px 0 0 #D0BC1B;
  position: relative;
}
.secEntry::after {
  content: "";
  display: block;
  width: 264px;
  aspect-ratio: 264/327;
  background: url(../img/img_entry01.svg) no-repeat center/contain;
  position: absolute;
  right: max(0px, 50% - 500px);
  bottom: 0;
  pointer-events: none;
}
.secEntry__secTit {
  margin-bottom: 24px;
  font-size: 42px;
  position: relative;
  z-index: 3;
}
.secEntry__btn {
  --btnColor: #26B185;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 100px;
  color: #fff;
  font-size: 20px;
  text-align: center;
  line-height: 1.4;
}
.secEntry__btnWrap {
  width: min(100%, 772px);
  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: 12px;
  position: relative;
  z-index: 2;
}
.secEntry__btn a {
  min-height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 35px;
  border-radius: inherit;
  background: var(--btnColor);
  position: relative;
}
.secEntry__btn a::after {
  content: "";
  display: block;
  width: 9px;
  aspect-ratio: 9/16;
  -webkit-mask-image: url(../img/ico_arrow01.svg);
  mask-image: url(../img/ico_arrow01.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background: currentColor;
  position: absolute;
  top: 0;
  right: 25px;
  bottom: 0;
  margin: auto;
}
.secEntry__btn.is-dark a {
  --btnColor: #359677;
}
@media screen and (min-width: 769px) {
  .secEntry__btn a {
    border: 3px solid var(--btnColor);
  }
  .secEntry__btn a:hover {
    opacity: 1;
    background: #fff;
    color: var(--btnColor);
  }
}
@media screen and (max-width: 768px) {
  .secEntry {
    margin-bottom: 80px;
    padding: 32px 20px;
    -webkit-box-shadow: 6px 6px 0 0 #D0BC1B;
            box-shadow: 6px 6px 0 0 #D0BC1B;
  }
  .secEntry::after {
    content: none;
  }
  .secEntry__secTit {
    margin-bottom: 20px;
    font-size: 26px;
  }
  .secEntry__btn {
    width: 100%;
    font-size: 16px;
  }
  .secEntry__btnWrap {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    position: relative;
  }
  .secEntry__btnWrap::after {
    content: "";
    display: block;
    width: min(37%, 110px);
    aspect-ratio: 264/327;
    background: url(../img/img_entry01.svg) no-repeat center/contain;
    position: absolute;
    bottom: calc(100% - 1px);
    right: 0;
    pointer-events: none;
    z-index: -1;
  }
  .secEntry__btn a {
    min-height: 70px;
    padding-inline: 30px;
  }
  .secEntry__btn a::after {
    width: 8px;
    right: 20px;
  }
}
@media screen and (max-width: 374px) {
  .secEntry__btn {
    font-size: 15px;
  }
  .secEntry__btn a {
    padding-inline: 20px;
  }
  .secEntry__btn a::after {
    right: 15px;
  }
}
/*# sourceMappingURL=style.css.map */