@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;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
p,
figure,
blockquote,
dl,
dd {
  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;
}

li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 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関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 16px;
}

@media (max-width: 1200px) {
  html {
    font-size: 1.3333333333vw;
  }
}

@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}

@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #141414;
}

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

a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}

/* フェードイン(初期値) */
.js-fadeUp {
  opacity: 0;
  /* 最初は非表示 */
  transform: translateY(30px);
  /* 下に30pxの位置から */
  transition: opacity 0.8s, transform 0.6s;
  /* 透過率と縦方向の移動を0.8秒 */
}

/* フェードイン(スクロールした後) */
.js-fadeUp.is-inview {
  opacity: 1;
  /* 表示領域に入ったら表示 */
  transform: translateY(0);
  /* 30px上に移動する */
  transition-delay: 0.5s;
  /* フェード開始を0.5秒遅らせる */
}

.js-fadeUp2 {
  opacity: 0;
  /* 最初は非表示 */
  transform: translateY(30px);
  /* 下に30pxの位置から */
  transition: opacity 0.8s, transform 0.6s;
  /* 透過率と縦方向の移動を0.8秒 */
}

/* フェードイン(スクロールした後) */
.js-fadeUp2.is-inview {
  opacity: 1;
  /* 表示領域に入ったら表示 */
  transform: translateY(0);
  /* 30px上に移動する */
  transition-delay: 0.5s;
  /* フェード開始を0.5秒遅らせる */
}

.l-inner {
  padding-right: 25px;
  padding-left: 25px;
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .l-inner {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    margin-right: auto;
    margin-left: auto;
  }
}

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

.l-post-connect {
  margin-top: 1rem;
}

.c-border-pink {
  height: 1.875rem;
  background: #ea6094;
  z-index: 1;
  position: relative;
}

.c-breadcrumb {
  padding: 1rem 0;
}

.c-breadcrumb a {
  color: #2589d0;
}

.c-btn {
  display: inline-block;
  min-width: 200px;
  padding: 10px 20px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  background-color: #2589d0;
  border: 1px solid #2589d0;
  transition: 0.3s;
}

.c-btn::after {
  content: "";
  display: inline-block;
  margin-left: 16px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  transition: 0.3s;
}

.c-btn:hover {
  text-decoration: none;
  background-color: #fff;
  color: #2589d0;
  opacity: 1;
  cursor: pointer;
}

.c-btn:hover::after {
  border-top: 1px solid #2589d0;
  border-right: 1px solid #2589d0;
  transform: translateX(5px) rotate(45deg);
}

.c-btn__simple a {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-weight: 700;
  font-size: 1.875rem;
  padding-top: 0.6875rem;
  padding-bottom: 0.40625rem;
  display: block;
  max-width: 27.625rem;
  background-color: #ea6094;
  text-align: center;
  border-radius: 50px;
  line-height: 56px;
}

@media screen and (max-width: 767px) {
  .c-btn__simple a {
    font-size: 1.375rem;
  }
}

.c-contact-button {
  color: #fff;
  background-color: #ea6094;
  padding: 0.9375rem 1.875rem 0.9375rem 2.5rem;
  border-radius: 50px;
  font-size: 1rem;
  display: inline-block;
  width: 15rem;
}

/* .c-contact-button::before {
  content: "";
  position: absolute;
  display: block;
  width: 1.5rem;
  height: 1.125rem;
  background-size: cover;
  margin-right: 5px;
  margin-top: 3px;
  vertical-align: middle;
  background-image: url(../images/top/mail.svg);
  left: 2rem;
} */

@media (max-width: 1500px) {
  .c-contact-button {
    padding: 0.9375rem 1.25rem;
  }
}

@media (max-width: 1372px) {
  .c-contact-button {
    padding: 0.625rem 1.25rem 0.625rem 1.875rem;
    font-size: 1.125rem;
    line-height: 1.375rem;
    width: 9.625rem;
  }

  .c-contact-button::before {
    left: 0.6rem;
    width: 1.25rem;
    height: 1rem;
    margin-top: 0;
  }

  .p-header__nav.p-header__button a {
    /* padding-left: 1.25rem; */
  }
}

@media (max-width: 768px) {
  .c-contact-button {
    padding: 1.25rem 2.1875rem;
  }

  .c-contact-button::before {
    left: 2.5rem;
  }
}

a.c-contact-button:hover {
  opacity: 0.8;
  color: #fff;
}

.c-contact-button1 {
  /*   font-family: "Montserrat", sans-serif; */
  font-weight: 500;
  font-size: 1.875rem;
  color: #ea6094;
  background: #fff;
  padding: 0.875rem 2.5rem 0.875rem 4.75rem;
  border-radius: 50px;
  border: 2px solid #ea6094;
  display: inline-block;
  width: 25.5rem;
  margin-left: auto;
  position: relative;
  letter-spacing: 0.03em;
}

@media screen and (max-width: 767px) {
  .c-contact-button1 {
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding: 0.875rem 0.9375rem 0.875rem 2.9375rem;
    font-size: 1.25rem;
    width: auto;
    max-width: 21.875rem;
  }
}

.p-contact__button .c-contact-button1::before {
  content: "";
  position: absolute;
  display: block;
  width: 2rem;
  height: 2rem;
  background-size: cover;
  margin-right: 5px;
  margin-top: 6px;
  vertical-align: middle;
  background-image: url(../images/top/tel.svg);
  left: 14%;
}

@media screen and (max-width: 767px) {
  .c-contact-button1::before {
    left: 19%;
    top: 18%;
    width: 23px;
    /* 画像の幅 */
    height: 23px;
    /* 画像の高さ */
  }
}

.c-contact-button2 {
  /*   font-family: "Montserrat", sans-serif; */
  font-weight: 500;
  font-size: 1.625rem;
  color: #fff;
  background: #ea6094;
  padding: 1.125rem 2.5rem 1.125rem 3.75rem;
  border-radius: 50px;
  display: inline-block;
  width: 25.625rem;
  position: relative;
}

@media screen and (max-width: 767px) {
  .c-contact-button2 {
    width: auto;
    display: block;
    padding: 0.875rem 0.9375rem 0.875rem 2.9375rem;
    font-size: 1.25rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 21.875rem;
  }
}

.c-contact-button2::before {
  content: "";
  position: absolute;
  display: block;
  width: 2.4rem;
  height: 1.89rem;
  background-size: cover;
  margin-right: 5px;
  margin-top: 5px;
  vertical-align: middle;
  background-image: url(../images/top/mail.svg);
  left: 4.75rem;
}

@media screen and (max-width: 767px) {
  .c-contact-button2::before {
    width: 26px;
    /* 画像の幅 */
    height: 19px;
    left: 21%;
    margin-top: 6px;
  }
}

.c-contact-button2::after {
  content: "";
  position: absolute;
  display: block;
  width: 10px;
  /* 画像の幅 */
  height: 16px;
  /* 画像の高さ */
  background-size: cover;
  margin-right: 5px;
  margin-top: 8px;
  vertical-align: middle;
  background-image: url(../images/top/arrow.svg);
  top: 1.4375rem;
  right: 2.1875rem;
}

@media screen and (max-width: 767px) {
  .c-contact-button2::after {
    top: 22%;
    right: 10%;
  }
}

.c-hover-button {
  position: relative;
  z-index: 2;
  margin-left: -1.25rem;
  margin-top: 1.3rem;
}

.c-hover-button a {
  color: #141414;
  padding: 0.7em calc(0.7em * 1.2);
  display: inline-block;
  border: 3px solid transparent;
  position: relative;
  font-size: 1.25rem;
  cursor: pointer;
  letter-spacing: 0.07em;
}

.c-hover-button a .text {
  /*   font-family: "Montserrat", sans-serif; */
  font-weight: 700;
  transform: translate3d(0, 0.7em, 0);
  display: block;
  transition: transform 0.4s cubic-bezier(0.2, 0, 0, 1) 0.4s;
}

.c-hover-button a:after {
  position: absolute;
  content: "";
  bottom: -3px;
  left: calc(0.7em * 1.2);
  right: calc(0.7em * 1.2);
  height: 3px;
  background: #ea6094;
  transition: transform 0.8s cubic-bezier(1, 0, 0.37, 1) 0.2s,
    right 0.2s cubic-bezier(0.04, 0.48, 0, 1) 0.6s,
    left 0.4s cubic-bezier(0.04, 0.48, 0, 1) 0.6s;
  transform-origin: left;
}

.c-hover-button .line {
  position: absolute;
  background: #ea6094;
}

.c-hover-button .line.-right,
.c-hover-button .line.-left {
  width: 3px;
  bottom: -3px;
  top: -3px;
  transform: scale3d(1, 0, 1);
}

.c-hover-button .line.-top,
.c-hover-button .line.-bottom {
  height: 3px;
  left: -3px;
  right: -3px;
  transform: scale3d(0, 1, 1);
}

.c-hover-button .line.-right {
  right: -3px;
  transition: transform 0.1s cubic-bezier(1, 0, 0.65, 1.01) 0.23s;
  transform-origin: top;
}

.c-hover-button .line.-top {
  top: -3px;
  transition: transform 0.08s linear 0.43s;
  transform-origin: left;
}

.c-hover-button .line.-left {
  left: -3px;
  transition: transform 0.08s linear 0.51s;
  transform-origin: bottom;
}

.c-hover-button .line.-bottom {
  bottom: -3px;
  transition: transform 0.3s cubic-bezier(1, 0, 0.65, 1.01);
  transform-origin: right;
}

.c-hover-button a:hover .text,
.c-hover-button a:active .text {
  transform: translate3d(0, 0, 0);
  transition: transform 0.6s cubic-bezier(0.2, 0, 0, 1) 0.4s;
}

.c-hover-button a:hover:after,
.c-hover-button a:active:after {
  transform: scale3d(0, 1, 1);
  right: -3px;
  left: -3px;
  transform-origin: right;
  transition: transform 0.2s cubic-bezier(1, 0, 0.65, 1.01) 0.17s,
    right 0.2s cubic-bezier(1, 0, 0.65, 1.01), left 0s 0.3s;
}

.c-hover-button a:hover .line,
.c-hover-button a:active .line {
  transform: scale3d(1, 1, 1);
}

.c-hover-button a:hover .line.-right,
.c-hover-button a:active .line.-right {
  transition: transform 0.1s cubic-bezier(1, 0, 0.65, 1.01) 0.2s;
  transform-origin: bottom;
}

.c-hover-button a:hover .line.-top,
.c-hover-button a:active .line.-top {
  transition: transform 0.08s linear 0.4s;
  transform-origin: right;
}

.c-hover-button a:hover .line.-left,
.c-hover-button a:active .line.-left {
  transition: transform 0.08s linear 0.48s;
  transform-origin: top;
}

.c-hover-button a:hover .line.-bottom,
.c-hover-button a:active .line.-bottom {
  transition: transform 0.5s cubic-bezier(0, 0.53, 0.29, 1) 0.56s;
  transform-origin: left;
}

.p-service-item__button .c-hover-button a .text {
  background-color: rgba(255, 255, 255, 0.4);
}

@media screen and (max-width: 767px) {
  .p-service-item__button .c-hover-button a .text {
    background-color: transparent;
  }
}

.p-service-item__button img {
  width: 160px;
}

.c-ikuraya-access__card {
  max-width: 20rem;
  border: 1px solid #ccc;
  /* カードのボーダー */
  border-radius: 8px;
  /* 角丸の設定 */
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
  /* カードの影 */
  background: #fff;
  /* カードの背景色 */
  position: relative;
  /* 絶対位置指定された子要素の基準点に */
  margin: 20px 20px 20px 0;
  /* カードの外側の余白 */
  padding: 2.9375rem 1.25rem 1.75rem 1.25rem;
}

@media screen and (max-width: 767px) {
  .c-ikuraya-access__card {
    margin: 20px auto 20px;
  }
}

.c-ikuraya-access__card-header {
  position: absolute;
  /* カード番号を右上に配置 */
  top: -1.6875rem;
  left: -0.0625rem;
  background-color: #ea6094;
  /* ヘッダーの背景色 */
  padding: 0.625rem 1.25rem;
  /* 内側の余白 */
}

.c-ikuraya-access__card-number {
  color: #141414;
  font-size: 1.5rem;
}

.c-ikuraya-access__card-image {
  width: 100%;
  /* 画像の幅 */
  display: block;
  /* 画像をブロック要素に */
}

.c-ikuraya-access__card-body {
  margin-top: 0.8125rem;
}

.c-logo {
  max-width: 19rem;
}

.c-page-scroll {
  padding-top: 1.625rem;
  padding-bottom: 1.125rem;
  background-color: #ea6094;
  margin-top: 4.6875rem;
  /*   font-family: "Montserrat", sans-serif; */
  font-weight: 600;
  color: #fff;
  font-size: 1.5rem;
  text-align: center;
  line-height: 1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 15px;
}

@media screen and (max-width: 767px) {
  .c-page-scroll {
    flex-direction: column;
  }
}

.c-page-scroll span {
  font-size: 0.75rem;
}

.c-page-scroll a {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  text-align: center;
  display: inline-block;
  text-transform: capitalize;
  line-height: 19px;
  font-size: 18px;
}

.c-page-scroll li:not(:first-child):not(:last-child) a {
  border-left: 3px solid #fff;
  border-right: 3px solid #fff;
}

@media screen and (max-width: 767px) {
  .c-page-scroll a {
    border-left: none;
  }
}

.c-page-scroll.banner {
  background-color: #fff;
  margin-top: -1.75rem;
}

.c-section-title {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  position: relative;
}

.c-section-title h2 {
  font-size: 67px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  text-transform: capitalize;
  position: relative;
  z-index: 2;
  color: #ea6094;
}

@media screen and (max-width: 767px) {
  .c-section-title h2 {
    font-size: 3.125rem;
  }
}

.c-section-title p {
  font-size: 1.25rem;
  margin-top: -1.25rem;
}

.c-section-title img {
  position: absolute;
  top: 15%;
  left: 42%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 767px) {
  .c-section-title img {
    width: 300px;
  }
}

.c-section-title3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #fff;
  font-size: 3.3rem;
  text-align: center;
  line-height: 1;
  text-transform: capitalize;
  position: relative;
  z-index: 2;
}

.c-section-title3 span {
  font-size: 1.25rem;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}

.c-section-title2 {
  display: flex;
  align-items: center;
  position: relative;
}

@media screen and (max-width: 767px) {
  .c-section-title2 {
    display: block;
  }
}

.c-section-title2 h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 4.1875rem;
  text-transform: capitalize;
  position: relative;
  z-index: 2;
  color: #ea6094;
}

@media screen and (max-width: 767px) {
  .c-section-title2 h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
}

.c-section-title2 p {
  font-size: 1.25rem;
  font-weight: 400;
  margin-left: 2rem;
  margin-top: 1.5rem;
}

@media screen and (max-width: 767px) {
  .c-section-title2 p {
    margin: 0 0 0 1.25rem;
  }
}

.c-section-title2 img {
  position: absolute;
  z-index: 1;
  left: -10%;
  top: -90px;
}

.c-service-title_h3 {
  font-family: "Montserrat", sans-serif;
  color: #ea6094;
  font-size: 2.25rem;
  font-weight: 900;
  margin-left: 2.8125rem;
  position: relative;
  z-index: 2;
}

.c-service-title_h3.noto {
  font-family: "Noto Sans JP", sans-serif;
  color: #ea6094;
  font-size: 2.25rem;
  font-weight: 900;
  margin-left: 2rem;
  position: relative;
  z-index: 2;
}

.c-service-title_num {
  font-family: "Montserrat", sans-serif;
  font-size: 8.125rem;
  font-weight: 700;
  /* -webkit-text-stroke: 2px #ea6094; */
  text-stroke: 2px #ea6094;
  color: transparent;
  margin-top: -5.625rem;
  line-height: 1;
  position: relative;
  z-index: 2;
  opacity: 0.1;
  color: #9c7986;
}

.c-service_text {
  max-width: 35.9375rem;
  line-height: 32px;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 2;
  font-size: 1rem;
  margin-top: 1.40625rem;
  padding-right: 0.9375rem;
}
.c-service_text-list {
	background: #fbf4f6;
	padding: 1rem 1.5rem;
	margin-bottom: 1rem;
}
.support-list li{
	position: relative;
	padding-left: 2rem;
}
.support-list li::before {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  top: 9px;
  left: 4px;
  background-image: url(../images/entrust/heart-icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

@media screen and (max-width: 767px) {
  .c-service_text {
    background-color: transparent;
    margin-top: 0;
  }
	.c-service_text-list {
		padding: 1rem;
	}
	.support-list li {
		padding-left: 1.5rem;
	}
	.support-list li::before {
		width: 14px;
		height: 14px;
		top: 11px;
		left: 2px;
	}
}

.c-title {
  font-size: 1.5rem;
  color: black;
}

@media screen and (max-width: 1199px) {
  .c-title {
    color: green;
  }
}

@media screen and (max-width: 999px) {
  .c-title {
    color: blue;
  }
}

@media screen and (max-width: 767px) {
  .c-title {
    color: red;
  }
}

.p-access.p-company-access {
  max-width: 62.5rem;
  margin: 0 auto;
  padding-top: 4.375rem;
  padding-bottom: 6.25rem;
}

.responsive-map-container.p-company-access__map {
  max-width: 460px;
  margin: 0;
  padding-bottom: 86%;
}

.p-company-access__flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 62.5rem;
  margin: 2.5rem auto 0;
  gap: 20px;
}

@media screen and (max-width: 767px) {
  .p-company-access__flex {
    grid-template-columns: 1fr;
  }
}

.p-company-access__name {
  font-family: "Montserrat", sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 2.625rem;
  padding: 0.625rem 0;
  border: 1px solid #ea6094;
  color: #ea6094;
  text-align: center;
}

.p-company-access__item+.p-company-access__item {
  margin-top: 5.5rem;
}

.p-access__content.p-company-access__content th,
.p-access__content.p-company-access__content td {
  padding-top: 15px;
  padding-bottom: 15px;
  line-height: 32px;
}

/* 最初の行(th/td)の上のパディングを0に設定 */
.p-access__content.p-company-access__content tr:first-child th,
.p-access__content.p-company-access__content tr:first-child td {
  padding-top: 0;
}

.p-company-access__items {
  margin-top: 1.375rem;
}

.p-company-access__name h3 {
  font-size: 1.75rem;
}

.p-access.p-company-access .responsive-map-container {
  max-width: 460px;
  margin: 0;
  padding-bottom: 86%;
}

@media screen and (max-width: 767px) {
  .p-access.p-company-access .responsive-map-container {
    order: 2;
    margin-top: 20px;
  }
}

.p-company-access__item {
  padding-left: 15px;
  padding-right: 15px;
}

.p-company-info {
  max-width: 62.5rem;
  margin: 4rem auto 10rem;
}

.p-company-info__table {
  width: 100%;
  /* 表の幅 */
  border-collapse: collapse;
  margin-top: 1.25rem;
}

.p-company-info__table th,
.p-company-info__table td {
  border-bottom: 1px solid #c7c7c7;
  padding: 1.125rem 0 2rem 0;
  text-align: left;
  /* テキストを左揃えにする */
  line-height: 2rem;
}

.p-company-info__table th {
  font-weight: 400;
  /* フォントの太さ */
  width: 24%;
  color: #a0a0a0;
}

@media screen and (max-width: 767px) {
  .p-company-info__table th {
    padding-left: 15px;
  }

  .p-company-info__table tr {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .p-company-info__table {
    width: 90%;
    margin: 0 auto;
  }

  .p-company-info__table th {
    padding-left: 0;
    width: 100%;
    border-bottom: 0px;
    line-height: 1.2;
    padding: 0;
    color: #a0a0a0;
  }

  .p-company-info__table tr+tr {
    margin-top: 1rem;
  }

  .p-company-info__table td {
    padding-right: 15px;
    padding: 0.5rem 0 1rem 0;
    line-height: 1.4;
  }

}

.p-terms {
  max-width: 62.5rem;
  margin: 0 auto 10rem;
}

.p-history {
  background-color: #141414;
  padding-top: 3.75rem;
  padding-bottom: 6.25rem;
  margin-top: 6.25rem;
}

.p-history__inner {
  background-color: #fff;
  padding-top: 4rem;
  padding-bottom: 3.75rem;
  max-width: 75rem;
}

.timeline-container {
  max-width: 62.5rem;
  margin: 1.25rem auto 0;
}

.timeline-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.timeline-table td.year {
  width: 10.5%;
  font-weight: bold;
  color: #ea6094;
  border-bottom: 1px solid #ea6094;
  font-size: 1.25rem;
  padding-top: 1.25rem;
}

@media screen and (max-width: 767px) {
  .timeline-table td.year {
    font-size: 1rem;
    width: 30%;
  }
}

.timeline-table td.event {
  width: 80%;
  background-color: #ffffff;
  padding-left: 35px;
  border-bottom: 1px solid #dbdbdb;
  padding-top: 1.25rem;
  padding-bottom: 0.875rem;
}

@media screen and (max-width: 767px) {
  .timeline-table td.event {
    width: 80%;
    padding-left: 20px;
  }
}

.p-message {
  background-color: #ea6094;
  color: #fff;
  margin-top: 3.75rem;
}

.p-message__inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
}

@media screen and (max-width: 767px) {
  .p-message__inner {
    grid-template-columns: 1fr;
  }
}

.p-message__left {
  max-width: 42.5rem;
  padding-top: 3.75rem;
  padding-bottom: 6.25rem;
  margin-left: auto;
  margin-right: 6.25rem;
  padding-left: 1.25rem;
}

@media screen and (max-width: 767px) {
  .p-message__left {
    margin-right: 0.9375rem;
    padding-bottom: 4.375rem;
  }
}

.p-message__left h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.75rem;
  font-weight: 600;
}

