@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: #000;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.05em;
  font-family: "Zen Old Mincho", "游明朝体", YuMincho, "游明朝", "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", 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-gothic {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
}

.f-cormorant {
  font-family: "Cormorant Garamond", serif;
}

.f-cormorantIn {
  font-family: "Cormorant Infant", serif;
}

/*------------------------------------------
	root
------------------------------------------*/
:root {
  --header-height: 90px;
  --inner-width: min(100%, 1080px + (var(--inner-padding) * 2));
  --inner-padding: 10px;
  --color-txt: #444;
  --color-red: #E50012;
  --bg--color: #F8F7F2;
}

@media screen and (max-width: 768px) {
  :root {
    --header-height: 60px;
    --inner-padding: 20px;
  }
}
/*------------------------------------------
	frame
------------------------------------------*/
@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: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 374px) {
  .inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/*------------------------------------------
	scroll action (GSAP制御)
------------------------------------------*/
.js-scroll {
  /* 初期状態のみ定義（GSAPがアニメーションを制御） */
  opacity: 0;
  -webkit-transform: translate(0, 100px);
          transform: translate(0, 100px);
  -webkit-filter: blur(10px);
          filter: blur(10px);
  /*------------------------------------------
    フェードインアップ
  ------------------------------------------*/
  /*------------------------------------------
    フェードインのみ
  ------------------------------------------*/
}
.js-scroll.is-fadeInUp {
  opacity: 0;
  -webkit-transform: translate(0, 100px);
          transform: translate(0, 100px);
  -webkit-filter: blur(10px);
          filter: blur(10px);
}
@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;
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/*============================================================================================================
	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;
  gap: 20px;
}
.l-header__logo 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;
  height: 100%;
}
.l-header-entry {
  position: relative;
  z-index: 9992;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: min(100% - 200px, 140px);
  margin: 0 40px 0 auto;
}
.l-header-entry__btn {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #fff;
  font-size: 15px;
  line-height: 1.3;
  text-align: center;
  letter-spacing: 0;
}
.l-header-entry__btn 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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 48px;
  background: var(--color-red);
  border: 1px solid var(--color-red);
}
.l-header-entry__btn-en {
  margin-top: 3px;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.1em;
}
.l-header-entry__btn:nth-of-type(2) a {
  background: var(--color-red);
  border-color: var(--color-red);
}
.l-header-entry__btn:nth-of-type(3) a {
  background: var(--color-red);
  border-color: var(--color-red);
}
.l-header.is-scroll .gnavBtn span {
  background: #3A3A3A;
}
@media screen and (max-width: 1120px) {
  .l-header .l-header__logo__txt {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .l-header {
    position: fixed;
    z-index: 9990;
    top: 0;
    left: 0;
    height: 90px;
    padding: 0 50px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .l-header-entry {
    position: fixed;
    right: 0;
  }
  .l-header-entry__btn .hidden-sp {
    display: contents;
  }
  .l-header-entry__btn a:hover {
    opacity: 1;
    background: #fff;
    color: var(--color-red);
  }
  .l-header-entry__btn:nth-of-type(2) a:hover {
    color: var(--color-red);
  }
  .l-header-entry__btn:nth-of-type(3) a:hover {
    color: var(--color-red);
  }
  .l-header.is-scroll {
    height: 70px;
    background: #fff;
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
  }
  .l-header.is-scroll .gnavBtn {
    top: 0;
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    height: 60px;
    padding-left: 15px;
  }
  .l-header__logo {
    gap: 16px;
  }
  .l-header__logo__txt {
    width: 120px !important;
  }
  .l-header__logo img {
    width: 90px;
  }
  .l-header-entry {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    margin: 0;
    border-top: 1px solid #fff;
  }
  .l-header-entry__btn {
    font-size: 12px;
  }
  .l-header-entry__btn-en {
    font-size: 15px;
  }
}

/*============================================================================================================
	footer
============================================================================================================*/
.l-footer {
  padding: 0;
  background: #000;
  position: relative;
}
.l-footer p, .l-footer li {
  line-height: 1.8;
  letter-spacing: 0;
  font-family: "Zen Old Mincho", "游明朝体", YuMincho, "游明朝", "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", 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: 980px;
  margin: 0 auto;
  padding: 40px 0;
}
.l-footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto 25px;
  padding: 0;
  gap: 20px 0;
}
.l-footer-nav__item {
  list-style: none;
  color: #fff;
  font-size: 14px;
  text-align: center;
}
.l-footer-nav__item + .l-footer-nav__item {
  position: relative;
}
.l-footer-nav__item + .l-footer-nav__item::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 1px;
  height: 70%;
  background: #fff;
  margin: auto;
}
.l-footer-nav__item a {
  display: block;
  padding: 0 20px;
  color: inherit;
  text-decoration: none;
}
.l-footer-nav__item a:hover {
  opacity: 1;
  text-decoration: underline;
}
.l-footer-copyright {
  margin: 0;
  color: #fff !important;
  font-weight: 500;
  font-size: 11px;
  font-family: "Zen Old Mincho", serif !important;
  text-align: center;
  letter-spacing: 0.1em !important;
}
@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 20px;
  }
  .l-footer-nav__item {
    border-bottom: 1px dashed #fff;
    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: 30px;
  bottom: 30px;
  border-radius: 50%;
  text-indent: 100%;
  font-size: 10px;
  white-space: nowrap;
  overflow: hidden;
  z-index: 9000;
}
.pagetop a {
  width: 100%;
  height: 100%;
  display: block;
  background: var(--color-red);
  border-radius: inherit;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff !important;
  position: relative;
}
.pagetop a::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  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: 65px;
  }
  .pagetop a::after {
    width: 10px;
    height: 10px;
  }
}

