@charset "UTF-8";
/* CSS Document */

body {
  font-family: -apple-system, "Helvetica Neue", "Hiragino Kaku Gothic ProN", "游ゴシック", "メイリオ", meiryo, sans-serif;
  font-feature-settings: 'palt' 1;
  color: var(--color-text-base);
  background-color: var(--color-bg-base);
  letter-spacing: 0.1em;
  line-height: 1.5;
}

body.is-menu-open {
  overflow: hidden;
  height: 100vh;
}

:root {
  /* 背景 */
  --color-bg-base: #fff;
  --color-bg-section: #3A5674;
  --color-bg-concerns: #D9D9D9;
  --color-bg-faq: #F8F8F8;


  /* テキスト */
  --color-text-base: #3A5674;
  --color-text-sub: #AFC9E9;
  --color-text-white: #fff;
  --color-text-concerns: #000;

  /* 線 */
  --color-line-item: #AFC9E9;

  /* フォント */
  /* --font-base: "Noto Sans JP", sans-serif; */
  --font-ja: "Noto Sans JP", sans-serif;
  /* --font-en: "Montserrat", sans-serif; */
}

html {
  scroll-behavior: smooth; /* スムーススクロール */
  scroll-margin-top: 60px;
}

/* ヘッダーは常に画面上部に固定 */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

