@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;
  }
}
/*------------------------------------------
	font
------------------------------------------*/
body {
  color: #332F21;
  font-size: 18px;
  line-height: 2;
  font-weight: 500;
  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-rammetto {
  font-weight: 400;
  font-family: "Rammetto One", sans-serif;
  line-height: 1.5;
}

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

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

.inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
}
@media screen and (max-width: 768px) {
  .inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/*------------------------------------------
	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);
  }
}

/*============================================================================================================
	l-header
============================================================================================================*/
.l-header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.l-header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}
.l-header__logo a, .l-header__logo img {
  display: block;
}
@media screen and (min-width: 769px) {
  .l-header {
    position: sticky;
    z-index: 9990;
    top: 0;
    left: 0;
    height: 100px;
    padding: 0 40px;
    margin: 20px auto;
    background: #F9F1E7;
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    height: 60px;
    padding: 0 70px 0 10px;
  }
  .l-header__logo {
    gap: 15px;
  }
  .l-header__logo a img {
    width: 70px;
  }
  .l-header__logo-txt {
    width: 90px;
  }
}

/*============================================================================================================
	footer
============================================================================================================*/
.l-footer {
  padding: 0;
  background: #D3432A;
  position: relative;
}
.l-footer p, .l-footer li {
  line-height: 1.8;
  font-weight: 500;
  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: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 10px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 30px auto;
  grid-template-columns: auto auto;
  grid-gap: 30px;
}
.l-footer__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
  margin: 0;
}
.l-footer__logo a, .l-footer__logo img {
  display: block;
}
.l-footer-nav {
  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;
  margin: 0;
  padding: 0;
  gap: 20px 0;
}
.l-footer-nav__item {
  list-style: none;
  color: #fff;
  font-size: 16px;
  text-align: center;
}
.l-footer-nav__item + .l-footer-nav__item {
  margin-left: 20px;
  padding-left: 20px;
  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: #fff;
  margin: auto;
}
.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-size: 12px;
  letter-spacing: 0.08em;
}
@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 {
    display: block;
    padding: 30px 20px 120px;
  }
  .l-footer__logo {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 20px;
  }
  .l-footer__logo-logo {
    width: 80px;
  }
  .l-footer__logo-txt {
    width: 104px;
  }
  .l-footer-nav {
    display: block;
    margin: 0 auto 20px;
  }
  .l-footer-nav__item {
    border-bottom: 1px dashed #fff;
    font-size: 12px;
    text-align: left;
  }
  .l-footer-nav__item + .l-footer-nav__item {
    margin-left: 0;
    padding-left: 0;
  }
  .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;
    text-align: center;
  }
}

.l-footer-btns {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 9000;
}
@media screen and (max-width: 768px) {
  .l-footer-btns {
    position: fixed !important;
    bottom: 0 !important;
  }
}

.l-footer__entry {
  width: 200px;
  border-radius: 20px 0 0 0;
  color: #fff;
  font-weight: 700 !important;
  font-size: 16px;
  text-align: center;
}
.l-footer__entry a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100px;
  border-radius: inherit;
  background: #F57A45;
}
.l-footer__entry-en {
  font-weight: 400;
  font-family: "Rammetto One", sans-serif !important;
  line-height: 1.5;
  font-size: 26px;
}
@media screen and (min-width: 769px) {
  .l-footer__entry a:hover {
    opacity: 1;
    background: #D3432A;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__entry {
    width: 150px;
    font-size: 14px;
  }
  .l-footer__entry a {
    height: 80px;
  }
  .l-footer__entry-en {
    font-size: 20px;
  }
}

