@charset "UTF-8";

:root {
  --color-text: #333;
  --color-muted: #666;
  --color-border: #DDDDDD;
  --color-accent: #003E7F; /* 青 */
  --color-bg-q: #F0F0F0;
  --color-bg-a: #003E7F;

  --font-base: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

#guide .plan .otherService_wrap {
  flex-wrap: wrap;
}

@keyframes move-forward-and-reset-back {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  30% {
    opacity: 1;
    transform: translateX(-200%); /* ← 左へ流れる */
  }
  31% {
    opacity: 0;
    transform: translateX(200%);  /* ← 右から出てくる */
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/*-------------------------------------------------------------------
inner
/*-------------------------------------------------------------------*/
.inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 749px) {
  .inner {
    max-width: 100vw;
  }
}


/*-------------------------------------------------------------------
パンくずリスト
/*-------------------------------------------------------------------*/
.crumbs ol {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 749px) {
  .crumbs ol {
    gap: 4.8vw;
  }
}
.crumbs ol li {
  color: #fff;
  list-style: none;
  font-size: 0.8125rem;
  font-weight: 400;
}
@media screen and (max-width: 749px) {
  .crumbs ol li {
    font-size: 0.6875rem;
  }
}
.crumbs ol li + li {
  position: relative;
}
.crumbs ol li + li::before {
  position: absolute;
  content: "・";
  top: 50%;
  transform: translateY(-50%);
  left: -14px;
}
@media screen and (max-width: 749px) {
  .crumbs ol li + li::before {
    left: -3.2vw;
  }
}
.crumbs ol li a {
  text-decoration: none;
  color: #fff;
}

/*-------------------------------------------------------------------
パンくずリスト_下層
/*-------------------------------------------------------------------*/
.crumbs_lower {
  margin: 0 40px;
}
@media screen and (max-width: 749px) {
  .crumbs_lower {
    margin: 0 6.4vw;
  }
}
.crumbs_lower ol {
  display: flex;
}
@media screen and (max-width: 749px) {
  .crumbs_lower ol {
    flex-wrap: wrap;
  }
}
.crumbs_lower li {
  list-style: none;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  color: #333;
}
@media screen and (max-width: 749px) {
  .crumbs_lower li {
    font-size: 0.6875rem;
    flex-shrink: 0;
  }
}
.crumbs_lower li:not(:last-child):after {
  content: "・";
  padding: 0 4px;
  line-height: 1;
}
@media screen and (max-width: 749px) {
  .crumbs_lower li:not(:last-child):after {
    padding: 0;
  }
}
.crumbs_lower a {
  text-decoration: none;
  color: #003E7F;
}


/*-------------------------------------------------------------------
メインビジュアル_下層
/*-------------------------------------------------------------------*/
.mainvisual {
  background-image: url(../img/guide/top/mv_pc.webp);
  background-size: cover;
  background-position: center;
  padding: 24px 40px 40px;
  /* margin-top: 129px; */
}
@media screen and (max-width: 749px) {
  .mainvisual {
    background-image: url(../img/guide/top/mv_sp.webp);
    background-position: center bottom;
    width: 100vw;
    padding: 4.2666666667vw 6.4vw 4.2666666667vw;
    /* margin-top: 19.4666666667vw; */
  }
}
.mainvisual .page_ttl {
  color: #fff;
  padding-top: 283px;
}
@media screen and (max-width: 749px) {
  .mainvisual .page_ttl {
    padding-top: 22.9333333333vw;
  }
}
.mainvisual .page_ttl .ttl_en {
  font-size: 0.875rem;
  padding-bottom: 9px;
}
@media screen and (max-width: 749px) {
  .mainvisual .page_ttl .ttl_en {
    padding-bottom: 2.4vw;
  }
}
.mainvisual .page_ttl h2 {
  font-size: 2.5rem;
  font-family: serif;
}
@media screen and (max-width: 749px) {
  .mainvisual .page_ttl h2 {
    font-size: 1.75rem;
  }
}

/*-------------------------------------------------------------------
メインビジュアル_下層
/*-------------------------------------------------------------------*/
.mainvisual_lower {
  /* margin-top: 153px; */
}
@media screen and (max-width: 749px) {
  .mainvisual_lower {
    /* margin-top: 89px; */
  }
}
.mainvisual_lower .page_ttl {
  padding: 120px 4vw 126px;
}
@media screen and (max-width: 749px) {
  .mainvisual_lower .page_ttl {
    padding: 13.3333333333vw 6.4vw 13.3333333333vw;
  }
}
.mainvisual_lower .en {
  font-size: 0.875rem;
  margin-bottom: 14px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 749px) {
  .mainvisual_lower .en {
    margin-bottom: 3.2vw;
  }
}
.mainvisual_lower h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 400;
}
@media screen and (max-width: 749px) {
  .mainvisual_lower h2 {
    font-size: 1.75rem;
    line-height: 1.5;
  }
}

