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

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

.f-figtree {
  font-family: "Figtree", sans-serif;
}

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

@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;
  top: 0;
  left: 0;
}
.l-header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  position: fixed;
  top: 50px;
  left: 50px;
}
.l-header__logo a,
.l-header__logo img {
  display: block;
}
.l-header__logo-txt {
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .l-header__logo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 5px;
    position: absolute;
    top: 30px;
    left: 30px;
  }
  .l-header__logo img {
    width: 195px;
  }
  .l-header__logo-txt {
    font-size: 12px;
  }
}

/*	.l-header__entry
------------------------------------------*/
.l-header__entry {
  width: 180px;
  height: var(--cv-height);
  border-radius: 0 0 0 8px;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  letter-spacing: 0.12em;
  position: fixed;
  top: 0;
  right: var(--header-height);
  z-index: 9992;
}
.l-header__entry 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(--color-yellow);
}
@media screen and (min-width: 769px) {
  .l-header__entry a {
    border: 3px solid var(--color-yellow);
    border-top: none;
    border-right: none;
  }
  .l-header__entry a:hover {
    opacity: 1;
    background: #fff;
  }
}
@media screen and (max-width: 768px) {
  .l-header__entry {
    width: calc(100% - 20px);
    border-radius: 8px 8px 0 0;
    font-size: 22px;
    top: auto;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
  }
}

/*============================================================================================================
	footer
============================================================================================================*/
.l-footer {
  padding: 0;
  background: #2a2a2a;
}
.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: 60px 10px;
}
.l-footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto 25px 0;
  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 {
  content: "";
  display: block;
  width: 1px;
  height: 70%;
  background: currentColor;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.l-footer-nav__item:nth-of-type(1) a {
  padding-left: 0;
}
.l-footer-nav__item a {
  display: block;
  padding-inline: 22px;
  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;
}
@media screen and (min-width: 769px) {
  .l-footer .hidden-pc {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .l-footer .hidden-sp {
    display: none;
  }
  .l-footer-inner {
    padding: 30px 20px 100px;
  }
  .l-footer-nav {
    display: block;
    margin: 0 auto 30px;
  }
  .l-footer-nav__item {
    border-bottom: 1px dashed;
    font-size: 12px;
    text-align: left;
  }
  .l-footer-nav__item + .l-footer-nav__item::after {
    content: none;
  }
  .l-footer-nav__item a {
    padding: 10px 0;
  }
  .l-footer-copyright {
    font-size: 10px;
  }
}

.pagetop {
  display: none;
  width: 70px;
  height: 70px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  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-orange);
  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
============================================================================================================*/
.gnavBtn {
  overflow: hidden;
  cursor: pointer;
  width: var(--header-height);
  aspect-ratio: 1/1;
  position: fixed;
  z-index: 9992;
  top: 0;
  right: 0;
  background: var(--color-orange);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.gnavBtn:hover {
  opacity: 0.7;
}
.gnavBtn span {
  --lineWidth: calc(100% - 44px);
  --linePos: calc(50% - 8px);
  display: block;
  position: absolute;
  left: 22px;
  width: var(--lineWidth);
  height: 1px;
  background: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.gnavBtn span:nth-of-type(1) {
  top: var(--linePos);
}
.gnavBtn span:nth-of-type(2) {
  top: 0;
  bottom: 0;
  margin: auto;
}
.gnavBtn span:nth-of-type(3) {
  width: calc(var(--lineWidth) - 10px);
  bottom: var(--linePos);
}
.gnavBtn.is-close span:nth-of-type(1) {
  -webkit-transform: translateY(8px) rotate(-200deg);
          transform: translateY(8px) rotate(-200deg);
}
.gnavBtn.is-close span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
}
.gnavBtn.is-close span:nth-of-type(3) {
  width: var(--lineWidth);
  -webkit-transform: translateY(-8px) rotate(200deg);
          transform: translateY(-8px) rotate(200deg);
}
@media screen and (max-width: 768px) {
  .gnavBtn {
    border-radius: 0 0 0 8px;
  }
}

.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: 130px 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: 30px;
  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;
  color: var(--color-orange);
  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;
  font-size: 28px;
  line-height: 1.2;
}
.l-nav-list__item-en::first-letter {
  color: var(--color-orange);
}
.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-orange);
  }
  .l-nav-list__item a:hover::after {
    top: 50%;
  }
}
@media screen and (max-width: 768px) {
  .l-nav {
    right: -280px;
    width: 280px;
  }
  .l-nav-inner {
    padding: 100px 20px calc(var(--cv-height) + 50px);
  }
  .l-nav-list__item {
    margin-bottom: 15px;
    font-size: 13px;
  }
  .l-nav-list__item a::after {
    width: 8px;
    height: 8px;
    top: calc(50% - 4px);
  }
  .l-nav-list__item-en {
    font-size: 22px;
  }
}