.pagetop {
  display: none;
  width: 80px;
  height: 80px;
  margin: 0 20px 20px auto;
  border-radius: 50%;
  text-indent: 100%;
  font-size: 10px;
  white-space: nowrap;
  overflow: hidden;
}
.pagetop a {
  width: 100%;
  height: 100%;
  display: block;
  background: #D3432A;
  border-radius: inherit;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 2px solid;
  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: 50px;
    height: 50px;
    margin: 0 10px 10px auto;
  }
  .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: start;
        align-self: flex-start;
    margin-top: 20px !important;
  }
  .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 30px;
  }
  .l-nav-list__item {
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    line-height: 1.5;
  }
  .l-nav-list__item a {
    position: relative;
  }
  .l-nav-list__item a::after {
    content: "";
    display: block;
    width: 1px;
    height: 1px;
    background: #944045;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .l-nav-list__item a:hover {
    opacity: 1;
    color: #944045;
  }
  .l-nav-list__item a:hover::after {
    width: 100%;
    opacity: 1;
  }
}
/* SP */
@media screen and (max-width: 768px) {
  .gnavBtn {
    overflow: hidden;
    cursor: pointer;
    width: 50px;
    height: 50px;
    z-index: 9992;
    position: fixed;
    top: 5px;
    right: 5px;
    background: #D3432A;
    border-radius: 50%;
  }
  .gnavBtn span {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 26px;
    height: 2px;
    border-radius: 10px;
    background: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .gnavBtn span:nth-of-type(1) {
    top: 17px;
  }
  .gnavBtn span:nth-of-type(2) {
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .gnavBtn span:nth-of-type(3) {
    bottom: 17px;
  }
  .gnavBtn.is-close span:nth-of-type(1) {
    -webkit-transform: translateY(7px) rotate(-225deg);
            transform: translateY(7px) 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(-7px) rotate(225deg);
            transform: translateY(-7px) rotate(225deg);
  }
  .l-nav {
    display: none;
    padding: 80px 20px;
    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;
    border-right: 2px solid #D3432A;
    border-bottom: 2px solid #D3432A;
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    margin: auto;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .l-nav__entry {
    width: min(100%, 400px);
    margin: 30px auto 0;
    border-radius: 10px;
    color: #fff;
    font-size: 22px;
    letter-spacing: 0.2em;
  }
  .l-nav__entry a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 15px;
    height: 70px;
    background: #F57A45;
    border-radius: inherit;
  }
}
/*============================================================================================================
	.l-mv
============================================================================================================*/
.l-mv {
  position: relative;
  margin-bottom: 100px;
}
.l-mv img {
  width: 100%;
}
.l-mv__txt {
  width: 24.2%;
  position: absolute;
  z-index: 2;
  left: 90px;
  bottom: 50px;
}
@media screen and (max-width: 768px) {
  .l-mv {
    margin-bottom: 0;
    padding: 30px 0 0;
  }
  .l-mv__txt {
    width: 67%;
    left: 20px;
    bottom: 20px;
  }
}

.js-mv-slider {
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  height: max(370px, 37vw);
}
@media screen and (max-width: 768px) {
  .js-mv-slider {
    height: 88vw;
  }
}
.js-mv-slider.is-initialized {
  opacity: 1;
}
.js-mv-slider .splide__track {
  height: 100%;
}
.js-mv-slider .splide__slide {
  border-radius: 30px;
  overflow: hidden;
  width: 57.5% !important;
}
.js-mv-slider .splide__slide.is-narrow {
  width: 39.5% !important;
}
@media screen and (max-width: 768px) {
  .js-mv-slider .splide__slide {
    border-radius: 20px;
    width: 141% !important;
  }
  .js-mv-slider .splide__slide.is-narrow {
    width: 96.8% !important;
  }
}
.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;
  font-weight: 900;
  font-size: 48px;
  text-align: center;
}
.c-tit01__en {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  margin-bottom: 10px;
  color: #D3432A;
  font-weight: 400;
  font-size: 22px;
  font-family: "Rammetto One", sans-serif;
}
@media screen and (max-width: 768px) {
  .c-tit01 {
    font-size: 24px;
  }
  .c-tit01__en {
    font-size: 16px;
  }
}

/*------------------------------------------
	.secMessage
------------------------------------------*/
.secMessage {
  padding: 60px 0 125px;
}
.secMessage-inner {
  max-width: 1300px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 100px 42%;
  grid-template-columns: auto 42%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  grid-column-gap: 100px;
}
.secMessage-txtBox {
  width: min(100%, 540px);
  margin: 0 0 0 auto;
}
.secMessage__secTit {
  margin-bottom: 35px;
  color: #D3432A;
  font-weight: 700;
  font-size: 34px;
  line-height: 2.1;
}
.secMessage__secTit .bg {
  padding: 7px 10px;
  border-radius: 4px;
  background: #fff;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.secMessage__txt {
  font-weight: 700;
  font-size: 18px;
  line-height: 2.4;
  letter-spacing: 0.03em;
}
.secMessage__txt + .secMessage__txt {
  margin-top: 20px;
}
.secMessage-imgBox {
  position: relative;
}
.secMessage-imgBox::after {
  content: "";
  display: block;
  width: 125px;
  aspect-ratio: 125/85;
  background: url("../img/ico_message01.svg") no-repeat center/contain;
  position: absolute;
  left: 2px;
  bottom: 12.5%;
  z-index: -1;
}
.secMessage-imgBox img {
  display: block;
  border-radius: 20px;
}
.secMessage-imgBox img:nth-of-type(1) {
  width: 85.5%;
}
.secMessage-imgBox img:nth-of-type(2) {
  width: 70.5%;
  margin: 40px 0 0 auto;
}
@media screen and (max-width: 768px) {
  .secMessage {
    padding: 60px 0;
  }
  .secMessage-inner {
    display: block;
  }
  .secMessage-txtBox {
    width: 100%;
    margin: 0 auto 40px;
  }
  .secMessage__secTit {
    margin-bottom: 30px;
    font-size: min(5.3vw, 20px);
    line-height: 2.2;
  }
  .secMessage__secTit .bg {
    padding: 5px;
  }
  .secMessage__txt {
    font-size: 15px;
    line-height: 2;
  }
  .secMessage-imgBox::after {
    width: 20%;
    left: 10px;
    bottom: -10px;
  }
  .secMessage-imgBox img {
    border-radius: 10px;
  }
  .secMessage-imgBox img:nth-of-type(2) {
    margin-top: 20px;
  }
}

/*------------------------------------------
	.secJob
------------------------------------------*/
.secJob {
  padding: 60px 0 105px;
  position: relative;
}
.secJob::after {
  content: "";
  display: block;
  width: 100%;
  height: 497px;
  background: url("../img/bg_job01.svg") no-repeat right calc(50% - 145px) center/contain;
  position: absolute;
  top: -265px;
  left: 0;
  z-index: -2;
  pointer-events: none;
}
.secJob__secTit {
  margin-bottom: 55px;
}
.secJob-box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 60px 380px;
  grid-template-columns: 1fr 380px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-column-gap: 60px;
  padding: 60px;
  border-radius: 30px;
  background: #fff;
}
.secJob-box__tit {
  margin-bottom: 35px;
  color: #fff;
  font-weight: 700;
  font-size: 34px;
  line-height: 2.1;
}
.secJob-box__tit .bg {
  padding: 7px 10px;
  border-radius: 4px;
  background: #D3432A;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.secJob-box__img {
  width: 100%;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .secJob {
    padding: 60px 0;
  }
  .secJob::after {
    height: 350px;
    top: -100px;
    background-size: 450px;
    background-position: left -150px top;
  }
  .secJob__secTit {
    margin-bottom: 40px;
  }
  .secJob-box {
    display: block;
    padding: 40px 20px 30px;
    border-radius: 20px;
  }
  .secJob-box-txtBox {
    margin-bottom: 30px;
  }
  .secJob-box__tit {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 2.2;
    text-align: center;
  }
  .secJob-box__tit .bg {
    padding: 5px 10px;
  }
  .secJob-box__img {
    width: min(70%, 250px);
    display: block;
    margin: 0 auto;
    border-radius: 10px;
  }
}