/*  ========================
  *********  メインビジュアル下  *********
=============================================  */

#guide .lower_intro {
  padding: 60px 4vw;
}
@media screen and (max-width: 749px) {
  #guide .lower_intro {
    padding: 6.4vw;
  }
}
#guide .lower_intro .txt {
  font-size: 1rem;
  line-height: 1.8;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

/*  ========================
  *********  guide low  *********
=============================================  */
.mainvisual.guide_low {
  background: none;
  height: auto;
}

.mainvisual.guide_low .page_ttl .ttl_en {
  color: #333333;
}
.mainvisual.guide_low .page_ttl {
  padding-top: 125px;
  color: #333333;
}
.mainvisual.guide_low .page_ttl h2 {
  font-weight: 500;
}

.l_und_contents {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 80px;
  margin: 0 auto 80px;
  padding: 0 65px;
}

.l_und_contentsMain {
  min-width: 0;
  font-size: 18px;
}

@media screen and (max-width: 749px) {
  .l_und_contents {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 16px 60px;
  }
  .l_und_contentsMain {
    order: 1;
  }
}

/* --------------- サイドナビ --------------- */

.nav-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav-list__item {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--color-text);
  text-decoration: none;
  width: 100%;
}
.sidebar_top {
  justify-content: start;
}

.nav-list__item--active .ico {
  background-color: var(--color-accent);
  fill: #fff;
  margin-left: auto;
}

.ico.forward.back {
  transform: rotate(180deg);
}
.back:hover .ico.forward.back svg {
    -webkit-animation: move-forward-and-reset-back .3s cubic-bezier(0,.55,.45,1) forwards;
    animation: move-forward-and-reset-back .3s cubic-bezier(0,.55,.45,1) forwards;
    fill: var(--color-white)
}


@media screen and (max-width: 749px) { 
  .l_und_contentsSide {
    border-right: none;
    padding-right: 0;
    padding-bottom: 16px;
    background: #F0F0F0;
    box-sizing: border-box;
    position: relative;
    order: 2;
    top: 0;
  }
  .nav-list {
    gap: 1px;
    border-radius: 0;
  }
  .nav-list__item {
    width: calc(100% - 24px);
    background: #FFF;
    border-radius: 0;
    padding: 24px;
  }
}

/* --------------- アコーディオン（FAQ） --------------- */

.accordion-list {
  border-top: 1px solid var(--color-border);
  margin-top: 120px;
}

/* アイテム全体 */
.accordion-item {
  border-bottom: 1px solid var(--color-border);
}

/* 質問ヘッダー部分 */
.accordion-item__head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 40px 8px 40px 0;
  background: none;
  border: 0;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

/* Q ラベル */
.accordion-item__label {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 4px;
  background-color: var(--color-bg-q);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-muted);
}

/* 質問テキスト */
.accordion-item__head span:not(.accordion-item__label):not(.accordion-item__toggle),
.accordion-item__head-text {
  flex: 1 1 auto;
  font-size: 15px;
}

/* プラス（トグル） */
.accordion-item__toggle {
  flex: 0 0 auto;
  font-size: 18px;
  color: var(--color-accent);
  margin-left: auto;
  position: relative;
}

.accordion-item__toggle:after,.accordion-item__toggle:before {
    background-color: var(--color-primary);
    bottom: 0;
    content: "";
    height: 1px;
    left: auto;
    margin-bottom: auto;
    margin-top: auto;
    position: absolute;
    right: 16px;
    top: 0;
    -webkit-transition: rotate .3s ease-out;
    transition: rotate .3s ease-out;
    width: 11px;
}

.accordion-item__toggle:after {
    rotate: 90deg;
}

.accordion-item.is-open .accordion-item__toggle:after {
    rotate: 0deg;
}

/* 回答エリア */
.accordion-item__body {
  display: none;
  padding: 0 0 40px 0;
  line-height: 1.8;
}

/* 回答の中身（Aラベル＋本文） */
.accordion-item__body-inner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.accordion-item__a-label {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 4px;
  background-color: var(--color-bg-a);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.accordion-item__body-content .link {
  color: var(--color-bg-a);
  text-decoration: underline;
}


/* --------------- スマホ対応 --------------- */

@media screen and (max-width: 749px) {
  .l_und_contents {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 24px 60px;
  }

  .l_und_contentsSide {
    border-right: none;
    padding-right: 0;
    padding-bottom: 16px;
  }

  #point-family .lowerpage_nav {
    border-top: none;
    padding-top: 6.4vw;
  }

  .accordion-list {
    margin-top: 48px;
  }
  .accordion-item__head {
    padding: 24px 8px 24px 0;
    gap: 12px;
  }
}