/*============================================================================================================
	.l-mv
============================================================================================================*/
.l-mv {
  margin-bottom: 160px;
  padding-top: 8px;
  position: relative;
}
.l-mv img {
  width: 100%;
}
.l-mv__txt {
  width: 16.3%;
  left: 6.1%;
  bottom: 9%;
  position: absolute;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .l-mv {
    margin-bottom: 20px;
  }
  .l-mv__txt {
    width: 42%;
    left: 10%;
    bottom: 6%;
  }
}

.js-mv-slider {
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  aspect-ratio: 1440/880;
}
@media screen and (max-width: 768px) {
  .js-mv-slider {
    aspect-ratio: 393/650;
  }
}
.js-mv-slider.is-initialized {
  opacity: 1;
}
.js-mv-slider .splide__track {
  height: 100%;
}
.js-mv-slider .splide__slide {
  overflow: clip;
  border-radius: 16px;
}
.js-mv-slider img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*============================================================================================================
	main
============================================================================================================*/
.c-tit01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 17px;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.04em;
}
.c-tit01__en {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  font-size: 86px;
  letter-spacing: 0;
  line-height: 1;
  font-family: "Figtree", sans-serif;
}
.c-tit01__en::first-letter {
  color: var(--color-orange);
}
@media screen and (max-width: 768px) {
  .c-tit01 {
    gap: 11px;
    font-size: 16px;
  }
  .c-tit01__en {
    font-size: 58px;
  }
}
@media screen and (max-width: 374px) {
  .c-tit01__en {
    font-size: 48px;
  }
}

