@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
  word-wrap: break-word;
}

input, textarea {
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
  -webkit-text-size-adjust: 100%;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

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

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: bottom;
}

body {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.4285714286;
  color: #1a1a1a;
}

.l-main {
  position: relative;
}
.l-main::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  height: var(--main-padding-bottom, 0);
}
@media only screen and (min-width: 576px) {
  .l-main {
    max-width: 375px;
    margin: 0 auto;
    margin-top: 0;
  }
}
.l-main img {
  width: 100%;
}

img {
  display: block;
}

.u-sp {
  display: block !important;
}
@media only screen and (min-width: 576px) {
  .u-sp {
    display: none !important;
  }
}

.u-tab {
  display: none !important;
}
@media only screen and (min-width: 576px) {
  .u-tab {
    display: block !important;
  }
}

.u-pc {
  display: none !important;
}
@media only screen and (min-width: 992px) {
  .u-pc {
    display: block !important;
  }
}

@media only screen and (min-width: 992px) {
  .sp {
    display: none !important;
  }
}

.c-txt-left {
  text-align: left;
}

.c-txt-center {
  text-align: center;
}

.c-txt-right {
  text-align: right;
}

/* ==================================
レイアウト
===================================== */
.l-container {
  max-width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  box-sizing: border-box;
}
@media only screen and (min-width: 576px) {
  .l-container {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media only screen and (min-width: 992px) {
  .l-container {
    max-width: 1000px;
    margin-right: auto;
    margin-left: auto;
    box-sizing: content-box;
  }
}
@media only screen and (min-width: 992px) {
  .l-container--mid {
    max-width: 1200px;
  }
}
@media only screen and (min-width: 992px) {
  .l-container--wide {
    max-width: 1436px;
  }
}

@media only screen and (min-width: 576px) {
  .l-column {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}
@media only screen and (min-width: 576px) {
  .l-column.rev {
    flex-direction: row-reverse;
  }
}

#Header {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: transform 0.3s ease;
}
#Header.is-hidden {
  transform: translateY(-100%);
}
#Header img {
  display: inline;
}

#Footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
#Footer.is-visible {
  transform: translateY(0);
}
#Footer img {
  display: inline;
}

.c-bg {
  background-color: #f4f8f8;
}

