@charset "UTF-8";
/* ========================================
リセットCSS
======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
div {
  overflow-wrap: break-word;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

iframe {
  max-width: 100%;
  vertical-align: middle;
}

span {
  font: inherit;
  letter-spacing: inherit;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

address {
  font: inherit;
}

input,
button,
textarea,
select {
  color: inherit;
  font: inherit;
  vertical-align: middle;
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}

/* ========================================
変数・関数
======================================== */
:root {
  --color-black: #000;
  --color-glay-base: #EDEDEC;
  --color-glay-dark: #DDDDDD;
  --color-glay-text: #A8A8A8;
  --color-red: #FF0000;
  --font-base: "Noto Serif JP", serif;
  --font-en: "Kantumruy Pro", "Noto Serif JP", serif;
  --font-garamond: "EB Garamond", "Kantumruy Pro", "Noto Serif JP", serif;
  --font-noto-sans: "Noto Sans JP", sans-serif;
  --mg-pc: 10vw;
  --mg-sp: calc(20 / 375 * 100vw);
  --header-height-pc: 403px;
  --header-height-lg: 200px;
  --header-height-sp: 113px;
  --z-index-fixedLogo: 9;
  --z-index-nav: 10;
  --z-index-navBtn: 11;
  --z-index-modal: 11;
  --z-index-fixedBtn: 9;
  --ani-boder: 1.2s .2s ease-out;
  --ani-boder-sp: 0.6s .2s ease-out;
  --ani-boder-intro: 1.2s .6s ease-out;
}

/* ========================================
mixin
======================================== */
/* ========================================
ベースCSS
======================================== */
body {
  background-color: var(--color-glay-base);
  color: var(--color-black);
  font-family: var(--font-base);
  font-size: 16px;
  font-weight: 300;
  line-height: 2;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  opacity: 0;
  animation: pageFadein 2s forwards;
}

@keyframes pageFadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
a {
  color: inherit;
  text-decoration: none;
}

/* CLEAR-FIX */
@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

/* ========================================
モジュール・パーツ m-
======================================== */
.m-inner {
  width: calc(100% - var(--mg-pc) * 2);
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .m-inner {
    width: calc(100% - var(--mg-sp) * 2);
  }
}

.m-inner-large {
  width: calc(100% - var(--mg-pc) * 2);
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .m-inner-large {
    width: calc(100% - var(--mg-sp) * 2);
  }
}

.m-btn-reservation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 30px;
  width: 100%;
  height: 103px;
  padding-right: 30px;
  background: #fff;
  font-size: 25px;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .m-btn-reservation {
    gap: 0 14px;
    height: 63px;
    padding-right: 25px;
    font-size: 16px;
    position: relative;
  }
}
.m-btn-reservation::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: url(../image/common/mark.svg) center/contain no-repeat;
  transition: background-image 0.6s;
}
@media screen and (max-width: 767px) {
  .m-btn-reservation::before {
    width: 27px;
    height: 27px;
  }
}
@media (hover: hover) {
  .m-btn-reservation {
    transition: background 0.6s, color 0.6s;
  }
  .m-btn-reservation:hover {
    background: var(--color-black);
    color: #fff;
  }
  .m-btn-reservation:hover::before {
    background-image: url(../image/common/mark-white.svg);
  }
}

.m-bg-darkGlay {
  background-color: var(--color-glay-dark);
}

.m-textBox p {
  font-size: 18px;
  font-weight: 400;
  line-height: 2.4444444444;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .m-textBox p {
    font-size: 16px;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}
.m-textBox p + p {
  margin-top: 2.4444444444em;
}
@media screen and (max-width: 767px) {
  .m-textBox p + p {
    margin-top: 2em;
  }
}

.m-indentBox > * {
  padding-left: 1em;
  text-indent: -1em;
}

.m-boderLink {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  gap: 0 5px;
  margin-left: auto;
  border-bottom: 1px solid var(--color-black);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
@media (hover: hover) {
  .m-boderLink {
    transition: opacity 0.4s;
  }
  .m-boderLink:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 767px) {
  .m-boderLink {
    gap: 0 2px;
    font-size: 14px;
    font-weight: 400;
  }
}
.m-boderLink::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 1px solid var(--color-black);
  border-right: 1px solid var(--color-black);
  transform: translateX(-4px) rotate(35deg) skewX(-20deg);
  transition: 0.6s;
}
@media screen and (max-width: 767px) {
  .m-boderLink::after {
    width: 9px;
    height: 9px;
    margin-left: -1px;
  }
}
@media (hover: hover) {
  .m-boderLink:hover::after {
    transform: translateX(2px) rotate(35deg) skewX(-20deg);
  }
}

.m-fadeIn {
  opacity: 0;
}
.m-fadeIn.is-on {
  opacity: 1;
  transition: 1.4s;
}

.m-fadeInBottom {
  opacity: 0;
  transform: translateY(40px);
}
.m-fadeInBottom.is-on {
  opacity: 1;
  transform: translateY(0);
  transition: 1.4s;
}

/* ========================================
補助的に使用 u-
======================================== */
@media screen and (min-width: 768px) {
  .u-sp {
    display: none !important;
  }
}
@media screen and (min-width: 1025px) {
  .u-sp-lg {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pc {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .u-pc-lg {
    display: none !important;
  }
}

.u-ib {
  display: inline-block !important;
}

.u-text-center {
  text-align: center !important;
}
.u-text-left {
  text-align: left !important;
}
.u-text-right {
  text-align: right !important;
}

.u-color-red {
  color: var(--color-red) !important;
}

.u-weight-700 {
  font-weight: 700 !important;
}

.u-weight-600 {
  font-weight: 600 !important;
}

.u-weight-500 {
  font-weight: 500 !important;
}

.u-weight-400 {
  font-weight: 400 !important;
}

.u-weight-300 {
  font-weight: 300 !important;
}

/* ========================================
header
======================================== */
.header {
  width: 100%;
  padding: 30px min(calc(60 / 1440 * 100vw), 60px) 0;
  height: var(--header-height-pc);
}
@media screen and (max-width: 1024px) {
  .header {
    height: var(--header-height-lg);
  }
}
@media screen and (max-width: 767px) {
  .header {
    height: var(--header-height-sp);
  }
}
.header_nav {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .header_nav {
    display: none;
  }
}
.header_nav a {
  display: block;
  padding: 4px min(calc(38 / 1440 * 100vw), 38px) 3px min(calc(12 / 1440 * 100vw), 12px);
  border-left: 1px solid var(--color-glay-text);
  color: var(--color-glay-text);
}
@media (hover: hover) {
  .header_nav a {
    transition: color 0.3s, font-weight 0.3s, border 0.3s;
  }
  .header_nav a:hover {
    color: var(--color-black);
    border-left-color: var(--color-black);
  }
}
.header_nav span {
  display: block;
}
.header_nav ._en {
  font-family: var(--font-en);
  font-size: clamp(16px , calc(21 / 1440 * 100vw), 21px);
  line-height: 1;
  letter-spacing: 0.05em;
}
.header_nav ._jp {
  margin-top: 11px;
  font-size: 12px;
  font-size: clamp(11px , calc(12 / 1440 * 100vw), 12px);
  line-height: 1;
}
.header_nav ._current a {
  border-left-color: var(--color-black);
  color: var(--color-black);
}
.header_logo {
  width: 245px;
  margin-top: 94px;
  line-height: 0;
  transition: width 0.4s;
}
@media screen and (min-width: 1025px) {
  .is-logoFixed .header_logo {
    opacity: 0;
    visibility: hidden;
    width: 160px;
  }
}
@media screen and (max-width: 1024px) {
  .header_logo {
    width: 197px;
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .header_logo {
    display: none;
  }
}
.header_logo a {
  display: inline-block;
}
@media (hover: hover) {
  .header_logo a {
    transition: opacity 0.4s;
  }
  .header_logo a:hover {
    opacity: 0.5;
  }
}
.header_fixedLogo {
  width: 245px;
  position: fixed;
  top: 55px;
  left: min(calc(60 / 1440 * 100vw), 60px);
  z-index: var(--z-index-fixedLogo);
  opacity: 0;
  visibility: hidden;
}
.is-logoFixed .header_fixedLogo {
  opacity: 1;
  visibility: visible;
  width: 130px;
  transition: width 0.4s;
}
.is-footerPos .header_fixedLogo a {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s 0s, visibility 0s 0.4s;
}
@media screen and (max-width: 1024px) {
  .header_fixedLogo {
    display: none;
  }
}
.header_fixedLogo a {
  transition: opacity 0.4s 0s, visibility 0s 0s;
}
@media (hover: hover) {
  .header_fixedLogo a {
    transition: opacity 0.4s;
  }
  .header_fixedLogo a:hover {
    opacity: 0.5;
  }
}

.gNavBtn {
  width: 40px;
  padding-top: 53px;
  font-family: var(--font-en);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.05em;
  position: fixed;
  top: 51px;
  right: min(calc(60 / 1440 * 100vw), 60px);
  z-index: var(--z-index-navBtn);
}
@media screen and (min-width: 1025px) {
  .gNavBtn {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s, color 0.4s;
  }
  .is-logoFixed .gNavBtn, .is-menuActive .gNavBtn {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.8s, visibility 0.8s, color 0.4s;
  }
}
@media screen and (max-width: 1024px) {
  .gNavBtn {
    top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .gNavBtn {
    width: 37px;
    font-size: 10px;
    font-weight: 400;
    top: 13px;
    right: var(--mg-sp);
  }
}
.gNavBtn::before, .gNavBtn::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-black);
  position: absolute;
  top: 24px;
  left: 0;
  transition: 0.4s;
}
@media screen and (max-width: 767px) {
  .gNavBtn::before, .gNavBtn::after {
    height: 1px;
  }
}
.gNavBtn::after {
  transform: rotate(-90deg);
}
.gNavBtn_text {
  display: block;
}
.gNavBtn_text::before {
  content: "CLOSE";
  display: block;
  text-align: center;
  color: var(--color-black);
  letter-spacing: 0.05em;
  position: absolute;
  top: 53px;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s;
}
.is-menuActive .gNavBtn {
  color: transparent;
}
.is-menuActive .gNavBtn::before {
  transform: rotate(45deg);
}
.is-menuActive .gNavBtn::after {
  transform: rotate(-45deg);
}
.is-menuActive .gNavBtn .gNavBtn_text::before {
  opacity: 1;
}

.gNav {
  width: 100%;
  height: 100%;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-index-nav);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.gNav::-webkit-scrollbar {
  display: none;
}
.is-menuActive .gNav {
  opacity: 1;
  visibility: visible;
}
.gNav::before {
  content: "";
  display: block;
  width: 100%;
  height: 160px;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .gNav::before {
    height: 120px;
  }
}
@media screen and (max-width: 767px) {
  .gNav::before {
    height: 95px;
  }
}
.gNav_inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100%;
  padding: 160px min(calc(60 / 1440 * 100vw), 60px) 35px;
}
@media screen and (max-width: 767px) {
  .gNav_inner {
    padding: 160px var(--mg-sp) 36px;
  }
}
.gNav_container {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: 1fr auto;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .gNav_container {
    gap: 26px 0;
  }
}
.gNav_sns {
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 0 36px;
  padding-top: min(calc(6 / 1440 * 100vw), 6px);
}
@media screen and (max-width: 767px) {
  .gNav_sns {
    align-items: flex-start;
    flex-direction: column;
    gap: 26px 0;
    padding-top: 0;
  }
  .gNav_sns li {
    width: 29px;
    text-align: center;
  }
}
.gNav_sns a {
  display: inline-block;
}
@media (hover: hover) {
  .gNav_sns a {
    transition: opacity 0.4s;
  }
  .gNav_sns a:hover {
    opacity: 0.6;
  }
}
.gNav_primary {
  grid-column: 2/3;
  grid-row: 1/3;
  display: flex;
  justify-content: space-between;
  gap: 0 min(calc(90 / 1440 * 100vw), 90px);
  align-self: flex-end;
  padding-bottom: 3px;
}
@media screen and (max-width: 767px) {
  .gNav_primary {
    grid-row: 1/2;
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .gNav_primary ul + ul {
    margin-top: 21px;
  }
}
.gNav_primary li {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .gNav_primary li {
    margin-top: 21px;
  }
  .gNav_primary li:first-child {
    margin-top: 0;
  }
}
.gNav_primary a {
  display: block;
  text-align: right;
}
@media (hover: hover) {
  .gNav_primary a {
    transition: opacity 0.4s;
  }
  .gNav_primary a:hover {
    opacity: 0.6;
  }
}
.gNav_primary span {
  display: block;
}
.gNav_primary ._en {
  font-family: var(--font-en);
  font-size: clamp(26px , calc(44 / 1440 * 100vw), 44px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .gNav_primary ._en {
    font-size: 25px;
  }
}
.gNav_primary ._jp {
  margin-top: 6px;
  font-size: 12px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .gNav_primary ._jp {
    margin-top: 8px;
    font-size: 10px;
    letter-spacing: 0.03em;
  }
}
@media screen and (max-width: 767px) {
  .gNav_reservation {
    grid-column: 1/3;
    grid-row: 2/3;
  }
}
.gNav_reservation .m-btn-reservation {
  width: min(calc(443 / 1440 * 100vw), 443px);
  max-width: 100%;
  height: 66px;
  padding-right: min(calc(47 / 1440 * 100vw), 47px);
  gap: 0 25px;
  border: 1px solid var(--color-glay-text);
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .gNav_reservation .m-btn-reservation {
    width: 100%;
    height: 60px;
    font-size: 16px;
    padding-right: 0;
    padding-left: min(calc(16 / 375 * 100vw), 16px);
    position: relative;
  }
}
.gNav_reservation .m-btn-reservation::before {
  width: 28px;
  height: 28px;
}
@media screen and (max-width: 767px) {
  .gNav_reservation .m-btn-reservation::before {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
  }
}

.fixedReservation {
  position: fixed;
  right: min(calc(60 / 1440 * 100vw), 60px);
  bottom: 97px;
  z-index: var(--z-index-fixedBtn);
  transition: opacity 0.4s, visibility 0.4s;
}
@media screen and (max-width: 767px) {
  .fixedReservation {
    bottom: 36px;
    right: calc(20 / 375 * 100vw);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  }
}
.fixedReservation .m-btn-reservation {
  width: 241px;
  height: 66px;
  gap: 0 20px;
  padding-right: 15px;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .fixedReservation .m-btn-reservation {
    width: calc(335 / 375 * 100vw);
    height: 60px;
    position: relative;
    padding: 0 0 0 16px;
    font-size: 16px;
  }
}
.fixedReservation .m-btn-reservation::before {
  width: 36px;
  height: 36px;
}
@media screen and (max-width: 767px) {
  .fixedReservation .m-btn-reservation::before {
    position: absolute;
    top: 12px;
    left: 20px;
  }
}
.is-footerPos .fixedReservation {
  opacity: 0;
  visibility: hidden;
}

/* ========================================
footer
======================================== */
.footer {
  margin-top: 200px;
  padding: 92px 0 106px;
  background-color: var(--color-glay-dark);
}
@media screen and (max-width: 767px) {
  .footer {
    margin-top: 90px;
    padding: 44px 0 40px;
  }
}
.footer_inner {
  padding-bottom: 4px;
  position: relative;
}
.footer_box1 {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 131px;
  padding-right: 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .footer_logo {
    max-width: 197px;
  }
}
.footer_nav {
  display: flex;
  margin-top: -0.4em;
}
@media screen and (max-width: 767px) {
  .footer_nav {
    display: none;
  }
}
.footer_nav ul {
  width: 211px;
}
.footer_nav li + li {
  margin-top: 0.68em;
}
.footer_nav a {
  display: inline-block;
  letter-spacing: 0.1em;
}
@media (hover: hover) {
  .footer_nav a {
    transition: opacity 0.4s;
  }
  .footer_nav a:hover {
    opacity: 0.5;
  }
}
.footer_sns {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 24px 0;
  text-align: center;
  position: absolute;
  top: 0;
  right: 16px;
}
@media screen and (max-width: 767px) {
  .footer_sns {
    gap: 18px 0;
    right: 0;
  }
}
.footer_sns a {
  display: block;
  line-height: 0;
}
@media (hover: hover) {
  .footer_sns a {
    transition: opacity 0.4s;
  }
  .footer_sns a:hover {
    opacity: 0.5;
  }
}
.footer_sns img._instagram {
  width: 20px;
}
@media screen and (max-width: 767px) {
  .footer_sns img._instagram {
    width: 25px;
  }
}
.footer_sns img._facebook {
  width: 10px;
}
@media screen and (max-width: 767px) {
  .footer_sns img._facebook {
    width: 13px;
  }
}
.footer_address {
  display: flex;
  gap: 25px min(calc(67 / 1150 * 100vw), 67px);
  margin-top: 107px;
  padding-top: 30px;
  font-size: 14px;
  font-weight: 500;
  line-height: 2.3571428571;
  position: relative;
}
@media screen and (max-width: 767px) {
  .footer_address {
    flex-direction: column;
    gap: 26px 0;
    margin-top: 44px;
    padding-top: 0;
    font-size: 12px;
    line-height: 1.8333333333;
  }
}
.footer_address * {
  letter-spacing: 0.056em;
}
.footer_address::before {
  content: "";
  display: block;
  width: 14px;
  height: 1px;
  background-color: var(--color-black);
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .footer_address::before {
    display: none;
  }
}
.footer_address ._ttl {
  margin-bottom: 0.8em;
}
.footer_address ._mapLink {
  display: inline-block;
  color: var(--color-glay-text);
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .footer_address ._mapLink {
    margin: 4px 0 9px;
    border-bottom: 1px solid var(--color-glay-text);
    line-height: 1.6;
  }
}
@media screen and (hover: hover) and (min-width: 768px) {
  .footer_address ._mapLink {
    transition: color 0.3s;
  }
  .footer_address ._mapLink:hover {
    color: var(--color-black);
    text-decoration: underline;
  }
}
.footer_address ._mapLink::after {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  border-top: 1px solid var(--color-glay-text);
  border-right: 1px solid var(--color-glay-text);
  transform: rotate(35deg) skewX(-20deg);
}
@media screen and (max-width: 767px) {
  .footer_spLink a {
    display: inline-block;
    margin-top: 40px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-decoration: underline;
  }
}
.footer_copyright {
  display: block;
  margin-top: 85px;
  font-family: var(--font-en);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .footer_copyright {
    margin-top: 14px;
    font-size: 10px;
  }
}
.footer_deco {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 38px 0;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: clamp(-95px, (100vw - 1060px) / 2 / 2 * -1, var(--mg-pc) / 2 * -1);
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .footer_deco {
    gap: 18px 0;
    height: auto;
    right: 0;
    bottom: 6px;
  }
}
.footer_deco::before {
  content: "";
  flex: 1;
  width: 1px;
  background: var(--color-black);
}
@media screen and (max-width: 767px) {
  .footer_deco::before {
    flex: none;
    height: 214px;
  }
}
.footer_deco ._text {
  display: block;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 767px) {
  .footer_deco ._text {
    font-size: 12px;
  }
}

/* ========================================
共通で使うレイアウト l-
======================================== */
.l-boder {
  position: relative;
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
}
.l-boder::before {
  content: "";
  display: block;
  background: var(--color-glay-text);
  height: 1px;
  width: min(100vw - 120px, 1680px);
  position: absolute;
  top: 0;
  left: min(calc(60 / 1440 * 100vw), 60px);
  transform: scale(0, 1);
  transition: transform var(--ani-boder);
}
@media screen and (max-width: 1440px) {
  .l-boder::before {
    width: 91.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .l-boder::before {
    width: calc(100% - var(--mg-sp) * 2);
    left: var(--mg-sp);
    transition: transform var(--ani-boder-sp);
  }
}
.l-boder::after {
  content: "";
  display: block;
  background: var(--color-glay-text);
  position: absolute;
  width: 1px;
  height: 400px;
  top: -63px;
  right: 114px;
  transform: scale(1, 0);
  transition: transform var(--ani-boder);
}
@media screen and (max-width: 1440px) {
  .l-boder::after {
    right: calc(var(--mg-pc) * 0.6);
    right: max((100vw - 1060px) / 2 * 0.6, var(--mg-pc) * 0.6);
  }
}
@media screen and (max-width: 767px) {
  .l-boder::after {
    height: 94px;
    top: -16px;
    right: calc(var(--mg-sp) + 14px);
    transition: transform var(--ani-boder-sp);
  }
}
.l-boder.is-on::before {
  transform: scale(1, 1);
}
.l-boder.is-on::after {
  transform: scale(1, 1);
}
.l-boder_inner {
  position: relative;
}

@media screen and (max-width: 767px) {
  .l-intro.l-boder::before, .l-intro.l-boder::after {
    display: none;
  }
}
.l-intro_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 120px;
}
@media screen and (max-width: 767px) {
  .l-intro_inner {
    padding-top: 0px;
  }
}
@media screen and (max-width: 767px) {
  .l-intro_ttlBox {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0 20px;
    width: 100%;
    padding-bottom: 3px;
    border-bottom: 1px solid var(--color-black);
  }
}
.l-intro_enTtl {
  font-family: var(--font-en);
  font-size: 42px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .l-intro_enTtl {
    font-size: min(calc(28 / 375 * 100vw), 28px);
    line-height: 1.2;
  }
}
.l-intro_ttl {
  margin-top: 17px;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .l-intro_ttl {
    margin-top: 0;
    margin-left: auto;
    font-size: 12px;
    letter-spacing: 0.06em;
  }
}
.l-intro_enText {
  padding-top: 12px;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .l-intro_enText {
    display: none;
  }
}
.l-intro_enText ._separator {
  margin: 0 0.4em;
}
.l-intro_read {
  margin-top: 57px;
  width: 100%;
  font-size: 16px;
  line-height: 2.25;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .l-intro_read {
    margin-top: 30px;
    line-height: 2;
    letter-spacing: 0.08em;
  }
}

.l-secIntro_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 120px;
}
@media screen and (max-width: 767px) {
  .l-secIntro_inner {
    padding-top: 31px;
  }
}
.l-secIntro_enTtl {
  font-family: var(--font-en);
  font-size: 42px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .l-secIntro_enTtl {
    font-size: min(calc(24 / 375 * 100vw), 24px);
    line-height: 1.2;
  }
}
.l-secIntro_ttl {
  margin-top: 17px;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .l-secIntro_ttl {
    margin-top: 7px;
    margin-left: auto;
    font-size: 10px;
    letter-spacing: 0.05em;
  }
}
.l-secIntro_enText {
  padding-top: 12px;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .l-secIntro_enText {
    display: none;
  }
}
.l-secIntro_enText ._separator {
  margin: 0 0.4em;
}
.l-secIntro_read {
  margin-top: 57px;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  line-height: 2.25;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .l-secIntro_read {
    margin-top: 30px;
    line-height: 2;
    letter-spacing: 0.08em;
  }
}

.l-modal {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-index-modal);
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.l-modal::-webkit-scrollbar {
  display: none;
}
.l-modal_overlay {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}
.l-modal_closedBtn {
  padding-top: 50px;
  width: 52px;
  font-family: var(--font-en);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
  position: fixed;
  top: 54px;
  right: 53px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .l-modal_closedBtn {
    width: 56px;
    height: 56px;
    gap: 5px 0;
  }
}
.l-modal_closedBtn::before, .l-modal_closedBtn::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-black);
  position: absolute;
  top: 20px;
  right: 0;
}
.l-modal_closedBtn::before {
  transform: rotate(45deg);
}
.l-modal_closedBtn::after {
  transform: rotate(-45deg);
}
.l-modal_container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100%;
  margin: 0 auto;
  padding: 40px 0;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .l-modal_container {
    width: calc(100% - var(--sp-mg) * 2);
    padding: 78px 0 40px;
  }
}