@media screen and (min-width: 320px) {
  /* スマホ用レイアウト 320px以上の範囲に収めるデザインはこの中に記述 */

  .tb-nav,
  .tb-only,
  .pc-only,
  .site-nav--pc,
  .pc-big-only {
    display: none;
  }

  /*==============================================================
    　　ヘッダー
  ==============================================================*/
  .site-nav--sp {
    position: relative;
    z-index: 100;
  }

  .header {
    width: 100vw;
    height: 70px;
    background-color: var(--color-bg-base);
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 90;
    padding: 12px 20px;
  }

  /* ロゴ */
  .site-header__brand a {
    display: inline-block;
    width: 100%;
    display: grid;
    grid-template-columns: auto auto;
    column-gap: 8px;
    align-items: center;
  }

  .site-header__brand-img {
    width: auto;
    height: 42px;
    margin-top: 2px;
  }

  .site-header__brand-text {
    font-weight: 700;
    line-height: 1.25;
    margin-top: -5px;
  }
  .site-header__brand-text .is-sub {
    font-size: 7px;
  }
  .site-header__brand-text .is-main {
    font-size: 18px;
    letter-spacing: 0.16em;
  }

  /* ハンバーガー */
  .hamburger {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 34px;
    height: 34px;
    outline: none;
    padding: 0;
    appearance: none;
    cursor: pointer;
    flex-shrink: 0;
    position: fixed;
    top: 18px;
    right: 27px;
    z-index: 99;
    transition: all .5s;
  }

  .hamburger span {
    display: block;
    width: 32px;
    height: 2px;
    background: var(--color-bg-section);
    position: relative;
    opacity: 1;
    transition: all .5s;
  }

  .hamburger span::after {
    content: "";
    display: block;
    width: 32px;
    height: 2px;
    background: var(--color-bg-section);
    position: absolute;
    top: 9px;
    right: 0;
    transition: .3s;
  }

  .hamburger span::before {
    content: "";
    display: block;
    width: 32px;
    height: 2px;
    background: var(--color-bg-section);
    position: absolute;
    top: -9px;
    right: 0;
    transition: .3s;
  }

  .hamburger.active span::after {
    width: 32px;
    height: 2px;
    top: 1px;
    right: 0px;
    transform: rotate(45deg);
  }

  .hamburger.active span {
    background-color: #fff;
  }

  .hamburger.active span::before {
    width: 32px;
    height: 2px;
    top: 1px;
    right: 0px;
    transform: rotate(-45deg);
  }

  /* メニューのデザイン*/
  .container {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 88;
    background: rgba(0, 0, 0, 0.4);
    background-color: rgba(255, 255, 255, 0.95);
    transition: .5s;
    opacity: 0;
    overflow: hidden;
    overflow-y: scroll;
    pointer-events: none;
    padding-bottom: env(safe-area-inset-bottom);
    visibility: hidden;
  }

  .container.active{
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .container .nav-list {
    margin: 70px 0 94px;
    padding: 0;
    border-top: solid 1px var(--color-line-item);
  }

  .site-nav--sp .nav-list {
    text-align: center;
  }

  .site-nav--sp .nav-list a {
    display: inline-block;
    width: 100%;
    font-size: 13px;
    font-weight: 600;
    padding: 20px 15px;
    border-bottom: solid 1px var(--color-line-item);
  }

  /*==============　電話　===============*/
  .site-header__tel {
    display: inline-block;
    position: fixed;
    top: 14px;
    right: 80px;
    z-index: 90;
  }

  .site-header__tel .tel-box {
    background-color: var(--color-bg-section);
    border: solid 1px var(--color-bg-section);
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
  }

  .site-footer__tel-icon {
    width: auto !important;
    height: 19px !important;
  }


  /*==============================================================
    　　セクション共通
  ==============================================================*/
  .sec {
    padding: 30px 20px;
  }

  .section-title {
    text-align: center;
    margin-bottom: 30px;
  }

  .section-title__ja {
    font-size: 26px;
    font-weight: 600;
    font-family: var(--font-ja);
    /* letter-spacing: 0.14em; */
    letter-spacing: 0.25em;
    line-height: 1.6;
    white-space: nowrap;
  }

  .section-title__en {
    font-size: 13px;
    color: var(--color-text-sub);
    letter-spacing: 0.05em;
    line-height: 1.5;
  }

  /*==============================================================
    　　LINE追従
  ==============================================================*/
  .line-btn {
    position: fixed;
    right: 15px;
    bottom: 20px;
    z-index: 90;
  }

  .line-btn img {
    width: 80px;
    height: 80px;
  }

  /*==============================================================
    　　TOP以外__共通
  ==============================================================*/
  .block-title {
    /* margin-bottom: 40px; */
    margin-bottom: 30px;
  }

  .block-title span {
    font-family: var(--font-ja);
    display: inline-block;
    padding: 0 20px 20px;
    border-bottom: 1px solid var(--color-text-sub);
    width: 100%;
    font-size: 26px;
    letter-spacing: 0.25em;
    line-height: 1.5;
    font-weight: 600;
  }

  /*==============================================================
    　　ページトップ
  ==============================================================*/
  .page-top {
    position: relative;
    margin-top: 70px;
    /* margin-bottom: 5px; */
    margin-bottom: 40px;
  }

  .page-top__image {
    width: 100%;
    height: 300px;
    overflow: hidden;
  }

  .page-top__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .page-title {
    position: absolute;
    bottom: -30px;
    /* bottom: -40px; */
    left: 20px;
    padding: 40px 0 60px 30px;
    /* padding: 40px 0 70px 30px; */
    /* border-left: 1px solid var(--color-line-item); */
    border-left: 1px solid #a4c1e4;
  }

  .page-title__ja {
    font-family: var(--font-ja);
    font-size: 26px;
    letter-spacing: 0.3em;
    text-shadow: 0 0 5px #fff;
    font-weight: 550;
  }

  .page-title__en {
    font-size: 13px;
    font-weight: 400;
    text-shadow:
    0 0 5px #fff,
    0 0 10px #fff,
    0 0 10px #fff,
    0 0 15px #fff;
    /* color: var(--color-text-sub); */
    margin-top: 2px;
    /* opacity: 0.8; */
    color: #96b8e1;
  }


  /*==============　パンくずリスト　===============*/
  .breadcrumbs {
    /* color: var(--color-text-sub); */
    font-size: 12px;
    /* margin-left: 36px; */
    margin-left: 5px;
    margin-bottom: 70px;
    font-weight: 550;
  }

  .breadcrumbs ol {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0 auto 20px;
    flex-wrap: wrap;
    padding: 10px 16px;
    line-height: 1.46;
  }

  .breadcrumbs .item {
    margin-right: 10px;
  }

  .breadcrumbs .item span:before {
    content: "＞";
    display: inline-block;
    margin: 0 8px 0 4px;
    color: var(--color-line-item);
  }

  .breadcrumb a {
    transition: .3s;
  }

  /*==============================================================
    　　空き状況
  ==============================================================*/
  .availability-calendar {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
  }
  .availability-calendar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .availability .notes {
    font-size: 13px;
    line-height: 1.6;
    margin-top: 16px;
    letter-spacing: 0.16em;
    margin-bottom: 8px;
  }

  .availability .notes span {
    position: relative;
    top: -1.5px;
    margin-right: 2px;
  }

  /*==============================================================
    　　フッター
  ==============================================================*/
  #site-footer {
    background-color: var(--color-bg-section);
    color: var(--color-text-white);
    margin-top: 40px;
  }

  .site-footer__inner {
    padding: 60px 0 20px;
  }

  .site-footer__info {
    text-align: center;
  }

  /* ロゴ */
  .site-footer__brand {
    margin-bottom: 30px;
  }
  .site-footer__brand-img {
    width: auto;
    height: 72px;
    margin-bottom: 18px;
  }
  /* .site-footer__brand-img {
    background-color: var(--color-bg-base);
    width: auto;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 23px;
    padding: 7px;
    fill: #fff !important;
  } */
  .site-footer__brand-title {
    font-size: 22px;
    font-weight: 550;
    letter-spacing: 0.1em;
  }

  /* 住所 */
  .site-footer__address {
    font-size: 15px;
    letter-spacing: 0.16rem;
    font-weight: 550;
    margin-bottom: 40px;
  }

  /* 電話 */
  .site-footer__tel {
    padding: 0 20px 4px 0;
    margin-bottom: 40px;
    font-size: 32px;
    border-bottom: solid 1px var(--color-bg-base);
    display: grid;
    /* grid-template-columns: 50px 260px; */
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: center;
    column-gap: 12px;
    padding-left: 8px;
  }
  .site-footer__tel-icon {
    width: auto;
    height: 24px;
    margin: auto 0 auto auto;
  }
  .site-footer__tel-link {
    display: inline-block;
  }

  /* 営業日 */
  .timetabel-img {
    width: 100%;
    height: auto;
    padding: 0 20px 12px;
  }

  .closed-days {
    text-align: left;
    padding: 0 20px;
    font-size: 14px;
  }
  .closed-days__title {
    margin-right: 10px;
  }

  .timetabel-box__notes {
    font-size: 13px;
    margin-top: 10px;
    letter-spacing: 0.15rem;
    line-height: 1.6;
    padding: 0 20px;
    margin-bottom: 50px;
    text-align: left;
  }

  .site-footer__nav {
    display: grid;
    grid-template-rows: repeat(7, 1fr);
    text-align: center;
    margin: 0 20px;
    border-top: solid 1px var(--color-bg-base);
  }

  .site-footer__nav-item {
    border-bottom: solid 1px var(--color-bg-base);
    padding: 15px 0;
    font-size: 12.5px;
    font-weight: 550;
  }

  /* コピー */
  .site-footer__copy {
    text-align: center;
    font-size: 12px;
    padding-bottom: 20px;
    letter-spacing: 0.05em;
  }


}


