@charset "UTF-8";

/*
font-family: "Zen Kaku Gothic New", sans-serif;
font-family: "Cormorant Garamond", serif;
font-family: "Zen Old Mincho", serif;
*/

:root {
  --black: #555555;
  --white: #ffffff;
  --gray: #969398;
  --gray-50: #f5f5f5;
  --gray-200: #dfdfdf;
  --pinkbeige: #CAAEA5;
  --pinkbeige-100: #F2EEE7;
  --pinkbeige-300: #CDBCA4;
  --bg-pinkbeige: #DDCAC4;
  --pinkbeige-400: #CAAEA5;
  --pinkbeige-500: #b28d81;
  --pinkbeige-800: #6c5148;
  --brown-50: #f9f6f3;
  --brown-100: #f2eee7;
  --brown-300: #CDBCA4;
  --brown-400: #B89D7F;
  --LINE-Green: #22a959;
  --text-strong: #B74621;
}


body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: var(--black);
  background-color: #F9F5F0;
}

/* リキッドレイアウト対応 */
html {
  font-size: 10px;
  scroll-behavior: smooth;
}

@media (max-width: 375px) {
  html {
    font-size: 2.66666666vw;
  }
}
/*
@media screen and (min-width: 768px) {
  html {
    font-size: 2.66666666vw;
  }
}
*/
@media screen and (min-width: 1050px) {
  html {
    font-size: 10px;
  }
}

/* pcの電話番号発信対応 */
/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.7;
  }
}

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

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

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

/* Set core root defaults */
html.is-fixed,
html.is-fixed body {
  overflow: hidden;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}
body.is-inactive {
	height: 100vh;
	overflow: hidden;
}

/* 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]) {
  text-decoration-skip-ink: auto;
}

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

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -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-drawer,
.c-drawer span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-color: #0e2847;
}

.c-drawer {
  position: relative;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .c-drawer {
  position: relative;
  width: 32px;
  height: 32px;
  }
}
.c-drawer span {
  position: absolute;
  left: 0;
  width: 75%;
  height: 2px;
  background-color: #5E5657;
}

.c-drawer span:nth-of-type(1) {
  top: 20%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}

.c-drawer span:nth-of-type(2) {
  top: 40%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}

.c-drawer span:nth-of-type(3) img:last-of-type {
  display: none;
}

.c-drawer.c-active span:nth-of-type(3) img:last-of-type {
  display: inline-block;
}

.c-drawer.c-active span:nth-of-type(3) img:first-of-type {
  display: none;
}

.c-drawer span:nth-of-type(3) {
  top: 70%;
  left: 50%;
  -webkit-transform: translate3d(-51%, -50%, 0);
  transform: translate3d(-51%, -50%, 0);
  height: auto;
  background-color: transparent;
  width: 80%;
}
.c-drawer span:nth-of-type(4) {
	opacity: 0;
  top: 70%;
  left: 50%;
  -webkit-transform: translate3d(-51%, -50%, 0);
  transform: translate3d(-51%, -50%, 0);
  height: auto;
  background-color: transparent;
  width: 80%;
  -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
}

.c-drawer[aria-expanded="true"] span:nth-of-type(1),
.c-drawer.c-active span:nth-of-type(1) {
  width: 84%;
  top: 36%;
  -webkit-transform: translate3d(-52%, -100%, 0) rotate(-18.5deg) scale(0.8);
  transform: translate3d(-52%, -100%, 0) rotate(-16.5deg) scale(0.8);
  /* background-color: var(--pinkbeige-800); */
  background-color: var(--white);
}

.c-drawer[aria-expanded="true"] span:nth-of-type(2),
.c-drawer.c-active span:nth-of-type(2) {
  width: 84%;
  top: 33%;
  opacity: 1;
  -webkit-transform: translate3d(-51%, -50%, 0) rotate(18.5deg) scale(0.8);
  transform: translate3d(-51%, -50%, 0) rotate(16.5deg) scale(0.8);
  /* background-color: var(--pinkbeige-800); */
  background-color: var(--white);
}

.c-drawer[aria-expanded="true"] span:nth-of-type(3),
.c-drawer.c-active span:nth-of-type(3) {
  top: 70%;
  width: 80%;
}
.c-drawer[aria-expanded="true"] span:nth-of-type(4),
.c-drawer.c-active span:nth-of-type(4) {
	opacity: 1;
  top: 70%;
  width: 80%;
}

.c-page-text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
}
.c-page-text a {
  text-decoration: underline;
}
.c-section-text {
  margin-top: 32px;
  margin-top: 2rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
}

@media screen and (min-width: 768px) {
  .c-section-text {
    margin-top: 2.5rem;
    text-align: center;
  }
}

.c-section-text span {
  font-weight: 700;
}

.c-section-text--left {
  text-align: left;
}
/* 本データ　最下部に移動  */
.c-section-title {
  position: relative;
}
/* 本データ　最下部に移動  */
.c-section-title-sub {
  color: #000;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 6.4vw;
  font-weight: 700;
  line-height: 130%; /* 41.6px */
  margin-bottom: 16px;
}
#top-case.c-section-title-sub {
  margin-top: 48px;
}
.p-section-cta .c-section-title .c-section-title-en {
  font-family: "EB Garamond", serif;
  font-size: 8vw;
}

