@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ol, ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

img, video, iframe {
  display: block;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: middle;
}

html {
  margin-top: 0 !important;
}

body {
  font-family: "Noto Serif JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 400;
  font-size: clamp(12px, 1.111vw, 16px);
  color: #000;
  line-height: 1.4375;
  width: 100%;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }
}
body a {
  color: #000;
}
body.recruitSite {
  background: #fff url(../img/common/bg.png) no-repeat center center/cover;
  color: #000;
}
body.recruitSite a {
  color: #000;
}

main {
  overflow: hidden;
}

a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}

h2, h3, h4, h5, h6 {
  font-size: 16px;
}

/* utility 
====================================== */
@media (max-width: 1280px) {
  .xl_only {
    display: none;
  }
}

@media (max-width: 1024px) {
  .pc_only {
    display: none;
  }
}

.sp_only {
  display: none;
}
@media (max-width: 768px) {
  .sp_only {
    display: block;
  }
}

.tb_only {
  display: none;
}
@media (max-width: 1024px) {
  .tb_only {
    display: block;
  }
}
@media (max-width: 768px) {
  .tb_only {
    display: none;
  }
}

@media (max-width: 768px) {
  .pc_tb {
    display: none;
  }
}

.tb_sp {
  display: none;
}
@media (max-width: 1024px) {
  .tb_sp {
    display: block;
  }
}

/* ------------------------------------------
アニメーション
------------------------------------------- */
/* タイトルスライドイン
========================================= */
.slide-in {
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
}

.slide-in_inner {
  display: inline-block;
  vertical-align: top;
}

.leftAnime {
  opacity: 0;
}