.c-btn {
  width: 100%;
  height: 60px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  letter-spacing: 0.2em;
  text-align: center;
  color: #fff;
  background-color: #6f97a0;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
@media only screen and (min-width: 576px) {
  .c-btn {
    max-width: 375px;
  }
}
.c-btn::after {
  content: "";
  width: 25px;
  height: 7px;
  background: center/contain no-repeat url(../img/icon_arrow_right_white_02.svg);
  position: absolute;
  top: 50%;
  right: 23px;
  transform: translateY(-50%);
}
.c-btn span {
  padding-left: 30px;
  color: #fff;
  position: relative;
}
.c-btn span::after {
  content: "";
  width: 22px;
  height: 22px;
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
  background: center/contain no-repeat url(../img/icon_insta.svg);
}

.c-fw--lt {
  font-weight: 300;
}
.c-fw--rg {
  font-weight: 400;
}
.c-fw--m {
  font-weight: 500;
}
.c-fw--sbd {
  font-weight: 600;
}
.c-fw--b {
  font-weight: 700;
}
.c-fw--bk {
  font-weight: 900;
}

.c-al--l {
  text-align: left;
}
.c-al--c {
  text-align: center;
}
.c-al--r {
  text-align: right;
}

.c-ttl {
  margin-bottom: 25px;
  padding-top: 25px;
  padding-left: 11px;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.2916666667;
  position: relative;
  z-index: 2;
}
.c-ttl::before {
  content: attr(data-title-en);
  display: inline-block;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: normal;
  line-height: 2.5833333333;
  position: absolute;
  top: 0;
  left: 0;
}
.c-ttl::after {
  content: "";
  width: 132px;
  height: 14px;
  background-color: #d9dede;
  position: absolute;
  top: 14px;
  left: -20px;
  z-index: -1;
}
.c-ttl span {
  position: relative;
  z-index: 2;
}
.c-ttl span::after {
  content: "";
  width: calc(100% + 20px);
  height: 17px;
  background-color: #d9dede;
  position: absolute;
  top: 3px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.c-ttl--feature::after {
  width: 173px;
  background-color: #c5d2d3;
}
.c-ttl--feature span::after {
  background-color: #c5d2d3;
}
.c-ttl--curriculum::after {
  width: 118px;
  background-color: #dcd7ab;
}
.c-ttl--curriculum span::after {
  background-color: #dcd7ab;
}
.c-ttl--career::after {
  width: 124px;
  background-color: #e8cdd1;
}
.c-ttl--career span::after {
  background-color: #e8cdd1;
}
.c-ttl--staff::after {
  width: 123px;
  background-color: #bdc9d9;
}
.c-ttl--staff span::after {
  background-color: #bdc9d9;
}
.c-ttl--gallery::after {
  width: 90px;
  background-color: #dce8bf;
}
.c-ttl--gallery span::after {
  background-color: #dce8bf;
}
.c-ttl--message::after {
  width: 151px;
  background-color: #e6c5af;
}
.c-ttl--message span::after {
  background-color: #e6c5af;
}
.c-ttl--process::after {
  width: 171px;
  background-color: #e0d7e7;
}
.c-ttl--process span::after {
  background-color: #e0d7e7;
}
.c-ttl--requirements::after {
  width: 132px;
}
.c-ttl--faq::after {
  width: 61px;
}
.c-ttl--company::after {
  width: 149px;
}

.l-bg {
  position: fixed;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  height: 100dvh;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  overflow: hidden;
}
.l-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-concept {
  padding: 50px 0 60px;
  background-color: #f4f4f4;
  position: relative;
}
.p-concept .p-concept__en {
  font-family: "Alumni Sans", sans-serif;
  font-size: 40px;
  line-height: 0.7;
  color: #c5d2d3;
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
}
.p-concept .p-concept__en--02 {
  top: initial;
  right: 0;
  bottom: 0;
  left: initial;
}
.p-concept .p-concept__ttl {
  margin-bottom: 45px;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1.5;
  text-align: center;
  color: #6f97a0;
  position: relative;
}
.p-concept .p-concept__ttl::before, .p-concept .p-concept__ttl::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: -23px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
}
.p-concept .p-concept__ttl::after {
  height: 1px;
  bottom: -27px;
}
.p-concept .p-concept__txt {
  font-size: 16px;
  letter-spacing: 0.2em;
  line-height: 2;
  text-align: center;
}

.p-movie {
  background-color: #fff;
}
.p-movie .l-container {
  padding-right: 15px;
  padding-left: 15px;
}
.p-movie .p-movie__video {
  width: 100%;
  height: auto;
  display: block;
}

.p-anchor {
  padding-top: 55px;
  background-color: #fff;
}
.p-anchor__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.p-anchor__item:first-child .p-anchor__link {
  background-color: #6f97a0;
}
.p-anchor__link {
  width: 100%;
  height: 40px;
  font-size: 14px;
  line-height: 2.2142857143;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #1a1a1a;
  transition: 0.3s ease-in-out;
}
.p-anchor__link:hover {
  background-color: #6f97a0;
}
.p-anchor__link:link, .p-anchor__link:visited, .p-anchor__link:active {
  color: #fff;
  text-decoration: none;
}

.p-feature {
  padding: 55px 0;
  background-color: #fff;
}
.p-feature .p-feature__list {
  display: grid;
  gap: 45px;
}
.p-feature .p-feature__item:nth-child(even) .p-feature__imgSub {
  left: initial;
  right: -30px;
}
.p-feature .p-feature__item:nth-child(even) .p-feature__num {
  right: initial;
  left: -30px;
}
.p-feature .p-feature__item:nth-child(even) .p-feature__term {
  text-align: right;
}
.p-feature .p-feature__img {
  width: calc(100% - 55px);
  margin: 0 auto 40px;
  position: relative;
}
.p-feature .p-feature__imgSub {
  width: 115px;
  position: absolute;
  bottom: -20px;
  left: -30px;
}
.p-feature .p-feature__num {
  font-family: "Alumni Sans", sans-serif;
  font-size: 120px;
  font-weight: 300;
  line-height: 0.8916666667;
  color: #ccc;
  position: absolute;
  bottom: -35px;
  right: -30px;
}
.p-feature .p-feature__num span {
  color: #8caeb5;
}
.p-feature .p-feature__num--02 span {
  color: #cc8f9e;
}
.p-feature .p-feature__num--03 span {
  color: #6b88b5;
}
.p-feature .p-feature__term {
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.55;
}
.p-feature .p-feature__desc {
  font-size: 14px;
  letter-spacing: normal;
  line-height: 1.8571428571;
}

.p-curriculum {
  padding: 50px 0 60px;
  background-color: #f2f1ed;
}
.p-curriculum .c-ttl {
  margin-bottom: 40px;
}
.p-curriculum .p-curriculum__list {
  display: grid;
  gap: 45px;
}
.p-curriculum .p-curriculum__item {
  padding-bottom: 15px;
  background-color: #fff;
  border-radius: 10px;
  position: relative;
  z-index: 2;
}
.p-curriculum .p-curriculum__item:not(:last-child)::after {
  content: "";
  width: 6px;
  height: 14px;
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  background: center/contain no-repeat url(../img/icon_arrow_bottom.svg);
}
.p-curriculum .p-curriculum__item:last-child {
  background-color: #dcd7ab;
}
.p-curriculum .p-curriculum__ttl {
  margin-bottom: -7px;
  text-align: center;
  transform: translateY(-12px);
}
.p-curriculum .p-curriculum__ttl span {
  width: 160px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1.375;
  display: inline-block;
  background-color: #edebd5;
}
.p-curriculum .p-curriculum__ttl--02 span {
  background-color: #e8e5c8;
}
.p-curriculum .p-curriculum__ttl--03 span {
  background-color: #e3dfbd;
}
.p-curriculum .p-curriculum__ttl--04 span {
  background-color: #dcd7ab;
}
.p-curriculum .p-curriculum__ttl--05 span {
  background-color: #d3ca99;
}
.p-curriculum .p-curriculum__ttl--06 span {
  background-color: #c6ba7b;
}
.p-curriculum .p-curriculum__term {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1.9375;
  text-align: center;
  color: #ae9d43;
}
.p-curriculum .p-curriculum__term.un-term {
  color: #000;
}
.p-curriculum .p-curriculum__desc {
  font-size: 14px;
  letter-spacing: normal;
  line-height: 1.5714285714;
  text-align: center;
}
.p-curriculum .p-curriculum__desc span {
  font-weight: 500;
}
.p-curriculum .p-curriculum__desc + .p-curriculum__desc {
  margin-top: 10px;
}
.p-curriculum .p-curriculum__desc.un-desc {
  font-family: "Alumni Sans", sans-serif;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.1em;
  line-height: 1;
}
.p-curriculum .p-curriculum__en {
  font-family: "Alumni Sans", sans-serif;
  font-style: italic;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  color: #ae9d43;
  writing-mode: vertical-rl;
  position: absolute;
  top: 50%;
  right: -7px;
  transform: translateY(-50%);
}

.p-career {
  padding: 50px 0 60px;
  background-color: #fff;
}
.p-career .p-career__wrap {
  width: calc(100% + 20px);
  padding-right: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.p-career .p-career__wrap::-webkit-scrollbar {
  display: none;
}
.p-career .p-career__img {
  min-width: 504px;
  display: block;
  height: auto;
}

.p-staff {
  padding: 50px 0 60px;
  background-color: #e8e9ea;
}
.p-staff .p-staff__list {
  display: grid;
  gap: 55px;
}
.p-staff .p-staff__item:nth-child(even) .p-staff__img::after {
  right: initial;
  left: -20px;
}
.p-staff .p-staff__item:nth-child(even) .p-staff__name--primary {
  right: initial;
  left: -15px;
}
.p-staff .p-staff__item:nth-child(even) .p-staff__name--secondary {
  right: initial;
  left: 15px;
}
.p-staff .p-staff__img {
  width: calc(100% - 75px);
  margin: 0 auto 35px;
  position: relative;
  z-index: 2;
}
.p-staff .p-staff__img::after {
  content: "";
  width: 77px;
  height: 77px;
  position: absolute;
  right: -20px;
  bottom: -20px;
  background-color: #fff;
  z-index: -1;
}
.p-staff .p-staff__name--primary, .p-staff .p-staff__name--secondary {
  font-family: "Alumni Sans", sans-serif;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.0333333333;
  position: absolute;
  right: -15px;
  bottom: 15px;
}
.p-staff .p-staff__name--primary {
  writing-mode: vertical-rl;
}
.p-staff .p-staff__name--secondary {
  right: 5px;
  bottom: -15px;
}
.p-staff .p-staff__txt {
  margin-bottom: 12px;
  letter-spacing: normal;
  line-height: 1.8571428571;
}
.p-staff .p-staff__info {
  margin-bottom: 10px;
  font-size: 15px;
  letter-spacing: 0.08em;
  line-height: 1.7333333333;
  text-align: center;
}
.p-staff .p-staff__link {
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
  padding: 7px 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7333333333;
  color: #fff;
  background-color: #8193a5;
  text-align: center;
  display: block;
  position: relative;
  transition: 0.3s ease-in-out;
}
.p-staff .p-staff__link:hover {
  opacity: 0.8;
}
.p-staff .p-staff__link::after {
  content: "";
  width: 17px;
  height: 6px;
  background: center/contain no-repeat url(../img/icon_arrow_right_white.svg);
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}
.p-staff .p-staff__link span {
  padding-left: 20px;
  position: relative;
}
.p-staff .p-staff__link span::after {
  content: "";
  width: 19px;
  height: 19px;
  position: absolute;
  top: 50%;
  left: -15px;
  transform: translateY(-50%);
  background: center/contain no-repeat url(../img/icon_insta.svg);
}

.p-gallery {
  padding: 50px 0 55px;
  background-color: #fff;
  overflow: hidden;
}
.p-gallery .p-gallery__wrap {
  position: relative;
}
.p-gallery .slick-slide {
  padding: 0 10px;
  box-sizing: border-box;
}
.p-gallery .slick-slide img {
  width: 100%;
  height: auto;
  display: block;
}
.p-gallery .slick-dots {
  position: static;
  text-align: center;
}
.p-gallery .slick-dots li button::before {
  border-radius: 0%;
  color: transparent;
}
.p-gallery .slick-dots li.slick-active button::before {
  background-color: #dce8bf;
}
.p-gallery .slick-dots li {
  width: 8px;
  height: 8px;
}
.p-gallery .slick-dots li button {
  width: 100%;
  height: 100%;
}
.p-gallery .slick-dots li button::before {
  width: 100%;
  height: 100%;
  background-color: #e6e6e6;
}
.p-gallery .slick-dotted.slick-slider {
  margin-bottom: 10px;
}

.p-message {
  padding: 50px 0 45px;
  background-color: #f2eeeb;
}
.p-message .p-message__list {
  display: grid;
  gap: 45px;
}
.p-message .p-message__item:nth-child(even) .p-message__img::after {
  right: initial;
  left: -20px;
}
.p-message .p-message__item:nth-child(even) .p-message__name--primary {
  right: initial;
  left: -15px;
}
.p-message .p-message__item:nth-child(even) .p-message__name--secondary {
  right: initial;
  left: 15px;
}
.p-message .p-message__img {
  width: calc(100% - 75px);
  margin: 0 auto 35px;
  position: relative;
  z-index: 2;
}
.p-message .p-message__img::after {
  content: "";
  width: 77px;
  height: 77px;
  position: absolute;
  right: -20px;
  bottom: -20px;
  background-color: #fff;
  z-index: -1;
}
.p-message .p-message__name--primary, .p-message .p-message__name--secondary {
  font-family: "Alumni Sans", sans-serif;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.0333333333;
  position: absolute;
  right: -15px;
  bottom: 15px;
}
.p-message .p-message__name--primary {
  writing-mode: vertical-rl;
}
.p-message .p-message__name--secondary {
  right: 5px;
  bottom: -15px;
}
.p-message .p-message__ttl {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.7222222222;
}
.p-message .p-message__txt {
  margin-bottom: 15px;
  letter-spacing: normal;
  line-height: 1.8571428571;
}
.p-message .p-message__name {
  font-size: 15px;
  line-height: 1.7333333333;
}

.p-process {
  padding: 40px 0;
  background-color: #fff;
}
.p-process .p-process__wrap {
  padding: 20px;
  border: 1px solid #666;
}
.p-process .p-process__list {
  display: grid;
  gap: 40px;
}
.p-process .p-process__item {
  padding: 10px;
  background-color: #e0d7e7;
  border-radius: 5px;
  position: relative;
}
.p-process .p-process__item:nth-child(1) {
  background-color: rgba(224, 215, 231, 0.6);
}
.p-process .p-process__item:nth-child(2) {
  background-color: rgba(224, 215, 231, 0.6);
}
.p-process .p-process__item:nth-child(3) {
  background-color: rgba(217, 208, 226, 0.91);
}
.p-process .p-process__item:nth-child(4) {
  background-color: #d9d0e2;
}
.p-process .p-process__item:not(:last-child):not(:last-child)::after {
  content: "";
  width: 6px;
  height: 20px;
  position: absolute;
  bottom: -29px;
  left: 50%;
  transform: translateX(-50%);
  background: center/contain no-repeat url(../img/icon_arrow_bottom_02.svg);
}
.p-process .p-process__lebel {
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.p-process .p-process__num {
  width: 60px;
  height: 19px;
  font-family: "Alumni Sans", sans-serif;
  font-size: 14px;
  line-height: 1.1428571429;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: 1px solid #1a1a1a;
  border-radius: 10px;
}
.p-process .p-process__ttl {
  font-size: 16px;
  line-height: 1.25;
}
.p-process .p-process__txt {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 1.6666666667;
}

.p-requirements {
  padding: 50px 0 40px;
  background-color: #f9f9f9;
}
.p-requirements .c-ttl {
  margin-bottom: 20px;
}
.p-requirements .p-requirements__table {
  width: 100%;
}
.p-requirements .p-requirements__table tr:last-child .p-requirements__heading,
.p-requirements .p-requirements__table tr:last-child .p-requirements__data {
  border-bottom: none;
}
.p-requirements .p-requirements__heading, .p-requirements .p-requirements__data {
  padding: 10px 0 15px 15px;
  text-align: left;
  border-bottom: 1px solid #ccc;
}
.p-requirements .p-requirements__heading {
  min-width: 85px;
  white-space: nowrap;
}
.p-requirements .p-requirements__data {
  padding-right: 5px;
  letter-spacing: normal;
}
.p-requirements .p-requirements__txt + .p-requirements__txt {
  margin-top: 15px;
}
.p-requirements .p-requirements__note {
  font-size: 12px;
  letter-spacing: normal;
  line-height: 1.3333333333;
  display: inline-block;
}
.p-requirements .p-requirements__link {
  width: calc(100% - 20px);
  height: 40px;
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  background-color: #fff;
  border: 1px solid #808080;
  position: relative;
}
.p-requirements .p-requirements__link::after {
  content: "";
  width: 13px;
  height: 5px;
  background: center/contain no-repeat url(../img/icon_arrow_right.svg);
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}

.p-faq {
  padding: 50px 0 60px;
  background-color: #fff;
}
.p-faq .p-faq__term {
  border: 1px solid #666;
}
.p-faq .p-faq__btn {
  width: 100%;
  padding: 8px 25px 8px 30px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.375;
  text-align: left;
  display: block;
  color: #1a1a1a;
  background-color: transparent;
  border: none;
  position: relative;
  cursor: pointer;
}
.p-faq .p-faq__btn::before {
  content: "Q";
  font-family: "Alumni Sans", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2916666667;
  color: #6f97a0;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}
.p-faq .p-faq__btn::after {
  content: "";
  vertical-align: middle;
  color: #1a1a1a;
  line-height: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 0.45em 0.3em;
  border-top-color: currentColor;
  border-bottom: 0;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  transition: 0.3s ease-in-out;
}
.p-faq .p-faq__btn.is-show::after {
  transform: translateY(-50%) rotate(180deg);
}
.p-faq .p-faq__desc {
  padding: 10px 0 5px 35px;
  font-size: 14px;
  letter-spacing: normal;
  position: relative;
  display: none;
}
.p-faq .p-faq__desc::before {
  content: "A";
  font-family: "Alumni Sans", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2916666667;
  color: #9e6468;
  position: absolute;
  top: 5px;
  left: 10px;
}
.p-faq .p-faq__desc + .p-faq__term {
  margin-top: 10px;
}

.p-salonlist {
  padding: 50px 0 70px;
  background-color: #f9f9f9;
}
.p-salonlist .p-salonlist__list {
  display: grid;
  gap: 25px;
}
.p-salonlist .p-salonlist__img {
  margin-bottom: 5px;
}
.p-salonlist .p-salonlist__term {
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1.7222222222;
}
.p-salonlist .p-salonlist__desc {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: normal;
  line-height: 1.4285714286;
}
.p-salonlist .p-salonlist__label {
  margin: 20px 0 10px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.55;
}
.p-salonlist .p-salonlist__label span {
  position: relative;
}
.p-salonlist .p-salonlist__label span::after {
  content: attr(data-title-en);
  margin-left: 10px;
  display: inline-block;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: normal;
  line-height: 2.5833333333;
  white-space: nowrap;
}

.p-company {
  padding: 30px 0;
  background-color: #fff;
}
.p-company .p-company__wrap {
  padding: 5px 25px;
  border: 1px solid #666;
}
.p-company .p-company__table {
  width: 100%;
}
.p-company .p-company__table tr:last-child .p-company__heading,
.p-company .p-company__table tr:last-child .p-company__data {
  border-bottom: none;
}
.p-company .p-company__heading, .p-company .p-company__data {
  font-size: 14px;
  font-weight: 300;
  line-height: 2.7857142857;
  text-align: left;
  border-bottom: 1px solid #ccc;
}
.p-company .p-company__heading {
  min-width: 70px;
}/*# sourceMappingURL=style.css.map */