@media screen and (min-width: 640px) {
  /* タブレット用レイアウト 640px以上の範囲に収めるデザインはこの中に記述 */

  .sp-nav,
  .sp-only,
  .tb-none {
    display: none;
  }

  .tb-only,
  .tb-nav {
    display: block;
  }

  /*==============================================================
    　　TB_ヘッダー
  ==============================================================*/
  .header {
    height: 114px;
    padding: 24px 30px;
  }

  /* ロゴ */
  .site-header__brand a {
    column-gap: 20px;
  }

  .site-header__brand-img {
    /* height: 64px; */
    height: 70px;
    margin-top: -4px;
  }

  .site-header__brand-text {
    margin-top: -4px;
  }

  .site-header__brand-text .is-sub {
    font-size: 9px;
  }
  .site-header__brand-text .is-main {
    font-size: 24px;
  }

  /* ハンバーガー */
  .hamburger {
    width: 46px;
    height: 46px;
    top: 30px;
    right: 30px;
  }

  .hamburger span {
    width: 46px;
    height: 2px;
  }

  .hamburger span::after {
    width: 46px;
    height: 2px;
    top: 11px;
  }

  .hamburger span::before {
    width: 46px;
    height: 2px;
    top: -11px;
  }

  .hamburger.active span::after {
    width: 40px;
  }

  .hamburger.active span::before {
    width: 40px;
  }

  /* メニューのデザイン*/
  .container .nav-list {
    margin: 114px 0 94px;
  }
  .site-nav--sp .nav-list a {
    font-size: 16px;
    padding: 30px 15px;
  }

  /*==============　電話　===============*/
  .site-header__tel {
    top: 22px;
    right: 100px;
  }

  .site-header__tel .tel-box {
    width: 60px;
    height: 60px;
  }

  .site-footer__tel-icon {
    height: 28px !important;
  }

  /*==============================================================
    　　TB_セクション共通
  ==============================================================*/
  .sec {
    padding: 120px 20px 30px;
  }

  .section-title {
    margin-bottom: 60px;
  }

  .section-title__ja {
    font-size: 33px;
    /* letter-spacing: 0.14em; */
    letter-spacing: 0.4em;
    padding-left: 10px;
  }

  .section-title__en {
    font-size: 16px;
    margin-top: 1px;
  }

  /*==============================================================
    　　TB_LINE追従
  ==============================================================*/
  .line-btn {
    right: 35px;
    bottom: 40px;
  }

  .line-btn img {
    width: 98px;
    height: 98px;
  }

  /*==============================================================
    　　TB_TOP以外__共通
  ==============================================================*/
  .block-title {
    display: flex;
    justify-content: center;
    /* margin-bottom: 80px; */
    margin-bottom: 60px;
  }

  .block-title span {
    font-size: 33px;
    letter-spacing: 0.45em;
    line-height: 1.7;
    width: fit-content;
    padding: 0 20px 20px 30px;
  }

  /*==============================================================
    　　TB_ページトップ
  ==============================================================*/
  .page-top {
    margin-top: 114px;
    margin-left: 56px;
    margin-bottom: 60px;
  }

  .page-top__image {
    height: 570px;
    border-radius: 160px 0 0 0;
  }

  .page-title {
    bottom: -40px;
    left: 40px;
    padding: 80px 0 120px 50px;
  }

  .page-title__ja {
    font-size: 33px;
    letter-spacing: 0.4em;
  }

  .page-title__en {
    font-size: 16px;
    text-shadow:
    0 0 5px #fff,
    0 0 10px #fff,
    0 0 15px #fff;
  }

  /*==============　パンくずリスト　===============*/
  .breadcrumbs {
    font-size: 14px;
    margin-left: 40px;
    margin-bottom: 120px;
  }

  .breadcrumbs .item span:before {
    margin: 0 14px 0 10px;
  }

  /*==============================================================
    　　TB_空き状況
  ==============================================================*/
  .availability-calendar {
    padding: 0 20px;
    aspect-ratio: 1 / 0.9;
  }

  .availability .notes {
    font-size: 15px;
    padding: 0 20px;
    margin-top: 18px;
  }

  /*==============================================================
    　　TB_フッター
  ==============================================================*/
  #site-footer {
    margin-top: 120px;
  }

  .site-footer__inner {
    padding: 44px 0 0;
  }

  /* ロゴ */
  .site-footer__brand {
    margin-bottom: 30px;
  }
  .site-footer__brand-img {
    /* height: 80px; */
    height: 88px;
    margin-top: 10px;
    margin-bottom: 18px;
  }
  .site-footer__brand-title {
    font-size: 26px;
  }

  /* 住所 */
  .site-footer__address {
    font-size: 18px;
  }

  /* 電話 */
  .site-footer__tel {
    max-width: 360px;
    margin: 0 auto 40px;
    border-bottom: solid 3px var(--color-bg-base);
    padding-bottom: 12px;
    padding-left: 14px;
  }

  /* 営業日 */
  .timetabel-box {
    max-width: 450px;
    margin: 0 auto 70px;
  }

  .timetabel-img {
    height: auto;
    padding: 0;
  }

  .closed-days {
    margin: 12px auto 0;
    padding: 0;
    font-size: 16px;
  }

  .timetabel-box__notes {
    padding: 0;
  }

  .timetabel-box__notes {
    font-size: 14px;
    margin-top: 12px;
    letter-spacing: 0.15rem;
    line-height: 1.6;
  }

  .site-footer__nav {
    grid-template-columns: repeat(7, auto);
    grid-template-rows: 1fr;
    border: none;
    max-width: 780px;
    margin: 0 auto 60px;
  }

  .site-footer__nav-item {
    border: none;
    position: relative;
  }

  .site-footer__nav-item::before {
    content: '・';
    position: absolute;
    top: 50%;
    left: -5px;
    transform: translateY(-50%);
    font-size: 16px;
    font-weight: 600;
  }

  .site-footer__nav-item.start::before {
    display: none;
  }


}