/*============================================================================================================
	nav
============================================================================================================*/
.gnavBtn {
  overflow: hidden;
  cursor: pointer;
  width: 75px;
  height: 75px;
  position: fixed;
  z-index: 9992;
  top: 8px;
  right: 30px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.gnavBtn:hover {
  opacity: 0.7;
}
.gnavBtn span {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 50px;
  height: 1px;
  background: #000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.gnavBtn span:nth-of-type(1) {
  top: 30px;
}
.gnavBtn span:nth-of-type(2) {
  bottom: 30px;
}
.gnavBtn.is-close span {
  background: #3A3A3A;
}
.gnavBtn.is-close span:nth-of-type(1) {
  -webkit-transform: translateY(6px) rotate(-200deg);
          transform: translateY(6px) rotate(-200deg);
}
.gnavBtn.is-close span:nth-of-type(2) {
  -webkit-transform: translateY(-7px) rotate(200deg);
          transform: translateY(-7px) rotate(200deg);
}
@media screen and (min-width: 769px) {
  .gnavBtn {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .gnavBtn {
    width: 60px;
    height: 60px;
    top: 0;
    right: 10px;
  }
  .gnavBtn span {
    width: 50px;
  }
  .gnavBtn span:nth-of-type(1) {
    top: 25px;
  }
  .gnavBtn span:nth-of-type(2) {
    bottom: 25px;
  }
  .gnavBtn.is-close span:nth-of-type(1) {
    -webkit-transform: translateY(5px) rotate(-200deg);
            transform: translateY(5px) rotate(-200deg);
  }
  .gnavBtn.is-close span:nth-of-type(2) {
    -webkit-transform: translateY(-4px) rotate(200deg);
            transform: translateY(-4px) rotate(200deg);
  }
}

.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 50px;
  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 {
  border-bottom: 1px solid var(--color-red);
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.l-nav-list__item:last-of-type {
  margin-bottom: 0;
}
.l-nav-list__item a {
  display: block;
  padding: 10px 20px 10px 0;
  position: relative;
}
.l-nav-list__item a::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--color-red);
  border-bottom: 2px solid var(--color-red);
  -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;
  font-weight: 300;
  font-size: 30px;
  letter-spacing: 0;
}
.l-nav-list__item-en::first-letter {
  color: var(--color-red);
}
.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-red);
  }
  .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: 70px 20px 100px;
  }
  .l-nav-list__item {
    margin-bottom: 20px;
    font-size: 14px;
  }
  .l-nav-list__item-en {
    font-size: 20px;
  }
}

/* PC用：ナビ常時表示＋英字非表示 ＋ オーバーレイ無効 */
@media screen and (min-width: 769px) {
  /* ナビ本体を通常レイアウトに */
  .l-nav {
    position: fixed;
    top: auto;
    right: 200px;
    width: auto;
    height: auto;
    margin: 0 0 0 auto;
    background: transparent;
    -webkit-transition: none;
    transition: none;
  }
  .l-nav-inner {
    padding: 0;
    height: auto;
    overflow: visible;
    background: none;
  }
  .l-nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
  }
  .l-nav-list__item {
    margin-bottom: 0;
    border-bottom: none;
    font-size: 15px;
    letter-spacing: 0;
  }
  .l-nav-list__item a {
    padding: 0;
  }
  .l-nav-list__item a::after {
    display: none;
  }
  /* 英字はPCでは非表示 */
  .l-nav-list__item-en {
    display: none;
  }
  /* オーバーレイはPCでは使わない */
  .js-nav-overlay,
  .l-nav-overlay {
    display: none !important;
  }
}
/*============================================================================================================
	.l-mv
============================================================================================================*/
.l-mv {
  position: relative;
  margin-top: 114px;
}
.l-mv img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .l-mv {
    margin-top: 0;
  }
}

