@charset "UTF-8";

/*==============================
  サイト共通のスタイル
==============================*/

/* 共通スタイル */
h1,
h2,
h3,
h4,
h5
{
  font-weight: bold;
}

.en {
  font-family: 'Lato', sans-serif;
}
.c-title {
  text-align: center;
  font-size: var(--px-to-vw_28);
  line-height: 1.2;

  @media (min-width: 40em) {
    font-size: clamp(27px, 9vw, 40px);
  }
}
.c-subtitle {
  font-size: var(--px-to-vw_50);
  text-align: center;
  font-weight: 900;
  color: #f5e7dd;
  margin-bottom: -20px;
  line-height: 1;

  @media (min-width: 40em) {
    font-size: clamp(60px, 14vw, 76px);
  }
}

.c-page-title--1 {
  font-size: 1.25rem;
  line-height: 2.5;
  width: 100%;
  background-color: #b1b1b1;
  color: var(--color-main);
}
@media (min-width: 40em) {
  .c-page-title--1 {
    font-size: 2rem;
    line-height: 2.5;
  }
}
/* 吹き出し */
.c-speech-bubble {
  text-align: center;

  p {
    display: inline-block;
    position: relative;
    font-size: var(--px-to-vw_15);
    padding: 5px 2.5em;
    border: 3px solid var(--color-main);
    border-radius: 2em;
    color: var(--color-main);
    font-weight: bold;
    background: #fff;

    @media (min-width: 40em) {
      font-size: var(--px-to-rem_20);
    }

    &::before {
      content: "";
      position: absolute;
      bottom: -16px;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 0;
      border-left: 0px solid transparent;
      border-right: 20px solid transparent;
      border-top: 17px solid #fff;
      z-index: 1;
    }

    &::after {
      content: "";
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%) rotate(140deg);
      width: 25px;
      height: 2.5px;
      background-color: var(--color-main);
      border-radius: 999px;
      z-index: 2;
    }
  }
}

/* ドット背景 */
.c-circle-parent {
  position: relative;
  overflow: visible;

  .c-circle {
    &::before,
    &::after {
      content: "";
      display: block;
      background-image: url(../img/dot_circle.svg);
      background-position: center;
      background-repeat: no-repeat;
      background-size: contain;
      width: 300px;
      height: 300px;
      position: absolute;
    }
  }
}

/*--- 非表示 ---*/
.u-displaynone {
  display: none !important;
}

/*--- モバイル非表示 ---*/
@media (max-width: 39.9375rem) {
  .u-displaynone-sm {
    display: none !important;
  }
}

/*--- デスクトップ非表示 ---*/
@media (min-width: 40em) {
  .u-displaynone-md-up {
    display: none !important;
  }
}

/* ヘッダー */
.o-header {
  position: sticky;
  top: 0;
  z-index: 15;
  overflow: visible;
  width: 100%;
  background-color: #ffffff;
}
.o-header a{
  text-decoration: none;
}
.o-header__content {
  width: 100%;
  height: var(--header-height);
  background-color: var(--color-base);
}
.o-header .c-row {
  height: var(--header-height);
}
.o-header__logo {
  height: var(--header-height);
  display: flex;
  align-items: center;
}
.o-header__logo img {
  width: 135px;
  height: auto;
}

@media (min-width: 40em) {
  .o-header {
    position: fixed;
    display: flex;
    top: 26px;
    background-color: transparent;
  }
  .o-header__content {
    height: var(--header-height-md);
    width: auto;
    margin: 0 auto;
    border-radius: 32px;
    padding: 0 30px 0 40px;
  }
  .o-header .c-row {
    height: auto;
  }
  .o-header__logo {
    height: var(--header-height-md);
  }
  .o-header__logo img {
    width: 170px;
  }
}


/* グローバルナビゲーション */
.o-globalMenu {
  width: 100vw;
  height: auto;
  background-color: #fff;
  overflow: auto;
  position: fixed;
  top: var(--header-height);
  right: 0;
  z-index: 100;
  transform: translateX(100%);
  transition: all .3s;
}

.o-globalMenu .o-globalMenu__lists {
  padding: 5vh 0;
  width: 90%;
  margin: 0 auto;
  text-align: center;
}

.o-globalMenu ul li {
  padding: 15px 8px;
  display: block;
  text-align: center;
  line-height: 1.3;
}

.o-globalMenu ul li a {
  color: #333;
  font-weight: bold;
  transition: .15s;
}

.o-globalMenu .o-globalMenu__list-item_inquiry a,
.o-globalMenu .o-globalMenu__list-item_reserve a {
  padding: 10px 22px;
  border-radius: 100vh;
  line-height: 3;
  margin: auto;
}

.o-globalMenu .o-globalMenu__list-item_inquiry a {
  color: #fff;
  background-color: var(--color-sub-red);
  border: 1px solid var(--color-sub-red);
}

.o-globalMenu .o-globalMenu__list-item_reserve a {
  background-color: var(--color-sub_orange);
  border: 1px solid var(--color-sub_orange);
}

.o-globalMenu .o-globalMenu__list-item_inquiry {
  line-height: 1.5;
}

.o-globalMenu .o-globalMenu__list-item_inquiry i{
  color: #fff;
  margin-right: 5px;
}