@media screen and (min-width: 1024px) {
  /* パソコン用レイアウト 1024px以上の範囲に収めるデザインはこの中に記述 */
  .site-nav--sp,
  .tb-only {
    display: none;
  }

  .tb-none,
  .pc-only,
  .site-nav--pc {
    display: block;
  }
  /*==============================================================
    　　PC_ヘッダー
  ==============================================================*/
  /* ロゴ */
  .site-header__brand-img {
    height: 72px;
    margin-top: -5px;
  }

  .site-header__brand-text {
    margin-top: -6px;
  }

  .site-nav--pc .nav-list {
    display: grid;
    grid-template-columns: repeat(7, auto);
    align-items: center;
    font-size: 14px;
    font-weight: 600;
  }

  .nav-item a {
    padding: 20px 15px;
  }

  .site-nav--pc .contact-btn {
    position: relative;
  }

  .nav-item.contact-btn a {
    background-color: var(--color-bg-section);
    color: var(--color-text-white);
    border-radius: 50px;
    padding: 16px 36px 16px 56px;
    margin: 0 6px 0 20px;
  }

  .contact-btn__tel-icon {
    position: absolute;
    top: -1px;
    left: 48px;
  }

  .nav-item.contact-btn a svg {
    transition: all 0.3s ease;
    width: auto;
    height: 17px;
    fill: #fff;
  }

  /*==============　電話　===============*/
  .header__tel-btn img {
    width: auto;
    height: 27px;
  }

  /* LINE */
  .header__tel-btn a {
    margin-right: -3px;
  }


  /*==============================================================
    　　PC_セクション共通
  ==============================================================*/
  .sec {
    max-width: 1120px;
    padding: 120px 20px 30px;
    margin: 0 auto;
  }

  .section-title__ja,
  .concerns .section-title__ja {
    font-size: 33px;
    text-align: center;
  }

  /*==============================================================
    　　PC_LINE追従
  ==============================================================*/
  .line-btn {
    display: none;
  }

  /*==============================================================
    　　PC_TOP以外__共通
  ==============================================================*/
  /* .block-title {
    margin-bottom: 100px;
  } */

  /*==============================================================
    　　PC_ページトップ
  ==============================================================*/
  /*==============　パンくずリスト　===============*/

  /*==============================================================
    　　PC_空き状況
  ==============================================================*/
  .availability-calendar {
    padding: 0;
  }

  .availability .notes {
    font-size: 16px;
    padding: 0;
    margin-bottom: 30px;
  }


  /*==============================================================
    　　PC_フッター
  ==============================================================*/
  #site-footer {
    margin-top: 140px;
  }

  .site-footer__inner {
    padding: 54px 0 0;
  }

  /* ロゴ */
  .site-footer__brand-img {
    height: 90px;
    margin-bottom: 20px;
  }

  .timetabel-box__notes {
    font-size: 13px;
    margin-top: 9px;
    line-height: 1.8;
    white-space: nowrap;
  }

  .site-footer__nav {
    max-width: 880px;
  }

  .site-footer__nav-item {
    font-size: 13px;
  }


}