/*============================================================================================================
	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;
  text-align: center;
  color: #000;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.04em;
}
.c-tit01__en {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin-top: 10px;
  color: #000;
  font-weight: 400;
  font-size: 86px;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0;
  line-height: 1.2;
}
.c-tit01__en::first-letter {
  color: var(--color-red);
}
.c-tit01.is-left {
  text-align: left;
}
@media screen and (max-width: 768px) {
  .c-tit01 {
    font-size: 14px;
  }
  .c-tit01__en {
    margin-bottom: 16px;
    font-size: 44px;
  }
}

.js-tab-content {
  display: none;
}
.js-tab-content.is-show {
  display: block;
  -webkit-animation: tabFadeIn 0.6s ease forwards;
          animation: tabFadeIn 0.6s ease forwards;
}

@-webkit-keyframes tabFadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    -webkit-filter: blur(6px);
            filter: blur(6px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}

@keyframes tabFadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    -webkit-filter: blur(6px);
            filter: blur(6px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
.btn-modal-entry {
  margin: 56px auto 0;
  width: min(100%, 250px);
}
.btn-modal-entry__item {
  border-bottom: 1px solid #E5E5E5;
  font-size: 15px;
  letter-spacing: 0;
}
.btn-modal-entry__item a {
  padding: 0 70px 20px 20px;
  display: block;
  color: #000 !important;
  position: relative;
}
.btn-modal-entry__item a::after {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  background: url("../img/ico_arrow02.svg") no-repeat center/contain;
  position: absolute;
  top: -5px;
  right: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 769px) {
  .btn-modal-entry__item a::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: -1px;
    left: 0;
    background: var(--color-red);
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
    pointer-events: none;
  }
  .btn-modal-entry__item a:hover {
    opacity: 1;
    color: var(--color-red) !important;
  }
  .btn-modal-entry__item a:hover::before {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
}
@media screen and (max-width: 768px) {
  .btn-modal-entry {
    display: block;
    max-width: none;
    width: min(100%, 220px);
    margin: 30px auto 0 !important;
  }
  .btn-modal-entry__item + .btn-modal-entry__item {
    margin-top: 30px;
  }
  .btn-modal-entry__item a {
    padding: 0 0 15px;
  }
}

/*	popup - js
------------------------------------------*/
body .mfp-bg {
  z-index: 9991;
  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: #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;
}
@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-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  width: min(100% - 40px, 310px);
  height: 40px;
  margin: 20px auto 0;
  padding: 0;
  font-weight: 400;
  font-size: 16px;
  font-family: inherit;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 769px) {
  .mfp-close.modalClose02:hover {
    opacity: 0.7;
  }
}

.modalClose02__img {
  width: 20px;
}

