@charset "UTF-8";

/*----------------------------------------------　
ハンバーガーメニュー　*/

.hamburger {
  display : block;
  position: fixed;
  z-index : 3;
  right : 10px;
  top   : 5px;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 2px ;
  left    : 6px;
  background : #BBBBBB;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}

/* スマホメニューを開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 16px;
  left: 6px;
  background :#BBBBBB;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  background :#BBBBBB;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

/* メニュー背景　*/
nav.globalMenuSp {
  position: fixed;
  z-index : 2;
  top  : 0;
  left : 0;
  color: #333;
  background: #fff;
  text-align: center;
  width: 100%;
  height: 100svh;
  opacity: 0;
  transition: opacity .6s ease, visibility .6s ease;
  transform: translateX(100%);
}

nav.globalMenuSp {
  padding: 30px auto 0;
  margin-top: 45px;
  width: 100%;
  border-top: 1px solid #000;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: .4s all;
}

a.sp-nav__link {
  font-size: clamp(12px, 1.2vw, 14px);
  display: grid !important;
  place-items: center;
  row-gap: clamp(10px, 1.5vw, 15px);
  padding: clamp(10px, 2vw, 24px) clamp(6px, 1vw, 10px) clamp(10px, 2vw, 20px);
  font-family: 'Libre Baskerville', serif;
  position: relative;
  width: 100%;
}

a.sp-nav__link::before {
  display: block;
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(45deg);
  color: #448A82;
  width: 8px;
  height: 8px;
  border-top: 2px solid #448A82;
  border-right: 2px solid #448A82;
  z-index: 1;
}

.sp-nav__label-ja {
  color: #448A82;
  font-size: clamp(9px, 1vw, 11px);
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}

.sp-btn1 {
  margin-top: 20px;
}

.sp-btn2 {
  margin-top: 10px;
}

.sp-btn {
  position: relative;
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}

a.sp-reserve {
  color: #448A82 !important;
  background-color: #fff;
  padding: 22px 2px;
  font-size: 14px;
  max-width: 310px;
  width: 100%;
  margin-inline: auto;
  position: relative;
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}

a.sp-reserve::before {
  display: block;
  content: '';
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%) rotate(45deg);
  color: #448A82;
  width: 8px;
  height: 8px;
  border-top: 2px solid #448A82;
  border-right: 2px solid #448A82;
  z-index: 1;
}

.menu_bottom_content{
  margin-top: 20px;
  border: solid 1px #448A82;
}

nav.globalMenuSp ul.menu-sp li{
    padding: 15px 0;
    border-bottom: 1px solid #ccc;
}

nav.globalMenuSp ul.menu-sp li:last-child{
    border-bottom: none;
}

nav.globalMenuSp ul li a {
  display: block;
  text-decoration :none;
}

/* クリックでjQueryで追加・削除 */
nav.globalMenuSp.active {
  opacity: 100;
  /* display: grid; */
  transform: translate(0);
  overflow-y: scroll;
}
/* メニューが開いた時背景固定 */
body.menu-open {
  overflow: hidden;
}

.menu-main {
  display: grid;
}

.menu-main li {
  border-bottom: 1px solid #BBBBBB;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-main li:last-child {
  border-bottom: none;
}

.MenuSp__btn {
  background-color: #448A82;
  padding: 20px 10px;
  height: fit-content;
}

.MenuSp__btn li a {
color: #fff;
} 

.MenuSp__sns {
  background-color: #000;
  color: #fff;
  margin-top: -20px;
}

.MenuSp__sns-inner {
  width: 70%;
  margin-inline: auto;
  display: flex;
  justify-content: center;
}

.sp-btn {
  border: 1px solid #fff;
  max-width: 310px;
  width: 100%;
  margin-inline: auto;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 12px;
}

.sp-btn::before {
  display: block;
  content: '';
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%) rotate(45deg);
  color: #fff;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  z-index: 1;
}

.sp-btn1 {
  padding: 10px 0;
}

.sp-btn2 {
  padding-top: 18px;
  padding-bottom:18px;
}

.sp-btn2 img {
  margin-right: 10px;
  zoom: 0.5;
}

.sp-btn span {
  font-size: 9px;
  color: #fff;
}

.sns-icon {
  display: grid;
  place-items: center;
}

.sns-icon,
.sns-icon a,
.sns-icon img {
  width: 70px;
  height: 70px;
  margin-inline: auto;
}
/*----------------------------------------------　
アコーディオン　*/

.accordion-gmenu {
    max-width: 100%;
}

.accordion-gmenu summary {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    /*padding: 13px;*/
    padding: 0;
    color: #000;
    cursor: pointer;
    text-align: center;
}

.accordion-gmenu summary::-webkit-details-marker {
    display: none;
}

.accordion-gmenu summary::after {
    transform: translateY(-25%) rotate(-45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
    content: '';
    transition: transform .3s;
    position: absolute;
    right: -40px;
    top: 18px;
}

.accordion-gmenu[open] summary::after {
    transform: rotate(225deg);
}

.accordion-gmenu .accordion-inner {
    padding: 0 0;
    /*transform: translateY(-10px);*/
    opacity: 0;
    margin: 0;
    /*transition: transform .5s, opacity .5s;*/
}

.accordion-gmenu[open] .accordion-inner {
    /*transform: none;*/
    opacity: 1;
}

.accordion_link {
  padding: 10px 0;
}

.menu_link {
  position: relative;
  display: block;
  width: 100%;
}

.menu_link::after {
   transform: translateY(-50%) rotate(-45deg) skew(15deg,15deg);
    width: 12px;
    height: 12px;
    margin-left: 10px;
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
    content: '';
    transition: transform .3s;
    position: absolute;
    right: 18%;
    top: 50%;
}

.menu_link_parent{
    position: relative;
}

.menu_link_parent::before {
   transform: translateY(-50%) rotate(-45deg) skew(15deg,15deg);
    width: 12px;
    height: 12px;
    margin-left: 10px;
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
    content: '';
    transition: transform .3s;
    position: absolute;
    right: 18%;
    top: 50%;
}

.accordion-inner a:nth-child(1){
    display: block;
    padding: 18px 0 10px;
}

.accordion-inner a:nth-child(2){
    display: block;
    padding: 10px 0 0;
}

.accordion-gmenu[open] summary.menu_link_parent::before {
    transform: rotate(225deg);
}