/* PC、スマホ共通スタイル */
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  /* ここにGoogle Fontsを指定します */
  font-family: "Cantata One", "Noto Sans JP", "Noto Serif JP", "ヒラギノ明朝", serif ,sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: #4f4f4f;
  margin: 0 auto;

}

img {
  width: 100%;
}

.pc-only {
  display: block !important;
}

.sp-only {
  display: none !important;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

p {
  color: #4f4f4f;
}

.wrap{
  max-width: 1080px;
  width:100%;
  margin: 0 auto 0 auto;
}
.wrap_inner{
  padding: 0 2.5%;
}
/* fixed_margin */
.margin {
  margin-top: 90px;
}

/* フェードイン*/

.fadeIn_02 {
  display: none;
}

/* Scroll　FadeinFadein */
.fadeIn {
  opacity: 0;         /* 初期値は透明にしておく */
  transition: 1s;    /* 動くスピードを1秒に指定 */
  position: relative; /* 相対位置の設定 */
  top: 50px;          /* 事前に下に50pxずらしておく */
}

.active {
  opacity: 1;         /* 透明度を元に戻す */
  top: 0;             /* ずらしていた位置を戻すことで上に上がっているようにみえる */
}

/* 右からフェードイン */
.fadeIn__right {
  opacity: 0;         /* 初期値は透明にしておく */
  transition: 2s;    /* 動くスピードを1秒に指定 */
  position: relative; /* 相対位置の設定 */
  transform: translateX(10px);         /* 事前に下に50pxずらしておく */
}

.active__right {
  opacity: 1;         /* 透明度を元に戻す */
  transform: translateX(0);             /* ずらしていた位置を戻すことで上に上がっているようにみえる */
}

/* 左からフェードイン */
.fadeIn__left {
  opacity: 0;         /* 初期値は透明にしておく */
  transition: 1s;    /* 動くスピードを1秒に指定 */
  position: relative; /* 相対位置の設定 */
  transform: translateX(-10px);         /* 事前にずらしておく */
}

.active__left {
  opacity: 1;         /* 透明度を元に戻す */
  transform: translateX(0);             /* ずらしていた位置を戻すことで上に上がっているようにみえる */
}

/* 左から順にフェードイン */
.fadeIn__left--item {
  opacity : 0;
  transition : all 2s;
}

.active__left--item{
opacity : 1;
}

/* header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background-color: #fff;
  border-bottom: 1px solid #d6d6d6;
  width: 100%;
  height: auto;
}

.header__grid {
  display: grid;
  grid-template-columns: 220px auto 230px; /* 各要素の幅を自動調整 */
  grid-template-rows: auto; /* 行の高さは内容に合わせて自動調整 */
}

.logo-area {
  width: 100%;
  justify-content: center;
  padding: 10px 0 10px 30px;
}

/* PC非表示 */
#nav-sp,
#menu-sp {
  display: none;
}

.nav__list {
  display: flex; /* ナビゲーション項目を横並びにする */
  justify-content: right; /* ナビゲーション項目を中央揃えにする */
  align-items: center; /* 縦方向の中央揃え */
  padding: 0;
  margin: 0;
  height: 100%;
}

.nav__list > li {
  padding: 0 12px;
}

.nav__list > li > a {
  font-size: 1.4rem;
  color: #4f4f4f;
  letter-spacing: 0.15em;
}

.nav__list > li > a:hover {
  opacity: 0.6;
}

.contact-area {
  display: flex; /* 電話番号とWEB予約ボタンを横並びにする */
  flex-direction: column; /* 縦方向に配置する場合 */
  align-items: flex-end; /* 右寄せにする */
}

.btn {
  display: flex;
  justify-content: center;
  font-size: 1.8rem;
  width: 100%;
  height: 45px;
  align-items: center;
  font-weight: 400;
}

.btn--blue,
a.btn--blue {
  color: #fff;
  background-color: #23B7D8;
  letter-spacing: 0.1em;  
}
.btn--blue:hover,
a.btn--bule:hover {
  color: #fff;
  background: #5ebacf; 
}

.btn--blue > a {
  color: #fff;
  margin: 0;
}

.btn--green,
.btn--green a {
  color: #fff;
  background-color: #00911F;
}
.btn--green:hover,
.btn--green a:hover {
  color: #fff;
  background: #03d12f;
}

.contact-icone {
  width: 22px;
  margin: 0 10px 0 0;
}

/* パンくずリスト */
.breadcrumbs {
 max-width: 1080px;
 width: 100%;
 margin: 20px auto 20px auto;
 padding: 0 27px;
}

.breadcrumbs span {
  font-size: 1.4rem;
  color: #4f4f4f;
  letter-spacing: 0.1em;
}

.breadcrumbs span:hover {
  opacity: 0.7;
}

/* footer */
footer {
  background-color: #5ebacf;
  padding: 40px 0 20px 0;
}

.footer__container {
  display: flex;
  justify-content: space-around;
  letter-spacing: 0.25rem;
  color: #fff;
  padding-bottom: 30px;
}

.footer__container p {
  color: #fff;
}

.footer__container a {
  color: #fff;
  font-size: 1.6rem;
}

.footer__adress > p {
  font-size: 1.6rem;
  line-height: 1.5em;
  margin: 10px 0;
}

