/* 共通（スマホ基準） */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #333;
  font-family: YakuHanJP_Narrow, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
}
/* Yuruka */
@font-face {
  font-family: "Yuruka", ;
  src: url("../fonts/FOT-YurukaStd-UB.woff") format("woff");
  font-weight: 400;
  font-display: swap;
}
/* Hiragino UD Maru Gothic */
@font-face {
  font-family: "Hiragino UD Maru Gothic";
  src: url("../fonts/ヒラギノUD丸ゴ-Std-W6.woff") format("woff");
  font-weight: 600;
  font-display: swap;
}
/* M PLUS Rounded 1c */
@font-face {
  font-family: "MPLUS Rounded 1c";
  src: url("../fonts/MPLUSRounded1c-Thin.woff") format("woff");
  font-weight: 100;
}
@font-face {
  font-family: "MPLUS Rounded 1c";
  src: url("../fonts/MPLUSRounded1c-Light.woff") format("woff");
  font-weight: 300;
}
@font-face {
  font-family: "MPLUS Rounded 1c";
  src: url("../fonts/MPLUSRounded1c-Regular.woff") format("woff");
  font-weight: 400;
}
@font-face {
  font-family: "MPLUS Rounded 1c";
  src: url("../fonts/MPLUSRounded1c-Medium.woff") format("woff");
  font-weight: 500;
}
@font-face {
  font-family: "MPLUS Rounded 1c";
  src: url("../fonts/MPLUSRounded1c-Bold.woff") format("woff");
  font-weight: 700;
}
@font-face {
  font-family: "MPLUS Rounded 1c";
  src: url("../fonts/MPLUSRounded1c-ExtraBold.woff") format("woff");
  font-weight: 800;
}
@font-face {
  font-family: "MPLUS Rounded 1c";
  src: url("../fonts/MPLUSRounded1c-Black.woff") format("woff");
  font-weight: 900;
}
.yuruka {
  font-family: "Yuruka", sans-serif;
  font-weight: 400;
}
.hiragino {
  font-family: "Hiragino UD Maru Gothic", sans-serif;
  font-weight: 600;
}
.mplus100 {
  font-family: "MPLUS Rounded 1c", sans-serif;
  font-weight: 100;
}
.mplus300 {
  font-family: "MPLUS Rounded 1c", sans-serif;
  font-weight: 300;
}
.mplus400 {
  font-family: "MPLUS Rounded 1c", sans-serif;
  font-weight: 400;
}
.mplus500 {
  font-family: "MPLUS Rounded 1c", sans-serif;
  font-weight: 500;
}
.mplus700 {
  font-family: "MPLUS Rounded 1c", sans-serif;
  font-weight: 700;
}
.mplus800 {
  font-family: "MPLUS Rounded 1c", sans-serif;
  font-weight: 800;
}
.mplus900 {
  font-family: "MPLUS Rounded 1c", sans-serif;
  font-weight: 900;
}
a {
  display: block;
  text-decoration: none;
}
html {
  font-size: 62.5%;
}
img {
  height: auto;
  width: 100%;
}
/* スマホ表示がデフォルト */
.pc {
  display: none !important;
}
.sp {
  display: block !important;
}
/* クラス作成 */
.flex {
  display: flex;
  flex-wrap: wrap;
}
.between {
  justify-content: space-between;
}
.around {
  justify-content: space-around;
}
.inner {
  padding: 10% 6%;
  overflow: hidden;
}
.p-4 {
  padding-left: 6%;
  padding-right: 6%;
}
video {
  width: 100%;
  height: auto;
}
/* 円形アニメーション */
.dots {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-around;
  width: 50%;
  margin: 0 auto 1rem;
}
.dots span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  overflow: hidden;
  display: block;
}
.dots img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* header */
.head-inner {
  padding: 3%;
  align-items: center;
  width: 100%;
  position: relative;
}
header .logo {
  margin-right: 3%;
  width: 14%;
}
header .nav-btn {
  position: relative;
  width: 11%;
  line-height: 0;
  z-index: 10;
  border-radius: 4px;
  margin: 0 0 0 auto;
}
header .btn-link {
  width: 69%;
}
header .logo,
header .nav-btn,
header .btn-link {
  z-index: 12;
}
.sp-fixed {
  background-color: rgba(255,255,255,0.8);
  z-index: 2;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  min-height: 76px;
  height: 11%;
}
.sp-fixed-bottom {
  margin-top: 20%;
}
/* nav */
.nav-txt {
  margin-bottom: 0.5rem;
}
.nav-line span {
  display: block;
  transition: all 0.4s ease;
}
.nav-line span:first-of-type {
  margin-bottom: 0.5rem;
}
.nav-line span:last-of-type {
  margin-top: 0.5rem;
}
.nav-btn.open .nav-txt,
.nav-btn.open .nav-line span:last-of-type {
  display: none;
}
header .nav-btn.open {
  top: 5%;
} 
.nav-btn.open .nav-line span:first-of-type {
  transform: rotate(45deg);
}
.nav-btn.open .nav-line span:nth-of-type(2) {
  transform: translateY(-1.1rem) rotate(-45deg);
}
nav.sp-nav {
  background-color: rgba(255,255,255,0.9);
  display: block;
  height: 100%;
  min-height: 100vh;
  overflow-y: scroll;
  width: 100%;
  padding: 26% 10% 10%;
  position: fixed;
  top: -110%;
  left: 0;
  z-index: 10;
  transition: all 0.4s ease;
}
nav.sp-nav.open {
  top: 0;
}
nav .nav-lists {
  margin-bottom: 2rem;
}
nav .nav-lists li a {
  background-color: #FFCBCC;
  border-radius: 200px;
  color: #333;
  display: block;
  font-size: 1.6rem;
  padding: 1.6rem 0;
  text-align: center;
}
nav .nav-lists li:not(:last-of-type) {
  margin-bottom: 1.6rem;
}
nav .menu-btn {
  margin-bottom: 3rem;
}
nav .sub-lists li:not(:last-of-type) {
  margin-bottom: 2rem;
}
nav .sub-lists li a {
  color: #333;
  font-size: 1.6rem;
  text-align: center;
}
.no-scroll {
  overflow-y: hidden;
}
/* PDFダウンロードリンク */
.download-lists {
  max-width: 600px;
  margin: 2rem auto 0;
  text-align: center;
}
.download-lists details {
  border: 1px solid #ccc;
  padding: 1rem;
  border-radius: 0.5rem;
}
.download-lists summary {
  font-weight: bold;
  cursor: pointer;
  font-size: 1.6rem;
}
.download-lists details ul {
  margin-top: 1.4rem;
  padding-left: 20px;
}
.download-lists details li {
  margin-bottom: 1.2rem;
}
.download-lists details li a {
  font-size: 1.4rem;
  text-decoration: underline;
}
/* kv */
.kv {
  position: relative;
}
.kv-movie {
  border-radius: 10px;
  overflow: hidden;
  height: 74vh;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  margin: 10% 4%;
}
.kv-movie video {
  width: 102%;
  height: auto;
  transform: translateX(-2px);
}
.kv-catch {
  position: absolute;
  left: 10%;
  top: 6%;
  width: 25%;
  z-index: 1;
}
.kv-illust {
  position: absolute;
  right: 0;
  bottom: 4%;
  width: 60%;
}
.kv-bg {
  z-index: 1;
}
.kv-bg-line {
  position: absolute;
  left: 0;
  bottom: 0;
}
/* top-detaile */
.top-detaile-pic {
  margin-bottom: 3rem;
}
.top-detaile .title {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 2rem;
}
.top-detaile .msg {
  font-size: 1.6rem;
  line-height: 2;
  margin-bottom: 3rem;
  text-align: center;
}
.top-detaile .sisetsu-btn {
  margin: 0 auto 2rem;
  width: 86%;
}
.top-detaile .rec-btn {
  margin-bottom: 4rem;
}
.top-detaile-pic02 {
  margin-bottom: 6rem;
}
.top-detaile .h2-ttl {
  font-size: 2.6rem;
  letter-spacing: 0.1rem;
  text-align: center;
  margin-bottom: 1rem;
}
.top-detaile .msg-left {
  text-align: left;
}
.three-list h3 {
  background-color: #FF8080;
  border-radius: 200px;
  color: #fff;
  font-size: 2rem;
  text-align: center;
  padding: 1rem 0;
  width: 80%;
  margin: 0 auto 3rem;
}
.three-list dl:not(:last-of-type) {
  margin-bottom: 3rem;
}
.three-list dt {
  font-size: 2.8rem;
  letter-spacing: 0.2rem;
  text-align: center;
  margin-bottom: 1.6rem;
}
.three-list dl:first-of-type dt{
  color: #AAB121;
}
.three-list dl:nth-of-type(2) dt{
  color: #FF8080;
}
.three-list dl:last-of-type dt{
  color: #80AFFF;
}
.three-list dd {
  font-size: 1.6rem;
  text-align: center;
  line-height: 2;
}
.three-list .about-btn {
  margin: 4rem auto 0;
  width: 90%;
}
.top-reason,
.top-guide,
.top-rec,
.important-area,
.lunch-area,
.faq-area {
  background: url("../images/sp-reason-bg.png") no-repeat center top / cover;
}
.h2-icon {
  font-size: 2.6rem;
  letter-spacing: 0.1rem;
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
}
.h2-icon::before,
.h2-icon::after {
  content: "";
  display: block;
  height: 50px;
  width: 50px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.top-reason h2::before {
  background: url("../images/sp-reason-title-icon1.png") no-repeat left center / 100% auto;
  left: 0;
}
.top-reason h2::after {
  background: url("../images/sp-reason-title-icon2.png") no-repeat right center / 100% auto;
  right: 0;
}
.top-flow h2::before,
.flow-area h2::before {
  background: url("../images/sp-flow-title-icon1.png") no-repeat left center / 100% auto;
  left: 10%;
}
.top-flow h2::after,
.flow-area h2::after {
  background: url("../images/sp-flow-title-icon2.png") no-repeat left center / 100% auto;
  right: 10%;
}
.reason-lists {
  margin: 3rem 0;
}
.reason-lists .pic {
  margin: 0 auto 2rem;
  width: 90%;
}
.reason-lists li:not(:last-of-type) {
  margin-bottom: 4rem;
}
.reason-lists dt {
  color: #FF6979;
  font-size: 1.8rem;
  margin-bottom: 1.6rem;
  text-align: center;
}
.reason-lists dd {
  font-size: 1.6rem;
  text-align: center;
  line-height: 2;
}
.top-flow .msg {
  font-size: 1.6rem;
  list-style: 2;
  text-align: center;
  margin: 1.6rem 0 3rem;
}
.top-flow .flow-pics {
  margin-bottom: 2rem;
}
.top-flow .flow-pics div {
  width: 48%;
}
.top-lunch,
footer .inner {
  background: url('../images/sp-lunch-bg.png') no-repeat center top / cover;
  position: relative;
}
.top-lunch .msg {
  font-size: 1.5rem;
  text-align: center;
  line-height: 2;
  margin-bottom: 2rem;
}
.top-lunch .lunch-pack {
  margin-bottom: 4rem;
}
.top-lunch .lunch-pack .pic {
  width: 47%;
}
.top-lunch .lunch-pack .pic.first {
  margin: 0 auto 2rem;
}
.top-lunch .lunch-pack .illust {
  width: 80%;
  margin: 0 auto;
}
.top-facility {
  padding: 6rem 0;
}
.top-facility .msg {
  font-size: 1.6rem;
  text-align: center;
  line-height: 2;
  margin: 2rem 0;
}
/* 施設紹介スライダー */
.facility-slide .swiper-wrapper,
.important-slide .swiper-wrapper {
  transition-timing-function: linear !important;
  gap: 2%;
}
.facility-slide .swiper-slide,
.important-slide .swiper-slide {
  width: max-content !important;
}
.facility-slide .slide,
.important-slide .slide {
  width: 120px;
}
.facility-slide,
.important-slide {
  margin-bottom: 4rem;
}
.facility-btn {
  margin: 0 auto;
  width: 88%;
}
.top-guide .msg {
  font-size: 1.6rem;
  text-align: center;
  line-height: 2;
  margin: 2rem 0;
}
.top-guide .illust {
  margin: 0 auto 3rem;
  width: 80%;
}
.top-insta {
  margin-bottom: 10%;
}
.top-insta .insta-slider .swiper-slide {
  padding: 10% 6%;
}
.top-insta .insta-slider .slide {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.16);
  padding: 3%;
}
.top-insta .insta-name {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  margin-left: 3%;
}
.top-insta .insta-name span {
  display: inline-block;
  width: 10%;
  vertical-align: middle;
  margin-right: 1rem;
}
.top-insta .insta-pic {
  aspect-ratio: 1 / 1;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 1rem;
}
.top-insta .insta-icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 94%;
  margin: 0 auto;
}
.top-insta .insta-icons .icons-left {
  display: flex;
  width: 36%;
  gap: 2%;
  justify-content: space-between;
  align-items: center;
}
.top-insta .insta-icons .icons-left div {
  width: 22%;
  position: relative;
}
.top-insta .insta-icons .icons-left .insta-hart span,
.top-insta .insta-icons .icons-left .insta-comment span {
  position: absolute;
  left: 50%;
  top: 44%;
  transform: translate(-50%, -50%);
  font-size: 1.2rem;
}
.top-insta .insta-icons .icons-left .insta-hart span {
  color: #fff;
}
.top-insta .insta-icons .icons-right {
  width: 6%;
}
.top-insta .insta-pagination {
  width: 40%;
  margin:  0 auto;
  text-align: center;
}
.top-insta .swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
}
.top-insta .swiper-pagination-bullet-active {
  background: #000;
}
.top-access .g-map {
  border-radius: 20px;
  overflow: hidden;
  line-height: 0;
  margin-bottom: 2rem;
}
iframe[src*="www.google.com/maps/embed"] {
	aspect-ratio: 16 / 9;
	width: 100%;
	height: auto;
}
.top-access .sub-map {
  margin-bottom: 2rem;
}
.top-access .sub-map .pic {
  width: 45%;
}
.top-access .msg {
  font-size: 1.2rem;
  line-height: 2;
}
.top-rec {
  padding-bottom: 2rem;
}
.top-rec .msg {
  font-size: 1.6rem;
  text-align: center;
  line-height: 2;
  margin: 2rem auto;
  width: 80%;
}
.top-rec .pic {
  margin: 0 auto 3rem;
  width: 80%;
}
/* footer */
footer {
  background-color: #edfbca;
}
footer .inner {
  position: relative;
  z-index: 1;
  transform: translateY(-2rem);
}
.foot-tel {
  font-size: 2.8rem;
  color: #FF6979;
  text-align: center;
  margin-top: 4rem;
}
.foot-tel .icon {
  display: inline-block;
  width: 26px;
  height: 26px;
  vertical-align: text-top;
  margin-right: 1rem;
}
footer .sub-txt {
  text-align: center;
  font-size: 1.3rem;
  margin-bottom: 3rem;
}
footer .msg {
  font-size: 1.3rem;
  line-height: 1.8;
  text-align: center;
}
footer .illust {
  margin: 2rem auto;
  width: 60%;
}
/* 下層ページ */
.second .kv {
  position: relative;
}
.second .kv::after {
  content: "";
  display: block;
  background: url("../images/wave.png") repeat-x left bottom;
  background-size: contain;
  position: absolute;
  left: 0;
  bottom: 0;
  aspect-ratio: 360 / 32;
  width: 100%;
  height: 32px;
}
.second .kv .pic {
  line-height: 0;
}
.second-h1 {
  font-size: 3rem;
  color: #fff;
  letter-spacing: 0.1rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}