/*  ========================
  *********  top  *********
=============================================  */

/*-------------------------------------------------------------------
コンテンツ内のタイトル
/*-------------------------------------------------------------------*/
.contents_ttlWrap .ttl_en {
  color: #003e7f;
  font-size: 0.625rem;
  letter-spacing: 0.05em;
  font-family: "Marcellus", serif;
  margin-bottom: 8px;
}
@media screen and (max-width: 749px) {
  .contents_ttlWrap .ttl_en {
    margin-bottom: 2.1333333333vw;
  }
}
.contents_ttlWrap h3 {
  font-size: 1.25rem;
  font-weight: 400;
}
@media screen and (max-width: 749px) {
  .contents_ttlWrap h3 {
    font-size: 1.125rem;
  }
}


/*-------------------------------------------------------------------
そのほかのサービス　ケータリングサービスなど
/*-------------------------------------------------------------------*/
.otherService_wrap {
  padding-top: 60px;
  padding-bottom: 120px;
  display: flex;
  gap: 48px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 749px) {
  .otherService_wrap {
    padding-top: 6.4vw;
    flex-direction: column;
    gap: 8.5333333333vw;
  }
}

#guide .plan {
  padding: 0 4vw 60px;
}
@media screen and (max-width: 749px) {
  #guide .plan {
    padding-bottom: 6.4vw;
    padding: 4.8vw 6.4vw 6.4vw;
  }
}
#guide .plan .recommendPlan_wrap {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media screen and (max-width: 749px) {
  #guide .plan .recommendPlan_wrap {
    gap: 8.5333333333vw;
  }
}
#guide .plan .recommendPlan_wrap .recommendPlan {
  display: flex;
  gap: 48px;
}
@media screen and (max-width: 749px) {
  #guide .plan .recommendPlan_wrap .recommendPlan {
    flex-direction: column;
    gap: 6.4vw;
  }
}
#guide .plan .recommendPlan_wrap .recommendPlan .plan_img {
  max-width: 472px;
  width: 100%;
}
@media screen and (max-width: 749px) {
  #guide .plan .recommendPlan_wrap .recommendPlan .plan_img {
    max-width: 87.2vw;
  }
}
#guide .plan .recommendPlan_wrap .recommendPlan .planTxt_wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 680px;
  width: 100%;
}
@media screen and (max-width: 749px) {
  #guide .plan .recommendPlan_wrap .recommendPlan .planTxt_wrap {
    gap: 6.4vw;
    max-width: 100%;
  }
}
#guide .plan .recommendPlan_wrap .recommendPlan .planTxt_wrap .txt {
  font-size: 1rem;
  line-height: 1.8;
}
#guide .plan .basic-main-btn {
  margin-top: 48px;
  padding-bottom: 120px;
  border-bottom: 1px solid #ddd;
  display: flex;
  flex-direction: row-reverse;
}
@media screen and (max-width: 749px) {
  #guide .plan .basic-main-btn {
    margin-top: 8.5333333333vw;
    padding-bottom: 12.8vw;
  }
}
#guide .plan .basic-main-btn .cmn-btn01 {
  gap: 16px;
}
#guide .plan .recommendInfo_wrap {
  padding-top: 120px;
  padding-bottom: 60px;
}
@media screen and (max-width: 749px) {
  #guide .plan .recommendInfo_wrap {
    padding-top: 12.8vw;
    padding-bottom: 6.4vw;
  }
}
#guide .plan .recommendInfo_wrap .recommendInfo_ttl {
  font-size: 1.25rem;
  font-weight: 400;
  padding-bottom: 40px;
}
@media screen and (max-width: 749px) {
  #guide .plan .recommendInfo_wrap .recommendInfo_ttl {
    font-size: 1.125rem;
    padding-bottom: 8.5333333333vw;
  }
}
#guide .plan .recommendInfo_wrap .recommendInfo_list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 4%;
}
@media screen and (max-width: 749px) {
  #guide .plan .recommendInfo_wrap .recommendInfo_list {
    gap: 6.4vw 3.6666666667vw;
  }
}
#guide .plan .recommendInfo_wrap .recommendInfo_list .recommendInfo {
  max-width: 264px;
  max-width: 22%;
  width: 100%;
}
@media screen and (max-width: 749px) {
  #guide .plan .recommendInfo_wrap .recommendInfo_list .recommendInfo {
    max-width: 40.2666666667vw;
  }
}
#guide .plan .recommendInfo_wrap .recommendInfo_list .recommendInfo .contents_img {
  overflow: hidden;
  margin-bottom: 16px;
}
@media screen and (max-width: 749px) {
  #guide .plan .recommendInfo_wrap .recommendInfo_list .recommendInfo .contents_img {
    margin-bottom: 4.2666666667vw;
  }
}
#guide .plan .recommendInfo_wrap .recommendInfo_list .recommendInfo p {
  font-size: 1rem;
  line-height: 1.5;
}
@media screen and (max-width: 749px) {
  #guide .plan .recommendInfo_wrap .recommendInfo_list .recommendInfo p {
    font-size: 1rem;
  }
}
#guide .plan .otherService_wrap {
  padding-top: 60px;
  display: flex;
  gap: 48px;
}
@media screen and (max-width: 1320px) {
  #guide .plan .otherService_wrap {
    gap: 4vw;
  }
}
@media screen and (max-width: 749px) {
  #guide .plan .otherService_wrap {
    padding-top: 0;
    flex-direction: column;
    gap: 8.5333333333vw;
  }
}
#guide .plan .otherService_wrap .otherService {
  background-color: #F0F0F0;
  border-radius: 3px;
  max-width: 576px;
  width: 100%;
}
@media screen and (max-width: 1320px) {
  #guide .plan .otherService_wrap .otherService {
    max-width: 43vw;
  }
}
@media screen and (max-width: 749px) {
  #guide .plan .otherService_wrap .otherService {
    max-width: 87.2vw;
  }
}
#guide .plan .otherService_wrap .otherService > a {
  display: flex;
  gap: 24px;
  padding: 24px;
}
@media screen and (max-width: 749px) {
  #guide .plan .otherService_wrap .otherService > a {
    gap: 4.2666666667vw;
    padding: 6.4vw;
  }
}
#guide .plan .otherService_wrap .otherService .service_img {
  overflow: hidden;
  max-width: 180px;
  width: 100%;
}
@media screen and (max-width: 749px) {
  #guide .plan .otherService_wrap .otherService .service_img {
    max-width: 18.6666666667vw;
  }
}
#guide .plan .otherService_wrap .otherService .service_txtWrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 749px) {
  #guide .plan .otherService_wrap .otherService .service_txtWrap {
    gap: 4.2666666667vw;
  }
}