@media screen and (min-width: 1400px) {
  /* PC全画面用レイアウト 1400px以上の範囲に収めるデザインはこの中に記述 */
  .pc-big-only {
    display: block;
  }
  /*==============================================================
    　　PC-big_ヘッダー
  ==============================================================*/
  /*======== アニメーション ========*/
  .site-header__brand a{
    transition: all 0.3s ease;
  }
  .site-header__brand a:hover {
    opacity: 0.65;
  }

  .nav-item a {
    position: relative;
  }
  .nav-item a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 10px;
    width: 0;
    height: 1px;
    background-color: var(--color-line-item);
    transition: all 0.3s ease;
    transform: translateX(-50%);
  }
  .nav-item a:hover::after {
    width: 90%;
  }


  /* お問い合わせボタン */
  .contact-btn a {
    transition: all 0.3s ease;
    border: solid 1.5px var(--color-bg-section);
  }
  .contact-btn a:hover {
    background-color: var(--color-bg-base);
    color: var(--color-text-base);
  }
  .contact-btn a::after {
    display: none;
  }

  .contact-btn__tel-icon {
    position: absolute;
    top: 12.5px;
    left: 30px;
  }

  .contact-btn__tel-icon svg {
    height: 19px;
  }

  /*======== アニメーション ========*/
  /* LINE */
  .header__tel-btn a {
    transition: all 0.3s ease;
  }
  .header__tel-btn a:hover {
    opacity: 0.65;
  }
  .header__tel-btn a::after {
    display: none;
  }

  /* 電話 */
  .nav-item.contact-btn:hover a svg {
    fill: var(--color-bg-section);
  }

  /*==============================================================
    　　PC-big_ページトップ
  ==============================================================*/
  .page-top {
    margin-left: 84px;
  }

  .page-top__image {
    height: 700px;
  }

  .page-title {
    bottom: -30px;
    left: 96px;
    padding: 80px 0 120px 90px;
  }


  /*==============　パンくずリスト　===============*/
  .breadcrumbs {
    margin-left: 84px;
  }

  /*======== アニメーション ========*/
  .breadcrumbs a {
    transition: all 0.3s ease;
  }

  .breadcrumbs a:hover {
    opacity: 0.65;
  }


  /*==============================================================
    　　PC-big_空き状況
  ==============================================================*/
  .availability-calendar {
    aspect-ratio: 1 / 0.8;
  }

  /*==============================================================
    　　PC-big_フッター
  ==============================================================*/
  /* ロゴ */
  .site-footer__brand-img {
    margin-bottom: 18px;
    margin-top: 0;
  }

  /*======== アニメーション ========*/
  .site-footer__tel-link,
  .site-footer__nav-item span {
    transition: all 0.3s ease;
  }

  .site-footer__tel-link:hover,
  .site-footer__nav-item:hover span {
    opacity: 0.65;
  }
}