@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: #191210;
  --color-orange: #E79048;
  --color-blue: #6FB2D9;
  --color-green: #33A28A;
  --color-beige: #F4F2E9;
}
@media screen and (max-width: 768px) {
  :root {
    --header-height: 60px;
    --inner-padding: 20px;
    --cv-height: 60px;
  }
}

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

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

.f-marcellus {
  font-weight: 400;
  font-family: "Marcellus", 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: #FCFBF8;
}
@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);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: fixed;
  z-index: 9990;
  top: 0;
  left: 0;
}
.l-header__logo a, .l-header__logo img {
  display: block;
}
.l-header__entry {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  width: 125px;
  height: 50px;
  border-radius: 8px;
  color: #fff;
  font-size: 18px;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.15em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.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-orange);
  border: 1px solid var(--color-orange);
}
@media screen and (min-width: 769px) {
  .l-header {
    min-width: 1000px;
    padding-inline: 40px;
    gap: 20px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .l-header.is-scroll {
    background: #fff;
  }
  .l-header__entry a:hover {
    opacity: 1;
    background: #fff;
    color: var(--color-orange);
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    position: absolute;
    padding: 0 80px 0 15px;
    left: 0 !important;
  }
  .l-header__logo {
    width: 152px;
  }
  .l-header__entry {
    width: 100%;
    height: var(--cv-height);
    border-radius: 8px 8px 0 0;
    font-size: 22px;
    position: fixed;
    z-index: 9992;
    left: 0;
    bottom: 0;
  }
}

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

.pagetop {
  display: none;
  width: 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-green);
  border-radius: inherit;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff !important;
  position: relative;
}
.pagetop a::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  clip-path: polygon(0 0, 100% 0, 100% 2px, 2px 2px, 2px 100%, 0 100%);
  background: currentColor;
  position: absolute;
  top: calc(50% - 2px);
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .pagetop {
    width: 40px;
    height: 40px;
    right: 10px;
    bottom: calc(10px + var(--cv-height));
  }
  .pagetop a::after {
    width: 10px;
    height: 10px;
  }
}

/*============================================================================================================
	nav
============================================================================================================*/
.l-nav a {
  display: block;
}