/*------------------------------------------
	.secPoint
------------------------------------------*/
.secPoint {
  padding: 60px 0 100px;
  position: relative;
}
.secPoint::after {
  content: "";
  display: block;
  width: 100%;
  height: 497px;
  background: url("../img/bg_point03.svg") no-repeat left calc(50% - 145px) center/contain;
  position: absolute;
  left: 0;
  top: -125px;
  z-index: -1;
  pointer-events: none;
}
.secPoint__secTit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 100px;
  padding: 0 105px;
  position: relative;
}
.secPoint__secTit::before, .secPoint__secTit::after {
  content: "";
  display: block;
  background: no-repeat center/contain;
  position: absolute;
}
.secPoint__secTit::before {
  width: 87px;
  aspect-ratio: 87/141;
  background-image: url("../img/bg_point01.svg");
  top: -20px;
  left: -25px;
}
.secPoint__secTit::after {
  width: 63px;
  aspect-ratio: 63/156;
  background-image: url("../img/bg_point02.svg");
  top: -35px;
  right: 0;
}
@media screen and (max-width: 768px) {
  .secPoint {
    padding: 60px 0;
  }
  .secPoint::after {
    height: 350px;
    top: -80px;
    background-size: 450px;
    background-position: right -150px top;
  }
  .secPoint__secTit {
    width: 100%;
    margin-bottom: 60px;
    padding: 0;
  }
  .secPoint__secTit::before {
    width: min(8.5vw, 40px);
    left: -10px;
    top: auto;
    bottom: 5px;
  }
  .secPoint__secTit::after {
    width: min(6.5vw, 30px);
    right: -5px;
    top: auto;
    bottom: 0;
  }
}