.c-section-title::before {
  display: block;
  content: attr(data-en);
  font-family: "EB Garamond", serif;
  color: #262626;
  font-size: 56px;
  font-size: 3.5rem;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
}

@media screen and (max-width: 768px) {
  .c-section-title::before {
    font-size: 3rem;
  }
}
@media screen and (min-width: 768px) {
  .c-section-title::before {
    font-size: 4.5rem;
  }
  .c-section-title-sub {
    font-size: 32px;
    margin-bottom: 24px;
  }
  #top-case.c-section-title-sub {
    margin-top: 56px;
  }
}

@media screen and (min-width: 768px) {
  .c-section-title--left::before {
    text-align: left;
  }

  .p-section-cta .c-section-title .c-section-title-en {
    font-family: "EB Garamond", serif;
    font-size: 80px;
  }
}

.c-tel-btn a {
  padding-top: 0px;
  padding-top: 0rem;
  padding-bottom: 0px;
  padding-bottom: 0rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .c-tel-btn a {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}

.c-tel-btn__img {
  width: 35px;
  width: 2.1875rem;
}

@media screen and (min-width: 768px) {
  .c-tel-btn__img {
    width: 2.1875rem;
  }
}

.c-tel-btn__wrapper {
  padding-left: 4px;
  padding-left: 0.25rem;
}

@media screen and (min-width: 768px) {
  .c-tel-btn__wrapper {
    padding-left: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.c-tel-btn__text {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

@media screen and (min-width: 768px) {
  .c-tel-btn__text {
    font-size: 1.25rem;
  }
}

.c-tel-btn__number {
  padding-top: 4px;
  padding-top: 0.25rem;
  padding-bottom: 2px;
  padding-bottom: 0.125rem;
  display: block;
  font-family: "EB Garamond", serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .c-tel-btn__number {
    padding-top: unset;
    padding-bottom: unset;
    padding-left: 0.5rem;
    font-size: 1.875rem;
  }
}

.navShow-center {
  visibility: hidden;
  opacity: 0;
}

@media screen and (min-width: 768px) {
  .navShow-center {
    visibility: visible;
    opacity: 1;
  }
}

.navShow-center.is-open {
  visibility: visible;
  -webkit-animation: navOpen 0.3s forwards;
  animation: navOpen 0.3s forwards;
}

@-webkit-keyframes navOpen {
  100% {
    opacity: 1;
  }
}

@keyframes navOpen {
  100% {
    opacity: 1;
  }
}

.navShow-center::after {
  visibility: hidden;
  opacity: 0;
  background-color: #f6f6f6;
  position: fixed;
  content: "";
  top: 60px;
  top: 3.75rem;
  left: 0;
  right: 0;
  width: 100%;
  height: 120%;
  z-index: -1;
}

.navShow-center.is-open::after {
  visibility: visible;
  opacity: 0;
  -webkit-animation: navOpen 0.3s forwards;
  animation: navOpen 0.3s forwards;
}

.navShow-center.is-close::after {
  visibility: visible;
  opacity: 1;
  -webkit-animation: navClose 0.3s forwards;
  animation: navClose 0.3s forwards;
}

.navShow-center.is-close {
  visibility: visible;
  opacity: 1;
  -webkit-animation: navClose 0.3s forwards;
  animation: navClose 0.3s forwards;
}

@media screen and (min-width: 768px) {
  .navShow-center.is-close {
    visibility: hidden;
    opacity: 1;
  }
}

@-webkit-keyframes navClose {
  100% {
    visibility: hidden;
    opacity: 0;
  }
}

@keyframes navClose {
  100% {
    visibility: hidden;
    opacity: 0;
  }
}

.l-campaign-margin {
  margin-top: 18px;
  margin-top: 1.125rem;
  margin-bottom: 80px;
  margin-bottom: 5rem;
}

@media screen and (min-width: 768px) {
  .l-campaign-margin {
    margin-top: 3rem;
    margin-bottom: 6.25rem;
  }
}

.l-common-margin-bottom {
  margin-bottom: 80px;
  margin-bottom: 5rem;
}

@media screen and (min-width: 768px) {
  .l-common-margin-bottom {
    margin-bottom: 6.25rem;
  }
}

.l-common-margin.u-section-full-width {
  max-width: initial;
  padding: 10.666vw 0;
}

@media screen and (min-width: 768px) {
  .l-common-margin.u-section-full-width {
    padding: 80px 0;
  }
}

.l-common-section-margin {
  margin-top: 80px;
  margin-top: 5rem;
}

@media screen and (min-width: 768px) {
  .l-common-section-margin {
    margin-top: 6.25rem;
  }
}

/* .l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
}
.l-header.is-fixed-top,
.l-header.is-fixed-top.is-fixed {
  position: fixed;
}

@media screen and (min-width: 768px) {
  .l-header {
    position: absolute;
  }
}

@media screen and (min-width: 768px) {
  .l-header::before {
    position: relative;
  }
}

@media screen and (min-width: 768px) {
  .l-header.is-fixed {
    position: fixed;
    -webkit-transform: translateY(-6.25rem);
    transform: translateY(-6.25rem);
    -webkit-animation-name: u-slideIn-header;
    animation-name: u-slideIn-header;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@-webkit-keyframes u-slideIn-header {
  from {
    -webkit-transform: translateY(-6.25rem);
    transform: translateY(-6.25rem);
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes u-slideIn-header {
  from {
    -webkit-transform: translateY(-6.25rem);
    transform: translateY(-6.25rem);
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
} */


.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
}

@media screen and (min-width: 768px) {
  .l-header {
    position: absolute;
  }
}

@media screen and (min-width: 768px) {
  .l-header::before {
    position: relative;
  }
}

@media screen and (min-width: 768px) {
  .l-header.is-fixed {
    position: fixed;
    -webkit-transform: translateY(-6.25rem);
    transform: translateY(-6.25rem);
    -webkit-animation-name: u-slideIn-header;
    animation-name: u-slideIn-header;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@-webkit-keyframes u-slideIn-header {
  from {
    -webkit-transform: translateY(-6.25rem);
    transform: translateY(-6.25rem);
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes u-slideIn-header {
  from {
    -webkit-transform: translateY(-6.25rem);
    transform: translateY(-6.25rem);
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

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

@media screen and (min-width: 768px) {
  .l-inner-content {
    max-width: 890px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

@media screen and (max-width: 768px) {
  .l-inner-content {
    max-width: initial;
    padding-right: 0;
    padding-left: 0;
  }
}

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

@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1050px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

@media screen and (max-width: 767px) {
  .l-inner {
    max-width: initial;
    padding-right: 6.4vw;
    padding-left: 6.4vw;
  }
}

.l-main {
  padding-top: 60px;
}

@media screen and (min-width: 768px) {
  .l-main {
	position: relative;
    padding-top: 169px;
  }
}

/* ページネーション */
.p-plan-mv__pagination.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: -1.875rem;
}

/* ドット */
.p-plan-mv__pagination.swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  width: 2.5rem;
  height: 2px;
  margin: 6.4px;
  margin: 0.85rem 6px;
  background: var(--gray-200);
  cursor: pointer;
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 0;
}

/*アクティブなときのスタイル*/
.p-plan-mv__pagination.swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--gray-800);
}

.p-section-cta__inner {
  padding-top: 16px;
  padding-top: 1rem;
  padding-bottom: 16px;
  padding-bottom: 1rem;
}

@media screen and (min-width: 768px) {
  .p-section-cta__inner {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.p-section-cta__title {
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .p-section-cta__title {
    font-size: 2rem;
  }
}

.p-section-cta__wrapper {
  margin-top: 0;
  margin-top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 0.5rem;
  -moz-column-gap: 0.5rem;
  column-gap: 0.5rem;
}

@media screen and (min-width: 768px) {
  .p-section-cta__wrapper {
    margin-top: 2.5rem;
    -webkit-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
    column-gap: 1.5rem;
  }
}

.p-section-cta__btn {
  width: 106px;
  width: 6.625rem;
  height: 56px;
  height: 3.5rem;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .p-section-cta__btn {
    width: 24rem;
    height: 92px;
    height: 5.75rem;
  }
}

.p-mv-description {
	position: absolute;
	left: 6.111%;
	top: 30.4166vw;
}
.p-mv-catch {
	margin-bottom: 16px;
	font-family: "Zen Old Mincho", serif;
	font-size: 5.6rem;
	font-weight: 500;
	line-height: 1.3;
	color: var(--white);
}
.p-mv-lead {
	font-family: "Zen Old Mincho", serif;
	font-size: 1.8rem;
	font-weight: 600;
	line-height: 1.8;
	color: var(--white);
}

@media screen and (max-width: 767px) {
	
.p-mv-description {
	position: absolute;
	left: 6.4vw;
	top: 90.666vw;
}

.p-mv-catch {
	margin-bottom: 0;
	font-size: 8.533vw;
}
	.p-mv-lead {
		display: none;
	}
}

.p-top-mv__slide {
  position: relative;
  height: inherit;
}

.p-top-mv__picture {
  height: inherit;
}

.p-top-mv__picture img {
  -o-object-fit: cover;
  object-fit: cover;
}

.p-footer__logo {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  margin-top: 38px;
  margin-top: 2.375rem;
  max-width: 310px;
  max-width: 19.375rem;
  width: 100%;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .p-footer__logo {
    margin-top: 5rem;
    max-width: 31.25rem;
  }
}

.p-global-nav__close {
  margin-top: 48px;
  margin-top: 3rem;
  margin-bottom: 99px;
  margin-bottom: 6.1875rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 335px;
  max-width: 20.9375rem;
  width: 100%;
}

.p-header__upside {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  padding: 0 4.266vw;
  height: 60px;
  background-color: #F9F5F0;
}
/* .home .p-header__upside {
	background-color: transparent;
}
.is-fixed-top .p-header__upside {
	background-color: transparent;
} */

@media screen and (min-width: 768px) {
  .p-header__upside {
  	padding: 0 32px;
    padding-bottom: 8px;
    height: 89px;
    align-items: flex-end;
  }
}
@media screen and (min-width: 768px) {
  .p-header.is-fixed .p-header__upside {
  	display: none;
  }
    .p-header.is-fixed.is-fixed-top .p-header__upside {
  	height: 80px;
    background: transparent;
  }
}
@media screen and (max-width: 767px) {
  .p-header.is-fixed .p-header__upside {
  	/* height: 14.933vw; */
    /* background: var(--pinkbeige-500); */
  }
    .p-header.is-fixed.is-fixed-top .p-header__upside {
    /* background: transparent; */
  }
}






.u-hidden-sp {
  display: none;
}

@media screen and (min-width: 768px) {
  .u-hidden-sp {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-hidden-pc {
    display: none;
  }
}

.u-newline {
  display: inline-block;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

/* FOOTER CTA */

.p-footer .p-section-cta {
  background: transparent;
}

.p-footer .p-section-cta__inner {
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
  z-index: 1;
}

.p-section-cta .c-section-title::before {
  content: none;
}

.p-section-cta .c-section-title::after {
  content: none;
}


.p-footer .p-section-cta .p-btn__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}


/*----------------------------------------------------------------------------
 MODAL
----------------------------------------------------------------------------*/

.p-modal {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  z-index: 10000;
}

/*----------------------------------------------------------------------------
 JS BUTTN SCROLL 2023.11.22追加
----------------------------------------------------------------------------*/

.p-btn-scroll-top {
  opacity: 0;
  position: fixed;
  width: 64px;
  height: 64px;
  bottom: 32px;
  right: 32px;
  z-index: 10;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.p-btn-scroll-top.is-fixed {
  opacity: 1;
}
.p-btn-scroll-top a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/common/btn_pagetop.png) no-repeat;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .p-btn-scroll-top {
    width: 11.733vw;
    height: 11.733vw;
    bottom: 19.2vw;
    right: 4.266vw;
  }
}

/* テンプレートパーツ YouTubeバナー */
.banner-youtube {
  margin: 0 auto;
  background: var(--gray-200);
  padding: 40px 0;
}
.banner-youtube img {
  height: auto;
}
.banner-youtube__inner {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: flex-end;
}
.banner-youtube__wrap-left {
  max-width: 498px;
  width: 51.129%;
}
.banner-youtube__title {
  color: var(--text-gray-800);
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 130%;
  width: fit-content;
  margin: 0 auto 16px;
  position: relative;
}
.banner-youtube__title::before {
  content: "";
  width: 14px;
  height: 23px;
  background: url(../images/common/icon_voiceline-milktea.svg) no-repeat
    top/cover;
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%) scale(-1, 1);
}
.banner-youtube__title::after {
  content: "";
  width: 14px;
  height: 23px;
  background: url(../images/common/icon_voiceline-milktea.svg) no-repeat
    top/cover;
  position: absolute;
  left: -18px;
  top: 50%;
  transform: translateY(-50%);
}
.banner-youtube__link {
  margin-top: 12px;
}

.banner-youtube__wrap-right {
  max-width: 498px;
  width: calc(41.71% - 20px);
  height: auto;
}
.banner-youtube__subtitle {
  width: 100%;
  padding: 4px 0;
  margin-top: -3px;
  background-color: var(--gray-800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Serif JP";
  font-weight: 700;
  line-height: 130%;
  color: #fff;
}
.banner-youtube__subtitle img {
  width: 32px;
  height: 32px;
  margin: 0 2px;
}
.banner-youtube__wrap-inner {
  padding: 8px 16px 16px;
  background-color: #fff;
  position: relative;
  height: 360px;
}
.banner-youtube__movie {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 131px;
}
.banner-youtube__movie-title {
  font-weight: 500;
  line-height: 130%;
  text-align: center;
  height: 122px;
  border: 1px solid #cbc4c5;
  padding: 0 8px;
  display: grid;
  place-items: center;
}
.banner-youtube__movie .youtube-hikomaro {
  width: 303px;
  display: block;
}
.banner-youtube__info {
  margin-top: 24px;
}
.banner-youtube__info .info-items {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}
.banner-youtube__info .info-items li {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray-100);
}
.banner-youtube__info .info-item-date {
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  font-family: "Noto Sans JP";
  display: flex;
  align-items: center;
}
.banner-youtube__info .info-item-date span {
  background: var(--gray-700);
  padding: 4px 8px;
  margin-right: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 130%;
}
.banner-youtube__info .info-item-content {
  max-height: 40px;
  font-weight: 700;
  text-overflow: ellipsis;
  width: 100%;
  display: -webkit-box;
  font-size: 14px;
  line-height: 1.3;
  margin: 0 auto;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  padding-top: 4px;
}
.banner-youtube__wrap-inner .btn-viwe-more {
  position: absolute;
  bottom: 12px;
  justify-content: space-between;
  width: 93%;
}
.banner-youtube__wrap-inner .btn-viwe-more span.btn-more-border {
  max-width: 130px;
}

@media (max-width: 599px) {
  .banner-youtube__inner {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .banner-youtube__wrap-inner {
    height: 100%;
    padding-top: 20px;
  }
  .banner-youtube__wrap-left {
    width: 89.33%;
  }
  .banner-youtube__wrap-right {
    width: 89.33%;
  }
  .banner-youtube__title {
    font-size: clamp(14px, 4.26vw, 16px);
    margin-bottom: 8px;
  }
  .banner-youtube__movie {
    height: auto;
    flex-direction: column;
    align-items: center;
  }
  .banner-youtube__movie-title {
    font-weight: 500;
    line-height: 130%;
    text-align: center;
    border: none;
    height: auto;
    position: relative;
  }
  .banner-youtube__movie-title::after {
    content: "";
    width: 14px;
    height: 23px;
    background: url(../images/common/icon_voiceline-milktea.svg) no-repeat
      top/cover;
    position: absolute;
    left: -12px;
    top: 35%;
    transform: translateY(-50%);
  }
  .banner-youtube__movie-title::before {
    content: "";
    width: 14px;
    height: 23px;
    background: url(../images/common/icon_voiceline-milktea.svg) no-repeat
      top/cover;
    position: absolute;
    right: -12px;
    top: 35%;
    transform: translateY(-50%) scale(-1, 1);
  }
  .banner-youtube__wrap-inner .btn-viwe-more {
    position: unset;
    margin: 0;
    width: 100%;
  }
  .banner-youtube__wrap-inner .btn-viwe-more span.btn-more-border {
    width: 8px;
  }
}
/* ▲ テンプレートパーツ YouTubeバナー */



/*----------------------------------------------------------------------------
 治療詳細
----------------------------------------------------------------------------*/

.l-operation {
	/* background: var(--brown-100); */
}
/* MV */
.p-page-header-operation {
	height: 600px;
	background-size: cover;
	background-position: center;
}
.p-page-header-themacool {
	background-image: url(../images/page/operation/bg_mv_themacool.jpg);
}
.p-inner-mv {
	position: relative;
	width: 100%;
	height: 100%;
}
.p-mv-img-operation-themacool {
	display: block;
	width: 618px;
	position: absolute;
	bottom: 0;
	right: -140px;
	z-index: 0;
}
.p-mv-description-operation {
	position: relative;
	padding: 58px 0 21px;
	width: 578px;
	z-index: 1;
}
.p-description-head  {
	display: flex;
	align-items: center;
	gap: 15px;
}
.p-head-description {
	font-size: 2.8rem;
	font-weight: 500;
	line-height: 1.8;
	color: var(--pinkbeige-800);
}
.p-head-caption {
	padding: 0 12px;
	font-size: 2.4rem;
	font-weight: 500;
	line-height: 1.8;
	color: var(--white);
	background: var(--pinkbeige-500);
	border-radius: 8px;
}
.p-mv-lead-operation {
	margin: 20px 0 40px;
	padding: 20px 0;
	border-top: 1px solid var(--pinkbeige);
	border-bottom: 1px solid var(--pinkbeige);
}
.p-mv-lead-txt {
	font-family: "Zen Old Mincho", serif;
	font-size: 4.8rem;
	font-weight: 600;
	line-height: 1.5;
	color: var(--pinkbeige-800);
}
.p-mv-price {
	display: flex;
	flex-flow: column;
	gap: 16px;
}
.p-mv-price-item {
	padding: 8px 0;
	width: 100%;
	text-align: center;
	color: var(--white);
	background: var(--pinkbeige-800);
	border-radius:4px;
}
.p-mv-price-detail {
	font-size: 2.4rem;
	line-height: 1.8;
}
.p-mv-price-detail-txt {
	font-size: 4.0rem;
	line-height: 1.0;
}
.p-mv-price-tax {
	font-size: 1.6rem;
	line-height: 1.8;
}
.p-mv-price-note {
	font-size: 1.4rem;
	line-height: 1.8;
}

@media screen and (max-width: 768px) {
.p-inner-mv {
	padding: 0;
}
.p-page-header-operation {
	height: unset;
}
.p-page-header-themacool {
	background-image: none;
	border-bottom: 1px solid var(--white);
}

.p-mv-img-operation-themacool {
	display: block;
	width: 100%;
	position: relative;
	bottom: auto;
	right: auto;
	z-index: 0;
	background-image: url(../images/page/operation/bg_mv_themacool_sp.jpg);
	background-size: cover;
}
.p-mv-description-operation {
	position: relative;
	padding: 5.333vw 6.4vw;
	width: 100%;
	z-index: 1;
}
.p-description-head  {
	gap: 2.4vw;
}


.p-head-description {
	font-size: 5.333vw;
}
.p-head-caption {
	padding: 0 1.866vw;
	font-size: 4.266vw;
	border-radius: 3px;
}
.p-mv-lead-operation {
	margin: 2.666vw 0 4.8vw;
	padding: 2.666vw 0;
	border-top: 1px solid var(--pinkbeige);
	border-bottom: 1px solid var(--pinkbeige);
}
.p-mv-lead-txt {
	font-size: 7.2vw;
}
.p-mv-price {
	gap: 2.4vw;
}
.p-mv-price-item {
	padding: 8px 0;
	width: 100%;
	text-align: center;
	color: var(--white);
	background: var(--pinkbeige-800);
	border-radius: 3px;
}
.p-mv-price-detail {
	font-size: 4.266vw;
}
.p-mv-price-detail-txt {
	font-size: 6.933vw;
}
.p-mv-price-tax {
	font-size: 2.666vw;
}
.p-mv-price-note {
	font-size: 2.4vw;
}


}


/* おすすめ */
.p-operation-recommend {
  
}
.p-operation-recommend__wrap {
  background-color: var(--brown-50);
  position: relative;
  margin-right: auto;
  margin-left: auto;
  padding: 4rem 10.4rem 4rem 10.4rem;
  max-width: 100%;
}
.p-operation-recommend__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.0rem 2.4rem;
}
.p-operation-recommend_list-item {
	position: relative;
  padding-left: 2.6rem;
  line-height: 1.3;
  font-size: 2.0rem;
font-family: "Zen Old Mincho", serif;
}
.p-operation-recommend_list-item:before {
  content: "";
  position: absolute;
  width: 1.8rem;
  height: 1.8rem;
  border: 0.25rem solid var(--pinkbeige-300);
  border-radius: 50%;
  top: 4px;
  left: 0;
}
@media (max-width: 768px) {
.p-operation-recommend__wrap {
  padding: 10.666vw 5.333vw;
}
.p-operation-recommend__list {
  display: flex;
  flex-flow: column;
  grid-template-columns: unset;
  gap: 5.333vw;
}
}
@media (430px < width <= 768px) {
}

/* 治療説明 */
.p-operation-outline {
  margin-bottom: 7.5rem;
}
.p-operation-outline__wrap {
  display: flex;
  flex-direction: row-reverse;
  gap: 8.0rem;
}
.p-operation-outline__img {
  max-width: 336px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-operation-outline__text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  width: 100%;
}
.p-operation-outline__text strong {
	color: var(--text-strong);
}
@media (max-width: 768px) {
  .p-operation-outline {
    margin-bottom: 5.5rem;
    margin-top: 2.5rem;
  }
  .p-operation-outline__wrap {
    flex-direction: column;
    gap: 1.5rem;
  }
  .p-operation-outline__img {
    max-width: 100%;
  }
}

/* 治療の効果 */
.p-operation-effect {
  margin-bottom: 12rem;
}
.p-operation-effect__items {
  display: flex;
  flex-direction: row;
  gap: 24px;
  column-gap: 20px;
  flex-wrap: wrap;
}
.p-operation-effect__item {
  padding: 1.6rem 1.6rem 1.6rem 5.7rem;
  width: calc(33.3333% - 1.333rem);
  font-family: "Zen Old Mincho", serif;
  font-size: 2.0rem;
  font-weight: 600;
  line-height: 1.3;
  background: var(--brown-50);
  position: relative;
  display: flex;
  align-items: center;
}
.p-operation-effect__item::before {
  content: "";
  background: url(../images/operation/icon-check-effect.svg) no-repeat top/cover;
  width: 2.4rem;
  height: 2.4rem;
  position: absolute;
  left: 1rem;
}
@media (max-width: 768px) {
  .p-operation-effect {
    margin-bottom: 5.5rem;
  }
  .p-operation-effect__items {
    flex-direction: column;
    gap: 5.333vw;
  }
  .p-operation-effect__item {
    width: 100%;
    min-height: 29.333vw;
    font-size: clamp(18px, 5.33vw, 20px);
    padding: 2.133vw 4.266vw 2.133vw 13.866vw;
    display: flex;
    align-items: center;
  }
}

/* 症例写真 */

.p-operation-case__wrap {
	max-width: 710px;
	margin: auto;
}
.p-article-case {
	display: flex;
	gap: 56px;
}
.p-article-case-item {
	background: var(--brown-50);
}

.p-article-case-item h3 {
	padding-bottom: 12px;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.3;
	text-align: center;
	background: var(--brown-100);
}
.p-article-case-item figure {
	padding-bottom: 16px;
	background: var(--brown-100);
}
.p-case-item-description {
	padding: 40px;
	background: var(--brown-50);
}
.p-block-case-item:not(:nth-last-of-type(1)) {
	margin-bottom: 16px;
}
.p-case-item-description dt {
	margin-bottom: 4px;
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--pinkbeige-500);
	line-height: 1.3;
}
.p-case-item-description dd {
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.8;
}


@media (max-width: 768px) {
.p-article-case {
	flex-flow: column;
	gap: 14.933vw;
}
.p-article-case-item h3 {
    padding-bottom: 3.2vw;
    font-size: 6.4vw;
}
.p-case-item-description {
    padding: 6.4vw;
}
}

/* 特徴 */

.p-operation-merit__article-item {
	padding: 40px;
	background: var(--brown-50);
}
.p-operation-merit__article-item:not(:nth-last-of-type(1)) {
	margin-bottom: 24px;
}
.p-operation-merit-item-heading {
	margin: 0 0 24px;
	padding: 0 32px;
	min-height: 124px;
	font-family: "Zen Old Mincho", serif;
	font-size: 2.8rem;
	font-weight: 600;
	line-height: 1.3;
	color: var(--pinkbeige-500);
	display: flex;
	align-items: center;
	background-image: url(../images/operation/bg_heading_operation_merit.png);
	background-size: cover;
	border-radius: 16px;
}
.p-operation-merit-item-no {
	margin: -30px 24px 0 0;
	font-family: "Cormorant Garamond", serif;
	font-size: 12.0rem;
	font-weight: 300;
	line-height: 1;
}
.p-operation-merit__article-item h4 {
	position: relative;
	margin-top: 24px;
	margin-bottom: 4px;
	padding-left: 12px;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.3;
}
.p-operation-merit__article-item h4:before {
	content: "";
	width: 6px;
	height: 6px;
	background: var(--black);
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 0.5em;
}
.p-operation-merit-item-text {
	margin-bottom: 24px;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.8;
}

.p-has-two-img {
	display: flex;
	align-items: center;
	gap: 12px;
}


@media (max-width: 768px) {
.p-operation-merit__article-item {
    padding: 5.333vw;
}
.p-operation-merit-item-heading {
    margin: 0 0 24px;
    padding: 3.2vw 3.2vw;
    min-height: initial;
    font-size: 5.333vw;
    background-image: url(../images/operation/bg_heading_operation_merit.png);
    background-size: cover;
    border-radius: 16px;
}
.p-operation-merit-item-no {
    margin: -0.25em 3.2vw 0 0;
    font-size: 17.066vw;
}
.p-has-two-img {
	flex-flow: column;
    align-items: center;
    gap: 0;
}

}
/* 関連 */

.p-operation-related__list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8%;
}
.p-operation-related_list-item {
	width: 24.4%;
	border: 1px solid var(--pinkbeige-800);
}
.p-operation-related_list-item a {
	display: block;
	padding: 12px 20px;
	font-size: 1.4rem;
	font-weight: 700;
  color: #6C5148;
	background-image: url(../images/common/icon_arrow_brown.png);
    background-size: 20px auto;
    background-repeat: no-repeat;
    background-position: right 10px center;
}

@media (max-width: 768px) {
.p-operation-related__list {
	flex-flow: column;
	gap: 2.133vw;
}
.p-operation-related_list-item {
    width: 100%;
}
}

/* 治療の流れ */
.p-operation-flow {
  margin-bottom: 7.5rem;
}
.p-operation-flow__contents {
  display: flex;
  gap: 35px;
  flex-direction: row;
  flex-wrap: wrap;
}
.p-operation-flow__item {
  width: 31%;
  height: auto;
}
.p-operation-treatment__title {
  margin: 8px 0;
  text-align: left;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.3;
}
.p-operation-treatment__text {
  margin-top: 0;
  font-size: 1.4rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .p-operation-flow {
    margin-bottom: 5.5rem;
  }
  .p-operation-flow__contents {
    flex-direction: column;
  }
  .p-operation-flow__item {
    width: 100%;
  }
}


/* 治療費 */
.p-operation-price {
  margin-bottom: 7.5rem;
}
.p-operation-price__wrap {
  padding: 0;
  border: 1px solid var(--pinkbeige);
}
.p-page-price__table {
  padding: 1rem;
  margin-bottom: 0 !important;
  font-size: 1.25rem;
  line-height: 1.3;
}
.p-page-price__table tr:nth-child(odd) {
	background: var(--brown-50);
}
.p-page-price__table tr:nth-child(even) {
	background: var(--white);
}
.p-operattin-price-note {
  margin-top: 8px;
  padding: 12px;
  border: 1px solid var(--gray-200);
}
.p-operattin-price-note .note-title {
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-weight: 700;
  line-height: 130%;
  margin-bottom: 8px;
}
.p-operattin-price-note p {
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-weight: 400;
  line-height: 130%;
}
.p-operation-price__wrap .first-price,
.p-operation-price__wrap b {
  color: #db9837;
}
.p-price-block:not(:nth-last-of-type(1)) {
  margin-bottom: 40px;
}
.p-price-block h3,
.p-price-block h4 {
  margin-bottom: 12px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.0;
}
.p-page-price__table td {
	font-size: 2.0rem;
	font-weight: 500;
	line-height: 1.3;
}
.p-page-price__table td:nth-last-of-type(1) {
  width: 35%;
  text-align: end;
  vertical-align: middle;
}
.tablepress > :where(tbody) > tr > * {
  color: var(--gray-800) !important;
}
.tablepress > * + tbody > * > *,
.tablepress > tbody > * ~ * > *,
.tablepress > tfoot > * > * {
  border-top: 1px solid var(--gray-200) !important;
}
.tablepress > :not(caption) > * > * {
  padding: 20px 12px !important;
}
/* ↑ 改修の余地あり */
.c-txt-taxin {
  font-size: 12px;
  line-height: 1.6;
  text-align: right;
  max-width: 1000px;
  width: 100%;
  margin: 8px auto 0;
}

@media (max-width: 768px) {
.tablepress > :not(caption) > * > * {
    padding: 4.266vw 3.2vw !important;
}
.p-page-price__table td {
	font-size: 4.266vw;
}
 .p-page-price__table .column-1 {
    width: 50%;
  }
  .p-page-price__table td:nth-last-of-type(1) {
    width: 50%;
  }
}

/* 副作用リスク */
.p-operation-risk {
  margin-bottom: 7.5rem;
}
.p-operation-risk__wrap {
  padding: 2.5rem;
  background: var(--brown-50);
}
.p-operation-risk__wrap h3 {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
}
.p-operation-risk__wrap p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
}
.p-operation-risk__wrap p:not(:nth-last-of-type(1)) {
	margin-bottom: 1em;
}

@media (max-width: 768px) {
  .p-operation-risk {
    margin-bottom: 5.5rem;
  }
  .p-operation-risk__wrap {
    padding: 5.333vw;
  }
}


/* 禁忌事項 */
.p-operation-caution {
  margin-bottom: 7.5rem;
}
.p-operation-caution__wrap {
  padding: 40px;
  background: var(--brown-50);
}
.p-operation-caution__items {
  display: flex;
  flex-direction: column;
}
.p-operation-caution__item {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  list-style: disc;
  margin-left: 1.0em;
}

@media (max-width: 768px) {
  .p-operation-caution {
    margin-bottom: 5.5rem;
  }
  .p-operation-caution__wrap {
    padding: 5.333vw;
  }
}



/* よくあるご質問 */
.p-qa {
  padding: 0 0;
}

.p-qa__inner {
  margin-top: 3rem;
  margin-bottom: 6.25rem;
}

.p-qa__block:not(:last-child) {
  margin-bottom: 100px;
}
.c-common-accordion__button {
  text-align: left;
  position: relative;
  cursor: pointer;
  z-index: 2;
  width: 100%;
}
.c-common-accordion__contents {
  display: none;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-qa__inner {
    margin-top: 2.5rem;
    margin-bottom: 5rem;
  }
}
.c-common-faq {
  background-color: var(--gray-50);
}

.c-common-faq__inner {
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}

@media screen and (min-width: 768px) {
  .c-common-faq__inner {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}

.c-common-faq__items {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media screen and (min-width: 768px) {
  .c-common-faq__items {
    margin-top: 2.25rem;
    gap: 2.5rem;
  }
}

.c-common-faq__items > li + li {
  margin-top: 16px;
  margin-top: 1rem;
}

@media screen and (min-width: 768px) {
  .c-common-faq__items > li + li {
    margin-top: 0;
  }
}

.c-common-faq__item {
	padding: 20px;
 position: relative;
  background-color: var(--brown-50);
  cursor: pointer;
}

.c-common-faq__button {
	position: relative;
  padding-left: 2.25rem;
  padding-right: 2.5rem;
  padding-bottom: 0;
  font-family: "Zen Old Mincho", serif;
  font-size: 4.8vw;
  font-weight: 700;
  line-height: 1.3;
  color: var(--pinkbeige-800);
}

@media screen and (min-width: 768px) {
  .c-common-faq__button {
  	padding: 0px 24px 0 28px;
    font-size: 1.8rem;
    line-height: 1.3;
  }
}
.c-common-faq__button span {
	position: absolute;
	left: 0;
	top: 0.7em;
}
.c-common-faq__button span::before {
  position: absolute;
  display: inline-block;
  content: "Q";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--pinkbeige-800);
  line-height: 1.0;
  font-family: "Cormorant Garamond", serif;
}
.c-heading-middle {
  margin-top: 4.3125rem;
  margin-bottom: 1em;
  font-size: 24px;
}
.c-heading-middle + .c-common-faq__items {
  margin-top: 0;
}
.c-common-faq__text {
  position: relative;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
}

@media screen and (min-width: 768px) {
  .c-common-faq__text {
	padding: 16px 16px 0px 28px;
  }
  .c-common-faq__button span::before {
    top: 50%;
  }
}

.c-common-faq__text::before {
  margin-top: 1.25rem;
  position: absolute;
  display: inline-block;
  content: "A";
  top: 0.2em;
  left: 0;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--pinkbeige-500);
  line-height: 1.0;
  font-family: "Cormorant Garamond", serif;
}

@media screen and (min-width: 768px) {
  .c-common-faq__text::before {
    margin-top: 1.25rem;
    padding-top: 0;
  }
}
@media screen and (max-width: 768px) {
.c-common-faq__button {
	padding-left: 7.2vw;
}

.c-common-faq__text {
	padding: 4.266vw 4.266vw 0 7.2vw;
}
.c-common-faq__text::before {
	font-size: 6.4vw;
}
}





