@charset "UTF-8";
html {
  font-size: 100%;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.4953271028vw;
  }
}
@media (min-width: 1070px) {
  html {
    font-size: 100%;
  }
}

body {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-style: normal;
  color: #262628;
}

@media screen and (min-width: 768px) {
  a,
  button {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  a:hover,
  button:hover {
    opacity: 0.7;
    cursor: pointer;
  }
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  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;
  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]) {
  text-decoration-skip-ink: auto;
}

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

/* 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;
}

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

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.l-common {
  width: 100%;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-common {
    max-width: 1070px;
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
    padding-top: 3.4375rem;
  }
}

.l-content-lower {
  margin-top: 4.375rem;
}
@media screen and (min-width: 768px) {
  .l-content-lower {
    right: 3.9375rem;
  }
}

.l-header {
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-header {
    max-width: 100%;
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
}

.l-inner-sm {
  width: 100%;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner-sm {
    max-width: 850px;
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
}

.l-inner {
  width: 100%;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1070px;
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
}

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

.c-accordion {
  width: 100%;
  max-width: 1020px;
  margin-left: auto;
  margin-right: auto;
}

.c-accordion summary {
  cursor: pointer;
}

.c-accordion summary::-webkit-details-marker {
  /* Safariで表示されるデフォルトの三角形アイコンを消します */
  display: none;
}

.c-accordion__title {
  position: relative;
  display: block;
  color: #ff0060;
  font-weight: bold;
  font-size: 1.125rem;
  background-color: #ffe9f1;
  padding-top: 0.9375rem;
  padding-bottom: 0.9375rem;
  padding-left: 1.875rem;
  padding-right: 3.75rem;
  border-bottom: 2px solid #ff0060;
}

details[open] .c-accordion__title {
  border-bottom: none;
}

.c-accordion__title:hover {
  opacity: 0.8;
}

.c-accordion__title::before,
.c-accordion__title::after {
  position: absolute;
  top: 50%;
  display: block;
  width: 16px;
  height: 2px;
  content: "";
  background-color: currentColor;
  right: 30px;
}

.c-accordion__title::before {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-accordion__title::after {
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  -webkit-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
}

details[open] .c-accordion__title::after {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-accordion__text {
  padding-top: 0.9375rem;
  padding-bottom: 0.9375rem;
  padding-left: 1.875rem;
  padding-right: 1.875rem;
  border-bottom: 2px solid #ff0060;
}

.c-attention {
  font-size: 0.875rem;
  color: #262628;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-attention {
    font-size: 1.125rem;
    line-height: 1.9444444444;
    letter-spacing: 0.05em;
  }
  .c-attention .u-sp {
    display: none;
  }
}

.c-body h2 {
  font-size: 1.5rem;
  line-height: 1.4583333333;
  text-align: center;
}
.c-body p {
  font-size: 1rem;
  line-height: 1.5625;
  letter-spacing: 0.05em;
  margin-top: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .c-body h2 {
    font-size: 1.875rem;
    line-height: 1.6666666667;
    margin-top: 2.0625rem;
  }
}

.c-btn-lg {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 20rem;
  padding: 0.8125rem 0rem;
  border: 0.0625rem solid #ff0060;
  border-radius: 1.875rem;
  background-color: #ff0060;
  color: #fff;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-btn-lg {
    width: 80%;
  }
}

.c-btn-lg span {
  display: inline-block;
  width: 1.75rem;
  height: 1.75rem;
  background-image: url(../images/btn_icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 0.625rem;
}

.c-btn-link {
  width: 9.375rem;
  width: 46.2686567164%;
  min-width: 9.625rem;
  display: grid;
  padding: 0.375rem 0.125rem;
  border: 1px solid #ebebeb;
}
@media screen and (min-width: 768px) {
  .c-btn-link {
    width: 14.375rem;
  }
}

.c-btn-link__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.c-btn-link img {
  width: 1.5rem;
}
@media screen and (min-width: 768px) {
  .c-btn-link img {
    width: 2.1875rem;
  }
}

.c-btn-link__inner span {
  text-align: center;
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.4166666667;
}
@media screen and (min-width: 768px) {
  .c-btn-link__inner span {
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}

.c-btn-pink {
  display: inline-block;
  min-width: 18.75rem;
  color: #fff;
  background-color: #ff0060;
  padding: 0.6875rem 2.0625rem;
  text-align: center;
  border-radius: 2.5rem;
  border: 1px solid #ff0060;
}
.c-btn-pink a {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.5625;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .c-btn-pink {
    min-width: 33.125rem;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 0.96;
    padding: 1.375rem 13.4375rem;
  }
}

.c-btn-pink2 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 20rem;
  color: #fff;
  background-color: #ff0060;
  padding: 0.6875rem 0;
  text-align: center;
  border-radius: 2.5rem;
  font-size: 1rem;
  line-height: 1.5625;
}
.c-btn-pink2 span {
  display: inline-block;
  width: 1.75rem;
  height: 1.75rem;
  background-image: url(../images/btn_icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-btn-pink2 {
    font-size: 1.5rem;
    padding: 1.375rem 2.5rem;
  }
  .c-btn-pink2 br {
    display: none;
  }
}

.c-btn-pink2--top {
  width: 80%;
}

.c-btn-sns {
  display: inline-block;
  min-width: 6.0625rem;
  padding: 0.375rem 0.6875rem 0.375rem 2.25rem;
  background-color: #00aced;
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.4285714286;
  letter-spacing: 0.05em;
  border-radius: 0.3125rem;
  position: relative;
}
.c-btn-sns::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.6875rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.125rem;
  height: 0.875rem;
  background-image: url(../images/twiiter_white.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.c-btn-sns--facebook {
  background-color: #3b5998;
}
.c-btn-sns--facebook::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.6875rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.125rem;
  height: 0.875rem;
  background-image: url(../images/facebook_white.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.c-btn-sns--line {
  background-color: #00b900;
}
.c-btn-sns--line::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.75rem;
  height: 1.75rem;
  background-image: url(../images/line_white.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.c-btn {
  display: inline-block;
  min-width: 20rem;
  padding: 0.8125rem 0rem;
  border: 0.0625rem solid #262628;
  border-radius: 1.875rem;
  background-color: #fff;
}

.c-card-sm:nth-child(n+2) {
  margin-top: 2.125rem;
}
@media screen and (min-width: 768px) {
  .c-card-sm:nth-child(n+2) {
    margin-top: 0;
  }
}

.c-card-sm__title {
  background-color: #fff;
  padding: 1.25rem 0.625rem;
  margin-top: 0;
}
.c-card-sm__title h3 {
  font-size: 1rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .c-card-sm__title h3 {
    font-size: 0.875rem;
    line-height: 1.7857142857;
    letter-spacing: 0.05em;
  }
}

.c-card-sm__img img {
  aspect-ratio: 320/188;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-card-sm__img-wrap {
  position: relative;
}

.c-card__label {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  background-color: #ff0060;
  padding: 0.125rem 0.8125rem;
  color: #fff;
}
.c-card__label span {
  font-size: 0.875rem;
  line-height: 1.7857142857;
  letter-spacing: 0.05em;
}

.c-card__title {
  margin-top: 1.375rem;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* 制限したい行数が3の場合 */
  overflow: hidden;
}

.c-card__img {
  margin-top: 1.375rem;
}
.c-card__img img {
  aspect-ratio: 320/188;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-card__text {
  margin-top: 1.375rem;
}
.c-card__text p:nth-child(n+2) {
  margin-top: 1.9375rem;
}

.c-card1 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  background-color: #fff;
  padding-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-card1 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-bottom: 0rem;
  }
}

.c-card1__body {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-card1__body {
    width: 37.5rem;
    padding: 1.25rem;
    margin-top: 0rem;
  }
}

.c-card1__title {
  font-size: 1.375rem;
  letter-spacing: 0.05em;
  line-height: 1.1363636364;
  text-align: left;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-card1__title {
    margin-top: 0.625rem;
  }
}

.c-card1__img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .c-card1__img {
    width: 25.625rem;
  }
}

.c-card1__img img {
  width: 100%;
  aspect-ratio: 320/188;
}
@media screen and (min-width: 768px) {
  .c-card1__img img {
    aspect-ratio: 410/240;
  }
}

.c-card1__text {
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.5625;
  text-align: left;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-card1__text {
    margin-top: 0.3125rem;
  }
}

.c-card1__link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: transparent;
}

.c-category-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 0.625rem;
     -moz-column-gap: 0.625rem;
          column-gap: 0.625rem;
  row-gap: 0.625rem;
}

.c-category-list__item {
  position: relative;
  z-index: 2;
}

.c-category-list__item a {
  display: inline-block;
  text-align: center;
  padding: 0.125rem 0.875rem;
  background-color: #ff0060;
  color: #fff;
  border-radius: 0.8125rem;
  min-width: 5.3125rem;
  font-size: 0.875rem;
  line-height: 1.4285714286;
}

.c-category-list__item2 a {
	animation: blinkAnimeS2 0.5s infinite alternate;
	background-color: #478eb2;
	border-radius: 0;
	border: 1px solid #478eb2;
}
@keyframes blinkAnimeS2{
   0%{ color : white; background:#478eb2}
 100%{ color : #478eb2; background:white}
}
.c-category-list__item3 a {
	background-color: #949593;
	border-radius: 0;
	border: 1px solid #949593;
}

.checkbox input[type=checkbox].checkbox__item {
  display: none;
}

.checkbox label {
  display: inline-block;
  margin-bottom: 0.625rem;
}

/* spanの左側にボタンを配置するスペースを作る */
.checkbox .checkbox__item + span {
  padding-left: 1.875rem;
  margin-right: 1.25rem;
  display: inline-block;
  position: relative;
}

/* 各パーツを作成 */
.checkbox .checkbox__item + span::after,
.checkbox .checkbox__item + span::before {
  content: "";
  display: block;
  position: absolute;
  border: 1px solid #aaaaaa;
  width: 20px;
  height: 20px;
  top: 0;
  left: 0;
}

/* after上書き */
.checkbox .checkbox__item + span::after {
  opacity: 0;
  width: 10px;
  height: 15px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  left: 5px;
  border: none;
  border-right: 3px solid #ff0060;
  border-bottom: 3px solid #ff0060;
}

/*
  checked状態
  文字のcolorとボタンのopacityを変更
*/
.checkbox .checkbox__item:checked + span {
  color: #262628;
}

.checkbox .checkbox__item:checked + span::after {
  opacity: 1;
}

.c-hamburger {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  z-index: 999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-hamburger span {
  background-color: #ff0060;
  width: 1.875rem;
  height: 0.3125rem;
  border-radius: 0.15625rem;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-hamburger span:nth-child(2) {
  margin: 0.375rem 0;
}
.c-hamburger.is-active span:nth-child(1) {
  -webkit-transform: translateY(0.6875rem) rotate(45deg);
          transform: translateY(0.6875rem) rotate(45deg);
}
.c-hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.c-hamburger.is-active span:nth-child(3) {
  -webkit-transform: translateY(-0.6875rem) rotate(-45deg);
          transform: translateY(-0.6875rem) rotate(-45deg);
}

.c-map {
  -o-object-fit: cover;
     object-fit: cover;
}

.c-pc-float-btn {
  position: fixed;
  bottom: 0.625rem;
  right: 0.625rem;
  z-index: 5;
}

.c-pc-float-btn img {
  width: 15.625rem;
}

/* ラジオボタンを隠す */
.radio-btns input[type=radio].radio-btns__item {
  display: none;
}

.radio-btns label {
  display: inline-block;
}

/* spanの左側にボタンを配置するスペースを作る */
.radio-btns .radio-btns__item + span {
  padding-left: 1.875rem;
  margin-right: 1.25rem;
  display: inline-block;
  position: relative;
}

/* 各パーツを作成 */
.radio-btns .radio-btns__item + span::after,
.radio-btns .radio-btns__item + span::before {
  content: "";
  display: block;
  position: absolute;
  border: 1px solid #aaaaaa;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  top: 0;
  left: 0;
}

/* after上書き */
.radio-btns .radio-btns__item + span::after {
  opacity: 0;
  width: 14px;
  height: 14px;
  top: 3px;
  left: 3px;
  border: none;
  background: #ff0060;
}

/*
  checked状態
  文字のcolorとボタンのopacityを変更
*/
.radio-btns .radio-btns__item:checked + span {
  color: #262628;
}

.radio-btns .radio-btns__item:checked + span::after {
  opacity: 1;
}

.c-section-title {
  position: relative;
  display: inline-block;
  color: #ff0060;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.3333333333;
}
@media screen and (min-width: 768px) {
  .c-section-title {
    font-size: 1.875rem;
    letter-spacing: 0.05em;
    line-height: 1.2;
  }
}

.c-section-title::after {
  content: attr(data-title);
  position: absolute;
  display: block;
  font-size: 1rem;
  font-weight: 700;
  text-transform: capitalize;
  left: 50%;
  bottom: -80%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .c-section-title::after {
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    line-height: 1.25;
  }
}

.c-sp-float-btn {
  position: fixed;
  bottom: 0.3rem;
  margin: 0 auto;
  z-index: 5;
}

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

.p-about__table {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
  margin-top: 3.75rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-about__table {
    text-align: center;
  }
}

.p-about__table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 0.3125rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-about__table tr {
    display: block;
    padding: 0;
  }
}

.p-about__table tr:nth-child(2n+1) {
  background: #f1f1f1;
}

.p-about__table tr th {
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .p-about__table tr th {
    width: 9.375rem;
    padding: 1.875rem 1.25rem;
  }
}

@media screen and (min-width: 768px) {
  .p-about__table tr td {
    text-align: left;
    padding: 1.875rem 1.25rem;
  }
}

.p-breadcrumbs {
  background-color: #f0f0f0;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.p-breadcrumbs__nav {
  line-height: 1.4285714286;
}
.p-breadcrumbs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0;
}

.p-breadcrumbs__item {
  font-size: 0.875rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1; /* 制限したい行数が3の場合 */
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-breadcrumbs__item {
    letter-spacing: 0.2em;
  }
}

.p-breadcrumbs__list li:not(:last-of-type)::after {
  content: "›";
  margin: 0 0.6em; /* 記号の左右の余白 */
}

.p-common {
  text-align: center;
  padding-top: 4.375rem;
}
@media screen and (min-width: 768px) {
  .p-common {
    padding-top: 4.6875rem;
  }
}

.p-common__text-wrapper {
  margin-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .p-common__text-wrapper {
    margin-bottom: 4.375rem;
  }
}

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

.p-common__title::after {
  content: attr(data-title);
  position: absolute;
  display: block;
  font-size: 1rem;
  font-weight: 700;
  text-transform: capitalize;
  left: 50%;
  bottom: -40%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-common__title::after {
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    line-height: 1.25;
    bottom: -80%;
  }
}

.p-common__title.p-common__title--black {
  color: #262628;
}

.p-common__text {
  text-align: left;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-common__text {
    margin-top: 1.875rem;
  }
}

.p-contact__btn-wrapper {
  margin-top: 3.125rem;
  margin-bottom: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-contact__btn-wrapper {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }
}

.p-contact__box {
  text-align: center;
  border: 1px solid #ff0060;
  border-radius: 1.875rem;
  padding-top: 2.1875rem;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  padding-bottom: 3.4375rem;
}
@media screen and (min-width: 768px) {
  .p-contact__box {
    padding-top: 3.4375rem;
    padding-left: 6.875rem;
    padding-right: 6.875rem;
    padding-bottom: 6.25rem;
  }
}

.mw_wp_form form {
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .mw_wp_form form {
    margin-top: 3.125rem;
  }
}

.p-contact__btn:nth-child(n+2) {
  margin-top: 1.875rem;
}

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

.p-content-lower__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-content-lower__date {
  font-size: 0.875rem;
  color: #ff0060;
}

.p-content-lower__btn {
  margin-top: 3.25rem;
  text-align: center;
}

.p-content-lower__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-content-lower__link {
    margin-top: 3.125rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    row-gap: 1.25rem;
  }
}

.p-content-lower__item:nth-child(n+2) {
  margin-left: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .p-content-lower__item:nth-child(n+2) {
    margin-left: 1.25rem;
  }
}

.p-content {
  background-color: #f1f1f1;
  padding-top: 4.375rem;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .p-content {
    padding-top: 4.6875rem;
    padding-bottom: 4.6875rem;
  }
}

.p-content.p-content--bg-white {
  background-color: #fff;
}

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

.p-content__text {
  margin-top: 1.875rem;
}

.p-content__container {
  overflow: hidden;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-content__container {
    margin-top: 3.125rem;
  }
}

.p-content__swiper {
  max-width: 21.25rem;
}

@media screen and (min-width: 768px) {
  .p-content__img {
    max-width: 21.25rem;
  }
}

.p-content__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 5rem;
  gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-content__cards {
    margin-top: 4.375rem;
  }
}

.p-content__map {
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-content__map {
    margin-top: 3.75rem;
    aspect-ratio: 1020/620;
  }
}

.p-content__btn-lg {
  margin-left: auto;
  margin-right: auto;
  margin-top: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .p-content__btn-lg {
    margin-top: 3.75rem;
  }
}

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

.p-description {
  text-align: center;
  padding-top: 4rem;
  padding-bottom: 3.625rem;
}
@media screen and (min-width: 768px) {
  .p-description {
    padding-top: 3.4375rem;
    padding-bottom: 5rem;
  }
}

.p-footer {
  background-color: #262628;
  color: #fff;
}

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

.p-footer__logo {
  margin: 0 auto;
  width: 16.25rem;
  padding-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-footer__logo {
    width: 23.75rem;
    padding-top: 2.5rem;
  }
}

.p-footer__nav {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-footer__nav {
    margin-left: auto;
    margin-right: auto;
    max-width: 18.75rem;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__lists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.p-footer__list {
  font-size: 1rem;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .p-footer__list {
    font-size: 1.125rem;
    font-weight: bold;
  }
}

.p-footer__copyright {
  display: block;
  font-size: 0.625rem;
  margin-top: 1.875rem;
  padding-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-footer__copyright {
    font-size: 0.875rem;
    font-weight: bold;
  }
}

.p-form {
  max-width: 50rem;
}

.p-form__row {
  padding: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-form__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 1.5625rem;
  }
}

.p-form__row dt {
  text-align: left;
  margin-right: 1rem;
}
@media screen and (min-width: 768px) {
  .p-form__row dt {
    white-space: nowrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 35%;
  }
}

.p-form__row dd {
  width: 100%;
}
.p-form__row input,
.p-form__row textarea {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-form__row span {
    font-size: 0.75rem;
    font-weight: bold;
  }
}

.p-form__row.p-form__row--gray {
  background-color: #f1f1f1;
}

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

.p-form__privacypolicy a {
  text-decoration: underline;
}

.p-form__req {
  color: #ff0060;
}

.p-form__btn input {
  cursor: pointer;
}

.p-form__postcode {
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}

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

.p-header {
  height: 5rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .p-header {
    height: 5.625rem;
  }
}

.p-header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}

.p-header__logo {
  height: inherit;
  width: 15rem;
}
@media screen and (min-width: 768px) {
  .p-header__logo {
    width: 19.4375rem;
  }
}

.p-header__logo a {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-header__logo img {
  height: inherit;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-header__nav {
  position: fixed;
  z-index: 998;
  top: 0;
  right: -120%;
  height: 100vh;
  width: 100%;
  background-color: #fff;
  -webkit-transition-duration: 0.6s;
          transition-duration: 0.6s;
  -webkit-transition-property: right;
  transition-property: right;
  overflow: auto;
}
@media screen and (min-width: 768px) {
  .p-header__nav {
    position: static;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    height: inherit;
    background-color: transparent;
    background-color: initial;
    overflow: visible;
    overflow: initial;
  }
}

.p-header__nav.panelactive {
  right: 0;
}

.p-header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 9.3125rem;
  padding-top: 6.875rem;
}
.p-header__list img {
  width: 2.375rem;
}
@media screen and (min-width: 768px) {
  .p-header__list {
    padding: 0;
    margin: 0;
    height: inherit;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-header__item {
  height: inherit;
}
@media screen and (min-width: 768px) {
  .p-header__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-header__item a {
  padding: 1rem;
  display: block;
  height: inherit;
  font-size: 1.25rem;
  font-weight: bold;
  color: #ff0060;
  line-height: 1.45;
  padding-left: 2.375rem;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-header__item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 1rem;
    font-weight: bold;
    color: #000;
    color: initial;
    line-height: 25/16;
    letter-spacing: 0.05em;
    padding: 0 0.9375rem;
    position: relative;
  }
}

.p-header__item a::after {
  content: none;
}
@media screen and (min-width: 768px) {
  .p-header__item a::after {
    content: "";
    display: inline-block;
    width: calc(100% - 1.875rem);
    height: 0.1875rem;
    position: absolute;
    bottom: 1.5rem;
    left: 0.9375rem;
    background-color: #ff0060;
  }
}

.p-header__item--icon {
  height: inherit;
}
@media screen and (min-width: 768px) {
  .p-header__item--icon {
    width: 2.375rem;
  }
}

.p-header__item--icon a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
  padding-right: 0;
}

.p-header__item--icon img {
  height: inherit;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-header__item--icon a::after {
  content: none;
}

.p-header__item--icon a {
  height: inherit;
}

.p-header__hamburger {
  height: inherit;
}
@media screen and (min-width: 768px) {
  .p-header__hamburger {
    display: none;
  }
}

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

.p-introduction__tax {
  margin-top: 3.75rem;
  color: #ff0060;
  font-weight: bold;
}

.p-introduction__img-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 0.625rem;
     -moz-column-gap: 0.625rem;
          column-gap: 0.625rem;
  row-gap: 0.9375rem;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-introduction__img-wrapper {
    grid-template-columns: repeat(4, 1fr);
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
    row-gap: 1.25rem;
    padding: 2.8125rem 1.25rem 2.8125rem 1.25rem;
    -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, .16);
            box-shadow: 0 3px 6px 0 rgba(0, 0, 0, .16);
  }
}

.p-introduction__img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-introduction__img {
    width: 14.375rem;
  }
}

.p-introduction__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 155/40;
}
@media screen and (min-width: 768px) {
  .p-introduction__img img {
    aspect-ratio: 230/60;
  }
}

.p-links {
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
}

.p-links__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 0.5625rem;
     -moz-column-gap: 0.5625rem;
          column-gap: 0.5625rem;
  row-gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-links__wrapper {
    gap: 1.25rem;
  }
}