.secPoint-sec {
  width: min(100%, 924px);
  margin: 0 auto;
}
.secPoint-sec + .secPoint-sec {
  margin-top: 60px;
}
.secPoint-sec-titBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 60px;
}
.secPoint-sec-titBox::after {
  -webkit-box-ordinal-group: -1;
      -ms-flex-order: -2;
          order: -2;
  content: "";
  display: block;
  margin-right: 20px;
  width: 134px;
  aspect-ratio: 134/172;
  background: no-repeat center/contain;
}
.secPoint-sec__tit {
  margin-bottom: 20px;
  color: #fff;
  font-weight: 700;
  font-size: 34px;
  line-height: 2.1;
}
.secPoint-sec__tit .bg {
  padding: 7px 10px;
  border-radius: 4px;
  background: #D3432A;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.secPoint-sec__num {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  color: #D3432A;
  font-size: 22px;
  text-align: center;
  line-height: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 0 10px 10px 0;
}
.secPoint-sec__num-big {
  display: block;
  margin-top: 15px;
  font-size: 92px;
}
.secPoint-sec-list__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 58.5%;
  grid-template-columns: 1fr 58.5%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  grid-column-gap: 30px;
}
.secPoint-sec-list__item + .secPoint-sec-list__item {
  margin-top: 40px;
}
.secPoint-sec-list__tit {
  padding: 16px 0 0 27px;
  font-weight: 900;
  font-size: 33px;
  line-height: 1.5;
  position: relative;
}
.secPoint-sec-list__tit::after {
  content: "";
  display: block;
  width: 54px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #EAE56A;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.secPoint-sec-list__txt {
  padding: 40px;
  background: #fff;
  border-radius: 10px;
}
.secPoint-sec:nth-of-type(1) .secPoint-sec-titBox::after {
  background-image: url("../img/ico_point01.svg");
}
.secPoint-sec:nth-of-type(2) .secPoint-sec-titBox::after {
  background-image: url("../img/ico_point02.svg");
}
.secPoint-sec:nth-of-type(3) .secPoint-sec-titBox::after {
  background-image: url("../img/ico_point03.svg");
}
@media screen and (max-width: 768px) {
  .secPoint-sec + .secPoint-sec {
    margin-top: 80px;
  }
  .secPoint-sec-titBox {
    -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-bottom: 30px;
  }
  .secPoint-sec-titBox::after {
    width: 70px;
  }
  .secPoint-sec__tit {
    width: 100%;
    margin: 10px auto 0;
    font-size: 20px;
    text-align: center;
  }
  .secPoint-sec__tit .bg {
    padding: 5px 10px;
  }
  .secPoint-sec__num {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0;
    gap: 10px;
    font-size: 20px;
  }
  .secPoint-sec__num-big {
    margin: 0 auto 10px 0;
    font-size: 46px;
  }
  .secPoint-sec-list__item {
    display: block;
  }
  .secPoint-sec-list__item + .secPoint-sec-list__item {
    margin-top: 30px;
  }
  .secPoint-sec-list__tit {
    margin-bottom: 15px;
    padding: 10px 0 0 15px;
    font-size: 18px;
  }
  .secPoint-sec-list__tit::after {
    width: 30px;
  }
  .secPoint-sec-list__txt {
    padding: 15px 20px;
  }
}