/*	js - splide
------------------------------------------*/
.c-slider01-nav {
  width: min(100% - var(--inner-padding) * 2, 288px);
  margin: 24px 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;
}
.c-slider01-nav .my-carousel-progress {
  background: #EAEAEA;
}
.c-slider01-nav .my-carousel-progress-bar {
  background: var(--color-red);
  height: 2px;
  -webkit-transition: width 1000ms ease;
  transition: width 1000ms ease;
  width: 0;
}
.c-slider01-nav .splide__arrows {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 8px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 8px;
}
.c-slider01-nav .splide__arrow {
  cursor: pointer;
  width: 100%;
  aspect-ratio: 1/1;
  padding: 0;
  background: var(--color-red);
  border: 1px solid var(--color-red);
  border-radius: 50%;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-slider01-nav .splide__arrow svg {
  display: none;
}
.c-slider01-nav .splide__arrow::before {
  content: "";
  display: block;
  width: 17px;
  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;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-slider01-nav .splide__arrow.splide__arrow--prev {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.c-slider01-nav .splide__arrow:hover {
  background: #fff;
}
.c-slider01-nav .splide__arrow:hover::before {
  background: var(--color-red);
}

/*------------------------------------------
	.secMessage
------------------------------------------*/
.secMessage {
  padding-block: 180px 160px;
}
.secMessage-inner {
  max-width: 1080px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 42.5% 65px min(69.5% - 20px, 704px);
  grid-template-columns: 42.5% min(69.5% - 20px, 704px);
  -ms-grid-rows: auto 1fr;
  grid-template-rows: auto 1fr;
  grid-column-gap: 65px;
      grid-template-areas: "secTit img" "txtBox img";
}
.secMessage__secTit {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  margin-bottom: 64px;
  grid-area: secTit;
}
.secMessage-txtBox {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: txtBox;
}
.secMessage-imgBox {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 3;
  grid-area: img;
  margin-top: 10px;
  position: relative;
}
.secMessage-imgBox::before {
  content: "";
  display: block;
  position: absolute;
  top: 15%;
  left: 15%;
  width: 100%;
  height: 592px;
  background: var(--bg--color);
  z-index: -1;
}
.secMessage-imgBox img {
  display: block;
}
.secMessage__txt {
  font-weight: 400;
  font-size: 19px;
  line-height: 204%;
  letter-spacing: 0;
}
.secMessage__txt span {
  font-weight: 700;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(75%, transparent), color-stop(75%, rgba(229, 0, 18, 0.1)));
  background: linear-gradient(transparent 75%, rgba(229, 0, 18, 0.1) 75%);
}
.secMessage__txt + .secMessage__txt {
  margin-top: 32px;
}
.secMessage__img {
  width: 100%;
}
.secMessage-point {
  margin-top: 120px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 300px 780px;
  grid-template-columns: 300px 780px;
  background: linear-gradient(135deg, rgb(255, 255, 255) 5%, var(--bg--color) 3%, var(--bg--color) 95%, rgb(255, 255, 255) 95%);
}
.secMessage-point__secTit {
  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;
  text-align: center;
  font-size: 24px;
  line-height: 200%;
  letter-spacing: 0;
  padding: 0 42px;
  width: 100%;
}
.secMessage-point-list {
  background: #FBFBF9;
  padding: 42px 64px;
}
.secMessage-point-list__item {
  font-size: 18px;
  line-height: 200%;
  letter-spacing: 0;
  position: relative;
  padding-left: 40px;
  font-weight: 500;
}
.secMessage-point-list__item + .secMessage-point-list__item {
  margin-top: 10px;
}
.secMessage-point-list__item::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url("../img/ico_check.svg") no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 0.2em;
}
@media screen and (max-width: 768px) {
  .secMessage {
    padding-block: 80px 60px;
    overflow: hidden;
  }
  .secMessage-inner {
    display: block;
  }
  .secMessage__secTit {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    margin-bottom: 40px;
    grid-area: secTit;
  }
  .secMessage__txt {
    font-weight: 400;
    font-size: 15px;
    line-height: 200%;
    letter-spacing: 0;
  }
  .secMessage__txt span {
    font-weight: 700;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(75%, transparent), color-stop(75%, rgba(229, 0, 18, 0.1)));
    background: linear-gradient(transparent 75%, rgba(229, 0, 18, 0.1) 75%);
  }
  .secMessage__txt + .secMessage__txt {
    margin-top: 32px;
  }
  .secMessage__img {
    margin-top: 40px;
    width: 100%;
  }
  .secMessage-imgBox::before {
    content: "";
    display: block;
    position: absolute;
    top: 15%;
    left: 15%;
    width: 100%;
    height: 64%;
    background: var(--bg--color);
    z-index: -1;
  }
  .secMessage-imgBox img {
    display: block;
  }
  .secMessage-point {
    margin-top: 80px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .secMessage-point__secTit {
    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;
    text-align: center;
    font-size: 20px;
    line-height: 200%;
    letter-spacing: 0;
    padding: 24px;
    width: 100%;
  }
  .secMessage-point-list {
    background: #FBFBF9;
    padding: 24px 20px;
  }
  .secMessage-point-list__item {
    font-size: 15px;
    line-height: 185%;
    letter-spacing: 0;
    position: relative;
    padding-left: 40px;
    font-weight: 500;
  }
  .secMessage-point-list__item + .secMessage-point-list__item {
    margin-top: 16px;
  }
  .secMessage-point-list__item::before {
    content: "";
    width: 24px;
    height: 24px;
    background: url("../img/ico_check.svg") no-repeat center/contain;
    position: absolute;
    left: 0;
    top: 0.2em;
  }
}

/*------------------------------------------
	.secJob
------------------------------------------*/
.secJob {
  padding-block: 140px 120px;
  background: var(--bg--color);
}
.secJob__secTit {
  margin-bottom: 80px;
}
.secJob-search {
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
}
.secJob-search img {
  width: 100%;
  text-align: center;
  margin: 0 auto;
}
.secJob-entry {
  margin: 56px auto 0;
  width: min(100%, 250px);
}
.secJob-entry__item {
  border-bottom: 1px solid #E5E5E5;
  font-size: 15px;
  letter-spacing: 0;
}
.secJob-entry__item a {
  padding: 0 70px 20px 20px;
  display: block;
  color: #000 !important;
  position: relative;
}
.secJob-entry__item a::after {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  background: url("../img/ico_arrow02.svg") no-repeat center/contain;
  position: absolute;
  top: -5px;
  right: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 769px) {
  .secJob-entry__item a::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: -1px;
    left: 0;
    background: var(--color-red);
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
    pointer-events: none;
  }
  .secJob-entry__item a:hover {
    opacity: 1;
    color: var(--color-red) !important;
  }
  .secJob-entry__item a:hover::before {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
}
@media screen and (max-width: 768px) {
  .secJob {
    padding-block: 80px 60px;
  }
  .secJob__secTit {
    margin-bottom: 40px;
  }
  .secJob-entry {
    display: block;
    max-width: none;
    width: min(100%, 220px);
    margin: 30px auto 0 !important;
  }
  .secJob-entry__item + .secJob-entry__item {
    margin-top: 30px;
  }
  .secJob-entry__item a {
    padding: 0 0 15px;
  }
}
.secJob-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 26px 1fr 26px 1fr 26px 1fr;
  grid-template-columns: repeat(4, 1fr);
  -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;
  gap: 26px;
  margin: 64px auto 0;
}
.secJob-list__item {
  border-bottom: 1px solid #E5E5E5;
  font-size: 15px;
  letter-spacing: 0;
  line-height: 1.45;
}
.secJob-list__item a {
  padding: 0 70px 0 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000 !important;
  position: relative;
  min-height: 62px;
}
.secJob-list__item a::after {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  background: url("../img/ico_arrow02.svg") no-repeat center/contain;
  position: absolute;
  top: 13px;
  right: 24px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 769px) {
  .secJob-list__item a::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: -1px;
    left: 0;
    background: var(--color-red);
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
    pointer-events: none;
  }
  .secJob-list__item a:hover {
    opacity: 1;
    color: var(--color-red) !important;
  }
  .secJob-list__item a:hover::before {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
}
@media screen and (max-width: 768px) {
  .secJob-list {
    width: 100%;
    -ms-grid-columns: 1fr 8px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin: 40px 0 0 !important;
  }
  .secJob-list__item {
    font-size: 13px;
  }
  .secJob-list__item + .secJob-list__item {
    margin-top: 0;
  }
  .secJob-list__item a {
    padding: 0;
    min-height: 48px;
  }
  .secJob-list__item a::after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background: url("../img/ico_arrow02.svg") no-repeat center/contain;
    position: absolute;
    top: 16px;
    right: 12px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}