/*-------------------------------------------------------------------
コンテンツ ホバー時のボタンのアニメーション
/*-------------------------------------------------------------------*/
.anm-btn .ico {
  width: 40px;
  margin: 0 0 0 auto;
  padding: 0px 13px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 749px) {
  .anm-btn .ico {
    width: 10.6666666667vw;
    padding: 0.2666666667vw 3.4666666667vw;
  }
}
.anm-btn .ico svg {
  width: 12px;
}
@media screen and (max-width: 749px) {
  .anm-btn .ico svg {
    width: 3.2vw;
  }
}
.anm-btn.cmn-btn {
  padding: 0;
}

/*-------------------------------------------------------------------
宿泊のおすすめ情報　※ページごとにテキスト変更
/*-------------------------------------------------------------------*/
.recommendInfo_wrap {
  padding-top: 120px;
  padding-bottom: 60px;
}
@media screen and (max-width: 749px) {
  .recommendInfo_wrap {
    padding-top: 12.8vw;
    padding-bottom: 6.4vw;
  }
}
.recommendInfo_wrap .recommendInfo_ttl {
  font-size: 1.25rem;
  font-weight: 400;
  padding-bottom: 40px;
}
@media screen and (max-width: 749px) {
  .recommendInfo_wrap .recommendInfo_ttl {
    font-size: 1.125rem;
    padding-bottom: 8.5333333333vw;
  }
}
.recommendInfo_wrap .recommendInfo_list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 4%;
}
@media screen and (max-width: 749px) {
  .recommendInfo_wrap .recommendInfo_list {
    gap: 6.4vw 6.6666666667vw;
  }
}
.recommendInfo_wrap .recommendInfo_list .recommendInfo {
  max-width: 264px;
  max-width: 22%;
  width: 100%;
}
@media screen and (max-width: 749px) {
  .recommendInfo_wrap .recommendInfo_list .recommendInfo {
    max-width: 40.2666666667vw;
  }
}
.recommendInfo_wrap .recommendInfo_list .recommendInfo .contents_img {
  overflow: hidden;
  margin-bottom: 16px;
}
@media screen and (max-width: 749px) {
  .recommendInfo_wrap .recommendInfo_list .recommendInfo .contents_img {
    margin-bottom: 4.2666666667vw;
  }
}
.recommendInfo_wrap .recommendInfo_list .recommendInfo p {
  font-size: 1rem;
  line-height: 1.5;
}
@media screen and (max-width: 749px) {
  .recommendInfo_wrap .recommendInfo_list .recommendInfo p {
    font-size: 1rem;
  }
  .recommendInfo_wrap .recommendInfo_list .recommendInfo p:nth-last-child(-n+2) {
    font-size: 0.875rem;
  }
}