/*------------------------------------------
	.secTalk
------------------------------------------*/
.secTalk {
  padding: 0 0 100px;
}
.secTalk-bnr {
  width: min(100%, 980px);
  margin: 0 auto;
  border-radius: 30px;
  color: #fff;
  text-align: center;
  position: relative;
}
.secTalk-bnr::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("../img/bg_talk01_pc.webp") no-repeat center/cover;
  border-radius: inherit;
  -webkit-transform: rotate(-1deg);
          transform: rotate(-1deg);
  position: absolute;
  top: 0;
  left: 0;
  -webkit-filter: blur(30px);
          filter: blur(30px);
  opacity: 0.5;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: -1;
}
.secTalk-bnr a {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 290px;
  padding: 0 60px;
  border-radius: inherit;
  background: url("../img/bg_talk01_pc.webp") no-repeat center/cover;
  position: relative;
}
.secTalk-bnr-txtBox {
  width: min(35%, 280px);
  position: relative;
  z-index: 2;
}
.secTalk-bnr__en {
  margin-bottom: 10px;
  font-size: 16px;
}
.secTalk-bnr__tit {
  margin-bottom: 23px;
  font-weight: 900;
  font-size: 38px;
  line-height: 1.3;
}
.secTalk-bnr__more {
  padding: 2px 10px;
  border: 1px solid;
  border-radius: 100px;
  font-weight: 700;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.secTalk-bnr__img {
  width: min(59%, 577px);
  position: absolute;
  right: 40px;
  bottom: -5px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media screen and (min-width: 769px) {
  .secTalk-bnr:hover:after {
    opacity: 0;
  }
  .secTalk-bnr a:hover {
    opacity: 1;
  }
  .secTalk-bnr a:hover .secTalk-bnr__more {
    background: #D3432A;
    border-color: #D3432A;
  }
  .secTalk-bnr a:hover .secTalk-bnr__img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    -webkit-filter: brightness(1.1);
            filter: brightness(1.1);
  }
}
@media screen and (max-width: 768px) {
  .secTalk {
    padding: 60px 0;
  }
  .secTalk-bnr {
    width: min(100%, 320px);
    border-radius: 20px;
  }
  .secTalk-bnr::after {
    -webkit-transform: rotate(-3deg);
            transform: rotate(-3deg);
  }
  .secTalk-bnr a {
    display: block;
    height: auto;
    padding: 50px 20px 0;
    background-image: url("../img/bg_talk01_sp.webp");
  }
  .secTalk-bnr-txtBox {
    width: 100%;
    margin-bottom: 15px;
  }
  .secTalk-bnr__en {
    font-size: 14px;
  }
  .secTalk-bnr__tit {
    margin-bottom: 20px;
    font-size: 32px;
  }
  .secTalk-bnr__more {
    background: #D3432A;
    font-size: 18px;
  }
  .secTalk-bnr__img {
    position: static;
    width: 100%;
    right: 0;
    left: 0;
    margin: auto;
  }
}

.secTalk-content {
  overflow: hidden;
  width: min(100%, 980px);
  margin: 0 auto;
  position: relative;
  border-radius: 30px;
  background: #fff;
}
.secTalk-content-top {
  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;
  height: 310px;
  gap: 10px;
  padding: 0 40px;
  background: url("../img/bg_talk02_pc.webp") no-repeat center/cover;
}
.secTalk-content-top-txtBox {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #fff;
  text-align: center;
}
.secTalk-content-top__en {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 20px;
  padding: 5px 30px;
  border: 1px solid;
  border-radius: 100px;
  font-size: 16px;
}
.secTalk-content-top__tit {
  line-height: 1.1;
  font-weight: 900;
  font-size: 31px;
}
.secTalk-content-top__tit .big {
  display: block;
  margin-top: 5px;
  font-size: 80px;
}
.secTalk-content-top-imgBox {
  width: min(60%, 532px);
  -ms-flex-item-align: end;
      align-self: flex-end;
  overflow: hidden;
}
.secTalk-content-top-imgBox img {
  width: 100%;
  margin-bottom: -5px;
}
.secTalk-content-inner {
  width: min(100% - 40px, 580px);
  margin: 0 auto;
  padding: 80px 0;
}
.secTalk-content-q + .secTalk-content-q {
  margin-top: 80px;
}
.secTalk-content-q__tit {
  margin-bottom: 30px;
  padding: 0 0 25px 60px;
  border-bottom: 4px solid #F9F1E7;
  font-weight: 900;
  font-size: 24px;
  line-height: 1.5;
  position: relative;
}
.secTalk-content-q__tit::after {
  content: "Q";
  display: block;
  color: #D3432A;
  font-size: 40px;
  font-weight: 400;
  font-family: "Rammetto One", sans-serif;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
}
.secTalk-content-q-list__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 90px 30px 1fr;
  grid-template-columns: 90px 1fr;
  grid-column-gap: 30px;
}
.secTalk-content-q-list__item + .secTalk-content-q-list__item {
  margin-top: 30px;
}
.secTalk-content-q-list-imgBox {
  font-size: 14px;
  text-align: center;
}
.secTalk-content-q-list-imgBox img {
  width: 100%;
  border-radius: 50%;
}
.secTalk-content-q-list__txt {
  font-size: 16px;
}
.secTalk-content-q__img {
  display: block;
  margin: 30px auto 0;
  width: 100%;
  border-radius: 20px;
}
.secTalk-content-schedule {
  margin: 100px auto 0;
}
.secTalk-content-schedule__tit {
  margin-bottom: 50px;
  font-weight: 900;
  font-size: 31px;
  text-align: center;
}
.secTalk-content-schedule__tit-en {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 12px;
  padding: 6px 35px;
  border-radius: 100px;
  background: #D3432A;
  color: #fff;
  font-size: 16px;
}
.secTalk-content-schedule-list {
  padding: 80px;
  border: 1px solid #D3432A;
  border-radius: 20px;
}
.secTalk-content-schedule-list__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 90px 30px 1fr;
  grid-template-columns: 90px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-column-gap: 30px;
  padding: 0 0 20px;
  position: relative;
}
.secTalk-content-schedule-list__item::after {
  content: "";
  display: block;
  width: calc(100% - 100px);
  height: 1px;
  background: #D9C9A1;
  position: absolute;
  right: 0;
  bottom: 0;
}
.secTalk-content-schedule-list__item + .secTalk-content-schedule-list__item {
  margin-top: 30px;
}
.secTalk-content-schedule-list__item:last-of-type {
  padding-bottom: 0;
}
.secTalk-content-schedule-list__item:last-of-type::after {
  content: none;
}
.secTalk-content-schedule-list__time {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  padding: 2px;
  border-radius: 100px;
  background: #D3432A;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0.1em;
}
.secTalk-content-schedule-list__txt {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  font-size: 15px;
  line-height: 1.85;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .secTalk-content {
    border-radius: 20px;
  }
  .secTalk-content-top {
    display: block;
    height: auto;
    padding: 50px 20px 0;
    background-image: url("../img/bg_talk02_sp.webp");
  }
  .secTalk-content-top-txtBox {
    margin-bottom: 30px;
  }
  .secTalk-content-top__en {
    font-size: 14px;
  }
  .secTalk-content-top__tit {
    font-size: 28px;
  }
  .secTalk-content-top__tit .big {
    font-size: 60px;
  }
  .secTalk-content-top-imgBox {
    width: 100%;
  }
  .secTalk-content-inner {
    width: 100%;
    padding: 30px 20px;
  }
  .secTalk-content-q + .secTalk-content-q {
    margin-top: 50px;
  }
  .secTalk-content-q__tit {
    margin-bottom: 20px;
    padding: 0 0 13px 45px;
    font-size: 16px;
  }
  .secTalk-content-q__tit::after {
    font-size: 30px;
  }
  .secTalk-content-q-list__item {
    -ms-grid-columns: 60px 20px 1fr;
    grid-template-columns: 60px 1fr;
    grid-column-gap: 20px;
  }
  .secTalk-content-q-list__item + .secTalk-content-q-list__item {
    margin-top: 20px;
  }
  .secTalk-content-q-list-imgBox {
    font-size: 12px;
  }
  .secTalk-content-q-list__txt {
    font-size: 13px;
  }
  .secTalk-content-schedule {
    margin-top: 60px;
  }
  .secTalk-content-schedule__tit {
    margin-bottom: 30px;
    font-size: 22px;
  }
  .secTalk-content-schedule__tit-en {
    margin-bottom: 10px;
    font-size: 12px;
  }
  .secTalk-content-schedule-list {
    padding: 20px;
  }
  .secTalk-content-schedule-list__item {
    -ms-grid-columns: 60px 15px 1fr;
    grid-template-columns: 60px 1fr;
    grid-column-gap: 15px;
    padding-bottom: 15px;
  }
  .secTalk-content-schedule-list__item::after {
    width: calc(100% - 70px);
  }
  .secTalk-content-schedule-list__item + .secTalk-content-schedule-list__item {
    margin-top: 15px;
  }
  .secTalk-content-schedule-list__time {
    font-size: 14px;
  }
  .secTalk-content-schedule-list__txt {
    font-size: 14px;
  }
}