@media (min-width: 40em) {
  .o-globalMenu {
    width: auto;
    height: var(--header-height-md);
    background-color: transparent;
    display: flex;
    overflow: visible;
    position: relative;
    top: 0;
    z-index: 1;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    border: none;
  }

  .o-globalMenu .o-globalMenu__lists {
    padding: 0;
    width: auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
    white-space: nowrap;
  }

  .o-globalMenu ul li {
    border: none;
    padding: 0;
    padding-left: 25px;
    display: flex;
    line-height: 2;
    height: 50px;
  }

  .o-globalMenu ul li a {
    line-height: 3;
    color: var(--color-text);
    font-size: var(--px-to-rem_15);
    display: flex;
    align-items: center;
    border-bottom: none;
    background-color: transparent;
  }

  .o-globalMenu ul li a:hover {
    color: var(--color-main);
  }

  .o-globalMenu .o-globalMenu__list-item_reserve {
    padding-left: 5px;
  }

  .o-globalMenu .o-globalMenu__list-item_inquiry a,
  .o-globalMenu .o-globalMenu__list-item_reserve a {
    color: #fff;
    padding: 0 25px;
    border-radius: 100vh;
    line-height: 42px;
    font-size: 0.875rem;
  }

  .o-globalMenu .o-globalMenu__list-item_inquiry a:hover {
    background-color: #fff;
    border: 1px solid var(--color-sub-red);
  }
  .o-globalMenu .o-globalMenu__list-item_inquiry a:hover i{
    color: var(--color-sub-red);
  }

  .o-globalMenu .o-globalMenu__list-item_reserve a:hover {
    background-color: #fff;
    color: var(--color-sub_orange);
    border: 1px solid var(--color-sub_orange);
  }
  .o-globalMenu .o-globalMenu__list-item_inquiry {
    padding-left: 20px;
  }
}
/* --- グローバルメニュートグル --- */
.o-globalMenuToggle {
  width: var(--header-height);
  height: var(--header-height);
  background-color: var(--color-sub-red);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 102;
  cursor: pointer;
  overflow: hidden;
}
@media (min-width: 40em) {
  .o-globalMenuToggle {
    display: none;
  }
}
.o-globalMenuToggle p {
  text-align: center;
  color: #fff;
  font-weight: bold;
  margin-top: 25px;
}
.o-globalMenuToggle span,
.o-globalMenuToggle span:before,
.o-globalMenuToggle span:after {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #fff;
  color: var(--color-main-text);
  border-radius: 10px;
  position: absolute;
  top: -12px;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transition: all .3s;
}
.o-globalMenuToggle span:before,
.o-globalMenuToggle span:after {
  content: '';
}
.o-globalMenuToggle span:before {
  top: 0;
  bottom: -11px;
}
.o-globalMenuToggle span:after {
  top: -11px;
}
.o-globalMenu--shown .o-globalMenuToggle span {
  background: transparent;
}
.o-globalMenu--shown .o-globalMenuToggle span:before {
  transform: rotate(-45deg);
  top: 0;
  bottom: 0;
}
.o-globalMenu--shown .o-globalMenuToggle span:after {
  transform: rotate(45deg);
  top: 0;
}
.o-globalMenuToggle--background {
  height: var(--header-height);
  width: 85vw;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 101;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
}
.o-globalMenu--shown .o-globalMenu,
.o-globalMenu--shown .o-globalMenuToggle--background {
  transform: translateX(0);
}


/* -----------------------------------------------------------
footer
----------------------------------------------------------- */
.o-footer {
  min-height: var(--footer-height);
  padding: 50px 5vw 0;

  @media (min-width: 40em) {
    min-height: var(--footer-height-md);
    padding: 50px 70px 0;
  }
  .o-footer-container {
    a {
      text-decoration: none;
    }

    img {
      width: 50vw;
      margin-bottom: 20px;

      @media (min-width: 40em) {
        width: 300px;
        margin-bottom: 0;
      }
    }

    ul {
      display: flex;
      gap: 2em;
      list-style: none;
      padding: 0;
      margin: 0;
      font-size: var(--px-to-vw_15);
      justify-content: center;

      @media (min-width: 40em) {
        font-size: var(--px-to-rem_15);
        justify-content: flex-start;
      }
    }
  }
}

.o-footer-main {
  margin-bottom: 30px;

  @media (min-width: 40em) {
    margin-bottom: 0;
  }

  .o-footer-com, .o-footer-adress, .o-footer-tel {
    font-size: var(--px-to-vw_15);

      @media (min-width: 40em) {
        font-size: var(--px-to-rem_15);
      }
  }
  .o-footer-adress, .o-footer-tel {
    line-height: 1.5;
  }
  .o-footer-com {
    margin-bottom: 5px;
  }  
}

.o-footer-line {
  width: 2px;
  background-color: #ccc;
  margin: 0 20px;
  height: auto;
}
.o-footerCopyright {
  font-size: var(--px-to-vw_13);
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30vw;

  @media (min-width: 40em) {
    font-size: var(--px-to-rem_13);
    margin-top: 60px;
    margin-bottom: 0;
  }
}
/* -----------------------------------------------------------
フローディングボタン
----------------------------------------------------------- */
footer {
  .o-footer-floating {
    position: fixed;
    bottom: 10px;
    left: 0;
    right: 0;
    z-index: 1000;

    ul {
      display: flex;
      margin: 0;
      padding: 0;
      list-style: none;

      li {

        a {
          align-items: center;
          background-color: var(--color-sub-red);
          color: #fff;
          text-decoration: none;
          font-weight: bold;
          padding: var(--px-to-vw_12) var(--px-to-vw_20);
          font-size: 1rem;
          text-align: center;
          border: 2px solid var(--color-sub-red);
          border-radius: 10px;
        }

        i {
          font-size: var(--px-to-vw_14);
        }

        span {
          font-size: var(--px-to-vw_14);
        }
      }
    }
  }
}
