@charset "utf-8";

/* common */
body {
  font-family: 'Kosugi Maru', sans-serif;
  margin: 0;
  padding: 0;
  font-size: 1.2rem;
}
.container {
  padding: 0;
  width: calc(100% - 32px);
  margin: 0 auto;
  max-width: 800px;
  /* outline: 8px solid red; */
}
h1, h2, h3 {
  margin: 0;
  padding: 0;
  font-weight: normal;
  line-height: 1;
}
h1 {
  font-size: 2.2rem;
}
h2 {
  font-size: 2.1rem;
}
h3 {
  font-size: 1.9rem;
}
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.hidden {
  display: none;
}
p {
  margin: 0;
  padding: 0;
  line-height: 1.6;
}
img {
  vertical-align: bottom;
}
.desc {
  text-align-last: left;
}
.desc p {
  text-indent: 5mm;
}
cite {
  text-decoration: underline;
}
/* .animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .3s, transform .3s;
} */
/* .animate.slide-from-left {
  transform: translateX(-40px);
}
.animate.slide-from-right {
  transform: translateX(40px);
} */
/* .animate.appear {
  opacity: 1;
  transform: none;
} */
.topspace {
  padding-top: 16px;
}
hr.menuborder {
  width: 80%;
  border-top: 1px dotted #000000a9;
  margin: 0 auto 8px;
  padding: 0;
  background: hsla(0, 100%, 100%, 0%);
}

/* header*/
header {
  display: flex;
  padding: 10px 16px;
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: rgb(240, 252, 74);
}
header.scrolled {
  background-color: rgba(255, 255, 90, 0.95);
  box-shadow: 0 0 4px rgba(90, 90, 0, .3);
}
header .container {
  position: relative;
  width: 100%;
}
header .sp-menu {
  margin-right: auto;
  z-index: 10;
}
header .sp-menu i {
  font-size: 32px;
  /* line-height: 64px; */
  cursor: pointer;
}
header .sp-menu p {
  font-size: 16px;
}
header #open.hide {
  display: none;
}
header img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  max-width: 159px;
  max-height: 60px;
  margin: 0 auto;
  border-radius: 4px;
}


/* overlay */
.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
  padding: 60px 16px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .6s;
  z-index: 10;
}
.overlay.show {
  opacity: 1;
  pointer-events: auto;
}
.overlay #close {
  position: absolute;
  top: 10px;
  left: 16px;
  font-size: 32px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 4px;
  z-index: 10;
}
.overlay #close p {
  font-size: 16px;
}
.overlay .hanami_all, .overlay .extra {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
  gap: 10px;
}
.overlay .extra {
  margin-top: 8px;
}
.overlay .minimenu p {
  display: block;
  background: #ffd037;
  font-size: 1.2rem;
  border-radius: 8px;
  /* font-weight: bold; */
}
.overlay li {
  margin-top: 8px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .3s, transform .3s;
}
.overlay li.to_top {
  background: rgb(15, 209, 15);
  border-radius: 8px;
  padding: 8px;
}
.overlay ul.hanami_all li:last-child {
  margin-top: 8px;
}
.overlay li.port {
  background: rgb(34, 15, 209);
  border-radius: 8px;
  padding: 8px;
}
.overlay li.to_top a, .overlay li.port a{
  color: #fff;
}
.overlay.show li {
  opacity: 1;
  transform: none;
}
.overlay.show ul.minimenu li:nth-child(1) {
  transition-delay: .1s;
}
.overlay.show ul.minimenu li:nth-child(2) {
  transition-delay: .2s;
}
.overlay.show ul.hanami_all li:last-child {
  transition-delay: .3s;
}
.overlay.show li.port {
  transition-delay: .4s;
}

/* main */
main {
  margin: 40px auto;
}

/* hero */
#hero {
  color: #fff;
}
.hero {
  width: 100%;
  margin: 0 auto;
  /* min-height: calc(100vh - 40px); */
  padding: 48px 0;
}
.hero h1 {
  padding-bottom: 16px;
}
.hero .carousel {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}
.hero ul {
  height: 100%;
  display: flex;
  transition: transform .6s;
}
.hero li {
  height: 100%;
  min-width: 100%;
}
.hero ul li img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 画像の縦横比を維持して目いっぱい表示する */
  position: relative;
  z-index: 1;
}
.hero #prev, .hero #next {
  position: absolute;
  top: 50%; /* 親の高さの50% */
  transform: translateY(-50%); /* このオブジェクトの高さの50% */
  border: none;
  background: rgba(0, 0, 0, .8);
  color: #fff;
  font-size: 24px;
  padding: 0 8px 4px;
  cursor: pointer;
}
.hero #prev:hover, .hero #next:hover {
  opacity: .8;
}
.hero #prev {
  left: 0;
}
.hero #next {
  right: 0;
}
.hero nav {
  margin: 16px auto;
  text-align: center;
}
.hero nav button {
  border: none;
  width: 16px;
  height: 16px;
  background: #ddd;
  border-radius: 50px;
  cursor: pointer;
}
.hero nav button.current {
  background: #999;
}
.hero nav button + button {
  margin-left: 8px;
}
.hero p.lastupdate {
  text-align: right;
  font-style: italic;
  font-size: 14px;
  color: darkslategray;
}
.hero .desc {
  margin-top: 20px;
}
.hero p.red {
  color: black;
  text-decoration: rgb(8, 109, 34) wavy underline;
  display: block;
  margin: 10px auto;
  padding: 10px;
  border: red solid 8px;
  border-radius: 8px;
  text-align: center;
}
.hero p.orange {
  color: black;
  text-decoration: rgb(223, 45, 45) solid underline 4px;
  display: block;
  margin: 10px auto;
  padding: 10px;
  border: orange solid 8px;
  border-radius: 8px;
  text-align: center;
}
.hero .button_menu a {
  display: block;
  width: 180px;
  text-align: center;
  background: rgba(255, 136, 0, 0.95);
  border-radius: 10px;
  margin: 0 auto;
  padding: 12px;
  box-shadow: 4px 4px #7a0000;
  font-size: 1.4rem;
}
.hero .button_menu a:active {
  box-shadow: 1px 1px #7a0000;
  transform: translate(3px, 3px);
}

/* menu */
.menu {
  background: skyblue;
  padding: 48px 0;
  text-align: center;
}
.menu .clickover {
  display: block;
  margin-bottom: 16px;
}
.menu .click_exp {
  text-align: center;
  margin: 0 auto 8px;
}
.menu .clickablemap {
  display: block;
  width: 300px;
  /* border: pink solid 8px; */
  border-radius: 8px;
  overflow: hidden;
  margin: 16px auto;
}
.menu .ready {
  display: block;
  width: 300px;
  max-width: 100%;
  height: 250px;
  border-radius: 4px;
  background: #ff42c6;
  color: rgba(255, 255, 255, 0.9);
  margin: 16px auto;
}
.menu .icon_exp {
  width: 280px;
  height: auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 4px;
  margin: 0 auto;
  padding: 8px;
}
.menu .icon_exp img {
  width: 30px;
  vertical-align: middle;
  padding-right: 4px;
}
.menu .ready p {
  padding-top: 120px;
}
.menu nav ul.hanami_all {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 90%;
  margin: 0 auto;
}
.menu nav ul.hanami_all > li {
  display: block;
  margin: 5px;
  padding: 10px;
  border-radius: 4px;
  background: rgba(200, 255, 200, .95);
}
.menu nav ul.hanami_all > li:last-child {
  display: block;
  margin: 10px 10px 0;
  padding: 0;
  background: rgba(255, 255, 255, 0);
  /* text-align: left; */
}
.menu nav ul.extra {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}
.menu nav ul.extra > li {
  display: block;
  margin: 5px;
  padding: 10px;
  border-radius: 4px;
  background: rgba(200, 255, 200, .95);
}

/* spots */
main section#u_m_target > section  {
  padding: 48px 0;
}
main section > div.container {
  text-align: center;
}
main h2 {
  padding: 24px 4px 20px;
}
main .spots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
main .spots img {
  width: 300px;
}
main .spots img.portrait {
  width: 200px;
}
main .spots div {
  margin: 10px;
}
main .spots .map {
  width: 300px;
  height: 0;
  overflow: hidden;
  padding-bottom: 230px;
  position: relative;
}
main .spots .map iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.kogita, .yono4go, .takeda, .kaishu {
  background: hsla(60, 100%, 90%, .95);
}
.kamioguchi, .yono5go, .nokyo, .tenjin {
  background: hsla(120, 100%, 90%, .95);
}
.tasedai, .yono6go, .horiozeki, .sakuraduka {
  background: hsla(180, 100%, 90%, .95);
}
.joshi, .yonochuo, .gojo, .comment {
  background: hsla(240, 100%, 90%, .95);
}
.yono2go, .hakusan, .bihoku {
  background: hsla(300, 100%, 90%, .95);
}
.yono3go, .hutatsuya, .sakuranohana {
  background: hsla(360, 100%, 90%, .95);
}
main .gojo h1 {
  padding-bottom: 16px;
}

/* comment */
.comment {
  padding: 48px 0;
}

/* footer */
footer {
  margin-bottom: 36px;
}
footer a {
  display: block;
  font-size: 14px;
  padding-top: 10px;
  text-align: center;
  color: #000;
}
footer small {
  display: block;
  font-size: 10px;
  padding-top: 24px;
  text-align: center;
  color: #aaa;
}

/* up_arrow */
#up_arrow {
  position: fixed;
  bottom: 16px;
  right: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  font-size: 16px;
  background-color: #628314;
  color: #fff;
  border-radius: 8px;
  text-align: center;
  width: 50px;
  height: 50px;
}
#up_arrow.scrolled {
  opacity: 1;
  pointer-events: auto;
}
#up_arrow i {
  font-size: 32px;
  color: #628314;
  background-color: #fff;
  border-radius: 50%;
  border: 0;
  /* padding: -24px;
  margin: -24px; */
}

/* up_menu */
#up_menu {
  position: fixed;
  bottom: 16px;
  right: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  font-size: 16px;
  background-color: #026b51;
  color: #fff;
  border-radius: 8px;
  text-align: center;
  width: 50px;
  height: 50px;
  z-index: 10;
}
#up_menu.scrolled {
  opacity: 1;
  pointer-events: auto;
}
#up_menu i {
  font-size: 32px;
  color: #026b51;
  background-color: #fff;
  border-radius: 50%;
  border: 0;
  /* padding: -24px;
  margin: -24px; */
}

/* mini screen */
@media (max-width:300px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.8rem;
  }
  h3 {
    font-size: 1.4rem;
  }
  p {
    font-size: 1rem;
  }
  .desc p {
    text-indent: 0;
  }
  header .container {
    width: 100%;
  }
  .overlay #close {
    left: 16px;
  }
  .overlay {
    padding: 8px;
  }
  .overlay .hanami_all, .overlay .extra {
    gap: 4px;
  }
  .hero, .menu, main section#u_m_target > section, .comment {
    padding: 36px 0;
  }
  .hero nav {
    margin: 8px auto;
  }
  main h2 {
    padding: 28px 4px 0;
  }
  .menu .clickablemap, main .spots img {
    width: 250px;
    margin: 8px auto;
  }
  .menu .icon_exp {
    width: 230px;
  }
  .menu nav ul.hanami_all {
    width: 100%;
  }
  .menu nav ul.hanami_all > li, .menu nav ul.extra > li {
    margin: 4px;
    padding: 4px;
  }
  main .spots .map {
    margin: 0;
    padding-bottom: 200px;
  }
}

/* middle screen */
@media (min-width:600px) {
  h1 {
    font-size: 2.4rem;
  }
  h2 {
    font-size: 2.2rem;
  }
  h3 {
    font-size: 2rem;
  }
  header .container {
    width: calc(100% - 32px);
  }
  .overlay {
    padding: 80px;
  }
  .overlay #close {
    left: 32px;
  }
  .overlay li {
    margin-top: 16px;
  }
  .menu .clickover {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
  }
  .menu .clickablemap {
    margin: 0;
  }
  .menu .icon_exp {
    margin: 0;
  }
}

/* large screen */
@media (min-width:800px) {
  h1 {
    font-size: 2.6rem;
  }
  h2 {
    font-size: 2.4rem;
  }
  h3 {
    font-size: 2.2rem;
  }
  .overlay {
    padding: 100px;
  }
  .overlay #close {
    left: 48px;
  }
  main .spots img {
    width: 360px;
  }
  main .spots img.portrait {
    width: 300px;
  }
  main .spots .map {
    width: 360px;
    padding-bottom: 270px;
  }
}