.footer__menu {
  margin-right: 30px;
}

.footer__nav-pc p {
  font-size: 2rem;
  color: #fff;
}

.footer__nav-pc a {
  font-size: 1.6rem;
  color: #fff;
}

.footer__nav-pc a:hover {
  text-decoration: underline;
}

.footer__nav-pc ul {
  padding: 0;
}

.footer__nav-pc li {
  padding: 5px 0 5px 15px;
}

.footer__nav-pc li ::before {
  content: ">";
}

#copyright {
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
  margin: 0;
}

/* page 共通タイトル*/
.page__title {
  height: 320px;
  background-image: url("../img/page_background.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}

.page__title h1 {
  font-family: "Noto Serif JP",sans-serif;
  font-size: 4rem;
  color: #fff;
  letter-spacing: 0.25em;
  text-shadow: 0px 4px 4px rgb(106, 106, 106);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 10px 0 10px 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.page__section--title {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #6494B7;
  font-family:"Noto Serif JP",sans-serif;
  margin: 20px 0 30px 0;
  width: auto;
}

.page__section--items01 {
  font-size: 3rem;
  color: #6494B7;
  letter-spacing: 0.1em;
  margin: 0;
}

.page__section--items02 {
  padding-left: 30px;
  font-size: 1.6rem;
  color: #6494B7;
  letter-spacing: 0.1em;
  margin: 0;
}


/* 画面幅が1000px以下のとき */
@media screen and (max-width: 1000px) {
  /* スマートフォン用のスタイルを指定する */
  /* PC用ナビゲーション非表示 */
  p {
    font-size: 1.4rem;
  }

  /* header */
  .header__grid {
  grid-template-columns: 170px auto 180px; /* 各要素の幅を自動調整 */
  }

  .btn {
    font-size: 1.4rem;
  }

  .logo-area {
    padding: 20px 0 5px 15px;
  }

  .nav__list > li {
  padding: 0 7px;
  }

  .nav__list > li > a {
    font-size: 1.3rem;
    color: #4f4f4f;
    letter-spacing: 0.15em;
  }

  /* 共通 */
  .page__section--items01 {
    font-size: 2rem;
  }
  .staff__text p {
    font-size: 1.2rem;
  }
}

/* 画面幅が767px以下のとき */
@media screen and (max-width: 767px) {
  /* スマートフォン用のスタイルを指定する */
  /* PC用ナビゲーション非表示 */
  .margin {
    margin-top: 51.75px;
  }

  .wrap_inner {
    padding: 0 5%;
  }

  .pc-only {
    display: none !important;
  }
  
  .sp-only {
    display: block !important;
  }

  .header__grid {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }

  .contact__area--sp {
    display: flex;
    justify-content: flex-end;
  }

  .logo-area {
    padding: 5px 0 2px 10px;
    width: 150px;
  }

  /* スマホ用ナビゲーションの表示切替*/
  /* 初期状態、レイアウトと非表示設定 */
  #menu-sp {
    display: block;
    background-color: transparent;
    width: 50px;
    padding: 10px;
    border: none;
  }

  #nav-sp {
    background: #fff; 
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 100;
    display: none;
  }

  #close {
    position: absolute;
    top: 2%;
    right: 5%;
    background-color: transparent;
    border: none;
    width: 10%;
  }

  .menu-sp-tel {
    text-align: center;
    width: 50px;
    background-color: #23B7D8;
    padding: 6% 3%;
  }

  .menu-sp-tel img {
    width: 70%;
  }

  .menu-sp-reserve {
    width: 50px;
    background-color: #03d12f;
    position: relative;
  }

  .menu-sp-reserve a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    color: #fff;
    text-align: center;
  }

   /* SPナビゲーション */
  .nav__list-sp {
    margin: 40px 0 20px 0;
  }

  .nav__list-sp a {
    color: #23B7D8;
  }

  .nav__list-logo {
    width: 50%;
    margin-bottom: 30px;
  }

  .nav__list-item {
    font-size: 1.6rem;
    color: #23B7D8;
    letter-spacing: 0.1rem;
    margin: 20px 0;
  }

  .nav-sp__adress {
    background-color: #92D3E2;
    opacity: 0.6;
    font-size: 1.6rem;
    letter-spacing: 0.1rem;
    padding:10px 20px 10px 25px;
    margin: 0 10px 10px 10px;
  }

  .nav-sp__adress p {
    color: #fff;
  }

  /* footer */

  .footer__container--inner {
    margin: 0 auto;
  }

  .footer__container {
    justify-content: space-around;
    flex-direction: column;
  }

  .footer__logo {
    width: 60%;
    margin: 0 auto 20px auto;
  }

  .footer__adress p {
    font-size: 1.4rem;
  }

  .footer__nav-sp--container {
    margin-top: 30px;
  }

  .footer__nav-sp ul {
    padding-left: 20px;
  }

  .footer__nav-sp p {
    font-size: 1.6rem;
    margin: 20px 0 10px 0;
  }

  .footer__nav-sp li {
    font-size: 1.4rem;
    line-height: 1.75em;
    color: #fff;
  }

  .footer__nav-sp li a {
    color: #fff;
  }

  /* 各ページ共通 */
  .page__title {
    height: 150px;
  }

  .page__title h1 {
    font-size: 2.4rem;
  }
}