.p-message__left h4 {
  margin-top: 0.3125rem;
}

.p-message__left p {
  line-height: 32px;
  margin-top: 1.5rem;
}

.p-message__sign {
  margin-top: 1.4375rem;
}

.p-message__right {
  height: 100%;
  /* 必要に応じて高さを設定 */
  width: 100%;
  /* 必要に応じて幅を設定 */
  overflow: hidden;
  /* はみ出た画像を非表示にする */
}

.p-message__right img {
  height: 100%;
  /* 要素の高さに合わせる */
  width: 100%;
  /* 要素の幅に合わせる */
  -o-object-fit: cover;
  object-fit: cover;
  /* 画像が要素の全体をカバーするように設定 */
  -o-object-position: center;
  object-position: center;
  aspect-ratio: 1;
}

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

.p-sub-company__titles {
  margin-top: 9.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-sub-company__title-big {
  font-family: "Montserrat", sans-serif;
  font-size: 3.5rem;
  font-weight: 600;
  color: #ea6094;
  text-transform: uppercase;
}

.c-section-title-img {
  margin-bottom: 0.5rem;
}

@media screen and (max-width: 767px) {
  .p-sub-company__title-big {
    font-size: 2.875rem;
  }

  .p-message__right.sp-only {
    aspect-ratio: 1/1;
    height: 20rem;
    margin-top: 2rem;
  }
}

.p-sub-company__subtitle-big {
  font-size: 1.25rem;
  margin-top: 1.3125rem;
  text-align: center;
}

.p-sub-company__title {
  color: #ea6094;
}

.p-sub-company__title span {
  color: #141414;
}

.p-sub-company .c-section-title3 span {
  font-size: 1rem;
}

.p-sub-company .responsive-map-container {
  padding-bottom: 33%;
  margin-top: 3.75rem;
}

@media screen and (max-width: 767px) {
  .p-sub-company .responsive-map-container {
    padding-bottom: 56%;
  }
}

.p-sub-company .p-access__content th {
  width: 26%;
}

.p-sub-purchase .p-sub-company__title-big {
  color: #141414;
}

.single-purchase .p-sub-company__title-big {
  color: #141414;
}

.p-contact__content {
  display: grid;
  grid-template-columns: 220px auto;
  border-bottom: 1px solid #cecece;
  padding-top: 1.875rem;
  padding-bottom: 1.8125rem;
}

@media screen and (max-width: 767px) {
  .p-contact__content {
    grid-template-columns: 1fr;
  }
}

.p-contact__head {
  width: 15.625rem;
  text-align: left;
  padding-top: 13px;
}

.p-contact__item {
  margin-top: 0.375rem;
}

.p-contact__item-example {
  margin-top: 0.375rem;
  color: gray;
}

.p-contact__required {
  color: #fff;
  padding: 1px 5px 2px 5px;
  background-color: #fc4848;
  margin-right: 10px;
  font-size: 0.875rem;
  font-weight: 700;
}

.p-contact__policy,
.p-contact__btn {
  margin: 1.5rem 0;
}

.p-contact__policy-link {
  color: blue;
  transition: all 0.3s;
}

.p-contact__btn-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .p-contact__btn-wrap {
    flex-direction: row;
    gap: 2.5rem;
  }
}

.p-contact__btn {
  display: inline-block;
  text-align: center;
}

.p-contact__item-text,
.p-contact__item-tel,
.p-contact__item-email,
.p-contact__item-textarea,
.p-contact__item-select {
  margin: 0;
  padding: 0 0.8em;
  border: 1px solid #9da3a7;
  border-radius: 4px;
  background: #f8f8f8;
  font-size: 1rem;
  color: inherit;
  font-family: inherit;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 40px;
  text-align: left;
}

.p-contact__item-text:focus,
.p-contact__item-tel:focus,
.p-contact__item-email:focus,
.p-contact__item-textarea:focus,
.p-contact__item-select:focus {
  border: 1px solid rgba(0, 0, 0, 0.7);
  box-shadow: none;
  outline: none;
}

.p-contact__item-text,
.p-contact__item-select {
  max-width: 350px;
}

.wide {
  max-width: 100%;
}

.p-contact__item-tel {
  max-width: 350px;
}

.p-contact__item-email {
  max-width: 700px;
}

.p-contact__item-textarea {
  height: 200px;
  resize: none;
  overflow: auto;
  padding: 0.8em;
}

.p-contact__item-message {
  white-space: pre-wrap;
}

.p-contact__item-select {
  padding-right: 3em;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAALJJREFUeNrslssNgCAQRCmB0ijBEuyEEijBEijBEizBEnAPy0UBWVj8JDvJJB5w3gsXVUoikXwsBrpAPdRCNcOmxi2P2yZ3cIKGU9dOCY0b590pdXhPHOyRyMEDsi4JhVIlSvBYTRGgSNTAQ+pFyyBRC7e5AdchUQt3d1fYIsEGb5Fgh1MktlFwisQwOIeE4/pGuDfhLRLscIrEMHiNxHB4SeIxeMyMPxkenyUSyT9zCDAAj5btZ4c3zaUAAAAASUVORK5CYII=");
  background-repeat: no-repeat;
  background-size: 1em;
  background-position: right 0.5em center;
  color: inherit;
}

.p-contact__item-select:invalid {
  color: rgba(0, 0, 0, 0.32);
}

.p-contact__item-select select::-ms-expand {
  display: none;
}

.p-contact__item-radio input[type="radio"],
.p-contact__item-checkbox input[type="checkbox"] {
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.p-contact__item-radio input[type="radio"]+span,
.p-contact__item-checkbox input[type="checkbox"]+span {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding: 0.5em 1em 0.5em 1.5em;
  color: #333;
  font-size: 1rem;
}

.p-contact__item-radio input[type="radio"]:focus+span,
.p-contact__item-checkbox input[type="checkbox"]:focus+span {
  opacity: 0.7;
}

.p-contact__item-radio input[type="radio"]+span::before,
.p-contact__item-checkbox input[type="checkbox"]+span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1em;
  height: 1em;
  content: "";
  transform: translateY(-50%);
  background: white;
  border: 1px solid black;
}

.p-contact__item-checkbox input[type="checkbox"]:checked+span::before {
  background: #333;
}

.p-contact__item-radio input[type="radio"]:checked+span::before {
  background: white;
}

.p-contact__item-radio input[type="radio"]+span::before {
  border-radius: 50%;
}

.p-contact__item-radio input[type="radio"]+span::after {
  position: absolute;
  content: "";
  background: #333;
  border: 1px solid transparent;
  border-radius: 50%;
  height: 0.5em;
  left: 0.25em;
  opacity: 0;
  padding: 0.125em;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease 0s;
  width: 0.5em;
}

.p-contact__item-checkbox input[type="checkbox"]+span::after {
  border-bottom: 2px solid white;
  border-left: 2px solid white;
  content: "";
  display: block;
  height: 0.35em;
  left: 0.15em;
  margin-top: -0.1em;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  transition: all 0.3s ease 0s;
  width: 0.8em;
}

.p-contact__item-checkbox input[type="checkbox"]:checked+span::after,
.p-contact__item-radio input[type="radio"]:checked+span::after {
  opacity: 1;
}

/* button */
.p-contact__btn input[type="submit"],
.p-contact__btn input[type="button"] {
  display: inline-block;
  margin: 0;
  padding: 0.5em 4em;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  background: #141414;
  color: #fff;
  -moz-appearance: button;
  appearance: button;
  cursor: pointer;
  font-size: 1.125rem;
  border-radius: 37px;
  border: none;
  transition: all 0.3s;
  text-align: center;
}

@media screen and (max-width: 767px) {

  .p-contact__btn input[type="submit"],
  .p-contact__btn input[type="button"] {
    display: block;
    padding: 0.5em 0;
  }
}

.p-contact__btn input[type="submit"]:hover,
.p-contact__btn input[type="button"]:hover,
.p-contact__btn input[type="submit"]:focus,
.p-contact__btn input[type="button"]:focus {
  outline: none;
  opacity: 0.7;
}

.p-contact__item,
.p-contact__btn-submit {
  min-width: 9.375rem;
  text-align: left;
}

.wpcf7-spinner {
  position: absolute;
}

.p-contact {
  color: #fff;
  /* background-image: url(../images/top/contact_bg.jpg); */
  text-align: center;
  padding-top: 2rem;
  padding-bottom: 4.5rem;
  background-color: #ea6094;
}

.home .p-contact {
  padding-bottom: 3.125rem;
}

.p-sub-contact {
  color: #141414;
  background-color: #ea6094;
  background-image: none;
}

.p-contact__text {
  margin-top: -0.25rem;
  font-size: 1.25rem;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .p-contact__text {
    font-size: 1.125rem;
  }
}

.p-contact__text span {
  font-size: 1.125rem;
}

@media screen and (max-width: 767px) {
  .p-contact__text span {
    font-size: 1rem;
  }
}

.p-contact__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .p-contact__title {
    font-size: 2.75rem;
  }
}

.p-contact__title p {
  margin-top: -0.375rem;
  font-weight: 400;
  font-size: 1.25rem;
  position: relative;
  z-index: 2;
}

.p-sub-contact__title {
  color: #141414;
}

.p-contact__button {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 62.5rem;
  margin: 2.0625rem auto 0;
  padding: 2.6875rem 3.4375rem 3.375rem;
}

@media screen and (max-width: 767px) {
  .p-contact__button {
    grid-template-columns: 1fr;
    padding: 1.5625rem 0.9375rem;
    margin-left: 15px;
    margin-right: 15px;
  }
}

.p-contact__button p {
  color: #141414;
  font-size: 1.25rem;
}

.p-contact__button a {
  margin-top: 1.25rem;
}

.p-contact__inner {
  max-width: 75rem;
  background-color: #fff;
  padding-left: 6.25rem;
  padding-right: 6.25rem;
  margin: 0 auto;
  padding-top: 3.75rem;
  padding-bottom: 6.25rem;
}

@media screen and (max-width: 767px) {
  .p-contact__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.p-contact__kind {
  padding: 0.4125rem 0;
  font-size: 1.5rem;
  background-color: #141414;
  color: #fff;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .p-contact__kind {
    font-size: 1.25rem;
  }
}

.p-contact__kind.tel {
  margin-top: 1.875rem;
  margin-bottom: 2.5rem;
}

.p-contact__kind.mail {
  margin-top: 3rem;
}

.p-contact__tel {
  font-size: 3.125rem;
  font-weight: 500;
  line-height: 3.125rem;
  font-family: "Montserrat", sans-serif;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-contact__tel {
    font-size: 2.5rem;
    padding-left: 2.5rem;
  }
}

.p-contact__tel::before {
  content: url("../images/crown/tel2.svg");
  margin-right: 5px;
  position: absolute;
  left: -13%;
  top: 12px;
}

@media screen and (max-width: 767px) {
  .p-contact__tel::before {
    top: 0.5rem;
    left: -0.1875rem;
  }
}

.p-contact__time {
  margin-top: 1.625rem;
  font-size: 1.125rem;
}

.p-contact__time span {
  font-size: 0.9375rem;
  color: #fff;
  background-color: #ea6094;
  padding: 2px 10px 2px 10px;
  margin-right: 6px;
}

.p-contact__any {
  color: #fff;
  padding: 1px 5px 2px 5px;
  background-color: #adadad;
  margin-right: 10px;
  font-size: 0.875rem;
  font-weight: 700;
}

.privacy-policy {
  height: 200px;
  max-width: 57.4375rem;
  width: 100%;
  padding: 0 2em 2em 1em;
  border: 2px solid #9da3a7;
  overflow-y: scroll;
  text-align: left;
  font-size: 14px;
  background-color: #fff;
  color: #141414;
  margin: 2.125rem auto 0;
}

.privacy-policy__head {
  margin-top: 14px;
  margin-bottom: 2px;
  font-weight: 700;
}

.fbc-page .fbc-wrap .fbc-items li {
  background-color: #fcfcfc;
}

.fbc-page .fbc-wrap .fbc-items li a {
  font-weight: 700;
}

.fbc-page .fbc-wrap .fbc-items li:first-child {
  padding-left: 0;
}

.p-breadcrummb {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  background-color: #fcfcfc;
  font-family: "Montserrat", sans-serif;
}

.home .p-breadcrummb {
  display: none;
}

.fbc-page .fbc-wrap .fbc-items li .fbc-separator {
  padding: 15px 10px;
}

.fbc-page .fbc-wrap .fbc-items li:first-child {
  margin-right: 0;
  padding-right: 3px;
}

.p-contact__pp-text {
  margin-top: 5.1875rem;
  font-weight: 500;
  font-size: 1.125rem;
}

.p-contact .c-section-title img {
  top: 49%;
  left: 40%;
}

.p-contact__item-radio input[type="radio"]+span::after {
  width: 0.8em;
  height: 0.8em;
  left: 0.35em;
  background: #cecece;
}

.p-contact__item-radio input[type="radio"]+span::before,
.p-contact__item-checkbox input[type="checkbox"]+span::before {
  width: 1.5em;
  height: 1.5em;
  border: 1px solid #9da3a7;
  margin-right: 0.625rem;
}

.p-contact__item-radio input[type="radio"]+span,
.p-contact__item-checkbox input[type="checkbox"]+span {
  padding-left: 2em;
}

.p-contact__btn input[type="submit"],
.p-contact__btn input[type="button"] {
  padding: 1em 7em;
}

@media screen and (max-width: 767px) {

  .p-contact__btn input[type="submit"],
  .p-contact__btn input[type="button"] {
    padding: 1em 4em;
  }
}

.p-contact__policy,
.p-contact__btn {
  margin-top: 2.8125rem;
}

.home .p-contact__text {
  margin-top: 1.25rem;
}

.sub-contact .p-contact__item-radio input[type="radio"]+span::before,
.p-contact__item-checkbox input[type="checkbox"]+span::before {
  width: 1.2em;
  height: 1.2em;
  border: 1px solid #9da3a7;
  margin-right: 0.625rem;
}

.sub-contact .p-contact__item-radio input[type="radio"]+span::after {
  width: 0.6em;
  height: 0.6em;
  left: 0.3em;
}

.sub-contact .p-contact__content {
  grid-template-columns: 213px auto;
}

@media screen and (max-width: 767px) {
  .sub-contact .p-contact__content {
    grid-template-columns: 1fr;
  }
}

.sub-contact .p-contact__item-radio input[type="radio"]+span,
.p-contact__item-checkbox input[type="checkbox"]+span {
  padding: 0.2em 1em 0.2em 1.7em;
}

.sub-contact .p-contact__pp-text {
  margin-top: 3.875rem;
}

.sub-contact .p-contact__policy,
.p-contact__btn {
  margin-top: 2.3125rem;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: #ea6094;
}

.sub-contact .p-contact {
  color: #141414;
  background-color: #fff;
  background-image: none;
  padding-top: 0;
}

.sub-contact .wpcf7-list-item {
  display: block;
}

.sub-contact .p-contact__title {
  color: #141414;
}

.sub-contact .p-contact__wrap {
  max-width: 62.5rem;
  margin: 11.875rem auto 0;
  padding-left: 15px;
  padding-right: 15px;
}

.sub-contact .p-contact__kind {
  background-color: #ea6094;
  margin-top: 3.75rem;
}

.sub-contact .p-contact__kind.tel {
  margin-top: 3.75rem;
  margin-bottom: 3.25rem;
}

.sub-contact .p-contact__time {
  margin-top: 0.9375rem;
}

.sub-contact .p-contact__time span {
  background-color: #ea6094;
}

.sub-contact .p-contact__tel::before {
  content: url("../images/common/tel.svg");
}

.sub-contact .p-contact__btn input[type="submit"],
.p-contact__btn input[type="button"] {
  background: #ea6094;
}

.p-about__title {
  position: relative;
}

.p-about__title h2 {
  position: relative;
  z-index: 2;
}