.secJob-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
  gap: 20px;
}
.secJob-btns__item {
  width: 50%;
  height: 66px;
  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-bottom: 2px solid #DDD;
  color: #9B9B9B;
  font-size: 19px;
  text-align: center;
  cursor: pointer;
}
.secJob-btns__item.is-active {
  border-bottom: 4px solid var(--color-red);
  color: #312B2B;
  font-weight: 700;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .secJob-btns {
    gap: 8px;
    margin-bottom: 30px;
  }
  .secJob-btns__item {
    font-size: 14px;
    line-height: 145%;
  }
}

.secJob-content {
  padding: 80px;
  background: #fff;
}
.secJob-content-titBox {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 580px;
  grid-template-columns: 1fr 580px;
}
.secJob-content-titBox__tit {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0;
  position: relative;
  -ms-flex-item-align: start;
      -ms-grid-row-align: start;
      align-self: start;
  padding-bottom: 20px;
}
.secJob-content-titBox__tit::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 4px;
  background-color: var(--color-red);
}
.secJob-content-titBox__txt {
  font-size: 18px;
  line-height: 185%;
  letter-spacing: 0;
}
.secJob-content-list {
  margin-top: 80px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.secJob-content-list__item {
  background: var(--bg--color);
}
.secJob-content-list__num {
  font-size: 14px;
  color: var(--color-red);
  line-height: 140%;
  letter-spacing: 0;
}
.secJob-content-list__tit {
  margin-top: 10px;
  font-size: 24px;
  line-height: 155%;
  letter-spacing: 0;
}
.secJob-content-list__txt {
  margin-top: 16px;
  font-size: 15px;
  line-height: 185%;
  letter-spacing: 0;
}
.secJob-content-txtBox {
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .secJob-content {
    padding: 40px 20px;
  }
  .secJob-content-titBox {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .secJob-content-titBox__tit {
    font-size: 21px;
    font-weight: 600;
    letter-spacing: 0;
    position: relative;
    -ms-flex-item-align: start;
        -ms-grid-row-align: start;
        align-self: start;
    padding-bottom: 10px;
  }
  .secJob-content-titBox__tit::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-red);
  }
  .secJob-content-titBox__txt {
    margin-top: 20px;
    font-size: 15px;
    line-height: 185%;
    letter-spacing: 0;
  }
  .secJob-content-list {
    margin-top: 40px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .secJob-content-list__num {
    font-size: 12px;
    color: var(--color-red);
    line-height: 140%;
    letter-spacing: 0;
  }
  .secJob-content-list__tit {
    margin-top: 10px;
    font-size: 18px;
    line-height: 155%;
    letter-spacing: 0;
  }
  .secJob-content-list__txt {
    margin-top: 16px;
    font-size: 14px;
    line-height: 185%;
    letter-spacing: 0;
  }
  .secJob-content-txtBox {
    padding: 24px;
  }
}

/*------------------------------------------
	.secInterview
------------------------------------------*/
.secInterview {
  padding-block: 140px;
}
.secInterview__secTit {
  margin-bottom: 80px;
}
.secInterview-list {
  max-width: 1080px;
  margin: 0 auto;
}
.secInterview-listWrap {
  display: -ms-grid !important;
  display: grid !important;
  -ms-grid-columns: 1fr 45px 1fr 45px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}
.secInterview-list__item a {
  display: block;
}
.secInterview-list-imgBox {
  overflow: hidden;
  margin-bottom: -20px;
  border-radius: 50%;
  padding: 0 15px;
}
.secInterview-list-imgBox img {
  width: 100%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.secInterview-list-txtBox {
  position: relative;
}
.secInterview-list__at {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 10px;
  padding: 5px 10px;
  background: var(--bg--color);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  position: absolute;
  left: 0;
  bottom: calc(100% + 15px);
}
.secInterview-list__tit {
  width: 100%;
  color: #fff;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0;
  line-height: 2.2;
}
.secInterview-list__tit .bg {
  padding: 6px 16px;
  background: var(--color-red);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.secInterview-list__label {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 600;
}
.secInterview-list__prof {
  font-size: 14px;
  letter-spacing: 0;
}
.secInterview-list__name {
  font-size: 16px;
  letter-spacing: 0;
  margin-top: 24px;
}
.secInterview-list__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 7px;
}
.secInterview-list__btnWrap {
  position: absolute;
  right: 50px;
  bottom: 7px;
}
.secInterview-list__ico {
  width: 40px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #D9D9D9;
  color: var(--color-red);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  right: -50px;
  bottom: -7px;
}
.secInterview-list__ico::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: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.secInterview-list .c-slider01-nav {
  margin-top: 60px;
}
@media screen and (min-width: 769px) {
  .secInterview-list__item a:hover {
    opacity: 1;
    color: var(--color-red);
  }
  .secInterview-list__item a:hover .secInterview-list-imgBox img {
    border-radius: 50%;
    -webkit-filter: brightness(0.7);
            filter: brightness(0.7);
  }
  .secInterview-list__item a:hover .secInterview-list__ico {
    background: #fff;
  }
}
@media screen and (max-width: 768px) {
  .secInterview {
    margin-bottom: 0;
    padding-block: 80px;
  }
  .secInterview__secTit {
    margin-bottom: 40px;
  }
  .secInterview-list {
    max-width: auto;
  }
  .secInterview-listWrap {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    gap: 0;
  }
  .secInterview-list-imgBox {
    margin-bottom: -30px;
  }
  .secInterview-list__tit {
    font-size: 18px;
    bottom: calc(100% + 10px);
  }
  .secInterview-list__tit .bg {
    padding: 5px 10px;
  }
  .secInterview-list__at {
    font-size: 15px;
  }
  .secInterview-list__prof {
    font-size: 12px;
  }
  .secInterview-list__ico {
    width: 35px;
  }
  .secInterview-list .c-slider01-nav {
    margin-top: 30px;
  }
}

.secInterview-content {
  width: min(100%, 800px);
  margin: 0 auto;
  padding: 0 0 60px;
  background: #fff;
  position: relative;
}
.secInterview-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;
  gap: 36px;
  margin-bottom: 20px;
  padding: 40px 60px 40px;
}
.secInterview-content-top__img {
  width: 45.59%;
}
.secInterview-content-top-txtBox {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0;
  position: relative;
  z-index: 2;
}
.secInterview-content-top__at {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 10px;
  padding: 5px 10px;
  background: var(--bg--color);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  bottom: calc(100% + 15px);
}
.secInterview-content-top__tit {
  width: 100%;
  color: #fff;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0;
  line-height: 2.2;
}
.secInterview-content-top__tit .bg {
  padding: 6px 16px;
  background: var(--color-red);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.secInterview-content-top__label {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 600;
}
.secInterview-content-top__prof {
  font-size: 14px;
  letter-spacing: 0;
}
.secInterview-content-top__name {
  font-size: 16px;
  letter-spacing: 0;
  margin-top: 24px;
}
.secInterview-content-top__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 7px;
}
.secInterview-content-top__btnWrap {
  position: absolute;
  right: 50px;
  bottom: 7px;
}
.secInterview-content-inner {
  width: min(100% - 60px, 680px);
  margin: 0 auto;
}
.secInterview-content-q {
  margin-bottom: 40px;
}
.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: 0 0 0 60px;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.55;
  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-red);
  color: #fff;
  font-weight: 400;
  font-size: 19px;
  font-family: "Cormorant Garamond", sans-serif;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.secInterview-content-q-txtBox {
  margin-bottom: 24px;
  padding: 40px;
  background: var(--bg--color);
  font-size: 15px;
  font-weight: 500;
}
.secInterview-content-q-txtBox:last-of-type {
  margin-bottom: 0;
}
.secInterview-content-q__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto 10px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .secInterview-content {
    padding-bottom: 40px;
  }
  .secInterview-content-top {
    margin-bottom: 40px;
    display: block;
    padding: 20px 10px 0;
  }
  .secInterview-content-top__img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 70%;
    margin: 0 auto;
  }
  .secInterview-content-top-txtBox {
    width: calc(100% - 20px);
    margin: -30px auto 0;
    text-align: center;
  }
  .secInterview-content-top__at {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 10px;
    padding: 5px 10px;
    background: var(--bg--color);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.08em;
    line-height: 1.5;
    bottom: calc(100% + 15px);
  }
  .secInterview-content-top__tit {
    width: 100%;
    color: #fff;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 0;
    line-height: 2.2;
  }
  .secInterview-content-top__tit .bg {
    padding: 6px 16px;
    background: var(--color-red);
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
  }
  .secInterview-content-top__label {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 600;
  }
  .secInterview-content-top__prof {
    font-size: 14px;
    letter-spacing: 0;
  }
  .secInterview-content-top__name {
    font-size: 16px;
    letter-spacing: 0;
    margin-top: 16px;
  }
  .secInterview-content-top__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-top: 7px;
  }
  .secInterview-content-top__btnWrap {
    position: absolute;
    right: 50px;
    bottom: 7px;
  }
  .secInterview-content-inner {
    width: 100%;
    padding: 0 20px;
  }
  .secInterview-content-q {
    margin-bottom: 20px;
  }
  .secInterview-content-q__tit {
    min-height: 35px;
    margin-bottom: 15px;
    padding-left: 50px;
    font-size: 15px;
  }
  .secInterview-content-q__tit::after {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  .secInterview-content-q-txtBox {
    margin-bottom: 30px;
    padding: 20px;
    font-size: 13px;
  }
}