.c-titBox01 {
  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;
}
@media screen and (max-width: 768px) {
  .c-titBox01 {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.c-lead01 {
  font-size: 18px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .c-lead01 {
    font-size: 15px;
  }
}

.c-btn01 {
  width: min(100%, 280px);
  border-radius: 100px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.c-btn01 a {
  height: 60px;
  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-inline: 40px;
  border-radius: inherit;
  background: var(--color-yellow) url(../img/ico_arrow03.svg) no-repeat right 20px center;
  position: relative;
}
@media screen and (min-width: 769px) {
  .c-btn01 a {
    border: 2px solid var(--color-yellow);
  }
  .c-btn01 a:hover {
    opacity: 1;
    background-color: #fff;
    border-color: var(--color-orange);
    color: var(--color-orange);
  }
}
@media screen and (max-width: 768px) {
  .c-btn01 {
    font-size: 16px;
  }
}

/*------------------------------------------
	.secUs
------------------------------------------*/
.secUs {
  padding-block: 0 160px;
}
.secUs__secTit {
  margin-bottom: 64px;
}
.secUs__catch {
  margin-bottom: 40px;
  color: var(--color-orange);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.secUs__txt {
  font-weight: 400;
  font-size: 17px;
  line-height: 2.5;
}
.secUs-imgBox {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 4px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 4px;
}
.secUs-imgBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
@media screen and (min-width: 769px) {
  .secUs-inner {
    width: min(100% - var(--inner-padding) * 2, 1280px);
    margin-inline: auto;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 50px 50%;
    grid-template-columns: 1fr 50%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    grid-gap: 50px;
  }
  .secUs-txtBox {
    width: min(100%, 490px);
    margin-inline: auto 0;
  }
}
@media screen and (max-width: 768px) {
  .secUs {
    padding-block: 80px 95px;
  }
  .secUs-inner {
    padding-inline: 30px;
  }
  .secUs__catch {
    font-size: min(6.9vw, 28px);
  }
  .secUs__txt {
    font-size: 16px;
    line-height: 2.4;
  }
  .secUs-imgBox {
    margin-top: 40px;
    grid-gap: 2px;
  }
}
@media screen and (max-width: 374px) {
  .secUs-inner {
    padding-inline: var(--inner-padding);
  }
}

/*------------------------------------------
	.secGallery01
------------------------------------------*/
.secGallery01 {
  --loopSpeed: 60s;
  overflow-x: clip;
  margin-bottom: 160px;
  height: 464px;
  background: url(../img/img_gallery01_01.webp) repeat-x 0 0/auto 100%;
  -webkit-animation: loop var(--loopSpeed) linear infinite;
          animation: loop var(--loopSpeed) linear infinite;
  position: relative;
}
.secGallery01::after {
  content: "";
  display: block;
  width: 312px;
  aspect-ratio: 1/1;
  background: url(../img/bg_gallery01_01.svg) no-repeat center/contain;
  position: absolute;
  top: -40px;
  right: calc(50% - 540px);
  z-index: -1;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .secGallery01 {
    --loopSpeed: 100s;
    margin-bottom: 80px;
  }
  .secGallery01::after {
    width: min(62%, 240px);
    top: 50%;
    right: auto;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

@-webkit-keyframes loop {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -3124px 0;
  }
}

@keyframes loop {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -3124px 0;
  }
}
/*------------------------------------------
	.secJob
------------------------------------------*/
.secJob {
  counter-reset: number01;
  padding-block: 150px 240px;
  position: relative;
}
.secJob::after {
  content: "";
  display: block;
  width: min(100%, 50% + 420px);
  height: min(100%, 1525px);
  background: var(--color-cream);
  border-radius: 200px 0 0 200px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  pointer-events: none;
}
.secJob-titBox {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .secJob {
    padding-block: 80px;
  }
  .secJob::after {
    width: calc(100% - 45px);
    height: min(100%, 1415px);
    border-radius: 100px 0 0 100px;
  }
  .secJob-titBox {
    margin-bottom: 30px;
  }
}

/*	.secJob-nav
------------------------------------------*/
.secJob-nav {
  width: min(100% - var(--inner-padding) * 2, 996px);
  margin: 0 auto 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}
.secJob-nav__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.secJob-nav__item a {
  display: block;
  padding-bottom: 15px;
  position: relative;
}
.secJob-nav__item a::after {
  content: "";
  display: block;
  width: 7px;
  aspect-ratio: 1/1;
  border: 2px solid;
  border-right: none;
  border-top: none;
  position: absolute;
  bottom: 2px;
  right: 0;
  left: 0;
  margin: auto;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.secJob-nav__item img {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .secJob-nav__item a:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.7);
  }
  .secJob-nav__item a:hover::after {
    border-color: var(--color-orange);
  }
}
@media screen and (max-width: 768px) {
  .secJob-nav {
    width: 100%;
    height: var(--header-height);
    margin-bottom: 70px;
    gap: 0;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 10;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .secJob-nav.is-fixed {
    width: calc(100% - var(--header-height));
    margin-inline: 0 auto;
  }
  .secJob-nav__item a {
    height: 100%;
    padding: 10px 0 0;
  }
  .secJob-nav__item a::after {
    width: 6px;
    bottom: 10px;
  }
  .secJob-nav__item img {
    max-height: calc(100% - 20px);
    display: block;
    margin-inline: auto;
  }
}

/*	.secJob-sec
------------------------------------------*/
.secJob-sec {
  position: relative;
}
.secJob-sec:not(:nth-of-type(1))::after {
  content: "";
  display: block;
  width: min(100%, 50% + 420px);
  height: calc(100% - 100px);
  background: #f9f6e2;
  border-radius: 200px 0 0 200px;
  position: absolute;
  top: 160px;
  right: 0;
  z-index: -1;
  pointer-events: none;
}
.secJob-sec:nth-of-type(even)::after {
  background: #fef5ee;
  border-radius: 0 200px 200px 0;
  right: auto;
  left: 0;
}
.secJob-sec + .secJob-sec {
  margin-top: 168px;
}
.secJob-sec-inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 402px;
  grid-template-columns: 1fr 402px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  grid-gap: 40px;
  padding-top: 32px;
  position: relative;
}
.secJob-sec-inner::after {
  counter-increment: number01;
  content: counter(number01, decimal-leading-zero);
  color: #f07e39;
  font-weight: 500;
  font-size: 64px;
  line-height: 1;
  font-family: "Figtree", sans-serif;
  position: absolute;
  top: -1px;
  left: 50px;
}
.secJob-sec__tit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 2px 17px;
  background: #fff;
  font-weight: 700;
  font-size: 38px;
  letter-spacing: 0.04em;
  position: absolute;
  top: 0;
  left: 135px;
}
@media screen and (min-width: 769px) {
  .secJob-sec-box01 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-left: 20px;
  }
}
@media screen and (max-width: 768px) {
  .secJob-sec {
    scroll-margin-top: var(--header-height);
  }
  .secJob-sec:not(:nth-of-type(1))::after {
    width: calc(100% - 45px);
    height: calc(100% - 60px);
    top: 100px;
    border-radius: 100px 0 0 100px;
  }
  .secJob-sec:nth-of-type(even)::after {
    border-radius: 0 100px 100px 0;
  }
  .secJob-sec + .secJob-sec {
    margin-top: 80px;
  }
  .secJob-sec-inner {
    display: block;
    padding-top: 20px;
  }
  .secJob-sec-inner::after {
    font-size: 38px;
    top: 3px;
    left: 20px;
  }
  .secJob-sec__tit {
    padding: 4px 11px;
    font-size: 22px;
    left: 70px;
  }
}

/* .secJob-sec-top */
.secJob-sec-top img {
  width: 100%;
  border-radius: 8px;
}
@media screen and (min-width: 769px) {
  .secJob-sec-top {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -ms-grid-column-span: 2;
    grid-column: span 2;
  }
}
@media screen and (max-width: 768px) {
  .secJob-sec-top {
    margin-inline: calc(var(--inner-padding) * -0.5);
  }
}

/* .secJob-sec-info */
.secJob-sec-info {
  position: relative;
}
.secJob-sec-info__tit {
  font-weight: 700;
  font-size: 24px;
  position: absolute;
  top: -70px;
  right: 20px;
  z-index: 2;
}
.secJob-sec-info__tit .bg {
  padding: 9px 2px;
  background: #fff;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.secJob-sec-info-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  grid-gap: 16px;
}
.secJob-sec-info-list__item {
  position: relative;
}
.secJob-sec-info-list__item img {
  width: 100%;
  border-radius: 8px;
}
.secJob-sec-info-list__txt {
  padding: 11px 16px;
  background: #fff;
  border-radius: 0 0 8px 0;
  color: var(--color-orange);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 769px) {
  .secJob-sec-info {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-right: 20px;
  }
  .secJob-sec-info__tit {
    line-height: 1.8;
    letter-spacing: 0.2em;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
  }
}
@media screen and (max-width: 768px) {
  .secJob-sec-info {
    margin-bottom: 32px;
    padding-top: 27px;
  }
  .secJob-sec-info__tit {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 16px;
    text-align: center;
    white-space: nowrap;
    top: -11px;
    right: 0;
    left: 0;
    margin: auto;
  }
  .secJob-sec-info__tit .bg {
    padding: 4px 15px;
  }
  .secJob-sec-info-list {
    -ms-grid-columns: 1fr 4px 1fr 4px 1fr;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 4px;
  }
  .secJob-sec-info-list__item img {
    border-radius: 0 0 8px 8px;
  }
  .secJob-sec-info-list__txt {
    padding: 6px 0;
    border-radius: 8px 8px 0 0;
    font-size: 11px;
    text-align: center;
    position: static;
  }
}

/* .secJob-sec-point */
.secJob-sec-point {
  counter-reset: number02;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  grid-gap: 33px;
}
.secJob-sec-point__item {
  padding-left: 32px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  position: relative;
}
.secJob-sec-point__item::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-yellow);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.secJob-sec-point__item::before {
  counter-increment: number02;
  content: "POINT " counter(number02, decimal-leading-zero);
  display: block;
  margin-bottom: 3px;
  color: #f07e39;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0;
  font-family: "Figtree", sans-serif;
}
@media screen and (max-width: 768px) {
  .secJob-sec-point {
    width: calc(100% - 20px);
    margin-inline: auto;
    grid-gap: 20px;
  }
  .secJob-sec-point__item {
    font-size: 16px;
  }
  .secJob-sec-point__item::before {
    margin-bottom: 4px;
    font-size: 12px;
  }
}

