@charset "UTF-8";
/*------------------------------------------------------------------------------
  reset PC
------------------------------------------------------------------------------*/
html {
  font-family: fot-tsukuardgothic-std;
  color: #0C3A72;
  background: #FFFFFF;
  font-weight: 400;
  font-size: 62.5%;
  word-break: break-all;
  visibility: hidden;
  font-size: 1.3333333333vw;
}

html.wf-active {
  visibility: visible;
}

body {
  background: #FFFFFF;
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.5384615385;
  letter-spacing: 0.04em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  border: 0;
  margin: 0;
  vertical-align: top;
  max-width: 100%;
}

p {
  margin: 0;
  padding: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

a {
  color: #0C3A72;
  text-decoration: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

input,
select,
textarea,
button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
}

::-webkit-input-placeholder {
  color: #ccc;
}

:-ms-input-placeholder {
  color: #ccc;
}

::-ms-input-placeholder {
  color: #ccc;
}

::-moz-placeholder {
  color: #ccc;
}

::placeholder {
  color: #ccc;
}

button {
  border: none;
  cursor: pointer;
}

label {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 2.4rem;
  font-weight: 500;
  margin: 0;
  padding: 0;
  -webkit-font-feature-settings: initial;
          font-feature-settings: initial;
}

main {
  display: block;
  overflow: hidden;
}

.inner-block {
  position: relative;
  max-width: 1040px;
  padding: 0 30px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

#wrapper {
  position: relative;
}

dl, dt, dd {
  padding: 0;
  margin: 0;
}
.c-svg {
  display: inline-block;
  fill: currentColor;
  vertical-align: top;
}

/*------------------------------------------------------------------------------
  reset SP
------------------------------------------------------------------------------*/
fieldset,
legend,
button {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=date],
input[type=datetime-local],
input[type=month],
input[type=time] {
  margin: 0;
  padding: 4px 8px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 10px;
}

input[type=text],
input[type=password],
input[type=email],
input[type=tel],
input[type=url],
input[type=search],
input[type=number],
input[type=datetime],
input[type=week],
textarea,
select {
  margin-right: 0;
  margin-left: 0;
  padding: 4px 8px;
  border: 1px solid #0C3A72;
  border-radius: 0;
  outline: none;
  background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  width: 100%;
  height: 100px;
  overflow: auto;
}

select {
  padding-right: 30px;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAALJJREFUeNrslssNgCAQRCmB0ijBEuyEEijBEijBEizBEnAPy0UBWVj8JDvJJB5w3gsXVUoikXwsBrpAPdRCNcOmxi2P2yZ3cIKGU9dOCY0b590pdXhPHOyRyMEDsi4JhVIlSvBYTRGgSNTAQ+pFyyBRC7e5AdchUQt3d1fYIsEGb5Fgh1MktlFwisQwOIeE4/pGuDfhLRLscIrEMHiNxHB4SeIxeMyMPxkenyUSyT9zCDAAj5btZ4c3zaUAAAAASUVORK5CYII=");
  background-repeat: no-repeat;
  background-size: 12px 12px;
  background-position: right 8px center;
}

.select {
  display: inline-block;
  position: relative;
  overflow: hidden;
  background: #0C3A72;
}

.select select {
  width: 100%;
  padding-right: 24px;
  border: 1px solid #0C3A72;
  background: none;
  cursor: pointer;
}

.select::before {
  position: absolute;
  top: 13px;
  right: 8px;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 1px solid #0C3A72;
  pointer-events: none;
}

/* radio & checkbox */
input[type=radio],
input[type=checkbox] {
  display: none;
}

input[type=radio] + span,
input[type=checkbox] + span {
  display: inline-block;
  position: relative;
  margin-left: 8px;
  padding-left: 20px;
  color: #555;
  font-size: 1.4rem;
  text-align: center;
  line-height: 1;
  cursor: pointer;
}

input[type=radio] + span::before,
input[type=checkbox] + span::before {
  position: absolute;
  top: 50%;
  left: 0px;
  width: 16px;
  height: 16px;
  content: "";
  margin-top: -8px;
  border: 1px solid #0C3A72;
  background: #0C3A72;
}

/* fieldset */
fieldset {
  padding: 8px 16px;
  border: 1px solid #0C3A72;
}

legend {
  padding: 0 8px;
}

/* button */
input[type=submit],
input[type=reset],
input[type=button],
button {
  display: inline-block;
  margin: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  cursor: pointer;
  padding: 1rem 3rem;
  font-size: 1.3rem;
}

/* ブラウザ対策
---------------------------------------------------------------------------- */
/* Firefox */
/* IE */
select::-ms-expand {
  display: none;
}

/* webkit */
/* iOS */
input[type=submit]::-webkit-search-decoration,
input[type=reset]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration,
input[type=search]::-webkit-search-decoration {
  display: none;
}

::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

input[type=search]::-webkit-search-decoration {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  -moz-appearance: none;
  -webkit-appearance: textfield;
  -webkit-box-sizing: border-box;
  -webkit-appearance: none;
          appearance: none;
  background: none;
  outline: none;
  font-size: 10px;
}

/* 挙動
---------------------------------------------------------------------------- */
/* hover */
input:hover,
textarea:hover,
select:hover {
  border-color: #666;
}

input[type=radio] + span:hover,
input[type=checkbox] + span:hover {
  color: #000;
}

input[type=radio] + span:hover::before,
input[type=checkbox] + span:hover::before {
  border-color: #000;
}

input[type=radio] + span:hover::after,
input[type=checkbox] + span:hover::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 4px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  background: #0C3A72;
}

/* checked */
input[type=radio]:checked + span,
input[type=checkbox]:checked + span {
  color: #0C3A72;
}

input[type=radio]:checked + span::before,
input[type=checkbox]:checked + span::before {
  border-color: #0C3A72;
}

input[type=radio]:checked + span::after,
input[type=checkbox]:checked + span::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 4px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  background: #0C3A72;
}

/* radio */
input[type=radio] + span::before,
input[type=radio] + span:hover::after,
input[type=radio]:checked + span::after {
  border-radius: 50%;
}

/* button */
/* focus */
input:focus,
textarea:focus {
  border-color: #0C3A72;
}

input[type=submit]:focus,
input[type=reset]:focus,
input[type=button]:focus,
input[type=search]:focus {
  outline-offset: -2px;
}

/* disabled */
input:disabled,
input:disabled:hover,
textarea:disabled,
textarea:disabled:hover {
  border-color: #0C3A72;
  background: #eee;
  cursor: not-allowed;
}

input[type=radio]:disabled + span,
input[type=checkbox]:disabled + span {
  color: #0C3A72;
  cursor: not-allowed;
}

input[type=radio]:disabled + span::before,
input[type=checkbox]:disabled + span::before {
  border-color: #0C3A72;
  cursor: not-allowed;
}

/* バリデーション */
/* placeholder */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.c-btn {
  display: block;
}

.c-btn a {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  border-radius: 1.5rem;
  line-height: 1;
  display: inline-block;
  font-size: 2.4rem;
  font-weight: 700;
  padding: 2.6rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-transform: uppercase;
  border: 2px solid #0C3A72;
  background: #FFFFFF;
}

.c-btn a:hover {
  background: #0C3A72;
  color: #FFFFFF;
  opacity: 1;
}

.c-category {
  background: #8ACA4B;
  color: #FFFFFF;
  padding: 0.5rem 2rem;
  display: inline-block;
  font-size: 2rem;
}

.c-contact-button__submit:hover,
.c-contact-button__submit:focus {
  outline: none;
}

.c-contact-button__submit::-moz-foucus-inner {
  border: none;
  padding: 0;
}

.c-contact-check__item + span {
  cursor: pointer;
  display: inline-block;
  margin: 0 0.2em 0;
  padding: 0 0 0 1.2em;
  position: relative;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  line-height: 1.7142857143;
}

.c-contact-check__item + span::before {
  -webkit-transform: translateY(-50%);
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 2px;
  content: "";
  display: block;
  height: 1em;
  left: 0;
  position: absolute;
  top: 0;
  width: 1em;
}

.c-contact-check__item + span::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  border-bottom: 3px solid #000;
  border-left: 3px solid #000;
  content: "";
  display: block;
  height: 0.6em;
  left: -8px;
  margin-top: -0.2em;
  opacity: 0;
  position: absolute;
  top: 14px;
  transform: translateY(-50%) rotate(-45deg);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 1em;
}

.c-contact-check__item:checked + span::after {
  opacity: 1;
}

.c-contact-text {
  font-size: 3rem;
}

.c-contact-text__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-bottom: 2.7rem;
}

.c-contact-text__required {
  margin-left: 2.4rem;
  font-size: 2rem;
  background: #38A1DB;
  color: #FFFFFF;
  border-radius: 1rem;
  padding: 0.6rem 2rem;
}

.c-contact-text:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

.c-contact-textarea {
  font-size: 3rem;
}

.c-contact-textarea__text {
  border: none;
  color: #0C3A72;
  background: #FFFFFF;
  border-radius: 2rem;
  padding: 3.5rem 4rem;
  height: 40rem;
}

.c-contact-textarea__text:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

.c-contents-img-text {
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 1.53;
  font-size: 3rem;
  position: relative;
  margin: 0 auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
      -ms-flex-pack: start;
          justify-content: start;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background: #FFFFFF;
  border-radius: 1.6rem;
  padding: 1.7rem 3rem 1.7rem 4.4rem;
  width: 100%;
  max-width: 65rem;
}