.slideAnimeLeftRight {
  -webkit-animation-name: slideTextX100;
          animation-name: slideTextX100;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes slideTextX100 {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideTextX100 {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
.slideAnimeRightLeft {
  -webkit-animation-name: slideTextX-100;
          animation-name: slideTextX-100;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes slideTextX-100 {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideTextX-100 {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
/* svg 線を描くアニメーション */
.stroke path {
  fill: transparent;
  stroke: transparent;
}

.is-stroke path {
  -webkit-animation: stroke 1.5s ease-in-out forwards;
          animation: stroke 1.5s ease-in-out forwards;
  fill: #fff;
  stroke: #fff;
  stroke-dasharray: 2000;
  stroke-dashoffset: 0;
  stroke-width: 2;
}

@-webkit-keyframes stroke {
  0% {
    stroke-dashoffset: 2000;
    fill: transparent;
  }
  70% {
    stroke-dashoffset: 0;
    fill: transparent;
  }
  100% {
    fill: #fff;
  }
}

@keyframes stroke {
  0% {
    stroke-dashoffset: 2000;
    fill: transparent;
  }
  70% {
    stroke-dashoffset: 0;
    fill: transparent;
  }
  100% {
    fill: #fff;
  }
}
/* ぼかしフェードイン
======================================== */
.blur {
  opacity: 0;
}

.is-blur {
  -webkit-animation-name: blurAnime;
          animation-name: blurAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes blurAnime {
  from {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: translate(20px, -20px) scale(1.02);
            transform: translate(20px, -20px) scale(1.02);
    opacity: 0;
  }
  to {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: translate(0, 0) scale(1);
            transform: translate(0, 0) scale(1);
    opacity: 1;
  }
}

@keyframes blurAnime {
  from {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: translate(20px, -20px) scale(1.02);
            transform: translate(20px, -20px) scale(1.02);
    opacity: 0;
  }
  to {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: translate(0, 0) scale(1);
            transform: translate(0, 0) scale(1);
    opacity: 1;
  }
}
/* ふわふわ
======================================== */
.anime-upDown {
  -webkit-animation: 3s upDown infinite;
          animation: 3s upDown infinite;
}

@-webkit-keyframes upDown {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}

@keyframes upDown {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}
/* フェードイン（基本）
======================================== */
.fadeIn, .fadeUpDown, .fadeLeftRight, .fadeRightLeft, .fadeInOpacity, .fv_fadeRightLeft, .fv_fadeInOpacity,
.fadeInSP, .fadeUpDownSP, .fadeLeftRightSP, .fadeRightLeftSP {
  opacity: 0;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s, -webkit-transform 1s;
}

.fadeIn_PC_TB {
  opacity: 0;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s, -webkit-transform 1s;
}
@media (max-width: 768px) {
  .fadeIn_PC_TB {
    opacity: 1;
  }
}

.is-fadeIn {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.is-fadeInSP {
  -webkit-animation-name: fadeInAnimeSP;
          animation-name: fadeInAnimeSP;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.is-fadeUpDown {
  -webkit-animation-name: fadeUpDownAnime;
          animation-name: fadeUpDownAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpDownAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpDownAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.is-fadeUpDownSP {
  -webkit-animation-name: fadeUpDownAnimeSP;
          animation-name: fadeUpDownAnimeSP;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpDownAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpDownAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.is-fadeLeftRight {
  -webkit-animation-name: fadeLeftRightAnime;
          animation-name: fadeLeftRightAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftRightAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeLeftRightAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.is-fadeLeftRightSP {
  -webkit-animation-name: fadeLeftRightAnimeSP;
          animation-name: fadeLeftRightAnimeSP;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftRightAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeLeftRightAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.is-fadeRightLeft {
  -webkit-animation-name: fadeRightLeftAnime;
          animation-name: fadeRightLeftAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightLeftAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeRightLeftAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.is-fadeRightLeftSP {
  -webkit-animation-name: fadeRightLeftAnimeSP;
          animation-name: fadeRightLeftAnimeSP;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightLeftAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeRightLeftAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.is-fadeInOpacity {
  -webkit-animation-name: fadeInOpacityAnime;
          animation-name: fadeInOpacityAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInOpacityAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInOpacityAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* フェードイン（時間差）
======================================== */
.delayScroll > * {
  opacity: 0;
}

.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fadeUpSP {
  -webkit-animation-name: fadeUpAnimeSP;
          animation-name: fadeUpAnimeSP;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnimeSP {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnimeSP {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.parallax {
  overflow: hidden;
}
.parallax img {
  -webkit-transform: translateZ(0) scale(1.2, 1.2);
          transform: translateZ(0) scale(1.2, 1.2);
}

/*　遅延時間
======================================== */
.delay-time_05s {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.delay-time_1s {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.delay-time_2s {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.delay-time_3s {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

.delay-time_n1 {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.delay-time_n2 {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}

.l-columns__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 7.5em;
  padding-bottom: 10em;
}
@media (max-width: 768px) {
  .l-columns__inner {
    padding-top: 4em;
    padding-bottom: 7em;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.l-columns .l-sidebar {
  width: 25.25%;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  min-width: 230px;
}
@media (max-width: 768px) {
  .l-columns .l-sidebar {
    width: 100%;
    padding-bottom: 6.25em;
  }
}
.l-columns .l-sidebar__list {
  padding-left: 1.875em;
  position: -webkit-sticky;
  position: sticky;
  top: calc(109px + 1em);
}
@media (max-width: 768px) {
  .l-columns .l-sidebar__list {
    position: relative;
    top: 0;
  }
}
.l-columns .l-sidebar__item:nth-child(n+2) {
  margin-top: 2em;
}
@media (max-width: 768px) {
  .l-columns .l-sidebar__item:nth-child(n+2) {
    margin-top: 1em;
  }
}
@media (max-width: 768px) {
  .l-columns .l-sidebar__item:last-child .l-sidebar__sub-list {
    margin-bottom: 0;
  }
}
.l-columns .l-sidebar__item.is-active > a::before {
  opacity: 1;
}
.l-columns .l-sidebar__item > a {
  display: block;
  font-size: 1.25em;
  line-height: 1.3;
  letter-spacing: 0.05em;
  margin-bottom: 1.2em;
  position: relative;
}
@media (max-width: 768px) {
  .l-columns .l-sidebar__item > a {
    font-size: 1em;
    margin-bottom: 1rem;
  }
}
.l-columns .l-sidebar__item > a::before {
  content: "";
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  background: url(../img/common/icons/icon_gear-white.svg) no-repeat center center/contain;
  position: absolute;
  left: -30px;
  top: 3px;
  opacity: 0;
}
@media (max-width: 768px) {
  .l-columns .l-sidebar__item > a::before {
    top: 0;
  }
}
.l-columns .l-sidebar__sub-list {
  margin-bottom: 4em;
}
@media (max-width: 768px) {
  .l-columns .l-sidebar__sub-list {
    margin-bottom: 1.75em;
  }
}
.l-columns .l-sidebar__sub-item:nth-child(n+2) {
  margin-top: 1.25em;
}
@media (max-width: 768px) {
  .l-columns .l-sidebar__sub-item:nth-child(n+2) {
    margin-top: 1em;
  }
}
.l-columns .l-sidebar__sub-item a {
  display: inline-block;
  line-height: 1.4;
  letter-spacing: 0.05em;
  border-bottom: 1px dashed #fff;
}
@media (max-width: 768px) {
  .l-columns .l-sidebar__sub-item a {
    font-size: 0.875em;
  }
}
.l-columns .l-sidebar__sub-item a .num {
  font-size: 0.9375em;
  margin-right: 0.5rem;
}
@media (max-width: 768px) {
  .l-columns .l-sidebar__sub-item a .num {
    font-size: 0.8125rem;
  }
}
.l-columns .l-main {
  width: 70%;
}
@media (max-width: 768px) {
  .l-columns .l-main {
    width: 100%;
  }
}
.l-columns .l-main .l-section:nth-child(n+2) {
  margin-top: 5em;
}

.footer {
  background: url(../img/common/footer/footer_bg.png) no-repeat center center/cover;
  color: #fff;
  position: relative;
  z-index: 0;
}
.footer::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.27);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.footer__inner {
  padding-bottom: 2.5em !important;
}
@media (max-width: 768px) {
  .footer__inner {
    padding-top: 2em !important;
  }
}
.footer__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2em;
  margin-bottom: 4em;
}
@media (max-width: 1024px) {
  .footer__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer__contents {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1024px) {
  .footer__contents {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 768px) {
  .footer__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer__logo {
  padding-right: 1.25em;
}
@media (max-width: 768px) {
  .footer__logo {
    padding-right: 0;
    margin-bottom: 1.5em;
  }
}
.footer__logo img {
  display: block;
}
.footer__info {
  padding-left: 1.25em;
  position: relative;
}
@media (max-width: 768px) {
  .footer__info {
    padding-left: 0;
  }
}
.footer__info::before {
  content: "";
  display: block;
  width: 1.5px;
  height: 120px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  z-index: -1;
}
@media (max-width: 768px) {
  .footer__info::before {
    display: none;
  }
}
.footer__info-company {
  font-size: 1.25em;
  font-weight: bold;
  line-height: 1.45;
  letter-spacing: 0.17em;
  margin-bottom: 0.7em;
}
.footer__info-tel, .footer__info-address, .footer__info-mail {
  font-size: 0.875em;
  font-weight: bold;
  letter-spacing: 0.19em;
  line-height: 2.3;
}
@media (max-width: 768px) {
  .footer__info-tel, .footer__info-address, .footer__info-mail {
    font-size: 0.8125em;
  }
}
.footer__info-mail {
  white-space: nowrap;
}
.footer__nav {
  width: 38.88%;
}
@media (max-width: 1024px) {
  .footer__nav {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .footer__nav {
    width: 100%;
  }
}
.footer__nav-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 1.5625em 3.1875em;
}
@media (max-width: 1024px) {
  .footer__nav-links {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 768px) {
  .footer__nav-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.footer__nav-links.--small {
  margin-top: 2.1875em;
}
@media (max-width: 768px) {
  .footer__nav-links.--small {
    margin-top: 3.5em;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.footer__nav-link a {
  letter-spacing: 0.09em;
  font-weight: 600;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer__nav-link a:hover {
  opacity: 0.7;
}
.footer__nav-link.--small a {
  font-size: 0.8125em;
}
.footer__copy {
  font-weight: 600;
  letter-spacing: 0.09em;
  text-align: center;
}
@media (max-width: 768px) {
  .footer__copy {
    font-size: 0.5625em;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 109px;
}
@media (max-width: 1024px) {
  .header {
    height: 52px;
  }
}
.header__inner {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.header__logo {
  position: relative;
  z-index: 5;
}
.header__logo a {
  display: block;
  width: clamp(120px, 13.61111vw, 196px);
}
.header__logo a:hover {
  opacity: 0.7;
}
.header__logo a img.white {
  display: none;
}
.header__nav {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(24px, 2.9513889vw, 42.5px);
  margin-right: -3em;
}
@media (max-width: 1024px) {
  .header__nav {
    margin-right: 0;
  }
}
.header__nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1024px) {
  .header__nav-list {
    display: none;
  }
}
.header__nav-item {
  height: 100%;
}
.header__nav-item > a {
  line-height: 1.4375;
  letter-spacing: 0.09em;
  font-weight: 600;
  padding: 1em clamp(16px, 1.7708333vw, 25.5px);
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__nav-item > a:hover {
  color: #0093C6;
}
.header__nav-btns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
@media (max-width: 1024px) {
  .header__nav-btns {
    display: none;
  }
}
.header__nav-btn {
  width: 208px;
  height: 46px;
}
.header__nav-btn > a {
  width: 100%;
  height: 100%;
  background-color: #000;
  border: 1px solid #000;
  border-radius: 23px;
  color: #fff;
  letter-spacing: 0.15em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.header__nav-btn > a:hover {
  background-color: #fff;
  color: #000;
}
.header__btn {
  display: none;
  cursor: pointer;
  position: relative;
  z-index: 8;
  width: 19.2px;
  height: 18px;
}
@media (max-width: 1024px) {
  .header__btn {
    display: block;
  }
}
.header__btn .bar {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #707070;
  position: absolute;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__btn .bar:nth-child(1) {
  top: 0;
}
.header__btn .bar:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.header__btn .bar:nth-child(3) {
  bottom: 0;
}
.header__menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100vw;
  overflow: scroll;
  background-color: #000;
}
.header__menu-inner {
  padding: calc(52px + 1.53125em) 0 2em;
  max-height: 100vh;
  overflow: scroll;
}
.header__menu-list {
  margin-bottom: 2em;
}
.header__menu-item a {
  letter-spacing: 0.09em;
  font-weight: 600;
  color: #fff;
  display: block;
  padding: 1.28125em 0;
  border-bottom: 1.5px solid #fff;
}
.header__menu-btns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1em;
}
.header__menu-btn {
  width: 100%;
  max-width: 318px !important;
  height: 46px;
}
.header__menu-btn a {
  letter-spacing: 0.15em;
  font-weight: 600;
  background-color: #fff;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 50px;
}

.is-open .header__inner {
  height: 52px;
}
.is-open .header__logo .black {
  display: none;
}
.is-open .header__logo .white {
  display: block;
}
.is-open .header__menu {
  display: block;
}
.is-open .header__btn {
  display: block;
  width: 23px;
  height: 23px;
  background-color: #fff;
  border: 1px solid #707070;
}
.is-open .header__btn .bar {
  height: 1.5px;
}
.is-open .header__btn .bar:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(45deg);
          transform: translateY(10px) rotate(45deg);
}
.is-open .header__btn .bar:nth-child(2) {
  opacity: 0;
}
.is-open .header__btn .bar:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(-45deg);
          transform: translateY(-10px) rotate(-45deg);
}

.header:not(.is-front) {
  background: url(../img/common/header/header_bg.png) no-repeat center center/cover;
}
.header:not(.is-front):before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #7ED8F7;
  opacity: 0.12;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
}

.is-scrolled .header {
  height: 60px;
  background: url(../img/common/header/header_bg.png) no-repeat center center/cover;
}
.is-scrolled .header:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #7ED8F7;
  opacity: 0.12;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
}

.breadcrumbs {
  font-size: 0.75em;
  letter-spacing: 0.25em;
  font-weight: bold;
}
.breadcrumbs__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  color: #000;
}
.breadcrumbs span {
  display: block;
}
.breadcrumbs span[property=name] {
  padding: 0;
  max-width: 300px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* btn 
========================================= */
.btn__box {
  width: 100%;
  max-width: 385px;
  height: 70px;
}
@media (max-width: 768px) {
  .btn__box {
    max-width: 318px;
  }
}
.btn__box > a, .btn__box > span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2em;
  letter-spacing: 0.15em;
  font-weight: 600;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn__box > a::before, .btn__box > span::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200%;
  height: 770px;
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%);
          clip-path: polygon(100% 0, 100% 100%, 0 100%);
  -webkit-transform: translateX(calc(100% - 25px));
          transform: translateX(calc(100% - 25px));
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
  -webkit-transition: -webkit-transform 0.3s ease-in;
  transition: -webkit-transform 0.3s ease-in;
  transition: transform 0.3s ease-in;
  transition: transform 0.3s ease-in, -webkit-transform 0.3s ease-in;
  z-index: -1;
}
@media (max-width: 768px) {
  .btn__box > a::before, .btn__box > span::before {
    height: 636px;
  }
}
.btn__box > a::after, .btn__box > span::after {
  content: "〉";
  font-weight: bold;
  font-size: 1em;
  position: relative;
  z-index: 2;
}
.btn__box > a:hover::before, .btn__box > span:hover::before {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.btn__box.--s {
  max-width: 266px;
}
@media (max-width: 768px) {
  .btn__box.--s {
    max-width: 318px;
  }
}
.btn__box.--s > a::before {
  height: 532px;
}
.btn__box.--s > a::after {
  display: none;
}
.btn__box.--sky-blue > a {
  border: 4px solid #7ED8F7;
  color: #7ED8F7;
}
.btn__box.--sky-blue > a::before {
  background-color: #7ED8F7;
}
.btn__box.--sky-blue:hover > a {
  color: #fff;
}
.btn__box.--blue > a {
  border: 4px solid #0093C6;
  color: #0093C6;
}
.btn__box.--blue > a::before {
  background-color: #0093C6;
}
.btn__box.--blue:hover > a {
  color: #fff;
}
.btn__box.--black > a, .btn__box.--black > span {
  border: 4px solid #000;
  color: #000;
}
.btn__box.--black > a::before, .btn__box.--black > span::before {
  background-color: #000;
}
.btn__box.--black:hover > a, .btn__box.--black:hover > span {
  color: #fff;
}
.btn__box.--gray > a {
  border: 4px solid #B1B1B1;
  color: #B1B1B1;
}
.btn__box.--gray > a::before {
  background-color: #B1B1B1;
}
.btn__box.--gray:hover > a {
  color: #fff;
}
.btn__box.--white > a {
  border: 4px solid #fff;
  color: #fff;
}
.btn__box.--white > a::before {
  background-color: #fff;
}
.btn__box.--white:hover > a {
  color: #000;
}

/* e_news
======================================= */
.column__item a:hover .column__item-image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.column__item a:hover .column__item-title {
  color: #7ED8F7;
}
.column__item-image {
  margin-bottom: 0.5em;
  overflow: hidden;
}
.column__item-image img {
  aspect-ratio: 261/279;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .column__item-image img {
    aspect-ratio: 318/218;
  }
}
.column__item-date {
  font-size: 0.75em;
  letter-spacing: 0.12em;
  font-weight: bold;
  line-height: 1.41667;
  margin-bottom: 0.5rem;
}
.column__item-cats {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.625rem;
}
.column__item-cat {
  display: inline-block;
  font-size: 0.75em;
  line-height: 1.41667;
  letter-spacing: 0.19em;
  background-color: #9D9D9D;
  color: #fff;
  padding: 3px 1rem;
}
.column__item-title {
  font-size: 0.875em;
  font-weight: bold;
  line-height: 1.714285;
  letter-spacing: 0.19em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/* e_news
======================================= */
.shop__item-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.3%;
}
@media (max-width: 768px) {
  .shop__item-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.shop__item-image {
  width: 45.6%;
}
@media (max-width: 768px) {
  .shop__item-image {
    width: 100%;
    margin-bottom: 13px;
  }
}
.shop__item-image img {
  aspect-ratio: 250/268;
}
@media (max-width: 768px) {
  .shop__item-image img {
    aspect-ratio: 318/181;
  }
}
.shop__item-contents {
  width: 50.735%;
}
@media (max-width: 768px) {
  .shop__item-contents {
    width: 100%;
  }
}
.shop__item-cats {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75em;
}
.shop__item-cat {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  font-size: 0.75em;
  letter-spacing: 0.15em;
  font-weight: bold;
  min-width: 86px;
  min-height: 23px;
  background-color: #7ED8F7;
  padding: 0 2px;
}
.shop__item-title {
  font-weight: bold;
  letter-spacing: 0.19em;
  margin-bottom: 0.625em;
}
@media (max-width: 768px) {
  .shop__item-title {
    font-size: 1em;
  }
}
.shop__item-address {
  font-size: 0.75em;
  letter-spacing: 0.12em;
  font-weight: bold;
  line-height: 2;
}
.shop__item-map {
  margin-bottom: 0.875em;
}
.shop__item-map a {
  font-size: 0.75em;
  letter-spacing: 0.12em;
  font-weight: bold;
  line-height: 2;
  color: #7ED8F7;
}
.shop__item-map a::after {
  content: "〉";
  display: inline-block;
  margin-left: 1em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.shop__item-map a:hover {
  opacity: 0.7;
}
.shop__item-map a:hover::after {
  margin-left: 2em;
}
.shop__item-opening_hours {
  font-size: 0.75em;
  letter-spacing: 0.12em;
  font-weight: bold;
  line-height: 2;
  margin-bottom: 1em;
}
.shop__item-closed {
  font-size: 0.75em;
  letter-spacing: 0.12em;
  font-weight: bold;
  line-height: 2;
}
.shop__item-reserve.--01 {
  margin-top: 0.9375em;
  margin-bottom: 0.25em;
}
.shop__item-reserve a {
  display: block;
  font-size: 0.75em;
  letter-spacing: 0.12em;
  font-weight: bold;
  line-height: 2;
  color: #0093C6;
}
@media (max-width: 768px) {
  .shop__item-reserve a {
    text-align: right;
  }
}
.shop__item-reserve a::after {
  content: "〉";
  display: inline-block;
  margin-left: 1em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.shop__item-reserve a:hover {
  opacity: 0.7;
}
.shop__item-reserve a:hover::after {
  margin-left: 2em;
}

.headline {
  margin-top: 109px;
  position: relative;
  z-index: 0;
}
@media (max-width: 1024px) {
  .headline {
    margin-top: 52px;
  }
}
.headline::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.headline__inner {
  padding-top: 1.5em !important;
  padding-bottom: 4em !important;
  position: initial !important;
  height: 100%;
}
@media (max-width: 768px) {
  .headline__inner {
    padding-top: 1em !important;
    padding-bottom: 2.25rem !important;
  }
}
.headline__title {
  margin-top: 5em;
}
@media (max-width: 768px) {
  .headline__title {
    margin-top: 7.375em;
  }
}
.headline__title-en {
  font-size: 3.125em;
  line-height: 1;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: bold;
  color: #7ED8F7;
  margin-bottom: 0.2em;
}
@media (max-width: 768px) {
  .headline__title-en {
    font-size: 2.1875em;
  }
}
.headline__title-jp {
  font-size: 1.5625em;
  line-height: 1.44;
  letter-spacing: 0.09em;
  font-weight: 600;
}
@media (max-width: 768px) {
  .headline__title-jp {
    font-size: 1.25em;
  }
}
.headline__image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}
.headline__image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .headline__image img {
    aspect-ratio: 390/261;
  }
}

.pagination {
  margin-top: 4em;
}
@media (max-width: 768px) {
  .pagination {
    margin-top: 2em;
  }
}
.pagination .nav-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 1.375em;
}
@media (max-width: 768px) {
  .pagination .nav-links {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.pagination .page-numbers {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: bold;
  color: #CBCBCB;
  display: block;
  text-align: center;
  position: relative;
  z-index: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  letter-spacing: 0.12em;
  text-align: center;
}
.pagination .page-numbers:hover {
  color: #0163C1;
}
.pagination .page-numbers.current {
  color: #fff;
  font-weight: bold;
  background-color: #0163C1;
  border-radius: 50%;
  width: 23px;
  height: 23px;
  line-height: 21px;
  position: relative;
  letter-spacing: 0;
}
.pagination .page-numbers.current:hover {
  opacity: 1;
}
.pagination .page-numbers.prev, .pagination .page-numbers.next {
  width: 8.5px;
  height: 14px;
  color: transparent;
  position: relative;
}
.pagination .page-numbers.prev::before, .pagination .page-numbers.next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 0;
  height: 0;
}
.pagination .page-numbers.prev {
  margin-right: 1em;
}
.pagination .page-numbers.prev::before {
  border-right: 8.5px solid #B9B9B9;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}
.pagination .page-numbers.prev:hover::before {
  border-right-color: #0163C1;
}
.pagination .page-numbers.next {
  margin-left: 1em;
}
.pagination .page-numbers.next::before {
  border-left: 8.5px solid #B9B9B9;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}
.pagination .page-numbers.next:hover::before {
  border-left-color: #0163C1;
}

/* tab
========================================= */
.tab1 {
  cursor: pointer;
}

.panel1 {
  display: none;
}
.panel1.is-active {
  display: block;
}

/* section common
====================================== */
.section__inner {
  width: 80.5556%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 5em 0;
  position: relative;
  z-index: 0;
}
@media (max-width: 768px) {
  .section__inner {
    padding: 4em 0;
    width: 81.5384615%;
  }
}
.section__inner.--s {
  max-width: 1110px;
}
.section__inner.--l {
  width: 91.6667%;
  max-width: 1320px;
}
@media (max-width: 768px) {
  .section__inner.--l {
    width: 81.5384615%;
  }
}
.section__inner.--center {
  text-align: center;
}
.section__title {
  margin-bottom: 14px;
  position: relative;
}
@media (max-width: 768px) {
  .section__title {
    margin-bottom: 8px;
  }
}
.section__title-en {
  font-size: 4.875em;
  line-height: 1;
  letter-spacing: 0.15em;
  font-weight: bold;
  color: #B1B1B1;
  opacity: 0.36;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .section__title-en {
    font-size: 3em;
  }
}
@media (max-width: 768px) {
  .section__title-en {
    font-size: 2.875em;
    -webkit-transform: translateY(-70%);
            transform: translateY(-70%);
  }
}
.section__title-en span {
  color: #7ED8F7;
}
.section__title-jp {
  font-size: 1.5625em;
  font-weight: 600;
  line-height: 1.44;
  letter-spacing: 0.19em;
}
@media (max-width: 768px) {
  .section__title-jp {
    font-size: 1.25em;
    text-align: center;
  }
}
.section__lead {
  font-size: 0.875em;
  line-height: 1.642857;
  letter-spacing: 0.19em;
  font-weight: bold;
}
@media (max-width: 768px) {
  .section__lead {
    letter-spacing: 0.17em;
    line-height: 2;
  }
}

.contact__inner {
  padding-top: 3em;
  padding-bottom: 4em;
  max-width: 1027px;
}
.contact__title {
  text-align: center;
  color: #065D7C;
  margin-bottom: 1em;
}
.contact__lead {
  text-align: center;
  line-height: 2.5;
  margin-bottom: 3.5em;
}
@media (max-width: 768px) {
  .contact__lead {
    line-height: 2;
    letter-spacing: 0.16em;
    margin-bottom: 2em;
  }
}
.contact__form {
  margin-top: 3.5em;
}

/* form
========================================= */
.form__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 3.1875em;
}
@media (max-width: 768px) {
  .form__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 2em;
  }
}
.form__item-title {
  width: 21.2%;
  white-space: nowrap;
  min-width: 180px;
}
@media (max-width: 768px) {
  .form__item-title {
    width: 100%;
    margin-bottom: 0.9375em;
  }
}
.form__item-title-text {
  font-size: 1.25em;
  font-weight: bold;
  letter-spacing: 0.17em;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .form__item-title-text {
    font-size: 1em;
  }
}
.form__item-title-required, .form__item-title-optional {
  display: inline-block;
  font-size: 0.75em;
  color: #fff;
  line-height: 1;
  vertical-align: middle;
  padding: 4px 7.5px;
  border-radius: 3px;
  margin-right: 1em;
}
.form__item-title-required {
  background-color: #FF0000;
}
.form__item-title-optional {
  background-color: #007FFF;
}
.form__item-input {
  width: 73.9%;
}
@media (max-width: 768px) {
  .form__item-input {
    width: 100%;
  }
}
.form__item-input.--2col {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5em;
}
@media (max-width: 768px) {
  .form__item-input.--2col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.9375em;
  }
}
.form__item-input input, .form__item-input select, .form__item-input textarea {
  border: 1px solid #111111;
  border-radius: 7.5px;
  padding: 1em 1.5em;
  width: 100%;
}
.form__item-input input:focus, .form__item-input select:focus, .form__item-input textarea:focus {
  outline: none;
}
.form__item-input input::-webkit-input-placeholder, .form__item-input select::-webkit-input-placeholder, .form__item-input textarea::-webkit-input-placeholder {
  color: #DDDDDD;
}
.form__item-input input::-moz-placeholder, .form__item-input select::-moz-placeholder, .form__item-input textarea::-moz-placeholder {
  color: #DDDDDD;
}
.form__item-input input:-ms-input-placeholder, .form__item-input select:-ms-input-placeholder, .form__item-input textarea:-ms-input-placeholder {
  color: #DDDDDD;
}
.form__item-input input::-ms-input-placeholder, .form__item-input select::-ms-input-placeholder, .form__item-input textarea::-ms-input-placeholder {
  color: #DDDDDD;
}
.form__item-input input::placeholder, .form__item-input select::placeholder, .form__item-input textarea::placeholder {
  color: #DDDDDD;
}
.form__item-input input[type=text] {
  vertical-align: middle;
}
.form__item-input select {
  cursor: pointer;
}
.form__item-input textarea {
  resize: none;
}
.form__item-input-radio {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3em;
}
@media (max-width: 768px) {
  .form__item-input-radio {
    gap: 1em;
  }
}
.form__item-input-radio input[type=radio] {
  width: 22px;
  height: 22px;
}
@media (max-width: 768px) {
  .form__item-input-radio input[type=radio] {
    width: 18px;
    height: 18px;
  }
}
.form__item-input-radio .mwform-radio-field > label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.form__item-input-radio .mwform-radio-field-text {
  font-size: 1.25em;
  font-weight: bold;
  letter-spacing: 0.17em;
}
@media (max-width: 768px) {
  .form__item-input-radio .mwform-radio-field-text {
    font-size: 0.875em;
  }
}
.form__item-input .error {
  display: inline-block;
  margin-top: 0.5em;
}
.form__check {
  text-align: center;
  margin-bottom: 4em;
}
@media (max-width: 768px) {
  .form__check {
    margin-bottom: 1.125em;
  }
}
.form__check span {
  font-size: 1.25em;
  font-weight: bold;
  letter-spacing: 0.17em;
  line-height: 2;
}
@media (max-width: 768px) {
  .form__check span {
    font-size: 0.875em;
    letter-spacing: 0.11em;
  }
}
.form__check a {
  color: #0800C6;
  text-decoration: underline;
}
.form__check a:hover {
  opacity: 0.8;
}
.form__btn {
  max-width: 538px;
  margin: 0 auto 2em;
}
@media (max-width: 768px) {
  .form__btn {
    max-width: 318px;
  }
}
.form__btn-wrapper {
  width: 100%;
  height: 100%;
  display: block !important;
  background-color: #606060;
}
.form__btn-wrapper::before {
  height: 1076px !important;
}
@media (max-width: 768px) {
  .form__btn-wrapper::before {
    height: 636px !important;
  }
}
.form__btn-wrapper::after {
  display: none;
}
.form__btn-wrapper::after input {
  display: block;
  width: 100%;
  height: 100%;
}
.form__btn-wrapper input {
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.15em;
}
.form__recaptcha {
  font-size: 1.25em;
  font-weight: bold;
  line-height: 2;
  letter-spacing: 0.17em;
  text-align: center;
}
@media (max-width: 768px) {
  .form__recaptcha {
    font-size: 0.875em;
  }
}
.form__recaptcha a {
  color: #0800C6;
  text-decoration: underline;
}
.form__recaptcha a:hover {
  opacity: 0.8;
}
.form__complete {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  line-height: 2;
}

.cta {
  background: url(../img/common/cta_bg.jpg) no-repeat center center/cover;
}
@media (max-width: 768px) {
  .cta {
    background: url(../img/common/cta_bg-sp.png) no-repeat center center/cover;
  }
}
.cta__inner {
  padding: 4.25em 0;
}
@media (max-width: 768px) {
  .cta__inner {
    padding: 1.5em 0 2em;
  }
}
.cta__catch {
  font-size: 1.875em;
  letter-spacing: 0.25em;
  font-weight: bold;
  line-height: 1.7;
  margin-bottom: 1.3667em;
}
@media (max-width: 768px) {
  .cta__catch {
    text-align: center;
    font-size: 1.375em;
    letter-spacing: 0.25em;
    margin: 0 calc(50% - 50vw) 9.4545em;
    -webkit-transform: translateX(14px);
            transform: translateX(14px);
  }
}
.cta__btns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5em;
}
@media (max-width: 768px) {
  .cta__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1em;
  }
}

.franchise {
  background: url(../img/top/franchise_bg.jpg) no-repeat center center/cover;
  position: relative;
  z-index: 0;
  color: #fff;
}
.franchise::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 768px) {
  .franchise__inner {
    padding: 1.75em 0 2.5em;
  }
}
.franchise__title {
  margin-bottom: 2.8125em;
}
@media (max-width: 768px) {
  .franchise__title {
    display: none;
  }
}
.franchise__title-en {
  font-size: 7.375em;
  letter-spacing: 0.05em;
  position: absolute;
  right: 0;
  bottom: 0;
  -webkit-transform: rotate(90deg) translateX(11%);
          transform: rotate(90deg) translateX(11%);
  -webkit-transform-origin: right top;
          transform-origin: right top;
}
@media (max-width: 768px) {
  .franchise__title-en {
    font-size: 4.6875em;
    right: inherit;
    left: 100%;
    bottom: inherit;
    top: 0;
    -webkit-transform: rotate(90deg) translateY(-15%);
            transform: rotate(90deg) translateY(-15%);
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
}
.franchise__catch {
  font-size: 1.875em;
  letter-spacing: 0.25em;
  font-weight: bold;
  line-height: 1.7;
  margin-bottom: 0.9em;
}
@media (max-width: 768px) {
  .franchise__catch {
    font-size: 1.25em;
    margin-right: -20px;
  }
}
.franchise__lead {
  letter-spacing: 0.17em;
  line-height: 2.4464;
  margin-bottom: 3.428571em;
}
@media (max-width: 768px) {
  .franchise__lead {
    line-height: 2.2143;
    margin-bottom: 2.375em;
  }
}
.franchise__btns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 2.4375em;
}
@media (max-width: 768px) {
  .franchise__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.9375em;
  }
}
.franchise__btn {
  width: 100%;
}
.franchise__btn a::after {
  display: none;
}
.franchise__btn.--franchise {
  max-width: 355px;
}
@media (max-width: 768px) {
  .franchise__btn.--franchise {
    font-size: 0.875em;
    max-width: 318px;
  }
}