/*------------------------------------------
	.secEnvironment
------------------------------------------*/
.secEnvironment {
  padding-block: 140px;
  background: var(--bg--color);
}
.secEnvironment__secTit {
  margin-bottom: 80px;
}
.secEnvironment__subTit {
  font-size: 22px;
  letter-spacing: 0;
  font-weight: 600;
  display: inline-block;
  position: relative;
  margin-bottom: 40px;
}
.secEnvironment__subTit::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -80px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 60px;
  height: 1px;
  background: var(--color-red);
}
.secEnvironment-content {
  display: -ms-grid;
  display: grid;
  gap: 96px;
}
.secEnvironment-data-list, .secEnvironment-system-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 45px 1fr 45px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}
.secEnvironment-follow-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 50px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}
.secEnvironment-follow-list__item {
  background: #fff;
}
.secEnvironment-follow-list-txtBox {
  padding: 40px;
}
.secEnvironment-follow__tit {
  font-size: 24px;
  line-height: 155%;
  letter-spacing: 0;
}
.secEnvironment-follow__tit span {
  color: var(--color-red);
}
.secEnvironment-follow__txt {
  font-size: 15px;
  line-height: 185%;
  letter-spacing: 0;
  margin-top: 24px;
}
.secEnvironment-step {
  padding: 64px 40px 40px;
  background: #fff;
}
.secEnvironment-step__tit {
  font-size: 24px;
  line-height: 155%;
  letter-spacing: 0;
  text-align: center;
  font-weight: 600;
}
.secEnvironment-step__tit span {
  color: var(--color-red);
}
.secEnvironment-step__txt {
  font-size: 18px;
  line-height: 185%;
  letter-spacing: 0;
  text-align: center;
  margin-top: 40px;
}
.secEnvironment-step-scroll {
  margin-top: 30px;
}
.secEnvironment-step-scroll__tit {
  margin-bottom: -56px;
  padding: 4px 0 14px 20px;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0;
  position: relative;
}
.secEnvironment-step-scroll__tit::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
}
.secEnvironment-step-scroll__tit::before {
  width: 3px;
  height: calc(100% - 10px);
  background: var(--color-red);
  top: 0;
}
.secEnvironment-step-note {
  margin-top: 30px;
  text-align: center;
  padding: 40px;
  background: var(--bg--color);
}
.secEnvironment-step-note__txt {
  font-size: 18px;
  line-height: 185%;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .secEnvironment {
    padding-block: 80px;
  }
  .secEnvironment__secTit {
    margin-bottom: 40px;
  }
  .secEnvironment__subTit {
    font-size: 16px;
    letter-spacing: 0;
    font-weight: 600;
    display: inline-block;
    position: relative;
    margin-bottom: 20px;
  }
  .secEnvironment__subTit::before {
    right: -50px;
    width: 30px;
  }
  .secEnvironment-content {
    display: -ms-grid;
    display: grid;
    gap: 48px;
  }
  .secEnvironment-data-list, .secEnvironment-system-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .secEnvironment-data-list__item, .secEnvironment-system-list__item {
    padding: 0 24px;
  }
  .secEnvironment-follow-list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .secEnvironment-follow-list__item {
    background: #fff;
  }
  .secEnvironment-follow-list-txtBox {
    padding: 24px;
  }
  .secEnvironment-follow__tit {
    font-size: 21px;
    line-height: 155%;
    letter-spacing: 0;
  }
  .secEnvironment-follow__tit span {
    color: var(--color-red);
  }
  .secEnvironment-follow__txt {
    font-size: 14px;
    line-height: 185%;
    letter-spacing: 0;
    margin-top: 18px;
  }
  .secEnvironment-step {
    padding: 30px 24px 30px;
    background: #fff;
    overflow-x: auto;
  }
  .secEnvironment-step__tit {
    font-size: 21px;
    line-height: 155%;
    letter-spacing: 0;
    text-align: center;
    font-weight: 600;
  }
  .secEnvironment-step__tit span {
    color: var(--color-red);
  }
  .secEnvironment-step__txt {
    font-size: 15px;
    text-align: left;
    margin-top: 40px;
  }
  .secEnvironment-step-scroll {
    margin-top: 30px;
  }
  .secEnvironment-step-scroll__tit {
    margin-bottom: 0;
    padding: 4px 0 14px 20px;
    font-weight: 600;
    font-size: 20px;
  }
  .secEnvironment-step-note {
    margin-top: 30px;
    text-align: left;
    padding: 24px;
  }
  .secEnvironment-step-note__txt {
    font-size: 14px;
  }
}