.p-about__logo {
  position: absolute;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.p-about {
  margin-top: 6.25rem;
  padding-top: 4.0625rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.p-about__text {
  font-weight: 700;
  font-size: 1.625rem;
  text-align: center;
  margin-top: 7.1875rem;
}

.p-about__desc {
  max-width: 62.5rem;
  margin: 1.875rem auto 0;
  line-height: 2rem;
  padding-left: 15px;
  padding-right: 15px;
}

.p-about__video-container {
  max-width: 780px;
  height: auto;
  margin: auto;
  overflow: hidden;
  position: relative;
  padding-bottom: 40%;
  height: 0;
  margin-top: 3.75rem;
}

@media screen and (max-width: 999px) {
  .p-about__video-container {
    padding-bottom: 50%;
  }
}

@media screen and (max-width: 767px) {
  .p-about__video-container {
    padding-bottom: 62%;
  }
}

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

.p-about__video-container.tiara {
  margin-top: 13.25rem;
}

@media screen and (max-width: 767px) {
  .p-about__video-container.tiara {
    margin-top: 5rem;
  }
}

iframe {
  border: none;
  overflow: hidden;
}

.sub-crown {
  background-color: #141414;
  color: #fff;
}

.sub-crown .p-post-card__category {
  background-color: #ea6094;
}

.sub-crown .p-post-card__title {
  color: #626262;
}

.p-crown__mv {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(../images/top/1_01.jpg);
  background-size: cover;
  padding-top: 5.6875rem;
}

.p-crown__logo {
  margin: 3rem auto 0;
  padding-left: 15px;
  padding-right: 15px;
  max-width: 45.375rem;
  width: 100%;
}

/*-------------------------
  右から左に流れるテキスト
-------------------------*/
.text-ani_sample {
  margin: 0 1em 3em;
  position: absolute;
}

.text-ani_sample p {
  margin: 0;
  font-size: 9.25rem;
  /*文字サイズ*/
  color: #fff;
  /*文字の色*/
  animation: flowing 20s linear infinite;
  /*アニメーション*/
  transform: translateX(100%);
  /*最初の位置*/
  opacity: 0.2;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  white-space: nowrap;
  line-height: 9.25rem;
}

@keyframes flowing {
  100% {
    transform: translateX(-100%);
    /*終了の位置*/
  }
}

.p-about__img {
  margin-top: 6.875rem;
}

.p-gallery {
  margin-top: 6.6875rem;
}

.p-gallery__contents {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin: 1.875rem auto 0;
  gap: 20px;
}

@media screen and (max-width: 767px) {
  .p-gallery__contents {
    gap: 10px;
    grid-template-columns: 1fr 1fr;
  }
}

.p-guide {
  margin-top: 6.25rem;
}

.p-guide__title {
  display: flex;
  align-items: center;
}

.p-guide__title p {
  font-family: "Montserrat", sans-serif;
  font-size: 4.375rem;
  font-weight: 700;
  color: #ea6094;
}

.p-guide__title h3 {
  margin-left: 1.875rem;
  font-size: 1.625rem;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .p-guide__title h3 {
    font-size: 1.375rem;
  }
}

.p-guide__text {
  max-width: 35rem;
  font-size: 16px;
  font-weight: 400;
  line-height: 2rem;
}

.p-guide__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 767px) {
  .p-guide__grid {
    grid-template-columns: 1fr;
  }
}

.p-guide__grid .p-guide__body:nth-child(odd) {
  padding-right: 2.5rem;
  margin-top: 1.375rem;
}

@media screen and (max-width: 767px) {
  .p-guide__grid .p-guide__body:nth-child(odd) {
    order: 2;
    padding-right: 0;
  }
}

.p-guide__grid .p-guide__body:nth-child(even) {
  padding-left: 2.5rem;
  margin-top: 1.8125rem;
}

@media screen and (max-width: 767px) {
  .p-guide__grid .p-guide__body:nth-child(even) {
    order: 4;
    padding-left: 0;
  }
}

.p-guide__floor {
  border: 2px solid #ea6094;
  padding-bottom: 6.25rem;
}

@media screen and (max-width: 767px) {
  .p-guide__floor {
    border: none;
  }
}

.p-guide__floor h3 {
  background: #ea6094;
  font-size: 2.75rem;
  font-weight: 600;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  text-transform: capitalize;
}

@media screen and (max-width: 767px) {
  .p-guide__floor h3 {
    font-size: 1.875rem;
  }
}

.p-guide__floor h4 {
  font-size: 1.75rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin-top: 3.1875rem;
}

.p-guide__floors {
  margin-top: 6.25rem;
}

.p-guide__floor-item {
  padding: 1.625rem;
  padding-bottom: 1.875rem;
  border: 2px solid #ea6094;
}

.p-guide__floor-item h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 1.6rem;
}

.p-guide__floor-item p {
  margin-top: 0.625rem;
  line-height: 2rem;
}

.p-guide__floor-item img {
  max-width: 400px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.p-guide__floor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 62.5rem;
  margin: 4.375rem auto 0;
  gap: 2.5rem;
}

@media screen and (max-width: 767px) {
  .p-guide__floor-grid {
    grid-template-columns: 1fr;
  }
}

.p-guide__map {
  margin: 2.5rem auto;
  max-width: 100%;
}

.p-guide__note {
  margin-top: 1rem;
  text-align: center;
}

.p-guide__floor+.p-guide__floor {
  margin-top: 54px;
}

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

.p-guide__floor-grid2 {
  grid-template-columns: 1fr;
}

.p-guide__floor-item2 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

@media screen and (max-width: 767px) {
  .p-guide__floor-item2 {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

.p-guide__img1 {
  margin-top: 3.25rem;
}

@media screen and (max-width: 767px) {
  .p-guide__img1 {
    order: 1;
    margin-top: 5rem;
  }
}

.p-guide__img2 {
  margin-top: 0.625rem;
}

@media screen and (max-width: 767px) {
  .p-guide__img2 {
    order: 3;
    margin-top: 3.75rem;
  }
}

.map-img {
  transition: opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .map-img {
    display: none;
  }
}

.map-img.show {
  opacity: 1;
  visibility: visible;
}

.map-area {
  mix-blend-mode: multiply;
}

.map-2f,
.map-1f {
  max-width: 750px;
  margin: 2.5rem auto 0;
  position: relative;
}

.powder-room-img {
  top: 17.5rem;
  left: -2.5rem;
  width: 315px;
}

.lounge-img {
  width: 420px;
  top: -6.25rem;
  right: -1rem;
}

.bar-counter-img {
  width: 420px;
  bottom: -11.25rem;
  right: -1.875rem;
}

.audio-light-img {
  width: 420px;
  top: -3.75rem;
  left: -16.5rem;
}

@media screen and (max-width: 1330px) {
  .audio-light-img {
    left: 13.5rem;
  }
}

.stage-img {
  width: 420px;
  top: -7.75rem;
  left: 15.125rem;
}

.main-floor-img {
  width: 380px;
  top: 11.25rem;
  left: -1.875rem;
}

.bar-img {
  width: 380px;
  bottom: -7.75rem;
  right: 3.125rem;
}

.coin-locker-img {
  width: 310px;
  bottom: -1.75rem;
  right: -9.875rem;
}

@media screen and (max-width: 1020px) {
  .coin-locker-img {
    right: 11.125rem;
  }
}

.a-floor-img {
  width: 380px;
  bottom: -7.75rem;
  left: -0.875rem;
}

.b-floor-img {
  width: 400px;
  top: 0.25rem;
  right: -7.125rem;
}

@media screen and (max-width: 930px) {
  .b-floor-img {
    top: -4.75rem;
    right: 18.25rem;
  }
}

.c-floor-img {
  width: 400px;
  top: -0.75rem;
  right: -13.875rem;
}

@media screen and (max-width: 1200px) {
  .c-floor-img {
    right: 11.125rem;
  }
}

.map-img-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .map-img-sp {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 1.875rem;
  }
}

.map-img-sp .c-floor-img {
  margin: auto;
}

.p-plan {
  margin-top: 7.40625rem;
}

@media screen and (max-width: 767px) {
  .p-plan {
    margin-top: 0;
  }
}

.p-plan h3 {
  background: #ea6094;
  font-size: 2.35rem;
  font-weight: 600;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  text-transform: capitalize;
  margin-top: 2.59375rem;
  padding-top: 0.625rem;
}

@media screen and (max-width: 767px) {
  .p-plan h3 {
    font-size: 1.5625rem;
  }
}

.p-plan h3 span {
  font-size: 1.125rem;
}

@media screen and (max-width: 767px) {
  .p-plan h3 span {
    display: block;
  }
}

.p-plan__title-text {
  text-align: center;
  margin-top: 2rem;
  line-height: 2rem;
}

.p-plan__cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

@media screen and (max-width: 767px) {
  .p-plan__cards {
    grid-template-columns: 1fr;
  }
}

.p-plan__cards.food {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

@media screen and (max-width: 767px) {
  .p-plan__cards.food {
    grid-template-columns: 1fr;
  }
}

.p-plan__card {
  text-align: center;
  background-color: #fff;
  color: #141414;
  padding: 1.125rem;
  display: flex;
  flex-direction: column;
  padding-bottom: 6.25rem;
}

.food .p-plan__card {
  padding-bottom: 1.875rem;
}

.p-plan__card h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #ea6094;
  text-transform: uppercase;
}

.p-plan__card h4 span {
  font-size: 2rem;
  margin-right: 0.9375rem;
}

.p-card__one {
  margin-top: 0.625rem;
  font-size: 0.875rem;
}

.p-card__fee span {
  font-size: 2.0625rem;
  line-height: 33px;
}

.p-card__fee {
  font-size: 0.75rem;
  font-weight: 700;
}

.p-card__text {
  margin-top: 1.1875rem;
  font-size: 16px;
  text-align: left;
}

.p-card__text2 {
  margin-top: 0.875rem;
  font-size: 16px;
  text-align: left;
  padding-top: 14px;
  border-top: #ea6094 1px solid;
}

.food .p-card__text {
  text-align: center;
}

.food .p-card__text span {
  font-weight: bold;
}

.p-card__kinds {
  margin-top: auto;
  padding-top: 1.25rem;
}

.p-card__kind {
  display: flex;
  justify-content: center;
  text-align: left;
  font-size: 1.125rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  border-radius: 10px;
  background-color: #f0f0f0;
  color: rgba(20, 20, 20, 0.2);
  padding-right: 0.625rem;
}

.p-card__content {
  display: flex;
  align-items: center;
  /* アイコンとテキストを垂直方向に中央配置 */
  width: 72px;
}

.p-card__kind+.p-card__kind {
  margin-top: 0.625rem;
}

.p-card__kind.active {
  font-weight: 700;
  background-color: #f0e4c8;
  color: #141414;
}

.p-card__kind::before {
  content: "";
  display: block;
  width: 30px;
  /* 画像の幅 */
  height: 30px;
  /* 画像の高さ */
  background-size: cover;
  margin-right: 10px;
  vertical-align: middle;
  opacity: 0.2;
}

.p-card__kind-1::before {
  background-image: url(../images/crown/drink.svg);
}

.p-card__kind-2::before {
  background-image: url(../images/crown/snack.svg);
}

.p-card__kind-3::before {
  background-image: url(../images/crown/food.svg);
}

.p-card__kind-4::before {
  background-image: url(../images/crown/cake.svg);
}

.p-card__kind.active::before {
  opacity: 1;
}

.p-plan__scroll-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-top: 3.75rem;
}

.p-plan__scroll-text {
  margin-top: 0.1875rem;
  text-align: center;
}

.p-plan__scroll {
  display: flex;
  overflow: hidden;
  margin-top: 1.25rem;
}

.p-plan__scroll img {
  animation: scroll 20s infinite linear 0.5s both;
  /* 持続時間を長くする */
  margin-right: 5px;
  height: 14.9375rem;
}

/* キーフレームでスクロールアニメーションを定義 */
@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.plan-table {
  display: flex;
  background-color: #f5f5f5;
  padding: 20px;
  font-family: Arial, sans-serif;
}

.plan-info,
.plan-pricing,
.plan-details {
  padding: 20px;
  border: 1px solid #ddd;
}

.plan-header {
  background-color: #ffc;
  padding: 10px;
  font-weight: bold;
}

.plan-pricing {
  margin: 0 20px;
  background-color: #ddd;
  font-size: 24px;
  font-weight: bold;
  color: #333;
}

.highlight {
  color: #008000;
}

.plan-details {
  flex-grow: 1;
}

.hover-container {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  /* 画像がウィンドウに対して固定されるように */
  top: 0;
  left: 0;
  pointer-events: none;
  /* コンテナがマウスイベントを遮らないようにする */
}

#hoverImage {
  max-width: 100%;
  max-height: 100vh;
  display: none;
  /* デフォルトでは非表示 */
}

.p-plan__ttl-drink {
  border: 2px solid #ea6094;
  text-align: center;
  font-size: 2.3125rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  text-align: left;
  align-items: center;
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .p-plan__ttl-drink {
    font-size: 1.4375rem;
  }
}

.p-plan__ttl-drink::before {
  content: "";
  display: block;
  width: 30px;
  /* 画像の幅 */
  height: 30px;
  /* 画像の高さ */
  background-size: cover;
  margin-right: 10px;
}

.p-plan__ttl-drink::before {
  background-image: url(../images/crown/drink2.svg);
}

.p-plan__ttl-drink.food::before {
  background-image: url(../images/crown/food2.svg);
}

.p-card__menu-contents {
  font-weight: 400;
  font-size: 1rem;
  background-color: #ea6094;
  color: #fff;
  padding: 2px;
  margin-top: 0.625rem;
}

.p-plan__plus {
  margin: 2.5rem auto;
}

.p-plan2 {
  margin-top: 6.25rem;
}

.p-plan2 h3 {
  background: #ea6094;
  font-size: 2.35rem;
  font-weight: 600;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  text-transform: capitalize;
  margin-top: 2.59375rem;
  padding-top: 0.625rem;
}

@media screen and (max-width: 767px) {
  .p-plan2 h3 {
    font-size: 1.875rem;
  }
}

.p-plan2__blocks {
  margin-top: 2.5rem;
}

.p-plan2__block {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr 1.45fr;
  gap: 1.25rem;
  color: #141414;
  text-align: center;
  background-color: #fff;
  padding: 1.1875rem;
}

@media screen and (max-width: 767px) {
  .p-plan2__block {
    grid-template-columns: 1fr;
  }
}

.p-plan2__block+.p-plan2__block {
  margin-top: 1.25rem;
}

.p-plan2__header {
  text-transform: uppercase;
  font-size: 1.75rem;
  font-weight: 700;
  color: #ea6094;
  line-height: 3.375rem;
}

.p-plan2__header span {
  font-size: 2.8125rem;
  margin-right: 0.9375rem;
}

.p-plan2__floor {
  font-size: 1.375rem;
  margin-top: 0.40625rem;
}

.p-plan2__price {
  font-size: 0.875rem;
  font-weight: 700;
}

.p-plan2__price span {
  font-size: 3.0625rem;
  font-weight: 700;
}

.p-plan2__content {
  font-size: 1rem;
  font-weight: 700;
  background: #f0e4c8;
  padding-top: 0.875rem;
  padding-bottom: 1rem;
  border-radius: 5px;
}

.p-plan2__content+.p-plan2__content {
  margin-top: 0.625rem;
}

.p-plan2__content span {
  font-weight: 400;
}

.p-plan2__content span span {
  font-size: 0.75rem;
}

.p-plan2-details {
  font-weight: 700;
  text-align: left;
  border: 1px solid #ea6094;
  border-radius: 5px;
  padding: 1.09375rem 1.25rem 0.75rem;
}

.p-plan2-details span {
  font-size: 0.875rem;
  font-weight: 400;
}

.p-plan2-details p {
  margin-top: 0.6rem;
}

.p-plan2-details p:first-of-type {
  margin-top: 0;
}

.p-plan2__block2 {
  grid-template-columns: 0.9fr 1.1fr 1.45fr;
  grid-template-rows: 1fr auto;
  padding: 2rem 1.25rem 1.25rem;
}

@media screen and (max-width: 767px) {
  .p-plan2__block2 {
    display: flex;
    flex-direction: column;
  }
}

.p-plan2__block2 .p-plan2-details {
  grid-row: 1/3;
  grid-column: 3;
}

@media screen and (max-width: 767px) {
  .p-plan2__block2 .p-plan2-details {
    order: 4;
  }
}

.p-plan2__block2 p+p {
  margin-top: 20px;
}

.p-plan2-surprise {
  grid-row: 2;
  grid-column: 1/3;
  display: grid;
  place-items: center;
  background-color: #fff165;
  border-radius: 6px;
  padding-top: 0.6875rem;
  padding-bottom: 0.875rem;
}