.l-inPageLink {
  max-width: 1512px;
  padding-left: 240px;
  position: absolute;
  top: -229px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1024px) {
  .l-inPageLink {
    padding: 0 40px 0 210px;
    top: -155px;
  }
}
@media screen and (max-width: 767px) {
  .l-inPageLink {
    margin-top: 40px;
    padding: 0;
    background: #fff;
    position: static;
    transform: none;
  }
}
.l-inPageLink_spToggle {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 35px;
  padding-right: 35px;
  font-size: 10px;
  letter-spacing: 0.05em;
  position: relative;
}
.l-inPageLink_spToggle::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 1px solid var(--color-black);
  border-bottom: 1px solid var(--color-black);
  pointer-events: none;
  position: absolute;
  top: 10px;
  right: 14px;
  transform: rotate(50deg) skewX(10deg);
}
.l-inPageLink_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 45px;
}
@media screen and (max-width: 1024px) {
  .l-inPageLink_list {
    gap: 10px 20px;
  }
}
@media screen and (min-width: 768px) {
  .l-inPageLink_list {
    display: flex !important;
  }
}
@media screen and (max-width: 767px) {
  .l-inPageLink_list {
    display: none;
  }
}
.l-inPageLink_list li {
  min-width: 147px;
  border-top: 1px solid #000;
}
@media screen and (max-width: 1024px) {
  .l-inPageLink_list li {
    min-width: 100px;
  }
}
@media screen and (max-width: 767px) {
  .l-inPageLink_list li {
    min-width: 0;
    border-color: #C6C6C6;
  }
}
.l-inPageLink_list a {
  display: block;
  padding-top: 10px;
  text-align: right;
}
@media (hover: hover) {
  .l-inPageLink_list a {
    transition: opacity 0.4s;
  }
  .l-inPageLink_list a:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 1024px) {
  .l-inPageLink_list a {
    padding-top: 5px;
  }
}
@media screen and (max-width: 767px) {
  .l-inPageLink_list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0 0;
    height: 35px;
    padding: 2px 35px 0 min(calc(20 / 375 * 100vw), 20px);
  }
}
.l-inPageLink_list ._en {
  display: block;
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1024px) {
  .l-inPageLink_list ._en {
    font-size: 14px;
    line-height: 1.2;
    text-align: left;
  }
}
.l-inPageLink_list ._jp {
  display: block;
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .l-inPageLink_list ._jp {
    line-height: 1.2;
  }
}

.l-trial {
  padding: 90px 0;
}
@media screen and (max-width: 767px) {
  .l-trial {
    padding: 29px 0 30px;
  }
}
@media screen and (min-width: 768px) {
  .l-trial_head {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .l-trial_head > * {
    width: 46%;
    max-width: 455px;
  }
}
@media screen and (min-width: 768px) {
  .l-trial_headCont {
    padding-top: min(calc(41 / 1440 * 100vw), 41px);
    padding-left: 4px;
  }
}
.l-trial_enTtl {
  font-family: var(--font-en);
  font-size: 38px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .l-trial_enTtl {
    font-size: 22px;
    letter-spacing: 0.04em;
  }
}
.l-trial_ttl {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .l-trial_ttl {
    margin-top: 0;
    font-size: 10px;
  }
}
.l-trial_price {
  border-left: 1px solid var(--color-glay-text);
  margin-top: min(calc(50 / 1440 * 100vw), 50px);
  padding-left: 34px;
  padding-bottom: 4px;
}
@media screen and (max-width: 767px) {
  .l-trial_price {
    margin-top: 22px;
    padding-left: 19px;
    padding-bottom: 2px;
  }
}
.l-trial_price dt {
  padding-top: 2px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .l-trial_price dt {
    padding-top: 0;
    font-size: 10px;
  }
}
.l-trial_price dd {
  font-size: 25px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .l-trial_price dd {
    margin-top: 5px;
    font-size: 14px;
  }
}
.l-trial_price dd ._minTetx {
  display: block;
  margin-top: 7px;
  font-size: 12px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .l-trial_imgBox {
    margin-top: 25px;
  }
}
.l-trial_imgBox img {
  width: 100%;
}
.l-trial_contBox {
  margin-top: 70px;
  font-size: 16px;
  line-height: 2.25;
}
@media screen and (max-width: 767px) {
  .l-trial_contBox {
    margin-top: 30px;
    font-size: 14px;
    line-height: 2.1428571429;
  }
}
.l-trial_contBox * {
  letter-spacing: 0.02em;
}
.l-trial_contBox + .l-trial_contBox {
  margin-top: 45px;
}
@media screen and (max-width: 767px) {
  .l-trial_contBox + .l-trial_contBox {
    margin-top: 25px;
  }
}
.l-trial_contTtl {
  margin-bottom: 11px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .l-trial_contTtl {
    margin-bottom: 8px;
    font-size: 14px;
  }
  .l-trial_contTtl::before {
    content: "▼";
  }
}
@media screen and (min-width: 768px) {
  .l-trial_course {
    display: flex;
    justify-content: space-between;
  }
  .l-trial_course > * {
    width: 46%;
    max-width: 455px;
  }
}
@media screen and (max-width: 767px) {
  .l-trial_course dl + dl {
    margin-top: 6px;
  }
}
@media screen and (max-width: 767px) {
  .l-trial_course dt {
    font-weight: 400;
    letter-spacing: 0.05em;
  }
  .l-trial_course dt::before {
    content: "・";
  }
}
.l-trial_course dd {
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .l-trial_course dd {
    margin-top: 0;
  }
}
.l-trial_reserve {
  margin-top: 90px;
}
@media screen and (max-width: 767px) {
  .l-trial_reserve {
    margin-top: 30px;
  }
}

.l-blogList {
  display: flex;
  flex-wrap: wrap;
  gap: 80px 5.5660377358%;
}
@media screen and (max-width: 767px) {
  .l-blogList {
    gap: 30px 0;
  }
}
.l-blogList > * {
  width: 29.6226415094%;
}
@media screen and (max-width: 767px) {
  .l-blogList > * {
    width: 100%;
  }
}
.l-blogList a {
  display: block;
  transition: opacity 0.4s;
}
@media (hover: hover) {
  .l-blogList a:hover {
    opacity: 0.7;
  }
  .l-blogList a:hover .l-blogList_img img {
    transform: scale(1.06);
  }
}
.l-blogList_img {
  padding-top: 66.8789808917%;
  position: relative;
  overflow: hidden;
}
.l-blogList_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.3s;
}
.l-blogList_cat {
  background: #D9D9D9;
  padding: clamp(5px , calc(8 / 1000 * 100vw), 8px) clamp(20px , calc(24 / 1000 * 100vw), 24px);
  font-size: clamp(12px , calc(14 / 1000 * 100vw), 14px);
  line-height: 1.2;
  letter-spacing: 0.05em;
  max-width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .l-blogList_cat {
    font-size: 12px;
    padding: 7px 40px;
  }
}
.l-blogList_time {
  display: block;
  margin-top: min(calc(33 / 1440 * 100vw), 33px);
  font-family: var(--font-en);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .l-blogList_time {
    margin-top: 16px;
  }
}
.l-blogList_ttl {
  margin-top: 6px;
  padding-top: 13px;
  border-top: 1px solid var(--color-glay-text);
  font-size: clamp(16px , calc(18 / 1000 * 100vw), 18px);
  line-height: 1.7222222222;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .l-blogList_ttl {
    padding-top: 10px;
  }
}
.l-blogList_tag {
  margin-top: 19px;
  font-size: 13px;
  line-height: 1.9230769231;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .l-blogList_tag {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.75;
  }
}
.l-blogList_tag > * {
  display: inline;
  margin-right: 10px;
  color: var(--color-glay-text);
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .l-blogList_tag > * {
    margin-right: 15px;
  }
}
.l-blogList_tag > *::before {
  content: "#";
}

.l-pagenation {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .l-pagenation {
    margin-top: 40px;
  }
}
.l-pagenation .page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 30px;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .l-pagenation .page-numbers {
    gap: 10px 24px;
    font-size: 16px;
  }
}
.l-pagenation .page-numbers span,
.l-pagenation .page-numbers a {
  display: inline-block;
  min-width: 20px;
  text-align: center;
}
.l-pagenation .page-numbers a {
  color: var(--color-glay-text);
}
@media (hover: hover) {
  .l-pagenation .page-numbers a {
    transition: color 0.3s;
  }
  .l-pagenation .page-numbers a:hover {
    color: var(--color-black);
  }
}
.l-pagenation .prev,
.l-pagenation .next {
  display: inline-block;
  width: 20px;
  height: 12px;
}
.l-pagenation .prev {
  background: url(../image/common/arrow_left.svg) center/contain no-repeat;
}
.l-pagenation .next {
  background: url(../image/common/arrow_right.svg) center/contain no-repeat;
}

.l-pagenationDetail {
  margin-top: 91px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-pagenationDetail {
    margin-top: 35px;
  }
}
.l-pagenationDetail a {
  display: inline-block;
  padding-bottom: 3px;
  font-size: 18px;
  letter-spacing: 0.05em;
}
@media (hover: hover) {
  .l-pagenationDetail a {
    transition: opacity 0.4s;
  }
  .l-pagenationDetail a:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 767px) {
  .l-pagenationDetail a {
    font-size: 14px;
  }
}
.l-pagenationDetail a[rel=prev] {
  padding-left: 30px;
  background: url(../image/common/arrow_left.svg) left center/auto no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .l-pagenationDetail a[rel=prev] {
    padding-left: 24px;
  }
}
.l-pagenationDetail a[rel=next] {
  padding-right: 30px;
  background: url(../image/common/arrow_right.svg) right center/auto no-repeat;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .l-pagenationDetail a[rel=next] {
    padding-right: 24px;
  }
}

.l-form {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .l-form {
    margin-top: 33px;
  }
}
@media screen and (min-width: 768px) {
  .l-form .l-form_area1,
  .l-form .l-form_area2 .l-form_cont {
    display: flex;
    gap: 0 40px;
  }
}
@media screen and (min-width: 768px) {
  .l-form .l-form_area1_ttl,
  .l-form .l-form_area2 .l-form_cont dt {
    width: 53.4%;
    font-size: min(2.34375vw, 21px);
  }
}
@media screen and (min-width: 768px) {
  .l-form .l-form_area1_cont,
  .l-form .l-form_area2 .l-form_cont dd {
    flex: 1;
    min-width: 400px;
  }
}
@media screen and (min-width: 768px) {
  .l-form .l-form_area1 .l-form_cont + .l-form_cont {
    margin-top: 24px;
  }
  .l-form .l-form_area1 .l-form_cont dd {
    margin-top: 5px;
  }
}
@media screen and (min-width: 768px) {
  .l-form .l-form_area2 {
    margin-top: 72px;
  }
  .l-form .l-form_area2 .l-form_cont + .l-form_cont {
    margin-top: 68px;
  }
  .l-form .l-form_area2 .l-form_cont + .l-form_cont.-privacy {
    margin-top: 90px;
  }
}
@media screen and (max-width: 767px) {
  .l-form .l-form_area2 {
    margin-top: 30px;
  }
}
.l-form .l-form_area2 .l-form_error {
  display: block;
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .l-form .l-form_area2.-first {
    margin-top: 0;
    margin-bottom: 106px;
  }
}
@media screen and (max-width: 767px) {
  .l-form .l-form_area2.-first {
    margin: 0 0 30px;
  }
}
.l-form .l-form_cont * {
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .l-form .l-form_cont + .l-form_cont {
    margin-top: 15px;
  }
}
@media screen and (max-width: 767px) {
  .l-form .l-form_cont dd {
    margin-top: 2px;
  }
}
.l-form .l-form_cont.-textArea dd {
  padding-top: 10px;
}
@media screen and (max-width: 767px) {
  .l-form .l-form_cont.-experience .l-form_checkbox span {
    font-size: 12px;
  }
}
.l-form input,
.l-form textarea,
.l-form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 5px 10px;
  background: #fff;
  box-shadow: 0;
  border: 1px solid var(--color-glay-text);
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: 400;
  line-height: 1.5;
  outline: none;
}
.l-form input::-moz-placeholder, .l-form textarea::-moz-placeholder, .l-form select::-moz-placeholder {
  color: var(--color-glay-text);
}
.l-form input::placeholder,
.l-form textarea::placeholder,
.l-form select::placeholder {
  color: var(--color-glay-text);
}
.l-form input {
  height: 39px;
}
@media screen and (max-width: 767px) {
  .l-form input {
    height: 30px;
  }
}
.l-form input.-age {
  width: 105px;
}
.l-form input[type=submit] {
  display: block;
  border: 1px solid #000;
  transition: 0.3s;
  cursor: pointer;
}
.l-form textarea {
  resize: vertical;
  form-sizing: content;
  height: 327px;
}
@media screen and (max-width: 767px) {
  .l-form textarea {
    height: 178px;
  }
}
.l-form textarea.-height2 {
  height: 256px;
}
@media screen and (max-width: 767px) {
  .l-form textarea.-height2 {
    height: 122px;
  }
}
.l-form textarea.-height3 {
  height: 107px;
}
@media screen and (max-width: 767px) {
  .l-form textarea.-height3 {
    height: 72px;
  }
}
.l-form select {
  width: 190px;
  padding-right: 30px;
  background: #fff url(../image/contact/select_icon.svg) right 10px center/auto no-repeat;
}
.l-form_checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 24px;
  padding: 3px 0 7px;
}
@media screen and (max-width: 767px) {
  .l-form_checkbox {
    padding: 2px 0 0;
    gap: 10px 12px;
  }
}
.l-form_checkbox input[type=radio],
.l-form_checkbox input[type=checkbox] {
  display: none;
}
.l-form_checkbox label {
  display: block;
  cursor: pointer;
}
.l-form_checkbox span {
  display: inline-block;
  position: relative;
  padding-left: 37px;
}
.l-form_checkbox span::before, .l-form_checkbox span::after {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 0;
}
.l-form_checkbox span::before {
  background-color: #fff;
  border: 1px solid var(--color-glay-text);
}
.l-form_checkbox span::after {
  background: var(--color-black);
  transform: scale(40%);
  opacity: 0;
}
.l-form_checkbox input:checked + span::after {
  opacity: 1;
}
.l-form .l-form_privacy_text {
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .l-form .l-form_privacy_text {
    font-size: 14px;
  }
}
.l-form .l-form_privacy_text ._underLine {
  text-decoration: underline;
}
.l-form .l-form_privacy_text ._minText {
  display: block;
  margin-top: 7px;
  font-size: 12px;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .l-form .l-form_privacy_text ._minText {
    margin-top: 11px;
    line-height: 1.6666666667;
    letter-spacing: 0.05em;
  }
}
@media (hover: hover) {
  .l-form .l-form_privacy_text a {
    transition: opacity 0.4s;
  }
  .l-form .l-form_privacy_text a:hover {
    opacity: 0.5;
  }
}
.l-form .l-form_rec {
  display: inline-block;
  color: var(--color-red);
  margin-left: 5px;
}
.l-form .l-form_error {
  color: var(--color-red);
  margin-left: 18px;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .l-form .l-form_error {
    margin-left: 8px;
    font-size: 10px;
  }
}
.l-form .l-form_appBox {
  display: flex;
  flex-direction: column;
  gap: 45px 0;
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .l-form .l-form_appBox {
    gap: 25px 0;
    margin-top: 40px;
  }
}
.l-form .l-form_visitDesc {
  display: block;
  margin-top: 24px;
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .l-form .l-form_visitDesc {
    margin-top: 5px;
    font-size: 12px;
  }
  .l-form .l-form_visitDesc > span {
    display: block;
    padding-left: 1.5em;
    text-indent: -1em;
    line-height: 2;
  }
}
.l-form .l-form_prev {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  border: 1px solid var(--color-black);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media (hover: hover) {
  .l-form .l-form_prev {
    transition: opacity 0.4s;
  }
  .l-form .l-form_prev:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 767px) {
  .l-form .l-form_prev {
    height: 50px;
    font-size: 14px;
  }
}
.l-form .l-form_submit {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  background: var(--color-black);
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media (hover: hover) {
  .l-form .l-form_submit {
    transition: opacity 0.4s;
  }
  .l-form .l-form_submit:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 767px) {
  .l-form .l-form_submit {
    height: 50px;
    font-size: 14px;
  }
}
.l-form_reCaptch {
  margin-top: 60px;
  color: #5a5a5a;
  font-size: 12px;
  text-align: center;
}
.l-form_reCaptch a {
  text-decoration: underline;
}

/* ========================================
トップページ home
======================================== */
.p-homeHeader {
  position: absolute;
  top: 0;
  left: 0;
  z-index: var(--z-index-fixedLogo);
}
.is-menuActive .p-homeHeader {
  z-index: var(--z-index-navBtn);
}
.p-homeHeader a {
  color: #fff;
  border-color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.p-homeHeader .header_logo {
  visibility: hidden;
}
.p-homeHeader .header_fixedLogo img {
  opacity: 0;
  transition: opacity 0.4s;
}
.is-mvScrollPos .p-homeHeader .header_fixedLogo img {
  opacity: 1;
}
.p-homeHeader .gNavBtn {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-homeHeader .gNavBtn {
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  }
}
.p-homeHeader .gNavBtn::before, .p-homeHeader .gNavBtn::after {
  background: #fff;
}
@media screen and (max-width: 767px) {
  .p-homeHeader .gNavBtn::before, .p-homeHeader .gNavBtn::after {
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  }
}
.is-mvScrollPos .p-homeHeader .gNavBtn {
  color: var(--color-black);
}
@media screen and (max-width: 767px) {
  .is-mvScrollPos .p-homeHeader .gNavBtn {
    text-shadow: none;
  }
}
.is-mvScrollPos .p-homeHeader .gNavBtn::before, .is-mvScrollPos .p-homeHeader .gNavBtn::after {
  background: var(--color-black);
}
@media screen and (max-width: 767px) {
  .is-mvScrollPos .p-homeHeader .gNavBtn::before, .is-mvScrollPos .p-homeHeader .gNavBtn::after {
    box-shadow: none;
  }
}
.is-menuActive .p-homeHeader .gNavBtn {
  color: transparent;
}
@media screen and (max-width: 767px) {
  .is-menuActive .p-homeHeader .gNavBtn {
    text-shadow: none;
  }
}
.is-menuActive .p-homeHeader .gNavBtn::before, .is-menuActive .p-homeHeader .gNavBtn::after {
  background: var(--color-black);
}
@media screen and (max-width: 767px) {
  .is-menuActive .p-homeHeader .gNavBtn::before, .is-menuActive .p-homeHeader .gNavBtn::after {
    box-shadow: none;
  }
}
.is-menuActive .p-homeHeader .gNavBtn .gNavBtn_text::before {
  color: var(--color-black);
}

.p-homeMv {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 1;
  position: relative;
}
@media (hover: hover) {
  .p-homeMv {
    height: 100vh !important;
  }
}
.p-homeMv_slide {
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.p-homeMv_slide .splide__track, .p-homeMv_slide .splide__list {
  width: 100%;
  height: 100%;
}
.p-homeMv_slide .splide__slide {
  width: 100%;
  height: 100%;
}
.p-homeMv_slide .splide__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-homeMv_slide .splide__progress {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
}
.p-homeMv_slide .splide__progress__bar {
  height: 3px;
  background: rgba(255, 255, 255, 0.8);
}
.p-homeMv_logoBox {
  position: absolute;
  left: min(calc(60 / 1440 * 100vw), 60px);
  bottom: 35px;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .p-homeMv_logoBox {
    left: min(calc(60 / 1024 * 100vw), 60px);
    bottom: 93px;
  }
}
@media screen and (max-width: 767px) {
  .p-homeMv_logoBox {
    bottom: auto;
    top: 29px;
    left: 21px;
  }
}
@media screen and (max-width: 767px) {
  .p-homeMv_logo {
    width: min(calc(282 / 375 * 100vw), 282px);
    filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.2));
  }
}
.p-homeMv_ttl {
  color: #fff;
  font-family: var(--font-noto-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  position: absolute;
  right: 0;
  bottom: 3px;
}
@media screen and (max-width: 767px) {
  .p-homeMv_ttl {
    margin-top: min(calc(14 / 375 * 100vw), 14px);
    font-size: 11px;
    text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
    position: static;
  }
}
.p-homeMv_nav {
  width: calc(100% - 620px);
  max-width: 546px;
  position: absolute;
  right: min(calc(60 / 1440 * 100vw), 60px);
  bottom: 35px;
  z-index: 2;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 1024px) {
  .p-homeMv_nav {
    width: 100%;
    right: auto;
    left: min(calc(60 / 1024 * 100vw), 60px);
  }
}
@media screen and (max-width: 767px) {
  .p-homeMv_nav {
    width: calc(100% - var(--mg-sp) * 2);
    left: var(--mg-sp);
    bottom: 112px;
  }
}
.p-homeMv_nav a {
  display: flex;
  align-items: center;
  gap: 0 20px;
  color: #fff;
  line-height: 1.6;
}
@media (hover: hover) {
  .p-homeMv_nav a {
    transition: opacity 0.4s;
  }
  .p-homeMv_nav a:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 767px) {
  .p-homeMv_nav a {
    gap: 0 10px;
    padding-bottom: 4px;
    font-size: 13px;
  }
  .p-homeMv_nav a::after {
    content: ">";
  }
}
.p-homeMv_nav time {
  display: block;
  font-family: var(--font-en);
  font-size: 17px;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .p-homeMv_nav time {
    padding-top: 1px;
    font-size: 14px;
  }
}
.p-homeMv_nav ._cont {
  flex: 1;
  display: block;
  font-size: 14px;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .p-homeMv_nav ._cont {
    font-size: 13px;
  }
}
.p-homeMv_nav ._more {
  display: block;
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .p-homeMv_nav ._more {
    display: none;
  }
}
.p-homeMv_nav ._more::after {
  content: ">";
  margin-left: 5px;
}

.p-homeAbout {
  margin-top: 135px;
}
@media screen and (max-width: 767px) {
  .p-homeAbout {
    margin-top: 64px;
  }
}
.p-homeAbout_mark {
  width: 70px;
  margin: 0 auto 110px;
}
@media screen and (max-width: 767px) {
  .p-homeAbout_mark {
    width: 64px;
    margin-bottom: 58px;
  }
}
.p-homeAbout_mark img {
  width: 100%;
}
.p-homeAbout_ttl {
  padding-left: 1.1em;
  font-size: clamp(44px , calc(49 / 1000 * 100vw), 49px);
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-homeAbout_ttl {
    padding-left: 0.2em;
    font-size: min(calc(24 / 375 * 100vw), 24px);
  }
}
.p-homeAbout_textBox {
  margin-top: 92px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-homeAbout_textBox {
    margin-top: 38px;
    text-align: left;
  }
}
@media screen and (min-width: 768px) {
  .p-homeAbout_textBox p {
    line-height: 2.5;
  }
}
.p-homeAbout_list {
  max-width: 1800px;
  margin: 174px auto 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-homeAbout_list {
    margin-top: 48px;
  }
}
.p-homeAbout_list li {
  position: relative;
  z-index: 1;
}
.p-homeAbout_list li::before {
  content: "";
  display: block;
  background: var(--color-glay-text);
  height: 1px;
  width: min(100vw - 120px, 1680px);
  position: absolute;
  top: min(calc(125 / 1440 * 100vw), 125px);
  left: min(calc(60 / 1440 * 100vw), 60px);
  transform: scale(0, 1);
  transition: transform var(--ani-boder);
}
@media screen and (max-width: 1440px) {
  .p-homeAbout_list li::before {
    width: 91.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .p-homeAbout_list li::before {
    display: none;
  }
}
.p-homeAbout_list li::after {
  content: "";
  display: block;
  background: var(--color-glay-text);
  position: absolute;
  width: 1px;
  height: 670px;
  top: calc(46 / 1440 * 100vw);
  right: 114px;
  transform: scale(1, 0);
  transition: transform var(--ani-boder);
}
@media screen and (max-width: 1440px) {
  .p-homeAbout_list li::after {
    right: max((100vw - 1060px) / 2 * 0.6, var(--mg-pc) * 0.6);
  }
}
@media screen and (max-width: 767px) {
  .p-homeAbout_list li::after {
    display: none;
  }
}
.p-homeAbout_list li.is-on::before {
  transform: scale(1, 1);
}
.p-homeAbout_list li.is-on::after {
  transform: scale(1, 1);
}
.p-homeAbout_list li + li {
  margin-top: 178px;
}
@media screen and (max-width: 1024px) {
  .p-homeAbout_list li + li {
    margin-top: 120px;
  }
}
@media screen and (max-width: 767px) {
  .p-homeAbout_list li + li {
    margin-top: 25px;
  }
}
@media screen and (min-width: 768px) {
  .p-homeAbout_list li:nth-of-type(odd) ._imgBox {
    margin-left: clamp(-190px, (100vw - 1060px) / 2 * -1, var(--mg-pc) * -1);
  }
}
@media screen and (min-width: 1441px) {
  .p-homeAbout_list li:nth-of-type(odd) ._imgBox {
    margin-left: max((100vw - 1060px) / 2 * -1, -370px);
  }
}
@media screen and (min-width: 768px) {
  .p-homeAbout_list li:nth-child(even)::after {
    left: 114px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1440px) {
  .p-homeAbout_list li:nth-child(even)::after {
    left: max((100vw - 1060px) / 2 * 0.6, var(--mg-pc) * 0.6);
  }
}
@media screen and (min-width: 768px) {
  .p-homeAbout_list li:nth-child(even) ._inner {
    flex-direction: row-reverse;
  }
  .p-homeAbout_list li:nth-child(even) ._imgBox {
    margin-right: clamp(-190px, (100vw - 1060px) / 2 * -1, var(--mg-pc) * -1);
  }
}
@media screen and (min-width: 768px) and (min-width: 1441px) {
  .p-homeAbout_list li:nth-child(even) ._imgBox {
    margin-right: max((100vw - 1060px) / 2 * -1, -370px);
  }
}
@media screen and (min-width: 768px) {
  .p-homeAbout_list li:nth-child(even) ._contBox {
    max-width: 435px;
  }
}
.p-homeAbout_list ._inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-homeAbout_list ._inner {
    display: block;
  }
}
.p-homeAbout_list ._contBox {
  font-size: 16px;
  line-height: 2.375;
}
@media screen and (min-width: 768px) {
  .p-homeAbout_list ._contBox {
    flex: 1;
    max-width: 458px;
    min-width: 360px;
    margin-top: min(calc(125 / 1440 * 100vw), 125px);
    padding-top: min(calc(90 / 1440 * 100vw), 90px);
  }
}
@media screen and (max-width: 767px) {
  .p-homeAbout_list ._contBox {
    margin-top: 30px;
    line-height: 2;
  }
}
.p-homeAbout_list ._contBox p {
  text-align: justify;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-homeAbout_list ._contBox p {
    letter-spacing: 0.06em;
  }
}
.p-homeAbout_list ._imgBox {
  width: 60.8490566038%;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 1441px) {
  .p-homeAbout_list ._imgBox {
    width: min(calc(645 / 1440 * 100vw), 807px);
    height: 810px;
  }
  .p-homeAbout_list ._imgBox img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (max-width: 1024px) {
  .p-homeAbout_list ._imgBox {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-homeAbout_list ._imgBox {
    width: calc(100% + var(--mg-sp) * 2);
    margin-left: calc(var(--mg-sp) * -1);
  }
}
.p-homeAbout_list ._imgBox img {
  width: 100%;
}
.p-homeAbout_list ._ttl {
  width: 105%;
  font-size: clamp(27px , calc(35 / 1140 * 100vw), 35px);
  line-height: 1.9428571429;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-homeAbout_list ._ttl {
    font-size: 24px;
    line-height: 1.5833333333;
    letter-spacing: 0.1em;
  }
}
.p-homeAbout_list ._desc {
  margin-top: min(calc(53 / 1440 * 100vw), 53px);
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-homeAbout_list ._desc {
    margin-top: 31px;
  }
}
.p-homeAbout_list ._link {
  margin-top: 2.9em;
}
@media screen and (max-width: 767px) {
  .p-homeAbout_list ._link {
    margin-top: 9px;
  }
}
.p-homeAbout_list li > * {
  opacity: 0;
  transition: transform 1s, opacity 1s;
}
@media screen and (max-width: 767px) {
  .p-homeAbout_list li > * {
    transform: translateY(40px);
  }
}
.p-homeAbout_list li ._contBox::before, .p-homeAbout_list li ._contBox::after {
  transition: var(--ani-boder);
}
.p-homeAbout_list li.is-on > * {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .p-homeAbout_list li.is-on > * {
    transform: translateY(0);
  }
}
.p-homeAbout_list li.is-on ._contBox::before {
  width: clamp(10px, 100vw - var(--mg-pc) * 2 / 5 * 2, 1320px);
}
.p-homeAbout_list li.is-on ._contBox::after {
  height: calc(100% + 63px);
}

.p-homeIntroductionWrap {
  margin-top: 180px;
  padding: 135px 0 90px;
}
@media screen and (max-width: 767px) {
  .p-homeIntroductionWrap {
    margin-top: 45px;
    padding: 47px 0 30px;
  }
}

.p-homeIntroduction_container {
  display: flex;
  justify-content: space-between;
  gap: 0 40px;
  padding-top: 119px;
}
@media screen and (max-width: 767px) {
  .p-homeIntroduction_container {
    display: block;
    padding-top: 49px;
  }
}
.p-homeIntroduction_contBox {
  flex: 1;
  max-width: 455px;
}
.p-homeIntroduction_ttl {
  margin-top: -0.25em;
  font-size: clamp(27px , calc(35 / 1140 * 100vw), 35px);
  font-weight: 400;
  line-height: 1.9428571429;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-homeIntroduction_ttl {
    font-size: 21px;
    line-height: 2;
  }
}
.p-homeIntroduction_desc {
  margin-top: 35px;
  line-height: 2.25;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .p-homeIntroduction_desc {
    margin-top: 22px;
    font-size: 14px;
    line-height: 2.1428571429;
    letter-spacing: 0.06em;
  }
}
.p-homeIntroduction_link {
  margin-top: 27px;
}
@media screen and (max-width: 767px) {
  .p-homeIntroduction_link {
    margin-top: 15px;
  }
}
.p-homeIntroduction_imgBox {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .p-homeIntroduction_imgBox {
    width: 100%;
    margin-top: 38px;
  }
}
.p-homeIntroduction_imgBox img {
  width: 100%;
}
.p-homeIntroduction_reserve {
  margin-top: 90px;
}

.p-homeFaq {
  margin-top: 126px;
}
@media screen and (max-width: 767px) {
  .p-homeFaq {
    margin-top: 44px;
  }
}
.p-homeFaq_list {
  width: calc(100% + min(calc(75 / 1440 * 100vw), 75px));
  margin-top: 34px;
}
@media screen and (max-width: 767px) {
  .p-homeFaq_list {
    width: 100%;
    margin-top: 17px;
  }
}
.p-homeFaq_ttl {
  font-size: clamp(25px , calc(33 / 1140 * 100vw), 33px);
  line-height: 1.9428571429;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-homeFaq_ttl {
    font-size: 18px;
    line-height: 1.5833333333;
    letter-spacing: 0.1em;
  }
}
.p-homeFaq dl {
  border-bottom: 1px solid var(--color-glay-text);
}
.p-homeFaq dt {
  position: relative;
  padding: 18px 60px 15px 0;
  cursor: pointer;
}
@media (hover: hover) {
  .p-homeFaq dt {
    transition: opacity 0.4s;
  }
  .p-homeFaq dt:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 767px) {
  .p-homeFaq dt {
    padding: 12px 40px 11px 0;
    font-size: 14px;
    line-height: 1.8571428571;
    letter-spacing: 0.05em;
  }
}
.p-homeFaq dt::before, .p-homeFaq dt::after {
  content: "";
  display: block;
  background: var(--color-black);
  width: 25px;
  height: 1px;
  position: absolute;
  top: 33px;
  right: 15px;
}
@media screen and (max-width: 767px) {
  .p-homeFaq dt::before, .p-homeFaq dt::after {
    width: 17px;
    background-color: var(--color-glay-text);
    top: 24px;
    right: 0;
  }
}
.p-homeFaq dt::after {
  transform: rotate(90deg);
  transition: 0.3s;
}
.p-homeFaq dt.is-active::after {
  transform: rotate(0);
}
.p-homeFaq dd {
  display: none;
  padding: 2px 60px 15px 0;
}
@media screen and (max-width: 767px) {
  .p-homeFaq dd {
    padding-right: 0;
    padding-bottom: 11px;
    font-size: 12px;
    line-height: 2.1666666667;
  }
}
.p-homeFaq a {
  text-decoration: underline;
}
@media (hover: hover) {
  .p-homeFaq a {
    transition: opacity 0.4s;
  }
  .p-homeFaq a:hover {
    opacity: 0.5;
  }
}

.p-homeProcess {
  margin-top: 136px;
  padding-top: 62px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-homeProcess {
    margin-top: 0;
  }
}
.p-homeProcess ._inner {
  padding-top: 91px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-homeProcess ._inner {
    padding-top: 46px;
  }
}
.p-homeProcess ._ttl {
  font-size: clamp(28px , calc(35 / 1140 * 100vw), 35px);
  line-height: 1.8285714286;
}
@media screen and (max-width: 767px) {
  .p-homeProcess ._ttl {
    font-size: 21px;
    letter-spacing: 0.1em;
  }
}
.p-homeProcess ._desc {
  margin-top: 47px;
  font-size: 16px;
  font-weight: 400;
  line-height: 2.25;
}
@media screen and (max-width: 767px) {
  .p-homeProcess ._desc {
    margin-top: 19px;
    line-height: 2;
  }
}
.p-homeProcess .p-programCondition_list {
  margin-top: 106px;
}
@media screen and (max-width: 767px) {
  .p-homeProcess .p-programCondition_list {
    margin-top: 38px;
  }
}
@media screen and (max-width: 767px) {
  .p-homeProcess .p-programCondition_list li + li {
    margin-top: 36px;
  }
}
.p-homeProcess .p-programCondition_list ._link {
  margin-top: 35px;
}
@media screen and (max-width: 767px) {
  .p-homeProcess .p-programCondition_list ._link {
    margin-top: 20px;
  }
}
@media screen and (min-width: 768px) {
  .p-homeProcess .-utility01 {
    width: 110%;
  }
}
@media screen and (min-width: 1025px) {
  .p-homeProcess .-utility02 {
    margin-top: 60px;
  }
}
@media screen and (min-width: 768px) {
  .p-homeProcess .-utility02 {
    width: 110%;
  }
}
@media screen and (min-width: 768px) {
  .p-homeProcess .-utility03 {
    margin-top: 3.2em !important;
  }
}
@media screen and (max-width: 767px) {
  .p-homeProcess .-utility03 {
    margin-top: 22px !important;
    margin-bottom: 20px;
  }
  .p-homeProcess .-utility03::before {
    content: "";
    display: block;
    width: 60px;
    height: 1px;
    margin-bottom: 21px;
    background: var(--color-glay-text);
  }
}
@media screen and (min-width: 768px) {
  .p-homeProcess .-utility04 {
    width: 110%;
  }
}
@media screen and (max-width: 767px) {
  .p-homeProcess .-utility06 {
    margin-top: 44px !important;
  }
}
.p-homeProcess_reserve {
  margin-top: 120px;
}

.p-homeFacility {
  margin-top: 198px;
}
@media screen and (max-width: 767px) {
  .p-homeFacility {
    margin-top: 63px;
  }
}
.p-homeFacility_intro ._inner {
  padding-top: 91px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-homeFacility_intro ._inner {
    padding-top: 46px;
  }
}
.p-homeFacility_intro ._ttl {
  font-size: clamp(28px , calc(35 / 1140 * 100vw), 35px);
  font-weight: 400;
  line-height: 1.8285714286;
}
@media screen and (max-width: 767px) {
  .p-homeFacility_intro ._ttl {
    font-size: 21px;
    letter-spacing: 0.1em;
  }
}
.p-homeFacility_intro ._desc {
  margin-top: 47px;
  font-size: 16px;
  font-weight: 400;
  line-height: 2.25;
}
@media screen and (max-width: 767px) {
  .p-homeFacility_intro ._desc {
    margin-top: 19px;
    line-height: 2;
  }
}
.p-homeFacility_slide {
  margin-top: 90px;
}
@media screen and (max-width: 767px) {
  .p-homeFacility_slide {
    width: 100%;
    margin-top: 31px;
  }
}
.p-homeFacility_slide ._caption {
  width: 30%;
  margin-top: clamp(15px , calc(18 / 1440 * 100vw), 18px);
  font-size: clamp(15px , calc(18 / 1440 * 100vw), 18px);
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-homeFacility_slide ._caption {
    width: 145px;
    margin-top: 2px;
    padding-left: var(--mg-sp);
    font-size: 12px;
  }
}
.p-homeFacility_progress {
  margin-top: -22px;
  margin-top: clamp(-22px, -1.5277777778vw, -18px);
  width: 68.8679245283%;
  margin-left: auto;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .p-homeFacility_progress {
    width: calc(100% - 150px - var(--mg-sp));
    max-width: 208px;
    margin: -12px var(--mg-sp) 0 auto;
  }
}
.p-homeFacility_bar {
  width: 0;
  height: 2px;
  transition: width 0.4s ease;
  background: var(--color-glay-text);
}
.p-homeFacility_link {
  margin-top: 56px;
}
@media screen and (max-width: 767px) {
  .p-homeFacility_link {
    margin-top: 16px;
  }
}

.p-homeBlog {
  margin-top: 200px;
}
@media screen and (max-width: 767px) {
  .p-homeBlog {
    margin-top: 64px;
  }
}
@media screen and (max-width: 767px) {
  .p-homeBlog_listSpHead {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px 14px;
  }
  .p-homeBlog_listSpHead .l-blogList_cat {
    padding: 2px 8px;
    position: static;
  }
  .p-homeBlog_listSpHead .l-blogList_time {
    margin-top: 0;
    letter-spacing: 0.1em;
  }
}
.p-homeBlog .l-blogList {
  margin-top: 125px;
}
@media screen and (min-width: 768px) {
  .p-homeBlog .l-blogList li:nth-child(4),
  .p-homeBlog .l-blogList li:nth-child(5) {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .p-homeBlog .l-blogList {
    gap: 10px 0;
    margin-top: 24px;
  }
}
@media screen and (max-width: 767px) {
  .p-homeBlog .l-blogList_ttl {
    padding-top: 6px;
  }
}
@media screen and (max-width: 767px) {
  .p-homeBlog .l-blogList_img {
    display: contents;
  }
  .p-homeBlog .l-blogList_img img {
    display: none;
  }
}
.p-homeBlog_link {
  margin-top: 90px;
}
@media screen and (max-width: 767px) {
  .p-homeBlog_link {
    margin-top: 20px;
  }
}

/* ========================================
ジムについて p-about
======================================== */
.p-aboutConcept {
  margin-top: 73px;
}
@media screen and (max-width: 767px) {
  .p-aboutConcept {
    margin-top: 46px;
  }
}
.p-aboutConcept_ttl {
  padding-left: 1.1em;
  font-size: clamp(44px , calc(49 / 1000 * 100vw), 49px);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-aboutConcept_ttl {
    padding-left: 0.2em;
    font-size: min(calc(24 / 375 * 100vw), 24px);
  }
}
.p-aboutConcept_textBox {
  margin-top: 122px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-aboutConcept_textBox {
    margin-top: 38px;
    text-align: left;
  }
}
.p-aboutConcept_mark {
  width: 60px;
  margin: 76px auto 91px;
}
@media screen and (max-width: 767px) {
  .p-aboutConcept_mark {
    width: 35px;
    margin: 34px auto 46px;
  }
}
.p-aboutConcept_mark img {
  width: 100%;
}
.p-aboutConcept_layer {
  margin-top: 167px;
  background: url(../image/about/concept_layer_bg.svg) left center/auto 100% no-repeat;
}
@media screen and (min-width: 768px) {
  .p-aboutConcept_layer {
    max-width: min(calc(1080 / 1288 * 100vw), 1080px);
    padding-bottom: min(calc(46 / 1288 * 100vw), 46px);
  }
}
@media screen and (max-width: 767px) {
  .p-aboutConcept_layer {
    width: min(calc(333 / 375 * 100vw), 333px);
    margin: 34px auto 0;
    padding-bottom: min(calc(13 / 375 * 100vw), 13px);
    background-position: left min(calc(20 / 375 * 100vw), 20px) center;
  }
}
@media screen and (min-width: 768px) {
  .p-aboutConcept_layer dl {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-left: min(calc(200 / 1288 * 100vw), 200px);
  }
}
@media screen and (min-width: 768px) {
  .p-aboutConcept_layer dt {
    width: 22.3863636364%;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .p-aboutConcept_layer dt {
    display: flex;
    align-items: center;
    gap: 0 10px;
    padding-left: min(calc(3 / 375 * 100vw), 3px);
    color: var(--color-glay-text);
  }
}
.p-aboutConcept_layer dt ._en {
  display: block;
  font-family: var(--font-en);
  font-size: min(calc(21 / 1288 * 100vw), 21px);
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-aboutConcept_layer dt ._en {
    font-size: min(calc(14 / 375 * 100vw), 14px);
  }
}
.p-aboutConcept_layer dt ._jp {
  display: block;
  margin-top: min(calc(8 / 1288 * 100vw), 8px);
  font-size: min(calc(13 / 1288 * 100vw), 13px);
  letter-spacing: 0.02em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-aboutConcept_layer dt ._jp {
    margin-top: 0;
    font-size: min(calc(10 / 375 * 100vw), 10px);
  }
}
.p-aboutConcept_layer dd {
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-aboutConcept_layer dd {
    flex: 1;
    font-size: min(calc(18 / 1288 * 100vw), 18px);
    text-align: right;
  }
}
@media screen and (max-width: 767px) {
  .p-aboutConcept_layer dd {
    font-size: min(calc(16 / 375 * 100vw), 16px);
  }
}
@media screen and (min-width: 768px) {
  .p-aboutConcept_layer dd::after {
    content: "";
    display: block;
    height: 1px;
    background: var(--color-glay-text);
    position: absolute;
    right: 15px;
    bottom: 0;
    z-index: -1;
  }
}
.p-aboutConcept_layer ._cont01 {
  padding-top: min(calc(75 / 1288 * 100vw), 75px);
}
@media screen and (max-width: 767px) {
  .p-aboutConcept_layer ._cont01 {
    padding-top: 23px;
  }
}
@media screen and (min-width: 768px) {
  .p-aboutConcept_layer ._cont01 dt {
    padding-top: min(calc(23 / 1288 * 100vw), 23px);
  }
}
@media screen and (min-width: 768px) {
  .p-aboutConcept_layer ._cont01 dd::after {
    width: min(calc(665 / 1288 * 100vw), 665px);
    bottom: max(calc(-11 / 1288 * 100vw), -11px);
  }
}
.p-aboutConcept_layer ._cont02 {
  margin-top: min(calc(71 / 1288 * 100vw), 71px);
}
@media screen and (max-width: 767px) {
  .p-aboutConcept_layer ._cont02 {
    margin-top: 33px;
  }
}
@media screen and (min-width: 768px) {
  .p-aboutConcept_layer ._cont02 dt {
    padding-top: min(calc(26 / 1288 * 100vw), 26px);
  }
}
@media screen and (min-width: 768px) {
  .p-aboutConcept_layer ._cont02 dd::after {
    width: min(calc(596 / 1288 * 100vw), 596px);
    bottom: max(calc(-11 / 1288 * 100vw), -11px);
  }
}
.p-aboutConcept_layer ._cont03 {
  margin-top: min(calc(98 / 1288 * 100vw), 98px);
}
@media screen and (max-width: 767px) {
  .p-aboutConcept_layer ._cont03 {
    margin-top: 31px;
  }
}
@media screen and (min-width: 768px) {
  .p-aboutConcept_layer ._cont03 dt {
    padding-top: min(calc(13 / 1288 * 100vw), 13px);
  }
}
@media screen and (min-width: 768px) {
  .p-aboutConcept_layer ._cont03 dd::after {
    width: min(calc(485 / 1288 * 100vw), 485px);
    top: min(calc(38 / 1288 * 100vw), 38px);
  }
}
.p-aboutConcept_layer ._cont03 ._paragraph {
  display: flex;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-aboutConcept_layer ._cont03 ._paragraph {
    justify-content: flex-end;
    gap: 0 min(calc(38 / 1288 * 100vw), 38px);
    text-align: center;
  }
  .p-aboutConcept_layer ._cont03 ._paragraph > *:nth-child(1) {
    width: min(calc(238 / 1288 * 100vw), 238px);
  }
  .p-aboutConcept_layer ._cont03 ._paragraph > *:nth-child(3) {
    width: min(calc(238 / 1288 * 100vw), 238px);
  }
  .p-aboutConcept_layer ._cont03 ._paragraph:nth-child(3) {
    text-align: right;
  }
}
@media screen and (max-width: 767px) {
  .p-aboutConcept_layer ._cont03 ._paragraph {
    align-items: center;
    gap: 0 min(calc(4 / 375 * 100vw), 4px);
  }
  .p-aboutConcept_layer ._cont03 ._paragraph:nth-child(1) {
    padding-left: min(calc(3 / 375 * 100vw), 3px);
  }
  .p-aboutConcept_layer ._cont03 ._paragraph:nth-child(3) {
    line-height: 1.5;
  }
}
.p-aboutConcept_layer ._cont03 ._and {
  display: flex;
  align-items: center;
  font-family: var(--font-garamond);
  font-weight: 400;
  text-align: center;
  transform: translateY(-5%);
}
@media screen and (min-width: 768px) {
  .p-aboutConcept_layer ._cont03 ._and {
    font-size: min(calc(26 / 1288 * 100vw), 26px);
    position: absolute;
    top: min(calc(13 / 1288 * 100vw), 13px);
    right: min(calc(240 / 1288 * 100vw), 240px);
  }
}
@media screen and (max-width: 767px) {
  .p-aboutConcept_layer ._cont03 ._and {
    font-size: min(calc(13 / 375 * 100vw), 13px);
    transform: none;
  }
}
.p-aboutConcept_layer ._cont03 ._eb {
  display: block;
  margin-bottom: min(calc(9 / 1288 * 100vw), 9px);
  font-family: var(--font-garamond);
  font-weight: 400;
  font-size: min(calc(18 / 1288 * 100vw), 18px);
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-aboutConcept_layer ._cont03 ._eb {
    margin-bottom: 0;
    font-size: min(calc(13 / 375 * 100vw), 13px);
  }
}
.p-aboutConcept_layer ._cont03 dd ._jp {
  display: block;
}
@media screen and (max-width: 767px) {
  .p-aboutConcept_layer ._cont03 dd ._jp {
    font-size: min(calc(12 / 375 * 100vw), 12px);
    letter-spacing: 0.1em;
    line-height: 1;
  }
}

.p-aboutPhilosophy {
  margin-top: 242px;
}
@media screen and (max-width: 767px) {
  .p-aboutPhilosophy {
    margin-top: 60px;
  }
}
.p-aboutPhilosophy_intro {
  margin-top: 124px;
}
@media screen and (max-width: 767px) {
  .p-aboutPhilosophy_intro {
    margin-top: 30px;
  }
}
.p-aboutPhilosophy_intro ._secTtl {
  font-size: clamp(32px , calc(40 / 1000 * 100vw), 40px);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-aboutPhilosophy_intro ._secTtl {
    font-size: min(calc(21 / 375 * 100vw), 21px);
    line-height: 1.5714285714;
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .p-aboutPhilosophy_intro ._spImg {
    width: calc(100% + var(--mg-sp) * 2);
    margin-top: 28px;
    margin-left: calc(var(--mg-sp) * -1);
  }
  .p-aboutPhilosophy_intro ._spImg img {
    width: 100%;
  }
}
.p-aboutPhilosophy_intro ._textBox {
  margin-top: 92px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-aboutPhilosophy_intro ._textBox {
    margin-top: 31px;
    text-align: left;
  }
}
.p-aboutPhilosophy_intro ._textBox p {
  font-weight: 300;
  letter-spacing: 0.05em;
}
.p-aboutPhilosophy_intro ._signature {
  margin-top: 53px;
  font-size: 16px;
  line-height: 2.25;
}
@media screen and (max-width: 767px) {
  .p-aboutPhilosophy_intro ._signature {
    margin-top: 36px;
    font-size: 14px;
    line-height: 2.1428571429;
  }
}
.p-aboutPhilosophy_intro ._mark {
  width: 60px;
  margin: 112px auto 0;
}
@media screen and (max-width: 767px) {
  .p-aboutPhilosophy_intro ._mark {
    width: 35px;
    margin: 40px auto 0;
  }
}
.p-aboutPhilosophy_intro ._mark img {
  width: 100%;
}
.p-aboutPhilosophy_list {
  overflow: hidden;
  margin-top: 148px;
}
@media screen and (max-width: 1024px) {
  .p-aboutPhilosophy_list {
    margin-top: 70px;
  }
}
@media screen and (max-width: 767px) {
  .p-aboutPhilosophy_list {
    margin-top: 45px;
  }
}
.p-aboutPhilosophy_list > ul > li {
  display: flex;
  justify-content: space-between;
  gap: 0 40px;
}
@media screen and (max-width: 1024px) {
  .p-aboutPhilosophy_list > ul > li {
    display: block;
  }
}
.p-aboutPhilosophy_list > ul > li + li {
  margin-top: 148px;
}
@media screen and (max-width: 1024px) {
  .p-aboutPhilosophy_list > ul > li + li {
    margin-top: 120px;
  }
}
@media screen and (max-width: 767px) {
  .p-aboutPhilosophy_list > ul > li + li {
    margin-top: 35px;
  }
}
@media screen and (min-width: 1025px) {
  .p-aboutPhilosophy_list > ul > li:nth-of-type(odd) {
    flex-direction: row-reverse;
  }
  .p-aboutPhilosophy_list > ul > li:nth-of-type(odd) ._head {
    margin-right: clamp(-190px, (100vw - 1060px) / 2 * -1, var(--mg-pc) * -1);
  }
}
@media screen and (min-width: 1025px) {
  .p-aboutPhilosophy_list > ul > li:nth-child(even) ._head {
    margin-left: clamp(-190px, (100vw - 1060px) / 2 * -1, var(--mg-pc) * -1);
  }
}
@media screen and (min-width: 1025px) and (min-width: 1441px) {
  .p-aboutPhilosophy_list > ul > li:nth-child(even) ._head {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
}
@media screen and (min-width: 1025px) {
  .p-aboutPhilosophy_list > ul > li:nth-child(even) ._ttl {
    max-width: calc(458px + var(--mg-pc));
    margin-left: auto;
    padding-left: var(--mg-pc);
  }
}
@media screen and (min-width: 1025px) and (min-width: 1441px) {
  .p-aboutPhilosophy_list > ul > li:nth-child(even) ._ttl {
    width: 100%;
  }
}
.p-aboutPhilosophy_list ._head {
  width: 60.8490566038%;
}
@media screen and (max-width: 1024px) {
  .p-aboutPhilosophy_list ._head {
    display: flex;
    flex-direction: column-reverse;
    gap: 35px 0;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-aboutPhilosophy_list ._head {
    gap: 35px 0;
    gap: 24px 0;
  }
}
.p-aboutPhilosophy_list ._ttl {
  padding-top: 0.3em;
  font-size: 35px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-aboutPhilosophy_list ._ttl {
    font-size: 21px;
    line-height: 1.5714285714;
  }
}
.p-aboutPhilosophy_list ._img {
  margin-top: min(calc(120 / 1440 * 100vw), 120px);
}
@media screen and (min-width: 1441px) {
  .p-aboutPhilosophy_list ._img {
    width: min(calc(645 / 1440 * 100vw), 716px);
    height: 465px;
  }
  .p-aboutPhilosophy_list ._img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (max-width: 1024px) {
  .p-aboutPhilosophy_list ._img {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-aboutPhilosophy_list ._img {
    width: calc(100% + var(--mg-sp) * 2);
    margin-left: calc(var(--mg-sp) * -1);
  }
}
.p-aboutPhilosophy_list ._img img {
  width: 100%;
}
.p-aboutPhilosophy_list ._contBox {
  font-size: 16px;
  line-height: 2.375;
}
@media screen and (min-width: 1025px) {
  .p-aboutPhilosophy_list ._contBox {
    flex: 1;
    max-width: 458px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-aboutPhilosophy_list ._contBox {
    margin-top: 30px;
    line-height: 2;
  }
}
.p-aboutPhilosophy_list ._contBox * {
  letter-spacing: 0.05em;
}
.p-aboutPhilosophy_list ._contBox p {
  text-align: justify;
}
.p-aboutPhilosophy_list ._contBox p + p {
  margin-top: 2.375em;
}
@media screen and (max-width: 767px) {
  .p-aboutPhilosophy_list ._contBox p + p {
    margin-top: 2em;
  }
}
.p-aboutPhilosophy_list ._contBox p + ul {
  margin-top: 28px;
}
@media screen and (max-width: 767px) {
  .p-aboutPhilosophy_list ._contBox p + ul {
    margin-top: 21px;
  }
}
@media screen and (max-width: 767px) {
  .p-aboutPhilosophy_list ._contBox ul {
    padding-left: 7px;
    font-size: 14px;
  }
}
.p-aboutPhilosophy_list ._contImg {
  margin-top: min(calc(78 / 1440 * 100vw), 78px);
  transform: translateX(4%);
}
@media screen and (max-width: 1024px) {
  .p-aboutPhilosophy_list ._contImg {
    margin-top: 40px;
    transform: none;
  }
}
@media screen and (max-width: 767px) {
  .p-aboutPhilosophy_list ._contImg {
    margin-top: 34px;
    text-align: center;
  }
}
@media screen and (min-width: 1025px) {
  .p-aboutPhilosophy_list ._contImg img {
    width: 102.1834061135%;
    max-width: 102.1834061135%;
  }
}
@media screen and (max-width: 1024px) {
  .p-aboutPhilosophy_list ._contImg img {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-aboutPhilosophy_list ._contImg img {
    width: calc(287 / 375 * 100vw);
  }
}

.p-aboutValue {
  margin-top: 211px;
}
@media screen and (max-width: 767px) {
  .p-aboutValue {
    margin-top: 62px;
  }
}
.p-aboutValue_list {
  margin-top: 206px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-aboutValue_list {
    margin-top: -3px;
  }
}
.p-aboutValue_list > ul > li {
  display: flex;
  justify-content: space-between;
  gap: 0 40px;
}
@media screen and (max-width: 1024px) {
  .p-aboutValue_list > ul > li {
    display: block;
  }
}
.p-aboutValue_list > ul > li + li {
  margin-top: 174px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .p-aboutValue_list > ul > li + li {
    margin-top: 120px;
  }
}
@media screen and (max-width: 767px) {
  .p-aboutValue_list > ul > li + li {
    margin-top: 80px;
  }
}
.p-aboutValue_list > ul > li + li::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: var(--color-glay-text);
  position: absolute;
  top: -85px;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .p-aboutValue_list > ul > li + li::before {
    top: -46px;
  }
}
@media screen and (max-width: 767px) {
  .p-aboutValue_list > ul > li + li::before {
    top: -38px;
  }
}
.p-aboutValue_list > ul > li + li::after {
  content: "&";
  display: block;
  width: 100%;
  font-family: var(--font-garamond);
  font-size: 60px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  position: absolute;
  top: -118px;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .p-aboutValue_list > ul > li + li::after {
    top: -84px;
  }
}
@media screen and (max-width: 767px) {
  .p-aboutValue_list > ul > li + li::after {
    font-size: 35px;
    top: -57px;
  }
}
@media screen and (min-width: 1025px) {
  .p-aboutValue_list > ul > li:nth-of-type(odd) ._imgBox {
    margin-right: clamp(-190px, (100vw - 1060px) / 2 * -1, var(--mg-pc) * -1);
  }
}
@media screen and (min-width: 1025px) and (min-width: 1441px) {
  .p-aboutValue_list > ul > li:nth-of-type(odd) ._imgBox {
    margin-right: max((100vw - 1060px) / 2 * -1, -370px);
  }
}
@media screen and (min-width: 1025px) {
  .p-aboutValue_list > ul > li:nth-child(even) {
    flex-direction: row-reverse;
  }
  .p-aboutValue_list > ul > li:nth-child(even) ._imgBox {
    margin-left: clamp(-190px, (100vw - 1060px) / 2 * -1, var(--mg-pc) * -1);
  }
}
@media screen and (min-width: 1025px) and (min-width: 1441px) {
  .p-aboutValue_list > ul > li:nth-child(even) ._imgBox {
    margin-left: max((100vw - 1060px) / 2 * -1, -370px);
  }
}
.p-aboutValue_list ._imgBox {
  width: 60.8490566038%;
}
@media screen and (min-width: 1441px) {
  .p-aboutValue_list ._imgBox {
    width: min(calc(645 / 1440 * 100vw), 807px);
    height: 465px;
  }
  .p-aboutValue_list ._imgBox img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (max-width: 1024px) {
  .p-aboutValue_list ._imgBox {
    width: 100%;
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-aboutValue_list ._imgBox {
    width: calc(100% + var(--mg-sp) * 2);
    margin-left: calc(var(--mg-sp) * -1);
    margin-top: 30px;
  }
}
.p-aboutValue_list ._imgBox img {
  width: 100%;
}
.p-aboutValue_list ._head {
  font-size: 16px;
  line-height: 2.375;
}
@media screen and (min-width: 1025px) {
  .p-aboutValue_list ._head {
    flex: 1;
    max-width: 455px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-aboutValue_list ._head {
    margin-top: 30px;
    line-height: 2;
  }
}
.p-aboutValue_list ._enTtl {
  font-family: var(--font-garamond);
  font-size: 42px;
  font-weight: 400;
  line-height: 1.4761904762;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-aboutValue_list ._enTtl {
    font-size: 21px;
    letter-spacing: 0.1em;
    line-height: 1.4285714286;
  }
}
.p-aboutValue_list ._ttl {
  margin-top: min(calc(18 / 1440 * 100vw), 18px);
  font-size: 30px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-aboutValue_list ._ttl {
    margin-top: 0;
    font-size: 16px;
    line-height: 1.4285714286;
  }
}
.p-aboutValue_list ._desc {
  margin-top: min(calc(42 / 1440 * 100vw), 42px);
  font-size: 16px;
  line-height: 2.375;
  letter-spacing: 0.05em;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .p-aboutValue_list ._desc {
    margin-top: 12px;
    font-size: 14px;
    line-height: 2;
  }
}

.p-aboutMessage {
  margin-top: 185px;
}
@media screen and (max-width: 767px) {
  .p-aboutMessage {
    margin-top: 61px;
  }
}
.p-aboutMessage_cont {
  margin-top: 207px;
}
@media screen and (max-width: 767px) {
  .p-aboutMessage_cont {
    margin-top: 28px;
  }
}
.p-aboutMessage_cont ._ttl {
  font-size: 35px;
  line-height: 2.1142857143;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-aboutMessage_cont ._ttl {
    font-size: 21px;
    line-height: 1.5714285714;
  }
}
@media screen and (max-width: 767px) {
  .p-aboutMessage_cont ._contBox {
    display: contents;
  }
}
.p-aboutMessage_cont ._cont {
  display: flex;
  justify-content: space-between;
  gap: 0 60px;
  margin-top: min(calc(130 / 1440 * 100vw), 130px);
}
@media screen and (max-width: 767px) {
  .p-aboutMessage_cont ._cont {
    flex-direction: column;
    margin-top: 37px;
  }
}
@media screen and (min-width: 768px) {
  .p-aboutMessage_cont ._contBox {
    flex: 1;
    max-width: 458px;
  }
}
.p-aboutMessage_cont ._imgBox {
  width: 42.9245283019%;
}
@media screen and (max-width: 767px) {
  .p-aboutMessage_cont ._imgBox {
    order: -1;
    width: 100%;
    margin-top: 35px;
  }
}
.p-aboutMessage_cont ._imgBox img {
  width: 100%;
}
.p-aboutMessage_cont ._desc {
  margin-top: -0.4em;
  font-size: 18px;
  line-height: 2.1111111111;
  letter-spacing: 0.05em;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .p-aboutMessage_cont ._desc {
    font-size: 16px;
    line-height: 2;
    order: -2;
    letter-spacing: 0.06em;
  }
}
.p-aboutMessage_cont ._sender {
  margin-top: 67px;
}
@media screen and (max-width: 767px) {
  .p-aboutMessage_cont ._sender {
    margin-top: 26px;
    display: flex;
    flex-direction: column-reverse;
  }
}
.p-aboutMessage_cont ._sender dt {
  font-size: 18px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-aboutMessage_cont ._sender dt {
    margin-top: 11px;
    font-size: 21px;
  }
}
.p-aboutMessage_cont ._sender dd {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.8571428571;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-aboutMessage_cont ._sender dd {
    margin-top: 0;
    line-height: 2;
  }
}

/* ========================================
はじめての方へ p-introduction
======================================== */
.p-introduction {
  position: relative;
}

.p-introductionAbout {
  padding: 90px 0 89px;
}
@media screen and (max-width: 767px) {
  .p-introductionAbout {
    margin-top: 47px;
    padding: 25px 0 30px;
  }
}
.p-introductionAbout_ttl {
  padding-top: 102px;
  background: url(../image/common/mark.svg) center top/70px auto no-repeat;
  font-size: clamp(24px , calc(28 / 1140 * 100vw), 28px);
  font-weight: 400;
  letter-spacing: 0.15em;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-introductionAbout_ttl {
    padding-top: 55px;
    background-size: 35px auto;
    font-size: 14px;
    line-height: 2.2857142857;
    letter-spacing: 0.1em;
  }
}
.p-introductionAbout_list {
  display: flex;
  justify-content: center;
  gap: 30px 5.7075471698%;
  margin-top: 67px;
}
@media screen and (max-width: 767px) {
  .p-introductionAbout_list {
    flex-direction: column;
    gap: 39px 0;
    margin-top: 38px;
  }
}
.p-introductionAbout_list li {
  width: 29.5283018868%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-introductionAbout_list li {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
}
.p-introductionAbout_list ._read {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--color-glay-text);
  font-size: clamp(15px , calc(21 / 1140 * 100vw), 21px);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-introductionAbout_list ._read {
    order: -2;
    padding-bottom: 8px;
    font-size: 16px;
  }
}
.p-introductionAbout_list ._img {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-introductionAbout_list ._img {
    margin-top: 13px;
  }
}
.p-introductionAbout_list ._img img {
  width: 100%;
}
.p-introductionAbout_list ._desc {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.6428571429;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-introductionAbout_list ._desc {
    order: -1;
    margin-top: 12px;
    font-size: 12px;
    line-height: 2;
  }
}

.p-introductionFlow {
  margin-top: 135px;
  padding-top: 63px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-introductionFlow {
    margin-top: 60px;
    padding-top: 16px;
  }
}
.p-introductionFlow_list {
  margin-top: 107px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-introductionFlow_list {
    margin-top: 50px;
  }
}
.p-introductionFlow_list::before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: var(--color-glay-text);
  position: absolute;
  top: 0;
  left: clamp(-76px, (100vw - 1060px) / 2 * 0.4 * -1, var(--mg-pc) * 0.4 * -1);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-introductionFlow_list::before {
    display: none;
  }
}
.p-introductionFlow_list li {
  display: flex;
  justify-content: space-between;
  gap: 0 30px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .p-introductionFlow_list li {
    display: block;
  }
}
.p-introductionFlow_list li + li {
  margin-top: 90px;
}
@media screen and (max-width: 767px) {
  .p-introductionFlow_list li + li {
    margin-top: 38px;
  }
}
.p-introductionFlow_list li::before {
  content: "";
  width: clamp(100% + var(--mg-pc) * 2 * 0.7, 100% + (100vw - 1060px) * 130 / 190, 1320px);
  height: 1px;
  background: var(--color-glay-text);
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-introductionFlow_list li::before {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  .p-introductionFlow_list li:nth-child(odd) {
    flex-direction: row-reverse;
  }
  .p-introductionFlow_list li:nth-child(odd) ._imgBox {
    margin-right: clamp(-190px, (100vw - 1060px) / 2 * -1, var(--mg-pc) * -1);
  }
}
@media screen and (min-width: 1025px) and (min-width: 1441px) {
  .p-introductionFlow_list li:nth-child(odd) ._imgBox {
    margin-right: max((100vw - 1060px) / 2 * -1, -370px);
  }
}
@media screen and (min-width: 1025px) {
  .p-introductionFlow_list li:nth-child(even) ._imgBox {
    margin-left: clamp(-190px, (100vw - 1060px) / 2 * -1, var(--mg-pc) * -1);
  }
}
@media screen and (min-width: 1025px) and (min-width: 1441px) {
  .p-introductionFlow_list li:nth-child(even) ._imgBox {
    margin-left: max((100vw - 1060px) / 2 * -1, -370px);
  }
}
.p-introductionFlow_list ._imgBox {
  width: 60.8490566038%;
}
@media screen and (min-width: 1441px) {
  .p-introductionFlow_list ._imgBox {
    width: min(calc(645 / 1440 * 100vw), 807px);
    height: 465px;
  }
  .p-introductionFlow_list ._imgBox img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (max-width: 1024px) {
  .p-introductionFlow_list ._imgBox {
    width: 100%;
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-introductionFlow_list ._imgBox {
    width: calc(100% + var(--mg-sp) * 2);
    margin-left: calc(var(--mg-sp) * -1);
  }
}
.p-introductionFlow_list ._imgBox img {
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .p-introductionFlow_list ._contBox {
    flex: 1;
    max-width: 460px;
  }
}
@media screen and (max-width: 767px) {
  .p-introductionFlow_list ._contBox {
    margin-top: 30px;
    border-top: 1px solid var(--color-glay-text);
  }
}
.p-introductionFlow_list ._head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 0 20px;
  padding-top: min(calc(92 / 1440 * 100vw), 92px);
  position: relative;
}
@media screen and (max-width: 1024px) {
  .p-introductionFlow_list ._head {
    padding-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-introductionFlow_list ._head {
    align-items: flex-start;
    gap: 0 10px;
    padding-top: 15px;
  }
}
.p-introductionFlow_list ._info {
  display: flex;
  align-items: flex-start;
  gap: 0 10px;
}
.p-introductionFlow_list ._num {
  display: block;
  font-family: var(--font-en);
  font-size: clamp(110px , calc(150 / 1440 * 100vw), 150px);
  font-weight: 100;
  line-height: 0.7;
}
@media screen and (max-width: 767px) {
  .p-introductionFlow_list ._num {
    font-size: 70px;
  }
}
.p-introductionFlow_list ._listTtl {
  display: block;
  color: var(--color-glay-text);
  font-family: var(--font-en);
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .p-introductionFlow_list ._listTtl {
    font-size: 12px;
    letter-spacing: 0.05em;
  }
}
.p-introductionFlow_list ._ttlBox {
  text-align: right;
}
.p-introductionFlow_list ._enTtl {
  font-family: var(--font-en);
  font-size: 35px;
  line-height: 1.2;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .p-introductionFlow_list ._enTtl {
    padding-top: 2px;
    font-size: 22px;
    letter-spacing: 0;
  }
}
.p-introductionFlow_list ._ttl {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-introductionFlow_list ._ttl {
    margin-top: 5px;
    font-size: 12px;
    letter-spacing: 0.1em;
  }
}
.p-introductionFlow_list ._desc {
  margin-top: min(calc(79 / 1440 * 100vw), 79px);
  font-size: 16px;
  line-height: 2.25;
  letter-spacing: 0.05em;
  text-align: justify;
}
@media screen and (max-width: 1024px) {
  .p-introductionFlow_list ._desc {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-introductionFlow_list ._desc {
    margin-top: 27px;
    font-size: 14px;
    line-height: 2.1428571429;
    letter-spacing: 0.04em;
  }
}
.p-introductionFlow_reserve {
  margin-top: 132px;
}

.p-introductionTrial {
  margin-top: 198px;
}
@media screen and (max-width: 767px) {
  .p-introductionTrial {
    margin-top: 51px;
  }
}
.p-introductionTrial .l-trial {
  margin-top: 77px;
}
@media screen and (max-width: 767px) {
  .p-introductionTrial .l-trial {
    margin-top: 20px;
  }
}

.p-introductionFaq {
  margin-top: 198px;
}
@media screen and (max-width: 767px) {
  .p-introductionFaq {
    margin-top: 62px;
  }
}
.p-introductionFaq_nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 28px 20px;
  max-width: 740px;
  margin-top: 204px;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-introductionFaq_nav {
    justify-content: space-between;
    gap: 16px 0;
    margin-top: 26px;
  }
}
.p-introductionFaq_nav li {
  width: 170px;
}
@media screen and (max-width: 767px) {
  .p-introductionFaq_nav li {
    width: calc(160 / 375 * 100vw);
  }
}
.p-introductionFaq_nav a {
  display: block;
  padding: 11px 0;
  border-top: 1px solid var(--color-black);
  text-align: right;
  font-size: 16px;
  line-height: 1.2;
}
@media (hover: hover) {
  .p-introductionFaq_nav a {
    transition: opacity 0.4s;
  }
  .p-introductionFaq_nav a:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 767px) {
  .p-introductionFaq_nav a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 28px;
    padding: 0 4px;
    background: #fff;
    border: none;
    font-size: 12px;
    text-align: center;
  }
}
.p-introductionFaq_container {
  margin-top: 43px;
}
@media screen and (max-width: 767px) {
  .p-introductionFaq_container {
    margin-top: 11px;
  }
}
.p-introductionFaq_sec {
  padding-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-introductionFaq_sec {
    padding-top: 30px;
  }
}
.p-introductionFaq_sec + .p-introductionFaq_sec {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .p-introductionFaq_sec + .p-introductionFaq_sec {
    margin-top: 0;
  }
}
.p-introductionFaq_secTtl {
  font-size: 28px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-introductionFaq_secTtl {
    font-size: 21px;
    letter-spacing: 0.06em;
  }
}
.p-introductionFaq_cont {
  width: calc(100% + min(calc(75 / 1440 * 100vw), 75px));
  font-size: 16px;
  line-height: 2.125;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-introductionFaq_cont {
    width: 100%;
    margin-top: 8px;
  }
}
.p-introductionFaq_cont dl {
  border-bottom: 1px solid var(--color-glay-text);
}
.p-introductionFaq_cont dt {
  position: relative;
  padding: 20px 60px 13px 0;
  cursor: pointer;
}
@media (hover: hover) {
  .p-introductionFaq_cont dt {
    transition: opacity 0.4s;
  }
  .p-introductionFaq_cont dt:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 767px) {
  .p-introductionFaq_cont dt {
    padding: 12px 40px 11px 0;
    font-size: 14px;
    line-height: 1.8571428571;
    letter-spacing: 0.05em;
  }
}
.p-introductionFaq_cont dt::before, .p-introductionFaq_cont dt::after {
  content: "";
  display: block;
  background: var(--color-black);
  width: 25px;
  height: 1px;
  position: absolute;
  top: 35px;
  right: 15px;
}
@media screen and (max-width: 767px) {
  .p-introductionFaq_cont dt::before, .p-introductionFaq_cont dt::after {
    width: 17px;
    background-color: var(--color-glay-text);
    top: 24px;
    right: 0;
  }
}
.p-introductionFaq_cont dt::after {
  transform: rotate(90deg);
  transition: 0.3s;
}
.p-introductionFaq_cont dt.is-active::after {
  transform: rotate(0);
}
.p-introductionFaq_cont dd {
  display: none;
  padding: 2px 60px 15px 0;
}
@media screen and (max-width: 767px) {
  .p-introductionFaq_cont dd {
    padding-right: 0;
    padding-bottom: 11px;
    font-size: 12px;
    line-height: 2.1666666667;
  }
}
.p-introductionFaq_cont a {
  text-decoration: underline;
}
@media (hover: hover) {
  .p-introductionFaq_cont a {
    transition: opacity 0.4s;
  }
  .p-introductionFaq_cont a:hover {
    opacity: 0.5;
  }
}

/* ========================================
プログラム p-program
======================================== */
.p-program {
  position: relative;
}

.p-programCondition {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-programCondition .l-secIntro {
    padding-top: 47px;
  }
  .p-programCondition .l-boder::before,
  .p-programCondition .l-boder::after {
    display: none;
  }
  .p-programCondition .l-secIntro_enTtl {
    font-size: min(calc(26 / 375 * 100vw), 26px);
  }
}
@media screen and (max-width: 767px) {
  .p-programCondition_spBgGlay {
    margin-top: 38px;
    padding: 29px 0 36px;
    background-color: var(--color-glay-dark);
  }
}
.p-programCondition_list {
  margin-top: 128px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-programCondition_list {
    margin-top: 0;
  }
}
.p-programCondition_list::before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: var(--color-glay-text);
  position: absolute;
  top: 0;
  left: clamp(-76px, (100vw - 1060px) / 2 * 0.4 * -1, var(--mg-pc) * 0.4 * -1);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-programCondition_list::before {
    display: none;
  }
}
.p-programCondition_list li {
  position: relative;
  z-index: 1;
}
.p-programCondition_list li + li {
  margin-top: 90px;
}
@media screen and (max-width: 767px) {
  .p-programCondition_list li + li {
    margin-top: 44px;
  }
}
.p-programCondition_list li::after {
  content: "";
  width: clamp(100% + var(--mg-pc) * 2 * 0.7, 100% + (100vw - 1060px) * 130 / 190, 1320px);
  height: 1px;
  background: var(--color-glay-text);
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-programCondition_list li::after {
    display: none;
  }
}
.p-programCondition_list ._cont {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 30px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .p-programCondition_list ._cont {
    display: block;
  }
}
.p-programCondition_list ._cont:first-child {
  align-items: flex-start;
}
.p-programCondition_list ._cont.-reverse {
  flex-direction: row-reverse;
}
.p-programCondition_list ._cont + ._cont {
  margin-top: 75px;
}
@media screen and (max-width: 1024px) {
  .p-programCondition_list ._cont + ._cont {
    margin-top: 0;
  }
}
@media screen and (min-width: 1025px) {
  .p-programCondition_list ._cont:nth-of-type(odd) ._imgBox {
    margin-right: clamp(-190px, (100vw - 1060px) / 2 * -1, var(--mg-pc) * -1);
  }
}
@media screen and (min-width: 1025px) and (min-width: 1441px) {
  .p-programCondition_list ._cont:nth-of-type(odd) ._imgBox {
    margin-right: max((100vw - 1060px) / 2 * -1, -370px);
  }
}
@media screen and (min-width: 1025px) {
  .p-programCondition_list ._cont:nth-of-type(even) ._imgBox {
    margin-left: clamp(-190px, (100vw - 1060px) / 2 * -1, var(--mg-pc) * -1);
  }
}
@media screen and (min-width: 1025px) and (min-width: 1441px) {
  .p-programCondition_list ._cont:nth-of-type(even) ._imgBox {
    margin-left: max((100vw - 1060px) / 2 * -1, -370px);
  }
}
.p-programCondition_list ._imgBox {
  width: 60.8490566038%;
}
@media screen and (min-width: 1441px) {
  .p-programCondition_list ._imgBox {
    width: min(calc(645 / 1440 * 100vw), 807px);
    height: 465px;
  }
  .p-programCondition_list ._imgBox img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (max-width: 1024px) {
  .p-programCondition_list ._imgBox {
    width: 100%;
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-programCondition_list ._imgBox {
    width: calc(100% + var(--mg-sp) * 2);
    margin-left: calc(var(--mg-sp) * -1);
    margin-top: 29px;
  }
}
.p-programCondition_list ._imgBox img {
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .p-programCondition_list ._head {
    flex: 1;
    max-width: 460px;
    padding-top: min(calc(115 / 1440 * 100vw), 115px);
  }
}
@media screen and (max-width: 1024px) {
  .p-programCondition_list ._head {
    padding-top: 70px;
  }
}
@media screen and (max-width: 767px) {
  .p-programCondition_list ._head {
    border-top: 1px solid var(--color-glay-text);
    padding-top: 18px;
  }
}
@media screen and (min-width: 1025px) {
  .p-programCondition_list ._contBox {
    flex: 1;
    max-width: 455px;
  }
}
.p-programCondition_list ._contBox p {
  font-size: 16px;
  line-height: 2.25;
  letter-spacing: 0.02em;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .p-programCondition_list ._contBox p {
    font-size: 14px;
    line-height: 2.1428571429;
    letter-spacing: 0.04em;
  }
}
.p-programCondition_list ._contBox p + p {
  margin-top: 3.9em;
}
@media screen and (max-width: 767px) {
  .p-programCondition_list ._contBox p + p {
    margin-top: 20px;
  }
}
.p-programCondition_list ._info {
  display: flex;
  align-items: flex-start;
  gap: 0 10px;
}
.p-programCondition_list ._num {
  display: block;
  font-family: var(--font-en);
  font-size: clamp(110px , calc(150 / 1440 * 100vw), 150px);
  font-weight: 100;
  line-height: 0.7;
}
@media screen and (max-width: 767px) {
  .p-programCondition_list ._num {
    font-size: 70px;
  }
}
.p-programCondition_list ._listTtl {
  display: block;
  color: var(--color-glay-text);
  font-family: var(--font-en);
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .p-programCondition_list ._listTtl {
    font-size: 12px;
    letter-spacing: 0.05em;
  }
}
.p-programCondition_list ._enTtl {
  margin-top: min(calc(75 / 1440 * 100vw), 75px);
  font-family: var(--font-en);
  font-size: 35px;
  line-height: 1.2;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1024px) {
  .p-programCondition_list ._enTtl {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-programCondition_list ._enTtl {
    padding-top: 2px;
    font-size: 22px;
    letter-spacing: 0;
  }
}
.p-programCondition_list ._minEnTtl {
  display: block;
  margin-top: 0.5em;
  font-size: 0.7142857143em;
}
@media screen and (max-width: 767px) {
  .p-programCondition_list ._minEnTtl {
    margin-top: 2px;
    font-size: 19px;
  }
}
.p-programCondition_list ._ttl {
  margin-top: 19px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-programCondition_list ._ttl {
    margin-top: 5px;
    font-size: 12px;
    letter-spacing: 0.1em;
  }
}
@media screen and (max-width: 767px) {
  .p-programCondition_list ._spMinTtl {
    font-size: 10px;
  }
}
.p-programCondition_list ._contTtl {
  margin-bottom: 38px;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-programCondition_list ._contTtl {
    margin: 32px 0 17px;
    font-size: 18px;
  }
}
.p-programCondition_list p._minText {
  font-size: 14px;
  line-height: 2.2142857143;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-programCondition_list p._minText {
    font-size: 12px;
    line-height: 2.5;
    letter-spacing: 0.04em;
  }
}
.p-programCondition ._link {
  margin-top: 2.9em !important;
}
@media screen and (max-width: 767px) {
  .p-programCondition ._link {
    margin-top: 16px !important;
  }
}
.p-programCondition_reserve {
  margin-top: 120px;
}
@media screen and (min-width: 768px) {
  .p-programCondition .-utility01 {
    width: 110%;
  }
}
@media screen and (min-width: 1025px) {
  .p-programCondition .-utility02 {
    margin-top: 60px;
  }
}
@media screen and (min-width: 768px) {
  .p-programCondition .-utility02 {
    width: 110%;
  }
}
@media screen and (min-width: 768px) {
  .p-programCondition .-utility03 {
    margin-top: 3.2em !important;
  }
}
@media screen and (max-width: 767px) {
  .p-programCondition .-utility03 {
    margin-top: 22px !important;
    margin-bottom: 20px;
  }
  .p-programCondition .-utility03::before {
    content: "";
    display: block;
    width: 60px;
    height: 1px;
    margin-bottom: 21px;
    background: var(--color-glay-text);
  }
}
@media screen and (min-width: 768px) {
  .p-programCondition .-utility04 {
    width: 110%;
  }
}
@media screen and (max-width: 767px) {
  .p-programCondition .-utility05 {
    margin-top: 35px !important;
  }
}
@media screen and (max-width: 767px) {
  .p-programCondition .-utility06 {
    margin-top: 44px !important;
  }
}

.p-programExtra {
  margin-top: 183px;
}
@media screen and (max-width: 767px) {
  .p-programExtra {
    margin-top: 47px;
  }
}
.p-programExtra_ttlBox {
  border-left: 1px solid var(--color-glay-text);
  padding-left: 53px;
}
@media screen and (max-width: 767px) {
  .p-programExtra_ttlBox {
    padding-left: 20px;
  }
}
.p-programExtra_enTtl {
  font-family: var(--font-en);
  font-size: 42px;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-programExtra_enTtl {
    font-size: 24px;
    letter-spacing: 0.07em;
  }
}
.p-programExtra_ttl {
  margin-top: 30px;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-programExtra_ttl {
    margin-top: 9px;
    font-size: 10px;
  }
}
.p-programExtra_list {
  margin-top: 127px;
}
@media screen and (max-width: 767px) {
  .p-programExtra_list {
    margin-top: 32px;
  }
}
.p-programExtra_list > li + li {
  margin-top: 123px;
}
@media screen and (max-width: 767px) {
  .p-programExtra_list > li + li {
    margin-top: 48px;
  }
}
.p-programExtra_list ._head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 26px 30px;
}
@media screen and (max-width: 1024px) {
  .p-programExtra_list ._head {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .p-programExtra_list ._head {
    flex-direction: column-reverse;
  }
}
.p-programExtra_list ._ttlBox {
  flex: 1;
}
.p-programExtra_list ._enTtl {
  font-family: var(--font-en);
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  .p-programExtra_list ._enTtl {
    font-size: 18px;
  }
}
.p-programExtra_list ._ttl {
  margin-top: 18px;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-programExtra_list ._ttl {
    margin: 5px 0 13px;
    padding-bottom: 18px;
    font-size: 10px;
    letter-spacing: 0.15em;
    border-bottom: 1px solid var(--color-glay-text);
  }
}
.p-programExtra_list ._read {
  margin-top: 35px;
  font-size: 16px;
  line-height: 2.25;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-programExtra_list ._read {
    margin-top: 9px;
    font-size: 14px;
    line-height: 1.8571428571;
    letter-spacing: 0.06em;
  }
}
.p-programExtra_list ._imgBox {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px 13px;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .p-programExtra_list ._imgBox {
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-programExtra_list ._imgBox {
    width: 100%;
  }
  .p-programExtra_list ._imgBox img {
    width: 100%;
  }
}
.p-programExtra_list ._cont {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 5.7075471698%;
  margin-top: 61px;
}
@media screen and (max-width: 767px) {
  .p-programExtra_list ._cont {
    display: block;
    margin-top: 20px;
  }
}
.p-programExtra_list ._cont dl {
  width: 29.5283018868%;
  font-size: 14px;
  line-height: 2.2142857143;
}
@media screen and (max-width: 767px) {
  .p-programExtra_list ._cont dl {
    width: 100%;
    font-size: 12px;
    line-height: 2.1666666667;
  }
  .p-programExtra_list ._cont dl + dl {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-programExtra_list ._cont dl + dl {
    margin-top: 16px;
  }
}
.p-programExtra_list ._cont dl * {
  letter-spacing: 0.05em;
}
.p-programExtra_list ._cont dt {
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-glay-text);
}
@media screen and (max-width: 767px) {
  .p-programExtra_list ._cont dt {
    font-weight: 500;
    margin-bottom: 8px;
    padding-bottom: 0;
    border-bottom: none;
  }
}
.p-programExtra_list ._cont dd {
  text-align: justify;
}
.p-programExtra_list ._textBoder {
  display: block;
}
@media screen and (max-width: 767px) {
  .p-programExtra_list ._textBoder {
    margin-top: 6px;
  }
}
.p-programExtra_list ._textBoder::before {
  content: "−";
  display: block;
  margin-top: 3px;
}
@media screen and (max-width: 767px) {
  .p-programExtra_list ._textBoder::before {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  .p-programExtra_list ._cont06 ._imgBox {
    margin-right: 16px;
  }
  .p-programExtra_list ._cont06 ._cont {
    margin-top: -74px;
  }
}
@media screen and (max-width: 767px) {
  .p-programExtra_list ._cont06 ._imgBox {
    width: calc(278 / 375 * 100vw);
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 1025px) {
  .p-programExtra_list ._cont07 ._imgBox {
    margin-right: 16px;
  }
  .p-programExtra_list ._cont07 ._cont {
    margin-top: -74px;
  }
}
@media screen and (max-width: 767px) {
  .p-programExtra_list ._cont07 ._imgBox {
    width: calc(238 / 375 * 100vw);
    margin-left: auto;
    margin-right: auto;
  }
}

.p-programTrial {
  margin-top: 187px;
}
@media screen and (max-width: 767px) {
  .p-programTrial {
    margin-top: 100px;
  }
}
.p-programTrial .l-trial {
  margin-top: 77px;
}
@media screen and (max-width: 767px) {
  .p-programTrial .l-trial {
    margin-top: 19px;
  }
}

.p-programPrice {
  margin-top: 197px;
}
@media screen and (max-width: 767px) {
  .p-programPrice {
    margin-top: 60px;
  }
}
.p-programPrice_sec {
  margin-top: 205px;
}
@media screen and (max-width: 767px) {
  .p-programPrice_sec {
    margin-top: 27px;
  }
}
.p-programPrice_sec + .p-programPrice_sec {
  margin-top: 90px;
  padding-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-programPrice_sec + .p-programPrice_sec {
    margin-top: 5px;
  }
}
@media screen and (max-width: 767px) {
  .p-programPrice_secTtlBox {
    border-left: 1px solid var(--color-glay-text);
    padding: 4px 0 2px 17px;
  }
}
.p-programPrice_secEnTtl {
  font-family: var(--font-en);
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-programPrice_secEnTtl {
    font-size: 16px;
    letter-spacing: 0.04em;
  }
}
.p-programPrice_secTtl {
  margin-top: 19px;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-programPrice_secTtl {
    margin-top: 5px;
    font-size: 10px;
    letter-spacing: 0.15em;
  }
}
.p-programPrice_secRead {
  margin-top: 41px;
  font-size: 16px;
  line-height: 2.25;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-programPrice_secRead {
    margin-top: 16px;
    font-size: 12px;
    line-height: 2.1666666667;
    letter-spacing: 0.06em;
  }
}
.p-programPrice_tableScroll {
  display: none;
}
@media screen and (max-width: 1024px) {
  .p-programPrice_tableScroll {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0 6px;
    margin: 34px 0 13px;
    font-size: 12px;
    font-family: var(--font-en);
    letter-spacing: 0.05em;
  }
  .p-programPrice_tableScroll::before {
    content: "";
    width: 13px;
    height: 7px;
    background: url(../image/program/scroll_arrow.svg) center/contain no-repeat;
  }
}
@media screen and (max-width: 767px) {
  .p-programPrice_tableScroll {
    margin-top: 9px;
    margin-bottom: 10px;
  }
}
.p-programPrice_table {
  width: 100%;
  margin-top: 34px;
}
@media screen and (max-width: 1024px) {
  .p-programPrice_table {
    margin-top: 9px;
    overflow-x: scroll;
  }
}
.p-programPrice_table table {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .p-programPrice_table table {
    width: 1060px;
  }
}
@media screen and (max-width: 767px) {
  .p-programPrice_table table {
    width: 705px;
  }
}
.p-programPrice_table th,
.p-programPrice_table td {
  border: 1px solid var(--color-glay-text);
  letter-spacing: 0.05em;
  position: relative;
}
.p-programPrice_table th *,
.p-programPrice_table td * {
  letter-spacing: 0.05em;
}
.p-programPrice_table th {
  font-size: 18px;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .p-programPrice_table th {
    font-size: 10px;
  }
}
.p-programPrice_table ._num {
  font-family: var(--font-en);
}
.p-programPrice_table ._slash {
  display: block;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to left top, transparent calc(50% - 0.5px), var(--color-glay-text) 50%, var(--color-glay-text) calc(50% + 0.5px), transparent calc(50% + 1px));
  position: absolute;
  top: 0;
  left: 0;
}
.p-programPrice_table.-table01 tr:first-child th {
  width: 27.8%;
  height: 68px;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .p-programPrice_table.-table01 tr:first-child th {
    width: calc((100% - 96px) / 3);
    height: 50px;
  }
}
.p-programPrice_table.-table01 tr:first-child th:first-child {
  width: 16.6%;
}
@media screen and (max-width: 767px) {
  .p-programPrice_table.-table01 tr:first-child th:first-child {
    width: 96px;
  }
}
.p-programPrice_table.-table01 th,
.p-programPrice_table.-table01 td {
  height: 90px;
  padding: 20px 0 20px;
}
@media screen and (max-width: 767px) {
  .p-programPrice_table.-table01 th,
  .p-programPrice_table.-table01 td {
    height: 55px;
    padding: 5px 0;
  }
}
.p-programPrice_table.-table01 td {
  font-size: 14px;
  line-height: 1.5714285714;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-programPrice_table.-table01 td {
    font-size: 10px;
  }
}
.p-programPrice_table.-table01 ._num {
  display: inline-block;
  font-size: 21px;
}
@media screen and (max-width: 767px) {
  .p-programPrice_table.-table01 ._num {
    font-size: 12px;
  }
}
.p-programPrice_table.-table01 ._minText {
  display: block;
  margin-top: 8px;
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .p-programPrice_table.-table01 ._minText {
    font-size: 10px;
  }
}
.p-programPrice_table.-table01 .-table01_utility01 td {
  height: 99px;
}
@media screen and (max-width: 767px) {
  .p-programPrice_table.-table01 .-table01_utility01 td {
    height: 55px;
  }
}
.p-programPrice_table.-table01 .-table01_utility02 td {
  height: 154px;
}
@media screen and (max-width: 767px) {
  .p-programPrice_table.-table01 .-table01_utility02 td {
    height: 92px;
  }
}
.p-programPrice_table.-table01 .-table01_utility03 {
  display: block;
  font-weight: 600;
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .p-programPrice_table.-table01 .-table01_utility03 {
    margin-top: 10px;
  }
}
.p-programPrice_table.-table01 .-table01_utility04 td {
  height: 70px;
  padding: 10px 0;
}
@media screen and (max-width: 767px) {
  .p-programPrice_table.-table01 .-table01_utility04 td {
    height: 55px;
  }
}
.p-programPrice_table.-table01 .-table01_utility05 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0 15px;
}
.p-programPrice_table.-table01 .-table01_utility05 ._num {
  font-size: 16px;
  margin-left: 10px;
}
.p-programPrice_table.-table01 .-table01_utility05 .m-boderLink {
  margin-left: 0;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .p-programPrice_table.-table01 .-table01_utility05 .m-boderLink {
    font-size: 10px;
  }
  .p-programPrice_table.-table01 .-table01_utility05 .m-boderLink::after {
    width: 7px;
    height: 7px;
  }
}
.p-programPrice_table.-table01 .-table01_utility06 td {
  height: 70px;
  padding: 10px 0;
}
@media screen and (max-width: 767px) {
  .p-programPrice_table.-table01 .-table01_utility06 td {
    height: 55px;
  }
}
.p-programPrice_table.-table02 tr:first-child th {
  width: 32%;
  padding: 0;
}
.p-programPrice_table.-table02 tr:first-child th:first-child {
  width: 36%;
}
.p-programPrice_table.-table02 th,
.p-programPrice_table.-table02 td {
  height: 70px;
  padding: 15px 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-programPrice_table.-table02 th,
  .p-programPrice_table.-table02 td {
    height: 55px;
    padding: 5px 0;
  }
}
.p-programPrice_table.-table02 th:first-child {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .p-programPrice_table.-table02 th:first-child {
    font-size: 10px;
  }
}
.p-programPrice_table.-table02 th:first-child ._minText {
  display: block;
  margin-top: -0.2em;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .p-programPrice_table.-table02 th:first-child ._minText {
    font-size: 10px;
  }
}
.p-programPrice_table.-table02 td {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .p-programPrice_table.-table02 td {
    font-size: 10px;
  }
}
.p-programPrice_table.-table02 ._num {
  display: inline-block;
  font-size: 21px;
}
@media screen and (max-width: 767px) {
  .p-programPrice_table.-table02 ._num {
    font-size: 12px;
  }
}
.p-programPrice_table.-table02 .-table02_utility02 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0 15px;
}
.p-programPrice_table.-table02 .-table02_utility02 .m-boderLink {
  margin-left: 0;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .p-programPrice_table.-table02 .-table02_utility02 .m-boderLink {
    font-size: 10px;
  }
  .p-programPrice_table.-table02 .-table02_utility02 .m-boderLink::after {
    width: 7px;
    height: 7px;
  }
}
.p-programPrice_table.-table03 tr:first-child th {
  padding: 0;
}
.p-programPrice_table.-table03 tr:first-child th:nth-child(1) {
  width: 406px;
}
.p-programPrice_table.-table03 tr:first-child th:nth-child(2) {
  width: 154px;
}
.p-programPrice_table.-table03 tr:first-child th:nth-child(3) {
  width: 239px;
}
.p-programPrice_table.-table03 tr:first-child th:nth-child(4) {
  width: 261px;
}
.p-programPrice_table.-table03 th,
.p-programPrice_table.-table03 td {
  height: 55px;
  padding: 15px 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-programPrice_table.-table03 th,
  .p-programPrice_table.-table03 td {
    height: 55px;
    padding: 5px 0;
  }
}
.p-programPrice_table.-table03 th:nth-child(2) ._num,
.p-programPrice_table.-table03 td:nth-child(2) ._num {
  display: inline-block;
  font-size: 18px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-programPrice_table.-table03 th:nth-child(2) ._num,
  .p-programPrice_table.-table03 td:nth-child(2) ._num {
    font-size: 12px;
  }
}
.p-programPrice_table.-table03 th:nth-child(3) ._num,
.p-programPrice_table.-table03 td:nth-child(3) ._num {
  display: inline-block;
  font-size: 21px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-programPrice_table.-table03 th:nth-child(3) ._num,
  .p-programPrice_table.-table03 td:nth-child(3) ._num {
    font-size: 12px;
  }
}
.p-programPrice_table.-table03 th:first-child {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .p-programPrice_table.-table03 th:first-child {
    font-size: 10px;
  }
}
.p-programPrice_table.-table03 th:first-child ._minText {
  display: block;
  margin-top: -0.2em;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .p-programPrice_table.-table03 th:first-child ._minText {
    font-size: 10px;
  }
}
.p-programPrice_table.-table03 td {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .p-programPrice_table.-table03 td {
    font-size: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .p-programPrice_table.-table03 table {
    width: 810px;
  }
}
.p-programPrice_table.-table03 tr:first-child th {
  padding: 0;
}
.p-programPrice_table.-table03 tr:first-child th:nth-child(1) {
  width: 406px;
}
@media screen and (max-width: 767px) {
  .p-programPrice_table.-table03 tr:first-child th:nth-child(1) {
    width: 420px;
  }
}
.p-programPrice_table.-table03 tr:first-child th:nth-child(2) {
  width: 154px;
}
.p-programPrice_table.-table03 tr:first-child th:nth-child(3) {
  width: 239px;
}
.p-programPrice_table.-table03 tr:first-child th:nth-child(4) {
  width: 261px;
}
.p-programPrice_table.-table03 th,
.p-programPrice_table.-table03 td {
  height: 55px;
  padding: 15px 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-programPrice_table.-table03 th,
  .p-programPrice_table.-table03 td {
    height: 55px;
    padding: 5px 0;
  }
}
.p-programPrice_table.-table03 th:nth-child(2) ._num,
.p-programPrice_table.-table03 td:nth-child(2) ._num {
  display: inline-block;
  font-size: 18px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-programPrice_table.-table03 th:nth-child(2) ._num,
  .p-programPrice_table.-table03 td:nth-child(2) ._num {
    font-size: 12px;
  }
}
.p-programPrice_table.-table03 th:nth-child(3) ._num,
.p-programPrice_table.-table03 td:nth-child(3) ._num {
  display: inline-block;
  font-size: 21px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-programPrice_table.-table03 th:nth-child(3) ._num,
  .p-programPrice_table.-table03 td:nth-child(3) ._num {
    font-size: 12px;
  }
}
.p-programPrice_table.-table03 th:first-child {
  font-size: 14px;
  text-align: left;
  padding: 0 5px 0 34px;
}
@media screen and (max-width: 767px) {
  .p-programPrice_table.-table03 th:first-child {
    font-size: 10px;
    padding-left: 18px;
  }
}
.p-programPrice_table.-table03 th:first-child ._minText {
  display: block;
  margin-top: -0.2em;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .p-programPrice_table.-table03 th:first-child ._minText {
    font-size: 10px;
  }
}
.p-programPrice_table.-table03 td {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .p-programPrice_table.-table03 td {
    font-size: 10px;
  }
}
.p-programPrice_table.-table04 tr:first-child th {
  width: 320px;
  padding: 0;
}
.p-programPrice_table.-table04 tr:first-child th:nth-child(1) {
  width: 420px;
}
.p-programPrice_table.-table04 th,
.p-programPrice_table.-table04 td {
  height: 55px;
  padding: 15px 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-programPrice_table.-table04 th,
  .p-programPrice_table.-table04 td {
    height: 55px;
    padding: 5px 0;
  }
}
.p-programPrice_table.-table04 th:nth-child(2) ._num,
.p-programPrice_table.-table04 td:nth-child(2) ._num {
  display: inline-block;
  font-size: 18px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-programPrice_table.-table04 th:nth-child(2) ._num,
  .p-programPrice_table.-table04 td:nth-child(2) ._num {
    font-size: 12px;
  }
}
.p-programPrice_table.-table04 th:nth-child(3) ._num,
.p-programPrice_table.-table04 td:nth-child(3) ._num {
  display: inline-block;
  font-size: 21px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-programPrice_table.-table04 th:nth-child(3) ._num,
  .p-programPrice_table.-table04 td:nth-child(3) ._num {
    font-size: 12px;
  }
}
.p-programPrice_table.-table04 th:first-child {
  padding: 0 10px 0 34px;
  font-size: 18px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-programPrice_table.-table04 th:first-child {
    font-size: 10px;
    padding-left: 18px;
  }
}
.p-programPrice_table.-table04 th:first-child ._minText {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .p-programPrice_table.-table04 th:first-child ._minText {
    font-size: 10px;
  }
}
.p-programPrice_table.-table04 td {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .p-programPrice_table.-table04 td {
    font-size: 10px;
  }
}
.p-programPrice_notes {
  margin-top: 20px;
  font-size: 14px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-programPrice_notes {
    margin-top: 10px;
    font-size: 12px;
  }
}

/* ========================================
マシン紹介 p-machines
======================================== */
.p-machinesList {
  display: flex;
  flex-wrap: wrap;
  gap: 125px 5.7075471698%;
  margin-top: 206px;
  counter-reset: machinesNum 0;
}
@media screen and (max-width: 767px) {
  .p-machinesList {
    justify-content: space-between;
    gap: 10px 0;
    margin-top: 20px;
  }
}
.p-machinesList li {
  width: 29.5283018868%;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-machinesList li {
    width: 100%;
  }
  .p-machinesList li:first-child .p-machinesList_listBox {
    border-top: none;
  }
}
@media (hover: hover) {
  .p-machinesList li .p-machinesList_img img {
    transition: transform 0.4s, opacity 0.4s;
  }
  .p-machinesList li:hover .p-machinesList_img img {
    transform: scale(1.06);
    opacity: 0.7;
  }
}
.p-machinesList_listBox {
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-machinesList_listBox {
    height: auto;
    padding-top: 15px;
    position: relative;
  }
}
.p-machinesList_head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: clamp(105px , calc(140 / 1140 * 100vw), 140px);
}
@media screen and (max-width: 767px) {
  .p-machinesList_head {
    height: auto;
  }
}
.p-machinesList_head::before {
  counter-increment: machinesNum 1;
  content: counter(machinesNum);
  font-family: var(--font-en);
  font-size: clamp(60px , calc(80 / 1140 * 100vw), 80px);
  font-weight: 100;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-machinesList_head::before {
    font-size: 45px;
    position: absolute;
    top: 11px;
    left: 4px;
  }
}
.p-machinesList_head::after {
  content: "";
  display: block;
  width: clamp(42px , calc(55 / 1140 * 100vw), 55px);
  height: clamp(42px , calc(55 / 1140 * 100vw), 55px);
  background: url(../image/machines/icon_plus.svg) center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .p-machinesList_head::after {
    width: 19px;
    height: 19px;
    border-right: 1px solid var(--color-black);
    border-bottom: 1px solid var(--color-black);
    transform: rotate(55deg) skewX(20deg);
    position: absolute;
    top: 10px;
    right: 6px;
    background: none;
  }
}
.p-machinesList_ttlBox {
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .p-machinesList_ttlBox {
    padding: 0 30px 0 44px;
    margin-bottom: 0;
  }
}
.p-machinesList li:nth-child(n+10) .p-machinesList_ttlBox {
  padding-left: 54px;
}
.p-machinesList_enName {
  font-family: var(--font-en);
  font-size: clamp(30px , calc(40 / 1140 * 100vw), 40px);
  line-height: 1.1;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .p-machinesList_enName {
    font-size: 18px;
    line-height: 1.1666666667;
    letter-spacing: 0.05em;
  }
}
.p-machinesList_ttl {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .p-machinesList_ttl {
    margin-top: 0;
    font-size: 10px;
  }
}
.p-machinesList_listBox {
  border-top: 1px solid var(--color-glay-text);
}
@media screen and (min-width: 768px) {
  .p-machinesList_img {
    margin-top: auto;
    padding-top: 109.2651757188%;
    position: relative;
  }
}
@media screen and (max-width: 767px) {
  .p-machinesList_img {
    width: calc(150 / 375 * 100vw);
    margin-left: auto;
  }
}
@media screen and (min-width: 768px) {
  .p-machinesList_img img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-machinesList_img img {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .p-machinesList .p-machinesList_descBox {
    display: none !important;
  }
}
.p-machinesList_descBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-machinesList_descBox {
    display: none;
    margin-top: -13px;
    padding-bottom: 35px;
  }
}
.p-machinesList_modalImgBox {
  width: 42.8301886792%;
}
@media screen and (max-width: 767px) {
  .p-machinesList_modalImgBox {
    display: none;
  }
}
.p-machinesList_modalNum {
  height: clamp(60px , calc(80 / 1140 * 100vw), 80px);
}
.p-machinesList_modalNum::before {
  counter-increment: machinesModalNum 1;
  content: counter(machinesModalNum) ".";
  font-family: var(--font-en);
  font-size: clamp(60px , calc(80 / 1140 * 100vw), 80px);
  font-weight: 200;
  line-height: 1;
}
.p-machinesList_modalEnName {
  margin-top: 42px;
  font-family: var(--font-en);
  font-size: clamp(30px , calc(40 / 1140 * 100vw), 40px);
  line-height: 1.1;
  letter-spacing: 0.03em;
}
.p-machinesList_modalTtl {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
.p-machinesList_modalImg img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-machinesList_modalContBox {
    width: 50%;
    max-width: 455px;
  }
}
.p-machinesList_read {
  margin-top: -0.1em;
  font-size: clamp(26px , calc(35 / 1140 * 100vw), 35px);
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .p-machinesList_read {
    margin-top: 0;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.4375;
  }
}
.p-machinesList_desc {
  margin-top: 33px;
  line-height: 2.375;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-machinesList_desc {
    margin-top: 20px;
    font-size: 12px;
    line-height: 2.1666666667;
    letter-spacing: 0.06em;
  }
}
.p-machinesList_effect {
  margin-top: 3px;
  line-height: 2.375;
}
@media screen and (max-width: 767px) {
  .p-machinesList_effect {
    margin-top: 11px;
    font-size: 12px;
    line-height: 2.1666666667;
    letter-spacing: 0.06em;
  }
}
.p-machinesList_effect * {
  letter-spacing: 0.05em;
}
.p-machinesList_effect dt {
  font-weight: 500;
}
.p-machinesList_close {
  display: block;
  height: 52px;
  width: 52px;
  position: absolute;
  right: 0;
  bottom: 72px;
  transform: translateX(max((100vw - 1060px) / 2 - 53px, (100vw - (100vw - var(--mg-pc) * 2)) / 2 - 53px));
}
@media screen and (max-width: 767px) {
  .p-machinesList_close {
    width: 56px;
    height: 56px;
    gap: 5px 0;
  }
}
.p-machinesList_close::before, .p-machinesList_close::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-black);
  position: absolute;
  top: 50%;
  right: 0;
}
.p-machinesList_close::before {
  transform: rotate(45deg);
}
.p-machinesList_close::after {
  transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .p-machinesList .-utility01 .p-machinesList_img {
    margin-top: -20px;
    margin-bottom: -20px;
  }
}
@media screen and (max-width: 767px) {
  .p-machinesList .-utility02 {
    margin-bottom: -40px;
  }
  .p-machinesList .-utility02 .p-machinesList_img {
    margin-top: -20px;
    margin-bottom: -20px;
  }
}

@media screen and (max-width: 767px) {
  .p-machinesModal {
    display: none !important;
  }
}
.p-machinesModal .l-modal_container {
  display: block;
  padding: 257px 0 120px;
}
.p-machinesModal_slide {
  opacity: 0;
  transition: 0.4s 0s;
}
.is-modalActive .p-machinesModal_slide {
  opacity: 1;
  transition: 0.4s 0.4s;
}
.p-machinesModal_slide .splide__list {
  counter-reset: machinesModalNum 0;
}
.p-machinesModal_slide .splide__arrows {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 107px;
}
.p-machinesModal_slide .splide__arrow {
  display: block;
  width: 44%;
  max-width: 333px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--color-black);
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.08em;
}
.p-machinesModal_slide .splide__arrow[disabled] {
  opacity: 0.2;
  pointer-events: none;
}
.p-machinesModal_slide .splide__arrow--prev {
  text-align: left;
}
.p-machinesModal_slide .splide__arrow--next {
  text-align: right;
}

/* ========================================
スタッフ p-staff
======================================== */
.p-staffList {
  display: flex;
  flex-wrap: wrap;
  gap: 45px 2.7672955975%;
  margin-top: 114px;
}
@media screen and (max-width: 767px) {
  .p-staffList {
    justify-content: space-between;
    gap: 27px 0;
    margin-top: 29px;
  }
}
.p-staffList li {
  width: 22.9245283019%;
}
@media screen and (max-width: 767px) {
  .p-staffList li {
    width: calc(157 / 375 * 100vw);
  }
}
.p-staffList_img {
  padding-top: 125.1028806584%;
  position: relative;
}
.p-staffList_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.p-staffList_name {
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-staffList_name {
    margin-top: 8px;
    font-size: 14px;
  }
}
.p-staffList_desc {
  margin-top: 15px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7142857143;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-staffList_desc {
    margin-top: 9px;
    font-size: 10px;
    line-height: 2;
  }
}

/* ========================================
ホスピタリティ p-ホスピタリティ
======================================== */
.p-hospitality_slide_caption {
  margin-bottom: 25px;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-hospitality_slide_caption {
    margin-bottom: 16px;
    font-size: 12px;
    text-align: right;
    padding: 0 var(--mg-sp);
  }
}
.p-hospitality_slide_img {
  padding-top: 66.6037735849%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-hospitality_slide_img {
    padding-top: 149.8666666667%;
  }
}
.p-hospitality_slide_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.p-hospitality_slide .splide__arrow {
  display: block;
  width: 49px;
  height: 49px;
  position: absolute;
  top: 50%;
  transform: translateY(-16%);
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-hospitality_slide .splide__arrow {
    transform: translateY(-50%);
  }
}
.p-hospitality_slide .splide__arrow::before {
  content: "";
  width: clamp(39px , calc(49 / 1440 * 100vw), 49px);
  height: clamp(39px , calc(49 / 1440 * 100vw), 49px);
  border-top: 1px solid var(--color-glay-text);
  position: absolute;
  top: 4%;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-hospitality_slide .splide__arrow::before {
    border-color: #fff !important;
    border-width: 2px !important;
  }
}
.p-hospitality_slide .splide__arrow--prev {
  left: clamp(-80px, -5.5555555556vw, -55px);
}
@media screen and (max-width: 767px) {
  .p-hospitality_slide .splide__arrow--prev {
    left: 0;
  }
}
.p-hospitality_slide .splide__arrow--prev::before {
  left: 50%;
  border-left: 1px solid var(--color-glay-text);
  transform: rotate(-35deg) skewX(20deg);
}
.p-hospitality_slide .splide__arrow--next {
  right: clamp(-80px, -5.5555555556vw, -55px);
}
@media screen and (max-width: 767px) {
  .p-hospitality_slide .splide__arrow--next {
    right: 0;
  }
}
.p-hospitality_slide .splide__arrow--next::before {
  right: 50%;
  border-right: 1px solid var(--color-glay-text);
  transform: rotate(35deg) skewX(-20deg);
}

@media screen and (min-width: 1025px) {
  .p-hospitalityIntro {
    display: flex;
    justify-content: space-between;
    gap: 0 30px;
  }
}
@media screen and (min-width: 1025px) {
  .p-hospitalityIntro-reverse {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    gap: 0 30px;
  }
}
.p-hospitalityIntro_ttl {
  font-size: clamp(28px , calc(35 / 1140 * 100vw), 35px);
  font-weight: 400;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-hospitalityIntro_ttl {
    font-size: 21px;
    line-height: 1.5714285714;
    letter-spacing: 0.1em;
  }
}
.p-hospitalityIntro_desc {
  padding-top: 0.7em;
  font-size: 16px;
  line-height: 2.375;
  letter-spacing: 0.05em;
  flex: 1;
  max-width: 455px;
  text-align: justify;
}
@media screen and (max-width: 1024px) {
  .p-hospitalityIntro_desc {
    margin-top: 20px;
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-hospitalityIntro_desc {
    margin-top: 30px;
    padding-top: 0;
    line-height: 2;
  }
}

.p-hospitalityHead {
  margin-top: 111px;
}
@media screen and (max-width: 767px) {
  .p-hospitalityHead {
    margin-top: 25px;
  }
}

.p-hospitalityFacility {
  margin-top: 28px;
}
@media screen and (max-width: 1024px) {
  .p-hospitalityFacility {
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .p-hospitalityFacility {
    width: calc(100% + var(--mg-sp) * 2);
    margin-left: calc(var(--mg-sp) * -1);
    margin-top: 7px;
  }
}
.p-hospitalityFacility_slideSub {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-hospitalityFacility_slideSub {
    margin-top: 25px;
    padding: 0 var(--mg-sp);
  }
}
.p-hospitalityFacility_slideSub .splide__list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 0.8254716981%;
}
@media screen and (max-width: 767px) {
  .p-hospitalityFacility_slideSub .splide__list {
    gap: 15px calc(4 / 375 * 100vw);
  }
}
.p-hospitalityFacility_slideSub .splide__slide {
  width: 10.3773584906% !important;
  opacity: 0.55;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-hospitalityFacility_slideSub .splide__slide {
    width: calc((100% - calc(4 / 375 * 100vw) * 6) / 7) !important;
  }
}
.p-hospitalityFacility_slideSub .splide__slide.is-active {
  opacity: 1;
}
.p-hospitalityFacility_slideSub ._imgBox {
  padding-top: 61.8181818182%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-hospitalityFacility_slideSub ._imgBox {
    padding-top: 150%;
  }
}
.p-hospitalityFacility_slideSub ._imgBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.p-hospitalityAbout {
  margin-top: 162px;
}
@media screen and (max-width: 767px) {
  .p-hospitalityAbout {
    margin-top: 45px;
  }
}
@media screen and (min-width: 1025px) {
  .p-hospitalityAbout .p-hospitalityIntro_ttl {
    margin-right: -3.3vw;
  }
}
.p-hospitalityAbout_slide {
  margin-top: 115px;
}
@media screen and (max-width: 767px) {
  .p-hospitalityAbout_slide {
    width: calc(100% + var(--mg-sp) * 2);
    margin-left: calc(var(--mg-sp) * -1);
    margin-top: 29px;
  }
}
.p-hospitalityAbout_progress {
  margin-top: 50px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .p-hospitalityAbout_progress {
    width: calc(100% - var(--mg-sp) * 2);
    margin: 15px auto 0;
  }
}
.p-hospitalityAbout_bar {
  width: 0;
  height: 2px;
  transition: width 0.4s ease;
  background: var(--color-glay-text);
}

/* ========================================
事業内容 p-buisiness
======================================== */
@media screen and (max-width: 767px) {
  .p-buisiness .l-inPageLink {
    width: 100%;
  }
}

.p-buisinessNav {
  display: grid;
  gap: 24px min(calc(54 / 1440 * 100vw), 54px);
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  margin-top: 78px;
}
@media screen and (max-width: 767px) {
  .p-buisinessNav {
    grid-template-columns: repeat(2, calc(155 / 375 * 100vw));
    justify-content: space-between;
    gap: 21px 0;
    margin-top: 34px;
  }
}
@media screen and (max-width: 767px) {
  .p-buisinessNav li {
    width: 100%;
  }
}
.p-buisinessNav a {
  display: block;
  min-height: 71px;
  padding: 6px 0;
  border-top: 1px solid var(--color-black);
  text-align: right;
  color: var(--color-black);
  font-size: 16px;
  line-height: 1.8125;
  letter-spacing: 0.05em;
}
@media (hover: hover) {
  .p-buisinessNav a {
    transition: opacity 0.4s;
  }
  .p-buisinessNav a:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 767px) {
  .p-buisinessNav a {
    min-height: 0;
    padding: 4px 0;
    border-color: var(--color-glay-text);
    font-size: 12px;
    line-height: 1.8333333333;
  }
}

.p-buisinessList {
  margin-top: 93px;
}
@media screen and (max-width: 767px) {
  .p-buisinessList {
    margin-top: 43px;
  }
}
.p-buisinessList li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0 40px;
}
@media screen and (max-width: 767px) {
  .p-buisinessList li {
    display: block;
  }
}
.p-buisinessList li:nth-child(odd) {
  flex-direction: row-reverse;
}
.p-buisinessList li + li {
  margin-top: 90px;
  padding-top: 90px;
  border-top: 1px solid var(--color-glay-text);
}
@media screen and (max-width: 767px) {
  .p-buisinessList li + li {
    margin-top: 45px;
    padding-top: 0;
    border-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-buisinessList li.-spBoder {
    padding-top: 18px;
    border-top: 1px solid var(--color-glay-text);
  }
  .p-buisinessList li.-spBoder .p-buisinessList_ttl {
    margin-top: 0;
  }
}
.p-buisinessList_imgBox {
  width: 42.9245283019%;
}
@media screen and (max-width: 767px) {
  .p-buisinessList_imgBox {
    width: 100%;
  }
}
.p-buisinessList_imgBox img {
  width: 100%;
}
.p-buisinessList_contBox {
  flex: 1;
  max-width: 455px;
}
@media screen and (max-width: 767px) {
  .p-buisinessList_contBox {
    max-width: 100%;
  }
}
.p-buisinessList_contBox.-full {
  max-width: 100%;
}
.p-buisinessList_contBox a {
  text-decoration: underline;
}
@media (hover: hover) {
  .p-buisinessList_contBox a {
    transition: opacity 0.4s;
  }
  .p-buisinessList_contBox a:hover {
    opacity: 0.5;
  }
}
.p-buisinessList_ttl {
  font-size: min(calc(35 / 1140 * 100vw), 35px);
  font-weight: 400;
  line-height: 1.7142857143;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-buisinessList_ttl {
    margin-top: 22px;
    font-size: 21px;
    line-height: 1.4285714286;
    letter-spacing: 0.1em;
  }
}
.p-buisinessList_desc {
  margin-top: 50px;
  text-align: justify;
  font-size: 16px;
  line-height: 2.25;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-buisinessList_desc {
    margin-top: 20px;
  }
}
.p-buisinessList_links {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px 20px;
}
@media screen and (max-width: 767px) {
  .p-buisinessList_links {
    margin-top: 0;
  }
}
@media (hover: hover) {
  .p-buisinessList_links a {
    transition: opacity 0.4s;
  }
  .p-buisinessList_links a:hover {
    opacity: 0.5;
  }
}

.p-buisinessCompany {
  margin-top: 187px;
}
@media screen and (max-width: 767px) {
  .p-buisinessCompany {
    margin-top: 62px;
  }
}
.p-buisinessCompany_cont {
  margin-top: 150px;
}
@media screen and (max-width: 767px) {
  .p-buisinessCompany_cont {
    margin-top: 30px;
  }
}
.p-buisinessCompany_cont dl {
  display: flex;
  line-height: 1.875;
}
@media screen and (max-width: 767px) {
  .p-buisinessCompany_cont dl {
    font-size: 14px;
    line-height: 1.8571428571;
  }
}
@media screen and (max-width: 767px) {
  .p-buisinessCompany_cont dl {
    display: block;
  }
}
.p-buisinessCompany_cont dl + dl {
  margin-top: 10px;
}
.p-buisinessCompany_cont dt {
  width: 116px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-buisinessCompany_cont dt {
    width: 100%;
    font-weight: 500;
  }
}
.p-buisinessCompany_cont dd {
  flex: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-buisinessCompany_cont dd {
    margin-top: 3px;
  }
}
.p-buisinessCompany_cont dd * {
  letter-spacing: 0.05em;
}
.p-buisinessCompany_cont a {
  text-decoration: underline;
}
@media (hover: hover) {
  .p-buisinessCompany_cont a {
    transition: opacity 0.4s;
  }
  .p-buisinessCompany_cont a:hover {
    opacity: 0.5;
  }
}
.p-buisinessCompany_cont ._tel {
  text-decoration: none;
}
@media (hover: hover) {
  .p-buisinessCompany_cont ._tel {
    pointer-events: none;
  }
}
.p-buisinessCompany_history {
  margin-top: 45px;
  padding-top: 42px;
  border-top: 1px solid var(--color-glay-text);
}
@media screen and (max-width: 767px) {
  .p-buisinessCompany_history {
    margin-top: 30px;
    padding-top: 21px;
  }
}
.p-buisinessCompany_history_ttl {
  font-size: 21px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-buisinessCompany_history_ttl {
    font-size: 16px;
  }
}
.p-buisinessCompany_history .p-buisinessCompany_cont {
  margin-top: 31px;
}
@media screen and (max-width: 767px) {
  .p-buisinessCompany_history .p-buisinessCompany_cont {
    margin-top: 26px;
  }
  .p-buisinessCompany_history .p-buisinessCompany_cont dd {
    margin-top: -3px;
    line-height: 2.2857142857;
  }
}
.p-buisinessCompany_contact {
  margin-top: 113px;
}
@media screen and (max-width: 767px) {
  .p-buisinessCompany_contact {
    margin-top: 30px;
  }
}
.p-buisinessCompany_contact a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  background-color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-buisinessCompany_contact a {
    height: 50px;
    font-size: 14px;
  }
}
@media (hover: hover) {
  .p-buisinessCompany_contact a {
    transition: background-color 0.6s, color 0.6s;
  }
  .p-buisinessCompany_contact a:hover {
    background-color: var(--color-black);
    color: #fff;
  }
}

.p-buisinessPartner {
  margin-top: 200px;
}
@media screen and (max-width: 767px) {
  .p-buisinessPartner {
    margin-top: 60px;
  }
}
.p-buisinessPartner_container {
  background-color: #fff;
  margin-top: 73px;
  padding: 113px 0 0;
}
@media screen and (max-width: 767px) {
  .p-buisinessPartner_container {
    margin-top: 43px;
    padding-top: 43px;
  }
}
.p-buisinessPartner_cont {
  display: grid;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.p-buisinessPartner_cont + .p-buisinessPartner_cont {
  margin-top: 89px;
  padding-top: 60px;
  border-top: 1px solid var(--color-glay-text);
}
@media screen and (max-width: 767px) {
  .p-buisinessPartner_cont + .p-buisinessPartner_cont {
    margin-top: 46px;
    padding-top: 23px;
  }
}
@media (hover: hover) {
  .p-buisinessPartner_cont a {
    transition: opacity 0.4s;
  }
  .p-buisinessPartner_cont a:hover {
    opacity: 0.5;
  }
}
.p-buisinessPartner_cont.-cont01 {
  grid-template-columns: repeat(2, auto);
  gap: 60px min(calc(130 / 1440 * 100vw), 130px);
}
@media screen and (max-width: 767px) {
  .p-buisinessPartner_cont.-cont01 {
    grid-template-columns: auto;
    gap: 34px 0;
  }
}
.p-buisinessPartner_cont.-cont02 {
  grid-template-columns: repeat(3, auto);
  gap: 60px min(calc(100 / 1440 * 100vw), 100px);
}
@media screen and (max-width: 767px) {
  .p-buisinessPartner_cont.-cont02 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 0;
  }
}
.p-buisinessPartner_cont.-cont03 {
  padding: 80px 0 95px;
  grid-template-columns: repeat(2, auto);
}
@media screen and (max-width: 767px) {
  .p-buisinessPartner_cont.-cont03 {
    padding: 36px 0 55px;
  }
}
@media screen and (max-width: 767px) {
  .p-buisinessPartner ._partner01 {
    width: 215px;
  }
}
@media screen and (max-width: 767px) {
  .p-buisinessPartner ._partner02 {
    width: 210px;
  }
}
@media screen and (max-width: 767px) {
  .p-buisinessPartner ._partner03 {
    width: 37px;
  }
}
@media screen and (max-width: 767px) {
  .p-buisinessPartner ._partner04 {
    width: 142px;
  }
}
@media screen and (max-width: 767px) {
  .p-buisinessPartner ._partner05 {
    width: 135px;
  }
}
@media screen and (max-width: 767px) {
  .p-buisinessPartner ._partner06 {
    width: 149px;
  }
}
@media screen and (max-width: 767px) {
  .p-buisinessPartner ._partner07 {
    width: 114px;
  }
}
@media screen and (max-width: 767px) {
  .p-buisinessPartner ._partner08 {
    width: 102px;
  }
}
.p-buisinessPartner ._partner09 {
  width: min(49.4791666667vw, 487px);
}
@media screen and (max-width: 767px) {
  .p-buisinessPartner ._partner09 {
    width: 218px;
  }
}

/* ========================================
ブログ p-blog
======================================== */
.p-blog .l-blogList {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-blog .l-blogList {
    margin-top: 34px;
  }
}

.p-blogArchive {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-blogArchive {
    width: 100%;
  }
}
.p-blogArchive_toggle {
  display: flex;
  align-items: center;
  gap: 0 10px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-blogArchive_toggle {
    width: 100%;
    height: 35px;
    padding: 0 10px 0 20px;
    background-color: #fff;
  }
}
.p-blogArchive_toggle::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-top: -4px;
  border-right: 1px solid var(--color-black);
  border-bottom: 1px solid var(--color-black);
  transform: rotate(55deg) skewX(20deg);
}
.p-blogArchive_toggle ._en {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-blogArchive_toggle ._en {
    display: block;
    padding-top: 3px;
    font-family: var(--font-en);
    font-size: 14px;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 767px) {
  .p-blogArchive_toggle ._jp {
    margin-left: auto;
    font-size: 10px;
  }
}
.p-blogArchive_list {
  display: none;
  background-color: #fff;
  padding: 5px 10px;
  position: absolute;
  top: 100%;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-blogArchive_list {
    padding: 0;
    position: static;
  }
}
.p-blogArchive_list a {
  display: flex;
  align-items: center;
  font-size: 15px;
  line-height: 1.9333333333;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media (hover: hover) {
  .p-blogArchive_list a {
    transition: opacity 0.4s;
  }
  .p-blogArchive_list a:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 767px) {
  .p-blogArchive_list a {
    justify-content: center;
    height: 35px;
    padding: 0 4px;
    background: #fff;
    border-top: 1px solid var(--color-glay-text);
    font-size: 12px;
    text-align: center;
  }
}

.p-blogCategory {
  max-width: 684px;
}
@media screen and (max-width: 767px) {
  .p-blogCategory {
    width: 100%;
  }
}
.p-blogCategory_toggle {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-blogCategory_toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0 10px;
    width: 100%;
    height: 35px;
    padding: 0 10px 0 20px;
    background: #fff;
  }
  .p-blogCategory_toggle::after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-top: -4px;
    margin-left: 4px;
    border-right: 1px solid var(--color-black);
    border-bottom: 1px solid var(--color-black);
    transform: rotate(55deg) skewX(20deg);
  }
}
.p-blogCategory_toggle ._en {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-blogCategory_toggle ._en {
    display: block;
    padding-top: 3px;
    font-family: var(--font-en);
    font-size: 14px;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 767px) {
  .p-blogCategory_toggle ._jp {
    margin-left: auto;
    font-size: 10px;
  }
}
.p-blogCategory_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 28px 20px;
}
@media screen and (max-width: 767px) {
  .p-blogCategory_list {
    display: none;
    width: 100%;
  }
}
.p-blogCategory_list li {
  width: 156px;
}
@media screen and (max-width: 767px) {
  .p-blogCategory_list li {
    width: 100%;
  }
}
.p-blogCategory_list li._current a {
  color: var(--color-black);
}
@media screen and (min-width: 768px) {
  .p-blogCategory_list li._current a {
    border-color: var(--color-black);
  }
}
.p-blogCategory_list a {
  display: block;
  padding: 11px 0;
  border-top: 1px solid var(--color-glay-text);
  text-align: right;
  color: var(--color-glay-text);
  font-size: 16px;
  line-height: 1.2;
}
@media screen and (hover: hover) and (min-width: 768px) {
  .p-blogCategory_list a {
    transition: border 0.3s, color 0.3s;
  }
  .p-blogCategory_list a:hover {
    border-color: var(--color-black);
    color: var(--color-black);
  }
}
@media screen and (max-width: 767px) {
  .p-blogCategory_list a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35px;
    padding: 0 4px;
    background: #fff;
    border-top: 1px solid var(--color-glay-text);
    font-size: 12px;
    text-align: center;
  }
}

.p-blogTag {
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-blogTag {
    display: block;
  }
}
.p-blogTag_ttl {
  width: 96px;
  font-size: 16px;
}
.p-blogTag_list {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0 8px;
}
.p-blogTag_list li._current a {
  color: var(--color-black);
}
.p-blogTag_list a {
  display: block;
  color: var(--color-glay-text);
  font-size: 14px;
  letter-spacing: 0.05em;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .p-blogTag_list a {
    line-height: 2.4;
  }
}
@media (hover: hover) {
  .p-blogTag_list a {
    transition: color 0.3s;
  }
  .p-blogTag_list a:hover {
    color: var(--color-black);
  }
}
.p-blogTag_list a::before {
  content: "#";
}

.p-blogNav {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px 80px;
  margin-top: 197px;
}
@media screen and (max-width: 767px) {
  .p-blogNav {
    margin-top: 20px;
    flex-direction: column;
    gap: 10px 0;
  }
}
.p-blogNav .p-blogCategory {
  flex: 1;
  margin-top: 9px;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-blogNav .p-blogCategory {
    margin-top: 0;
    order: -1;
  }
}
.p-blogNav .p-blogTag {
  width: 100%;
  margin-top: 47px;
}
@media screen and (max-width: 767px) {
  .p-blogNav .p-blogTag {
    margin-top: 10px;
  }
}

.p-blogDetailContainer {
  display: flex;
  justify-content: space-between;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0 40px;
  margin-top: 150px;
}
@media screen and (max-width: 767px) {
  .p-blogDetailContainer {
    display: block;
    margin-top: 0;
  }
}
.p-blogDetailContainer_aside {
  width: 192px;
}
@media screen and (max-width: 767px) {
  .p-blogDetailContainer_aside {
    display: none;
  }
}
.p-blogDetailContainer_aside .p-blogArchive_toggle {
  pointer-events: none;
}
.p-blogDetailContainer_aside .p-blogArchive_list {
  display: block;
  margin-top: 2px;
  position: static;
}
.p-blogDetailContainer_aside .p-blogTag {
  margin-top: 35px;
  display: block;
  font-size: 14px;
  line-height: 1.7142857143;
}
.p-blogDetailContainer_aside .p-blogTag_list {
  display: block;
  margin-top: 25px;
  margin-right: -8px;
}
.p-blogDetailContainer_aside .p-blogTag_list li {
  display: inline;
  margin-right: 8px;
}
.p-blogDetailContainer_aside .p-blogTag_list a {
  display: inline;
  color: var(--color-black);
}
@media (hover: hover) {
  .p-blogDetailContainer_aside .p-blogTag_list a {
    transition: opacity 0.4s;
  }
  .p-blogDetailContainer_aside .p-blogTag_list a:hover {
    opacity: 0.5;
  }
}
.p-blogDetailContainer_main {
  flex: 1;
  max-width: 687px;
  padding-top: 11px;
}
@media screen and (max-width: 767px) {
  .p-blogDetailContainer_main {
    padding-top: 0;
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-blogDetailContainer_main .p-blogCategory {
    display: none;
  }
}

.p-blogDetailCont .p-blogDetailCont_mainImg {
  margin-top: 75px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-blogDetailCont .p-blogDetailCont_mainImg {
    margin-top: 34px;
  }
}
.p-blogDetailCont .p-blogDetailCont_mainImg img {
  width: 100%;
}
.p-blogDetailCont_cat {
  background: #D9D9D9;
  padding: 12px 44px;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-blogDetailCont_cat {
    padding: 8px 44px;
    font-size: 12px;
  }
}
.p-blogDetailCont_time {
  margin-top: 29px;
  display: block;
  font-family: var(--font-en);
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .p-blogDetailCont_time {
    margin-top: 20px;
    font-size: 16px;
  }
}
.p-blogDetailCont_mainTtl {
  margin-top: 21px;
  padding-top: 17px;
  border-top: 1px solid var(--color-glay-text);
  font-size: 20px;
  line-height: 1.75;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-blogDetailCont_mainTtl {
    margin-top: 10px;
    padding-top: 10px;
    font-size: 16px;
  }
}
.p-blogDetailCont_tag {
  margin-top: 25px;
  font-size: 14px;
  line-height: 1.7142857143;
  letter-spacing: 0.05em;
  margin-right: -10px;
}
@media screen and (max-width: 767px) {
  .p-blogDetailCont_tag {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.75;
  }
}
.p-blogDetailCont_tag > * {
  display: inline;
  margin-right: 10px;
  color: var(--color-glay-text);
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .p-blogDetailCont_tag > * {
    margin-right: 15px;
  }
}
.p-blogDetailCont_tag > *::before {
  content: "#";
}
@media (hover: hover) {
  .p-blogDetailCont_tag a:hover {
    transition: color 0.3s;
    color: var(--color-black);
  }
}
.p-blogDetailCont_outline {
  display: none;
  margin-top: 44px;
  padding: 32px 40px 36px;
  font-size: 14px;
}
.p-blogDetailCont_outline.is-active {
  display: block;
}
@media screen and (max-width: 767px) {
  .p-blogDetailCont_outline {
    margin-top: 30px;
    padding: 24px var(--mg-sp) 26px;
    width: calc(100% + var(--mg-sp) * 2);
    margin-left: calc(var(--mg-sp) * -1);
    line-height: 1.8571428571;
  }
}
.p-blogDetailCont_outline dd {
  margin-top: 19px;
}
@media screen and (max-width: 767px) {
  .p-blogDetailCont_outline dd {
    margin-top: 9px;
  }
}
.p-blogDetailCont_outline dd li + li {
  margin-top: 11px;
}
@media screen and (max-width: 767px) {
  .p-blogDetailCont_outline dd li + li {
    margin-top: 17px;
    padding-top: 10px;
    border-top: 1px solid var(--color-glay-text);
  }
}
.p-blogDetailCont_outline dd a {
  display: inline-block;
  text-decoration: underline;
  padding-left: 27px;
  position: relative;
}
.p-blogDetailCont_outline dd a::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.p-blogPost {
  margin-top: 46px;
}
@media screen and (max-width: 767px) {
  .p-blogPost {
    margin-top: 34px;
  }
}
.p-blogPost > * {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-blogPost > * {
    margin-top: 20px;
  }
}
.p-blogPost > *:first-child {
  margin-top: 0 !important;
}
.p-blogPost h2 {
  margin: 23px 0 33px;
  padding-top: 40px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-blogPost h2 {
    margin: 18px 0 26px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.875;
  }
}
.p-blogPost p {
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-blogPost p {
    letter-spacing: 0.06em;
  }
}
.p-blogPost p a {
  text-decoration: underline;
}
@media (hover: hover) {
  .p-blogPost p a {
    transition: opacity 0.4s;
  }
  .p-blogPost p a:hover {
    opacity: 0.5;
  }
}
.p-blogPost > ul {
  margin-top: 2em;
}
.p-blogPost > ul li {
  text-indent: -1em;
  padding-left: 1em;
  line-height: 1.8;
}
.p-blogPost > ul li + li {
  margin-top: 0.4em;
}
.p-blogPost > ul li::before {
  content: "・";
}
.p-blogPost_verticalImg {
  width: 53.216374269%;
}
@media screen and (max-width: 767px) {
  .p-blogPost_verticalImg {
    width: 59.4029850746%;
  }
}
.p-blogPost_verticalImg img {
  width: 100%;
}
.p-blogPost .wp-block-embed-youtube .wp-block-embed__wrapper {
  padding-top: 56.25%;
}
.p-blogPost .wp-block-embed-youtube .wp-block-embed__wrapper iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

/* ========================================
お問い合わせ p-contact
======================================== */
@media screen and (max-width: 767px) {
  .p-contact .l-intro_read ._spMt {
    display: block;
    margin-top: 11px;
  }
}

.p-contact_errorRead {
  margin-top: 50px;
  color: var(--color-red);
  font-size: 21px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-contact_errorRead {
    font-size: 16px;
  }
}

.p-contactLine {
  margin-top: 43px;
}
@media screen and (max-width: 767px) {
  .p-contactLine {
    margin-top: 26px;
  }
}
.p-contactLine a {
  display: flex;
  align-items: center;
  gap: 0 0;
  padding: 33px 30px 34px 152px;
  background: #fff;
  position: relative;
}
@media (hover: hover) {
  .p-contactLine a {
    transition: opacity 0.4s;
  }
  .p-contactLine a:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 767px) {
  .p-contactLine a {
    display: block;
    margin-top: 26px;
    padding: 14px 5px 15px 103px;
  }
}
.p-contactLine a::before {
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  background: url(../image/contact/line_icon.svg) center/contain no-repeat;
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-contactLine a::before {
    width: 58px;
    height: 58px;
    left: 12px;
  }
}
.p-contactLine_ttl {
  width: 51.7%;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.6363636364;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-contactLine_ttl {
    width: 100%;
    font-size: 16px;
  }
}
.p-contactLine_desc {
  flex: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-contactLine_desc {
    font-size: 10px;
  }
}

@media screen and (min-width: 768px) {
  .p-contact-confirm .l-form_cont {
    display: flex;
  }
}
.p-contact-confirm .l-form_cont + .l-form_cont {
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  .p-contact-confirm .l-form_cont + .l-form_cont {
    margin-top: 24px;
  }
}
@media screen and (min-width: 768px) {
  .p-contact-confirm .l-form_cont dt {
    width: 35.2%;
    font-size: 21px;
    transform: translateY(-3px);
  }
}
@media screen and (min-width: 768px) {
  .p-contact-confirm .l-form_cont dd {
    flex: 1;
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .p-contact-confirm .l-form_cont dd {
    font-weight: 400;
  }
}

.p-contactThanks {
  margin-top: 54px;
}
@media screen and (max-width: 767px) {
  .p-contactThanks {
    margin-top: 28px;
  }
}
.p-contactThanks_read {
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-contactThanks_read {
    font-size: 16px;
  }
}
.p-contactThanks_desc {
  margin-top: 62px;
  line-height: 2.25;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-contactThanks_desc {
    margin-top: 11px;
    line-height: 2;
    letter-spacing: 0.06em;
  }
}
.p-contactThanks_link {
  margin-top: 90px;
}
@media screen and (max-width: 767px) {
  .p-contactThanks_link {
    margin-top: 28px;
  }
}
.p-contactThanks_link a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  border: 1px solid var(--color-glay-text);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-contactThanks_link a {
    height: 50px;
    font-size: 14px;
  }
}
@media (hover: hover) {
  .p-contactThanks_link a {
    transition: 0.3s;
  }
  .p-contactThanks_link a:hover {
    background-color: var(--color-black);
    color: #fff;
  }
}

/* ========================================
スタッフ p-privacy
======================================== */
.p-privacy_container {
  margin-top: 163px;
  line-height: 2.25;
}
@media screen and (max-width: 767px) {
  .p-privacy_container {
    margin-top: 29px;
    font-size: 14px;
    line-height: 2.1428571429;
  }
}
.p-privacy_container * {
  letter-spacing: 0.05em;
}
.p-privacy_container h2 {
  margin-bottom: 43px;
  font-size: 21px;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-privacy_container h2 {
    margin-bottom: 15px;
    font-size: 16px;
  }
}
.p-privacy_container section {
  margin-top: 78px;
}
@media screen and (max-width: 767px) {
  .p-privacy_container section {
    margin-top: 32px;
  }
}
.p-privacy_container section + section {
  margin-top: 94px;
}
@media screen and (max-width: 767px) {
  .p-privacy_container section + section {
    margin-top: 41px;
  }
}
.p-privacy_container section > * + * {
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  .p-privacy_container ._secTtl {
    padding-left: 27px;
    font-size: 16px;
    font-weight: 600;
    line-height: 2;
    position: relative;
  }
  .p-privacy_container ._secTtl + * {
    margin-top: 16px;
  }
}
@media screen and (max-width: 767px) {
  .p-privacy_container ._secNum {
    position: absolute;
    top: 0;
    left: 0;
  }
}
.p-privacy_container p {
  text-align: justify;
}
.p-privacy_container ul li {
  padding-left: 24px;
  position: relative;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .p-privacy_container ul li {
    padding-left: 21px;
  }
}
.p-privacy_container ul li::before {
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  background: #000;
  border-radius: 50%;
  position: absolute;
  top: 17px;
  left: 10px;
}
@media screen and (max-width: 767px) {
  .p-privacy_container ul li::before {
    top: 15px;
    left: 9px;
  }
}
.p-privacy_container ._mtNone {
  margin-top: 0;
}
.p-privacy_container ._boderBox {
  border: 1px solid var(--color-glay-text);
  padding: 9px 25px 8px;
}
@media screen and (max-width: 767px) {
  .p-privacy_container ._boderBox {
    margin-top: 45px;
    padding: 22px 21px 23px;
  }
}
.p-privacy_container ._mtlarge {
  margin-top: 36px;
}
@media screen and (max-width: 767px) {
  .p-privacy_container ._mtlarge {
    margin-top: 30px;
  }
}
.p-privacy_container ._address {
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-privacy_container ._address {
    text-align: right;
  }
}

/* ========================================
スタッフ p-page404
======================================== */
.p-page404 {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .p-page404 {
    margin-top: 0;
  }
}
.p-page404_ttl {
  font-size: 24px;
  font-weight: 500;
}
.p-page404_desc {
  margin-top: 40px;
}
.p-page404_desc a {
  text-decoration: underline;
}
@media (hover: hover) {
  .p-page404_desc a {
    transition: opacity 0.4s;
  }
  .p-page404_desc a:hover {
    opacity: 0.5;
  }
}/*# sourceMappingURL=style.css.map */