/*	.secEnvironment-step-scroll
------------------------------------------*/
@media screen and (max-width: 768px) {
  .secEnvironment-step-scroll-imgBox img {
    width: 100%;
  }
}

/* js - scroll hint
------------------------------------------*/
@media screen and (max-width: 768px) {
  .js-scrollable {
    margin-right: calc(var(--inner-padding) * -1);
    padding-right: var(--inner-padding);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .js-scrollable-in {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    display: inline-block;
  }
}

/*------------------------------------------
	.secSearch
------------------------------------------*/
.secSearch {
  padding-block: 140px 180px;
}
.secSearch__secTit {
  margin-bottom: 80px;
}
.secSearch-areaWrap {
  margin: -70px auto auto !important;
}
.secSearch-area__tit {
  font-size: 22px;
  letter-spacing: 0;
  font-weight: 600;
  display: inline-block;
  position: relative;
}
.secSearch-area__tit::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -80px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 60px;
  height: 1px;
  background: var(--color-red);
}
.secSearch-entry {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -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;
  gap: 40px;
  max-width: 920px;
  margin: 64px auto 0;
}
.secSearch-entry__item {
  border-bottom: 1px solid #E5E5E5;
  font-size: 19px;
  letter-spacing: 0;
}
.secSearch-entry__item a {
  padding: 0 70px 15px 28px;
  display: block;
  color: #000 !important;
  position: relative;
}
.secSearch-entry__item a::after {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  background: url("../img/ico_arrow02.svg") no-repeat center/contain;
  position: absolute;
  top: 0;
  right: 24px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 769px) {
  .secSearch-entry__item a::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: -1px;
    left: 0;
    background: var(--color-red);
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
    pointer-events: none;
  }
  .secSearch-entry__item a:hover {
    opacity: 1;
    color: var(--color-red) !important;
  }
  .secSearch-entry__item a:hover::before {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
}
@media screen and (max-width: 768px) {
  .secSearch {
    padding-block: 80px 80px;
  }
  .secSearch__secTit {
    margin-bottom: 40px;
  }
  .secSearch-areaWrap {
    margin: 40px auto auto !important;
  }
  .secSearch-area__tit {
    font-size: 18px;
  }
  .secSearch-entry {
    display: block;
    max-width: none;
    width: 100%;
    margin: 40px auto 40px !important;
  }
  .secSearch-entry__item {
    font-size: 15px;
  }
  .secSearch-entry__item + .secSearch-entry__item {
    margin-top: 30px;
  }
  .secSearch-entry__item a {
    padding: 0 40px 15px 12px;
  }
  .secSearch-entry__item a::after {
    right: 12px;
  }
}

/*------------------------------------------
	.secGallery
------------------------------------------*/
.secGallery {
  padding-top: 10px;
}
.secGallery img {
  width: 100%;
}
/*# sourceMappingURL=style.css.map */