.p-plan2-surprise img {
  max-width: 32rem;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

@media screen and (max-width: 767px) {
  .p-plan2-surprise {
    order: 3;
  }
}

.p-plan2-details p.fz14 {
  font-size: 0.875rem;
}

.p-plan3 {
  margin-top: 3.75rem;
}

.p-plan3__grid {
  display: grid;
  grid-template-columns: auto auto auto;
  background: #fff;
  padding: 26px 28px 30px 28px;
  font-size: 1.125rem;
  color: #141414;
  text-align: center;
  margin-top: 2.5rem;
  row-gap: 2.75rem;
  -moz-column-gap: 10px;
  column-gap: 10px;
}

@media screen and (max-width: 767px) {
  .p-plan3__grid {
    grid-template-columns: 1fr;
    padding: 2.5rem 15px;
  }
}

.p-plan3__grid.first {
  grid-template-columns: auto 1fr;
}

@media screen and (max-width: 767px) {
  .p-plan3__grid.first {
    grid-template-columns: 1fr;
    padding: 2.5rem 15px;
  }
}

.p-plan3__category {
  grid-column: span 3;
  /* カテゴリは3つのカラムにまたがる */
  background: #d2b48c;
  /* カテゴリの背景色をタン色に設定 */
  text-align: center;
  padding: 10px;
  margin-bottom: 20px;
  font-weight: bold;
}

.p-plan3__item {
  padding: 5px 0;
  /* アイテム間のスペース */
}

.p-plan3__price {
  text-align: right;
  /* 価格は右揃え */
  padding-left: 3.625rem;
  margin-left: auto;
}

.p-plan3__title {
  font-size: 1.125rem;
  padding-top: 4px;
  padding-bottom: 5px;
  background: #f0e4c8;
  border-radius: 5px;
  text-align: center;
}

.p-plan3__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.p-plan3__item {
  position: relative;
  margin-left: 25px;
}

.p-plan3__item::before {
  content: "";
  /* 円形のバレット文字 */
  background-color: #ea6094;
  border-radius: 50%;
  width: 13px;
  /* バレットの幅を設定 */
  height: 13px;
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
}

.p-plan3__section.arrange {
  grid-row: 1;
  grid-column: 1/3;
  display: grid;
  /* grid-template-columns: 28% 70.5%; */
  grid-template-columns: auto auto auto;
  gap: 10px;
}

@media screen and (max-width: 767px) {
  .p-plan3__section.arrange {
    grid-row: auto;
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 2.75rem;
  }
}

@media screen and (max-width: 767px) {
  .p-plan3__section img {
    margin-left: auto;
    margin-right: auto;
  }
}

.p-plan3__section.drink-icon img {
  max-width: 8.4375rem;
}

.p-reservation {
  margin-top: 6.25rem;
  text-align: center;
}

.p-reservation img {
  margin: 2.3125rem auto 0;
}

.p-reservation__calender {
  margin-top: 2.0625rem;
}

.iframe-wrapper {
  margin: 2.5rem auto 0;
  position: relative;
  padding-bottom: 48.25%;
  height: 0;
  overflow: hidden;
}

@media screen and (max-width: 1199px) {
  .iframe-wrapper {
    padding-bottom: 60.25%;
  }
}

@media screen and (max-width: 767px) {
  .iframe-wrapper {
    padding-bottom: 85.25%;
  }
}

.responsive-iframe {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 55%;
  height: 100%;
}

@media screen and (max-width: 1199px) {
  .responsive-iframe {
    width: 70%;
  }
}

@media screen and (max-width: 767px) {
  .responsive-iframe {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.p-example {
  margin-top: 2.5rem;
}

.p-example__post {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 62.5rem;
  margin: 0 auto;
  gap: 3.125rem;
}

@media screen and (max-width: 767px) {
  .p-example__post {
    grid-template-columns: 1fr 1fr;
    gap: 0.625rem;
    row-gap: 1.25rem;
  }
}

.p-example__post-item {
  padding: 1.125rem 1.125rem 1.625rem 1.125rem;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
  border-bottom: 5px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 767px) {
  .p-example__post-item {
    padding: 0.625rem 0.625rem 1.125rem 0.625rem;
  }
}

.p-example__post .custom-thumbnail {
  padding: 0.4375rem;
}

.p-example__post .p-post-card__category {
  margin-top: 0.9375rem;
}

.p-example__post .p-post-card__title {
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  text-align: left;
  margin-bottom: 1.25rem;
}

.sub-content .p-example__post .p-post-card__category {
  padding: 0.125rem 0.375rem;
  background-color: #fffcd9;
  color: #141414;
  font-size: 12px;
  border-radius: 0;
  margin: 0.3125rem 0 0 0.4375rem;
  display: grid;
}

.p-example__link-button {
  display: block;
  background-color: #ea6094;
  padding: 0.625rem 0 0.75rem 2.75rem;
  border-radius: 50px;
  margin-top: auto;
}

@media screen and (max-width: 767px) {
  .p-example__link-button {
    font-size: 14px;
    padding: 0.625rem 0 0.75rem 0.3125rem;
  }
}

.p-example__link-button span {
  position: relative;
}

.p-example__link-button span:before {
  content: "";
  /* コンテンツを空にして背景画像を使用 */
  position: absolute;
  left: -36%;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: url(../images/sns/ig.svg) no-repeat center/cover;
  /* 背景画像として設定し、サイズをカバーに設定 */
}

@media screen and (max-width: 999px) {
  .p-example__link-button span:before {
    width: 22px;
    height: 22px;
  }
}

@media screen and (max-width: 767px) {
  .p-example__link-button span:before {
    display: none;
  }
}

.p-faq {
  margin-top: 3.75rem;
  padding-left: 15px;
  padding-right: 15px;
}

.p-faq .p-sub__small-title {
  margin-top: 2.5rem;
}

.qa_box {
  margin-bottom: 20px;
  border: 1px solid #e4e4e4;
  color: #141414;
}

.area01 {
  margin: 3.4375rem auto 6.25rem;
  max-width: 62.5rem;
}

.area01 .qa_q {
  display: flex;
  align-items: center;
  position: relative;
  padding: 1.5em 2em 1.3em 4em;
  cursor: pointer;
  transition: background-color 1s ease;
}

.area01 .qa_q::before {
  color: #fff;
  content: "Q";
  background-color: #ea6094;
  padding: 0.1875rem 0.6875rem 0.3125rem 0.625rem;
  position: absolute;
  left: 1em;
  font-weight: 600;
  font-size: 1em;
}

.area01 .qa_q .toggle_icon {
  position: absolute;
  top: 50%;
  right: 1.875rem;
  transform: translateY(-50%) rotate(-45deg);
  width: 10px;
  height: 10px;
  margin-left: auto;
  border-bottom: 1px solid #333;
  border-right: 1px solid #333;
  content: "";
  transition: transform 1s ease;
}

.area01 .qa_a {
  display: none;
  padding: 0 1.2em 1.3em 1em;
}

.area01 .qa_q.open .toggle_icon {
  transform: rotate(45deg);
}

.a-txt {
  padding: 1em 3em 1.5em 4em;
  background-color: #fff4f8;
  border-radius: 6px;
  line-height: 1.75rem;
  position: relative;
  display: block;
}

.a-txt::before {
  color: #141414;
  line-height: 1.2;
  content: "A";
  background-color: #fff;
  padding: 0.1875rem 0.6875rem 0.3125rem 0.625rem;
  margin-top: -3px;
  position: absolute;
  left: 1em;
  top: 1.3em;
}

.p-sub-about {
  padding-top: 4.375rem;
  background: #fff4f8;
  -o-object-fit: cover;
  object-fit: cover;
  margin-top: 5.625rem;
  padding-bottom: 8.25rem;
}

.p-sub-about__content {
  max-width: 62.5rem;
  margin: 3.75rem auto 0;
  row-gap: 20px;
}

.p-sub-about__content:nth-child(odd)>div {
  padding-left: 2.5rem;
}

.p-sub-about__content:nth-child(odd)>div p {
  padding-right: 0;
}

@media screen and (max-width: 767px) {
  .p-sub-about__content:nth-child(odd)>div {
    padding-left: 15px;
  }
}

.p-sub-about__content div h3 {
  font-weight: 600;
  font-size: 1.8rem;
  padding-top: 0;
  color: #ea6094;
  border-bottom: 1px solid #ea6094;
  margin-right: 2rem;
  padding-bottom: 9px;
}
.p-area__about-logo {
	display: flex;
	flex-wrap: wrap;
	gap: 0 2rem;
}
.p-area__about-logo img {
	object-fit: contain !important;
	aspect-ratio: auto !important;
	max-width: 170px;
}
.support .p-service-item__body {
	border: 1px solid #ea6094;
}
.entrust-item .p-item_grid-item p {
	text-align: left;
}

.service-img {
	max-width: 600px;
	margin: 2rem auto 0;
	padding: 0 15px;
}
.p-sub-about__content div h4 {
  font-weight: 600;
  font-size: 18px;
  margin-top: 1rem;
	margin-bottom: 2px;
  color: #ea6094;
}

.p-sub-about__content div p {
  margin-top: 1.3125rem;
}

.p-sub-about__content+.p-sub-about__content {
  margin-top: 3.375rem;
}

@media screen and (max-width: 767px) {
  .p-sub-about__content>div {
    padding-left: 15px;
    padding-right: 15px;
  }
	.support .c-service-title_num {
	font-size: 4rem;
		margin-top: -2rem;
}
	.support .c-service-title_h3 {
		margin-left: 0;
		font-size: 1.6rem;
	}
	.support .p-service-item__body {
		padding-top: 2rem;
	}
}

@media screen and (max-width: 767px) {
  .p-sub-about__content:nth-child(odd)>img {
    order: 1;
  }
}

.p-ikuraya-access__cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 62.5rem;
  margin: 3rem auto 0;
  row-gap: 0.375rem;
}

@media screen and (max-width: 767px) {
  .p-ikuraya-access__cards {
    grid-template-columns: 1fr;
  }
}

.p-ikuraya-access__parking-text {
  text-align: center;
  margin-top: 2.3125rem;
}

.p-ikuraya-access__parking-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 38.5rem;
  margin: 1.875rem auto;
  -moz-column-gap: 1.875rem;
  column-gap: 1.875rem;
}

@media screen and (max-width: 767px) {
  .p-ikuraya-access__parking-items {
    -moz-column-gap: 0.625rem;
    column-gap: 0.625rem;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.p-ikuraya-access__parking-item p {
  text-align: center;
  color: #f02323;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .p-ikuraya-access__parking-item p {
    font-size: 14px;
  }
}

.p-ikuraya-access__parking-item img {
  margin-top: 0.625rem;
}

.p-ikuraya-contact.p-contact {
  background-image: none;
  background-color: #fff4f8;
  color: #141414;
  padding-top: 3.625rem;
  padding-bottom: 4rem;
}

.p-ikuraya-contact .p-contact__title {
  color: #141414;
}

.p-ikuraya-contact .p-contact__text {
  margin-top: 1.75rem;
}

.p-ikuraya-contact__button.p-contact__button {
  background: #fff;
  display: block;
  margin-top: 2.5rem;
}

.p-ikuraya-contact-button {
  background: #ea6094;
  border: none;
  color: #141414;
}

.c-contact-button1.p-ikuraya-contact-button::before {
  content: "";
  position: absolute;
  display: block;
  width: 30px;
  height: 30px;
  background-size: cover;
  margin-right: 5px;
  margin-top: 6px;
  vertical-align: middle;
  background-image: url(../images/ikuraya/tel.svg);
  left: 16%;
}

@media screen and (max-width: 767px) {
  .c-contact-button1.p-ikuraya-contact-button::before {
    left: 16%;
    top: 10%;
  }
}

.c-contact-button1.p-ikuraya-contact-button.second::before {
  content: "";
  position: absolute;
  display: block;
  width: 30px;
  height: 30px;
  background-size: cover;
  margin-right: 5px;
  margin-top: 6px;
  vertical-align: middle;
  background-image: url(../images/ikuraya/mobile.svg);
}

.p-ikuraya-event {
  margin-top: 62.5rem;
}

.p-ikuraya-event .p-event__btn a {
  color: #141414;
  background-color: #ea6094;
}

.p-ikuraya-event .p-event__btn {
  padding-left: 15px;
  padding-right: 15px;
}

.p-sub-message {
  padding-top: 3.75rem;
  padding-bottom: 6.25rem;
  background: #fef4f8;
}

@media screen and (min-width: 1600px) {
  .p-sub-message {
    background-image: url(../images/ikuraya/ikuraya_bg1.svg);
    -o-object-fit: cover;
    object-fit: cover;
    background-repeat: no-repeat;
    background-size: cover;
  }
}

.p-sub-message__wrap {
  display: grid;
  grid-template-columns: 1fr 2.07fr;
  background-color: #fff;
  padding: 2.5rem 1.875rem 3.75rem 1.875rem;
  max-width: 62.5rem;
  margin: 2.875rem auto 0;
  gap: 20px;
}

@media screen and (max-width: 767px) {
  .p-sub-message__wrap {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 2.5rem 0.9375rem 3.75rem 0.9375rem;
  }
}

.p-sub-message__left img {
  aspect-ratio: 1;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .p-sub-message__left img {
    margin-left: auto;
    margin-right: auto;
  }
}

.p-sub-message__left p {
  font-size: 1.125rem;
  font-weight: 700;
  margin-top: 1.25rem;
}

@media screen and (max-width: 767px) {
  .p-sub-message__left p {
    text-align: center;
  }
}

.p-sub-message__right p {
  margin-top: 1.8125rem;
  line-height: 1.875rem;
}

.p-sub-message__right p span {
  font-weight: 700;
}

.p-sub-message__right .first-paragraph {
  font-size: 20px;
  color: #ea6094;
  font-weight: bold;
  line-height: 1.5;
}

.p-ikuraya-access__small-title {
  margin-top: 6.25rem;
}

@media screen and (max-width: 767px) {
  .p-ikuraya-access__small-title {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.p-ikuraya-access__small-title.parking {
  margin-top: 5rem;
}

.p-sub-message .c-section-title3 span {
  font-size: 1rem;
}

.p-ikuraya__mv {
  /*   background-image: url(../images/ikuraya/ikuraya_bg1.svg); */
  -o-object-fit: cover;
  object-fit: cover;
  padding-top: 8.75rem;
  font-size: 3.375rem;
  font-weight: 700;
  text-align: center;
  background: #fff4f8;
}

.p-ikuraya__mv h1 {
  font-size: 3.375rem;
}

@media screen and (max-width: 767px) {
  .p-ikuraya__mv h1 {
    font-size: 2.1875rem;
  }
}

.p-ikuraya__slide .splide__pagination {
  bottom: 0em;
}

.p-ikuraya__slide .splide__pagination__page {
  bottom: -0.6em;
  border: 1px solid #141414;
}

.p-ikuraya__slide .splide__pagination__page.is-active {
  background-color: #141414;
}

.p-ikuraya__slide {
  margin-top: 3.75rem;
}

.p-ikuraya__slide .splide__arrow {
  background-color: #ea6094;
  border: 1px solid #ea6094;
}

.p-ikuraya__slide .splide__arrow svg {
  fill: #141414;
}

.p-ikuraya__page-scroll {
  background-color: #ea6094;
  color: #141414;
}

.p-ikuraya__page-scroll li {
  border-left: 3px solid #141414;
}

.p-ikuraya__page-scroll a {
  border-left: none;
}

@media screen and (max-width: 767px) {
  .p-ikuraya__page-scroll li {
    border-left: none;
  }
}

.c-section-title3.p-sub__title {
  color: #ea6094;
}

.p-sub__small-title {
  font-size: 1.125rem;
  max-width: 37.5rem;
  padding-top: 0.5625rem;
  padding-bottom: 0.5625rem;
  margin: 0 auto;
  background-color: #ea6094;
  text-align: center;
  position: relative;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .p-sub__small-title {
    font-size: 1rem;
  }
}

.p-sub__small-title:after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 20px solid #ea6094;
  transform: translateX(-50%);
}

.p-ikuraya-gallery {
  margin-top: 7rem;
  padding-bottom: 6.25rem;
}

.sub-content .splide__arrow {
  background-color: #ea6094;
  border: none;
}

.sub-content .splide__arrow svg {
  fill: #141414;
}

.p-ikuraya__slide .splide__arrow--next {
  right: 1em;
}

@media screen and (max-width: 767px) {
  .p-ikuraya__slide .splide__arrow--next {
    right: 0.5em;
  }
}

.p-ikuraya__slide .splide__arrow--prev {
  left: 1em;
}

@media screen and (max-width: 767px) {
  .p-ikuraya__slide .splide__arrow--prev {
    left: 0.5em;
  }
}

.sub-content .p-post-card__category {
  background-color: #ea6094;
  color: #141414;
}

.sub-content .c-section-title3 span {
  font-size: 1rem;
  color: #141414;
}

@media screen and (max-width: 767px) {
  .sub-content .c-section-title3 span {
    font-size: 1rem;
  }
}

.p-access.p-ikuraya-access {
  margin-top: 10.3125rem;
}

.p-ikuraya-access .p-access__content th {
  width: 26%;
}

.p-ikuraya-access .c-section-title3 span {
  font-size: 1rem;
}

.p-item {
  margin-top: 4.75rem;
  padding-bottom: 6rem;
}

.p-item__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem 2rem;
  max-width: 62.5rem;
  margin: 2.5rem auto 0;
}

@media screen and (max-width: 767px) {
  .p-item__grid {
    grid-template-columns: 1fr;
    padding-left: 15px;
    padding-right: 15px;
    -moz-column-gap: 0.9375rem;
    column-gap: 0.9375rem;
  }
}

.p-item_grid-item {
  text-align: center;
}

.p-item_grid-item div {
  font-size: 1.25rem;
  margin-top: 1.375rem;
}

@media screen and (max-width: 767px) {
  .p-item_grid-item div {
    margin-top: 1.25rem;
  }
}

.p-item_grid-item p {
  margin-top: 0.625rem;
}

@media screen and (max-width: 767px) {
  .p-item_grid-item p {
    margin-bottom: 1.25rem;
  }
}

.p-item_grid-item img {
  margin-left: auto;
  margin-right: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.p-item__banner {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 6.25rem;
}

.p-purchase {
  background-color: #fff4f8;
  padding-top: 4.5rem;
  margin-top: 5.25rem;
  text-align: center;
  padding-bottom: 6.25rem;
}

.p-purchase__inner {
  background-color: #fff;
  margin-top: 2.5rem;
  padding-bottom: 6.25rem;
  max-width: 75rem;
}

.p-purchase__title {
  background-color: #ea6094;
  padding-top: 0.3125rem;
  padding-bottom: 1rem;
  max-width: 62.5rem;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-purchase__title {
    padding-bottom: 0.625rem;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.p-purchase__title:after {
  content: "";
  position: absolute;
  bottom: -28px;
  /* 吹き出しの三角形のサイズに応じて調整 */
  left: 50%;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  /* 三角形の左側 */
  border-right: 20px solid transparent;
  /* 三角形の右側 */
  border-top: 28px solid #ea6094;
  /* 吹き出しと同じ色のボーダーを上側に設定 */
  transform: translateX(-50%);
}

.p-purchase__catch {
  font-size: 1.8125rem;
  font-weight: 700;
  margin-top: 0.75rem;
}

@media screen and (max-width: 767px) {
  .p-purchase__catch {
    font-size: 1.25rem;
  }
}

.p-purchase__time {
  font-size: 1.1875rem;
  font-weight: 700;
}

.p-purchase__content1 {
  padding-top: 3.75rem;
}

.p-purchase__kind {
  font-weight: 700;
  font-size: 1.1875rem;
  background-color: #f1dda3;
  padding-top: 0.8125rem;
  padding-bottom: 1rem;
}

.p-purchase__items {
  max-width: 56.25rem;
  margin-left: auto;
  margin-right: auto;
}

.p-purchase__items.first {
  margin-top: 5.8125rem;
}

.p-purchase__items.second {
  margin-top: 3rem;
}

.p-purchase__item {
  padding-top: 1.25rem;
  padding-bottom: 2.1875rem;
  border: 1px solid #e0b537;
  border-radius: 5px;
}

@media screen and (max-width: 767px) {
  .p-purchase__item {
    padding-bottom: 1.25rem;
  }
}

.p-purchase__item.green {
  border: 1px solid #76b9b7;
}

.p-purchase__item.gray {
  border: 1px solid #95a8a8;
}

.p-purchase__item h5 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #dbaa18;
}

.p-purchase__item.green h5 {
  color: #76b9b7;
}

.p-purchase__item.gray h5 {
  color: #95a8a8;
}

.p-purchase__item div {
  font-weight: 700;
  font-size: 1.0625rem;
  margin-top: 1rem;
}

.p-purchase__item div span {
  font-size: 1.625rem;
}

.p-purchase__item p {
  font-size: 0.9375rem;
  font-weight: 500;
  margin-top: 0.90625rem;
}

.p-purchase__item p span {
  color: #f41616;
}

.p-purchase__grid-1 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 1.5rem;
  -moz-column-gap: 2.375rem;
  column-gap: 2.375rem;
}

@media screen and (max-width: 767px) {
  .p-purchase__grid-1 {
    grid-template-columns: 1fr;
    row-gap: 15px;
  }
}

.p-purchase__grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 767px) {
  .p-purchase__grid-2 {
    grid-template-columns: 1fr;
  }
}

.p-purchase__grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3.125rem;
  max-width: 62.5rem;
  margin: 2.5rem auto 0;
}

@media screen and (max-width: 767px) {
  .p-purchase__grid-3 {
    grid-template-columns: 1fr 1fr;
    gap: 0.625rem;
  }
}

.p-purchase__grid-3 div {
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
  padding: 1.5625rem 1.5625rem 2.0625rem 1.5625rem;
  background-color: #fff;
}

.p-purchase__grid-3 p {
  margin-top: 1.5625rem;
}

/* テーブル全体のスタイル */
.p-purchase__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  /* 列幅を均等に分割 */
  margin-top: 1.25rem;
}

