@charset "utf-8";

html {
  box-sizing: border-box;
  font-size: 62.5%;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  font-family: system-ui, sans-serif;
  /* プロジェクトに合わせて */
  line-height: 1.6;
  /* 読みやすさ */
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.6em;
  -webkit-font-smoothing: antialiased;
  /* Macで文字がくっきり */
  background-image: linear-gradient(0deg, rgba(253, 219, 146, 1), rgba(209, 253, 254, 1) 70%);
  background-repeat: no-repeat;
  color: #333;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

#date {
  width: 100%;
  height: 18em;
  background-image: url("../images/town.png");
  /* 画像を指定 */
  background-position: bottom;
  /* 画像の位置をボトムに設定 */
  background-repeat: no-repeat;
  /* 繰り返しを無効化 */
  background-size: cover;
  background-size: 100% auto;
  /* 横幅を50%、高さは自動調整 */
}

.wrapper {
  width: 80%;
  margin: 0 auto;
  position: relative;
}

.head_flex {
  display: flex;
  margin: 3% 0;

}

.head_flex>*:first-child {
  margin-right: 3%;

}

.flex {
  display: flex;
  justify-content: space-between;
}

.flex_normal {
  display: flex;
  gap: 3%;
}

.hamburger {
  display: none;
}


.atnd {
  background-color: yellow;
  color: red;
  font-weight: bold;
}

nav {
  padding: 3% 0;
}

section {
  padding-bottom: 3%;
  border-bottom: 2px solid #fff;
}

h2 {
  padding: 3% 0;
  font-size: x-large;
  font-weight: bold;
  color: #E4007F;

}

h4 {
  font-weight: bold;
}


/*****===================
ナビゲーション
=========================******/
nav {
  display: block;
  width: 80%;
  position: fixed;
  padding: 1.5em 5em;
  margin-top: 1em;
}

header h1 {
  padding-top: 10em;
}

.glass {
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 3em;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
}

nav a {
  padding-bottom: 5px;
  position: relative;
  font-weight: 500;
}

nav a::before {
  background: #E4007F;
  content: '';
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}

nav a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

nav a:hover {
  color: #E4007F;
}

/*****===================
注意事項
=========================******/
.attention {
  background-color: #ffcc66;
  margin-top: 1em;
  padding: 1em;
  font-size: 1.4rem;
  border-radius: 1em;
}

.attention p {
  font-size: 1.6rem;
}

.attention ul {
  margin-top: 0.5em;
}

.attention li {
  text-indent: -1em;
  margin-left: 1em;
  margin-bottom: 0.5em;
}
/*****===================
アナウンス
=========================******/
.info{
  background-color: #ffcc66;
  color: #000;
  font-weight: 500;
  margin: 1em 0;
  padding: 1em;
  border-radius: 25px;
  text-align: center;
}
/*****===================
日付
=========================******/

.date{
  position: relative;
  text-align: center;
  margin: 8em auto 0;
  color: #E4007F;
}

.date-text {
  font-size: 2.8rem;
  font-weight: 700;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
  border: 4px solid #E4007F;
  border-radius: 2em;
  padding: 1em 0;
}

/* 予約不要 */
.rev{
  position: absolute;
  font-size: 2rem;
  font-weight: 700;
  color: #E4007F;
  top: -3em;
  left: calc(50% - 4em);
}


.rev::before,
.rev::after {
  display: inline-block;
  background-color: #E4007F; /* 線の色 */
  border-radius: 5px; /* 線の両端を丸く */
  content: "";
  height: 0.2em; /* 線の高さ */
  width: 1.5em; /* 線の長さ */
}
.rev::before {
  margin-right: 0.5em; /* 文字との余白 */
  transform: rotate(60deg); /* 傾ける */
}
.rev::after {
  margin-left: 0.3em; /* 文字との余白 */
  transform: rotate(-60deg); /* 傾ける */
}

/*****===================
アクセス
=========================******/
.map {
  width: 50%;
}

.parg {
  width: 45%;
}

.parg figcaption {
  margin-top: 0.5em;
}

.parg figure:last-of-type {
  margin-top: 2em;
}


/*****===================
実施メニュー
=========================******/

.caution {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.4;
  margin-top: 0.5em;
}

.menu-content {
  width: calc(100%/3 - 1.5em);
  display: flex;
  flex-direction: column;
}

.menu-content h4 {
  margin-bottom: 1em;
}
.menu-content h4::before{
  content: "◉";
  margin-right: 0.2em;
}

.menu-content .menu-desc {
  flex-grow: 1;
}

.menu-content img {
  display: block;
  margin-top: 1em;
}

#menu .flex{
  margin-bottom: 4em;
}

#menu .flex:last-of-type {
  margin-bottom: 0;
}

.menu-title {
  padding: 0.5em 0;
  text-align: center;
  color: #fff;
  font-weight: 700;
  margin-bottom: 1em;
}