/* .secJob-sec__entry */
.secJob-sec__entry {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .secJob-sec__entry {
    margin-inline: auto;
  }
}

/* .secJob-sec-products */
.secJob-sec-products {
  width: min(100%, 580px);
  margin-top: 40px;
  padding-block: 20px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 140px 1fr;
  grid-template-columns: 140px 1fr;
  background: #fff;
  border: 1px solid var(--color-orange);
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
          box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}
.secJob-sec-products__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;
  padding-block: 47px;
  border-right: 1px dashed;
  color: var(--color-orange);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.05em;
}
.secJob-sec-products__txt {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  padding: 20px 40px;
  font-size: 15px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .secJob-sec-products {
    width: 100%;
    padding: 24px;
    display: block;
  }
  .secJob-sec-products__tit {
    display: block;
    border-right: none;
    border-bottom: 1px dashed;
    margin-bottom: 14px;
    padding: 0 0 14px;
    font-size: 18px;
  }
  .secJob-sec-products__txt {
    padding: 0;
    font-size: 14px;
  }
}

/*------------------------------------------
	.secInterview
------------------------------------------*/
.secInterview {
  padding-block: 0 160px;
}
.secInterview-titBox {
  margin-bottom: 75px;
}
@media screen and (max-width: 768px) {
  .secInterview {
    padding-block: 80px;
  }
  .secInterview-titBox {
    margin-bottom: 50px;
  }
}

