@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}


/*add css*/
.message__hidden{
	display: none;
}
.message__hidden__label {
  background: #D4BB74;
  color: #fff;
  display: block;
  font-size: 1.25rem;
  margin: 2.1875rem auto;
  padding: 0.9375rem 3.125rem;
  text-align: center;

	/*
	padding: 1em;
	display: block;
	color: #fff;
	background:#019ac6;*/
}
@media screen and (min-width: 768px) {
  .message__hidden__label {
    transition: 0.5s;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.message__hidden__label:hover {
  opacity: 0.4;
}
.message__hidden__label,
.content__hidden {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
}
.content__hidden {		/*本文*/
	height: 0;
	margin-bottom:10px;
	padding:0 20px;
	overflow: hidden;
}
.message__hidden:checked + .message__hidden__label + .content__hidden {	/*開閉時*/
	height: auto;
	padding:20px ;
	transition: all .3s;
}
.message__hidden:checked + .message__hidden__label{	/*開閉時*/
	display:none;
}

/* PC版：最終版CSS */
@media screen and (min-width: 768px) {
  .p-cta__map-wrap {
    display: flex;
    gap: 3.125rem;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    margin-top: 4.6875rem;
  }

  .p-cta__map {
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .p-cta__map img {
    width: auto;
    max-width: 100%;
    height: auto;
  }
}

/* スマホ版だけに幅指定 */
@media (max-width: 767px) {
  .p-cta__map-wrap {
    width: 22.5rem;
    margin-inline: auto;
    margin-top: 2.3125rem;
  }
}
/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

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

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

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

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

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
@media (max-width: 767px) {
  html {
    font-size: 4.1025641026vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 0.8333333333vw;
  }
}
@media (min-width: 1920px) {
  html {
    font-size: 16px;
  }
}

body {
  background: #fcfcfc;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  color: #454545;
  overflow-x: hidden;
}

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

button {
  background-color: transparent;
  outline: 0;
  border: none;
  padding: 0;
}

img {
  height: 100%;
  width: 100%;
}

.l-footer__copyright {
  background: #969696;
  color: #FFF;
  font-size: 0.5625rem;
  letter-spacing: 0.09em;
  padding: 0.9375rem 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-footer__copyright {
    font-size: 0.875rem;
    letter-spacing: 0.01em;
    padding: 1.5625rem 0;
  }
}

.l-header {
  background-color: #FFF;
  position: fixed;
  z-index: 999;
  top: 0;
  width: 100%;
}

.l-inner {
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 75rem;
  }
}

.l-main {
  display: grid;
  padding-top: 4.375rem;
}
@media screen and (min-width: 768px) {
  .l-main {
    padding-top: 2.5rem;
  }
}

.c-btn {
  background-image: url("../images/common/cta.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  height: 7.5rem;
}
@media screen and (min-width: 768px) {
  .c-btn {
    height: 11.625rem;
    transition: 0.5s;
    width: 100%;
  }
}

.c-btn:hover {
  opacity: 0.4;
}

.c-fadein {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s;
}

.c-fadein.active {
  opacity: 1;
  transform: none;
}

.c-title {
  color: #FFF;
  font-size: 0.875rem;
  letter-spacing: 0.0625rem;
  margin-inline: auto;
  padding: 1.75rem 0 2.375rem;
  text-align: center;
  width: 17.5rem;
}
@media screen and (min-width: 768px) {
  .c-title {
    font-size: 1.375rem;
    letter-spacing: 0.1875rem;
    padding: 1.5625rem 3.125rem 2.5rem;
    width: 29.375rem;
  }
}

.c-title h2 {
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .c-title h2 {
    font-weight: 700;
  }
}

.webp .c-title--blue {
  background: url(../images/common/heading-blue.webp) no-repeat center/contain;
}

.no-webp .c-title--blue {
  background: url(../images/common/heading-blue.png) no-repeat center/100%;
}

.webp .c-title--red {
  background: url(../images/common/heading-red.webp) no-repeat center/100%;
}

.no-webp .c-title--red {
  background: url(../images/common/heading-red.png) no-repeat center/100%;
}

.p-about {
  order: 4;
}
@media screen and (min-width: 768px) {
  .p-about {
    order: 3;
  }
}

.p-about__inner {
  padding-top: 3.75rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-about__inner {
    padding-bottom: 6.25rem;
    padding-top: 6.875rem;
  }
}

.p-about__head {
  margin-inline: auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-about__head {
    width: 66.8125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-about__body {
    margin-top: 2.875rem;
  }
}

.p-about__text {
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.85;
  padding-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-about__text {
    font-size: 1.25rem;
    letter-spacing: -0.01em;
    padding-left: 1.125rem;
    padding-right: 0;
    width: 41.875rem;
  }
}

.p-about__text p:not(:first-child) {
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-about__text p:not(:first-child) {
    margin-top: 1rem;
  }
}

.p-about__image {
  height: 38.125rem;
  left: calc(50% + 34.375rem);
  position: absolute;
  top: 26.5625rem;
  transform: translateX(-50%);
  width: 50.75rem;
}

.p-cta {
  order: 1;
}

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

.p-cta__head {
  margin-inline: auto;
  width: 21.875rem;
}
@media screen and (min-width: 768px) {
  .p-cta__head {
    width: 56rem;
  }
}
/* 追加修正 終わり次第こちら適用
.p-cta__map-wrap {
  margin-inline: auto;
  margin-top: 2.3125rem;
  width: 22.5rem;
}

@media screen and (min-width: 768px) {
  .p-cta__map-wrap {
    display: flex;
    gap: 3.125rem;
    justify-content: space-between;
    margin-inline: 0;
    margin-top: 4.6875rem;
    width: 100%;
  }
}
*/

.p-cta__btn-wrap {
  margin-inline: auto;
  position: relative;
  text-align: center;
  top: -0.5rem;
  width: 22.5rem;
}
@media screen and (min-width: 768px) {
  .p-cta__btn-wrap {
    top: auto;
    width: 33.1875rem;
  }
}

.p-cta__btn-text {
  color: #454545;
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-cta__btn-text {
    font-size: 2rem;
  }
}

.p-cta__btn-wrap .c-btn {
  height: 5.9375rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-cta__btn-wrap .c-btn {
    height: 11.625rem;
    top: -1.125rem;
  }
}

.p-description {
  order: 9;
}
@media screen and (min-width: 768px) {
  .p-description {
    order: 8;
  }
}

.p-description__inner {
  padding-top: 7.75rem;
}
@media screen and (min-width: 768px) {
  .p-description__inner {
    padding-bottom: 7.5rem;
    padding-top: 7.1875rem;
  }
}

.p-description__head-image {
  margin-inline: auto;
  width: 21.5625rem;
}
@media screen and (min-width: 768px) {
  .p-description__head-image {
    width: 27.5rem;
  }
}

.p-description__head-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-description__head-title {
    font-size: 3rem;
  }
}

.p-description__body {
  margin-top: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .p-description__body {
    margin-top: 3.25rem;
  }
}

.p-description__table-wrap {
  padding-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-description__table-wrap {
    padding-inline: 0;
  }
}

.p-description__table {
  border: 1px solid #D4BB74;
  border-collapse: collapse;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-description__table {
    width: 75rem;
  }
}

.p-description__table tr {
  display: flex;
  flex-direction: column;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-description__table tr {
    flex-direction: row;
    text-align: center;
  }
}

.p-description__table th,
.p-description__table td {
  border: 1px solid #D4BB74;
  font-weight: 700;
  line-height: 1.84;
}

.p-description__table th {
  background: #AC9675;
  color: #fff;
  font-size: 1.125rem;
  padding: 0.5625rem 1.25rem 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-description__table th {
    font-size: 1.5rem;
    padding: 0.5625rem 2.5rem 1.5625rem;
    width: 17.5rem;
  }
}

.p-description__table td {
  background: #fff;
  letter-spacing: -0.01em;
  padding: 0.9375rem 1.25rem 0.5625rem;
}
@media screen and (min-width: 768px) {
  .p-description__table td {
    font-size: 1.25rem;
    padding: 1.25rem 2.5rem 1.1875rem;
    text-align: left;
    width: calc(100% - 17.5rem);
  }
}

.p-description__table td ul {
  line-height: 1.85;
  padding-left: 0.125rem;
}
@media screen and (min-width: 768px) {
  .p-description__table td ul {
    line-height: 2;
    padding-left: 0.3125rem;
  }
}

.p-description__table td ul li {
  align-items: center;
  display: flex;
  gap: 0.375rem;
}

.p-description__table td ul li:before {
  content: "・";
}

.p-entry {
  background: rgba(217, 217, 217, 0.4);
  order: 11;
}
@media screen and (min-width: 768px) {
  .p-entry {
    order: 10;
  }
}

.p-entry__inner {
  margin-inline: auto;
  padding-bottom: 2.5rem;
  padding-top: 3.875rem;
}
@media screen and (min-width: 768px) {
  .p-entry__inner {
    padding-top: 7.5rem;
  }
}

.p-entry__head-image {
  height: 6.75rem;
  margin-inline: auto;
  width: 16.25rem;
}
@media screen and (min-width: 768px) {
  .p-entry__head-image {
    height: 5.625rem;
  }
}

.p-entry__head-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-entry__head-title {
    font-size: 3rem;
  }
}

.p-entry__body {
  margin-top: 2.125rem;
}
@media screen and (min-width: 768px) {
  .p-entry__body {
    margin-top: 3.75rem;
  }
}

.p-entry__form {
  margin-inline: auto;
  width: 22.125rem;
}
@media screen and (min-width: 768px) {
  .p-entry__form {
    width: 68.75rem;
  }
}

.p-entry__table {
  width: 100%;
}

.p-entry__table tbody {
  display: flex;
  flex-direction: column;
  gap: 2.375rem;
}
@media screen and (min-width: 768px) {
  .p-entry__table tbody {
    gap: 1.125rem;
  }
}

.p-entry__row {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
@media screen and (min-width: 768px) {
  .p-entry__row {
    flex-direction: row;
    gap: 2.5rem;
  }
}

.p-entry__item {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .p-entry__item {
    width: 15rem;
  }
}

.p-entry__row--textarea .p-entry__item {
  align-items: flex-start;
  margin-top: 1.25rem;
}

.p-entry__name {
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-entry__name {
    font-size: 1.375rem;
  }
}

.p-entry__required {
  color: #EE6B06;
  font-size: 0.875rem;
}

.p-entry__value {
  width: 100%;
}

.p-entry__value input,
.p-entry__value textarea {
  border: 1px solid #969696;
  border-radius: 8px;
  font-size: 1.125rem;
  font-weight: 600;
  padding: 1.5625rem 1.125rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-entry__value input,
  .p-entry__value textarea {
    font-size: 1.25rem;
    padding: 1.4375rem 2.5rem;
  }
}

.p-entry__value input::-moz-placeholder, .p-entry__value textarea::-moz-placeholder {
  color: #bebebe;
}

.p-entry__value input::placeholder,
.p-entry__value textarea::placeholder {
  color: #bebebe;
}

.p-entry__value input:-webkit-autofill {
  box-shadow: 0 0 0 1000px rgb(255, 255, 255) inset !important;
  -webkit-text-fill-color: #454545 !important;
}

.p-entry__value input:-webkit-autofill:focus {
  caret-color: #454545 !important;
}

.p-entry__warning {
  font-size: 1.125rem;
  font-weight: 700;
  margin-top: 1.875rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-entry__warning {
    font-size: 1.25rem;
    margin-top: 4.375rem;
  }
}

.p-entry__btn-wrap {
  margin: 2.5rem auto;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .p-entry__btn-wrap {
    margin: 4.6875rem auto;
  }
}

.p-entry__btn-wrap input[type=submit] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #EE6B06;
  border: none;
  border-radius: 8px;
  color: #FFF;
  display: block;
  font-size: 1.25rem;
  padding-block: 1.6875rem;
  width: 20rem;
}
@media screen and (min-width: 768px) {
  .p-entry__btn-wrap input[type=submit] {
    font-size: 1.75rem;
    width: 22rem;
  }
}

.p-faq {
  background: #FCFAF7;
  order: 10;
}
@media screen and (min-width: 768px) {
  .p-faq {
    order: 9;
  }
}

.p-faq__inner {
  margin-inline: auto;
  padding-bottom: 3.75rem;
  padding-top: 7.3125rem;
}
@media screen and (min-width: 768px) {
  .p-faq__inner {
    padding-bottom: 8.125rem;
    padding-top: 7.5rem;
  }
}

.p-faq__head-image {
  height: 7.1875rem;
  margin-inline: auto;
  width: 11.5625rem;
}
@media screen and (min-width: 768px) {
  .p-faq__head-image {
    height: 5.9375rem;
  }
}

.p-faq__head-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-faq__head-title {
    font-size: 3rem;
  }
}

.p-faq__body {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-faq__body {
    margin-top: 6.25rem;
  }
}

.p-faq__list-wrap {
  margin-inline: auto;
  width: 21.875rem;
}
@media screen and (min-width: 768px) {
  .p-faq__list-wrap {
    width: 68.4375rem;
  }
}

.p-faq__list {
  display: flex;
  flex-direction: column;
  gap: 2.625rem;
}
@media screen and (min-width: 768px) {
  .p-faq__list {
    gap: 3.875rem;
  }
}

.p-faq__item-q,
.p-faq__item-a {
  display: flex;
  font-weight: 700;
  gap: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-faq__item-q,
  .p-faq__item-a {
    gap: 2.8125rem;
  }
}

.p-faq__item-q {
  background: rgba(238, 107, 6, 0.1);
  color: #EE6B06;
  padding: 0.9375rem 1.25rem 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-faq__item-q {
    align-items: center;
    padding: 1.5625rem 2.5rem;
  }
}

.p-faq__item-a {
  background: #fff;
  padding: 1.125rem 1.25rem 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-faq__item-a {
    padding: 2.3125rem 2.5rem;
  }
}

.p-faq__item-q-icon,
.p-faq__item-a-icon {
  font-size: 1.6875rem;
}
@media screen and (min-width: 768px) {
  .p-faq__item-q-icon,
  .p-faq__item-a-icon {
    font-size: 1.75rem;
  }
}

@media screen and (min-width: 768px) {
  .p-faq__item-q-icon {
    padding-top: 0.3125rem;
  }
}

.p-faq__item-q-text,
.p-faq__item-a-text {
  padding-top: 0.375rem;
}

.p-faq__item-q-text {
  font-size: 1.125rem;
  letter-spacing: 0.11em;
}
@media screen and (min-width: 768px) {
  .p-faq__item-q-text {
    font-size: 1.375rem;
    letter-spacing: 0.08em;
  }
}

.p-faq__item-a-text {
  font-weight: 500;
  letter-spacing: 0.01em;
}
@media screen and (min-width: 768px) {
  .p-faq__item-a-text {
    font-size: 1.125rem;
    letter-spacing: -0.01em;
    padding-top: 0.3125rem;
  }
}

.p-feature {
  background-image: url("../images/common/feature_bg.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  order: 2;
  position: relative;
}

.p-feature__inner {
  padding-inline: 1.25rem;
  padding-top: 2.375rem;
}
@media screen and (min-width: 768px) {
  .p-feature__inner {
    padding: 7.1875rem 0 5.625rem;
  }
}

@media screen and (min-width: 768px) {
  .p-feature__movie {
    height: 100%;
    width: 100%;
  }
}

.p-feature__movie iframe {
  aspect-ratio: 560/315;
  height: 100%;
  width: 100%;
}

.p-feature__text {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.6;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-feature__text {
    font-size: 1.625rem;
    font-weight: 700;
    line-height: 1.85;
    margin-top: 2.1875rem;
    text-align: center;
  }
}

.p-feature__text p:not(:first-child) {
  margin-top: 2.125rem;
}
@media screen and (min-width: 768px) {
  .p-feature__text p:not(:first-child) {
    margin-top: 2.875rem;
  }
}

.p-feature__btn {
  background: #D4BB74;
  color: #fff;
  display: block;
  font-size: 1.25rem;
  margin: 2.1875rem auto;
  padding: 0.9375rem 3.125rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-feature__btn {
    transition: 0.5s;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.p-feature__btn:hover {
  opacity: 0.4;
}

.p-flow {
  background: #FCFAF7;
  order: 8;
}
@media screen and (min-width: 768px) {
  .p-flow {
    order: 7;
  }
}

.p-flow__inner {
  margin-inline: auto;
  padding-top: 3.875rem;
}
@media screen and (min-width: 768px) {
  .p-flow__inner {
    padding-bottom: 7.5rem;
    padding-top: 7.5rem;
  }
}

.p-flow__head-image {
  margin-inline: auto;
  width: 14.375rem;
}

.p-flow__head-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-flow__head-title {
    font-size: 3rem;
  }
}

.p-flow__body {
  margin-top: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .p-flow__body {
    margin-top: 6.0625rem;
  }
}

.p-flow__list {
  padding-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-flow__list {
    padding-inline: 0;
  }
}

.p-flow-list {
  display: flex;
  flex-direction: column;
  gap: 2.9375rem;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-flow-list {
    flex-direction: row;
    gap: 4.125rem;
  }
}

.p-flow-list__item {
  align-items: center;
  background: #fff;
  border: 2px solid #EE6B06;
  border-radius: 20px;
  display: flex;
  gap: 1.5rem;
  padding: 1.125rem 0.9375rem 1.125rem 1.25rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-flow-list__item {
    flex-direction: column;
    gap: 0;
    padding: 2.5rem 0;
    width: 15.625rem;
  }
}

.p-flow-list__item:after {
  background: #d9d9d9;
  bottom: -2.5rem;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  content: "";
  display: block;
  height: 1.375rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-flow-list__item:after {
    bottom: auto;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    height: 5rem;
    left: auto;
    right: -4.0625rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2.375rem;
  }
}

.p-flow-list__item:last-child:after {
  display: none;
}

.p-flow-list__title {
  background: #EE6B06;
  border-radius: 50%;
  color: #fff;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  font-weight: 700;
  height: 4.5rem;
  justify-content: center;
  line-height: 1.1;
  text-align: center;
  text-transform: capitalize;
  width: 4.5rem;
}
@media screen and (min-width: 768px) {
  .p-flow-list__title {
    font-size: 1.5rem;
    height: 5.75rem;
    width: 5.75rem;
  }
}

.p-flow-list__title span {
  display: block;
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .p-flow-list__title span {
    font-size: 2.5rem;
  }
}

.p-flow-list__text {
  font-size: 1.375rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-flow-list__text {
    font-size: 1.5rem;
    padding-top: 1.875rem;
    text-align: center;
  }
}

.p-flow-list__text strong {
  color: #EE6B06;
}

.p-flow-list__text span {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-flow-list__text span {
    font-size: 1.25rem;
  }
}

.p-growth {
  background-image: url("../images/common/growth_bg.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 3.75rem;
  order: 5;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-growth {
    margin-top: 8.75rem;
    order: 4;
  }
}

.p-growth__inner {
  padding-top: 2.375rem;
}
@media screen and (min-width: 768px) {
  .p-growth__inner {
    padding-bottom: 5.625rem;
    padding-top: 7.1875rem;
  }
}

.p-growth__head {
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-growth__head {
    width: 61.5625rem;
  }
}

.p-growth__body {
  margin-top: 1.5rem;
  padding-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-growth__body {
    margin-top: 2.875rem;
  }
}

.p-growth__box-wrap {
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .p-growth__box-wrap {
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
  }
}

.p-growth__box {
  background: #fff;
  border: 2px solid #D4BB74;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  font-size: 1.25rem;
  font-weight: 700;
  gap: 1.25rem;
  margin: 0.75rem auto;
  padding: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-growth__box {
    font-size: 1.75rem;
    gap: 1.5rem;
    margin: 1.25rem auto;
    padding: 3.4375rem 0 3.4375rem 2.75rem;
    width: 47.8125rem;
  }
}

.p-growth__box-list {
  align-items: center;
  display: flex;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-growth__box-list {
    gap: 2.1875rem;
  }
}

.p-growth__box-list:before {
  background-image: url("../images/common/growth_list-icon_sp.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  flex-shrink: 0;
  height: 2.25rem;
  width: 2.25rem;
}
@media screen and (min-width: 768px) {
  .p-growth__box-list:before {
    background-image: url("../images/common/growth_list-icon.webp");
    height: 3rem;
    width: 3rem;
  }
}

.p-growth__arrow {
  background: #D4BB74;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  height: 2.1875rem;
  margin-top: 1.5625rem;
  margin-inline: auto;
  width: 13.4375rem;
}
@media screen and (min-width: 768px) {
  .p-growth__arrow {
    height: 2.375rem;
    margin-top: 3.125rem;
    width: 13.75rem;
  }
}

.p-growth__text {
  font-weight: 600;
  line-height: 1.8;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-growth__text {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 2.38;
    margin-top: 2.1875rem;
    text-align: center;
  }
}

.p-growth__text p:not(:first-child) {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-growth__text p:not(:first-child) {
    margin-top: 0;
  }
}

.p-growth__achievement {
  margin-top: 2.375rem;
}
@media screen and (min-width: 768px) {
  .p-growth__achievement {
    margin-top: 1.875rem;
  }
}

.p-growth__achievement-title {
  background: linear-gradient(to right, #AC9675 0%, #D4BB74 50%, #C0A975 100%);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  left: 50%;
  letter-spacing: 0.1em;
  padding-block: 0.625rem;
  position: relative;
  text-align: center;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .p-growth__achievement-title {
    font-size: 2rem;
    letter-spacing: 0.8em;
    padding-left: 1.25rem;
  }
}

.p-growth__achievement-list {
  left: 50%;
  margin-top: 1.25rem;
  position: relative;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .p-growth__achievement-list {
    margin-top: 2.5rem;
  }
}

.p-achievement-list {
  display: flex;
  flex-direction: column;
  gap: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-achievement-list {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
  }
}

.p-achievement-list__item {
  border: 2px solid #AC9675;
  font-weight: 600;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-achievement-list__item {
    min-height: 26.75rem;
  }
}

.p-achievement-list__image {
  height: 13.5625rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-achievement-list__image {
    height: 17.8125rem;
  }
}

.p-achievement-list__image img {
  position: absolute;
  top: -0.0625rem;
}
@media screen and (min-width: 768px) {
  .p-achievement-list__image img {
    position: relative;
    top: auto;
  }
}

.p-achievement-list__name {
  background: #AC9675;
  color: #fff;
  font-size: 1.25rem;
  padding-block: 0.3125rem;
  position: relative;
  top: -0.0625rem;
}
@media screen and (min-width: 768px) {
  .p-achievement-list__name {
    padding-block: 0.1875rem;
    top: -0.375rem;
  }
}

.p-achievement-list__text {
  font-size: 1.5rem;
  padding: 0.75rem 0 1rem;
}

.p-achievement-list__text strong {
  color: #FF2329;
  font-weight: 600;
}

.p-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: inherit;
  padding: 0.515625rem 20px;
}
@media screen and (min-width: 768px) {
  .p-header__inner {
    max-width: 1920px;
    margin-inline: auto;
    padding: 1.0625rem 80px;
  }
}
@media screen and (min-width: 1024px) {
  .p-header__inner {
    padding: 1.0625rem 105px;
  }
}

.p-header__logo {
  height: auto;
  transition: 0.5s;
  width: 11.4375rem;
}

.p-header__logo:hover {
  opacity: 0.4;
}

.p-header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-header__nav {
    display: block;
    font-weight: 900;
  }
}

.p-header__nav-items {
  align-items: center;
  display: flex;
  gap: 2.8125rem;
}

.p-header__nav-link {
  color: #454545;
  font-size: 1rem;
  letter-spacing: 0.003125rem;
  transition: 0.5s;
}

.p-header__nav-link:hover {
  opacity: 0.4;
}


.p-header__nav-btn {
  background-color: #FF2329;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.625rem 1rem;
  transition: 0.5s;
}

@media screen and (min-width: 768px) {
.p-header__nav-btn {
  background-color: #FF2329;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 0.625rem 3.4375rem;
  transition: 0.5s;
}
}
.p-header__nav-btn:hover {
  opacity: 0.4;
}

.p-message {
  order: 7;
}
@media screen and (min-width: 768px) {
  .p-message {
    order: 6;
  }
}

.p-message__inner {
  padding-top: 7.375rem;
}
@media screen and (min-width: 768px) {
  .p-message__inner {
    padding-bottom: 2.1875rem;
    padding-top: 7.1875rem;
  }
}

.p-message__head-image {
  margin-inline: auto;
  width: 17.75rem;
}
@media screen and (min-width: 768px) {
  .p-message__head-image {
    width: 20rem;
  }
}

.p-message__head-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-message__head-title {
    font-size: 3rem;
  }
}

.p-message__body {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-message__body {
    margin-top: 3.4375rem;
  }
}

.p-message__item-wrap {
  padding-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-message__item-wrap {
    padding-inline: 0;
  }
}

.p-message-item__title {
  background: #D4BB74;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-message-item__title {
    font-size: 1.625rem;
  }
}

.p-message-item__content {
  padding-bottom: 3.5rem;
  padding-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-message-item__content {
    display: grid;
    -moz-column-gap: 4.25rem;
         column-gap: 4.25rem;
    grid-template-columns: 20rem 1fr;
    padding-bottom: 5.3125rem;
    row-gap: 1.125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-message-item__image-wrap {
    grid-column: 1/2;
    grid-row: 1/2;
    width: 20rem;
  }
}

.p-message-item__name {
  font-weight: 600;
  line-height: 2.2;
  padding-block: 0.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-message-item__name {
    padding-block: 0.3125rem;
  }
}

.p-message-item__name span {
  display: inline-block;
  font-size: 1.25rem;
}

.p-message-item__text-wrap {
  display: flex;
  flex-direction: column;
}

.p-message-item__text-wrap--top {
  gap: 2.1875rem;
  padding-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-message-item__text-wrap--top {
    gap: 2.625rem;
    grid-column: 2/3;
    grid-row: 1/2;
    padding-top: 0.3125rem;
  }
}

.p-message-item__text-wrap--bottom {
  gap: 0.9375rem;
  padding-top: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .p-message-item__text-wrap--bottom {
    gap: 2.5rem;
    grid-column: 1/3;
    grid-row: 2/3;
    padding-top: 0.3125rem;
  }
}

.p-message-item__text {
  display: flex;
  flex-direction: column;
  gap: 1.0625rem;
  letter-spacing: -0.005em;
  line-height: 1.7;
}

.p-message-item__text-wrap--top .p-message-item__text {
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-message-item__text-wrap--top .p-message-item__text {
    gap: 1.0625rem;
  }
}

.p-message-item__text-wrap--bottom .p-message-item__text {
  gap: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-message-item__text-wrap--bottom .p-message-item__text {
    gap: 1rem;
  }
}

.p-message-item__text-q {
  color: #AC9675;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-message-item__text-q {
    font-size: 1.5rem;
    line-height: 1.6;
  }
}

.p-message-item__text-a {
  color: #000;
  font-weight: 600;
  line-height: 1.9;
}
@media screen and (min-width: 768px) {
  .p-message-item__text-a {
    font-size: 1.125rem;
    line-height: 1.6;
  }
}

.p-movie {
  order: 3;
}
@media screen and (min-width: 768px) {
  .p-movie {
    order: 5;
  }
}

.p-movie__inner {
  padding: 4.0625rem 1.25rem 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-movie__inner {
    padding: 4.6875rem 0 7.5rem;
  }
}

.p-movie__title {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-movie__title {
    font-size: 3rem;
  }
}

.p-movie__list {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-movie__list {
    margin-top: 3.75rem;
  }
}

.p-movie-list {
  display: grid;
  gap: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-movie-list {
    gap: 5rem;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
  }
}

.p-movie-list__content {
  background: #D9D9D9;
  height: 12.375rem;
  width: 21.875rem;
}
@media screen and (min-width: 768px) {
  .p-movie-list__content {
    height: 19.625rem;
    width: 35rem;
  }
}

.p-movie-list__content iframe {
  aspect-ratio: 560/314;
  height: 100%;
  width: 100%;
}

.p-movie-list__title {
  font-size: 1.375rem;
  font-weight: 600;
  margin-top: 0.625rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-movie-list__title {
    margin-top: 1.25rem;
  }
}

.p-mv {
  background-image: url("../images/common/mv_bg.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  order: 0;
  position: relative;
}

@media screen and (min-width: 768px) {
  .p-mv__inner {
    padding-top: 5.625rem;
    padding-inline: 105px;
  }
}

.p-mv__body {
  height: 23.75rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-mv__body {
    -moz-column-gap: 1.5625rem;
         column-gap: 1.5625rem;
    display: grid;
    height: 22.8125rem;
    justify-content: center;
    padding-left: 4.0625rem;
    top: -0.9375rem;
  }
}

.p-mv__three-point {
  margin-inline: auto;
  position: relative;
  top: -3.4375rem;
  width: 22.5rem;
}
@media screen and (min-width: 768px) {
  .p-mv__three-point {
    grid-column: 1/2;
    grid-row: 1/3;
    height: 18.625rem;
    margin-inline: 0;
    padding-top: 1.25rem;
    top: auto;
    width: 48.8125rem;
  }
}

.p-mv__copy {
  margin-inline: auto;
  position: relative;
  top: -2.8125rem;
  width: 22.5rem;
}
@media screen and (min-width: 768px) {
  .p-mv__copy {
    grid-column: 2/3;
    grid-row: 1/2;
    top: auto;
    width: 33.1875rem;
  }
}

.p-mv__btn {
  position: relative;
  top: -4.875rem;
}
@media screen and (min-width: 768px) {
  .p-mv__btn {
    grid-column: 2/3;
    grid-row: 2/3;
    top: -2.5rem;
  }
}

.p-reason {
  background: #FCFAF7;
  order: 6;
}
@media screen and (min-width: 768px) {
  .p-reason {
    order: 5;
  }
}

.p-reason__inner {
  padding-top: 6.6875rem;
}
@media screen and (min-width: 768px) {
  .p-reason__inner {
    padding-bottom: 7.8125rem;
    padding-top: 7.1875rem;
  }
}

.p-reason__head-image {
  margin-inline: auto;
  width: 15.75rem;
}
@media screen and (min-width: 768px) {
  .p-reason__head-image {
    width: 18.0625rem;
  }
}

.p-reason__head-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-reason__head-title {
    font-size: 3rem;
  }
}

.p-reason__body {
  margin-top: 3.875rem;
  padding-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-reason__body {
    margin-top: 6.0625rem;
    padding-inline: 0;
  }
}

.p-reason__item-wrap {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media screen and (min-width: 768px) {
  .p-reason__item-wrap {
    gap: 7.1875rem;
  }
}

.p-reason-item__text {
  font-weight: 600;
  line-height: 1.78;
  margin-top: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-reason-item__text {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.6;
    margin-top: 2.5rem;
    text-align: center;
  }
}

.p-reason-item__text p:not(:first-child) {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-reason-item__text p:not(:first-child) {
    margin-top: 0.8125rem;
  }
}

.p-reason-item__career {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-reason-item__career {
    margin-top: 4.6875rem;
  }
}

.p-reason-item__career-title,
.p-reason-item__case-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-reason-item__career-title,
  .p-reason-item__case-title {
    font-size: 2.25rem;
  }
}

@media screen and (min-width: 768px) {
  .p-reason-item__career-image {
    margin-top: 1.875rem;
  }
}

.p-reason-item__case {
  margin-top: 2.75rem;
}
@media screen and (min-width: 768px) {
  .p-reason-item__case {
    margin-top: 4.6875rem;
  }
}

.p-reason-item__case-list {
  margin-top: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .p-reason-item__case-list {
    height: 30.75rem;
    margin-top: 1.5625rem;
  }
}

.p-reason-case-list {
  display: grid;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .p-reason-case-list {
    gap: 2.5rem;
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-reason-treatment-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (min-width: 768px) {
  .p-reason-treatment-list {
    gap: 2.5rem;
  }
}

.p-reason-case-list__item {
  height: 31.375rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-reason-case-list__item {
    height: 100%;
  }
}

.p-reason-case-list__title {
  color: #000;
  font-size: 1.375rem;
  font-weight: 700;
  text-align: center;
}

.p-reason-case-list__image {
  margin-top: 0.75rem;
}

.p-reason-case-list__text {
  position: relative;
  top: -3.75rem;
}
@media screen and (min-width: 768px) {
  .p-reason-case-list__text {
    top: -4.0625rem;
  }
}

.p-reason-case-list__item--tumor .p-reason-case-list__text {
  bottom: 1.125rem;
  left: 50%;
  position: absolute;
  top: auto;
  transform: translateX(-50%);
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-reason-case-list__item--tumor .p-reason-case-list__text {
    bottom: 3.375rem;
    width: 29.25rem;
  }
}

.p-reason-item__treatment-list {
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-reason-item__treatment-list {
    margin-top: 5.25rem;
  }
}

.p-reason-item__treatment + .p-reason-item__text {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-reason-item__treatment + .p-reason-item__text {
    margin-top: 1.5rem;
  }
}

.u-color-red {
  color: #D70C18;
}

.u-color-blue {
  color: #00A6E9;
}

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

@media screen and (max-width: 767px) {
  .u-hidden-sp {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */
