@charset "utf-8";
/* CSS Document */
* {
  position: relative;
  line-height: 1.5;
  list-style: none;
  text-decoration: none;
  color: #333;
  word-break: auto-phrase;
}
*, *:before, *:after {
  box-sizing: inherit;
}
html {
  box-sizing: border-box;
  font-family: "BIZ UDPGothic", sans-serif;
}
img, picture, video, canvas, svg {
  max-width: 100%;
  height: auto;
  display: inline-block;
  vertical-align: bottom;
}
a:hover {
  opacity: 0.8;
}
/* スクロール確認用 */
body {
  display: flex;
  flex-flow: column;
  min-height: 100dvh;
}
main {
  flex: 1;
}
/* ==============================
			 ヘッダー
============================== */
header {
  width: 100%;
  height: 100px;
  margin: auto;
  display: flex;
  justify-content: center;
  z-index: 1;
  & .logo {
    position: fixed;
    padding: 10px 20px 14px;
    left: 0;
    z-index: 2;
    background: rgba(255, 255, 255, 0.7);
  }
}
#nav_pc {
  width: 100%;
  padding-left: 189px;
  padding-right: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  z-index: 1;
  & a {
    font-size: 1.25rem;
    font-weight: bold;
    padding: 39.5px clamp(2.5px, 1.0dvw, 20px);
    transition: color 0.3s;
    &:has(img) {
      object-fit: cover;
      &:hover::after {
        visibility: hidden;
      }
    }
    &:hover {
      color: #007bff;
      &::after {
        visibility: visible;
        width: 100%;
      }
    }
    &::after {
      content: '';
      width: 0;
      position: absolute;
      bottom: 0;
      left: 50%;
      height: 1px;
      background: #333;
      transition: all 0.3s ease;
      transform: translateX(-50%);
      visibility: hidden;
    }
  }
  @media (max-width: 980px) {
    & a {
      padding-top: 30px;
      padding-bottom: 30px;
    }
  }
  @container scroll-state(scrolled: block-start) {
    & {
      top: -100px;
      transition: all 0.3s ease;
      transform: translateY(100%);
      position: fixed;
    }
  }
  @container scroll-state(scrolled: block-end) {
    & {
      top: 0px;
      transition: all 0.3s ease;
      transform: translateY(-100%);
      position: fixed;
    }
  }
  @media screen and (max-width: 768px) {
    & {
      display: none;
    }
  }
}
/* ==============================
			 メイン
============================== */
main {
  width: 100%;
  margin: 0 auto;
  & .main_firstview {
    width: 980px;
    height: 620px;
    margin: 0 auto;
    background-image: url("../img/top.png");
    background-size: contain;
    background-position: right 0;
    background-repeat: no-repeat;
    & h2 {
      font-family: "Yu Gothic";
      top: 50px;
      text-align: center;
      font-size: 4rem;
      color: #fff;
      text-shadow: -1px -1px 1px #a1eeee, -1px 1px 1px #a1eeee, 1px -1px 1px #a1eeee, 1px 1px 1px #a1eeee, 0 0 25px #a1eeee, 0 0 25px #a1eeee, 0 0 25px #a1eeee;
    }
  }
  & .notice_content {
    width: inherit;
  }
}
/* お知らせ欄 */
.notice {
  width: 540px;
  max-width: 60dvw;
  height: 510px;
  margin: 0 auto;
  padding: 20px 0;
  text-align: center;
}
.notice_content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
  width: 100%;
  max-width: 60dvw;
  & h2 {
    margin: 0 auto 1.5dvh;
    padding-bottom: 10px;
    font-size: 1.25rem;
    border-bottom: 2px solid #333;
  }
  & section {
    margin-bottom: 2.5dvh;
    padding: 2.5dvw;
    text-align: left;
    border-radius: 20px;
    background-color: #fff;
    & dd {
      margin-bottom: 30px;
      padding-bottom: 12px;
      font-size: 1.15rem;
      line-height: 1.5;
      border-bottom: 1px dotted #cbab82;
    }
  }
}
.notice_content section, .notice_date {
  font-size: 0.85rem;
}
.notice-list {
  display: flex;
  flex-wrap: wrap;
  & dt {
    width: 30%;
    padding: 10px 0;
    border-top: 1px #d8c7a0 dotted;
  }
  & dd {
    width: 70%;
    padding: 10px 0;
    border-top: 1px #d8c7a0 dotted;
  }
  &:first-of-type {
    border-top: none;
  }
}
/* ↑↑↑ お知らせ欄 ここまで ↑↑↑ */
.incase {
  width: 400px;
  margin: 0 auto;
  padding: 20px;
  & h2 {
    font-size: 2.25rem;
    font-weight: bold;
    border: none;
  }
  /* 吹き出し実験用
	& a {
    & .fukidashi {
      width: calc(300px - 14px);
	  height: 70px;
      background: #EF5B9C;
      border-radius: 50px;
	  border: 2px solid #fff;
	  box-shadow: 4px 4px 10px rgba(0,0,0,0.25), 4px 4px 5px rgba(0,0,0,0.25);
      &::after {
        content: '';
        position: absolute;
        width: 0;
        height: 0;
		left: 45%;
		bottom: -21px;
        border-style: solid;
        border-right: 12px solid transparent;
        border-left: 12px solid transparent;
        border-top: 21px solid #EF5B9C;
        border-bottom: 0;
      }
      & h2 {
        font-size: 2rem;
        color: #fff;
        text-align: center;
        line-height: 1.75;
      }
    }
  }*/
}
.content_view {
  width: 100%;
  height: 510px;
  background-image: url("../img/content_view.png");
  background-size: cover;
  & img {
    top: -50px;
    left: 230px;
  }
}
.content_list {
  width: 980px;
  height: 715px;
  margin: 100px auto 50px;
  & a img {
    object-fit: cover;
    transition: transform 0.3s ease;
    &:hover, &:active {
      transform: scale(1.075);
    }
  }
  & .list_upper {
    left: -25px;
  }
  & .list_lower {
    right: -95px;
  }
}
.haname_map {
  width: 980px;
  height: auto;
  margin: 0 auto;
}
/* ==============================
			 下層ページ
============================== */
/* 共通項目 */
#pege_heading {
  width: 100%;
  height: 620px;
  background-image: url("../img/sakura_top.png");
  background-size: cover;
}
/* 特集ページ */
.feature_info {
  width: 980px;
  height: 1026px;
  background: #FFF4DB;
  margin: 0 auto;
  & .sakura_text {
    text-align: right;
    text-shadow: -1px -1px 1px #EF5B9C, -1px 1px 1px #EF5B9C, 1px -1px 1px #EF5B9C, 1px 1px 1px #EF5B9C, 0 0 25px #EF5B9C, 0 0 25px #EF5B9C, 0 0 25px #EF5B9C;
    & h2 {
      padding: 20px;
      font-size: 4rem;
      color: #fff;
    }
    & h3 {
      font-size: 2rem;
      color: #fff;
    }
  }
  & .fukidashi {
    width: 385px;
    height: 282px;
    background-image: url("../img/fukidashi.png");
    margin: 30px 10px;
    padding-top: 51px;
    padding-left: 54px;
    & .diamond_container {
      display: flex;
      gap: 10px;
      & .diamond {
        width: 25px;
        height: 25px;
        background-color: #a1eeee;
        transform: rotate(45deg);
      }
    }
    & h2 {
      font-size: 4rem;
      line-height: 1.25;
      letter-spacing: 12.5%;
      left: -5px;
      & span:nth-child(odd) {
        color: #9DD29C;
      }
      & span:nth-child(even) {
        color: #F6ADC6;
      }
    }
  }
  & .sakura_infobox {
    background: #fff;
    border: 2px solid #EF5B9C;
  }
  & #bestseason {
    width: 285px;
    height: 296px;
    margin: -10px 100px;
    padding: 20px 25px;
    & h3 {
      font-size: 2.25rem;
      font-weight: 700;
    }
    & p {
      font-size: 1.25rem;
      margin-top: 25px;
    }
  }
  & #recomend_info {
    width: 400px;
    height: 547px;
    left: 580px;
    top: -540px;
    & h4 {
      display: block;
      width: 200px;
      height: 40px;
      font-size: 1.25rem;
      line-height: 2;
      color: #fff;
      text-align: center;
      background: #EF5B9C;
      margin: 20px 0 0 20px;
      border-radius: 50px;
    }
    & h3 {
      font-size: 2.25rem;
      font-weight: 700;
      margin-left: 40px;
    }
    & p {
      font-size: 1.25rem;
      margin-top: 2.25rem;
      margin-left: 40px;
    }
    & figure {
      border: thin #ccc solid;
      display: flex;
      flex-flow: column;
      padding: 10px;
      margin: auto;
      margin-top: 35px;
      max-width: 340px;
      max-height: 260px;
    }
  }
}
/* ==============================
			 フッター
============================== */
footer {
  width: 100%;
  height: 300px;
  display: flex;
  flex-direction: column;
  background-image: linear-gradient(rgba(161, 238, 238, 0.75), rgba(161, 238, 238, 0.1));
  text-align: center;
  & .logo {
    margin: 40px 0;
    & a:hover, & a:active {
      opacity: 0.9;
    }
    & a img {
      object-fit: cover;
      transition: transform 0.3s ease;
      &:hover, &:active {
        transform: scale(1.075);
      }
    }
  }
  & aside a {
    font-size: 1em;
    padding: 10px;
    margin: 10px;
    transition: 0.3s;
    &:hover {
      background-color: #fff;
    }
  }
}
#copyright {
  width: 100%;
  position: absolute;
  bottom: 0;
  background: #333;
  & p, & small {
    color: #fff;
    line-height: 1.75;
  }
  & small {
    font-size: 0.875em;
  }
}