/* PC */
@media screen and (min-width: 769px) {
  .l-nav {
    display: block !important;
    height: auto !important;
    margin-inline: auto 0;
  }
  .l-nav-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
  }
  .l-nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px 25px;
  }
  .l-nav-list__item {
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0;
    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;
    z-index: 9992;
    position: fixed;
    top: 5px;
    right: 5px;
    background: var(--color-orange);
    border-radius: 50%;
  }
  .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-weight: 700;
    font-size: 16px;
    line-height: 1.5;
  }
  .l-nav-list__item a {
    padding: 15px 30px 15px 20px;
    position: relative;
  }
  .l-nav-list__item a::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    color: var(--color-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 {
  overflow-x: clip;
  margin-bottom: 120px;
  background: url(../img/bg_mv01.svg) no-repeat left 56.4% top 512%/36.7%;
  position: relative;
}
.l-mv img {
  width: 100%;
}
.l-mv__txt {
  width: 44.2366%;
  position: absolute;
  top: 29%;
  left: 10%;
  z-index: 2;
}
.l-mv-imgBox {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.l-mv-imgBox::before, .l-mv-imgBox::after {
  content: "";
  display: block;
  background: no-repeat center/contain;
  position: absolute;
  pointer-events: none;
}
.l-mv-imgBox::before {
  width: 44.2%;
  aspect-ratio: 1275/758;
  background-image: url(../img/bg_mv02.webp);
  left: -0.4%;
  bottom: 2.3%;
  z-index: 4;
}
.l-mv-imgBox::after {
  width: 41.8%;
  aspect-ratio: 1206/868;
  background-image: url(../img/bg_mv03.webp);
  right: -6.3%;
  bottom: 0;
  z-index: 2;
}
.l-mv-imgBox img {
  display: block;
  position: absolute;
}
.l-mv-imgBox img:nth-of-type(1) {
  width: 36.3%;
  top: 16.5%;
  right: 2.7%;
  z-index: 1;
}
.l-mv-imgBox img:nth-of-type(2) {
  width: 39.6%;
  left: 26%;
  bottom: 2.3%;
  z-index: 3;
}
@media screen and (min-width: 769px) {
  .l-mv {
    aspect-ratio: 1440/846;
  }
}
@media screen and (max-width: 768px) {
  .l-mv {
    margin-bottom: 0;
    padding-block: 40.5vw 0;
    background-size: 54.9%;
    background-position: left 48.5% top -12%;
  }
  .l-mv__txt {
    width: 86.5%;
    margin: 0 auto 6vw 4%;
    position: static;
  }
  .l-mv-imgBox {
    aspect-ratio: 390/460;
    height: auto;
    position: relative;
  }
  .l-mv-imgBox::before {
    width: 54.35%;
    left: 2.5%;
    bottom: 0;
  }
  .l-mv-imgBox::after {
    width: 51.3%;
    right: 0;
    top: 25%;
    bottom: auto;
    z-index: 4;
  }
  .l-mv-imgBox img:nth-of-type(1) {
    width: 72.8%;
    top: 0;
    right: 5%;
  }
  .l-mv-imgBox img:nth-of-type(2) {
    width: 79.5%;
    left: 2.5%;
    bottom: 9%;
  }
}

/*============================================================================================================
	main
============================================================================================================*/
.c-tit01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 7px;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.04em;
}
.c-tit01__en {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  color: #EFECDD;
  font-weight: 400;
  font-size: 100px;
  line-height: 1.1;
  letter-spacing: 0;
  font-family: "Marcellus", serif;
}
.c-tit01__en.is-white {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .c-tit01 {
    gap: 0;
    font-size: 22px;
  }
  .c-tit01__en {
    font-size: 56px;
  }
}

.c-bg01 {
  background-color: var(--color-beige) !important;
}

/*------------------------------------------
	.secAbout
------------------------------------------*/
.secAbout {
  padding-block: 0 150px;
  background: url(../img/bg_about01.webp) no-repeat left calc(50% - 47px) bottom 100px/168px;
}
.secAbout-inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 465px;
  grid-template-columns: 1fr 465px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  grid-gap: 30px;
}
.secAbout-txtBox {
  width: min(100%, 480px);
  margin-top: 10px;
}
.secAbout__secTit {
  margin-bottom: 60px;
}
.secAbout__txt {
  line-height: 2.2;
  letter-spacing: 0.04em;
}
.secAbout-point {
  counter-reset: number;
  aspect-ratio: 465/488;
  position: relative;
}
.secAbout-point__item {
  width: 51.6%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  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: 15%;
  background: url(../img/bg_about02.webp) no-repeat center bottom 20px/104%;
  color: #fff;
  font-weight: 700;
  font-size: 21px;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.04em;
  position: relative;
}
.secAbout-point__item::after {
  counter-increment: number;
  content: "Point " counter(number, decimal-leading-zero);
  width: 100%;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 1.1;
  font-family: "Marcellus", serif;
  position: absolute;
  top: 45px;
  left: 0;
}
.secAbout-point__item:nth-of-type(1) {
  background-color: var(--color-orange);
}
.secAbout-point__item:nth-of-type(2) {
  background-color: var(--color-green);
  position: absolute;
  top: 21.5%;
  right: 0;
}
.secAbout-point__item:nth-of-type(3) {
  background-color: var(--color-blue);
  position: absolute;
  bottom: 0;
  left: 4.7%;
}
@media screen and (max-width: 768px) {
  .secAbout {
    margin-bottom: 30px;
    padding-block: 80px;
    background-position: right 30px bottom 40px;
    background-size: 100px;
  }
  .secAbout-inner {
    display: block;
  }
  .secAbout-txtBox {
    width: calc(100% - 30px);
    margin: 0 auto 40px;
  }
  .secAbout__secTit {
    margin-bottom: 30px;
  }
  .secAbout__txt {
    line-height: 2;
  }
  .secAbout-point__item {
    background-position: center bottom 8%;
    font-size: 4.5vw;
  }
  .secAbout-point__item::after {
    font-size: 0.9em;
    top: 15%;
  }
}