/*	.secInterview-front
------------------------------------------*/
.secInterview-front__item a {
  display: block;
}
.secInterview-front__item.is-yellow .secInterview-front-imgBox::after {
  background: radial-gradient(#fff7cd 0, #ffd400 100%);
}
.secInterview-front-imgBox {
  margin-bottom: 13px;
  position: relative;
}
.secInterview-front-imgBox::after {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% - 86px);
  border-radius: 0 120px 0 0;
  background: radial-gradient(#ffcaa4 0, var(--color-orange) 100%);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  pointer-events: none;
}
.secInterview-front-imgBox img {
  width: 100%;
}
.secInterview-front__num {
  color: #fff;
  font-weight: 500;
  font-size: 64px;
  line-height: 0.65;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
}
.secInterview-front__txt {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.1em;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  position: absolute;
  top: 118px;
  left: 20px;
  z-index: 2;
}
.secInterview-front__txt .bg {
  display: block;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 8px 0;
  background: #fff;
}
.secInterview-front__txt .bg + .bg {
  margin-right: 4px;
}
.secInterview-front-txtBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.secInterview-front__at {
  font-weight: 700;
  font-size: 24px;
}
.secInterview-front__prof {
  font-size: 15px;
  text-align: right;
}
@media screen and (min-width: 769px) {
  .secInterview-front__item a:hover {
    opacity: 1;
    color: var(--color-orange);
  }
  .secInterview-front__item a:hover .secInterview-front-imgBox::after {
    -webkit-filter: brightness(1.2);
            filter: brightness(1.2);
  }
  .secInterview-front__item a:hover .secInterview-front__img {
    -webkit-filter: brightness(1.1);
            filter: brightness(1.1);
  }
  .secInterview-front__item.is-yellow a:hover {
    color: #dca500;
  }
  .secInterview-front-imgBox::after, .secInterview-front__img {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
@media screen and (max-width: 768px) {
  .secInterview-front__num {
    font-size: 54px;
  }
  .secInterview-front__txt {
    font-size: 16px;
    top: 95px;
    left: 8px;
  }
  .secInterview-front__at {
    font-size: 20px;
  }
  .secInterview-front__prof {
    font-size: 12px;
  }
}

.js-interview-slider-nav {
  width: min(100%, 288px);
  margin: 40px auto 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 88px;
  grid-template-columns: 1fr 88px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 20px;
}
.js-interview-slider .my-carousel-progress {
  background: #e7e7e7;
}
.js-interview-slider .my-carousel-progress-bar {
  background: var(--color-orange);
  height: 2px;
  -webkit-transition: width 1000ms ease;
  transition: width 1000ms ease;
  width: 0;
}
.js-interview-slider .splide__arrows {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 8px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 8px;
}
.js-interview-slider .splide__arrow {
  cursor: pointer;
  width: 100%;
  aspect-ratio: 1/1;
  padding: 0;
  background: var(--color-orange);
  border-radius: 50%;
  border: none;
  color: #fff;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.js-interview-slider .splide__arrow svg {
  display: none;
}
.js-interview-slider .splide__arrow::before {
  content: "";
  display: block;
  width: 14px;
  aspect-ratio: 14/10;
  -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: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.js-interview-slider .splide__arrow.splide__arrow--prev {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
@media screen and (min-width: 769px) {
  .js-interview-slider .splide__arrow {
    border: 2px solid var(--color-orange);
  }
  .js-interview-slider .splide__arrow:hover {
    background: #fff;
    color: var(--color-orange);
  }
}
@media screen and (max-width: 768px) {
  .js-interview-slider-nav {
    width: min(100% - var(--inner-padding) * 2, 288px);
    margin-top: 30px;
  }
}

/*	.secInterview-content
------------------------------------------*/
.secInterview-content {
  width: min(100%, 880px);
  margin-inline: auto;
  padding: 80px 60px 60px;
  background: var(--color-cream);
  position: relative;
}
.secInterview-content-top {
  min-height: 360px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
  padding: 20px 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, #fa9d65 0, var(--color-orange) 100%);
  position: relative;
}
.secInterview-content-top-txtBox {
  width: 70%;
  position: relative;
  z-index: 2;
}
.secInterview-content-top__at {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 12px 0;
  padding: 7px 16px;
  background: var(--color-yellow);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: 0;
}
.secInterview-content-top__txt {
  font-weight: 700;
  font-size: clamp(24px, 2.8vw, 28px);
  line-height: 2.1;
  letter-spacing: 0;
}
.secInterview-content-top__txt .bg {
  padding: 5px 12px;
  background: #fff;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.secInterview-content-top__prof {
  margin-top: 32px;
  color: #fff;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0;
}
.secInterview-content-top-imgBox {
  overflow: clip;
  width: 300px;
  height: 416px;
  position: absolute;
  right: 30px;
  bottom: 0;
}
.secInterview-content-top-imgBox img {
  width: 100%;
}
.secInterview-content-q__tit {
  min-height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  padding-left: 64px;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.7;
  letter-spacing: 0;
  position: relative;
}
.secInterview-content-q__tit::after {
  content: "Q";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-orange);
  color: #fff;
  font-weight: 400;
  font-size: 20px;
  font-family: "Figtree", sans-serif;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.secInterview-content-q__txt {
  padding: 30px;
  background: #fff;
  border-radius: 20px;
}
.secInterview-content-q__txt + .secInterview-content-q__tit {
  margin-top: 40px;
}
.secInterview-content__entry {
  margin: 40px auto 0;
}
@media screen and (max-width: 768px) {
  .secInterview-content {
    padding: 60px 20px 30px;
  }
  .secInterview-content-top {
    width: 100%;
    min-height: auto;
    max-height: 300px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-bottom: 30px;
    padding: 15px 20px;
    aspect-ratio: 310/300;
  }
  .secInterview-content-top-txtBox {
    width: 100%;
  }
  .secInterview-content-top__at {
    margin-bottom: 10px;
    padding: 3px 10px;
    font-size: min(3.5vw, 14px);
  }
  .secInterview-content-top__txt {
    font-size: min(4.5vw, 18px);
  }
  .secInterview-content-top__txt .bg {
    padding: 3px 10px;
  }
  .secInterview-content-top__prof {
    margin-top: 10px;
    font-size: 14px;
  }
  .secInterview-content-top-imgBox {
    width: 100%;
    height: calc(100% + 30px);
    right: 0;
    left: 0;
    margin: auto;
  }
  .secInterview-content-top-imgBox img {
    width: min(80%, 250px);
    display: block;
    margin-inline: auto;
  }
  .secInterview-content-q__tit {
    min-height: 35px;
    margin-bottom: 15px;
    padding-left: 50px;
    font-size: 16px;
  }
  .secInterview-content-q__tit::after {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
  .secInterview-content-q__txt {
    padding: 20px;
    font-size: 13px;
  }
  .secInterview-content-q__txt + .secInterview-content-q__tit {
    margin-top: 30px;
  }
  .secInterview-content__entry {
    margin-top: 30px;
  }
}

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

.mfp-close.modalClose01, .mfp-close.modalClose02 {
  cursor: pointer;
  opacity: 1;
  z-index: 3;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.mfp-close.modalClose01 {
  position: absolute;
  top: 20px !important;
  right: 20px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: #2a2a2a;
  border-radius: 50%;
  font-size: 10px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.mfp-close.modalClose01::before, .mfp-close.modalClose01::after {
  content: "";
  display: block;
  width: 45%;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  pointer-events: none;
}
.mfp-close.modalClose01::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.mfp-close.modalClose01::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.mfp-close.modalClose01:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .mfp-close.modalClose01 {
    top: 10px !important;
    right: 10px;
  }
}
.mfp-close.modalClose02 {
  position: static;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(100%, 280px);
  height: 60px;
  margin: 16px auto 0;
  padding: 0;
  border-radius: 100px;
  border: 1px solid #555;
  color: #555 !important;
  font-weight: 700;
  font-size: 16px;
  font-family: inherit;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 769px) {
  .mfp-close.modalClose02:hover {
    background: #555;
    color: #fff !important;
  }
}

/*------------------------------------------
	.secGallery02
------------------------------------------*/
.secGallery02 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 8px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 8px;
  margin-bottom: 60px;
}
.secGallery02 img {
  width: 100%;
  border-radius: 16px;
}
.secGallery02 img:nth-of-type(2) {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .secGallery02 {
    grid-gap: 0.7%;
  }
  .secGallery02 img:nth-of-type(2) {
    margin-top: 5.4vw;
  }
}

/*------------------------------------------
	.secData
------------------------------------------*/
.secData {
  padding-block: 70px 160px;
}
.secData__secTit {
  margin-bottom: 82px;
}
.secData-listWrap-outer {
  position: relative;
}
.secData-listWrap-outer::after {
  content: "";
  display: block;
  width: 464px;
  aspect-ratio: 928/558;
  background: url(../img/bg_data01.webp) no-repeat center/contain;
  position: absolute;
  right: 70px;
  bottom: 100%;
  z-index: -1;
  pointer-events: none;
}
.secData-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}
.secData-list__item {
  overflow: clip;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--color-cream);
  border-radius: 8px;
}
.secData-list__item img {
  width: 100%;
}
.secData-list__item.is-wide {
  -ms-grid-column-span: 3;
  grid-column: span 3;
}
@media screen and (max-width: 768px) {
  .secData {
    padding-block: 80px;
  }
  .secData__secTit {
    margin-bottom: 35px;
  }
  .secData-listWrap {
    margin-right: calc(var(--inner-padding) * -1);
    padding-right: var(--inner-padding);
  }
  .secData-listWrap-outer::after {
    width: min(60%, 190px);
    right: -10px;
  }
  .secData-list {
    width: 1100px;
    -ms-grid-columns: 1fr 10px 1fr 10px 1fr 10px 1fr 10px 1fr;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 10px;
  }
}

/*------------------------------------------
	.secEntry
------------------------------------------*/
.secEntry {
  overflow: clip;
  width: calc(100% - 16px);
  height: 720px;
  margin: 0 auto 8px;
  background: url(../img/img_entry01_pc.webp) no-repeat center/cover;
  border-radius: 16px;
  color: #fff;
}
.secEntry a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.secEntry-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.secEntry__en {
  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: 24px;
  font-weight: 700;
  font-size: 86px;
  line-height: 0.8;
  letter-spacing: 0;
}
.secEntry__en::after {
  content: "";
  display: block;
  width: 48px;
  aspect-ratio: 1/1;
  -webkit-mask-image: url(../img/ico_arrow02.svg);
  mask-image: url(../img/ico_arrow02.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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 769px) {
  .secEntry a {
    padding-inline: 30px;
  }
  .secEntry a:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.5);
    color: var(--color-yellow);
  }
  .secEntry__txt {
    position: relative;
  }
  .secEntry__txt::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    -webkit-mask-image: url(../img/txt_entry01_pc.svg);
    mask-image: url(../img/txt_entry01_pc.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;
    left: 0;
  }
  .secEntry__txt img {
    opacity: 0;
  }
  .secEntry__en {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
}
@media screen and (max-width: 768px) {
  .secEntry {
    height: auto;
    aspect-ratio: 377/510;
    background-image: url(../img/img_entry01_sp.webp);
  }
  .secEntry a {
    padding-block: 15.5vw;
  }
  .secEntry-inner {
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-inline: 0;
  }
  .secEntry__txt {
    width: 65%;
  }
  .secEntry__txt img {
    width: 100%;
  }
  .secEntry__en {
    gap: 6vw;
    font-size: 13.7vw;
  }
  .secEntry__en::after {
    width: 0.54em;
  }
}
/*# sourceMappingURL=style.css.map */