@charset "UTF-8";

/*! destyle.css v3.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.css */

/* Reset box-model and set borders */

/* ============================================ */

*,
::before,
::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
}

/* Document */

/* ============================================ */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */

html {
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -webkit-tap-highlight-color: transparent;
  /* 3*/
  line-height: 1.15;
  /* 1 */
  scroll-behavior: smooth;
}

/* Sections */

/* ============================================ */

/**
 * Remove the margin in all browsers.
 */

body {
  min-height: 100vh;
  margin: 0;
  text-rendering: optimizeSpeed;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/* Vertical rhythm */

/* ============================================ */

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */

/* ============================================ */

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

/* Lists (enumeration) */

/* ============================================ */

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

/* Lists (definition) */

/* ============================================ */

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */

/* ============================================ */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  margin: 0;
  clear: both;
  overflow: visible;
  /* 2 */
  border-top-width: 1px;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-size: inherit;
  /* 2 */
  font-family: monospace, monospace;
  /* 1 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */

/* ============================================ */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-size: inherit;
  /* 2 */
  font-family: monospace, monospace;
  /* 1 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */

/* ============================================ */

/**
 * Prevent vertical alignment issues.
 */

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */

/* ============================================ */

/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  /* 1 */
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: inherit;
  text-transform: inherit;
  /* 2 */
  vertical-align: middle;
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */

[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio;
}

/**
 * Correct cursors for clickable elements.
 */

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */

option {
  padding: 0;
}

/**
 * Reset to invisible
 */

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */

[type=search] {
  outline-offset: -2px;
  /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
 * Clickable labels
 */

label[for] {
  cursor: pointer;
}

/* Interactive */

/* ============================================ */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */

[contenteditable]:focus {
  outline: auto;
}

/* Tables */

/* ============================================ */

/**
1. Correct table border color inheritance in all Chrome and Safari.
*/

table {
  border-color: inherit;
  /* 1 */
}

caption {
  text-align: left;
}

td,
th {
  padding: 0;
  vertical-align: top;
}

th {
  font-weight: bold;
  text-align: left;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

.u-desktop {
  display: none;
}

html {
  font-size: 16px;
}

body {
  background: #F7EFEC;
  color: #3B4043;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.sr-only {
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip-path: inset(50%);
}

/* ホバー */

a {
  -webkit-transition: opacity 0.3s;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}

img {
  height: auto;
}

.c-btn {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-transition: all 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 7px 15px;
  gap: 0.4375rem;
  border-radius: 2.375rem;
  background: #FC6652;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: all 0.3s;
}

/* ボタン共通設定 */

.c-btn-white,
.c-btn-orange {
  /*アニメーションの指定*/
  -webkit-transition: all 0.2s ease;
  /*ボタンの形状*/
  display: inline-block;
  z-index: 1;
  /*影の基点とするためrelativeを指定*/
  position: relative;
  width: 100%;
  text-align: center;
  transition: all 0.2s ease;
}

.c-btn-white {
  max-width: 21.5rem;
}

.c-btn-orange {
  max-width: 16.75rem;
}

h3.p-massage__content-title {
  max-width: 550px;
  margin: auto;
}

.pc {
  display: block;
}

/*ボタンの中のテキスト*/

.c-btn-white__inner,
.c-btn-orange__inner {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  /*アニメーションの指定*/
  -webkit-transition: all 0.3s ease;
  /*テキストの形状*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 2;
  /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  position: relative;
  align-items: center;
  justify-content: center;
  border-radius: 2.375rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.c-btn-white__inner {
  padding: 0.65625rem 0.9375rem;
  gap: 0.625rem;
  background: #fff;
  color: #FC6652;
  font-size: 1.3125rem;
}

.c-btn-orange__inner {
  padding: 1.125rem 0.9375rem;
  gap: 0.5rem;
  background: #FC6652;
  color: #ffffff;
  letter-spacing: 0.04em;
}

/*== 右下に押し込まれる（立体が平面に） */

/*影の設定*/

.c-btn-white::after,
.c-btn-orange::after {
  z-index: -1;
  /*絶対配置で影の位置を決める*/
  position: absolute;
  /*影の形状*/
  width: 100%;
  height: 100%;
  border-radius: 2.375rem;
  content: "";
}

.c-btn-white::after {
  top: 4px;
  left: 4px;
  background-color: #DB5523;
}

.c-btn-orange::after {
  top: 5px;
  left: 0;
  background-color: #FFE1DD;
}

/*hoverの際にX・Y軸に4pxずらす*/

.c-btn-white:hover .c-btn-white__inner {
  -webkit-transform: translate(4px, 4px);
  -ms-transform: translate(4px, 4px);
  transform: translate(4px, 4px);
}

.c-btn-orange:hover .c-btn-orange__inner {
  -webkit-transform: translateY(5px);
  -ms-transform: translateY(5px);
  transform: translateY(5px);
}

.c-card {
  padding: 1.375rem 0.625rem;
  border-radius: 0.625rem;
  background: #ffffff;
  text-align: center;
}

.c-card__title {
  color: #FC6652;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.375;
  letter-spacing: 0.03em;
}

.c-card__img-wrapper {
  position: relative;
  width: 100%;
  /* 幅を固定しない場合は100%だけでいい */
  max-width: 14.75rem;
  margin: 1.5rem auto 0;
  overflow: hidden;
}

.c-card__img-wrapper img {
  -o-object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-card__img-wrapper::before {
  display: block;
  padding-top: 89.8305084746%;
  content: "";
}

.c-card__text {
  margin-top: 1.0625rem;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.c-cta-info {
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  width: 100%;
  max-width: 50.5rem;
  border: solid 3px #ffffff;
  border-radius: 0.625rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#fc6652), to(#fc8052));
  background: linear-gradient(#fc6652 0%, #fc8052 100%);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

.c-cta-info__inner {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.125rem 1.875rem 1.25rem 0.5rem;
}

.c-cta-info__icon {
  width: 100%;
  max-width: 4.35rem;
}

.c-cta-info__icon--sp {
  display: none;
}

.c-cta-info__tel-block {
  margin-left: 0.3125rem;
}

.c-cta-info__tel {
  -webkit-transition: all 0.3s;
  position: relative;
  color: #ffffff;
  font-size: 3.5625rem;
  line-height: 1;
  font-family: "Bebas Neue", sans-serif;
  text-decoration: underline;
  text-decoration-color: #FFF500;
  text-decoration-thickness: 3px;
  /* 線の太さ */
  text-underline-offset: 3px;
  transition: all 0.3s;
}

.c-cta-info__tel:hover,
.c-cta-info__tel:active {
  opacity: 0.7;
}

.c-cta-info__tel::before {
  display: inline-block;
  width: 2.25rem;
  height: 2.25rem;
  margin-right: 0.75rem;
  background: url(../images/tel-icon-2-white.svg) no-repeat;
  background-size: contain;
  content: "";
}

.c-cta-info__tel-text {
  color: #ffffff;
  font-weight: 700;
}

.c-cta-info__btn-block {
  margin-left: 1.4375rem;
}

.c-cta-info__btn-text {
  margin-top: 0.625rem;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.c-cta-info__btn-text span {
  font-size: 1.3125rem;
  font-family: "Bebas Neue", sans-serif;
}

.c-section-title {
  font-weight: 700;
  font-size: 2.125rem;
  letter-spacing: 0.04em;
}

.c-section-title::before {
  display: block;
  content: attr(date-en);
  color: #FC6652;
  font-size: 1.25rem;
  font-family: "Poppins", sans-serif;
}

.c-section-title--ja::before {
  font-size: 1.0625rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.04em;
}

.c-section-title__text {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1875rem;
  gap: 9px;
}

.c-section-title__text--deco-none {
  display: inline-block;
  margin-top: 0.1875rem;
}

.c-section-title__text::before,
.c-section-title__text::after {
  display: inline-block;
  width: 48px;
  height: 45px;
  content: "";
}

.c-section-title__text::before {
  background: url(../images/title-deco-left.svg) no-repeat;
}

.c-section-title__text::after {
  background: url(../images/title-deco-right.svg) no-repeat;
}

.c-title-dot {
  display: inline-block;
  position: relative;
}

.c-title-dot::before,
.c-title-dot::after {
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  display: inline-block;
  position: absolute;
  top: 50%;
  width: 1rem;
  height: 1.9375rem;
  transform: translateY(-50%);
  content: "";
}

.c-title-dot::before {
  left: -25px;
  background: url(../images/dot-icon-left.svg) no-repeat center;
  background-size: contain;
}

.c-title-dot::after {
  right: -25px;
  background: url(../images/dot-icon-right.svg) no-repeat center;
  background-size: contain;
}

.l-bottom-info {
  display: none;
}

.l-bottom-info__inner {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.9375rem;
}

.l-footer {
  background: #ffffff;
}

.l-footer__inner {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 65.625rem;
  margin: 0 auto;
  padding: 2rem 1.5625rem;
}

.l-footer__logo {
  width: 100%;
  max-width: 9.25rem;
}

.l-footer__lists {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.8125rem;
  gap: 1rem;
}

.l-footer__left-company {
  margin-top: 2.625rem;
  color: #313131;
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
}

.l-footer__left-copy {
  color: #D6D6D6;
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
}

.l-footer__list-link {
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
}

.l-footer__right-block {
  width: 100%;
  max-width: 16.75rem;
  margin-left: 2.5rem;
}

.l-footer__right-block--pc {
  display: block;
}

.l-footer__right-block--sp {
  display: none;
}

.l-footer__right-icon {
  width: 100%;
  max-width: 3.1875rem;
}

.l-footer__right-text {
  padding: 0.34375rem 0;
  background: #FC6652;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
}

.l-footer__right-btn {
  margin-top: 0.53125rem;
}

.l-footer__tel-block {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
  gap: 0.5rem;
}

.l-footer__right-tel {
  -webkit-transition: all 0.3s;
  position: relative;
  color: #313131;
  font-size: 2.375rem;
  font-family: "Bebas Neue", sans-serif;
  text-decoration: underline;
  text-decoration-color: #FC6652;
  text-decoration-thickness: 3px;
  /* 線の太さ */
  text-underline-offset: 3px;
  transition: all 0.3s;
}

.l-footer__right-tel:hover,
.l-footer__right-tel:active {
  opacity: 0.7;
}

.l-footer__right-tel::before {
  display: inline-block;
  width: 1.4375rem;
  height: 1.4375rem;
  margin-right: 0.5rem;
  background: url(../images/tel-icon-2.svg) no-repeat;
  content: "";
}

.l-header {
  z-index: 2;
  position: sticky;
  top: 0;
  height: 3.625rem;
  background: #ffffff;
}

.l-header__inner {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  padding-right: 0.625rem;
  padding-left: 0.6875rem;
}

.l-header__info {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex: 1;
  justify-content: flex-end;
}

.l-header__info-text {
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
}

.l-header__logo {
  width: 100%;
  max-width: 6.1875rem;
}

.l-header__icon {
  width: 100%;
  max-width: 2.625rem;
  margin-left: 0.625rem;
}

.l-header__tel-block {
  display: inline-block;
}

.l-header__tel {
  -webkit-transition: all 0.3s;
  position: relative;
  font-size: 2.3125rem;
  font-family: "Bebas Neue", sans-serif;
  text-decoration: underline;
  text-decoration-color: #FC6652;
  text-decoration-thickness: 3px;
  /* 線の太さ */
  text-underline-offset: 0.5px;
  transition: all 0.3s;
}

.l-header__tel:hover,
.l-header__tel:active {
  opacity: 0.7;
}

.l-header__tel::before {
  display: inline-block;
  width: 1.4375rem;
  height: 1.4375rem;
  margin-right: 7.7px;
  background: url(../images/tel-icon-2.svg) no-repeat;
  content: "";
}

.l-header__tel-block {
  margin-left: 0.8125rem;
}

.l-header__btn {
  width: 100%;
  max-width: 16.75rem;
  margin-left: 1.25rem;
}

.l-header__btn .c-btn:hover,
.l-header__btn .c-btn:active {
  background: #F0B0A8;
}

.l-header__buger {
  display: none;
}

.l-header__nav {
  display: none;
}

.l-inner {
  width: 100%;
  max-width: calc(880px + 25px * 2);
  height: inherit;
  margin: 0 auto;
  padding-right: 25px;
  padding-left: 25px;
}

.p-about__primary {
  padding: 8.4375rem 0 11.9375rem;
  background: url(../images/about-bg.png) no-repeat center;
  background-size: cover;
}

.p-about__primary-title {
  text-align: center;
}

.p-about__primary-content {
  margin-top: 5rem;
}

.p-about__secondary {
  padding: 4rem 0;
  background: url(../images/about-bg-2.jpg) no-repeat center;
  background-size: cover;
}

.p-about__secondary-img {
  width: 100%;
  max-width: 40.8125rem;
  margin: 0 auto;
}

.p-about__tertiary-img {
  -webkit-clip-path: polygon(100% 0, 100% 85%, 50% 100%, 0 85%, 0 0);
  background: url(../images/about-bg-4.png) no-repeat center;
  background-size: cover;
  clip-path: polygon(100% 0, 100% 85%, 50% 100%, 0 85%, 0 0);
}

.p-about__tertiary-img-wrapper {
  width: 100%;
  max-width: 55rem;
  margin: 0 auto;
  padding-bottom: 1.6875rem;
}

.p-about__tertiary-cta {
  margin-top: -5.25rem;
}

.p-about__tertiary-cta .p-cta {
  padding: 10.9375rem 0 6.5625rem;
}

.p-about__quaternary {
  padding: 7.875rem 0 8.4375rem;
}

.p-about__quaternary-title {
  display: inline-block;
  position: relative;
  font-weight: 700;
  font-size: 2.125rem;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-align: center;
}

.p-about__quaternary-title::before,
.p-about__quaternary-title::after {
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: "";
}

.p-about__quaternary-title::before {
  left: -80px;
  width: 4.375rem;
  height: 6.5625rem;
  background: url(../images/about-icon-2.svg) no-repeat center;
  background-size: contain;
}

.p-about__quaternary-title::after {
  right: -80px;
  width: 5.25rem;
  height: 6.5625rem;
  background: url(../images/about-icon-3.svg) no-repeat center;
  background-size: contain;
}

.p-about__quaternary-title-block {
  text-align: center;
}

.p-about__quaternary-title .c-title-dot {
  margin-bottom: 0.3125rem;
}

.p-about__quaternary-cards {
  margin-top: 5.5rem;
}

.p-about__quaternary-cards .c-card__img-wrapper {
  margin-top: 1.0625rem;
}

.p-about__quaternary-text-block {
  margin-top: 2.25rem;
  padding: 2.5rem;
  background: #ffffff;
}

.p-about__quaternary-media-title {
  padding: 0.8125rem 0;
  background: -webkit-gradient(linear, left top, right top, from(#8AC43A), color-stop(50%, #8AC43A), color-stop(50%, #80BA30), to(#80BA30));
  background: linear-gradient(90deg, #8AC43A 0%, #8AC43A 50%, #80BA30 50%, #80BA30 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  text-align: center;
}

.p-about__quaternary-media {
  margin-top: 4.875rem;
  overflow: hidden;
  border-radius: 0.625rem;
}

.p-about__quaternary-media-block {
  -webkit-box-align: start;
  -ms-flex-align: start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: flex-start;
  padding: 1.875rem 2rem 2.375rem;
  background: #ffffff;
}

.p-about__quaternary-img {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%;
  max-width: 14.6875rem;
}

.p-about__quaternary-media-text {
  margin-left: 1.625rem;
}

.p-about__quaternary-swiper {
  display: none;
}

.p-about__service {
  position: relative;
  padding-bottom: 3.6875rem;
}

.p-about__service::after {
  display: block;
  z-index: -1;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 96%;
  background: url(../images/about-bg-2.jpg) no-repeat center;
  background-size: cover;
  content: "";
}

.p-about__service-title {
  font-weight: 700;
  font-size: 2.125rem;
  letter-spacing: 0.04em;
  text-align: center;
}

.p-about__service-text {
  width: 100%;
  max-width: 41.75rem;
  margin: 2.4375rem auto 0;
  text-align: center;
}

.p-about__service-cards {
  margin-top: 2.875rem;
}

.p-about__service-cards .p-cards {
  -webkit-column-gap: 1rem;
  -moz-column-gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 1rem;
}

.p-about__service-cards .c-card {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  padding: 12px 13px 20px;
}

.p-about__service-cards .c-card__img-wrapper {
  margin-top: 16px;
}

.p-about__service-cards .c-card__title {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -ms-flex-preferred-size: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-basis: 30%;
  align-items: center;
  justify-content: center;
  color: #313131;
  font-size: 1.1875rem;
  line-height: 1.5263157895;
  letter-spacing: 0.04em;
}

.p-about__primary-content .p-about__swiper {
  display: none;
}

.p-about__service-swiper {
  display: none;
}

.p-about__service-swiper .c-card {
  width: 100%;
  max-width: 16.75rem;
  margin: 0 auto;
}

.p-accordion__list-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  min-height: 3.8125rem;
  background: #F5F5F5;
}

.p-accordion__list-question {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 3.875rem;
  background: #FC6652;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.6875rem;
  font-family: "Poppins", sans-serif;
}

.p-accordion input {
  display: none;
}

.p-accordion__switch {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-transition: all 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  width: 100%;
  margin-left: 13px;
  padding: 1.09375rem 0;
  padding-right: 2.375rem;
  color: #FC6652;
  font-weight: 700;
  line-height: 1.625;
  letter-spacing: 0.04em;
  opacity: 1;
  transition: all 0.3s;
}

.p-accordion__switch::after {
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  position: absolute;
  top: 50%;
  right: 14px;
  width: 10px;
  height: 1px;
  transform: translateY(-50%);
  background: #FC6652;
  content: "";
}

.p-accordion__switch::before {
  -webkit-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  -webkit-transition: all 0.3s;
  position: absolute;
  top: 50%;
  right: 14px;
  width: 10px;
  height: 1px;
  transform: translateY(-50%) rotate(90deg);
  background: #FC6652;
  content: "";
  transition: all 0.3s;
}

.p-accordion__inside {
  -webkit-transition: 0.5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 0;
  margin-top: 0.1875rem;
  padding-right: 3.125rem;
  background: #F5F5F5;
  opacity: 0;
  transition: 0.5s;
}

.p-accordion__inside::before {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 3.875rem;
  content: "A";
  color: #FC6652;
  font-weight: 600;
  font-size: 1.6875rem;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

.p-accordion__list input:checked ~ .p-accordion__inside {
  height: auto;
  padding-top: 0.9375rem;
  padding-bottom: 0.9375rem;
  opacity: 1;
}

.p-accordion__inside-text {
  margin-left: 13px;
}

.p-accordion__list + .p-accordion__list {
  margin-top: 1.375rem;
}

.p-accordion input:checked ~ .p-accordion__list-head .p-accordion__switch::before {
  -webkit-transform: translateY(-50%) rotate(0deg);
  -ms-transform: translateY(-50%) rotate(0deg);
  -webkit-transition: all 0.3s;
  transform: translateY(-50%) rotate(0deg);
  transition: all 0.3s;
}

.p-cards {
  -webkit-column-gap: 2.375rem;
  -moz-column-gap: 2.375rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2.375rem;
}

.p-company {
  padding: 6.25rem 0;
  background: #F3F3F3;
}

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

.p-company__content {
  margin-top: 2.8125rem;
}

.p-company__content-inner {
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
}

.p-company__content table {
  width: 100%;
  border-collapse: collapse;
}

.p-company__content th {
  position: relative;
  width: 20%;
  padding: 15px 2px 14px;
  border: 1px solid #a1a1a1;
  border-left: none;
  font-weight: normal;
  font-size: 12px;
  text-align: center;
  vertical-align: middle;
}

.p-company__content th::before {
  -webkit-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  position: absolute;
  top: 0;
  right: 0;
  width: 10%;
  height: 10px;
  transform: translate(50%, -50%);
  background: #F3F3F3;
  content: "";
}

.p-company__content tr:last-of-type th::after {
  -webkit-transform: translate(50%, 50%);
  -ms-transform: translate(50%, 50%);
  position: absolute;
  right: 0;
  bottom: 0;
  width: 10%;
  height: 10px;
  transform: translate(50%, 50%);
  background: #F3F3F3;
  content: "";
}

.p-company__content td {
  width: 80%;
  padding: 15px 2px 14px 28px;
  border: 1px solid #a1a1a1;
  border-right: none;
  font-size: 12px;
}

.p-company__link {
  -webkit-box-align: end;
  -ms-flex-align: end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: flex-end;
  margin-top: 3.75rem;
}

.p-company__link-logo {
  width: 50%;
}

.p-company__link a {
  display: inline-block;
  width: 50%;
  margin-left: 20px;
  padding-bottom: 5px;
  text-decoration: underline;
}

.p-company__link a:hover {
  opacity: 0.6;
}

.p-contact {
  padding: 8.125rem 0;
}

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

.p-contact__content {
  padding: 4.25rem 0 4.5625rem;
  border-radius: 1.5625rem;
  background: #ffffff;
}

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

.p-contact__form {
  margin-top: 5rem;
}

.p-cta {
  padding: 2.8125rem 0 3.8125rem;
  background: url(../images/cta-bg.png) no-repeat center;
  background-size: cover;
}

.p-cta__inner {
  width: 100%;
  max-width: 50.5rem;
  margin: 0 auto;
  text-align: center;
}

.p-cta__title {
  font-weight: 700;
  font-size: 2.125rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-decoration-color: #FFD800;
  text-decoration-thickness: 5px;
  /* 線の太さ */
  text-underline-offset: 3px;
}

.p-cta__title--orange {
  color: #FC6652;
  font-weight: 900;
}

.p-cta__sub-title {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3.3125rem;
  gap: 0.5625rem;
  font-weight: 700;
  font-size: 2.125rem;
}

.p-cta__sub-title::before,
.p-cta__sub-title::after {
  display: inline-block;
  width: 2.875rem;
  height: 2.5rem;
  content: "";
}

.p-cta__sub-title::before {
  background: url(../images/title-deco-2-left.svg) no-repeat;
  background-size: cover;
}

.p-cta__sub-title::after {
  background: url(../images/title-deco-2-right.svg) no-repeat;
  background-size: cover;
}

.p-cta__sub-title span {
  color: #FC6652;
  font-size: 4.1875rem;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
}

.p-cta__lists-block {
  margin-top: 0.875rem;
  text-align: center;
}

.p-cta__lists {
  -webkit-column-gap: 1.0625rem;
  -moz-column-gap: 1.0625rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 1.0625rem;
}

.p-cta__list {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.8125rem 0.625rem;
  border: 2px solid #fff;
  border-radius: 0.625rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#fc6652), to(#fc8052));
  background: linear-gradient(#fc6652 0%, #fc8052 100%);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  text-align: center;
}

.p-cta__img-wrapper {
  position: relative;
  width: 100%;
  /* 幅を固定しない場合は100%だけでいい */
  max-width: 36.5625rem;
  /* 任意の固定サイズが必要であれば */
  margin: 1.0625rem auto 0;
  overflow: hidden;
}

.p-cta__img-wrapper img {
  -o-object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-cta__img-wrapper::before {
  display: block;
  padding-top: 33.5042735043%;
  content: "";
}

.p-cta.p-cta-s {
  padding: 0.3125rem 0 3.8125rem;
}

.p-customer {
  padding: 8.75rem 0 8.125rem;
}

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

.p-customer__swiper {
  margin-top: 5.375rem;
}

.p-customer__slide {
  width: 100%;
  max-width: 17.5rem;
  margin: 0 auto;
}

.p-customer__slide-img {
  position: relative;
  width: 100%;
  /* 幅を固定しない場合は100%だけでいい */
  overflow: hidden;
}

.p-customer__slide-img img {
  -o-object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-customer__slide-img::before {
  display: block;
  padding-top: 71.4285714286%;
  content: "";
}

.p-customer__slide-name {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.6666666667;
  letter-spacing: 0.04em;
}

.p-customer__slide-category {
  display: inline-block;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
}

.p-customer__slide-body {
  margin-top: 1.25rem;
}

.p-customer__slide-text {
  margin-top: 0.6875rem;
}

.p-customer__swiper .swiper-button-prev {
  z-index: 1;
  left: 24%;
  width: 57px;
  height: 57px;
  background: url(../images/swiper-icon.svg) no-repeat;
  background-size: contain;
}

.p-customer__swiper .swiper-button-next {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  z-index: 1;
  right: 24%;
  width: 57px;
  height: 57px;
  transform: rotate(180deg);
  background: url(../images/swiper-icon.svg) no-repeat;
  background-size: contain;
}

.p-customer__swiper-inner {
  position: relative;
  max-width: 1500px;
  margin: auto;
}

.p-faq {
  padding: 8.125rem 0;
  background: url(../images/dot-bg-1.jpg);
  background-size: contain;
  background-repeat: repeat;
}

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

.p-faq__accordion {
  margin-top: 2.8125rem;
}

.p-flow {
  padding: 8rem 0 8.125rem;
  background: url(../images/dot-bg-1.jpg) no-repeat;
  background-size: cover;
}

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

.p-flow__content {
  margin-top: 3.5625rem;
}

.p-flow__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 9.25rem;
}

.p-flow__list-num {
  display: grid;
  position: relative;
  place-items: center;
  width: 16%;
  max-width: 8.4375rem;
  background: #FCC152;
}

.p-flow__list:nth-of-type(2n) .p-flow__list-num {
  background: #FC9352;
}

.p-flow__list-body {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 84.6%;
  padding: 1.25rem 3.8125rem 1.25rem 2rem;
  background: #F7EFEC;
}

.p-flow__list + .p-flow__list {
  margin-top: 1.875rem;
}

.p-flow__list-num::after {
  -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  -webkit-transform: rotate(180deg) translateX(50%);
  -ms-transform: rotate(180deg) translateX(50%);
  display: inline-block;
  position: absolute;
  bottom: -12px;
  left: 50%;
  width: 19px;
  height: 16px;
  transform: rotate(180deg) translateX(50%);
  background: #FCC152;
  content: "";
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.p-flow__list:nth-of-type(2n) .p-flow__list-num::after {
  background: #FC9352;
}

.p-flow__list:last-of-type .p-flow__list-num::after {
  display: none;
}

.p-flow__list-title {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.6666666667;
  letter-spacing: 0.04em;
}

.p-flow__list-text {
  margin-top: 0.4375rem;
}

.p-flow__swiper {
  display: none;
}

.p-flow__swiper .swiper-button-prev {
  z-index: 1;
  left: 24%;
  width: 57px;
  height: 57px;
  background: url(../images/swiper-icon.svg) no-repeat;
  background-size: contain;
}

.p-flow__swiper .swiper-button-next {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  z-index: 1;
  right: 24%;
  width: 57px;
  height: 57px;
  transform: rotate(180deg);
  background: url(../images/swiper-icon.svg) no-repeat;
  background-size: contain;
}

.p-flow__slide {
  max-width: 17.375rem;
  margin: 0 auto;
}

.p-form__inner {
  width: 100%;
  padding: 0 5rem;
}

.p-form__input {
  -webkit-box-pack: unset;
  -ms-flex-pack: unset;
  justify-content: unset;
  width: 69%;
  margin-top: 0;
}

.p-form__item {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
}

.p-form__item::after {
  position: absolute;
  right: 0;
  bottom: -30px;
  left: 0;
  width: 100%;
  height: 1px;
  background-image: linear-gradient(to right, #333333 1px, transparent 1px);
  background-size: 4px 1px;
  background-repeat: repeat-x;
  content: "";
}

.p-form__item--text + .p-form__item--text {
  margin-top: 3.75rem;
}

.p-form__item label {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  width: 31%;
  max-width: 238px;
  padding-right: 37px;
  padding-left: 21.5px;
  font-size: 1.125rem;
  line-height: 1.9444444444;
  letter-spacing: 0.04em;
}

.p-form__input input {
  display: inline-block;
  width: 100%;
  padding: 13px 10px;
  background: #FAFAFA;
  font-size: 14px;
}

.p-form__input--name input {
  max-width: 187px;
}

.p-form__input input + input {
  margin-left: 18px;
}

.p-form__required {
  display: inline-block;
  width: 100%;
  max-width: 3.625rem;
  margin-left: 0.625rem;
  background: #C70C0C;
  color: #ffffff;
  line-height: 1.5rem;
  text-align: center;
}

.p-form__textarea {
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  margin-top: 1.0625rem;
}

.p-form__textarea textarea {
  width: 100%;
  max-width: 36.25rem;
  padding: 1rem 0.9375rem;
  background: #FAFAFA;
}

.p-form__item--textarea label {
  margin-top: 1.5em;
}

.p-form__button-inner {
  margin-top: 3.75rem;
  text-align: center;
}

.p-form__button {
  -webkit-transition: all 0.3s;
  position: relative;
  width: 100%;
  max-width: 270px;
  margin: 0 auto;
  padding: 27.5px 15px;
  border-radius: 0.5rem;
  background: #000000;
  background: #FC6652;
  color: #ffffff;
  font-weight: 500;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  text-align: center;
  transition: all 0.3s;
}

.p-form__button:hover,
.p-form__button:active {
  background: #F0B0A8;
}

.p-form__item.p-form__item--textarea {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 3.75rem;
}

.p-form__privacy-policy {
  margin-top: 3.75rem;
}

.p-privacy-policy__title {
  font-weight: 700;
  font-size: 1.625rem;
  line-height: 1.6153846154;
  letter-spacing: 0.04em;
  text-align: center;
}

.p-privacy-policy__text {
  width: 100%;
  max-width: 33.75rem;
  margin: 1.25rem auto 0;
  letter-spacing: 0.04em;
  text-align: center;
}

.p-privacy-policy__text-area {
  word-wrap: break-word;
  width: 100%;
  max-width: 49.375rem;
  height: 18.9375rem;
  margin: 2.5rem auto 0;
  padding: 1.4375rem 2.1875rem;
  overflow: scroll;
  background: #FCFCFC;
}

.p-privacy-policy__text-area p + p {
  margin-top: 1.25rem;
}

.p-form__agree {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2.5625rem;
}

.p-form__agree input {
  width: 1.5rem;
  height: 1.625rem;
  margin-right: 0.71875rem;
}

.p-form__input--tel {
  max-width: 394px;
}

.p-global-nav {
  display: block;
  z-index: 3;
  position: sticky;
  top: 58px;
  right: 0;
  left: 0;
  width: 100%;
  height: 2.6875rem;
  background: #4B2314;
}

.p-global-nav__lists {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  height: inherit;
  color: #fff;
}

.p-global-nav__list {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.625;
  letter-spacing: 0.04em;
}

.p-global-nav__list a {
  -webkit-transition: all 0.3s;
  position: relative;
  transition: all 0.3s;
}

.p-global-nav__list a::after {
  -webkit-transition: all 0.3s;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #FC6652;
  content: "";
  opacity: 0;
  transition: all 0.3s;
}

.p-global-nav__list a:hover::after {
  opacity: 1;
}

.p-global-nav__list + .p-global-nav__list {
  margin-left: 2.5rem;
  margin-left: 2.69%;
}

.p-global-nav__list a::before {
  -webkit-transition: all 0.3s;
  display: inline-block;
  padding-right: 0.5625rem;
  border-width: 6px 0 6px 10px;
  border-style: solid;
  border-color: transparent transparent transparent #ffffff;
  content: "";
  transition: all 0.3s;
}

.p-global-nav__list a:hover::before {
  border-color: transparent transparent transparent #FC6652;
}

.p-main-visual {
  position: relative;
}

.p-main-visual__link-block {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(252, 102, 82, 0.9);
}

.p-main-visual__link-lists {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-main-visual__link-list {
  position: relative;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.p-main-visual__link-list:not(:last-child)::before {
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 1.8125rem;
  transform: translateY(-50%);
  background: #ffffff;
  content: "";
}

.p-main-visual__link {
  display: inline-block;
  width: 100%;
  padding: 0.775rem 3.25rem;
}

.p-main-visual__link::after {
  -webkit-transition: all 0.3s;
  display: inline-block;
  margin-left: 0.5rem;
  border-width: 6px 0 6px 10px;
  border-style: solid;
  border-color: transparent transparent transparent #ffffff;
  content: "";
  transition: all 0.3s;
}

.p-massage {
  padding: 8.125rem 0;
}

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

.p-massage__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 5.125rem;
}

.p-massage__content-img {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  /* 幅を固定しない場合は100%だけでいい */
  max-width: 20rem;
  /* 任意の固定サイズが必要であれば */
  overflow: hidden;
}

.p-massage__content-img img {
  -o-object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-massage__content-img::before {
  display: block;
  padding-top: 125.3125%;
  content: "";
}

.p-massage__content-body {
  margin-left: 1.875rem;
}

.p-massage__content-title {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.6666666667;
  letter-spacing: 0.04em;
}

.p-massage__content-text {
  margin-top: 1rem;
}

.p-massage__content-name {
  margin-top: 1.59375rem;
  padding-top: 0.84375rem;
  border-top: solid 1px #707070;
}

.p-massage__content-name span {
  display: inline-block;
  margin-left: 0.8125rem;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.6666666667;
  letter-spacing: 0.04em;
}

.p-privacy-policy__title {
  font-weight: 700;
  font-size: 1.625rem;
  line-height: 1.6153846154;
  letter-spacing: 0.04em;
}

.p-privacy-policy__text {
  margin-top: 0.625rem;
}

.p-privacy-policy__text-area {
  padding: 1.40625rem 2.1875rem;
  border: solid 1px #333333;
}

.p-privacy-policy__text-inner {
  height: 258px;
  overflow: scroll;
}

.p-privacy-policy__agree {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 24.375rem;
  margin: 2.5rem auto 0;
}

.p-privacy-policy__agree input {
  width: 23px;
  height: 23px;
  margin-right: 0.71875rem;
}

.p-reason {
  padding-top: 8.4375rem;
}

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

.p-reason__illust {
  position: relative;
  margin-top: 2.0625rem;
  padding: 4.46875rem 0;
  background: url(../images/reason-bg-1.jpg);
  background-size: contain;
}

.p-reason__illust::before,
.p-reason__illust::after {
  display: inline-block;
  position: absolute;
  width: 100%;
  max-width: 34.6875rem;
  height: 0;
  padding-bottom: 13.1%;
  content: "";
}

.p-reason__illust::before {
  top: 0;
  left: 0;
  background: url(../images/reason-bg-2.svg) no-repeat;
  background-size: contain;
}

.p-reason__illust::after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  right: 0;
  bottom: 0;
  transform: rotate(180deg);
  background: url(../images/reason-bg-2.svg) no-repeat;
  background-size: contain;
}

.p-reason__illust-img {
  width: 100%;
  max-width: 52.1875rem;
  margin: 0 auto;
}

.p-reason__slide-inner {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-reason__slide-img {
  position: relative;
  width: 100%;
  /* 幅を固定しない場合は100%だけでいい */
  max-width: 441px;
  /* 任意の固定サイズが必要であれば */
  overflow: hidden;
}

.p-reason__slide-img img {
  -o-object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-reason__slide-img::before {
  display: block;
  padding-top: 89.1156462585%;
  content: "";
}

.p-reason__slide-body {
  z-index: 1;
  width: 100%;
  max-width: 29rem;
  margin-left: -2.5rem;
  padding: 3.3125rem 1.4375rem;
  background: #ffffff;
}

.p-reason__slide-title {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  min-height: 3.9375rem;
  padding-left: 10px;
  border-left: solid #FC6652 11px;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.p-reason__slide-text {
  margin-top: 1.25rem;
}

.p-reason__swiper {
  position: relative;
  max-width: 93.75rem;
  margin: 5.5625rem auto 0;
}

.p-reason__swiper .swiper-button-prev {
  z-index: 1;
  left: 14.2%;
  width: 57px;
  height: 57px;
  background: url(../images/swiper-icon.svg) no-repeat;
  background-size: contain;
}

.p-reason__swiper .swiper-button-next {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  z-index: 1;
  right: 14.2%;
  width: 57px;
  height: 57px;
  transform: rotate(180deg);
  background: url(../images/swiper-icon.svg) no-repeat;
  background-size: contain;
}

.p-reason__swiper-bottom-img {
  width: 100%;
  max-width: 25.875rem;
  margin: 1.0625rem auto 0;
}

.p-reason__swiper-inner {
  position: relative;
}

.p-support {
  padding: 8rem 0 8.3125rem;
}

.p-support__title-block {
  text-align: center;
}

.p-support__sub-title {
  display: block;
  font-weight: 700;
  font-size: 1.0625rem;
  line-height: 1.5294117647;
  letter-spacing: 0.04em;
}

.p-support__title {
  display: inline-block;
  position: relative;
  padding: 0 6.25rem;
  font-weight: 700;
  font-size: 2.125rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-decoration-color: #FFD800;
  text-decoration-thickness: 5px;
  /* 線の太さ */
  text-underline-offset: 8px;
}

.p-support__title::before,
.p-support__title::after {
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: "";
}

.p-support__title::before {
  left: 0;
  width: 4.4125rem;
  height: 6.5625rem;
  background: url(../images/support-icon-1.svg) no-repeat center;
  background-size: contain;
}

.p-support__title::after {
  right: 0;
  width: 5.125rem;
  height: 6.125rem;
  background: url(../images/support-icon-2.png) no-repeat center;
  background-size: contain;
}

.p-support__text {
  margin-top: 1.59375rem;
}

.p-support__content {
  margin-top: 5.1875rem;
}

.p-support__lists {
  -webkit-column-gap: 0.625rem;
  -moz-column-gap: 0.625rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 0.625rem;
  row-gap: 0.625rem;
  width: 100%;
  max-width: 53.75rem;
  margin: 0 auto;
}

.p-support__list {
  position: relative;
  width: 100%;
  /* 幅を固定しない場合は100%だけでいい */
  max-width: 17.5rem;
  /* 任意の固定サイズが必要であれば */
  overflow: hidden;
}

.p-support__list img {
  -o-object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-support__list::before {
  display: block;
  padding-top: 64.2857142857%;
  content: "";
}

.p-works {
  padding: 8.5625rem 0 8.4375rem;
}

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

.p-works__swiper {
  position: relative;
  margin-top: 5.5rem;
}

.p-works__swiper .swiper-button-prev {
  z-index: 1;
  left: 24%;
  width: 57px;
  height: 57px;
  background: url(../images/swiper-icon.svg) no-repeat;
  background-size: contain;
}

.p-works__swiper .swiper-button-next {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  z-index: 1;
  right: 24%;
  width: 57px;
  height: 57px;
  transform: rotate(180deg);
  background: url(../images/swiper-icon.svg) no-repeat;
  background-size: contain;
}

.p-works__price-1 {
  margin-top: 4.4375rem;
}

.p-works__price-1 .l-inner {
  max-width: calc(900px + 25px * 2);
}

.p-works__swiper-inner {
  max-width: 1500px;
  margin: 0 auto;
}

.c-normal-text {
  font-size: 1rem;
  line-height: 1.625;
  letter-spacing: 0.04em;
}

.c-text-orange {
  color: #FC8052;
}

.c-text-green {
  color: #8AC43A;
}

.c-text-inline-block {
  display: inline-block;
}

.sp {
  display: none;
}

@media screen and (max-width: 880px) {
  html {
    font-size: 1.8181818182vw;
  }
}

@media screen and (max-width: 768px) {
  .u-desktop {
    display: block;
  }

  .u-mobile {
    display: none;
  }

  html {
    font-size: 16px;
  }

  a:hover {
    opacity: 0.7;
  }

  .c-btn-white__inner {
    font-size: 1.1875rem;
  }

  .c-cta-info {
    max-width: 337px;
    margin: 0 auto;
  }

  .c-cta-info__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 1.375rem 0.4375rem 1.375rem;
  }

  .c-cta-info__icon {
    display: none;
    max-width: 3.125rem;
  }

  .c-cta-info__icon--sp {
    display: block;
    margin-right: 5px;
  }

  .c-cta-info__tel-block {
    margin-top: 0;
    margin-left: 0;
  }

  .c-cta-info__tel {
    font-size: 2.875rem;
  }

  .c-cta-info__tel::before {
    width: 1.8125rem;
    height: 1.8125rem;
    margin-right: 0.34375rem;
  }

  .c-cta-info__tel-text {
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }

  .c-cta-info__btn-block {
    margin-top: 0.9375rem;
    margin-left: 0;
  }

  .c-cta-info__btn-text {
    letter-spacing: 0;
  }

  .c-cta-info__btn-text span {
    font-size: 1.25rem;
  }

  .c-cta-info__flex-container {
    -webkit-box-align: center;
    -ms-flex-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
  }

  .c-section-title__text {
    margin-top: 0.75rem;
  }

  .l-bottom-info {
    display: block;
    z-index: 3;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    border-top: solid 4px #FC6652;
    background: #ffffff;
  }

  .l-footer {
    text-align: center;
  }

  .l-footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    flex-direction: column;
    justify-content: center;
    max-width: 24.375rem;
    padding-top: 1.75rem;
    padding-bottom: 6.25rem;
  }

  .l-footer__logo {
    max-width: 17.875rem;
    margin: 0 auto;
  }

  .l-footer__lists {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-column-gap: 0.875rem;
    -moz-column-gap: 0.875rem;
    column-gap: 0.875rem;
    row-gap: 0.5rem;
    justify-content: center;
    margin-top: 1.5rem;
  }

  .l-footer__right-block--pc {
    display: none;
  }

  .l-footer__right-block--sp {
    display: block;
    margin: 1.5625rem auto 0;
  }

  .l-header {
    z-index: 2;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: unset;
    overflow: hidden;
    background: unset;
  }

  .l-header__inner {
    padding-right: 0;
  }

  .l-header__info {
    display: none;
  }

  .l-header__logo {
    max-width: 5.5rem;
    margin-top: 7px;
  }

  .l-header__buger {
    -webkit-transition: all 0.3s;
    display: inline-block;
    z-index: 3;
    width: 2.4375rem;
    height: 2.4375rem;
    background: url("../images/buger-menu.svg") no-repeat center;
    background-size: contain;
    cursor: pointer;
    transition: all 0.3s;
  }

  .l-header__buger.is-open {
    background: url("../images/buger_close.svg") no-repeat center;
    background-size: contain;
  }

  .l-header__nav {
    display: none;
    z-index: 2;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100vh;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.9);
  }

  .l-header__nav-lists {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 80%;
    height: inherit;
    margin: 0 auto;
  }

  .l-header__nav-list {
    -webkit-box-align: center;
    -ms-flex-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    width: 100%;
  }

  .l-header__nav-list a {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 0.875rem;
  }

  .l-header__nav-list:not(:last-of-type) a {
    border-bottom: solid 1px #c9c9c9;
  }

  .l-header__nav-list a::after {
    -webkit-transition: all 0.3s;
    display: inline-block;
    padding-right: 0.5625rem;
    border-width: 8px 0 8px 13.9px;
    border-style: solid;
    border-color: transparent transparent transparent #333;
    content: "";
    transition: all 0.3s;
  }

  .l-header__nav-list + .l-header__nav-list {
    margin-top: 1rem;
  }

  .l-header__nav-logo {
    width: 8.3125rem;
    margin-bottom: 1.4375rem;
  }

  .l-inner {
    max-width: 100%;
    padding-right: 7.6%;
    padding-left: 7.6%;
  }

  .p-about__primary {
    padding: 6.25rem 0 6rem;
    background: url(../images/about-bg-sp.png) no-repeat center;
    background-size: cover;
  }

  .p-about__primary-content {
    margin-top: 3.375rem;
  }

  .p-about__secondary {
    padding: 6.25rem 0;
  }

  .p-about__secondary-img {
    max-width: unset;
  }

  .p-about__tertiary-img {
    -webkit-clip-path: polygon(100% 0, 100% 91%, 50% 100%, 0 91%, 0 0);
    clip-path: polygon(100% 0, 100% 91%, 50% 100%, 0 91%, 0 0);
  }

  .p-about__tertiary-img-wrapper {
    width: 84%;
    padding: 6.25rem 0 7.4375rem;
  }

  .p-about__tertiary-cta {
    margin-top: -6.25rem;
  }

  .p-about__tertiary-cta .p-cta {
    padding-top: 11.5rem;
    padding-bottom: 6.1875rem;
  }

  .p-about__quaternary {
    padding-top: 7rem;
  }

  .p-about__quaternary-title {
    line-height: 1.3;
  }

  .p-about__quaternary-title::before {
    left: -60px;
    width: 3.4375rem;
    height: 5.125rem;
  }

  .p-about__quaternary-title::after {
    right: -60px;
    width: 4rem;
    height: 4.8125rem;
  }

  .p-about__quaternary-cards {
    margin-top: 3.5rem;
  }

  .p-about__quaternary-media-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .p-about__quaternary-img {
    max-width: 100%;
  }

  .p-about__quaternary-media-text {
    margin-top: 1.4375rem;
    margin-left: 0;
  }

  .p-about__quaternary-swiper {
    display: block;
    max-width: 31.25rem;
    margin: 3.125rem auto 0;
  }

  .p-about__service {
    padding-top: 6.25rem;
  }

  .p-about__service::after {
    height: 100%;
  }

  .p-about__service-text {
    max-width: 20.625rem;
  }

  .p-about__service-cards {
    display: none;
  }

  .p-about__swiper .c-card {
    width: 71%;
    margin: 0 auto;
  }

  .p-about__primary .l-inner {
    padding-right: 0;
    padding-left: 0;
  }

  .p-about__primary-content .p-about__swiper {
    display: block;
    max-width: 34.375rem;
    margin: 0 auto;
  }

  .p-about__quaternary-swiper .c-card {
    max-width: 268px;
    margin: 0 auto;
  }

  .p-about__service-swiper {
    display: block;
    max-width: 26.875rem;
    margin: 2.3125rem auto 0;
  }

  .p-about__service .l-inner {
    padding-right: 0;
    padding-left: 0;
  }

  .p-about__service-title .c-title-dot::before {
    width: 2.3125rem;
    height: 6.4375rem;
    background: url(../images/dot-icon-left-sp.svg) no-repeat center;
    background-size: contain;
  }

  .p-about__service-title .c-title-dot::after {
    width: 2.3125rem;
    height: 6.4375rem;
    background: url(../images/dot-icon-right-sp.svg) no-repeat center;
    background-size: contain;
  }

  .p-accordion__list-question {
    width: 42px;
  }

  .p-accordion__inside {
    padding-right: 1.6625rem;
  }

  .p-accordion__inside::before {
    width: 42px;
  }

  .p-accordion__list + .p-accordion__list {
    margin-top: 1.75rem;
  }

  .p-cards {
    display: none;
  }

  .p-company {
    padding: 3.75rem 0;
  }

  .p-company__content th {
    font-size: 11px;
  }

  .p-company__content td {
    font-size: 13px;
  }

  .p-company__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 40px;
  }

  .p-company__link-logo {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .p-company__link a {
    width: 100%;
    margin-top: 20px;
    text-align: center;
  }

  .p-contact {
    padding: 3.75rem 0;
  }

  .p-contact__inner {
    padding: 0 1.875rem;
  }

  .p-contact__content {
    padding: 3.0625rem 0 6.25rem;
  }

  .p-cta {
    background: url(../images/cta-bg-sp.png) no-repeat center;
    background-size: cover;
  }

  .p-cta__title {
    font-size: 1.625rem;
    text-decoration: none;
  }

  .p-cta__title--sp {
    font-size: 1rem;
    text-decoration: none;
  }

  .p-cta__title--border {
    text-decoration: underline;
    text-decoration-color: #FFD800;
    text-decoration-thickness: 5px;
    /* 線の太さ */
    text-decoration-thickness: 3px;
    /* 線の太さ */
    text-underline-offset: 3px;
    text-underline-offset: 9px;
  }

  .p-cta__sub-title {
    margin-top: 2.1875rem;
    font-size: 1.3125rem;
  }

  .p-cta__sub-title::before,
  .p-cta__sub-title::after {
    width: 1.8125rem;
    height: 1.625rem;
  }

  .p-cta__sub-title span {
    font-size: 2.6875rem;
  }

  .p-cta__lists-block {
    position: relative;
    max-width: 24.375rem;
    margin: 3px auto 0;
    padding-left: 5%;
  }

  .p-cta__lists-block::after {
    display: block;
    position: absolute;
    right: 0%;
    bottom: 0;
    width: 100%;
    max-width: 8.875rem;
    height: 11rem;
    background: url(../images/cta-img-photo-sp.png) no-repeat;
    background-size: cover;
    content: "";
  }

  .p-cta__lists {
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .p-cta__list {
    max-width: 15rem;
    min-height: 3.75rem;
    padding: 0 0.875rem;
    font-size: 1.125rem;
  }

  .p-cta__list + .p-cta__list {
    margin-top: 0.4375rem;
  }

  .p-cta__img-wrapper {
    max-width: 19.25rem;
    margin-top: 1.625rem;
  }

  .p-cta__img-wrapper::before {
    padding-top: 48.0519480519%;
  }

  .p-cta__info-block {
    margin-top: 2.1rem;
    padding: 0 1.25rem;
  }

  .p-cta.p-cta-s {
    padding: 0;
  }

  .p-cta__sub-title--cta-s {
    margin-top: 0;
  }

  .p-cta__inner--cta-s {
    padding: 6rem 0 5.75rem;
  }

  .p-customer__swiper .swiper-button-prev {
    top: 20%;
    left: 1%;
  }

  .p-customer__swiper .swiper-button-next {
    top: 20%;
    right: 1%;
  }

  .p-customer__title .c-section-title--ja::before {
    width: 200px;
    margin: 0 auto;
  }

  .p-customer__swiper-inner {
    max-width: 31.25rem;
  }

  .p-flow {
    padding: 6.25rem 0;
  }

  .p-flow__lists {
    display: none;
  }

  .p-flow__swiper {
    display: block;
  }

  .p-flow .l-inner {
    padding: 0;
  }

  .p-flow__swiper-inner {
    position: relative;
    max-width: 31.25rem;
    margin: 0 auto;
  }

  .p-flow__swiper .swiper-button-prev {
    top: 50%;
    left: 2%;
  }

  .p-flow__swiper .swiper-button-next {
    top: 50%;
    right: 2%;
  }

  .p-form__inner {
    padding: 0 1.6875rem;
  }

  .p-form__input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-top: 18px;
  }

  .p-form__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-box-align: unset;
    -ms-flex-align: unset;
    flex-direction: column;
    align-items: unset;
  }

  .p-form__item label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding-left: 0;
    font-weight: 500;
    font-size: 1rem;
  }

  .p-form__input--name input {
    width: 100%;
    max-width: 145px;
  }

  .p-form__input input::-webkit-input-placeholder,
  .p-form__textarea textarea::-webkit-input-placeholder {
    color: #D5D5D5;
    font-size: 14px;
  }

  .p-form__input input::-moz-placeholder,
  .p-form__textarea textarea::-moz-placeholder {
    color: #D5D5D5;
    font-size: 14px;
  }

  .p-form__input input:-ms-input-placeholder,
  .p-form__textarea textarea:-ms-input-placeholder {
    color: #D5D5D5;
    font-size: 14px;
  }

  .p-form__input input::-ms-input-placeholder,
  .p-form__textarea textarea::-ms-input-placeholder {
    color: #D5D5D5;
    font-size: 14px;
  }

  .p-form__input input::placeholder,
  .p-form__textarea textarea::placeholder {
    color: #D5D5D5;
    font-size: 14px;
  }

  .p-form__input input + input {
    margin-left: 15px;
  }

  .p-form__textarea {
    width: 100%;
    margin-top: 0.75rem;
  }

  .p-form__textarea textarea {
    font-size: 16px;
  }

  .p-form__item--textarea label {
    margin-top: 0;
  }

  .p-form__button-inner {
    margin-top: 2.1875rem;
  }

  .p-privacy-policy__text-area {
    padding: 1.4375rem 1.6875rem;
  }

  .p-form__agree {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 390px;
    margin: 1.4375rem auto 0;
  }

  .p-global-nav {
    display: none;
  }

  .p-main-visual__link-block {
    display: none;
  }

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

  .p-massage__content-img {
    max-width: 15.875rem;
    margin: 0 auto;
  }

  .p-massage__content-body {
    margin-top: 2.5rem;
    margin-left: 0;
  }

  .p-reason__slide-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    flex-direction: column-reverse;
    justify-content: space-between;
    max-width: 17.375rem;
    min-height: 33.3125rem;
    margin: 0 auto;
    padding: 1.3125rem 1.5rem;
    background: #ffffff;
  }

  .p-reason__slide-img {
    max-width: 236px;
    margin-top: 1.0625rem;
  }

  .p-reason__slide-img::before {
    padding-top: 53.813559322%;
  }

  .p-reason__slide-body {
    margin-left: 0;
    padding: 0;
  }

  .p-reason__slide-title {
    min-height: 2.875rem;
    font-size: 1.0625rem;
  }

  .p-reason__slide-text {
    margin-top: 0.6875rem;
  }

  .p-reason__swiper .swiper-button-prev {
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    left: 2%;
    transform: translateY(-50%);
  }

  .p-reason__swiper .swiper-button-next {
    -webkit-transform: rotate(180deg) translateY(50%);
    -ms-transform: rotate(180deg) translateY(50%);
    top: 50%;
    right: 2%;
    transform: rotate(180deg) translateY(50%);
  }

  .p-reason__swiper-inner {
    max-width: 31.25rem;
    margin: 0 auto;
  }

  .p-support {
    padding: 6rem 0 6.25rem;
  }

  .p-support__title {
    width: 100%;
    padding: 0;
  }

  .p-support__title::before,
  .p-support__title::after {
    top: 0;
  }

  .p-support__content {
    margin-top: 1.59375rem;
  }

  .p-support__lists {
    grid-template-columns: repeat(2, 1fr);
  }

  .p-works__swiper {
    max-width: 500px;
    margin: 5.5rem auto 0;
  }

  .p-works__swiper .swiper-button-prev {
    left: 1%;
  }

  .p-works__swiper .swiper-button-next {
    right: 1%;
  }

  .p-works__price-1 .l-inner {
    padding-right: 5.6%;
    padding-left: 5.6%;
  }

  .p-works__swiper .swiper-slide img {
    max-width: 17.375rem;
    margin: 0 auto;
  }

  .swiper-button-prev {
    left: 2%;
    width: 57px;
    height: 57px;
    background: url(../images/swiper-icon.svg) no-repeat;
    background-size: contain;
  }

  .swiper-button-next {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    position: absolute;
    right: 2%;
    width: 57px;
    height: 57px;
    transform: rotate(180deg);
    background: url(../images/swiper-icon.svg) no-repeat;
    background-size: contain;
  }

  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}

@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
/*# sourceMappingURL=map/style.css.map */