/*------------------------------------------
	.secAccess
------------------------------------------*/
.secAccess {
  overflow-x: clip;
  margin-bottom: 170px;
  padding-block: 90px 100px;
  position: relative;
}
.secAccess::after {
  content: "";
  display: block;
  width: 332px;
  aspect-ratio: 664/530;
  background: url(../img/bg_access01.webp) no-repeat center/contain;
  position: absolute;
  top: -135px;
  right: calc(50% - 680px);
  pointer-events: none;
}
.secAccess-inner {
  position: relative;
  z-index: 2;
}
.secAccess-secTitBox {
  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: 50px;
  margin-bottom: 40px;
}
.secAccess__secTit {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.secAccess__lead {
  font-weight: 700;
  letter-spacing: 0.04em;
}
.secAccess__lead .color {
  display: block;
  margin-bottom: 5px;
  color: var(--color-green);
  font-size: 20px;
}
.secAccess-mapBox {
  margin-bottom: 30px;
}
.secAccess-mapBox img {
  width: 100%;
}
.secAccess-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 26px 1fr 26px 1fr 26px 1fr;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 26px;
}
.secAccess-list__item {
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.secAccess-list__item a {
  overflow: hidden;
  display: block;
  min-height: 85px;
  padding: 2px 15px 10px 0;
  border-bottom: 1px solid;
  position: relative;
}
.secAccess-list__item a::after {
  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: 45%;
  right: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.secAccess-list__name {
  padding-left: 1em;
  text-indent: -1em;
  font-weight: 700;
}
.secAccess-list-st {
  margin-top: 5px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 8px 1fr;
  grid-template-columns: auto 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  grid-gap: 8px;
  font-size: 14px;
}
.secAccess-list-st__tit {
  padding: 2px 8px;
  background: #fff;
  border-radius: 4px;
}
.secAccess-list-st__txt {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
@media screen and (min-width: 769px) {
  .secAccess-list__item a:hover {
    opacity: 1;
    color: var(--color-orange);
  }
}
@media screen and (max-width: 768px) {
  .secAccess {
    margin-bottom: 80px;
    padding-block: 80px;
  }
  .secAccess::after {
    width: 160px;
    top: -50px;
    right: 10px;
  }
  .secAccess-secTitBox {
    display: block;
  }
  .secAccess__secTit {
    margin-bottom: 30px;
  }
  .secAccess__lead .color {
    font-size: 18px;
  }
  .secAccess-mapBox {
    margin: 0 calc(var(--inner-padding) * -1) 40px;
  }
  .secAccess-list {
    -ms-grid-columns: 1fr 15px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 25px 15px;
  }
  .secAccess-list__item a {
    min-height: auto;
    height: 100%;
    padding: 0 0 10px;
  }
  .secAccess-list__item a::after {
    width: 12px;
    top: 15px;
    background: var(--color-orange);
  }
  .secAccess-list__name {
    width: calc(100% - 10px);
    font-size: 14px;
  }
  .secAccess-list-st {
    margin-top: 10px;
    grid-gap: 5px;
    font-size: 12px;
  }
  .secAccess-list-st__tit {
    padding: 1px 5px;
  }
}

/*------------------------------------------
	.secJob
------------------------------------------*/
.secJob {
  overflow-x: clip;
  margin-bottom: 52px;
  position: relative;
}
.secJob::after {
  content: "";
  display: block;
  width: 318px;
  aspect-ratio: 636/530;
  background: url(../img/bg_job01.webp) no-repeat center/contain;
  position: absolute;
  top: -115px;
  right: calc(50% - 680px);
  z-index: -1;
  pointer-events: none;
}
.secJob__secTit {
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .secJob {
    margin-bottom: 0;
    padding-block: 80px 0;
  }
  .secJob::after {
    width: 160px;
    top: -50px;
    right: 10px;
  }
  .secJob__secTit {
    margin-bottom: 40px;
  }
}

.secJob-frontWrap {
  padding-block: 60px 100px;
  position: relative;
}
.secJob-frontWrap::after {
  content: "";
  display: block;
  width: 254px;
  aspect-ratio: 254/207;
  background: url(../img/txt_job01.svg) no-repeat center/contain;
  position: absolute;
  top: -171px;
  left: calc(50% - 123px);
  pointer-events: none;
}
.secJob-front__item {
  overflow: hidden;
  border-radius: 8px;
}
.secJob-front__item a {
  display: block;
  border-radius: inherit;
  position: relative;
}
.secJob-front__tag {
  padding: 4px 16px;
  border-radius: 0 0 8px 0;
  background: #fff;
  font-weight: 500;
  letter-spacing: 0.04em;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}
.secJob-front-imgBox {
  overflow: hidden;
}
.secJob-front-imgBox img {
  width: 100%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.secJob-front__more {
  width: 100%;
  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;
  background: rgba(189, 143, 73, 0.7);
  color: #fff;
  font-size: 18px;
  text-align: center;
  letter-spacing: 0.15em;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.secJob-front-nav {
  width: min(100% - var(--inner-padding) * 2, 288px);
  margin: 30px auto 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;
}
.secJob-front-nav .my-carousel-progress {
  background: #fff;
}
.secJob-front-nav .my-carousel-progress-bar {
  background: var(--color-green);
  height: 2px;
  -webkit-transition: width 1000ms ease;
  transition: width 1000ms ease;
  width: 0;
}
.secJob-front-nav .splide__arrows {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 8px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 8px;
}
.secJob-front-nav .splide__arrow {
  cursor: pointer;
  width: 100%;
  aspect-ratio: 1/1;
  padding: 0;
  background: var(--color-green);
  border: 1px solid var(--color-green);
  border-radius: 50%;
  color: #fff;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.secJob-front-nav .splide__arrow svg {
  display: none;
}
.secJob-front-nav .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;
}
.secJob-front-nav .splide__arrow.splide__arrow--prev {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.secJob-front-nav .splide__arrow:hover {
  background: #fff;
  color: var(--color-green);
}
@media screen and (min-width: 769px) {
  .secJob-front .splide__track {
    width: max(1000px - var(--inner-padding), 100% + 50vw - 540px);
  }
  .secJob-front__item a:hover {
    opacity: 1;
  }
  .secJob-front__item a:hover .secJob-front-imgBox img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .secJob-front__item a:hover .secJob-front__more {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .secJob-frontWrap {
    padding-block: 40px;
  }
  .secJob-frontWrap::after {
    width: 110px;
    top: -70px;
    left: auto;
    right: 10px;
  }
  .secJob-frontWrap-inner {
    padding-inline: 0;
  }
  .secJob-front__tag {
    padding: 3px 10px;
  }
  .secJob-front__more {
    opacity: 1;
    height: 40px;
    padding-inline: 30px;
    font-size: 15px;
    position: relative;
  }
  .secJob-front__more::after {
    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: 15px;
    bottom: 0;
    margin: auto;
  }
}

/* tablet */
@media screen and (min-width: 769px) {
  .ua-tab .secJob-front__more {
    opacity: 1;
    height: 50px;
    padding-inline: 40px;
    position: relative;
  }
  .ua-tab .secJob-front__more::after {
    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: 20px;
    bottom: 0;
    margin: auto;
  }
}

.secJob-content {
  width: min(100%, 800px);
  margin-inline: auto;
  padding: 0 0 60px;
  background: #F7F4F0;
  position: relative;
}
.secJob-content-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
}
.secJob-content-top-txtBox {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin: 30px -10% 20px 60px;
  position: relative;
  z-index: 2;
}
.secJob-content-top__tit {
  margin-bottom: 25px;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0;
}
.secJob-content-top__tit .bg {
  padding: 2px 5px;
  background: #fff;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.secJob-content-top__catch {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 15px;
  padding: 6px 15px;
  background: var(--color-green);
  border-radius: 4px;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.secJob-content-top__tag {
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.secJob-content-top__prof {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0;
}
.secJob-content-top__img {
  width: 55%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 0 0 20px;
}
.secJob-content-q {
  width: min(100% - 40px, 680px);
  margin-inline: auto;
}
.secJob-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.5;
  letter-spacing: 0;
  position: relative;
}
.secJob-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;
  background: var(--color-orange);
  border-radius: 50%;
  color: #fff;
  font-weight: 400;
  font-size: 18px;
  font-family: "Marcellus", serif;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.secJob-content-q__txt {
  padding: 30px;
  background: #fff;
  border-radius: 4px;
  font-size: 15px;
  line-height: 1.85;
  letter-spacing: 0;
}
.secJob-content-q__txt + .secJob-content-q__tit {
  margin-top: 40px;
}
.secJob-content__btn {
  width: min(100% - 40px, 210px);
  margin: 40px auto 0;
  border-radius: 8px;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  letter-spacing: 0;
  line-height: 1.5;
}
.secJob-content__btn a {
  min-height: 50px;
  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-orange);
  border: 1px solid var(--color-orange);
}
@media screen and (min-width: 769px) {
  .secJob-content__btn a:hover {
    opacity: 1;
    background: #fff;
    color: var(--color-orange);
  }
}
@media screen and (max-width: 768px) {
  .secJob-content {
    padding-bottom: 30px;
  }
  .secJob-content-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .secJob-content-top-txtBox {
    width: calc(100% - 40px);
    margin: -30px auto 0;
  }
  .secJob-content-top__tit {
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 2.3;
  }
  .secJob-content-top__tit .bg {
    padding: 5px 10px;
  }
  .secJob-content-top__catch {
    margin-bottom: 10px;
    padding: 4px 10px;
    font-size: 16px;
  }
  .secJob-content-top__tag {
    margin-bottom: 5px;
    font-size: 16px;
  }
  .secJob-content-top__prof {
    font-size: 12px;
  }
  .secJob-content-top__img {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    width: 100%;
    -o-object-fit: fill;
       object-fit: fill;
    border-radius: 0;
  }
  .secJob-content-q {
    width: calc(100% - 40px);
  }
  .secJob-content-q__tit {
    min-height: 35px;
    margin-bottom: 15px;
    padding-left: 50px;
    font-size: 15px;
  }
  .secJob-content-q__tit::after {
    width: 35px;
    height: 35px;
    font-size: 15px;
  }
  .secJob-content-q__txt {
    padding: 15px;
    font-size: 13px;
  }
  .secJob-content-q__txt + .secJob-content-q__tit {
    margin-top: 30px;
  }
  .secJob-content__btn {
    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: 10px !important;
  right: 10px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: #191210;
  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: 5px !important;
    right: 5px;
  }
}
.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% - 40px, 180px);
  height: 44px;
  margin: 24px auto 0;
  padding: 0;
  border: 1px solid #191210;
  color: #191210 !important;
  font-size: 16px;
  font-family: "Marcellus", serif;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 769px) {
  .mfp-close.modalClose02:hover {
    background: #191210;
    color: #fff !important;
  }
}

/*------------------------------------------
	.secData
------------------------------------------*/
.secData {
  padding-block: 60px 120px;
  background: url(../img/bg_data01.webp) no-repeat right calc(50% - 360px) top/361px;
}
.secData__secTit {
  margin-bottom: 60px;
}
.secData-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 20px;
}
.secData-list__item {
  overflow: hidden;
  border-radius: 12px;
}
.secData-list__tit {
  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: 5px;
  background: var(--color-green);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
.secData-list__img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .secData {
    padding-block: 80px;
    background-position: right 10px top 30px;
    background-size: 130px;
  }
  .secData__secTit {
    margin-bottom: 30px;
  }
  .secData-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 15px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  .secData-listWrap {
    margin-right: calc(var(--inner-padding) * -1);
    padding-right: var(--inner-padding);
  }
  .secData-list__item {
    width: 160px;
  }
  .secData-list__tit {
    height: 50px;
    font-size: 15px;
  }
}

/*------------------------------------------
	.secFaq
------------------------------------------*/
.secFaq {
  margin-bottom: 60px;
  padding-block: 90px 100px;
  background: url(../img/bg_faq01.webp) no-repeat left calc(50% - 450px) bottom 100px/336px;
}
.secFaq-inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 25% 30px 1fr;
  grid-template-columns: 25% 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  grid-gap: 30px;
}
.secFaq-box {
  width: min(100%, 740px);
  margin: 10px 0 0 auto;
}
.secFaq-box__tit {
  min-height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 20px 15px 70px;
  border-radius: 12px 12px 0 0;
  background: var(--color-blue);
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  position: relative;
}
.secFaq-box__tit::after {
  content: "Q";
  display: block;
  height: 1em;
  font-weight: 400;
  font-size: 24px;
  line-height: 1;
  font-family: "Marcellus", serif;
  position: absolute;
  top: 0;
  left: 30px;
  bottom: 0;
  margin: auto;
}
.secFaq-box__txt {
  padding: 30px;
  background: #fff;
  border-radius: 0 0 12px 12px;
  font-weight: 500;
}
.secFaq-box__txt + .secFaq-box__tit {
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .secFaq {
    margin-bottom: 80px;
    padding-block: 80px;
    background-position: right 20px top 30px;
    background-size: 120px;
  }
  .secFaq-inner {
    display: block;
  }
  .secFaq__secTit {
    margin-bottom: 40px;
  }
  .secFaq-box {
    width: 100%;
    margin: 0 auto;
  }
  .secFaq-box__tit {
    min-height: 50px;
    padding: 12px 15px 12px 50px;
    font-size: 16px;
  }
  .secFaq-box__tit::after {
    font-size: 20px;
    left: 17px;
  }
  .secFaq-box__txt {
    padding: 15px;
  }
}

/*------------------------------------------
	.secSearch
------------------------------------------*/
.secSearch {
  overflow-x: clip;
  padding-block: 70px 135px;
  background: url(../img/bg_search02.svg) no-repeat right calc(50% - 503px) top 40px;
  position: relative;
}
.secSearch::after {
  content: "";
  display: block;
  width: 342px;
  aspect-ratio: 684/490;
  background: url(../img/bg_search01.webp) no-repeat center/contain;
  position: absolute;
  top: 0;
  right: calc(50% - 350px);
  pointer-events: none;
}
.secSearch-inner {
  position: relative;
  z-index: 2;
}
.secSearch__secTit {
  margin-bottom: 100px;
}
.secSearch-sec {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 21% 30px 1fr;
  grid-template-columns: 21% 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  grid-gap: 30px;
}
.secSearch-sec + .secSearch-sec {
  margin-top: 60px;
}
.secSearch-sec__tit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 7px 16px;
  background: var(--color-orange);
  border-radius: 4px;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  letter-spacing: 0.04em;
}
.secSearch-sec-list {
  width: min(100%, 790px);
  margin-inline: auto 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 22px 20px;
}
.secSearch-sec-list__item {
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.secSearch-sec-list__item a {
  display: block;
  padding: 0 20px 15px 0;
  border-bottom: 1px solid;
  position: relative;
}
.secSearch-sec-list__item a::after {
  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: calc(50% - 12px);
  right: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (min-width: 769px) {
  .secSearch-sec-list__item a:hover {
    opacity: 1;
    color: var(--color-orange);
  }
}
@media screen and (max-width: 768px) {
  .secSearch {
    padding-block: 80px;
    background-position: right 10px top 120px;
    background-size: 70px;
  }
  .secSearch::after {
    width: 160px;
    top: -50px;
    right: 10px;
  }
  .secSearch__secTit {
    margin-bottom: 50px;
  }
  .secSearch-sec {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 10px;
  }
  .secSearch-sec + .secSearch-sec {
    margin-top: 50px;
  }
  .secSearch-sec-list {
    width: 100%;
    -ms-grid-columns: 1fr 15px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px 15px;
  }
  .secSearch-sec-list__item {
    font-size: 16px;
  }
  .secSearch-sec-list__item a {
    min-height: 60px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10px 15px 10px 0;
  }
  .secSearch-sec-list__item a::after {
    top: 0;
    bottom: 0;
    margin: auto;
    color: var(--color-orange);
  }
}

/*------------------------------------------
	.secEntry
------------------------------------------*/
.secEntry {
  padding-block: 0 120px;
}
.secEntry__secTit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 73px;
  position: relative;
}
.secEntry__secTit::before, .secEntry__secTit::after {
  content: "";
  display: block;
  background: no-repeat center/contain;
  position: absolute;
  pointer-events: none;
  z-index: -1;
}
.secEntry__secTit::before {
  width: 96px;
  aspect-ratio: 96/100;
  background-image: url(../img/bg_entry01.svg);
  left: -127px;
  top: -30px;
}
.secEntry__secTit::after {
  width: 90px;
  aspect-ratio: 90/96;
  background-image: url(../img/bg_entry02.svg);
  top: -27px;
  right: -118px;
}
.secEntry-imgBox img {
  width: 100%;
  border-radius: 16px;
}
.secEntry-imgBox .splide__list {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.secEntry-imgBox .splide__slide.is-down {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .secEntry {
    padding-block: 80px;
  }
  .secEntry__secTit {
    width: calc(100% - 50px);
    margin-bottom: 70px;
  }
  .secEntry__secTit::before {
    width: 45px;
    left: -15px;
    top: auto;
    bottom: calc(100% + 10px);
  }
  .secEntry__secTit::after {
    width: 40px;
    top: calc(100% + 10px);
    right: -15px;
  }
  .secEntry-imgBox img {
    border-radius: 8px;
  }
  .secEntry-imgBox .splide__slide.is-down {
    margin-top: 20px;
  }
}
/*# sourceMappingURL=style.css.map */