/* テーブルのヘッダー */
.p-purchase__table th {
  background-color: #ffeebb;
  /* ヘッダーに黄色の背景 */
  padding: 10px;
  /* 内側の余白 */
  border-bottom: 1px solid #baae89;
}

/* セルのスタイリング */
.p-purchase__table td {
  padding: 10px;
  /* 内側の余白 */
  border-bottom: 1px solid #baae89;
  text-align: center;
  /* テキストを中央寄せに */
  font-size: 1.0625rem;
  font-weight: 700;
}

/* 最後の行の下境界線を削除 */
.p-purchase__table tr:last-child td {
  border-bottom: none;
}

.p-purchase__table tr:last-child th {
  border-bottom: none;
}

.p-purchase__voice {
  font-size: 1.25rem;
  font-weight: 700;
  padding-top: 3.75rem;
  padding-bottom: 1.375rem;
}

.p-purchase__voice2 {
  font-size: 1.25rem;
  margin-top: 4.5rem;
  padding-bottom: 1.375rem;
  font-weight: 400;
}

.p-purchase__title-ex {
  font-size: 2rem;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .p-purchase__title-ex {
    font-size: 1.5rem;
  }
}

.p-purchase__title-ex span {
  font-size: 2.25rem;
  font-weight: 700;
  color: #f02323;
}

@media screen and (max-width: 767px) {
  .p-purchase__title-ex span {
    font-size: 1.75rem;
  }
}

.p-purchase__text {
  font-size: 1.25rem;
  margin-top: 3.25rem;
}

@media screen and (max-width: 767px) {
  .p-purchase__text {
    font-size: 1rem;
  }
}

.p-purchase__text span {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f02323;
}

@media screen and (max-width: 767px) {
  .p-purchase__text span {
    font-size: 1.25rem;
  }
}

.p-purchase__text2 {
  margin-top: 2.5rem;
}

.p-404__title {
  text-align: center;
}

.p-404__btn {
  text-align: center;
}

.p-access {
  margin-top: 7rem;
}

.p-access__contents {
  width: 100%;
  max-width: 1000px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 2.5rem auto 0;
  position: relative;
  z-index: 2;
  -moz-column-gap: 20px;
  column-gap: 20px;
}

@media screen and (max-width: 767px) {
  .p-access__contents {
    grid-template-columns: 1fr;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.p-access__contents img {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}

.p-access__content {
  border-collapse: collapse;
}

.p-access__content th,
.p-access__content td {
  border-bottom: 1px solid #c7c7c7;
  /* セルの境界線色 */
  padding-top: 1.4375rem;
  padding-bottom: 1.5rem;
  /* セル内の余白 */
  vertical-align: top;
  /* セルの内容を上揃えに */
  line-height: 2.0625rem;
  font-weight: 400;
}

.p-access__content th {
  width: 40%;
  /* 見出しセルの幅を30%に設定 */
  text-align: left;
}

.p-access__content td {
  margin-left: -3px;
}

.responsive-map-container {
  position: relative;
  height: 0;
  overflow: hidden;
  padding-bottom: 20%;
  /* 高さ326px / 幅1000px のアスペクト比 */
  max-width: 1000px;
  /* 最大幅を1000pxに設定 */
  margin: 6.25rem auto 0;
  /* センタリング */
}

@media screen and (max-width: 767px) {
  .responsive-map-container {
    padding-bottom: 50%;
  }
}

.responsive-map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.p-sns__container {
  display: flex;
  justify-content: center;
  margin: 2.5rem auto;
  flex-wrap: wrap;
  row-gap: 20px;
}

.p-sns__container img {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media screen and (max-width: 767px) {
  .p-sns__container img {
    width: 70px;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

.p-sns__container img.p-sns__first-sns {
  margin-left: 0;
}

.p-sns {
  margin-top: 9rem;
  padding-bottom: 3.8125rem;
}

#sns.p-sns .c-section-title3 span {
  font-size: 1.25rem;
}

.p-tiara-access {
  position: relative;
}

.p-tiara-access__bg1 {
  position: absolute;
  top: -0.9375rem;
  left: -9.625rem;
  z-index: 1;
}

.p-access__content tr:first-child th,
.p-access__content tr:first-child td {
  padding-top: 0;
}

.my-tabs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  color: #606060;
  font-size: 1.125rem;
  font-weight: 500;
  margin-top: 3.75rem;
}

@media screen and (max-width: 767px) {
  .my-tabs {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.my-tab {
  cursor: pointer;
  border-bottom: 3px #606060 solid;
  padding-top: 1.625rem;
  padding-bottom: 1.625rem;
  text-align: center;
}

.my-tab-content {
  margin-top: 3.75rem;
  padding-bottom: 5.25rem;
}

.my-content__cat {
  font-size: 2rem;
  font-weight: 500;
  color: #606060;
}

.my-content__wrap {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: 1.875rem;
  column-gap: 1.875rem;
  row-gap: 3.75rem;
}

@media screen and (max-width: 767px) {
  .my-content__wrap {
    grid-template-columns: 1fr;
  }
}

.my-content__wrap a {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.my-tab.active-tab {
  position: relative;
  color: #ea6094;
  border-bottom: none;
}

.p-sub-purchase .my-tab.active-tab {
  color: #e9d71d;
}

.active-tab::after {
  content: "";
  /* 疑似要素の内容は空 */
  position: absolute;
  /* 親要素に対して絶対位置指定 */
  bottom: 0;
  /* ボーダーを下部に配置 */
  left: 0;
  /* 左から始める */
  width: 100%;
  /* 要素の全幅に広げる */
  height: 3px;
  /* ボーダーの高さ */
  background: linear-gradient(to right,
      #ea6094,
      #fcf59b);
  /* グラデーションの設定 */
}

.p-sub-purchase .active-tab::after {
  background: #ea6094;
}

.custom-thumbnail {
  width: 100%;
  /* または希望する固定幅 */
  height: auto;
  /* 高さを自動調整 */
  aspect-ratio: 3/2;
  /* アスペクト比を1:1に設定 */
  -o-object-fit: cover;
  object-fit: cover;
  /* 画像がコンテナを満たすように調整 */
}

.page-numbers {
  display: flex;
  justify-content: center;
  padding: 0.4375rem 0.9375rem 0.5625rem;
}

.page-numbers li {
  color: #141414;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 1rem;
  padding: 0.4375rem 0.9375rem 0.5625rem;
}

@media screen and (max-width: 767px) {
  .page-numbers li {
    font-size: 1.25rem;
    padding: 0.4375rem 0.4375rem 0.5625rem;
  }
}

.page-numbers.current {
  color: #fff;
  padding: 0.4375rem 0.9375rem 0.5625rem;
  background-color: #ea6094;
}

.p-sub-purchase .page-numbers.current {
  color: #141414;
  background-color: #ea6094;
}

.pagination {
  width: 100%;
}

.sub-event {
  padding-top: 2.375rem;
}

.p-footer__inner {
  display: flex;
  justify-content: space-between;
  max-width: 71.875rem;
  padding: 2.5rem 0 2.8125rem;
}

@media screen and (max-width: 767px) {
  .p-footer__inner {
    flex-direction: column-reverse;
    gap: 3.5rem;
    padding-bottom: 3.75rem;
  }
}

.footer-left {
  margin-left: 3.25rem;
}

@media screen and (max-width: 767px) {
  .footer-left {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

.footer-right {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  margin-left: 1.875rem;
  font-size: 0.875rem;
}

@media screen and (max-width: 767px) {
  .footer-right {
    grid-template-columns: auto;
    row-gap: 15px;
    margin-left: 0;
    justify-content: center;
    gap: 1.5rem;
  }
}

.footer-column {
  display: block;
}

.footer-column h4 {
  font-family: "Montserrat", sans-serif;
  color: #ea6094;
  font-weight: 600;
  font-size: 1.25rem;
}

.footer-column ul {
  padding-left: 1.25rem;
  border-left: 1px solid #ea6094;
  margin-top: 0.625rem;
}

.footer-column li {
  margin-top: 1.3125rem;
}

.footer-column li.first {
  margin-top: 0;
}

.footer-column p {
  margin-top: 1rem;
  font-size: 0.875rem;
}

@media screen and (max-width: 767px) {
  .footer-column img {
    margin-left: auto;
    margin-right: auto;
  }
}

.footer__sns-icon {
  display: flex;
  gap: 10px;
  text-align: center;
  margin-top: 0.625rem;
}

.footer__sns p {
  color: #ea6094;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 0.3125rem;
}

.footer__sns {
  padding: 0 1.875rem 0.625rem;
  border-left: 1px solid #ea6094;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .footer__sns {
    text-align: left;
  }
}

.footer-column:nth-of-type(5) .footer__sns {
  margin-top: 1.875rem;
}

@media screen and (max-width: 767px) {
  .footer-column:nth-of-type(5) .footer__sns {
    margin-top: 0;
  }
}

.footer-column:nth-of-type(6) .footer__sns {
  margin-top: 1.875rem;
}

@media screen and (max-width: 767px) {
  .footer-column:nth-of-type(6) .footer__sns {
    margin-top: 0;
  }
}

.p-footer__copyright {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
  background-color: #141414;
  color: #fff;
  text-align: center;
  font-size: 1rem;
  line-height: 32px;
  letter-spacing: 0.03em;
  font-family: "Montserrat", sans-serif;
}

.p-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #fff;
}

.p-header__inner {
  max-width: 97.5rem;
  padding: 0 1.25rem 0 0.8125rem;
  margin: 0 auto;
  height: inherit;
  height: 5.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .p-header__inner {
    height: 5rem;
  }

  .p-footer__copyright {
    padding-bottom: 5.75rem;
  }

}

.p-header__left {
  height: inherit;
  display: flex;
  text-align: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .p-header__left {
    display: none;
  }
}

.p-header__nav {
  height: inherit;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: flex-start;
  font-weight: bold;
  font-size: 0.875rem;
}

@media screen and (max-width: 767px) {
  .p-header__nav {
    margin: 0;
  }
  .p-header__nav.head.none-link:after {
    display: none;
}
.p-header__nav.li_border {
    border-bottom: 1px solid #ea6094;
    position: relative;
}
.p-header__nav.head.none-link {
    margin-bottom: 1rem;
}
.p-header__nav.head.none-link a {
    border-bottom: none;
    padding-bottom: 0.2rem;
}
.p-header__nav.head.none-link a::before {
    transform: translatey(-30%);
}
}

.p-header__nav a {
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  line-height: 1rem;
  font-weight: 400;
  padding-left: 0.6rem;
  padding-right: 0.6rem;
  font-size: 1.1rem;
  padding-top: 0.6rem;
  padding-top: 0;
  padding-bottom: 0.6rem;
  text-align: center;
  width: 100%;
  display: block;
}

@media screen and (max-width: 767px) {
  .p-header__nav a {
    padding-left: 2rem;
  }
}

.p-header__nav.head a {
  border-bottom: 1px solid #ea6094;
  position: relative;
}

.p-header__nav.head a::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50px;
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translatey(-50%);
  background: #ea6094;
}

.p-header__nav a:hover {
  color: #ea6094;
}

.p-header__nav.p-header__button a {
  /* padding-left: 4.125rem; */
  font-size: 1.0625rem;
}

@media screen and (max-width: 767px) {
  .p-header__nav.p-header__button a {
    width: 200px;
    text-align: center;
    margin-top: 1.5rem;
  }
}

.p-header__button {
  display: flex;
  text-align: center;
  justify-content: center;
  height: auto;
  margin-left: 2rem;
}

@media (max-width: 1520px) {
  .p-header__button {
    margin-left: 1.25rem;
  }
}

@media (max-width: 1277px) {
  .p-header__nav.p-header__button a {
    font-size: 0.875rem;
    /* padding-left: 2.4rem; */
  }
}

.p-header__button a:hover {
  opacity: 0.8;
  color: #fff;
}

.p-header__nav.p-header__button a::after {
  background: none;
}

.p-header__nav.p-header__button a:hover::after {
  visibility: hidden;
  opacity: 0;
}

.break {
  display: none;
}

@media (max-width: 1372px) {
  .break {
    display: block;
  }
}

@media (max-width: 768px) {
  .break {
    display: none;
  }
}

.break2 {
  display: none;
}

@media (max-width: 880px) {
  .break2 {
    display: block;
  }
}

@media (max-width: 768px) {
  .break2 {
    display: none;
  }
}

.break3 {
  display: none;
}

@media (max-width: 768px) {
  .break3 {
    display: block;
  }
}

.openbtn {
  position: relative;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  display: none;
}

@media screen and (max-width: 767px) {
  .openbtn {
    display: block;
  }
}

.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background: #ea6094;
  width: 50%;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
}

.openbtn span:nth-of-type(2) {
  top: 23px;
}

.openbtn span:nth-of-type(3) {
  top: 31px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 14px;
  transform: translateY(6px) rotate(-45deg);
  width: 40%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  transform: translateY(-6px) rotate(45deg);
  width: 40%;
}

.p-header__sp {
  position: fixed;
  top: 5rem;
  bottom: 0;
  right: -100%;
  width: 100%;
  background-color: #fff;
  transition: right 0.3s ease;
  z-index: 10;
  overflow-y: auto;
  padding-top: 50px;
  padding-bottom: 200px;
  padding-left: 20px;
  padding-right: 20px;
}

.p-header__sp li.p-header__nav {
  font-size: 1.25rem;
}

.p-header__sp.is-active {
  right: 0;
}

.no-scroll {
  overflow: hidden !important;
}

.p-pager-list {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3.75rem;
  padding-bottom: 6.25rem;
}

.p-pager-list__btn a {
  display: inline-block;
  padding: 10px 10px;
  color: #ea6094;
  font-size: 1.5rem;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .p-pager-list__btn a {
    font-size: 1.125rem;
    padding: 10px 5px;
    line-height: 1.125rem;
  }
}

.single-purchase .p-pager-list__btn a {
  color: #141414;
}

.p-pager-list__btn.prev a::before {
  content: "";
  /* 実際のテキストは不要なので空に */
  display: inline-block;
  width: 20px;
  /* 矢印画像の幅 */
  height: 20px;
  /* 矢印画像の高さ */
  background-image: url(../images/common/arrow1.svg);
  /* 矢印画像のパス */
  background-size: contain;
  /* 画像が要素のサイズに収まるように調整 */
  background-repeat: no-repeat;
  /* 画像を繰り返さない */
  margin-top: 4px;
}

.p-pager-list__btn.next a::before {
  content: "";
  /* 実際のテキストは不要なので空に */
  display: inline-block;
  width: 20px;
  /* 矢印画像の幅 */
  height: 20px;
  /* 矢印画像の高さ */
  background-image: url(../images/common/arrow2.svg);
  /* 矢印画像のパス */
  background-size: contain;
  /* 画像が要素のサイズに収まるように調整 */
  background-repeat: no-repeat;
  /* 画像を繰り返さない */
  margin-top: 4px;
}

.single-purchase .p-pager-list__btn.prev a::before {
  background-image: url(../images/common/arrow1_bk.svg);
  /* 矢印画像のパス */
}

.single-purchase .p-pager-list__btn.next a::before {
  background-image: url(../images/common/arrow2_bk.svg);
  /* 矢印画像のパス */
}

.p-post-article__inner.l-inner {
  margin-top: 1.40625rem;
  max-width: 68.75rem;
}

@media screen and (max-width: 767px) {
  .p-post-article__inner.l-inner {
    margin-top: 3.75rem;
  }
}

.p-post-article__title-box h2.p-post-article__title {
  font-size: 2rem;
  color: #ea6094;
  background-image: none;
  border-bottom: 1px solid #ea6094;
  padding-bottom: 0.625rem;
  margin-top: 1.5rem;
}

@media screen and (max-width: 767px) {
  .p-post-article__title-box h2.p-post-article__title {
    font-size: 1.5rem;
  }
}

.single-purchase .p-post-article__title-box h2.p-post-article__title {
  color: #141414;
  border-bottom: 1px solid #ea6094;
}

.p-post-article__info {
  display: flex;
}

.p-post-article__category {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3125rem;
  margin-left: 1.625rem;
}

.p-post-article__category.-event {
  margin-left: 0;
}

.p-post-article__category li {
  padding: 0.125rem 0.5rem;
  color: #2589d0;
  background-color: #ea6094;
  color: #fff;
  font-weight: 700;
}

.p-post-article__box {
  margin: 6.4rem auto 0;
}

.p-post-article__content {
  padding: 1.25rem 1.4375rem 0;
  background-color: #fff;
  width: 100%;
  border-bottom: 1px solid #ea6094;
}

@media screen and (max-width: 767px) {
  .p-post-article__content {
    padding: 0;
  }
}

.single-purchase .p-post-article__content {
  background-color: #fff;
  border-bottom: 1px solid #141414;
}

.p-post-article__content-wrap {
  padding-bottom: 1.875rem;
  width: 100%;
  margin: auto;
}

.p-post-article__contents {
  margin-top: 1.875rem;
}

.p-post-article__main-img {
  aspect-ratio: 7/4;
}

.p-post-article__main-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-post-article__category {
  letter-spacing: 0;
}

.p-post-article__data {
  font-size: 1rem;
  text-align: right;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.p-post-article__content h2 {
  margin-top: 1.875rem;
  margin-bottom: 1.875rem;
  padding: 0.375rem 0;
  color: #fff;
  font-size: 2rem;
  background-image: linear-gradient(125deg,
      #ea6094 0%,
      #ea6094 40%,
      #ffd6d6 70%,
      #fcf2a1 100%);
}

@media screen and (max-width: 767px) {
  .p-post-article__content h2 {
    font-size: 1.5rem;
  }
}

.single-purchase h2.wp-block-heading {
  color: #141414;
  background-color: #ea6094;
  background-image: none;
}

.p-post-article__contents h3 {
  margin-top: 1.875rem;
  margin-bottom: 1.875rem;
  padding-bottom: 0.625rem;
  color: #ea6094;
  font-size: 1.75rem;
  background-image: linear-gradient(to right, #ea6094 80px, #fffbde 80px);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100% 10px;
  /* 1pxはボーダーの太さに相当します */
  padding-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .p-post-article__contents h3 {
    font-size: 1.375rem;
  }
}

.single-purchase .p-post-article__contents h3 {
  color: #141414;
  background-image: linear-gradient(to right, #ea6094 80px, #fffbde 80px);
}

.p-post-article__contents h4 {
  font-size: 1.375rem;
  margin: 1.875rem 0;
  padding-left: 0.9375rem;
  color: #141414;
  font-size: 1.75rem;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-post-article__contents h4 {
    font-size: 1.125rem;
  }
}

.p-post-article__contents h4::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  height: 70%;
  width: 5px;
  background-image: linear-gradient(to bottom, #ea6094 50%, #ffe2f0 50%);
}

.single-purchase .p-post-article__contents h4::before {
  background-image: linear-gradient(to bottom, #ea6094 50%, #fffbde 50%);
}

.p-post-article__contents h5 {
  margin: 1.25rem 0;
  padding: 0.125rem 0.78125rem;
  display: inline-block;
  color: #141414;
  font-size: 1.125rem;
  font-weight: 700;
  font-size: 1rem;
}

.p-post-article__contents p {
  font-size: 16px;
  line-height: 2rem;
}

.p-post-article__contents a {
  color: #2589d0;
  text-decoration: underline;
}

.p-post-article__contents img {
  margin: 0.625rem 0;
}

.p-post-article__contents figure {
  margin: 0.625rem 0;
}

.p-post-article__contents figcaption {
  margin: 0.625rem 0;
  font-size: 1rem;
  text-align: center;
}

h2.wp-block-heading {
  padding-left: 1.5rem;
}

.sub-info .active-tab::after {
  background: linear-gradient(to right, #ea6094, #ea6094);
}

.sub-info .p-post-article__data {
  color: #bababa;
}

.sub-info .p-post-article__title-box h2.p-post-article__title {
  color: #141414;
  padding-left: 0;
  border-bottom: 1px solid #bababa;
}

.sub-info .p-post-article__contents h3 {
  background-image: linear-gradient(to right, #ea6094 80px, #dbdbdb 80px);
}

.sub-info .p-post-article__contents h4::before {
  background-image: linear-gradient(to bottom, #ea6094 50%, #ffdc00 50%);
}

.sub-info .p-post-article__content {
  border-bottom: 1px solid #bababa;
}

.p-post-card__img {
  width: 100%;
  aspect-ratio: 1/1;
}

.p-post-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-post-card__body {
  position: relative;
}

.p-post-card__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.375rem 0 0.5rem;
}

.p-post-card__category {
  padding: 0.3125rem 0.625rem;
  background-color: #ea6094;
  color: #fff;
  margin-top: 0.9375rem;
  font-weight: 400;
  font-size: 0.875rem;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 1rem;
}

.p-post-card__new {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  color: #2589d0;
  padding: 0.3125rem 0.625rem;
  border: 1px solid #2589d0;
}

.p-post-card__date {
  color: #767676;
  margin-top: auto;
  padding-top: 1.25rem;
}

.p-post-card__title {
  margin-top: 0.9375rem;
  line-height: 32px;
}

.p-post-connect__title {
  font-size: 1.5rem;
  color: #2589d0;
}

.p-post-connect__items {
  display: grid;
  gap: 3.125rem;
  margin-top: 1rem;
}

@media screen and (max-width: 767px) {
  .p-post-connect__items {
    row-gap: 2.5rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
    grid-template-columns: repeat(4, 1fr);
  }
}

.p-post-list {
  position: relative;
}

.p-post-list__wrap {
  margin: 2rem 0;
}

.p-post-list__title {
  font-size: 3rem;
  color: #2589d0;
}

.p-post-list__items {
  display: grid;
  gap: 3.125rem;
  margin-top: 1rem;
  grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 767px) {
  .p-post-list__items {
    row-gap: 2.5rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
    grid-template-columns: repeat(4, 1fr);
  }
}

.p-post-list__cards {
  margin-top: 3rem;
}

@media screen and (max-width: 767px) {
  .p-post-list__cards {
    margin-top: 6.25rem;
  }
}

.p-post-list__btn {
  margin-top: 1.25rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-post-list__btn {
    margin: 1.75rem auto 0;
    width: 100%;
    max-width: calc(61.25rem + 50px);
    padding: 0 0.625rem;
  }
}

.p-top-gallery__inner {
  margin: 5% 5% 0 5%;
}

.p-top-gallery .splide__slide {
  display: block;
  width: 100%;
  aspect-ratio: 600/300;
}

.p-top-gallery .splide__slide picture {
  height: inherit;
}

.p-top-gallery .splide__slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 1000/563;
}

.p-top-gallery .swiper-slide {
  display: block;
  width: 100%;
  aspect-ratio: 600/300;
}

.p-top-gallery .swiper-slide picture {
  height: inherit;
  height: 100%;
}

.p-top-gallery .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-top-gallery .slick-track {
  display: block;
  width: 100%;
}

.p-top-gallery .slick-slide {
  display: block;
  width: 100%;
  aspect-ratio: 600/300;
  margin: 0 5px;
}

.p-top-gallery .slick-slide picture {
  height: inherit;
  height: 100%;
}

.p-top-gallery .slick-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-top-mv-slick {
  background: black;
}

.p-top-mv-slick__inner {
  margin: 5% 5% 0 5%;
}

.p-top-mv-slick .slick-track {
  display: block;
  width: 100%;
}

.p-top-mv-slick .slick-slide {
  display: block;
  width: 100%;
  aspect-ratio: 600/300;
  margin: 0 5px;
}

.p-top-mv-slick .slick-slide picture {
  height: inherit;
  height: 100%;
}

.p-top-mv-slick .slick-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-top-mv-splide__inner {
  margin-top: 3.75rem;
}

.p-top-mv-splide .splide__slide {
  display: block;
  width: 100%;
}

.p-top-mv-splide .splide__slide picture {
  height: inherit;
  height: 100%;
}

.p-top-mv-splide .splide__slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 1000/563;
}

.splide__arrow {
  width: 5rem;
  height: 5rem;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #ea6094;
}

@media screen and (max-width: 767px) {
  .splide__arrow {
    width: 3rem;
    height: 3rem;
  }
}

.splide__arrow svg {
  fill: #ea6094;
  width: 1.5rem;
  height: 1.5rem;
}

.splide__pagination {
  bottom: -2.5em;
}

.splide__pagination__page.is-active {
  transform: scale(1);
  background-color: #ea6094;
}

.splide__pagination__page {
  margin: 3px 10px 3px 10px;
  background: #fff;
}

.splide__arrow--prev {
  left: 2.5em;
}

@media screen and (max-width: 767px) {
  .splide__arrow--prev {
    left: 1em;
  }
}

.splide__arrow--next {
  right: 2.5em;
}

@media screen and (max-width: 767px) {
  .splide__arrow--next {
    right: 1em;
  }
}

.p-top-mv-swiper__inner {
  margin: 5% 5% 0 5%;
}

.p-top-mv-swiper .swiper-slide {
  display: block;
  width: 100%;
  aspect-ratio: 600/300;
}

.p-top-mv-swiper .swiper-slide picture {
  height: inherit;
  height: 100%;
}

.p-top-mv-swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-top-mv-swiper .swiper-button-prev,
.p-top-mv-swiper .swiper-button-next {
  text-rendering: initial;
}

.p-top-post__inner {
  margin-top: 1.75rem;
}

.p-top-post .splide__slide {
  display: block;
  width: 100%;
}

.p-top-post .splide__slide a {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.p-top-post .splide__slide img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-top-post .splide__pagination {
  display: none;
}

.p-top-post .splide__pagination__page.is-active {
  background-color: blue;
}

.p-top-post .swiper {
  padding-bottom: 20px;
}

.p-top-post .swiper-slide {
  display: block;
  width: 100%;
  aspect-ratio: 600/300;
}

.p-top-post .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-top-post .swiper-pagination {
  bottom: 0;
}

.p-top-post .swiper-button-prev,
.p-top-post .swiper-button-next {
  text-rendering: initial;
}

.p-top-post .slick-track {
  display: block;
  width: 100%;
}

.p-top-post .slick-slide {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 5px;
}

.p-top-post .slick-slide img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 600/300;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-top-post .slick-next,
.p-top-post .slick-prev {
  background: gray;
}

.p-top-works {
  padding-bottom: 3.125rem;
}

.p-top-works__inner {
  margin: 5% 5% 0 5%;
}

.p-top-works .splide__slide {
  display: block;
  width: 100%;
}

.p-top-works .splide__slide a {
  display: block;
  aspect-ratio: 600/400;
}

.p-top-works .splide__slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-top-works .splide__pagination {
  bottom: -2em;
}

.p-top-works .splide__pagination__page.is-active {
  background-color: blue;
}

.p-top-works .swiper {
  padding-bottom: 20px;
}

.p-top-works .swiper-slide {
  display: block;
  width: 100%;
  aspect-ratio: 600/300;
}

.p-top-works .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-top-works .swiper-pagination {
  bottom: 0;
}

.p-top-works .swiper-button-prev,
.p-top-works .swiper-button-next {
  text-rendering: initial;
}

.p-top-works .slick-track {
  display: block;
  width: 100%;
}

.p-top-works .slick-slide {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 5px;
}

.p-top-works .slick-slide img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 600/300;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-top-works .slick-next,
.p-top-works .slick-prev {
  background: gray;
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}

.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0;
}

.scroll-infinity__list--left {
  animation: infinity-scroll-left 80s infinite linear 0.5s both;
}

.scroll-infinity__list--left-crown {
  animation: infinity-scroll-left 110s infinite linear 0.5s both;
  margin-top: 2rem;
}

.scroll-infinity__item {
  width: 76.9230769231vw;
}

.scroll-infinity__item-crown {
  width: 142.8571428571vw;
  margin-left: 1.25rem;
}

@media screen and (max-width: 767px) {
  .scroll-infinity__item-crown {
    width: 250vw;
    margin-left: 0.625rem;
  }
}

.scroll-infinity__item-crown>img {
  aspect-ratio: 2011/208;
  -o-object-fit: cover;
  object-fit: cover;
}

.scroll-infinity__item>img {
  width: 100%;
  aspect-ratio: 2070/478;
  -o-object-fit: cover;
  object-fit: cover;
}

iframe html {
  overflow-y: hidden;
}

.p-area {
  margin-top: 6.25rem;
}

.p-area__logo {
  margin: 4.5rem auto 0;
  max-width: 31.25rem;
  width: 100%;
}

.p-area__about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 2.5rem;
}

@media screen and (max-width: 767px) {
  .p-area__about {
    display: flex;
    flex-direction: column-reverse;
  }
}

.p-area__about div {
  position: relative;
  z-index: 2;
}

.p-area__about h3 {
  font-size: 1.625rem;
  font-weight: 700;
  padding-top: 0.625rem;
}

.p-area__about img {
  aspect-ratio: 3/ 2;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .p-area__about h3 {
    padding-top: 1.875rem;
  }
}

.level-up .p-area__about h3 {
  font-size: 1.5rem;
  padding-top: 1.1875rem;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .level-up .p-area__about h3 {
    padding-top: 2.1875rem;
  }
}

.p-area__about p {
  line-height: 2rem;
  margin-top: 1.875rem;
  padding-right: 3.3125rem;
}

@media screen and (max-width: 767px) {
  .p-area__about p {
    padding-right: 0;
  }
}

.p-area__about-image {
  position: relative;
}

.p-area__about-character {
  position: absolute;
  top: 36%;
  right: -20%;
  z-index: 1;
  width: 24.5rem;
}

@media screen and (max-width: 767px) {
  .p-area__about-character {
    width: 15.625rem;
    top: 24%;
    right: -8%;
  }
}

@media screen and (max-width: 399px) {
  .p-area__about-character {
    top: 13%;
    right: -20%;
  }
}

.p-area__guide {
  margin-top: 4.375rem;
}

.p-area__guide-contents {
  margin-top: 2.6875rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3.4375rem;
  row-gap: 2.3125rem;
}

@media screen and (max-width: 767px) {
  .p-area__guide-contents {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}

.p-area__guide-content h3 {
  font-size: 1.5rem;
  margin-top: 2.125rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-area__guide-content h3 {
    font-size: 1.25rem;
  }
}

.p-area__guide-content p {
  margin-top: 1rem;
  line-height: 2rem;
}

.p-area__guide-gallery {
  overflow: hidden;
}

.p-area__guide-gallery h3 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 3.75rem;
  margin-bottom: 2.25rem;
}

.p-area__price {
  margin-top: 3.75rem;
}

.p-area__price-title {
  background-color: #da245f;
  padding-top: 0.75rem;
  padding-bottom: 1.1875rem;
  text-align: center;
  margin-top: 1.25rem;
}

.p-area__price-title.blue {
  background-color: #5ebdcc;
}

.p-area__price-title h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .p-area__price-title h3 {
    font-size: 1.5rem;
  }
}

.p-area__price-title p {
  font-size: 0.75rem;
  font-weight: 700;
}

.p-area__price-tables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 2.5rem;
  -moz-column-gap: 2.5rem;
  column-gap: 2.5rem;
}

@media screen and (max-width: 767px) {
  .p-area__price-tables {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.p-area__pricing-table {
  color: #141414;
}

.p-area__pricing-header {
  display: flex;
  justify-content: center;
  padding: 10px;
  border: 2px solid #5ebdcc;
  border-radius: 5px;
  font-size: 1.75rem;
  font-weight: 700;
  color: #5ebdcc;
}

@media screen and (max-width: 767px) {
  .p-area__pricing-header {
    font-size: 1.5rem;
  }
}

.p-area__pricing-header.red {
  border: 2px solid #da245f;
  color: #da245f;
}

.p-area__pricing-item {
  display: flex;
  justify-content: center;
  padding: 10px;
  background-color: #fff;
  align-items: center;
  margin-top: 1.25rem;
}

.p-area__pricing-item.levelup {
  margin-top: 0;
}

.p-area__item-duration {
  align-items: center;
  text-align: center;
  font-size: 1.0625rem;
  font-weight: 700;
}

.p-area__item-duration span {
  background-color: #5ebdcc;
  padding: 0.125rem 0.8125rem 0.125rem 1.0625rem;
  color: #fff;
}

.p-area__item-duration.red span {
  background-color: #da245f;
}

.p-area__item-price {
  font-size: 2.9375rem;
  font-weight: bold;
  margin-left: 0.9375rem;
}

.p-area__item-price span {
  font-size: 1.625rem;
}

.p-area__menu {
  margin-top: 4.1rem;
}

.p-area__menu-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 2.5rem;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .p-area__menu-text {
    grid-template-columns: 1fr;
  }
}

.p-area__menu-text div {
  margin-left: 2.5rem;
}

@media screen and (max-width: 767px) {
  .p-area__menu-text div {
    margin: 1.875rem 0 0 0;
  }
}

.p-area__menu-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

.p-area__menu-text p {
  font-size: 1.125rem;
  margin-top: 1.5625rem;
  font-weight: 400;
}

.p-area__menu-voice {
  text-align: center;
  margin-top: 3.75rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.p-area__menu-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  row-gap: 3.125rem;
  -moz-column-gap: 3.4375rem;
  column-gap: 3.4375rem;
  margin-top: 2.5rem;
}

@media screen and (max-width: 767px) {
  .p-area__menu-gallery {
    gap: 15px;
  }
}

.p-area__menu-item p {
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  margin-top: 1.4375rem;
}

@media screen and (max-width: 767px) {
  .p-area__menu-item p {
    font-size: 1.125rem;
  }
}

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

@media screen and (max-width: 767px) {
  .p-event__btn {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.p-event__btn a {
  margin: 3.5rem auto 0;
}

.sub-tiara .p-event__btn a {
  background-color: #da245f;
}

/*タブ切り替え全体のスタイル*/
.tabs {
  margin-top: 50px;
  padding-bottom: 40px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  margin: 0 auto;
  max-width: 1200px;
  background-color: #141414;
}

/*タブのスタイル*/
.tab_item {
  width: 50%;
  height: 64px;
  background-color: #fff;
  font-size: 1.75rem;
  text-align: center;
  color: #565656;
  display: block;
  float: left;
  font-weight: 700;
  transition: all 0.2s ease;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .tab_item {
    font-size: 1.25rem;
  }
}

.tab_item:hover {
  opacity: 0.75;
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  padding-left: 6.25rem;
  padding-right: 6.25rem;
  clear: both;
  overflow: hidden;
  border: 2px solid #fff;
  padding-bottom: 6.25rem;
}

@media screen and (max-width: 767px) {
  .tab_content {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

/*選択されているタブのコンテンツのみを表示*/
#all:checked~#all_content,
#programming:checked~#programming_content,
#design:checked~#design_content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
input.karaoke+.tab_item {
  color: #da245f;
}

input.bar+.tab_item {
  color: #5ebdcc;
}

input.karaoke:checked+.tab_item {
  background-color: #da245f;
  color: #fff;
}

input.bar:checked+.tab_item {
  background-color: #5ebdcc;
  color: #fff;
}

.p-tiara-contact {
  background-image: none;
  border-top: 4px solid #fff;
  position: relative;
  overflow: hidden;
  padding-top: 3.5rem;
}

.p-tiara-contact__button {
  display: block;
  position: relative;
  z-index: 2;
}

.p-tiara-contact__bg1 {
  position: absolute;
  top: -45%;
  right: -10%;
  z-index: 1;
}

.p-tiara-contact__bg2 {
  position: absolute;
  top: 34%;
  left: -11%;
  z-index: 1;
}

.p-tiara-contact-button {
  color: #da245f;
  border: 2px solid #da245f;
}

.p-tiara-contact-button::before {
  background-image: url(../images/tiara/tel.svg);
}

.p-tiara-contact .p-contact__text {
  margin-top: 1.875rem;
}

.sub-tiara {
  background-color: #141414;
  color: #fff;
}

.sub-tiara .p-post-card__category {
  background-color: #5ebdcc;
}

.sub-tiara .p-post-card__title {
  color: #626262;
}

.sub-tiara .p-about__video-container {
  padding: 22%;
}

@media screen and (max-width: 767px) {
  .sub-tiara .p-about__video-container {
    padding: 28%;
  }
}

.p-tiara__mv {
  padding-top: 5.6875rem;
  position: relative;
  overflow: hidden;
}

.p-tiara__slide {
  margin-top: 3.75rem;
  position: relative;
  z-index: 2;
}

.p-tiara__logo {
  margin: 3.1875rem auto 0;
  position: relative;
  z-index: 2;
  max-width: 36.75rem;
  width: 100%;
}

.p-tiara__bg1 {
  position: absolute;
  top: -13%;
  right: -10%;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .p-tiara__bg1 {
    display: none;
  }
}

.p-tiara__bg2 {
  position: absolute;
  top: 3%;
  left: -10%;
  z-index: 1;
}

.p-tiara__mv .splide__pagination__page.is-active {
  background-color: #5ebdcc;
}

.p-tiara__page-scroll {
  background-color: #5ebdcc;
}

.p-tiara-gallery {
  margin-top: 3.75rem;
}

.sub-tiara .splide__arrow svg {
  fill: #5ebdcc;
}

.sub-tiara .splide__arrow {
  border: 1px solid #5ebdcc;
}

.sub-tiara .scroll-infinity__list--left .scroll-infinity__item:nth-child(3) {
  margin-left: 20px;
}

.sub-tiara .scroll-infinity__item {
  width: 66.6666666667vw;
}

@media screen and (max-width: 767px) {
  .sub-tiara .scroll-infinity__item {
    width: 142.8571428571vw;
  }
}

.sub-tiara .c-section-title3 span {
  font-size: 1rem;
}

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

.p-company {
  color: #141414;
  background-image: url(../images/top/1_04.jpg);
  background-size: cover;
  padding-top: 5.1875rem;
  padding-bottom: 6.8125rem;
  position: relative;
  background-position: right center;
  z-index: 0;
}

@media screen and (max-width: 767px) {
  .p-company {
    background-image: none;
    background-color: #ea6094;
    padding-bottom: 2.5rem;
    color: #fff;
    padding-top: 2rem;
  }
}

.p-company::before {
  content: "";
  position: absolute;
  height: 90%;
  top: 5%;
  left: 0;
  width: 55%;
  z-index: 1;
  background: linear-gradient(to right, rgb(255 255 255), rgba(255, 255, 255, 0));
  backdrop-filter: blur(5px);
  background: #ffffffa1;
}

.p-company__inner {
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.p-company__title {
  display: flex;
  align-items: center;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-company__title {
    display: block;
  }

  .p-company::before {
    display: none;
  }

  .c-section-title2 {
    flex-direction: column;
  }
}

.p-company__title h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 4.1875rem;
  text-transform: capitalize;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .p-company__title h2 {
    font-size: 3.125rem;
    color: #fff;
  }
}

.p-company__title p {
  font-size: 1.25rem;
  font-weight: 400;
  margin-left: 1.25rem;
  margin-top: 2.0625rem;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .p-company__title p {
    margin-top: 0;
  }
}

.p-company__title img {
  position: absolute;
  z-index: 1;
  left: -11%;
  top: -97px;
}

@media screen and (max-width: 1199px) {
  .p-company__title img {
    left: -2%;
    top: -92px;
  }
}

@media screen and (max-width: 767px) {
  .p-company__title img {
    left: -3.5%;
    top: -77px;
    width: 300px;
  }
}

.p-company__voice {
  font-size: 3.3125rem;
  margin-top: 1.125rem;
}

@media screen and (max-width: 767px) {
  .p-company__voice {
    font-size: 1.875rem;
  }
}

.p-company__voice span {
  font-size: 2rem;
  margin-right: 0.3125rem;
  margin-bottom: 0.3125rem;
  margin-top: 0.625rem;
}

@media screen and (max-width: 767px) {
  .p-company__voice span {
    font-size: 1.5rem;
  }
}

.p-company__text {
  max-width: 35rem;
  font-weight: 400;
  margin-top: 1.375rem;
  line-height: 32px;
  letter-spacing: 0.03em;
}

.p-company__sign {
  display: flex;
  text-align: right;
  max-width: 35rem;
  justify-content: flex-end;
  margin-top: 1.6875rem;
}

.p-company__sign img {
  margin-left: 1.125rem;
  margin-top: -0.625rem;
  width: 148px;
}

.p-company__textbox {
  position: absolute;
  padding-top: 3.4375rem;
  padding-bottom: 2.875rem;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  background-color: #fff;
  color: #141414;
  width: 75vw;
  text-align: center;
  line-height: 2rem;
  top: 99%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  letter-spacing: 0.03em;
}

@media screen and (max-width: 767px) {
  .p-company__textbox {
    margin-top: 30px;
    width: 90vw;
  }
}

.p-company__img {
  display: none;
}

@media screen and (max-width: 767px) {
  .p-company__img {
    display: block;
    margin-top: 1.875rem;
  }
}

.p-info {
  padding-top: 3rem;
  /* background-image: url(../images/common/back_w.jpg); */
  background-size: cover;
  padding-bottom: 5.5rem;
  background: #fff4f8;
  position: relative;
  z-index: 0;
}

@media screen and (max-width: 767px) {
  .p-info {
    padding-top: 3rem;
  }
}

.p-info__title img {
  top: -57px;
  left: -9%;
}

@media screen and (max-width: 767px) {
  .p-info__title img {
    width: 370px;
    top: -32px;
  }
}

@media (max-width: 1500px) {
  .p-info__title img {
    left: 0%;
  }
}

.p-info__button {
  margin-top: 4.75rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-info__button {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.p-info__button a {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.875rem;
  color: #ea6094;
  padding: 1rem 8.5rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  border-radius: 50px;
  background: #fff;
}

@media screen and (max-width: 767px) {
  .p-info__button a {
    padding: 1rem 0.9375rem;
    display: block;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.375rem;
  }
}

.p-info__slide {
  margin-top: 1.5625rem;
}

@media screen and (max-width: 767px) {
  .p-info__slide {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

.p-info .splide__pagination {
  display: none;
}

.p-info .splide__arrow {
  border: none;
}

.p-info .splide__arrow svg {
  fill: #141414;
}

.p-mv {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.p-mv__img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100vh;
}

.p-mv__catch {
  max-width: 40.3125rem;
  width: 100%;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-mv__catch {
    padding: 15px;
    top: 41%;
  }
}

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

.p-mv__scroll {
  margin: 6rem auto 0;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.25rem;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  position: relative;
}

.p-mv__scroll::after {
  content: "";
  /* 描画位置 */
  position: absolute;
  left: 49%;
  border: solid #eee;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 5px;
  transform: rotate(45deg);
  transform-origin: center;
  /* 矢印の動き：1.4秒かけて上下に動く、永遠にループ */
  animation: arrowmove 1.4s ease-in-out infinite;
}

/* 高さ・位置・透過が変化して矢印が上から下に動く */
@keyframes arrowmove {
  0% {
    top: 30px;
    opacity: 0.5;
  }

  50% {
    top: 45px;
    /* 矢印の下移動距離を調整 */
    opacity: 1;
  }

  100% {
    top: 30px;
    opacity: 0.5;
  }
}

.p-recruit {
  padding-top: 6.25rem;
  padding-bottom: 5.3125rem;
  background-image: url(../images/top/1_05.jpg);
  background-size: cover;
  position: relative;
  background-position: bottom;
}

.p-recruit__cercle {
  position: absolute;
  top: 0;
  right: 55%;
}

.p-recruit__title {
  flex-direction: column;
  align-items: flex-start;
}

.p-recruit__title img {
  top: -103px;
  left: -16%;
}

@media (max-width: 1500px) {
  .p-recruit__title img {
    left: -3%;
    width: 400px;
  }
}

@media (max-width: 1500px) {
  .p-recruit__title img {
    width: 370px;
    top: -86px;
  }
}

.p-recruit__message {
  font-size: 1.75rem;
  line-height: 44px;
  margin-top: 1rem;
  letter-spacing: 0.03em;
}

@media screen and (max-width: 767px) {
  .p-recruit__message {
    font-size: 1.25rem;
    line-height: 1.6875rem;
  }
}

.p-recruit__text {
  margin-top: 1.6875rem;
  max-width: 36.875rem;
  letter-spacing: 0.03em;
  line-height: 32px;
}

.p-recruit__contents {
  position: relative;
  z-index: 2;
}

.p-recruit__button {
  margin-left: -0.9375rem;
}

.p-recruit {
  position: relative;
  overflow: hidden;
}

.background-half {
  position: absolute;
  top: 0;
  left: 0;
  width: 68%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  border-top-right-radius: 0;
  border-bottom-right-radius: 40vw;
}

@media screen and (max-width: 767px) {
  .background-half {
    width: 100%;
  }
}

.p-recruit .c-section-title2 p {
  margin: -0.5rem 0 0 0;
}

.p-service {
  background-image: url(../images/common/back.jpg);
  background-size: contain;
  padding-top: 3.25rem;
  padding-bottom: 6.25rem;
  /* background: #fff4f8; */
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.p-service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 3.4375rem;
}

@media screen and (max-width: 767px) {
  .p-service-item {
    grid-template-columns: 1fr;
  }
}

.p-service-item__img {
  position: relative;
  z-index: 2;
}

.p-service-item__body {
  margin-top: 2.5rem;
  padding-top: 4.125rem;
  padding-bottom: 3.75rem;
  padding-left: 4.8125rem;
  margin-left: -2.5rem;
  position: relative;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .p-service-item__body {
    padding-left: 3.8125rem;
    padding-top: 3.125rem;
    margin-top: 0;
  }
}

.p-service-item__body-odd {
  max-width: 35rem;
  margin-left: auto;
  margin-right: 2.5rem;
  position: relative;
  grid-row: 2;
}

@media screen and (max-width: 767px) {
  .p-service-item__body-odd {
    margin-right: 0;
  }
}

.p-service-item__button {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

.p-service-item__button.third {
  margin-top: 1.875rem;
}

.p-service-item__button img {
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .p-service-item__button img {
    padding-right: 0.9375rem;
  }
}

.p-service-item__img:nth-child(odd) {
  text-align: right;
  text-align: -webkit-right;
}

.p-service-item__levelup {
  position: absolute;
  bottom: 0;
  left: 2.5rem;
  z-index: 1;
  width: 316px;
}

@media screen and (max-width: 767px) {
  .p-service-item__levelup {
    opacity: 0.3;
  }
}

.p-service-item:nth-child(2) {
  margin-top: 4rem;
}

.p-service-item:nth-child(3) {
  margin-top: 2.5rem;
}

.p-service-item__body:nth-child(3) {
  padding-top: 3.75rem;
}

@media screen and (max-width: 767px) {
  .p-service-item__img {
    grid-row: 1;
  }
}

.p-top-splide__slide {
  background-color: #fff;
  padding: 1.25rem;
  border-radius: 10px;
  box-shadow: 0 0 6px rgba(0, 0, 10, 0.16);
  margin-top: 10px;
  margin-bottom: 10px;
}

.pagination {
  width: 100%;
}

.nav-links ul {
  display: flex;
  justify-content: center;
}

.nav-links ul li a,
.nav-links ul li span {
  color: #141414;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 1rem;
}

@media screen and (max-width: 767px) {

  .nav-links ul li a,
  .nav-links ul li span {
    font-size: 1.5rem;
  }
}

.nav-links ul li span.current {
  color: #fff;
  background: #ea6094;
  padding: 0.4375rem 0.9375rem 0.5625rem;
}

.nav-links ul li {
  position: relative;
  margin: 0 0.3125rem;
}

@media screen and (max-width: 767px) {
  .nav-links ul li {
    margin: 0 0.625rem;
  }
}

.nav-links ul li a,
.nav-links ul li span {
  display: block;
  width: 100%;
  padding: 0.3125rem;
}

@media screen and (max-width: 767px) {

  .nav-links ul li a,
  .nav-links ul li span {
    padding: 0.625rem;
  }
}

.nav-links ul li .nav-links ul .dots {
  padding-right: 0;
  padding-left: 0;
}

.p-reservation__calender {
  max-width: 53rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

:root {
  --fc-small-font-size: 0.85em;
  --fc-page-bg-color: #fff;
  --fc-neutral-bg-color: hsl(0deg 0% 86.19% / 30%);
  --fc-neutral-text-color: grey;
  --fc-border-color: #ddd;
  --fc-button-text-color: #fff;
  --fc-button-bg-color: #ea6094;
  --fc-button-border-color: #fff;
  --fc-button-hover-bg-color: #855e12;
  --fc-button-hover-border-color: #fff;
  --fc-button-active-bg-color: #855e12;
  --fc-button-active-border-color: #fff;
  --fc-event-bg-color: #ea6094;
  --fc-event-border-color: #fff;
  --fc-event-text-color: #fff;
  --fc-event-selected-overlay-color: rgb(0 0 0 / 25%);
  --fc-more-link-bg-color: #d0d0d0;
  --fc-more-link-text-color: inherit;
  --fc-event-resizer-thickness: 8px;
  --fc-event-resizer-dot-total-width: 8px;
  --fc-event-resizer-dot-border-width: 1px;
  --fc-non-business-color: hsla(0, 0%, 84%, 0.3);
  --fc-bg-event-color: #8fdf82;
  --fc-bg-event-opacity: 0.3;
  --fc-highlight-color: rgba(188, 232, 241, 0.3);
  --fc-today-bg-color: #fbeaca;
  --fc-now-indicator-color: red;
}

.fc .fc-button-primary:disabled {
  background-color: #f1238a;
  border-color: var(--fc-button-border-color);
  color: var(--fc-button-text-color);
}

.fc.fc-media-screen.fc-direction-ltr.fc-theme-standard {
  background-color: #fff;
  color: #000;
  padding: 15px 10px 10px 10px;
}

.fc .fc-toolbar-title {
  font-size: 14px;
  font-weight: 400;
}

.my-tabs2 {
  gap: 30px;
  margin-top: 2.5rem;
}

.my-tabs.my-tabs2 a.my-tab {
  border: 1px solid #606060;
  padding-top: 1rem;
  padding-bottom: 1rem;
  color: #f1238a;
}

.my-tabs.my-tabs2 a.my-tab.active {
  border: 1px solid #f1238a;
  padding-top: 1rem;
  padding-bottom: 1rem;
  color: #fff;
  background-color: #f1238a;
}

.p-post-card__date {
  display: none;
}

/* .tax-info_category .p-post-card__date,
.post-type-archive-info .p-post-card__date,
.home .p-post-card__date{
	display: block;
} */
th.fc-col-header-cell.fc-day {
  background: #fff;
}

.fc .fc-col-header-cell-cushion {
  color: #000;
}

.fc-h-event .fc-event-title-container {
  background: #3f72ca;
}

.fc .fc-toolbar-title {
  font-size: 20px;
  color: #000 !important;
}

.fc-next-button.fc-button.fc-button-primary,
.fc-prev-button.fc-button.fc-button-primary,
.fc-listMonth-button.fc-button.fc-button-primary {
  background: #b5995b;
}

.fc-dayGridMonth-button.fc-button.fc-button-primary.fc-button-active {
  background: #3e2d10;
}

.fc .fc-button-group>.fc-button:hover {
  background: #dac699;
}

.fc-today-button.fc-button {
  background: #b4995c;
}

.fc-day-sun .fc-daygrid-dot-event {
  display: none;
}

.contact-tab__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 1em;
  justify-content: center;
  margin-top: 4rem;
}

.contact-tab__btn {
  padding: 1em 2.5em;
  background: #fff;
  border: 1px solid #ea6094;
  cursor: pointer;
  transition: all 0.3s;
  color: #ea6094;
  border-radius: 50px;
}

.contact-tab__btn.is-active {
  background: #ea6094;
  color: #fff;
  border-color: #ea6094;
}

.contact-tab__content {
  display: none;
}

.contact-tab__content.is-show {
  display: block;
}

.p-header__nav {
  position: relative;
}

.no-click {
  pointer-events: none;
  cursor: default;
}

.dropdown-menu {
  visibility: hidden;
  position: absolute;
  top: 230%;
  left: 0;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(35, 35, 35, 0.15);
  /* padding: 8px; */
  margin: 0;
  list-style: none;
  z-index: 1000;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  width: 8rem;
}

.dropdown-menu li {
  margin: 0;
  padding: 0;
}

.dropdown-link {
  display: block;
  padding: 13px 20px;
  color: #333;
  text-decoration: none;
}

/* .dropdown-link:hover {
  background-color: #f5f5f5;
} */

.p-header__nav:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  top: 100%;
}

.p-sub__mv {
  padding-top: 80px;
}

.-sell .c-page-scroll {
  background-color: #f78e0d;
}

.-sell .c-section-title3.p-sub__title {
  color: #f78e0d;
}

.-sell .p-sub-about__content div h3 {
  color: #f78e0d;
  border-color: #f78e0d;
}

.-sell .p-sub__small-title {
  background-color: #f78e0d;
}

.-sell .p-sub__small-title:after {
  border-top: 20px solid #f78e0d;
}

.-sell .area01 .qa_q::before {
  background-color: #f78e0d;
}

.-sell .p-sub-message__right .first-paragraph {
  color: #f78e0d;
}

.-sell .a-txt {
  background-color: #fff0de;
}

.-sell .p-sub-about,
.-sell .p-sub-message {
  background: #fbf3f0;
}

.wm-lead {
  text-align: center;
  line-height: 2;
  padding: 2rem 15px 3rem;
  margin-top: 3rem;
  background: #fff4f8;
}

.wm-lead div {
  font-size: 28px;
  color: #ea6094;
}

.property-item {
  max-width: 62.5rem;
  margin: 4rem auto;
  padding: 0 15px;
}

.simple-slider {
  position: relative;
  max-width: 730px;
  margin: auto;
  overflow: hidden;
}

.simple-slides {
  display: flex;
  transition: transform 0.5s ease;
}

.simple-slides img {
  width: 100%;
  flex-shrink: 0;
}

.simple-slider button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ea6094;
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 0 10px;
  cursor: pointer;
}

.simple-slider .prev {
  left: 10px;
}

.simple-slider .next {
  right: 10px;
}

.simple-slider .dots {
  text-align: center;
  position: absolute;
  bottom: 10px;
  width: 100%;
}

.simple-slider .dot {
  display: inline-block;
  height: 10px;
  width: 10px;
  margin: 0 4px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.simple-slider .dot.active {
  background-color: #ea6094;
}

.simple-slider02 {
  position: relative;
  max-width: 730px;
  margin: auto;
  overflow: hidden;
}

.simple-slides02 {
  display: flex;
  transition: transform 0.5s ease;
}

.simple-slides02 img {
  width: 100%;
  flex-shrink: 0;
}

.simple-slider02 button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ea6094;
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 0 10px;
  cursor: pointer;
}

.simple-slider02 .prev02 {
  left: 10px;
}

.simple-slider02 .next02 {
  right: 10px;
}

.simple-slider02 .dots {
  text-align: center;
  position: absolute;
  bottom: 10px;
  width: 100%;
}

.simple-slider02 .dot02 {
  display: inline-block;
  height: 10px;
  width: 10px;
  margin: 0 4px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.simple-slider02 .dot02.active {
  background-color: #ea6094;
}

.property-video iframe {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: 100%;
}

.property-video {
  max-width: 730px;
  margin: 4rem auto 1rem;
}

.property-table {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  background: #fff;
  padding: 1rem 2rem 2rem;
  /* border-radius: 14px; */
}

.property02 .property-table {
  margin-top: 2rem;
}

.property-ttl {
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  padding: 5px 15px;
  background: #ea6094;
  text-align: center;
  margin-bottom: 2rem;
}

.property-table .p-company-info__table th {
  color: #ea6094;
  font-weight: bold;
  padding-bottom: 1rem;
  line-height: 1.5;
}

.property-table .p-company-info__table td {
  padding-bottom: 1rem;
  padding-left: 1rem;
  line-height: 1.5;
}

.property02 {
  background: #fff4f8;
  padding: 2rem 0;
}

.property-table .p-company-info__table {
  margin-top: 0;
}

.p-mv__catch.-top {
  max-width: 51rem;
  top: 60%;
}

.btn {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.btn a {
    padding: 1em 3.5em;
    background: #fff;
    border: 1px solid #ea6094;
    cursor: pointer;
    transition: all 0.3s;
    color: #fff;
    background: #ea6094;
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s;
    max-width: 300px;
    text-align: center;
}

.btn a:hover {
  color: #ea6094;
  background: #fff;
}

.p-service-item__body.-odd {
  margin-right: -2.5rem;
  padding-right: 2rem;
}

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

.p-info__btn {
  text-align: center;
  margin-top: 3rem;
}

.p-info__btn .btn {
  display: flex;
  justify-content: center;
}

.p-info__btn .btn a {
  width: 300px;
}

.footer-map iframe {
  min-height: 300px;
  width: 100%;
}

.p-contact__button p.c-contact-open {
  font-size: 16px;
  line-height: 1.5;
  margin-top: 12px;
}

.p-header__info {
  display: flex;
  align-items: center;
}

.header-left_wrap {
  display: flex;
  align-items: center;
}

.header-left_nav-wrap {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  align-items: flex-end;
}

.p-header__open {
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  /* color: #6e6e6e; */
}

.p-header__nav.p-header__button a.c-contact-button {
  padding: 0.6rem 1rem;
}

.p-header__open span {
  font-size: 0.5rem;
  padding: 1px 2px;
  border: 1px solid #333;
  margin-right: 0.3rem;
  display: inline-block;
}

.p-header__tel {
  font-size: 24px;
  font-weight: bold;
  padding-left: 30px;
  color: #ea6094;
  padding-right: 0.6rem;
  position: relative;
}

.p-header__tel::before {
  content: "";
  position: absolute;
  display: block;
  width: 18px;
  height: 18px;
  background-size: contain;
  margin-right: 5px;
  margin-top: 10px;
  vertical-align: middle;
  background-image: url(../images/top/tel.svg);
  left: 11px;
}

.bnr-inner {
  max-width: 62.5rem;
  margin: 3rem auto;
  transition: all 0.3s;
  display: block;
}

.bnr-inner:hover {
  opacity: 0.7;
}

.footer-link {
  max-width: 200px;
  width: 100%;
  grid-column: span 2;
}

/* mq */

@media screen and (max-width: 767px) {
  .p-service-item__body.-odd {
    margin-right: 0;
    padding-right: 0;
  }

  .p-mv__img {
    height: 60vh;
  }

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

  .btn {
    grid-template-columns: 1fr;
  }

  .p-company::before {
    content: none;
  }

  .p-recruit__button .btn a {
    background: #fff;
    color: #ea6094;
  }

  .c-service-title_h3 {
    font-size: 2rem;
  }

  .p-service {
    padding-bottom: 3.25rem;
  }

  .p-service-item:nth-child(2) {
    margin-top: 3rem;
  }

  .p-top-gallery .splide__slide {
    height: 60vh;
  }

  .c-page-scroll li:not(:first-child):not(:last-child) a {
    border: none;
  }

  .p-sub-about {
    padding-top: 3.5rem;
    margin-top: 0;
    padding-bottom: 4.5rem;
  }

  .p-sub-about__content div h3 {
    font-size: 22px;
    margin-right: 0;
  }

  .p-item {
    margin-top: 3.5rem;
    padding-bottom: 3rem;
  }

  .p-sub-message__right .first-paragraph {
    margin-top: 0;
  }

  .p-sub-message {
    padding-bottom: 4.25rem;
  }

  .wm-lead div {
    font-size: 24px;
  }

  .property-table {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 0;
  }

  .c-section-title3 {
    font-size: 2.3rem;
  }

  .header-left_wrap {
    display: none;
  }

  .bnr-inner {
    padding: 0 15px;
    margin: 2rem auto;
  }

  .footer-link {
    margin-top: 1rem;
  }

  .contact-tab__btn {
    width: 90%;
  }
}

/* mq */
/*# sourceMappingURL=style.css.map */

.p-header__nav.head {
  margin-bottom: 1.5rem;
}

.c-logo {
  max-width: 17rem;
}

.p-header__sp {
  bottom: 0;
}

.p-header__sp .nav-drawer__tel {
  color: #333;
  font-size: 20px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .nav-drawer__tel a {
    display: inline-block;
    margin-left: 4vw;
    position: relative;
  }

  .nav-drawer__tel a::before {
    background-image: url(../images/common/tel-color.svg);
    background-repeat: no-repeat;
    background-size: contain;
    bottom: 0;
    content: "";
    height: 4vw;
    left: -5vw;
    margin: auto;
    position: absolute;
    top: 0;
    width: 4vw;
  }

  .p-header__sp .nav-drawer__tel {
    color: #333;
    font-size: 23px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    margin-top: 1rem;
  }

  .p-header__nav.p-header__button a {
    margin-top: 1rem;
  }

  .p-header__info {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  li.p-header__nav.li_border {
    margin-bottom: .8rem;
  }

  .p-header__nav a {
    padding-bottom: 1.2rem;
  }

  .p-header__sp {
    padding-top: 20px;
  }

  .p-header__nav.head a::before {
    top: 30%;
  }
}

.dropdown-menu li {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.dropdown-menu li img {
  width: 16px;
}

/*スライダー*/
.xslider_wrap {
  display: flex;
  overflow: hidden;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
}

.xslider1,
.xslider2 {
  display: inline-flex;
  flex: none;
  animation: xslider 30s 2s linear infinite;
}

/*
.xslider_wrap:hover div {
	animation-play-state: paused!important;
}
*/
.xslider1 div,
.xslider2 div {
  flex: none;
  /*  	padding: 10px;*/
}

/*
.xslider1 div:hover , .xslider2 div:hover {
	transform: translateY(-5px);
}
*/
.sec05#blooming .xslider_wrap {
  margin-bottom: 5rem;
}

@keyframes xslider {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.xslider_wrap img {
  width: 240px;
}

.sec03 .sec_inner.inner {
  margin-top: 6rem;
  /*    background: #fff;*/
  border-radius: 10px;
  padding-bottom: 6rem;
}

@media screen and (max-width: 767px) {
  .xslider_wrap img {
    width: 120px;
  }

  .xslider_wrap {
    margin-top: 0rem;
    margin-bottom: 4rem;
  }
}

.company_image {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

@media screen and (max-width: 767px) {}

/*動く背景*/
.ripple-background_left {
  position: relative;
  left: 100%;
}

.circle {
  position: absolute;
  border-radius: 50%;
  background: white;
  animation: ripple 15s infinite;
  box-shadow: 0px 0px 1px 0px #c1c1c1;
  z-index: -1;
}

.small {
  width: 200px;
  height: 200px;
  left: -100px;
  bottom: -100px;
}

.medium {
  width: 400px;
  height: 400px;
  left: -200px;
  bottom: -200px;
}

.large {
  width: 600px;
  height: 600px;
  left: -300px;
  bottom: -300px;
}

.xlarge {
  width: 800px;
  height: 800px;
  left: -400px;
  bottom: -400px;
}

.xxlarge {
  width: 1000px;
  height: 1000px;
  left: -500px;
  bottom: -500px;
}

.shade1 {
  opacity: 0.2;
}

.shade2 {
  opacity: 0.5;
}

.shade3 {
  opacity: 0.7;
}

.shade4 {
  opacity: 0.8;
}

.shade5 {
  opacity: 0.9;
}

@keyframes ripple {
  0% {
    transform: scale(0.8);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(0.8);
  }
}


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

@media screen and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}


table.p-company-info__table.table_rows {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

table.p-company-info__table.table_rows tr {
  width: 100%;
  display: inline-table;
}

table.p-company-info__table.table_rows {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media screen and (max-width: 767px) {
  table.p-company-info__table.table_rows {
    grid-template-columns: 1fr;
  }
}

.link_property {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: 50rem;
  margin: 0 auto;
}

.link_property-item {
  background: #fff;
  padding: 0 2rem 2rem;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.link_property-group {
  margin: 3rem 2rem 2rem;
}

.link_property-item img {
  width: 24rem;
}

.c-page-cover {
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-page-cover-ttl {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}


.c-page-cover .c-page-cover-ttl {
  filter: none;
  width: 70rem;
}


.c-section-bold {
  font-size: 2rem;
  margin: 1rem;
}

.c-page-cover .p-sub-company__titles {
  margin-top: 0;
}

.c-page-scroll {
  margin-top: 0;
}

.c-section-text {
  padding: 0 8rem;
}


.c-section-text {
  padding: 1.6rem 8rem 0;
}

.p-sub-company__titles.-white {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(222deg) brightness(110%) contrast(100%);
}

.c-section-text {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(222deg) brightness(110%) contrast(100%);
}

@media screen and (max-width: 767px) {
  .c-page-cover .c-page-cover-ttl {
    width: 90%;
  }

  .c-page-cover img {
    height: 40rem;
    object-fit: cover;
  }

  .c-page-cover .c-page-cover-ttl img {
    height: 70% !important;
  }

  .c-section-text {
    padding: 2rem 0;
  }

  .c-section-bold {
    font-size: 5vw;
    margin: 1rem 0;
  }

  .link_property {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
    margin: 0 auto;
  }

  .link_property-group {
    margin: 2rem 0 2rem;
  }
}

.c-page-scroll {
  padding-top: 1.125rem;
  padding-bottom: 1.125rem;
}

.p-sub-about {
  padding-top: 0;
  margin-top: 0;
}

.motif {
  position: relative;
  margin: 0;
  /* top: 5rem; */
}

.motif_front {
  position: absolute;
  bottom: 0;
}

.motif_bk {
  position: relative;
  height: 32rem;
}

.motif {
  position: relative;
}

.p-sub-about {
  padding-top: 0;
  margin-top: -40px;
}

.motif_icon {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  position: absolute;
  z-index: 10;
  padding: 3rem 2rem 8rem;
  gap: 2rem;
}

.motif_icon img {
  width: 18rem;
}

.motif {
  position: relative;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .motif_icon {
    display: grid;
    position: absolute;
    z-index: 10;
    grid-template-columns: 1fr;
    padding: 2rem 0.5rem;
    gap: 0.5rem;
    justify-items: center;
    justify-content: center;
    margin: 0 auto;
  }

  .motif_front {
    position: absolute;
    bottom: 2rem;
  }

  .motif_icon img {
    width: 100%;
  }

  .motif_bk img {
    height: 40rem;
    object-fit: cover;
  }

  .-sell .motif_bk {
    height: 40rem;
    object-fit: cover;
  }

}

@media screen and (min-width:400px) and (max-width: 500px) {
  .motif_bk img {
    height: 50rem;
    object-fit: cover;
  }

  .-sell .motif_bk {
    height: 50rem;
    object-fit: cover;
  }
}

@media screen and (min-width:501px) and (max-width: 767px) {
  .motif_bk img {
    height: 60rem;
    object-fit: cover;
  }

  .-sell .motif_bk {
    height: 60rem;
    object-fit: cover;
  }
}


a.c-contact-button {
  display: flex;
  gap: .3rem;
  align-items: center;
  justify-content: center;
}

a.c-contact-button img {
  width: 1.2rem;
}

.qa_q .q-txt::after {
  border-right: solid 1px #141414;
  border-top: solid 1px #141414;
  content: "";
  display: block;
  height: 0.9rem;
  position: absolute;
  right: 2.3rem;
  top: 45%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  width: 0.9rem;
}

.qa_q.open .q-txt::after {
  top: 41%;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

@media screen and (max-width: 767px) {
  .qa_q .q-txt::after {
    height: 0.5rem;
    position: absolute;
    right: 1rem;
    width: 0.5rem;
  }

  .p-header__sp li.p-header__nav a {
    text-align: left;
  }
}

.dropdown-menu {
  background: none;
  width: 10rem;
}

.dropdown-menu li {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background: #fff;
  padding: 1rem 1rem 1rem 0;
}

.dropdown-menu li:hover {
  visibility: visible;
  opacity: 1;
  background: #ffe8f0;
  transition: all 0.4s;
}

.p-header__nav a:hover {
  color: #ea6094;
  transition: all 0.4s;
}

/*SP固定*/
.sp_cta {
  position: fixed;
  width: 100%;
  display: block;
  height: 55px;
  bottom: 0;
  z-index: 2;
  background: #ffffff66;
  display: flex;
  align-items: center;
  z-index: 11;
  padding: 8px;
  backdrop-filter: blur(20px);
}

.sp_cta a {
  display: block;
  height: 100%;
  text-align: center;
  width: 50%;
  font-size: 13px;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  /* font-weight: 700; */
  color: #ffffff;
  background: #ea6094;
  position: relative;
  margin: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: #ea6094;
  border-radius: 5px;
}

.sp_cta a::before {
  /* position: absolute; */
  content: "";
  background-image: url(../images/common/tel-black.svg);
  background-repeat: no-repeat;
  background-size: contain;
  top: 1.8rem;
  left: 2rem;
  width: 1.2rem;
  height: 1.2rem;
  filter: brightness(0) saturate(100%) invert(99%) sepia(1%) saturate(0%) hue-rotate(151deg) brightness(101%) contrast(105%);
}

.sp_cta a span {
  font-weight: 700;
}

.sp_cta a:last-child {
  background: #ff8d00fc;
  color: #fff;
}

.sp_cta a:last-child::before {
  /* position: absolute; */
  content: "";
  background-image: url(../images/common/header_icon001.svg);
  background-repeat: no-repeat;
  background-size: contain;
  top: 1.5rem;
  left: 2rem;
  width: 2rem;
  height: 1.5rem;
}

/*見出し英語日本語反転*/
.c-section-title3 {
  font-size: 1rem;
  display: flex;
  flex-direction: column-reverse;
}

.sub-content .c-section-title3 span {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.sub-content.-sell .c-section-title3.p-sub__title {
  color: #141414;
}

.sub-content.-sell .c-section-title3 span {
  color: #f78e0d !important;
  font-weight: 600;
}

.p-sub-company__title {
  color: #141414;
}

.p-sub-company .c-section-title3 span {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.p-sub-company__title span {
  color: #ea6094;
  font-weight: 600;
}

.p-sub-company__title-big {
  color: #141414;
}

.p-sub-company__subtitle-big {
  font-size: 3rem;
  margin-bottom: 1rem;
  margin-top: 0;
  text-align: center;
  color: #ea6094;
  font-weight: 600;
}

.sub-content .c-section-title3 span {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #ea6094;
  font-weight: 600;
}

.c-section-title3.p-sub__title {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #141414;
}

.p-item_grid-item div {
  font-size: 1.25rem;
  margin-top: 0;
  background: #ea6094;
  padding: 0.5rem;
  color: #fff;
  display: flex;
  justify-content: center;
}

.p-item_grid-item div img {
  width: 2rem;
  aspect-ratio: auto;
  object-fit: cover;
  margin: 0 1rem 0 0;
}

.-sell .p-item_grid-item div {
  font-size: 1.25rem;
  margin-top: 0;
  background: #f78e0d;
  padding: 0.5rem;
  color: #fff;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .sub-content.-sell .c-section-title3 span {
    font-size: 6vw;
    margin-top: 2rem;
  }

  .sub-content .c-section-title3 span {
    font-size: 6vw;
    margin-top: 2rem;
  }
}

/*ribbon吹き出し*/
.ribbon {
  position: relative;
  width: 42rem;
  margin: 2rem 0 auto;
  padding: 0.4em .7em;
  background-color: #ea6094;
  color: #fff;
  text-align: center;
  z-index: 10;
  font-size: 1.7rem;
}

.ribbon::before,
.ribbon::after {
  position: absolute;
  bottom: -10px;
  z-index: -1;
  border-style: solid;
  border-color: #ea6094;
  content: '';
}

.ribbon::before {
  left: -30px;
  border-width: 25px 25px 25px 15px;
  border-left-color: transparent;
}

.ribbon::after {
  right: -30px;
  border-width: 25px 15px 25px 25px;
  border-right-color: transparent;
}

.ribbon span::before,
.ribbon span::after {
  position: absolute;
  bottom: -10px;
  width: 10px;
  height: 10px;
  background-color: #ea6094;
  content: '';
}

.ribbon span::before {
  left: 0;
  clip-path: polygon(0 0, 100% 0%, 100% 100%);
}

.ribbon span::after {
  right: 0;
  clip-path: polygon(0 0, 100% 0%, 0% 100%);
}

.-sell .ribbon {
  background-color: #f78e0d;
}

.-sell .ribbon::before,
.-sell .ribbon::after {
  border-color: #f78e0d;
}

.-sell .ribbon span::before,
.-sell .ribbon span::after {
  background-color: #f78e0d;
}

.-sell .ribbon::before {
  left: -30px;
  border-width: 25px 25px 25px 15px;
  border-left-color: transparent;
}

.-sell .ribbon::after {
  right: -30px;
  border-width: 25px 15px 25px 25px;
  border-right-color: transparent;
}

.uchina-bnr {
	position: relative;
	z-index: 2;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .ribbon {
    width: 40rem;
    padding: 0.8em .7em;
    font-size: 1.7rem;
  }
}

@media screen and (max-width: 767px) {
  .ribbon {
    position: relative;
    width: 17rem;
    font-size: 5vw;
  }
}

.uchina-bnr.-page .bnr-inner {
  margin: 0 auto;
  margin-bottom: 0;
  margin-top: 5rem;
}

@media screen and (max-width: 767px) {
  .uchina-bnr.-page .bnr-inner {
    margin: 0 auto;
    margin-bottom: 0;
    margin-top: 2rem;
    margin-bottom: -1rem;
  }

  .p-sub-company__subtitle-big {
    font-size: 8vw;
  }

  .p-sub-company .c-section-title3 span {
    font-size: 8vw;
  }

  .p-message__left h3 {
    font-size: 8vw;
  }
}

@media screen and (max-width: 767px) {

  .p-header__nav.head::after {
    border-right: solid 1px #ea6094;
    border-top: solid 1px #ea6094;
    content: "";
    display: block;
    height: 0.9rem;
    position: absolute;
    right: 2.3rem;
    top: 20%;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    width: 0.9rem;
  }

  .p-header__nav.head::after {
    height: 0.5rem;
    position: absolute;
    right: 1rem;
    width: 0.5rem;
  }
  .p-header__sp li.p-header__nav::after {
    border-right: solid 1px #ea6094;
    border-top: solid 1px #ea6094;
    content: "";
    display: block;
    height: 0.9rem;
    position: absolute;
    right: 2.3rem;
    top: 20%;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    width: 0.9rem;
  }
 .p-header__sp li.p-header__nav::after {
    height: 0.5rem;
    position: absolute;
    right: 1rem;
    width: 0.5rem;
  }
}

/*ウィークリーマンスリー*/
.property-item-link span {
  display: flex;
  justify-content: center;
  gap: .5rem;
}

.property-item-link span img {
  width: 2rem;
}

.property-table.-pink {
  background: #fef4f8;
}

h3.property-ttl {
  position: relative;
  padding: 15px;
  border: 3px solid #ea6094;
  background-color: white;
  color: #ea6094;
  font-weight: bold;
  font-size: 26px;
  text-align: center;
  margin-bottom: 4rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  align-items: center;
}

h3.property-ttl:before {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) skew(-25deg);
  height: 25px;
  width: 15px;
  border-right: 3px solid #ea6094;
  background-color: white;
  content: "";
}

h3.property-ttl img {
  width: 3rem;
}

h3.property-ttl.-pink {
  position: relative;
  padding: 15px;
  border: 3px solid #ea6094;
  background-color: #fef4f8;
  color: #ea6094;
  font-weight: bold;
  font-size: 26px;
  text-align: center;
  margin-bottom: 4rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  align-items: center;
}

h3.property-ttl.-pink:before {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) skew(-25deg);
  height: 25px;
  width: 15px;
  border-right: 3px solid #ea6094;
  background-color: #fef4f8;
  content: "";
}

.c-section-title2 {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.p-info__slide {
  margin-top: 1.5625rem;
  z-index: 1;
  position: relative;
}

.p-info__btn {
  text-align: center;
  margin-top: 3rem;
  z-index: 1;
  position: relative;
}

.ripple-background.pc-only {
  z-index: -1;
  position: relative;
}
.thanks-wrap {
	margin-top: 5rem !important;
}
.thanks-wrap  .p-contact__inner {
	border: 1px solid #ea6094;
	padding-bottom: 2.25rem;
}
.p-404 {
	padding: 7rem 0;
}
.p-404__btn {
	margin-top: 4rem;
}