.c-contents-img-text::before {
  content: "";
  display: block;
  width: 4rem;
  height: 4rem;
  margin-right: 2.5rem;
  background-image: url(../img/common/check.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.c-contents-img-text + .c-contents-img-text {
  margin-top: 2rem;
}

.c-contents-no {
  font-family: "Inter", sans-serif;
  color: #38A1DB;
  font-size: 12rem;
  letter-spacing: 0;
  line-height: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.c-contents-no::before {
  display: block;
  margin-right: 6rem;
  content: counter(number, decimal-leading-zero);
}

.c-contents-no::after {
  content: "";
  display: block;
  width: 9.9rem;
  height: 11.7rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.c-contents-subtitle {
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 1.389;
}

.c-contents-text {
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 2;
  font-size: 3rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.c-contents-text.fz24-14 {
  font-size: 2.4rem;
}

.c-contents-title {
  font-family: fot-tsukuardgothic-std;
  font-size: 4.6rem;
  font-weight: 700;
  letter-spacing: 0.005em;
  line-height: 1;
  -webkit-font-feature-settings: initial;
          font-feature-settings: initial;
}

.fz20-14 {
  font-size: 2rem;
}

.fz24-16 {
  font-size: 2.4rem;
}

.fz24-18 {
  font-size: 2.4rem;
}

.fz26-16 {
  font-size: 2.6rem;
}

.fz30-16 {
  font-size: 3rem;
}

.fz30-18 {
  font-size: 3rem;
}

.fz36-20 {
  font-size: 3.6rem;
}

.fz40-24 {
  font-size: 4rem;
}

.fz36-30 {
  font-size: 3.6rem;
}

.c-hamburger {
  z-index: 1000;
  padding-top: 0.5rem;
}

.c-hamburger span {
  position: relative;
  display: block;
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
  background: #FFFFFF;
  height: 0.28rem;
  width: 4.1rem;
}

.c-hamburger span:nth-child(1) {
  top: 0;
}

.c-hamburger span:nth-child(2) {
  margin-top: 0.6rem;
  margin-bottom: 0.6rem;
}

.c-hamburger span:nth-child(3) {
  top: 0;
}

/*OPEN時の動き*/
.c-hamburger.open span {
  background: #38A1DB;
}

.c-hamburger.open span:nth-child(1) {
  top: 0.7rem;
  -webkit-transform: rotate(315deg);
          transform: rotate(315deg);
}

.c-hamburger.open span:nth-child(2) {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
}

.c-hamburger.open span:nth-child(3) {
  top: -1.1rem;
  -webkit-transform: rotate(-315deg);
          transform: rotate(-315deg);
}

.c-line {
  position: fixed;
  bottom: 0;
  right: 0;
  padding: 0;
}

.c-line__link {
  width: 100vw;
  height: 10rem;
  display: block;
  background-image: url(../img/common/line_reserve_sp.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.c-point {
  background-color: #F0F3F7;
  padding: 6rem 6rem 10rem;
  max-width: 68rem;
  width: 100%;
  margin: 0 auto;
  counter-increment: number;
  border-radius: 3rem;
}

.c-point__title {
  margin-top: 3rem;
  line-height: 1.4;
}

.c-point__titlebox {
  margin-top: 4rem;
}

.p-sub-point__item:nth-of-type(1) .c-point__textwrapper::before {
  background-image: url(../img/common/point_illustration1.svg);
}

.p-sub-point__item:nth-of-type(2) .c-point__textwrapper::before {
  background-image: url(../img/common/point_illustration2.svg);
}

.p-sub-point__item:nth-of-type(3) .c-point__textwrapper::before {
  background-image: url(../img/common/point_illustration3.svg);
}

.p-sub-point__item:nth-of-type(4) .c-point__textwrapper::before {
  background-image: url(../img/common/point_illustration4.svg);
}

.p-sub-point__item:nth-of-type(5) .c-point__textwrapper::before {
  background-image: url(../img/common/point_illustration5.svg);
  width: 11.1rem;
}

.p-sub-point__item:nth-of-type(5) .c-point__textbox {
  margin-left: 1.5rem;
}

.c-point__text {
  margin-top: 2rem;
  letter-spacing: 0;
  -webkit-font-feature-settings: initial;
          font-feature-settings: initial;
}

.c-point__img {
  max-width: 55rem;
  width: 100%;
  position: relative;
  margin-top: 4.5rem;
  display: block;
  position: relative;
}
.c-point__img::after {
  content: "";
  display: block;
  padding-top: 70.59%;
}
.c-point__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-point:nth-of-type(1) .c-contents-no::after {
  background-image: url(../img/common/point_illustration1.svg);
}

.c-point:nth-of-type(2) .c-contents-no::after {
  background-image: url(../img/common/point_illustration2.svg);
}

.c-point:nth-of-type(3) .c-contents-no::after {
  background-image: url(../img/common/point_illustration3.svg);
}

.c-point:nth-of-type(4) .c-contents-no::after {
  background-image: url(../img/common/point_illustration4.svg);
}

.c-point:nth-of-type(5) .c-contents-no::after {
  background-image: url(../img/common/point_illustration5.svg);
}

.c-price {
  font-size: 6.4rem;
  font-weight: 700;
  width: 100%;
  background-color: #8CC4E2;
  color: #FFFFFF;
  border-radius: 4.8rem;
  text-align: center;
}

.c-price span {
  font-size: 3.75rem;
}

.c-scroll {
  position: absolute;
  left: 3rem;
  bottom: 40rem;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  display: inline-block;
}

.c-scroll span {
  position: relative;
  color: #0C3A72;
}

.c-scroll span::after {
  position: absolute;
  content: "";
  width: 12rem;
  height: 1px;
  display: inline-block;
  background: -webkit-gradient(linear, left top, right top, from(#38A1DB), to(#0C3A72));
  background: linear-gradient(to right, #38A1DB, #0C3A72);
  border: 1px solid #0C3A72;
  -o-border-image: linear-gradient(to right, #38A1DB, #0C3A72);
     border-image: -webkit-gradient(linear, left top, right top, from(#38A1DB), to(#0C3A72));
     border-image: linear-gradient(to right, #38A1DB, #0C3A72);
  border-image-slice: 1;
  bottom: 1rem;
  margin-left: 1rem;
  -webkit-animation: 1s arrow-animation infinite;
          animation: 1s arrow-animation infinite;
}

@-webkit-keyframes arrow-animation {
  0% {
    width: 1rem;
  }
  100% {
    width: 12rem;
  }
}

@keyframes arrow-animation {
  0% {
    width: 1rem;
  }
  100% {
    width: 12rem;
  }
}
.c-section-title {
  font-family: fot-tsukuardgothic-std;
  font-size: 5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.3333333333;
}

.c-timetable {
  width: inherit;
  max-width: inherit;
  border: none;
  margin: 0 auto;
}

.c-timetable th {
  border-bottom: 1px solid #0C3A72;
  text-align: center;
  font-weight: 400;
  width: 6rem;
}

.c-timetable th:first-of-type {
  text-align: left;
  width: 19.2rem;
}

.c-timetable th:last-of-type {
  padding-right: 1.8rem;
  width: 7.4rem;
}

.c-timetable__title {
  padding-left: 2.6rem;
  padding-bottom: 0.6rem;
}

.c-timetable td {
  border-bottom: 1px solid #0C3A72;
  text-align: center;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.c-timetable td:first-of-type {
  text-align: left;
  padding-left: 2.6rem;
}

.c-timetable td:last-of-type {
  padding-right: 1.8rem;
  text-align: left;
}

.l-about {
  margin-top: 9.5rem;
}

.l-access {
  margin-top: 6.6rem;
}

.l-inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}

.l-instagram {
  margin-top: 10.5rem;
}

.l-menu {
  margin-top: 11.5rem;
}

.l-pager {
  margin-top: 6rem;
}

.l-strength {
  margin-top: 30rem;
}

.l-voice {
  margin-top: 15.5rem;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: none !important;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.p-404__title.p-sub-mv__title {
  color: #0C3A72;
}

.p-about {
  background: #F0F3F7;
  position: relative;
  padding-bottom: 20rem;
}

.p-about__inner {
  max-width: 70rem;
}

.p-about__wrapper {
  margin-top: 6rem;
}

.p-about__titlebox {
  width: 100%;
  max-width: 56.2rem;
  text-align: center;
  margin: 0 auto;
  padding-top: 27.3rem;
}

.p-about__title {
  margin: 0 auto;
  position: relative;
  display: block;
}

.p-about__title::before {
  content: "";
  background-image: url(../img/common/about_illustration1.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  width: 100%;
  max-width: 22.1rem;
  height: 17.7rem;
  top: -16.5rem;
  right: -4rem;
}

.p-about__text-wapper {
  max-width: 56rem;
  margin: 0 auto;
  padding-left: 0.5rem;
}

.p-about__contents-textbox {
  margin-top: 4.5rem;
}

.p-about__contents-title {
  margin-top: 5.8rem;
}

.p-about__contents-text {
  text-align: left;
}

.p-about__director {
  margin: 5rem 2rem 0 0;
  text-align: right;
}

.p-about__director-name {
  line-height: 1.3;
}

.p-about__img {
  max-width: 65rem;
  width: 100%;
  display: block;
  position: relative;
}
.p-about__img::after {
  content: "";
  display: block;
  padding-top: 95%;
}
.p-about__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-about__img img {
  border-radius: 3rem;
}

.p-about__treatment-img {
  max-width: 38rem;
  width: 100%;
  margin-top: 5.5rem;
  display: block;
  position: relative;
}
.p-about__treatment-img::after {
  content: "";
  display: block;
  padding-top: 72%;
}
.p-about__treatment-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-about__btn {
  margin: 7.4rem auto 0;
  width: 55rem;
}

.p-access {
  position: relative;
}

.p-access__inner {
  max-width: 70rem;
}

.p-access__title {
  width: 25.8rem;
  margin: 0;
  display: block;
  position: relative;
}
.p-access__title::after {
  content: "";
  display: block;
  padding-top: 62.5%;
}
.p-access__title img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-access__title::before {
  position: absolute;
  content: "";
  top: -3rem;
  right: -37rem;
  width: 18.6rem;
  height: 17.6rem;
  background-image: url(../img/common/access_illustration1.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.p-access__address-box {
  margin-top: 2rem;
  line-height: 1.7;
}

.p-access__exterior-wrapper {
  margin-top: 5.5rem;
}

.p-access__exterior-img-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-access__exterior {
  width: 31.8rem;
  display: block;
  position: relative;
}
.p-access__exterior::after {
  content: "";
  display: block;
  padding-top: 67.92%;
}
.p-access__exterior img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-access__exterior + .p-access__exterior {
  margin-left: 1.3rem;
}

.p-access__exterior-text-wrapper {
  margin-top: 2.5rem;
  line-height: 1.6;
  letter-spacing: 0;
}

.p-access__linebox {
  margin-top: 5.4rem;
  width: 100%;
}

.p-access__line {
  display: block;
  padding: 5.7rem 1rem 4.6rem;
  text-align: left;
  background-color: #8ACA4B;
  border-radius: 2rem;
  width: 100%;
  color: #FFFFFF;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.p-access__line-textbox {
  position: relative;
  width: 31rem;
  margin-left: 2.4rem;
}

.p-access__line::before {
  content: "";
  display: block;
  width: 8.1rem;
  height: 8.7rem;
  background-image: url(../img/common/access_illustration2.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.p-access__line-title {
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.3;
  color: #FFFFFF;
}

.p-access__line-text {
  margin-top: 0.5rem;
}

.p-access__map {
  margin-top: 8rem;
  position: relative;
  height: 0;
  overflow: hidden;
  padding-bottom: 66.667%;
}

.p-access__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-access__consultation {
  margin-top: 5.8rem;
}

.p-access__inquiry {
  margin-top: 4.5rem;
}

.p-access__inquiry-title {
  text-align: center;
  border-radius: 2rem 2rem 0 0;
  font-size: 3.1rem;
  font-weight: 700;
  padding: 1.4rem;
  background: #D9E0E9;
}

.p-access__inquiry-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background: #F0F3F7;
  border-radius: 0 0 2rem 2rem;
  line-height: 1.1;
}

.p-access__form {
  width: 50%;
  padding: 3.3rem 0 2.3rem;
  margin: 0 auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  font-size: 2.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  border-right: 1px solid #D9E0E9;
}

.p-access__form::before {
  content: "";
  display: block;
  width: 5.5rem;
  height: 5.6rem;
  margin-right: 2.7rem;
  background-image: url(../img/common/access_illustration3.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.p-access__tel {
  width: 50%;
  padding: 3.3rem 0 2.3rem;
  margin: 0 auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  font-size: 2.6rem;
}

.p-access__tel::before {
  content: "";
  display: block;
  width: 5.5rem;
  height: 5.6rem;
  margin-right: 1.5rem;
  background-image: url(../img/common/access_illustration4.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.p-card {
  display: block;
  width: 100%;
  counter-increment: number;
  max-width: 55rem;
  width: 100%;
  margin: 0 auto;
}

.p-card + .p-card {
  margin-top: 3rem;
}

.p-card::before {
  position: relative;
  z-index: 1;
  line-height: 1;
  content: counter(number, decimal-leading-zero);
  font-size: 12.1rem;
  font-family: "Inter", sans-serif;
  color: #38A1DB;
  padding-left: 1.6rem;
}

.p-card__img {
  display: block;
  position: relative;
  width: 100%;
  margin-top: -5rem;
}

.p-card__img::after {
  content: "";
  display: block;
  padding-top: 65.625%;
}

.p-card__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-card__body {
  margin-top: 4.6rem;
  text-align: center;
}

.p-card__title {
  margin-top: 2rem;
}

.p-card__text {
  margin-top: 3rem;
  text-align: left;
}

.p-card__btn {
  margin-top: 4.56rem;
}

.p-consultation {
  width: 100%;
  text-align: center;
}
.p-consultation__table {
  display: inline-block;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 70rem;
}

.p-consultation__textbox {
  margin-top: 1rem;
  text-align: left;
  padding-left: 2.6rem;
}

.p-consultation__title {
  text-align: center;
}

.p-contact__mv {
  background-image: url(../img/common/contact_mv_sp.jpg);
}

.p-contact__inner {
  width: 100%;
  max-width: 60rem;
  margin: 0 auto;
}

.p-contact__wrapper {
  margin-top: 13rem;
}

.p-contact__leadtitle {
  font-size: 5rem;
  font-weight: 700;
  text-align: center;
}

.p-contact__leadtext {
  margin: 5rem auto 0;
  font-size: 3rem;
  letter-spacing: 0.04em;
  line-height: 2;
  width: 100%;
}

.p-contact__form {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 17rem;
  background: #F0F3F7;
}

.p-contact__form-inner {
  max-width: 55rem;
  width: 100%;
  margin: 0 auto;
  padding-top: 20rem;
  padding-bottom: 20rem;
  margin-bottom: 20rem;
}

.p-contact__content + .p-contact__content {
  margin-top: 5rem;
}

.p-contact__item-wrapper {
  width: 100%;
}

.p-contact__btn input[type=submit] {
  padding: 2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  background: #0C3A72;
  color: #FFFFFF;
  width: 100%;
  border-radius: 1.5rem;
  margin: 5rem auto 0;
  display: block;
}

.p-contact__recaptha {
  margin-top: 5rem;
  text-align: center;
}

.grecaptcha-badge {
  visibility: hidden;
}

.p-drawer-menu__menu {
  margin-top: 1.5rem;
}

.p-drawer-menu__title {
  font-size: 4rem;
  font-weight: 700;
  color: #FFFFFF;
  padding: 2.5rem 0;
  letter-spacing: 0.1em;
  display: block;
}

.p-drawer-menu__title:has(+ .p-drawer-menu__subitem) {
  padding-bottom: 1rem;
}

.p-drawer-menu__subtitle {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: #FFFFFF;
  padding: 0.8rem 0 0.8rem 7rem;
  letter-spacing: 0.1em;
}

.p-drawer-menu__line {
  margin-top: 2.4rem;
}

.p-footer {
  color: #FFFFFF;
  background: #0C3A72;
  padding: 2.5rem 2.5rem 12.5rem 2.5rem;
  font-size: 2rem;
}

.p-fotter__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-footer__logo {
  width: 18.4rem;
  margin: 0 auto;
}

.p-footer__btn {
  margin-top: 2.7rem;
  width: 28.6rem;
  margin-left: auto;
  margin-right: auto;
}

.p-footer__copyright {
  margin-top: 1.6rem;
  text-align: center;
}

.p-footer__copyright span {
  font-size: 2rem;
}

.p-gnav__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
  -webkit-justify-content: right;
      -ms-flex-pack: right;
          justify-content: right;
}

.p-gnav__item {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
}

.p-gnav__item a {
  position: relative;
  padding: 3rem 1.5rem 4.8rem;
  width: 100%;
  display: inline-block;
}

.p-gnav__menu {
  margin-right: 10rem;
  margin-left: auto;
}

.p-header {
  z-index: 1000;
  width: 100%;
  position: absolute;
}

.p-header.js-sub-header .p-header__nav {
  display: none;
}

.p-header__inner {
  padding: 0 20px 0 0;
  height: inherit;
  width: 100%;
}

.p-header__inner-sub {
  padding: 0 20px 0 0;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.p-header__title {
  position: relative;
  width: 25rem;
}

.p-header__title-sub {
  position: relative;
  width: 26rem;
}

.p-header__logo {
  display: none;
}

.p-header__logo.m_fixed {
  display: block;
  position: fixed;
  width: 25rem;
  top: 0;
  left: 0;
}

.p-header__menu-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.p-header__menu {
  width: 100%;
  max-width: 60rem;
  position: relative;
  margin-bottom: 5rem;
}

.p-header__menu::before {
  content: "";
  display: block;
  width: 16.1rem;
  height: 15.4rem;
  background-image: url(../img/common/drawer_illustration1.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-top: 5rem;
}

.p-header__overlay {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 900;
  display: none;
  width: 100vw;
  height: 100vh;
  background: #38A1DB;
  overflow: scroll;
}

.p-header__menubox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 1000;
  border-radius: 50%;
  background: #38A1DB;
  color: #FFFFFF;
  width: 12rem;
  height: 12rem;
  position: absolute;
  top: 2rem;
  right: 2.5rem;
}

.p-header__menubox:hover {
  opacity: 0.7;
  cursor: pointer;
}

.p-header__menubox.open {
  background: #FFFFFF;
  position: fixed;
}

.p-header__menubox.open .p-header__menutext {
  color: #38A1DB;
}

.p-header__menubox.m_fixed {
  position: fixed;
}

.p-header__menutext {
  font-size: 1.9rem;
}

.sbi_header_link {
  margin: 0 auto;
}

.sb_instagram_header, .sb_instagram_header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#sb_instagram .sb_instagram_header a, .sb_instagram_header a {
  margin: 0 auto;
  display: block;
  text-align: center;
}

#sb_instagram .sb_instagram_header.sbi_medium .sbi_header_text.sbi_no_bio h3, .sb_instagram_header.sbi_medium .sbi_header_text.sbi_no_bio h3 {
  padding-top: 0.5rem !important;
  text-align: left;
  font-size: 2.8rem;
  padding-left: 4.8rem !important;
}

#sb_instagram .sb_instagram_header.sbi_medium .sbi_header_text h3,
#sb_instagram .sb_instagram_header.sbi_medium .sbi_header_text .sbi_bio {
  margin-left: 14rem !important;
}

#sb_instagram .sbi_photo {
  position: relative;
}

#sb_instagram .sbi_photo::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #51B1E7;
  mix-blend-mode: soft-light;
}

#sb_instagram .sb_instagram_header.sbi_medium .sbi_header_img, #sb_instagram .sb_instagram_header.sbi_medium .sbi_header_img img, .sb_instagram_header.sbi_medium .sbi_header_img, .sb_instagram_header.sbi_medium .sbi_header_img img {
  width: 7.8rem;
  height: 7.8rem;
}

#sb_instagram .sb_instagram_header.sbi_medium .sbi_header_img, #sb_instagram .sb_instagram_header.sbi_medium .sbi_header_img img, .sb_instagram_header.sbi_medium .sbi_header_img, .sb_instagram_header.sbi_medium .sbi_header_img img {
  width: 12.2rem;
  height: 12.2rem;
  border-radius: 50%;
}

#sbi_load {
  display: none;
}

#sb_instagram .sb_instagram_header, .sb_instagram_header {
  margin-bottom: 2.5rem;
}

.p-menu-item {
  background-color: #FFFFFF;
  border-radius: 5rem;
  border: 1.4rem solid #FFFFFF;
  -webkit-box-shadow: 0.459rem 0.655rem 0 rgba(12, 58, 144, 0.2);
          box-shadow: 0.459rem 0.655rem 0 rgba(12, 58, 144, 0.2);
  max-width: 55rem;
  width: 100%;
  text-align: center;
  padding: 0.1rem 0.1rem 0;
}

.p-menu__item:first-of-type {
  background: #BBE0F4;
}

.p-menu-item__inner {
  width: 100%;
  max-width: 45rem;
  margin: 5.2rem auto;
}

.p-menu-item__title {
  margin-top: 2.5rem;
  line-height: 1.2;
}

.p-menu-item__price {
  margin: 3rem auto 0;
}

.p-menu-item__textbox {
  margin-top: 3.8rem;
}

.p-menu-item__menu {
  text-align: left;
  line-height: 1.7;
}

.p-menu-item__text {
  margin-top: 1.5rem;
  text-align: left;
}

.p-menu {
  background-color: #F0F3F7;
  padding-bottom: 14rem;
  padding-top: 0.1rem;
}

.p-menu__items {
  margin: 4rem auto 0;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 6rem;
  max-width: 55rem;
  width: 100%;
}

.p-menu__titlebox {
  text-align: center;
  margin-top: 14.6rem;
}

.p-menu__title {
  margin: 0 auto;
  margin-top: 9.6rem;
  position: relative;
  display: inline-block;
}

.p-menu__title::before {
  content: "";
  background-image: url(../img/common/menu_illustration1.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  width: 100%;
  max-width: 20.5rem;
  height: 13.3rem;
  top: -14.5rem;
  left: -10rem;
}

.p-mv {
  width: 100vw;
}

.p-mv__inner {
  position: relative;
}

.p-mv__video {
  position: relative;
}

.p-mv__video::before {
  content: "";
  padding-top: 146.667%;
  width: 100%;
  display: block;
}

.p-mv__video::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../img/common/patt09.png);
  background-repeat: repeat;
  top: 0;
  left: 0;
  border-radius: 10rem 0 0 10rem;
  mix-blend-mode: multiply;
  border-radius: 0 0 10rem 10rem;
  opacity: 0.7;
}

.p-mv__video video {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 0 0 10rem 10rem;
}

.p-mv__titlebox {
  position: relative;
  margin: -19rem auto 0;
  z-index: 900;
  width: 100%;
  max-width: 46.8rem;
  padding-left: 1rem;
}

.p-mv__subtitle {
  font-size: 2.1rem;
  color: #38A1DB;
  padding-left: 2.8rem;
}

.p-mv__title {
  margin-top: 0.9rem;
  font-size: 5.4rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #FFFFFF;
}

.p-mv__title span {
  background: #38A1DB;
  display: inline-block;
  padding: 0.95rem 2rem 0.95rem 4.4rem;
  border-radius: 5rem;
}

.p-mv__title span:last-of-type {
  margin-top: 1.9rem;
}

.p-mv__textbox {
  margin: 2.5rem 0 0 16rem;
  width: 100%;
  max-width: 56rem;
  letter-spacing: -0.01em;
  line-height: 2;
}

.p-mv__text {
  font-size: 3rem;
}

.slick-list {
  margin-left: 0;
}

.p-slick {
  margin-left: calc(50% - 50vw - 14.72vw);
  margin-right: calc(50% - 50vw);
}
.p-slick img {
  width: 70rem !important;
}

.slick-slide {
  width: 64rem !important;
  margin-right: 4.5rem;
}

.slick-prev, .slick-next {
  position: absolute;
  display: block;
  margin: auto;
  -webkit-transform: initial;
          transform: initial;
  padding: 0;
  bottom: -30rem;
  height: 7.85rem;
  width: 7.85rem;
}

.slick-prev {
  left: 22rem;
  right: initial;
}

.slick-next {
  left: 36rem;
  right: initial;
}

.slick-dotted.slick-slider {
  margin-top: 7rem;
}

.p-strength__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 4rem;
  row-gap: 8rem;
}

.p-strength__titlebox {
  width: 100%;
  max-width: 60rem;
  margin: 0 auto;
}

.p-strength__title {
  margin: 9.6rem 0 0 auto;
  display: block;
  text-align: right;
}

.p-strength__title span {
  position: relative;
  display: inline-block;
}

.p-strength__title span::before {
  content: "";
  background-image: url(../img/common/strength_illustration1.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  width: 100%;
  max-width: 21rem;
  height: 17.6rem;
  top: -19.5rem;
  left: -5.5rem;
}

.p-sub-axis__mv {
  background-image: url(../img/common/axis_mv_sp.jpg);
}

.p-sub-axis-lead {
  position: relative;
  padding-top: 10.4rem;
  padding-bottom: 12.4rem;
  text-align: center;
}

.p-sub-axis-lead__subtitle {
  margin-top: 2rem;
}

.p-sub-about__mv {
  background-image: url(../img/common/about_mv_sp.jpg);
}

.p-sub-element {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  color: #FFFFFF;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../img/common/element_bg_sp.png);
}

.p-sub-element__inner {
  padding-top: 19rem;
  padding-bottom: 20rem;
  width: 100%;
}

.p-sub-element__text-wrapper {
  width: 100%;
  max-width: 55rem;
  margin: 0 auto;
}

.p-sub-element__text {
  margin-top: 3.5rem;
  letter-spacing: 0.04em;
  line-height: 2;
}

.p-sub-element__text span {
  font-size: 2.6rem;
}

.p-sub-element__img {
  width: 100%;
  max-width: 64.5rem;
  margin: 7rem auto 0;
  display: block;
  position: relative;
}
.p-sub-element__img::after {
  content: "";
  display: block;
  padding-top: 92.57%;
}
.p-sub-element__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-sub-greeting {
  position: relative;
  padding-top: 10.4rem;
  padding-bottom: 20rem;
}

.p-sub-greeting__title {
  text-align: center;
}

.p-sub-greeting__contents-wrapper {
  margin-top: 3.4rem;
}

.p-sub-greeting__text-wapper {
  width: 100%;
  max-width: 60rem;
  margin: 0 auto;
}

.p-sub-greeting__contents-title {
  font-weight: 700;
}

.p-sub-greeting__contents-textbox {
  margin-top: 3.5rem;
}

.p-sub-greeting__director {
  text-align: right;
  margin-top: 3rem;
}

.p-sub-greeting__director-name {
  line-height: 1.4;
}

.p-sub-greeting__img-wrapper {
  margin: 11rem auto 0;
  width: 67rem;
}

.p-sub-greeting__img-top {
  display: block;
  position: relative;
}
.p-sub-greeting__img-top::after {
  content: "";
  display: block;
  padding-top: 100%;
}
.p-sub-greeting__img-top img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-sub-greeting__img-bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 3.9rem;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-sub-greeting__img1 {
  width: 28.3rem;
  margin-top: 9.7rem;
  display: block;
  position: relative;
}
.p-sub-greeting__img1::after {
  content: "";
  display: block;
  padding-top: 124%;
}
.p-sub-greeting__img1 img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-sub-greeting__img2 {
  width: 35rem;
  display: block;
  position: relative;
}
.p-sub-greeting__img2::after {
  content: "";
  display: block;
  padding-top: 76%;
}
.p-sub-greeting__img2 img {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-sub-info {
  position: relative;
  padding-top: 19.7rem;
  padding-bottom: 17rem;
}

.p-sub-info__contents-wrapper {
  width: 100%;
  max-width: 67rem;
  margin: 0 auto;
}

.p-sub-info__img-wrapper {
  margin-top: 3rem;
}

.p-sub-info__img-wrapper + .p-sub-info__img-wrapper {
  margin-top: 9rem;
}

.p-sub-info__room-wrapper + .p-sub-info__img-wrapper {
  margin-top: 11rem;
}

.p-sub-info__room {
  margin-top: 5.7rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1.4516fr 1fr;
  gap: 5rem 5rem;
  grid-template-areas: "img1 img1" "img2 img3";
}

.p-sub-info__img1 {
  grid-area: img1;
}

.p-sub-info__img2 {
  grid-area: img2;
}

.p-sub-info__img3 {
  grid-area: img3;
}

.p-sub-info__title {
  text-align: center;
}

.p-sub-info__subtitle {
  text-align: center;
  font-weight: 700;
  -webkit-font-feature-settings: initial;
          font-feature-settings: initial;
}

.p-sub-info__photo-wrapper {
  margin-top: 11rem;
}

.p-sub-info__photo {
  margin-top: 4.7rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 5rem 5rem;
}

.p-sub-jarta-lead {
  position: relative;
  padding-top: 10.4rem;
  padding-bottom: 21rem;
  margin: 0 auto;
}

.p-sub-jarta-lead__textbox {
  max-width: 55rem;
  width: 100%;
  margin: 0 auto;
}

.p-sub-jarta-lead__title {
  text-align: center;
}

.p-sub-jarta-lead__subtitle {
  text-align: center;
}
.p-sub-jarta-lead__contents-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 5.4rem;
}

.p-sub-jarta-lead__text {
  letter-spacing: 0;
  margin-top: 4rem;
}

.p-sub-jarta-lead__text::after {
  content: "";
  display: block;
  width: 21rem;
  height: 12.5rem;
  margin: 7rem 0 0 2.2rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/common/jarta_illustration1.svg);
}

.p-sub-jarta-lead__imgbox {
  max-width: 67rem;
  width: 100%;
  margin: 5.5rem auto 0;
}

.p-sub-jarta-lead__img1 {
  max-width: 60.2rem;
  width: 100%;
  margin-left: auto;
  display: block;
  position: relative;
}
.p-sub-jarta-lead__img1::after {
  content: "";
  display: block;
  padding-top: 65%;
}
.p-sub-jarta-lead__img1 img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-sub-jarta-lead__img-bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  margin-top: 5.5rem;
}

.p-sub-jarta-lead__img2 {
  max-width: 21rem;
  width: 100%;
  display: block;
  position: relative;
}
.p-sub-jarta-lead__img2::after {
  content: "";
  display: block;
  padding-top: 125.23%;
}
.p-sub-jarta-lead__img2 img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-sub-jarta-lead__img3 {
  max-width: 40.8rem;
  width: 100%;
  margin-top: 6.5rem;
  display: block;
  position: relative;
}
.p-sub-jarta-lead__img3::after {
  content: "";
  display: block;
  padding-top: 77.21%;
}
.p-sub-jarta-lead__img3 img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-sub-jarta__mv {
  background-image: url(../img/common/jarta_mv_sp.jpg);
}

.p-sub-jarta__system {
  margin-top: 20rem;
  margin-bottom: 9rem;
}

.p-sub-jarta__btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 12rem auto 22rem;
  -webkit-font-feature-settings: initial;
          font-feature-settings: initial;
  padding: 0;
}

.p-sub-jarta__btn a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 3.4rem;
  padding: 2.2rem 5rem;
  width: 55rem;
  max-width: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 1.5rem;
  border: 0.1rem solid #0C3A72;
  background: #F0F3F7;
  letter-spacing: 0;
}

.p-sub-jarta__btn a::before {
  content: "";
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/common/jarta_btn1.svg);
  width: 6.2rem;
  height: 6.2rem;
}

.p-sub-jarta__btn a::after {
  content: "";
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/common/jarta_btn2.png);
}

.p-sub-mv {
  width: 100vw;
  height: 64.22vw;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.p-sub-mv__title {
  font-size: 5rem;
  color: #FFFFFF;
  text-align: center;
  padding-top: 29rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  padding-top: 40vw;
}

.p-sub-origin {
  position: relative;
  background: #F0F3F7;
  padding-top: 16rem;
  padding-bottom: 14rem;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.p-sub-origin__title {
  margin-top: 5rem;
  text-align: center;
}

.p-sub-origin__text-wapper {
  width: 100%;
  max-width: 55rem;
  margin: 4.5rem auto 0;
}

.p-sub-origin__img {
  width: 65rem;
  margin-top: 9.7rem;
  margin: 0 auto;
  display: block;
  position: relative;
}
.p-sub-origin__img::after {
  content: "";
  display: block;
  padding-top: 94%;
}
.p-sub-origin__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-sub-origin__illustration {
  margin-top: 3rem;
  margin-left: auto;
  width: 24.3rem;
  display: block;
  position: relative;
}
.p-sub-origin__illustration::after {
  content: "";
  display: block;
  padding-top: 101.3%;
}
.p-sub-origin__illustration img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-sub-physio__mv {
  background-image: url(../img/common/physio_mv_sp.jpg);
}

.p-sub-physio-lead {
  position: relative;
  padding-top: 10.4rem;
  padding-bottom: 21rem;
  margin: 0 auto;
}

.p-sub-physio-lead__textbox {
  max-width: 55rem;
  width: 100%;
  margin: 0 auto;
}

.p-sub-physio-lead__title {
  text-align: center;
}

.p-sub-physio-lead__subtitle {
  text-align: center;
}
.p-sub-physio-lead__contents-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 5.4rem;
}

.p-sub-physio-lead__text {
  letter-spacing: 0;
  margin-top: 4rem;
}

.p-sub-physio-lead__text::after {
  content: "";
  display: block;
  width: 21rem;
  height: 12.5rem;
  margin: 7rem 0 0 2.2rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/common/physio_illustration1.svg);
}

.p-sub-physio-lead__imgbox {
  max-width: 67rem;
  width: 100%;
  margin-top: 5.5rem;
  margin: 5.5rem auto 0;
}

.p-sub-physio-lead__img1 {
  max-width: 60.2rem;
  width: 100%;
  margin-left: auto;
  display: block;
  position: relative;
}
.p-sub-physio-lead__img1::after {
  content: "";
  display: block;
  padding-top: 65%;
}
.p-sub-physio-lead__img1 img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-sub-physio-lead__img-bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  margin-top: 5.5rem;
}

.p-sub-physio-lead__img2 {
  max-width: 21rem;
  width: 100%;
  display: block;
  position: relative;
}
.p-sub-physio-lead__img2::after {
  content: "";
  display: block;
  padding-top: 125.23%;
}
.p-sub-physio-lead__img2 img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-sub-physio-lead__img3 {
  max-width: 40.8rem;
  width: 100%;
  margin-top: 6.5rem;
  display: block;
  position: relative;
}
.p-sub-physio-lead__img3::after {
  content: "";
  display: block;
  padding-top: 77.21%;
}
.p-sub-physio-lead__img3 img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-sub-point {
  position: relative;
  padding-top: 19.6rem;
  padding-bottom: 19.5rem;
}

.p-sub-point__contents {
  margin-top: 6rem;
}

.p-sub-point__item + .p-sub-point__item {
  margin-top: 6rem;
}

.p-sub-point__video {
  width: 67rem;
  aspect-ratio: 16/9;
  margin: 0 auto;
}

.p-sub-point__video iframe {
  width: 100%;
  height: 100%;
}

.p-sub-point__title {
  text-align: center;
  margin-top: 18rem;
}

.p-sub-point__text {
  text-align: center;
  margin-top: 1.5rem;
  line-height: 1.667;
  letter-spacing: 0.04em;
}

.p-sub-policy__mv {
  background-image: url(../img/common/policy_mv_sp.jpg);
}

.p-sub-policy__inner {
  width: 100%;
  max-width: 60rem;
  padding-bottom: 16rem;
}

.p-sub-policy__wrapper {
  margin-top: 10rem;
}

.p-sub-policy__text {
  font-size: 3rem;
  letter-spacing: 0;
  line-height: 2;
  font-weight: 400;
}

.p-sub-policy__contents {
  margin-top: 9rem;
}

.p-sub-policy__contents + .p-sub-policy__contents {
  margin-top: 4rem;
}

.p-sub-policy__titlebox {
  border-bottom: 2px solid #0C3A72;
  padding-bottom: 2rem;
}

.p-sub-policy__title {
  font-size: 4rem;
  letter-spacing: 0;
  font-weight: 700;
  line-height: 1.4;
}

.p-sub-ploicy__textbox {
  margin-top: 2.5rem;
}

.p-sub-radio {
  position: relative;
  padding-top: 14rem;
  padding-bottom: 25.5rem;
}

.p-sub-radio__text-wrapper {
  width: 100%;
  max-width: 55rem;
  margin: 0 auto;
}

.p-sub-radio__title {
  text-align: center;
}
.p-sub-radio__text {
  margin-top: 6.5rem;
  line-height: 2;
  letter-spacing: 0.04em;
}

.p-sub-radio__comment {
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
  -webkit-font-feature-settings: initial;
          font-feature-settings: initial;
}

.p-sub-radio__btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 6.6rem auto 17.5rem;
  -webkit-font-feature-settings: initial;
          font-feature-settings: initial;
  padding: 0;
}

.p-sub-radio__btn a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 3.4rem;
  padding: 2.8rem 5rem;
  width: 55rem;
  max-width: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 1.5rem;
  border: 0.1rem solid #0C3A72;
  background: #F0F3F7;
  letter-spacing: 0;
}

.p-sub-radio__btn a::after {
  content: "";
  display: block;
  width: 2.2rem;
  height: 2.2rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/common/jarta_btn2.png);
}

.p-sub-radio__photo-wrapper {
  margin-top: 11rem;
  max-width: 67rem;
  width: 100%;
  margin: 0 auto;
}

.p-sub-radio__photo {
  margin-top: 4.7rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 5rem 5rem;
}

.p-sub-radio__phpto-text-wrapper {
  width: 100%;
  max-width: 55rem;
  margin: 9rem auto 0;
}

.p-sub-system__inner {
  margin: 0 auto;
}

.p-sub-system__text-wrapper {
  max-width: 55rem;
  margin: 0 auto;
}

.p-sub-system__title {
  margin-right: -5rem;
  max-width: 60rem;
  font-weight: 700;
  margin-top: 4.8rem;
  letter-spacing: 0;
  line-height: 1.4;
}

.p-sub-system__text {
  margin-top: 4.4rem;
  line-height: 2;
}

.p-sub-system__text::after {
  content: "";
  display: block;
  width: 27.5rem;
  height: 17.8rem;
  background-image: url(../img/common/jarta_illustration2.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin: 0 0 0 auto;
}

.p-sub-system__imgbox {
  max-width: 67rem;
  margin: 0 auto;
  width: 100%;
}

.p-sub-system__img1 {
  max-width: 60.2rem;
  width: 100%;
  margin-right: auto;
  display: block;
  position: relative;
}
.p-sub-system__img1::after {
  content: "";
  display: block;
  padding-top: 65.28%;
}
.p-sub-system__img1 img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-sub-system__img-bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  margin-top: 5.5rem;
}

.p-sub-system__img2 {
  max-width: 40.5rem;
  width: 100%;
  margin-top: 6.5rem;
  display: block;
  position: relative;
}
.p-sub-system__img2::after {
  content: "";
  display: block;
  padding-top: 77.28%;
}
.p-sub-system__img2 img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-sub-system__img3 {
  max-width: 20.9rem;
  width: 100%;
  display: block;
  position: relative;
}
.p-sub-system__img3::after {
  content: "";
  display: block;
  padding-top: 125.36%;
}
.p-sub-system__img3 img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-sub-theory__inner {
  background: #F0F3F7;
  border-radius: 3rem;
  width: 100%;
  max-width: 67rem;
  padding: 12rem 6rem 10rem;
  margin: 13rem auto 15rem;
}

.p-sub-theory__textbox {
  width: 100%;
}

.p-sub-theory__title {
  line-height: 1.4;
}

.p-sub-theory__leadtext {
  margin-top: 2.5rem;
}

.p-sub-theory__text {
  margin-top: 2rem;
}

.p-sub-theory__img {
  margin-top: 6rem;
  width: 100%;
}

.p-sub-voice-archive__mv {
  background-image: url(../img/common/voice_mv_sp.jpg);
}

.p-sub-voice-archive__cards {
  margin-top: 11.5rem;
}

.p-sub-voice-archive__card:nth-of-type(n+2) {
  margin-top: 2rem;
}

.p-sub-voice-archive__inner {
  max-width: 72rem;
  width: 100%;
}

.p-sub-voice-archive__wrapper {
  margin-top: 11rem;
  margin-bottom: 10rem;
}

.p-sub-voice-archive__leadtext {
  font-size: 2.8rem;
  letter-spacing: 0;
  line-height: 2.2;
  position: relative;
  text-align: center;
  max-width: 65rem;
  width: 100%;
  letter-spacing: 0.04em;
}

.p-sub-voice-archive__leadtext::after {
  content: "";
  display: block;
  width: 11rem;
  height: 11rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/common/voice_illustration.svg);
  margin: 2rem 4rem 0 auto;
}

.p-sub-voice-post__mv {
  background-image: url(../img/common/voice_mv_sp.jpg);
}

.p-sub-voice-post__card {
  margin-top: 13rem;
}

.p-sub-voice-post__btn {
  margin-bottom: 20rem;
}

.p-sub-you {
  position: relative;
  background: #F0F3F7;
  padding-top: 19.5rem;
  padding-bottom: 20rem;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.p-sub-you__wrapper {
  margin-top: 5rem;
}

.p-sub-you__text-wrapper {
  text-align: center;
  margin-top: 6rem;
}

.p-sub-you__title {
  text-align: center;
}

.p-sub-you__text-wapper {
  width: 100%;
  max-width: 55rem;
  margin: 4.5rem auto 0;
}

.p-sub-you__text {
  position: relative;
  margin: 0 auto;
}

.p-sub-you__text span {
  margin: 0 2rem;
  letter-spacing: 0;
}

.p-sub-you__text::before {
  content: "";
  display: block;
  width: 16.8rem;
  height: 9.7rem;
  background-image: url(../img/common/strength_illustration1_sp.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin: 0 auto 1.6rem;
}

.p-voice-archive {
  width: 100%;
  max-width: 67rem;
  margin-left: auto;
  margin-right: auto;
  background: #F0F3F7;
  border-radius: 3rem;
  padding: 5rem 5rem 4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.p-voice-archive__img {
  max-width: 18rem;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: block;
  position: relative;
}
.p-voice-archive__img::after {
  content: "";
  display: block;
  padding-top: 116.67%;
}
.p-voice-archive__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-voice-archive__textbox {
  width: 100%;
  max-width: 55rem;
  margin: 0 0 0 3.5rem;
}

.p-voice-archive__title {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.4166;
  letter-spacing: 0.06em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.p-voice-archive__text {
  height: 16.2rem;
  margin-top: 2rem;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.p-voice-card {
  width: 100%;
  max-width: 67rem;
  margin-left: auto;
  margin-right: auto;
  background: #F0F3F7;
  border-radius: 3rem;
  padding: 10rem 4rem 8rem;
}

.p-voice-card__img {
  max-width: 36rem;
  width: 100%;
  margin: 0 auto;
  display: block;
  position: relative;
}
.p-voice-card__img::after {
  content: "";
  display: block;
  padding-top: 113.33%;
}
.p-voice-card__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-voice-card__textbox {
  width: 100%;
  max-width: 55rem;
  margin: 7rem auto 0;
}

.p-voice-card__title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.4166;
  letter-spacing: 0.06em;
}

.p-voice-card__text {
  margin-top: 4rem;
  font-size: 3rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0;
}

.p-voice-item {
  width: 93%;
  max-width: 70rem;
  background: #F0F3F7;
  border-radius: 3rem;
}

.p-voice-item__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 6rem 1rem 5rem 6rem;
}

.p-voice-item__img {
  margin-right: 2rem;
  width: calc((100% + 4rem) * 0.3057);
  max-width: 18rem;
  height: 100%;
  position: relative;
}

.p-voice-item__img::before {
  content: "";
  padding-top: 116.666%;
  display: block;
}
.p-voice-item__img img {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}

.p-voice-item__textwrapper {
  width: calc((100% + 6rem) * 0.641);
  max-width: 32rem;
}

.p-voice-item__title {
  height: 8.2rem;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 3rem;
}

.p-voice-item__text {
  height: 16.2rem;
  margin-top: 1.5rem;
  line-height: 1.7;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.p-voice {
  position: relative;
}

.p-voice__titlebox {
  width: 100%;
  text-align: center;
}

.p-voice__title {
  font-size: 8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  position: relative;
}

.p-voice__title::before {
  content: "";
  background-image: url(../img/common/voice_illustration2.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  width: 100%;
  max-width: 12.3rem;
  height: 12.3rem;
  top: 17%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 5rem;
}

.p-voice__subtitle {
  margin-top: 1rem;
}

.p-voice__text {
  width: 55rem;
  margin: 2.8rem auto 0;
}

.p-voice__items {
  margin-right: calc(50% - 50vw);
}

.p-voice__btn {
  width: 100%;
  max-width: 52rem;
  margin: 12.4rem auto 0;
}

.urlcopied {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  display: none;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.urlcopied span {
  background: #0C3A72;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  line-height: 1.2;
  height: 100%;
  font-size: 1rem;
  color: #0C3A72;
  border-radius: 50%;
}

html.is-fixed,
html.is-fixed body {
  height: 100%;
  width: 100%;
  position: fixed;
}

.pagination {
  width: 100%;
}
.nav-links ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.page-numbers {
  color: #0C3A72;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.4rem;
  font-weight: 400;
}

.page-numbers li .page-numbers {
  padding-right: 1rem;
  padding-left: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 1rem;
}

.page-numbers li .page-numbers:not(.next):not(.prev):not(.current) {
  background: #FFFFFF;
  border: 0.1rem solid #0C3A72;
  color: #0C3A72;
  border-radius: 50%;
  width: 4.6rem;
  height: 4.6rem;
}

.page-numbers li .page-numbers.current {
  color: #0C3A72;
  font-size: 1.6rem;
  font-weight: 700;
  background: #0C3A72;
  color: #FFFFFF;
  border-radius: 50%;
  width: 4.6rem;
  height: 4.6rem;
}

.page-numbers li .page-numbers.dots {
  padding-right: 0;
  padding-left: 0;
}

.page-numbers li .prev.page-numbers {
  padding-left: 0;
  background: initial;
  color: initial;
  border-radius: initial;
}

.page-numbers li .next.page-numbers {
  padding-right: 0;
}

.next, .prev {
  width: 1.1rem;
  height: 1.1rem;
  border-right: 2px solid #0C3A72;
  border-top: 2px solid #0C3A72;
}

.next {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-left: 4rem;
}

.prev {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
  margin-right: 4rem;
}

/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up,
.scroll_up2 {
  -webkit-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  opacity: 0;
}

.scroll_up.on,
.scroll_up2.on {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

a.scroll_up.on:hover,
a.scroll_up2.on:hover {
  opacity: 0.7;
}

.scroll_up.on:nth-child(2) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.scroll_up.on:nth-child(3) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.scroll_up.on:nth-child(5) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.scroll_up.on:nth-child(6) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

/*----------------------------
scroll_left ｜左から出現
----------------------------*/
.scroll_left {
  -webkit-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
  opacity: 0;
}

.scroll_left.on {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/*----------------------------
scroll_right ｜右から出現
----------------------------*/
.scroll_right {
  -webkit-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
  opacity: 0;
}

.scroll_right.on {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.u-hidden {
  display: none;
}

.wpcf7-spinner {
  display: none;
}

.wpcf7-list-item {
  margin-left: 0;
}

.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.wpcf7-form-control-wrap input {
  width: 100%;
  border: initial;
  border-radius: 2rem;
  padding: 2.8rem 4rem;
  background: #FFFFFF;
}

.wpcf7-not-valid-tip {
  font-size: 1.2rem;
}

.wpcf7-previous {
  width: 100%;
  padding: 1.1rem 0 !important;
}

@media only screen and (min-width: 768px) {
  html {
    font-size: 0.8333333333vw;
  }
  body {
    font-size: 1.8rem;
    line-height: 1.4444444444;
  }
  a:hover {
    opacity: 0.7;
  }
  .inner-block {
    margin: 0 auto;
  }
  .sp {
    display: none !important;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
  a,
a::before,
a::after,
button {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .c-btn a {
    font-size: 1.4rem;
    border-radius: 1.5rem;
    padding: 1.4rem;
  }
  .c-category {
    padding: 0.7rem;
    font-size: 1.5rem;
  }
  .c-contact-text {
    font-size: 2rem;
  }
  .c-contact-text__title {
    max-width: 24rem;
    margin-bottom: 0;
  }
  .c-contact-text__required {
    font-size: 1.6rem;
    padding: 0.6rem 1.3rem;
    margin-left: 1rem;
  }
  .c-contact-textarea {
    font-size: 2rem;
  }
  .c-contact-textarea .c-contact-text__title {
    margin-bottom: 25rem;
  }
  .c-contact-textarea__text {
    padding: 2.5rem 1.6rem;
    height: 30rem;
  }
  .c-contents-img-text {
    font-size: 2rem;
    max-width: 70rem;
    padding: 1.5rem 3rem 1.5rem 10.4rem;
  }
  .c-contents-img-text::before {
    width: 2.6rem;
    height: 2.4rem;
    margin-right: 3.5rem;
  }
  .c-contents-img-text + .c-contents-img-text {
    margin-top: 1rem;
  }
  .c-contents-no {
    font-size: 7rem;
  }
  .c-contents-no::before {
    margin-right: 4rem;
  }
  .c-contents-no::after {
    display: none;
  }
  .c-contents-text {
    font-size: 1.6rem;
  }
  .c-contents-text.fz24-14 {
    font-size: 1.4rem;
  }
  .c-contents-title {
    font-size: 3rem;
  }
  .fz20-14 {
    font-size: 1.4rem;
  }
  .fz24-16 {
    font-size: 1.6rem;
  }
  .fz24-18 {
    font-size: 1.8rem;
  }
  .fz26-16 {
    font-size: 1.6rem;
  }
  .fz30-16 {
    font-size: 1.6rem;
  }
  .fz30-18 {
    font-size: 1.8rem;
  }
  .fz36-20 {
    font-size: 2rem;
  }
  .fz40-24 {
    font-size: 2.4rem;
  }
  .fz36-30 {
    font-size: 3rem;
  }
  .c-hamburger span {
    height: 0.2rem;
    width: 3rem;
  }
  .c-line {
    right: 0;
    bottom: 10%;
  }
  .c-line__link {
    background-image: url(../img/common/line_reserve_pc.png);
    width: 12rem;
    height: 12rem;
  }
  .c-point {
    max-width: 110rem;
    padding: 6rem 6rem 6rem;
  }
  .c-point__title {
    margin-top: 0;
  }
  .c-point__titlebox {
    margin: 0 5rem 0 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .c-point__textwrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    position: relative;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .c-point__textwrapper::before {
    content: "";
    display: block;
    width: 9.1rem;
    height: 13.7rem;
    margin-right: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }
  .c-point__textbox {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-left: 3.5rem;
    width: 100%;
    max-width: 83rem;
  }
  .c-point__text {
    width: 44rem;
    margin: 0 5rem 0 0;
    line-height: 2.2;
  }
  .c-point__img {
    max-width: 34rem;
    width: 100%;
    margin-top: 1rem;
  }
  .c-point:nth-of-type(1) .c-contents-no::after {
    background-image: none;
  }
  .c-point:nth-of-type(2) .c-contents-no::after {
    background-image: none;
  }
  .c-point:nth-of-type(3) .c-contents-no::after {
    background-image: none;
  }
  .c-point:nth-of-type(4) .c-contents-no::after {
    background-image: none;
  }
  .c-point:nth-of-type(5) .c-contents-no::after {
    background-image: none;
  }
  .c-price {
    font-size: 4rem;
  }
  .c-price span {
    font-size: 2rem;
  }
  .c-scroll {
    bottom: 6.67vw;
    left: 7.25vw;
  }
  .c-scroll span::after {
    bottom: 0.6rem;
  }
  .c-section-title {
    font-size: 3.6rem;
  }
  .c-timetable th {
    width: 4.8rem;
  }
  .c-timetable th:first-of-type {
    width: 18.7rem;
  }
  .c-timetable th:last-of-type {
    padding-right: 4.6rem;
    width: 9.4rem;
  }
  .l-about {
    margin-top: 12.5rem;
  }
  .l-inner {
    padding-right: 25px;
    padding-left: 25px;
    max-width: 1150px;
  }
  .l-menu {
    margin-top: 1.5rem;
  }
  .l-pager {
    margin-top: 4rem;
  }
  .l-strength {
    margin-top: 11.8rem;
  }
  .l-voice {
    margin-top: 10rem;
  }
  .p-about {
    padding-bottom: 10rem;
  }
  .p-about__wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 7.6rem;
  }
  .p-about__titlebox {
    max-width: initial;
    padding-top: 11rem;
  }
  .p-about__title::before {
    max-width: 15rem;
    height: 11rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 20rem;
  }
  .p-about__text-wapper {
    max-width: 350PX;
    width: 31.82%;
    margin-left: 5rem;
    margin-right: initial;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
  }
  .p-about__contents-title {
    margin-top: 0;
  }
  .p-about__director {
    margin: 0.5rem 1rem 0 0;
  }
  .p-about__img {
    margin-top: 0;
    max-width: 70rem;
  }
  .p-about__img::after {
    padding-top: 85.714%;
  }
  .p-about__treatment-img {
    margin: 4rem auto 0 0;
    max-width: 25rem;
  }
  .p-about__btn {
    margin: 3.8rem auto 0;
    width: 32rem;
  }
  .p-access__header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: end;
        -ms-flex-align: end;
            align-items: end;
  }
  .p-access__title {
    margin: initial;
    margin-right: 3.5rem;
    width: 22rem;
  }
  .p-access__title::before {
    width: 13.9rem;
    height: 13.2rem;
    right: -85rem;
    top: 1rem;
  }
  .p-access__exterior-wrapper {
    margin-top: 0;
  }
  .p-access__exterior {
    width: 26.5rem;
  }
  .p-access__exterior-text-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 1rem;
  }
  .p-access__contact {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 1rem;
  }
  .p-access__linebox {
    margin-top: 0;
    max-width: 54rem;
  }
  .p-access__line {
    padding: 4.7rem 1rem 4rem;
    max-width: 54rem;
  }
  .p-access__line-textbox {
    width: initial;
  }
  .p-access__line::before {
    width: 6.8rem;
    height: 7.2rem;
  }
  .p-access__map {
    margin-top: 11rem;
    padding-bottom: 22.222%;
  }
  .p-access__body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 5.4rem;
  }
  .p-access__consultation {
    margin-top: 0;
    margin-left: 3rem;
  }
  .p-access__inquiry {
    width: 100%;
    max-width: 54rem;
    margin-top: 0;
    margin-left: 2.3rem;
  }
  .p-access__inquiry-title {
    font-size: 2.6rem;
    padding: 1rem;
  }
  .p-access__form {
    font-size: 2rem;
    padding: 2.772rem 0;
  }
  .p-access__form::before {
    width: 4.6rem;
    height: 4.6rem;
  }
  .p-access__tel {
    font-size: 2.2rem;
    padding: 2.772rem 0;
  }
  .p-access__tel::before {
    width: 4.6rem;
    height: 4.6rem;
  }
  .p-card {
    max-width: 32rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-card + .p-card {
    margin-top: initial;
  }
  .p-card::before {
    font-size: 7rem;
  }
  .p-card__img {
    margin-top: -3rem;
  }
  .p-card__body {
    margin-top: 2rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-card__text {
    margin-top: 2rem;
  }
  .p-card__btn {
    margin-top: 2rem;
  }
  .p-consultation__table {
    max-width: 56rem;
  }
  .p-contact__mv {
    background-image: url(../img/common/contact_mv_pc.jpg);
  }
  .p-contact__inner {
    max-width: 115rem;
  }
  .p-contact__wrapper {
    margin-top: 9rem;
  }
  .p-contact__leadtitle {
    font-size: 3.6rem;
  }
  .p-contact__leadtext {
    margin: 3.5rem auto 0;
    font-size: 1.8rem;
    max-width: 80rem;
    line-height: 2.2;
  }
  .p-contact__form {
    margin-top: 7rem;
  }
  .p-contact__form-inner {
    max-width: 115rem;
    padding-top: 8rem;
    padding-bottom: 10rem;
    margin-bottom: 20rem;
  }
  .p-contact__content + .p-contact__content {
    margin-top: 4rem;
  }
  .p-contact__item + .p-contact__item {
    margin-top: 1rem;
  }
  .p-contact__item-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 auto;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .p-contact__btn input[type=submit] {
    width: 50rem;
    padding: 1.3rem;
  }
  .p-drawer-menu__title {
    font-size: 2.2rem;
    padding: 1.5rem 0;
  }
  .p-drawer-menu__subtitle {
    font-size: 1.8rem;
    padding: 1.2rem 0 1.2rem 3rem;
  }
  .p-footer {
    padding: 1.8rem;
    font-size: 1.4rem;
  }
  .p-footer__inner {
    position: relative;
  }
  .p-fotter__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .p-footer__logo {
    width: 24.6rem;
    margin-left: 0;
  }
  .p-footer__btn {
    width: 41.8rem;
    margin-top: 0;
    margin-right: 0;
    margin-right: calc(50% - 50vw + 7.8rem);
  }
  .p-footer__copyright {
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
  }
  .p-footer__copyright span {
    font-size: 1.4rem;
  }
  .p-header {
    position: relative;
  }
  .p-header.js-sub-header {
    position: absolute;
  }
  .p-header__inner {
    padding: 1.5rem 25px 0;
    position: relative;
  }
  .p-header__inner-sub {
    padding: 0 25px 0 0;
  }
  .p-header__title {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 21.9rem;
  }
  .p-header__title-sub {
    width: 25rem;
  }
  .p-header__menu {
    max-width: 43rem;
  }
  .p-header__menu::before {
    width: 10.8rem;
    height: 10.2rem;
    margin-top: 6.5rem;
  }
  .p-header__overlay {
    max-width: 57rem;
    width: 100%;
    height: 100vh;
  }
  .p-header__menubox {
    width: 8rem;
    height: 8rem;
  }
  .p-header__menutext {
    font-size: 1.2rem;
  }
  #sb_instagram .sb_instagram_header.sbi_medium .sbi_header_text.sbi_no_bio h3, .sb_instagram_header.sbi_medium .sbi_header_text.sbi_no_bio h3 {
    padding-left: 2rem !important;
    font-size: 1.8rem;
  }
  #sb_instagram .sb_instagram_header.sbi_medium .sbi_header_text h3,
#sb_instagram .sb_instagram_header.sbi_medium .sbi_header_text .sbi_bio {
    margin-left: 10rem !important;
  }
  #sb_instagram .sb_instagram_header.sbi_medium .sbi_header_img, #sb_instagram .sb_instagram_header.sbi_medium .sbi_header_img img, .sb_instagram_header.sbi_medium .sbi_header_img, .sb_instagram_header.sbi_medium .sbi_header_img img {
    width: 7.8rem;
    height: 7.8rem;
  }
  .p-menu-item {
    -webkit-box-shadow: 0.287rem 0.041rem 0 rgba(12, 58, 144, 0.2);
            box-shadow: 0.287rem 0.041rem 0 rgba(12, 58, 144, 0.2);
    width: 32rem;
    border-radius: 3rem;
    border: 0.8rem solid #FFFFFF;
  }
  .p-menu-item__inner {
    margin: 3.8rem auto 2.5rem;
    max-width: 26rem;
  }
  .p-menu-item__title {
    margin-top: 1.5rem;
  }
  .p-menu-item__price {
    margin: 2rem auto 0;
  }
  .p-menu-item__textbox {
    margin-top: 3rem;
  }
  .p-menu-item__text {
    margin-top: 2rem;
  }
  .p-menu {
    padding-bottom: 12rem;
  }
  .p-menu__items {
    grid-template-columns: repeat(3, 1fr);
    -webkit-column-gap: 7rem;
       -moz-column-gap: 7rem;
            column-gap: 7rem;
    max-width: initial;
    margin: 6rem auto 0;
  }
  .p-menu__titlebox {
    margin-top: 1.5rem;
  }
  .p-menu__title::before {
    max-width: 12.8rem;
    height: 8.3rem;
    top: -4rem;
    left: -15rem;
  }
  .p-mv__video {
    margin-left: 16.7vw;
  }
  .p-mv__video::before {
    padding-top: 56.67%;
  }
  .p-mv__video::after {
    border-radius: 10rem 0 0 10rem;
  }
  .p-mv__video video {
    border-radius: 10rem 0 0 10rem;
  }
  .p-mv__titlebox {
    position: absolute;
    bottom: min(30rem, 38%);
    left: 22%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    margin: 0;
    padding: 0;
  }
  .p-mv__subtitle {
    font-size: 1.8rem;
  }
  .p-mv__title {
    font-size: 4.5rem;
    margin-top: 0;
  }
  .p-mv__title span {
    padding: 0.9rem 2.8rem 0.9rem 3.7rem;
    border-radius: 4.1rem;
  }
  .p-mv__textbox {
    margin: 5.8rem 0 auto 0;
    position: absolute;
    bottom: 4rem;
    left: 20.28vw;
    max-width: 80rem;
    line-height: 1.76;
    margin: 0;
  }
  .p-mv__text {
    font-size: 3.4rem;
    font-weight: 700;
  }
  .slick-list {
    margin-left: calc((50% - 50vw) * 2 - 23.5rem);
  }
  .slick-slide {
    width: 53rem !important;
    margin-right: 4rem;
  }
  .slick-prev, .slick-next {
    top: -8.85rem;
    bottom: initial;
    height: 4.85rem;
    width: 4.85rem;
  }
  .slick-prev {
    left: 98rem;
  }
  .slick-next {
    left: 104rem;
  }
  .slick-dotted.slick-slider {
    margin-top: 3rem;
  }
  .p-strength__wrapper {
    grid-template-columns: repeat(3, 1fr);
    -webkit-column-gap: 6.6rem;
       -moz-column-gap: 6.6rem;
            column-gap: 6.6rem;
    margin-top: 5.5rem;
  }
  .p-strength__titlebox {
    max-width: initial;
  }
  .p-strength__title {
    text-align: center;
  }
  .p-strength__title span::before {
    top: 15%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: -17.5rem;
    right: initial;
    width: 100%;
    max-width: 13.1rem;
    height: 11rem;
  }
  .p-sub-axis__mv {
    background-image: url(../img/common/axis_mv_pc.jpg);
  }
  .p-sub-axis-lead {
    padding-top: 9rem;
    padding-bottom: 9rem;
  }
  .p-sub-axis-lead__subtitle {
    margin-top: 0;
  }
  .p-sub-axis-lead__text {
    margin-top: 2rem;
  }
  .p-sub-about__mv {
    background-image: url(../img/common/about_mv_pc.jpg);
  }
  .p-sub-element {
    background-image: url(../img/common/element_bg_pc.png);
  }
  .p-sub-element__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 8rem;
    padding-bottom: 10rem;
    max-width: 110rem;
    margin: 0 auto;
  }
  .p-sub-element__text-wrapper {
    margin: 0;
    max-width: 50rem;
  }
  .p-sub-element__text {
    margin-top: 2.2rem;
    line-height: 2.2;
  }
  .p-sub-element__text span {
    font-size: 1.6rem;
  }
  .p-sub-element__img {
    max-width: 50.8rem;
    height: 46.9rem;
    margin: 0;
  }
  .p-sub-greeting {
    padding-top: 9rem;
    padding-bottom: 9rem;
  }
  .p-sub-greeting__contents-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 5.5rem;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .p-sub-greeting__text-wapper {
    max-width: 50rem;
    margin: 0;
  }
  .p-sub-greeting__contents-textbox {
    margin-top: 2rem;
  }
  .p-sub-greeting__img-wrapper {
    width: 50rem;
    margin: 0;
  }
  .p-sub-greeting__img-bottom {
    margin-top: 6rem;
  }
  .p-sub-greeting__img1 {
    width: 20rem;
  }
  .p-sub-greeting__img2 {
    width: 25rem;
  }
  .p-sub-greeting__contents-text {
    line-height: 2.2;
  }
  .p-sub-info {
    padding-top: 8.5rem;
    padding-bottom: 9rem;
  }
  .p-sub-info__room-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 6rem;
  }
  .p-sub-info__contents-wrapper {
    width: 100%;
    max-width: 110rem;
  }
  .p-sub-info__img-wrapper {
    margin-top: 0;
  }
  .p-sub-info__img-wrapper + .p-sub-info__img-wrapper {
    margin-top: 0;
    margin-left: 8rem;
  }
  .p-sub-info__room-wrapper + .p-sub-info__img-wrapper {
    margin-top: 0;
  }
  .p-sub-info__room {
    margin-top: 3.5rem;
    gap: 6rem 5rem;
  }
  .p-sub-info__photo-wrapper {
    margin-top: 4.5rem;
  }
  .p-sub-info__photo {
    margin-top: 3rem;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 6rem 5.5rem;
  }
  .p-sub-jarta-lead {
    padding-top: 9rem;
    padding-bottom: 7rem;
  }
  .p-sub-jarta-lead__wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 3.5rem;
  }
  .p-sub-jarta-lead__textbox {
    max-width: 50rem;
    margin-left: 0;
  }
  .p-sub-jarta-lead__title {
    letter-spacing: 0;
  }
  .p-sub-jarta-lead__contents-title {
    font-size: 2.4rem;
    margin-top: 0;
  }
  .p-sub-jarta-lead__text {
    margin-top: 1.7rem;
    line-height: 2.22;
  }
  .p-sub-jarta-lead__text::after {
    width: 12.4rem;
    height: 7.4rem;
    margin: 6rem 0 0 1.2rem;
  }
  .p-sub-jarta-lead__imgbox {
    max-width: 51rem;
    margin: 0 0 0 auto;
  }
  .p-sub-jarta-lead__img1 {
    max-width: 46rem;
  }
  .p-sub-jarta-lead__img-bottom {
    margin-top: 4rem;
  }
  .p-sub-jarta-lead__img2 {
    width: 16rem;
  }
  .p-sub-jarta-lead__img3 {
    max-width: 31rem;
    margin-top: 5.5rem;
  }
  .p-sub-jarta__mv {
    background-image: url(../img/common/jarta_mv_pc.jpg);
  }
  .p-sub-jarta__system {
    margin-top: 8rem;
  }
  .p-sub-jarta__btn {
    margin: 8rem auto 20rem;
  }
  .p-sub-jarta__btn a {
    width: 40rem;
    font-size: 2.4rem;
    max-width: 40rem;
    padding: 1.8rem 4rem;
    margin: 0 auto;
  }
  .p-sub-jarta__btn a::before {
    width: 4.4rem;
    height: 4.4rem;
  }
  .p-sub-mv {
    height: 27.78vw;
  }
  .p-sub-mv__title {
    font-size: 4.4rem;
    padding-top: 12.6vw;
  }
  .p-sub-origin {
    padding-top: 8.5rem;
    padding-bottom: 8.5rem;
  }
  .p-sub-origin__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
    margin: 0 auto;
    max-width: 110rem;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .p-sub-origin__title {
    margin-top: 0;
    text-align: left;
  }
  .p-sub-origin__text-wapper {
    max-width: 50rem;
    margin: 0.5rem 0 0 0;
  }
  .p-sub-origin__img {
    margin: 0 4.2rem 0 6.7rem;
    width: 42rem;
  }
  .p-sub-origin__illustration {
    width: 17.2rem;
    margin-top: 2.5rem;
  }
  .p-sub-physio__mv {
    background-image: url(../img/common/physio_mv_pc.jpg);
  }
  .p-sub-physio-lead {
    padding-top: 9rem;
    padding-bottom: 6rem;
  }
  .p-sub-physio-lead__wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 3.5rem;
  }
  .p-sub-physio-lead__textbox {
    max-width: 51rem;
    margin-left: 0;
  }
  .p-sub-physio-lead__title {
    letter-spacing: 0;
  }
  .p-sub-physio-lead__contents-title {
    font-size: 2.4rem;
    margin-top: 0;
  }
  .p-sub-physio-lead__text {
    letter-spacing: 0.02em;
    margin-top: 2.5rem;
    line-height: 2.22;
  }
  .p-sub-physio-lead__text::after {
    width: 12.4rem;
    height: 9.4rem;
    margin: 12.5rem 0 0 0;
  }
  .p-sub-physio-lead__imgbox {
    max-width: 51rem;
    margin: 0 0 0 auto;
  }
  .p-sub-physio-lead__img1 {
    max-width: 46rem;
  }
  .p-sub-physio-lead__img-bottom {
    margin-top: 4rem;
  }
  .p-sub-physio-lead__img2 {
    width: 16rem;
  }
  .p-sub-physio-lead__img3 {
    max-width: 31rem;
    margin-top: 5.5rem;
  }
  .p-sub-point {
    padding-top: 10.5rem;
    padding-bottom: 12.8rem;
  }
  .p-sub-point__contents {
    margin-top: 3rem;
  }
  .p-sub-point__video {
    width: 100%;
  }
  .p-sub-point__title {
    margin-top: 9rem;
  }
  .p-sub-point__text {
    line-height: 2.5;
  }
  .p-sub-policy__mv {
    background-image: url(../img/common/policy_mv_pc.jpg);
  }
  .p-sub-policy__inner {
    max-width: 85rem;
  }
  .p-sub-policy__wrapper {
    margin-top: 8.54rem;
  }
  .p-sub-policy__text {
    font-size: 1.8rem;
    letter-spacing: 0.04em;
    line-height: 2.22;
  }
  .p-sub-policy__contents {
    margin-top: 10.5rem;
  }
  .p-sub-policy__contents + .p-sub-policy__contents {
    margin-top: 5rem;
  }
  .p-sub-policy__title {
    font-size: 2.4rem;
    letter-spacing: 0.04em;
  }
  .p-sub-ploicy__textbox {
    margin-top: 1.5rem;
  }
  .p-sub-radio {
    padding-top: 9rem;
    padding-bottom: 16rem;
  }
  .p-sub-radio__text-wrapper {
    max-width: 91.3rem;
  }
  .p-sub-radio__text {
    margin-top: 3rem;
    line-height: 2.3;
  }
  .p-sub-radio__btn {
    margin: 3rem auto 12.4rem;
  }
  .p-sub-radio__btn a {
    width: 40rem;
    font-size: 2.4rem;
    max-width: 40rem;
    padding: 2.1rem 4rem;
    margin: 0 auto;
  }
  .p-sub-radio__photo-wrapper {
    margin-top: 4.5rem;
    max-width: 110rem;
  }
  .p-sub-radio__photo {
    margin-top: 3rem;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 6rem 5.5rem;
  }
  .p-sub-radio__phpto-text-wrapper {
    max-width: 110rem;
    text-align: center;
    margin: 4rem auto 0;
  }
  .p-sub-system__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .p-sub-system__text-wrapper {
    max-width: 50rem;
    margin: 0;
  }
  .p-sub-system__title {
    margin-top: 0;
  }
  .p-sub-system__text {
    margin-top: 2.5rem;
    line-height: 2.2;
  }
  .p-sub-system__text::after {
    margin-top: 12rem;
    width: 17.5rem;
    height: 12rem;
    line-height: 2.5;
  }
  .p-sub-system__imgbox {
    max-width: 51rem;
    margin: 0;
  }
  .p-sub-system__img1 {
    width: 46rem;
  }
  .p-sub-system__img-bottom {
    margin-top: 4rem;
  }
  .p-sub-system__img2 {
    max-width: 31rem;
    margin-top: 5rem;
  }
  .p-sub-system__img3 {
    max-width: 16rem;
  }
  .p-sub-theory__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 110rem;
    margin: 6rem auto 10.5rem;
    padding: 7rem 7rem 8rem 7rem;
  }
  .p-sub-theory__textbox {
    max-width: 44rem;
  }
  .p-sub-theory__leadtext {
    line-height: 2.1;
  }
  .p-sub-theory__text {
    margin-top: 4rem;
  }
  .p-sub-theory__img {
    margin-top: 0;
    max-width: 42.4rem;
  }
  .p-sub-voice-archive__mv {
    background-image: url(../img/common/voice_mv_pc.jpg);
  }
  .p-sub-voice-archive__cards {
    margin-top: 8rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .p-sub-voice-archive__card:nth-of-type(n+2) {
    margin: initial;
  }
  .p-sub-voice-archive__card:nth-of-type(2n) {
    margin-left: 4rem;
  }
  .p-sub-voice-archive__card:nth-of-type(n+3) {
    margin-top: 4rem;
  }
  .p-sub-voice-archive__inner {
    max-width: 115rem;
  }
  .p-sub-voice-archive__wrapper {
    margin-top: 9rem;
  }
  .p-sub-voice-archive__leadtext {
    max-width: 70rem;
    font-size: 1.8rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 auto;
    padding-left: 10rem;
  }
  .p-sub-voice-archive__leadtext::after {
    margin: 0 0 0 6rem;
    width: 8rem;
    height: 8rem;
  }
  .p-sub-voice-post__mv {
    background-image: url(../img/common/voice_mv_pc.jpg);
  }
  .p-sub-voice-post__card {
    margin-top: 10rem;
  }
  .p-sub-voice-post__btn {
    margin-bottom: 23rem;
  }
  .p-sub-you {
    padding-top: 9.5rem;
    padding-bottom: 4.8rem;
  }
  .p-sub-you__wrapper {
    margin-top: 4rem;
  }
  .p-sub-you__text-wrapper {
    margin-top: 2rem;
  }
  .p-sub-you__title {
    margin-top: 0;
  }
  .p-sub-you__text-wapper {
    max-width: 45rem;
    margin: 0.5rem 0 0 0;
  }
  .p-sub-you__text {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .p-sub-you__text::before {
    background-image: url(../img/common/strength_illustration1_pc.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 6.3rem;
    height: 6.8rem;
    margin: 0;
  }
  .p-sub-you__text::after {
    content: "";
    display: block;
    background-image: url(../img/common/strength_illustration2_pc.svg);
    width: 6.3rem;
    height: 6.8rem;
  }
  .p-voice-archive {
    max-width: 53rem;
    width: calc(50% - 4rem);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 4rem;
    margin: 0;
  }
  .p-voice-archive__img {
    margin: 0;
    max-width: 15rem;
  }
  .p-voice-archive__textbox {
    margin: 0 0 0 2rem;
  }
  .p-voice-archive__title {
    height: 6.8rem;
    font-size: 2.4rem;
    font-weight: 400;
    letter-spacing: 0;
  }
  .p-voice-archive__text {
    height: 8.2rem;
    margin-top: 1.5rem;
    font-size: 1.6rem;
    line-height: 1.625;
    -webkit-line-clamp: 3;
  }
  .p-voice-card {
    max-width: 115rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 6rem;
  }
  .p-voice-card__img {
    margin: 0;
  }
  .p-voice-card__textbox {
    margin: 0 0 0 4rem;
  }
  .p-voice-card__title {
    font-size: 2.4rem;
    font-weight: 400;
    letter-spacing: 0;
  }
  .p-voice-card__text {
    margin-top: 3rem;
    font-size: 1.8rem;
    line-height: 2.22;
  }
  .p-voice-item__wrapper {
    padding: 4rem;
  }
  .p-voice-item__img {
    min-width: 15rem;
    margin-right: 1.5rem;
  }
  .p-voice-item__title {
    height: 7.2rem;
    font-size: 2.4rem;
  }
  .p-voice-item__text {
    height: 8.2rem;
    -webkit-line-clamp: 3;
  }
  .p-voice {
    padding-bottom: 8.6rem;
  }
  .p-voice__title-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .p-voice__titlebox {
    max-width: 17rem;
  }
  .p-voice__title {
    font-size: 6rem;
  }
  .p-voice__title::before {
    max-width: 8rem;
    height: 8rem;
    top: 66%;
    right: -79rem;
  }
  .p-voice__text {
    margin: 1rem 0 0 3rem;
  }
  .p-voice__btn {
    margin: 4.4rem auto 0;
    max-width: 32rem;
  }
  .page-numbers {
    font-size: 2.2rem;
  }
  .page-numbers li .page-numbers {
    padding-right: 1.4rem;
    padding-left: 1.4rem;
  }
  .page-numbers li .page-numbers.current {
    font-size: 2.2rem;
  }
  .next, .prev {
    width: 1.866rem;
    height: 1.866rem;
  }
  .u-hidden-pc {
    display: none;
  }
  .wpcf7-form-control-wrap {
    width: 56rem;
  }
  .wpcf7-form-control-wrap input {
    padding: 1.6rem 2.5rem;
  }
  .wpcf7-not-valid-tip {
    font-size: 1.4rem;
  }
}

@media only screen and (min-width: 1200px) {
  html {
    font-size: 62.5%;
  }
}

@media only screen and (max-width: 767px) {
  body {
    font-size: 14px;
    position: relative;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
  }
  .inner-block {
    padding: 0 10px;
    width: auto;
  }
  #wrapper {
    min-width: 320px;
    position: relative;
    overflow: hidden;
  }
  input[type=submit] {
    -webkit-text-size-adjust: 100%;
  }
  .pc {
    display: none !important;
  }
  .c-contact-check__item + span {
    font-size: 1.6rem;
  }
  .u-hidden-sp {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */
/*# sourceMappingURL=style.css.map */