.second-wrap {
  padding: 10% 0 4%;
}
.bread { 
  margin-bottom: 4rem;
}
.bread li {
  font-size: 1.4rem;
  position: relative;
}
.bread li:not(:first-of-type) {
  padding: 0 1rem;
}
.bread li:not(:first-of-type)::before {
  background-color: #333;
  content: "";
  display: inline-block;
  height: 1.6rem;
  width: 1px;
  margin-right: 1rem;
  transform: rotate(30deg);
  vertical-align: sub;
}
.top-flow .movie-area,
.second .movie-area {
  border-radius: 20px;
  overflow: hidden;
  line-height: 0;
  margin-bottom: 4rem;
  position: relative;
}
.top-flow .movie-area .playBtn,
.second .movie-area .playBtn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 60px;
  width: 60px;
}
.facility-detaile .msg {
  font-size: 1.6rem;
  text-align: center;
  line-height: 2;
  margin: 2rem 0;
}
.facility-detaile .detaile-lists li {
  margin-bottom: 2rem;
  width: 46%;
}
.facility-detaile .detaile-lists li a {
  display: block;
  border-radius: 10px;
  line-height: 0;
  overflow: hidden;
  position: relative;
}
.facility-detaile .detaile-lists li a span {
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
  height: 20px;
  width: 20px;
}
.facility-detaile .detaile-lists .aspect {
  aspect-ratio: 158 / 105;
}
.facility-detaile .detaile-lists .pic-ttl {
  font-size: 1.2rem;
  margin-top: 1rem;
}
.important-area {
  padding: 10% 0;
}
.important-area .msg {
  font-size: 1.6rem;
  text-align: center;
  line-height: 2;
  margin-bottom: 4rem;
  padding-left: 6%;
  padding-right: 6%;
}
.important-area .msg h3 {
  color: #806239;
  margin-bottom: 1rem;
}
.important-area .msg h4 {
  color: #AAB121;
  margin-bottom: 1rem;
}
.important-area .msg .in-txt {
  margin: 1em 0;
}
.important-area .illust {
  margin: 0 auto;
  width: 80%;
}
.daihyou-area .pic {
  margin: 4rem auto;
  width: 80%;
}
.daihyou-area .msg {
  font-size: 1.4rem;
  line-height: 2;
  text-align: center;
  margin: 0 auto;
  padding-left: 3%;
  padding-right: 3%;
}
.daihyou-area .name {
  display: block;
  text-align: right;
}
.flow-area .msg {
  font-size: 1.6rem;
  text-align: center;
  line-height: 2;
  margin: 2rem 0;
}
.flow-area .one-day-flow-lists li:not(:last-of-type) {
  margin-bottom: 3rem;
}
.flow-area .one-day-flow-lists dl {
  margin-top: -1rem;
  position: relative;
  z-index: 1;
}
.flow-area .one-day-flow-lists dt {
  background-color: #FF8080;
  border-radius: 200px;
  padding: 1rem 0;
}
.flow-area .one-day-flow-lists dt p {
  color: #fff;
  font-size: 1.8rem;
}
.flow-area .one-day-flow-lists dt .time {
  background-repeat: no-repeat;
  background-position: 10px center;
  background-size: 20px 20px;
  border-right: 2px solid #fff;
  padding-left: 4rem;
  width: 30%;
}
.flow-area .one-day-flow-lists dt .time1 {
  background-image: url("../images/flow-icon1.png");
}
.flow-area .one-day-flow-lists dt .time2 {
  background-image: url("../images/flow-icon2.png");
}
.flow-area .one-day-flow-lists dt .time3 {
  background-image: url("../images/flow-icon3.png");
}
.flow-area .one-day-flow-lists dt .time4 {
  background-image: url("../images/flow-icon4.png");
}
.flow-area .one-day-flow-lists dt .time5 {
  background-image: url("../images/flow-icon5.png");
}
.flow-area .one-day-flow-lists dt .time6 {
  background-image: url("../images/flow-icon6.png");
}
.flow-area .one-day-flow-lists dt .ttl {
  padding-left: 2rem;
  width: 70%;
}
.flow-area .one-day-flow-lists dd {
  font-size: 1.6rem;
  line-height: 2;
  margin: 1rem auto 0;
  width: 80%;
}
.lunch-area .msg {
  font-size: 1.6rem;
  line-height: 2;
  margin: 2rem 0;
  text-align: center;
}
.lunch-area .illust {
  margin: 0 auto 2rem;
  width: 80%;
}
.lunch-area .pic {
  margin-bottom: 3rem;
}
.lunch-area .msg .in-txt {
  margin-bottom: 2rem;
}
.lunch-area .msg h3 {
  color: #806239;
  margin-bottom: 1rem;
}
.lunch-area .msg p {
  text-align: left;
}
.event-area .msg {
  font-size: 1.6rem;
  text-align: center;
  line-height: 2;
  margin: 2rem 0;
}
.event-area .illust {
  margin: 0 auto 1rem;
  width: 70%;
}
.event-area .event-lists li {
  margin-bottom: 1rem;
  width: 47%;
}
/* facility */
.table-area {
  padding-bottom: 10%;
}
.table-area .table {
  border: 1px solid #FFCBCC;
  border-radius: 1rem;
  overflow: hidden;
}
.table-area .table h2 {
  background-color: #FFCBCC;
  font-size: 2.2rem;
  text-align: center;
  padding: 1.2rem 0;
}
.table-area .table-in {
  padding: 1.6rem;
}
.table-area .table dl {
  display: flex;
  border-bottom: 1px dashed #FFCBCC;
  flex-wrap: wrap;
  padding-bottom: 0.5rem;
}
.table-area .table dl:not(:last-of-type) {
  margin-bottom: 1rem;
}
.table-area .table dt,
.table-area .table dd {
  font-size: 1.6rem;
}
.table-area .table dt {
  width: 40%;
}
.table-area .table dd {
  width: 60%;
}
.table-area .lookfor-table {
  margin-bottom: 3rem;
}
.table-area .price-table h3 {
  font-size: 1.8rem;
  color: #FF6979;
  margin-bottom: 1rem;
  text-align: center;
}
.table-area .price-table .padd {
  margin-top: 3rem;
}
.table-area .price-table dd {
  text-align: right;
}
.table-area .price-table .caution {
  font-size: 1.2rem;
  margin: 1rem 0 3rem;
}
.table-area .price-table .end-msg {
  font-size: 2rem;
  text-align: center;
}
.table-area .price-table .end-msg span {
  color: #FF6979;
  display: block;
  font-size: 2.8rem;
}
.faq-area .faq-lists {
  margin: 3rem 0 4rem
}
.faq-area .faq-lists dl:not(:last-of-type) {
  margin-bottom: 1.6rem;
}
.faq-area .faq-lists dt,
.faq-area .faq-lists dd {
  align-items: center;
  font-size: 1.4rem;
}
.faq-area .faq-lists dt .icon,
.faq-area .faq-lists dd .icon {
  color: #806239;
  font-size: 3rem;
  width: 15%;
}
.faq-area .faq-lists dt .txt,
.faq-area .faq-lists dd .txt {
  width: 75%;
}
.faq-area .faq-lists dt {
  background-color: #FFCBCC;
  border-top-left-radius: 1.6rem;
  border-top-right-radius: 1.6rem;
  border-bottom-left-radius: 1.6rem;
  border-bottom-right-radius: 1.6rem;
  box-shadow: 1px 1px 4px 0px rgba(0,0,0,0.2);
  padding: 1.4rem;
  position: relative;
}
.faq-area .faq-lists dt.active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.faq-area .faq-lists dt:after {
  content: "";
  display: block;
  background: url("../images/icon-arrow.png") no-repeat right top / 100% auto;
  height: 11px;
  width: 20px;
  position: absolute;
  right: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
}
.faq-area .faq-lists dt.active::after {
  transform: translateY(-50%) rotate(180deg);
}
.faq-area .faq-lists dd {
  background-color: #fff;
  border-bottom-left-radius: 1.6rem;
  border-bottom-right-radius: 1.6rem;
  padding: 1.4rem;
}
.start-flow-area .flow-lists {
  margin: 4rem 0;
}
.start-flow-area .flow-lists li {
  align-items: center;
  position: relative;
}
.start-flow-area .flow-lists li:not(:last-of-type)::after {
  content: "";
  display: block;
  background: url("../images/arrow-pink.png") no-repeat center center / 100% auto;
  height: 27px;
  width: 54px;
  position: absolute;
  left: 50%;
  bottom: -5rem;
  transform: translateX(-50%);
}
.start-flow-area .flow-lists li:not(:last-of-type) {
  margin-bottom: 8rem;
}
.start-flow-area .flow-lists .pic {
  width: 34%;
}
.start-flow-area .flow-lists .flow-txt {
  width: 62%;
}
.start-flow-area .flow-lists .flow-txt h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.start-flow-area .flow-lists .flow-txt p {
  font-size: 1.4rem;
  line-height: 2;
}
/* company */
.second .table-area.company {
  padding-bottom: 0;
}
.second .top-access .g-map {
  margin-top: 4rem;
}
.detaile-area .pic {
  margin: 2rem auto;
  width: 80%;
}
.detaile-area .msg {
  font-size: 1.6rem;
  line-height: 2;
}
/* PC（769px以上） */
@media only screen and (min-width: 769px) {
  .pc {
    display: block !important;
  }
  .sp {
    display: none !important;
  }
  .head-inner {
    justify-content: space-between;
    padding: 1.5% 3%;
  }
  header .logo {
    width: 20%;
  }
  .sp-fixed {
    background-color: transparent;
    z-index: 2;
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    min-height: auto;
  }
  .sp-fixed-bottom {
    margin-top: 0;
  }
  .pc-nav {
    width: 50%;
  }
  .pc-nav ul {
    justify-content: space-between;
    align-items: center;
  }
  .pc-nav li {
    max-width: 100px;
  }
  .pc-nav .menu-illust a {
    display: block;
    background-image: url("../images/pc-menu-illust-about.png");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 88px 88px;
    padding-top: 90px;
    font-size: 1.2rem;
    text-align: center;
    width: 120px;
  }
  .pc-nav .menu-illust:first-of-type a {
    background-image: url("../images/pc-menu-illust-about.png");
  }
  .pc-nav .menu-illust:nth-of-type(2) a {
    background-image: url("../images/pc-menu-illust-one-day.png");
  }
  .pc-nav .menu-illust:nth-of-type(3) a {
    background-image: url("../images/pc-menu-illust-facility.png");
  }
  .pc-nav .menu-illust:nth-of-type(4) a {
    background-image: url("../images/pc-menu-illust-rec.png");
  }
  .pc-nav li a:hover {
    opacity: 0.8;
  }
  .kv-movie {
    width: 80%;
    height: auto;
    left: 50%;
    transform: translateX(-50%);
    margin: 6% 0 0;
  }
  .kv-illust {
    width: 26%;
    right: 12%;
    bottom: 4%;
  }
  .kv-catch {
    top: auto;
    bottom: 30%;
    left: 13%;
    width: 40%;
  }
  .kv-movie video {
    width: 100%;
    transform: scale(1.1);
    /* transform: none; */
  }
  .kv-bg-line {
    transform: translateY(1px);
  }
  .kv-bg-line picture {
    display: block;
    height: 100%;
  }
  /* top-detaile */
  .top-detaile .inner {
    max-width: 84%;
    margin-left: auto;
    margin-right: auto;
    padding: 6% 0;
  }
  .pc-flex {
    display: flex;
  }
  .pc-flex .top-detaile-pic {
    margin-left: auto;
    margin-right: auto;
    width: 34%;
  }
  .pc-flex .pc-flex-box {
    position: relative;
    width: 50%;
  }
  .pc-flex02 .pc-flex-box::after {
    content: "";
    display: block;
    background: url("../images/pc-detaile-illust.png") no-repeat left bottom / 100% auto;
    width: 40%;
    height: 40%;
    margin-left: 10%;
    margin-top: 4%;
  }
  .top-detaile .title,
  .top-detaile .msg {
    text-align: left;
  }
  .top-detaile .title {
    margin-bottom: 1rem;
  }
  .top-detaile .msg {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
  }
  .top-detaile .sisetsu-btn {
    width: 40%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 1rem;
  }
  .top-detaile .rec-btn {
    width: 50%;
    margin-left: 0;
    max-width: 300px;
  }
  .pc-flex02 {
    justify-content: flex-end;
    flex-direction: row-reverse;
    margin-top: 6%;
  }
  .pc-flex02 .pc-flex-box,
  .pc-flex02 .top-detaile-pic02 {
    width: 34%;
  }
  .pc-flex02 .top-detaile-pic02 {
    margin-left: 0;
    margin-right: 0;
  }
  .pc-flex02 .pc-flex-box {
    margin-left: 10%;
    margin-right: 4%;
  }
  .three-list h3 {
    max-width: 400px;
  }
  .three-list .pc-flex {
    justify-content: space-between;
    margin: 3rem auto;
    width: 80%;
  }
  .three-list .pc-flex dl {
    width: 32%;
  }
  .three-list .about-btn {
    max-width: 260px;
  }
  .h2-icon {
    max-width: 365px;
    width: 40%;
    margin-left: auto;
    margin-right: auto;
  }
  .dots {
    max-width: 200px;
  }
  .top-reason h2::before {
    left: -50px;
  }
  .top-reason h2::after {
    right: -50px;
  }
  .reason-lists {
    margin-top: 8rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .reason-lists li {
    width: 30%;
  }
  .top-reason .inner {
    max-width: 84%;
    margin-left: auto;
    margin-right: auto;
  }
  .reason-lists li.no4,
  .reason-lists li.no5 {
    width: 47%;
  }
  .reason-lists li.no4 {
    padding-left: 17%;
  }
  .reason-lists li.no5 {
    padding-right: 17%;
  }
  .reason-btn,
  .flow-btn,
  .lunch-btn,
  .facility-btn,
  .guide-btn,
  .rec-btn {
    margin: 0 auto;
    max-width: 260px;
  }
  .top-flow .movie-area {
    position: relative;
    text-align: center;
  }
  .top-flow .movie-area video {
    border-radius: 20px;
    overflow: hidden;
    width: 50%;
  }
  .movie-side {
    position: absolute;
    width: 20%;
  }
  .movie-side:first-of-type {
    left: 0;
    top: 0;
  }
  .movie-side:last-of-type {
    right: 0;
    bottom: 0;
  }
  .top-lunch .inner {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }
  .top-lunch .inner::after {
    content: "";
    display: block;
    background: url("../images/sp-lunch-illust.png") no-repeat right top / 324px 153px;
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 18%;
  }
  .top-lunch .lunch-pack {
    display: flex;
  }
  .top-lunch .lunch-pack .first {
    width: 30%;
  }
  .top-lunch .flex {
    width: 63%;
  }
  .facility-slide .slide,
  .important-slide .slide {
    width: 240px;
  }
  .top-guide .inner {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .top-guide .pc-flex .pic {
    width: 46%;
  }
  .top-guide .pc-flex .pc-flex-pack {
    padding-left: 4%;
    width: 46%;
  }
  .top-guide .h2-icon,
  .top-rec .h2-icon {
    width: 100%;
  }
  .top-guide .pc-flex-pack .msg {
    text-align: left;
  }
  .top-guide .guide-btn {
    margin-left: 0;
  }
  .top-guide .illust {
    max-width: 340px;
  }
  .top-insta {
    margin-bottom: 0;
  }
  .top-insta .insta-pack .insta-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 80%;
    margin: 0 auto;
    padding: 10% 6% 0;
  }
  .top-insta .insta-pack .insta-box {
    width: 31%;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.16);
    padding: 2% 1%;
  }
  .top-insta .insta-pack .insta-box a:hover {
    opacity: 0.8;
  }
  .top-access .inner {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .top-access .pc-flex {
    justify-content: space-between;
  }
  .top-access .pc-flex .sub-map {
    justify-content: space-between;
    width: 67%;
  }
  .top-access .pc-flex .msg {
    width: 31%;
  }
  .top-access .sub-map .pic {
    width: 48%;
  }
  .top-rec .inner {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .top-rec .pc-flex-pack,
  .top-rec .pc-flex .pic {
    width: 47%;
  }
  .top-rec .pc-flex .pic {
    padding: 0 3%;
  }
  .top-rec .msg {
    width: 100%;
  }
  footer .pc-flex {
    align-items: baseline;
    justify-content: space-between;
    max-width: 450px;
    margin: 0 auto;
  }
  footer .msg {
    font-size: 2.4rem;
  }
  footer .illust {
    width: 30%;
  }
  footer .end-link {
    gap: 2%;
    justify-content: center;
  }
  footer .end-link p {
    font-size: 1.4rem;
  }
  /* 下層 */
  .second .kv .pic {
    max-height: 70vh;
    overflow: hidden;
  }
  .second-h1 {
    font-size: 4rem;
  }
  .second .movie-area {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
  }
  .second-wrap {
    padding-top: 5%;
  }
  .second .facility-detaile .inner {
    padding: 5% 0;
    max-width: 900px;
    margin: 0 auto;
  }
  .facility-detaile .detaile-lists li {
    width: 30%;
  }
  .facility-detaile .msg {
    margin-bottom: 4rem;
  }
  .important-area .h2-icon {
    max-width: 500px;
  }
  .important-area .msg {
    margin-top: 4rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 760px;
  }
  .important-pics {
    max-width: 900px;
    margin: 0 auto 2%;
    justify-content: space-between;
  }
  .important-pics li {
    width: 30%;
  }
  .important-area .illust {
    width: 50%;
  }
  .important-area,
  .lunch-area {
    position: relative;
  }
  .important-area::after,
  .lunch-area::after {
    content: "";
    background: url("../images/sp-reason-bg2.png") no-repeat center bottom / cover;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 46px;
  }
  .daihyou-area .inner {
    padding: 5% 0;
    max-width: 960px;
    margin: 0 auto;
  }
  .daihyou-area .pc-flex {
    justify-content: space-between;
  }
  .daihyou-area .pc-flex .pc-flex-box {
    width: 56%;
  }
  .daihyou-area .pc-flex .pc {
    width: 40%;
  }
  .daihyou-area .pic {
    width: 90%;
    margin: 0;
  }
  .daihyou-area .msg {
    margin-top: 3rem;
    width: 100%;
  }
  .daihyou-area .msg .txt {
    display: block;
    text-align: left;
  }
  footer .inner {
    transform: translateY(-6%);
  }
  .second .flow-area .inner {
    padding: 5% 0;
    max-width: 1100px;
    margin: 0 auto;
  }
  .second .flow-area .one-day-flow-lists {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .second .flow-area .one-day-flow-lists li {
    width: 30%;
  }
  .second .lunch-area .msg {
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
  }
  .second .lunch-area .pc-flex {
    width: 80%;
    max-width: 800px;
    margin: 4% auto;
  }
  .second .lunch-area .illust {
    width: 40%;
  }
  .second .lunch-area .pic {
    width: 50%;
  }
  .event-area .inner {
    padding: 5% 0;
    max-width: 1000px;
    margin: 0 auto;
  }
  .event-area .illust {
    width: 22%;
  }
  .event-area .event-lists li {
    width: 22%;
  }
  .second-facility .table-area .p-4 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 900px;
    padding: 5% 0;
    margin: 0 auto;
  }
  .second-facility .table-area .p-4 section {
    width: 48%;
  }
  .faq-area .inner,
  .start-flow-area .inner {
    padding: 5% 0;
    max-width: 900px;
    margin: 0 auto;
  }
  .faq-area .faq-lists {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .faq-area .faq-lists dl {
    width: 48%;
  }
  .start-flow-area .flow-lists {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .start-flow-area .flow-lists li {
    width: 20%;
    display: block;
  }
  .start-flow-area .flow-lists .pic {
    width: 90%;
    margin-bottom: 2rem;
  }
  .start-flow-area .flow-lists .flow-txt {
    width: 100%;
  }
  .start-flow-area .flow-lists .flow-txt h2 {
    text-align: center;
  }
  .start-flow-area .flow-lists li:not(:last-of-type)::after {
    left: auto;
    bottom: auto;
    top: 50%;
    right: -28%;
    transform: translateY(-50%) rotate(-90deg);
  }
  .second-company .table-area,
  .second-company .top-access .inner,
  .second-company .detaile-area .inner {
    padding: 5% 0;
    max-width: 900px;
    margin: 0 auto;
  }
  .second-company .table-area .p-4 {
    padding: 0;
  }
  .detaile-area .pic {
    width: 30%;
  }
  /* PDFダウンロードリンク */
  footer .end-link {
    width: 60%;
    margin: 0 auto;
    justify-content: center;
    gap: 0;
  }
  footer .end-link p {
    width: 30%;
    text-align: center;
  }
  footer .end-link p:first-of-type {
    text-align: right;
  }
  .foot-download-lists {
    width: 40%;
  }
  .foot-download-lists summary {
    font-size: 1.4rem;
    cursor: pointer;
  }
  .foot-download-lists ul {
    margin-top: 0.8rem;
  }
  .foot-download-lists li {
    font-size: 1.4rem;
  }
  .foot-download-lists li::before {
    content: "▶︎";
    display: inline-block;
  }
  .foot-download-lists li a {
    display: inline-block;
    padding-left: 0.6em;
    text-decoration: underline;
  }
  .foot-download-lists li:not(:last-of-type) {
    padding-bottom: 0.8rem;
  }
}