/*	popup - js
------------------------------------------*/
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;
  left: 10px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: #404040;
  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;
}
.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%, 180px);
  height: 44px;
  margin: 50px auto 0;
  padding: 0;
  background: #F9F1E7;
  border-radius: 100px;
  color: #332F21 !important;
  font-weight: 400;
  font-size: 16px;
  font-family: "Rammetto One", sans-serif;
}
@media screen and (min-width: 769px) {
  .mfp-close.modalClose02:hover {
    background: #D3432A;
    color: #fff !important;
  }
}

/*------------------------------------------
	.secFlow
------------------------------------------*/
.secFlow {
  padding: 60px 0 120px;
  background: url("../img/bg_flow01.svg") no-repeat left calc(50% - 280px) bottom 180px;
}
.secFlow-inner {
  max-width: none;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px calc(50% + 100px);
  grid-template-columns: 1fr calc(50% + 100px);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  grid-column-gap: 30px;
  padding: 0;
}
.secFlow-list__item {
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 10px;
  background: #EDE2D3;
}
.secFlow-list__tit {
  margin-bottom: 10px;
  color: #D3432A;
  font-weight: 900;
  font-size: 24px;
}
.secFlow-list__txt {
  line-height: 1.85;
}
.secFlow-list__img {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  width: 100%;
  margin-bottom: 20px;
  border-radius: 10px;
}
.secFlow-nav {
  width: min(100% - 10px, 640px);
  margin: 20px auto 0 0;
  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;
  gap: 20px;
}
@media screen and (min-width: 769px) {
  .secFlow__secTit {
    width: min(100%, 410px);
    margin: 0 0 0 auto;
    text-align: left;
  }
}
@media screen and (max-width: 768px) {
  .secFlow {
    padding: 60px 0;
    background: none;
  }
  .secFlow-inner {
    display: block;
  }
  .secFlow__secTit {
    margin: 0 auto 40px;
  }
  .secFlow-list__item {
    padding: 20px;
  }
  .secFlow-list__tit {
    font-size: 20px;
  }
  .secFlow-nav {
    width: min(100% - 40px, 300px);
    margin: 30px auto 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.my-carousel-progress {
  background: #fff;
  width: min(100%, 180px);
}
.my-carousel-progress-bar {
  background: #D3432A;
  height: 2px;
  -webkit-transition: width 1000ms ease;
  transition: width 1000ms ease;
  width: 0;
}

.js-flow-slider {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .js-flow-slider {
    margin-top: 0;
  }
}
.js-flow-slider .splide__arrows {
  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: 8px;
}
.js-flow-slider .splide__arrow {
  width: 40px;
  height: 40px;
  padding: 0;
  background: #D3432A url("../img/ico_arrow01.svg") no-repeat center;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.js-flow-slider .splide__arrow svg {
  display: none;
}
.js-flow-slider .splide__arrow.splide__arrow--prev {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.js-flow-slider .splide__arrow:hover {
  opacity: 0.7;
}

/*------------------------------------------
	.entryBtn
------------------------------------------*/
.entryBtn {
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  line-height: 1.2;
}
.entryBtn a {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 370px;
  position: relative;
  z-index: 1;
}
.entryBtn a::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("../img/bg_entry01_pc.webp") no-repeat center/cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.entryBtn__en {
  font-size: 80px;
}
@media screen and (min-width: 769px) {
  .entryBtn a:hover {
    opacity: 1;
  }
  .entryBtn a:hover::after {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-filter: brightness(1.1);
            filter: brightness(1.1);
  }
}
@media screen and (max-width: 768px) {
  .entryBtn {
    font-size: 20px;
  }
  .entryBtn a {
    height: 280px;
  }
  .entryBtn a::after {
    background-image: url("../img/bg_entry01_sp.webp");
  }
  .entryBtn__en {
    font-size: 60px;
  }
}

/*------------------------------------------
	.secGallery
------------------------------------------*/
.secGallery {
  padding: 16px 0;
}
.secGallery img {
  width: 100%;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .secGallery {
    padding: 8px 0;
  }
}
/*# sourceMappingURL=style.css.map */