@charset "utf-8";

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");

/* CSS Document */
:root {
  --content-color-base: #2c2a29;
  --content-color-blue: #0e56c2;
  --content-color-khaki: #7c6c3b;
  --bg-img-setting: no-repeat center center / contain;
  --content-width-sp: calc(336vw / 3.75);
  --content-width-pc: 1104px;
  --content-width: min(var(--content-width-sp), var(--content-width-pc));
  --content-bg-width-pc: max(100%, 1920px);
  --font-size-pc: 14px;
  --font-size-sp: calc(14vw / 3.75);
  --font-sans: "Noto Sans JP", serif;
  --font-serif: "Noto Serif JP", serif;
  --content-font-size: min(var(--font-size-sp), var(--font-size-pc));
  --content-hover-speed: 0.3s;
  --content-arrow-down: url(/cmn/icon2/expand_more.svg);
  --content-arrow-right: url(/cmn/icon2/chevron_right.svg);
  --content-border-1: 1px solid;
  --content-border-dash1: 1px dashed;
}

.is-sp,
.is-tb {
  display: none;
}
.main {
  font-family: var(--font-sans);
  font-size: var(--content-font-size);
  color: var(--content-color-base);
  line-height: 1.3;
  position: relative;
}
.main * {
  box-sizing: border-box;
}
.inner {
  width: var(--content-width);
  margin: auto;
  position: relative;
}
a {
  transition: var(--content-hover-speed);
}

/***** タイトル・ナビ *****/
.mv-wrapper {
  width: 100%;
  height: 560px;
  background: url("../img/pc_ttl_bg.jpg") no-repeat center top;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 40px;
}
.title-logo {
  text-align: center;
}
.copy-area {
  background: url(../img/pattern01.png) repeat;
  padding: 16px 0;
}
.copy-area > .inner {
  text-align: center;
  display: grid;
  gap: 8px;
  margin: auto;
}
.catchcopy {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}
.bodycopy {
  color: #fff;
  line-height: 1.5;
}
.nav-wrapper {
  width: 100%;
  background: var(--content-color-blue);
}
.nav-wrapper > .inner {
  padding: 8px 0;
}
.nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.nav-list > li {
  padding-right: 16px;
  border-right: var(--content-border-1) #fff;
}
.nav-list > li:first-child {
  border-left: var(--content-border-1) #fff;
  padding-left: 16px;
}
.nav-list > li > a {
  display: block;
  padding: 8px 4px 24px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  position: relative;
}
.nav-list > li > a::after {
  content: "";
  -webkit-mask: var(--bg-img-setting);
  mask: var(--bg-img-setting) var(--content-arrow-down);
  background: #fff;
  width: 32px;
  height: 32px;
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  margin: auto;
}
.nav-list > li > a:hover {
  background: #1a8ec9;
}
@media (768px <= width <= 1024px) {
  .mv-wrapper .inner {
    width: var(--content-width);
  }
}

.main-container {
  background: #fdf9e1;
  padding-top: 64px;
}
.content-wrapper {
  padding-bottom: 64px;
}
.content-wrapper .inner {
  display: grid;
  gap: 16px;
}
.head-title {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.head-title::before {
  content: "";
  background: var(--bg-img-setting) url("../img/ttlBgimg_left.png");
  width: 60px;
  height: 80px;
  display: block;
}
.head-title::after {
  content: "";
  width: 60px;
  height: 80px;
  background: var(--bg-img-setting) url("../img/ttlBgimg_right.png");
  display: block;
}

.title-txt {
  font-size: 36px;
  font-weight: 900;
  color: var(--content-color-blue);
}
.title-sub {
  display: block;
  font-size: 60%;
  color: var(--content-color-khaki);
}
.note-txt {
  display: block;
  padding-left: 1em;
  text-indent: -1em;
  font-size: 12px;
}
.is-fit {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.note-txt > a {
  text-decoration: underline;
  color: #3064d5;
}

/*** 商品カセット・ボタン ***/
.more-link {
  width: 600px;
  margin: 24px auto 0;
}
.more-link > a {
  display: block;
  border-radius: 100px;
  background: var(--content-color-khaki);
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  padding: 16px;
  position: relative;
}
.more-link > a::after {
  content: "";
  -webkit-mask: var(--bg-img-setting);
  mask: var(--bg-img-setting) var(--content-arrow-right);
  background: #fff;
  width: 32px;
  height: 32px;
  position: absolute;
  top: 0;
  right: 8px;
  bottom: 0;
  margin: auto;
}
.more-link > a:hover {
  opacity: 0.8;
}

/*** ネモフィラ情報 ***/
.info-content {
  display: grid;
  gap: 24px;
}
.info-box {
  display: grid;
  gap: 8px;
}
.info-title {
  font-size: 18px;
  font-weight: bold;
  color: var(--content-color-blue);
}
.info-txt {
  line-height: 1.5;
}
.season-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: flex-start;
}
.season-list.is-none {
  display: none;
}
.season-list > li {
  display: grid;
  gap: 8px;
}
.season-img {
  position: relative;
}
.img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(14 86 194 / 80%);
  padding: 4px;
  color: #fff;
}
.season-txt {
  font-size: 12px;
  line-height: 1.8;
}

/*** 花の名所 ***/
.content-wrapper.flower {
  background: #d9f2ff;
  padding-top: 64px;
}
.spot-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.spot-list > li {
  background: #fff;
  box-shadow: 0 2px 4px rgb(0 0 0 / 15%);
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 5;
  gap: 8px;
  padding: 0 8px 8px;
}
.spot-img {
  width: calc(100% + 16px);
  height: 170px;
  margin: 0 -8px;
}
.spot-item {
  display: contents;
}
.spot-name {
  font-size: 20px;
  font-weight: bold;
  color: var(--content-color-blue);
}
.spot-name > span {
  display: block;
}
.spot-season {
  font-weight: bold;
}
.spot-txt {
  line-height: 1.5;
}
.spot-link {
  width: 100%;
  margin-top: auto;
}
.spot-link > a {
  display: block;
  background: var(--content-color-khaki);
  border-radius: 8px;
  padding: 8px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}
.spot-link > a:hover {
  opacity: 0.8;
}
.spot-link > .no-link {
  background: #515760;
  pointer-events: none;
}
.spot-link > a[href=""] {
  background: none;
  color: var(--content-color-khaki);
  pointer-events: none;
}

/*** 検索モジュール ***/
.content-wrapper.search {
  padding-top: 64px;
}
.content-wrapper.search .inner {
  display: block;
  max-width: 992px;
  margin: auto;
}

@media (768px <= width <= 1024px) {
  .content-wrapper.search .inner {
    width: min(var(--content-width), 992px);
  }
}