.cdd-t {
  background-color: #69ba5e;
}

.gcd-t {
  background-color: #4c80c2;
}

.pbd-t {
  background-color: #f08449;
}

.bhc-t {
  background-color: #92519c;
}

.bbc-t {
  background-color: #ec7592;
}

.bms-t {
  background-color: #78c3c5;
}
.aht-t{
  background-color: #59C3E1;
}
.ptc-t{
  background-color: #8FC42F;
}


/*****===================
CV
=========================******/
#contact {
  padding: 4em 0;
  border: none;
  text-align: center;
}

#contact h2 {
  color: #333;
  margin: 0;
  padding: 0;
  margin-bottom: 2em;
}

#contact .flex {
  justify-content: space-evenly;
  align-items: center;
}

.mit-area,
.mia-area {
  position: relative;
  width: 42%;
  margin-top: 2em;
  border-radius: 0.2em;
  color: #fff;
}

.mit-area {
  background: #fa709a;
}

.mia-area {
  background: #ff9900;
}

#contact a {
  display: block;
  transition: .5s;
  padding: 1em 0 1em 1em;
}

#contact a:hover {
  opacity: 0.6;
}

.tel {
  font-size: 3.6rem;
  font-weight: 700;
}

.mit-area::after,
.mia-area::after {
  content: "";
  position: absolute;
  bottom: -0.5em;
  right: -0.5em;
  width: 100%;
  /* 横の長さ */
  height: 5em;
  /* 縦の長さ */
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
}

.mit-area::after {
  border-color: #fa709a;
}

.mia-area::after {
  border-color: #ff9900;
}

.mit-area::before,
.mia-area::before {
  content: "";
  display: block;
  width: 2.5em;
  height: 2.5em;
  background-image: url(../images/icon-tel.svg);
  position: absolute;
  left: 1.5em;
  top: 3.2em;
}

/*****===================
footer
=========================******/
footer {
  text-align: center;
  padding: 3em 0;
}



/*****=============================
*
* メディアクエリ
*
===================================******/

@media screen and (max-width:450px) {
  .flex {
    flex-direction: column;
  }

  h2 {
    font-size: 2rem;
    margin: 2em 0;
  }

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

  .item {
    position: fixed;
    top: 2em;
    right: 2.5em;
    width: 3em;
    height: 3em;
    text-align: center;
    box-sizing: border-box;
    counter-increment: item;
    background-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 0.5em;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
  }

  .menu-trigger,
  .menu-trigger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
  }

  .menu-trigger {
    position: relative;
    width: 2em;
    height: 1.8em;
    background: none;
    border: none;
    appearance: none;
    cursor: pointer;
    top: 0.5em;
  }

  .menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 0.1em;
    background-color: #333;
    border-radius: 2px;
  }

  .menu-trigger span:nth-of-type(1) {
    top: 0.25em;
  }

  .menu-trigger span:nth-of-type(2) {
    top: calc(50% - 0.05em);
  }

  .menu-trigger span:nth-of-type(3) {
    bottom: 0.25em;
  }

  .menu-trigger.active span:nth-of-type(1) {
    transform: translateY(0.55em) rotate(-45deg);
  }

  .menu-trigger.active span:nth-of-type(2) {
    left: 50%;
    opacity: 0;
    animation: active-menu05-bar02 .8s forwards;
  }

  @keyframes active-menu05-bar02 {
    100% {
      height: 0;
    }
  }

  .menu-trigger.active span:nth-of-type(3) {
    transform: translateY(-0.6em) rotate(45deg);
  }

  /* ナビゲーション */
  .glass {
    border-radius: 1em;
  }

  nav {
    display: none;
    transform: scale(0.9);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
  }

  nav.active {
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    margin: 0;
    border-radius: 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: scale(1);
    opacity: 1;
  }

  nav.active ul {
    margin-top: -10em;
  }

  nav.active ul li {
    margin-bottom: 1em;
    font-size: 1.8rem;
    font-weight: 700;
  }

  /* ヘッダー */
  .head_flex p {
    margin-top: 1em;
  }

  header h1 {
    padding-top: 6em;
  }
  .date p{
    font-size: 2rem;
  }
  .date-text span{
    display: block;
  }

  /* アクセス */
  .map {
    width: 100%;
  }

  .parg {
    width: 100%;
    margin-top: 2em;
  }

  /* 体験メニュー */
  .menu-content {
    width: 100%;
    margin-bottom: 4em;
  }

  /* お問い合わせ */
  .mit-area,
  .mia-area {
    width: 100%;
  }

  .mit-area::before,
  .mia-area::before {
    width: 1.5em;
    height: 1.5em;
    left: 1em;
    top: 3.8em;
  }
  #contact a{
    padding-left: 0;
  }
}




/*****===================
z-index
=========================******/
.item {
  z-index: 999;
}

nav {
  z-index: 888;
}

.mit-area::after,
.mia-area::after {
  z-index: -1;
}