.p-links__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 9.6875rem;
  width: 46.2686567164%;
  min-width: 9.625rem;
  border: 1px solid #ebebeb;
}
@media screen and (min-width: 768px) {
  .p-links__item {
    width: 14.375rem;
  }
}

.p-mv__text-wrap {
  padding-top: 0.53125rem;
  padding-bottom: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-mv__text-wrap {
    padding-top: 0.9375rem;
    padding-bottom: 1.5625rem;
  }
}

.p-mv__title {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.5;
  color: #ff0060;
}
@media screen and (min-width: 768px) {
  .p-mv__title {
    font-size: 1.5rem;
    letter-spacing: 0.05em;
  }
}

.p-mv__text {
  font-size: 1rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-mv__text {
    font-size: 1.125rem;
    letter-spacing: 0.05em;
    line-height: 1.3888888889;
  }
}

.p-mv__img {
  margin-bottom: 0.625rem;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-mv__img {
    width: 45rem;
  }
}

.p-mv__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 375/220;
}
@media screen and (min-width: 768px) {
  .p-mv__img img {
    aspect-ratio: 720/423;
  }
}

.p-mv__subtitle {
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.5625;
  margin-top: 0.625rem;
  padding: 0 0.5rem;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-mv__subtitle {
    font-size: 1.125rem;
    line-height: 1.3888888889;
  }
}

.p-mv__container {
  position: relative;
  overflow: hidden;
}

.p-mv__link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: transparent;
}

.p-mv__slide {
  border: solid 1px #f1f1f1;
  padding-bottom: 1.875rem;
  max-width: 45rem;
}

.p-mv__category {
  margin-top: 0.75rem;
}

/* ページネーション */
.swiper-pagination {
  position: static;
  position: initial;
}

/* ページネーションのサイズと色 */
.swiper-pagination-bullet {
  background-color: #262628;
  height: 10px;
  width: 10px;
}
/* ページネーションの間隔 */
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 0.4375rem;
}
@media screen and (min-width: 768px) {
  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 0.625rem;
  }
}

/* 前への矢印 */
.swiper-button-prev {
  left: 20%;
  top: 40%;
}

/* 次への矢印 */
.swiper-button-next {
  right: 20%;
  top: 40%;
}

/* 前へ次への矢印カスタマイズ */
.swiper-button-prev,
.swiper-button-next {
  height: 60px;
  width: 60px;
}

/* 前へ次への矢印カスタマイズ */
@media screen and (min-width: 768px) {
  .swiper-button-prev:after,
  .swiper-button-next:after {
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    height: 60px;
    margin: auto;
    width: 60px;
    border-radius: 50%;
  }
}

/* 前への矢印カスタマイズ */
.swiper-button-prev:after {
  background-image: url(../images/btn-left.jpg);
}

/* 次への矢印カスタマイズ */
.swiper-button-next:after {
  background-image: url(../images/btn-right.jpg);
}

.p-news__btn {
  text-align: center;
  margin-top: 3.125rem;
}

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

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

.p-news__list {
  text-align: left;
  border-bottom: 2px solid #ff0060;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-news__list {
    margin-top: 1.25rem;
  }
}

.p-news__list a {
  display: block;
  padding-bottom: 0.75rem;
}
.p-news__date {
  font-size: 0.875rem;
  color: #ff0060;
}

.p-news__text {
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.5625;
}

.p-recommend {
  background-color: #f1f1f1;
  padding-top: 4rem;
  padding-bottom: 3.625rem;
}
@media screen and (min-width: 768px) {
  .p-recommend {
    padding-top: 5rem;
    padding-bottom: 5.6875rem;
  }
}

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

.p-recommend__cards {
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-recommend__cards {
    margin-top: 4.0625rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.875rem;
  }
}

.p-schedule__date {
  display: block;
  font-size: 1.625rem;
  border: 1px solid #f1f1f1;
  padding: 0.9375rem 0;
}

.p-schedule__img {
  text-align: -webkit-center;
}

.p-searchform {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  height: 6.25rem;
  text-align: right;
}

.p-searchform::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ff0060;
  opacity: 0.35;
}

.p-searchform__form {
  margin-left: auto;
}

.p-searchform input {
  width: 20rem;
  background-color: #fff;
  border-radius: 0.9375rem;
  border: none;
  margin-top: 1.25rem;
}

.p-searchform__btn span {
  display: none;
}

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

.p-terms__heading {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.p-terms__text {
  font-size: 1rem;
  letter-spacing: 0.05em;
  padding-top: 1.25rem;
  padding-bottom: 1.875rem;
  line-height: 25/16;
}

.u-center {
  text-align: center;
}

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

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

.u-mt80 {
  margin-top: 5rem;
}

.u-pointer-none {
  pointer-events: none;
}

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

.u-search {
  width: 2.1875rem;
  height: 2.1875rem;
}

/* 20230221 追加 */
.schedule-day {
  font-size: 40px!important;
  color: #ff0060;
  margin-bottom: 16px;
  font-weight: bold;
}

.schedule-day > .title-jp {
  font-size: 24px;
  display: inline-block;
  margin: 0 4px;
}

.mptt-shortcode-wrapper .mptt-shortcode-table tr.mptt-shortcode-row th {
  font-size: 20px;
  padding: 0.85rem 1rem;
}

.mptt-shortcode-wrapper .mptt-shortcode-table tr.mptt-shortcode-row th:nth-of-type(2),
.mptt-shortcode-wrapper .mptt-shortcode-table tr.mptt-shortcode-row th:last-of-type {
  width: 50%;
}

.mptt-shortcode-wrapper .mptt-shortcode-table tbody td {
  font-size: 16px;
}

.mptt-shortcode-wrapper .mptt-shortcode-table tbody .mptt-event-container {
  padding: 6px 10px;
}

@media screen and (max-width: 767px) {
  .mptt-shortcode-wrapper .mptt-shortcode-table tr.mptt-shortcode-row th {
    font-size: 16px;
  }

  .mptt-shortcode-wrapper .mptt-shortcode-table tbody td {
    font-size: 14px;
  }
}

/*# sourceMappingURL=styles.css.map */

/* 20240821追加 */
@media screen and (min-width: 768px) {
  .chirashi-img,.map-img {
    max-width: 68%;
    margin: 30px auto 0;
  }

  .p-content__container .flex-content {
    max-width: 1070px;
    margin: 0 auto 2.5rem;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
  }

  .p-content__container .flex-content a {
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 768px) {
  .c-sp-float-btn-area {
    width: 100%;
  }

  .c-sp-float-btn-area a {
    width: 50%;
  }

  .c-sp-float-btn-box {
    justify-content: flex-end !important;
  }

  .p-content__container {
    width: 90%;
    margin: 2.5rem auto;
  }

  .c-btn-pink2 {
    padding: 0.6875rem 1rem;
}

}

/* ex====== */

.mptt-shortcode-wrapper .mptt-shortcode-table tr.mptt-shortcode-row th:not(:first-child) {
	width: 25%;}

@media screen and (max-width: 767px) {
.mptt-menu mptt-navigation-select{
	width:100%;
	}
}