﻿/* コピペ用コード */
.box-shadow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333333;
  background-color: #dddddd;
  font-size: 30px;
  width: 300px;
  height: 100px;
  border-radius: 3px;
  box-shadow: 8px 8px 12px 0px rgba(84, 32, 10, 0.2);
}
.font-size-dummy {
  font-size: .75rem; /* 12px */
  font-size: .8125rem; /* 13px */
  font-size: .875rem; /* 14px */
  font-size: 1rem; /* 16px */
  font-size: 1.125rem; /* 18px */
  font-size: 1.25rem; /* 20px */
  font-size: 1.5rem; /* 24px */
  font-size: 1.75rem; /* 28px */
  font-size: 2rem; /* 32px */
  font-size: 2.63rem; /* 42px */
  font-size: 3rem; /*48px*/
  font-size: 3.5rem; /* 56px */
}
/*-----------------------------------------------------------------------common*/ :root {
  --white: #ffffff;
  --black: #54200A;
  --orange: #FF921E;
  --red: #C1272D;
  --green: #2C825A;
  --cream: #FFFBF1;
  --dark-cream: #F9EED2;
  --deco-red: #E4897D;
  --deco-yellow: #ECDC79;
  --deco-pink: #E5B6CF;
  --deco-blue: #C2E3E8;
  --deco-purple: #CEAEE6;
  --deco-orange: #F6B46D;
  --deco-green: #9BC7A0;
  --font-main: "fot-tsukuardgothic-std", sans-serif;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-bold: 700;
  --height-large: 2;
  --height-normal: 1.7;
  --height-narrow: 1.5;
  --shadow: 6px 6px 8px 0px rgba(84, 32, 10, 0.4);
  --shadow02: 8px 8px 12px 0px rgba(84, 32, 10, 0.4);
  --shadow03: 6px 6px 8px rgba(84, 32, 10, 0.4);
  --shadow04: 3px 3px 4px rgba(84, 32, 10, 0.4);
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
}
.tb, .sp, .small-pc {
  display: none;
}
.container {
  position: relative;
  font-family: var(--font-main);
  font-weight: var(--weight-regular);
  font-style: normal;
  font-size: 1.125rem;
  line-height: var(--height-normal);
  color: var(--black);
  width: 100%;
}
.container p {
  line-height: var(--height-large);
}
.bg {
  position: relative;
  z-index: -1;
}
.bg::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* 画像の設定をここに移動 */
  background-image: url("../img/bg_content.webp");
  background-repeat: repeat;
  background-position: center; /* 必要であれば */
  /* background-blend-mode ではなく、要素自体を合成するこれを使う */
  mix-blend-mode: multiply;
  /* 重要：操作の邪魔にならないようにする */
  pointer-events: none;
  /* 背景色の上、かつ文字の下に来るように調整 */
  /* 文字（.container）が position: relative を持っていればこれでOK */
  z-index: -1;
}
.bg01 {
  background-color: var(--cream);
}
.bg02 {
  background-color: var(--dark-cream);
}
.all-container {
  position: relative;
}
.all-container img {
  width: 100%;
}
section {
  position: relative;
  z-index: 0;
}
/*-------------------- pankuzu */
#pankuzu ul {
  font-family: var(--font-main);
  font-weight: var(--weight-regular);
  font-style: normal;
  overflow: auto;
  padding: 0 10px;
  _zoom: 1;
}
#pankuzu li {
  float: left;
  list-style: none;
}
#pankuzu li + li:before {
  margin: 0 8px;
  content: '>';
}
/*-------------------- top-v */
#top-v .container{
    position: relative;
    width: 100%;
    height: 550px;
}
#top-v .swiper img {
  object-fit: cover;
  object-position: center;
  height: 550px;
}
.swiper {
  width: 100%;
  height: 100%;
}
.swiper-wrapper{
    transition-timing-function: linear;
}
.swiper-slide {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-item{
    position: relative;
}
.add-text{
    position: absolute;
    left: 50px;
    bottom: 0;
    color: var(--white);
}
#top-v .title {
  position: absolute;
  top: 20px;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 400px;
  width: 90%;
  margin: 0 auto;
  z-index: 100;
}
.c-logo {
  width: 150px;
  margin: 0 0 0 -150px;
}
#top-v h1 {
  margin: 0 auto;
  max-width: 400px;
  width: 90%;
}
/*-------------------- period */
#period .wrapper {
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
  padding: 4em 0;
}
#period .wrapper .period-list {
  display: grid;
  grid-template-columns: 1fr 2fr;
  place-items: center;
  width: 100%;
  margin: 1.5em auto;
  box-shadow: var(--shadow);
}
#period .wrapper .period-list li {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100px;
  background-color: var(--white);
}
#period .wrapper .period-list li:nth-child(1) {
  background-color: var(--orange);
}
#period .wrapper h2 {
  font-size: 1.75rem;
  color: var(--white);
  padding: 1em 1em;
}
#period .wrapper .period-list li div {
  padding: 1em 1em;
}
#period .wrapper .period-list li div p {
  line-height: var(--height-normal);
}
#period .wrapper .date {
  font-size: 1.5rem;
  color: var(--red);
  font-weight: var(--weight-bold);
}
.link-list {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 2em;
  margin: 4em auto 0;
}
.link-stay {
  position: relative;
  width: 100%;
}
.link-stay a {
  position: relative;
  display: block;
  color: var(--white);
  font-size: 1.5rem;
  max-width: 800px;
  width: 100%;
  height: 120px;
  margin: 0 auto;
  background: var(--green);
  transition: .5s all ease-out;
  box-shadow: var(--shadow);
}
.link-green a {
  background: var(--green);
}
.link-red a {
  background: var(--red);
}
.link-stay .link-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.link-stay .link-item p{
  line-height: var(--height-normal);
  text-align: center;
  padding: .5em 0;
}
.link-stay .link-img {
  position: absolute;
  bottom: 0;
  left: auto;
  right: 0;
  width: auto;
  height: 90px;
}
.link-stay .link-img img {
  width: auto;
  height: 90px;
}
/*-------------------- about */
#about {
  position: relative;
  z-index: 10;
}
#about .container {
  position: relative;
  width: 100%;
  overflow-x: clip;
  z-index: 10;
}
#about .right-img {
  position: absolute;
  top: -100px;
  left: auto;
  right: -100px;
}
#about .right-img::after {
  content: '';
  position: absolute;
  top: auto;
  bottom: -50px;
  left: -50px;
  right: auto;
  background-color: var(--deco-yellow);
  width: 240px;
  height: 210px;
  border-radius: 50%;
  overflow: hidden;
  z-index: -1;
}
#about .right-img div {
  position: relative;
  width: 28vw;
  height: 24vw;
  border-radius: 50%;
  box-shadow: var(--shadow02);
  overflow: hidden;
}
#about .right-img img {
  position: absolute;
  top: -60px;
  left: -120px;
  display: block;
  object-fit: cover;
  width: auto;
  height: 120%;
}
#about .left-img {
  position: absolute;
  bottom: -50px;
  left: -100px;
  right: auto;
}
#about .left-img::after {
  content: '';
  position: absolute;
  top: -50px;
  left: auto;
  right: -50px;
  background-color: var(--deco-red);
  width: 240px;
  height: 210px;
  border-radius: 50%;
  overflow: hidden;
  z-index: -1;
}
#about .left-img div {
  position: relative;
  width: 28vw;
  height: 24vw;
  border-radius: 50%;
  box-shadow: var(--shadow02);
  overflow: hidden;
}
#about .left-img img {
  position: absolute;
  top: -60px;
  left: -120px;
  display: block;
  object-fit: cover;
  width: auto;
  height: 120%;
}
#about .wrapper {
  position: relative;
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
  padding: 4em 0;
}
#about h2 {
  display: block;
  font-size: 2rem;
  text-align: center;
  max-width: 450px;
  margin: 0 auto 1.5em;
  background-color: var(--black);
  color: var(--white);
  font-weight: var(--weight-regular);
  padding: .3em 0;
}
#about ul {
  margin: 0 auto 1em;
}
#about ul li {
  font-size: 1.5rem;
  font-weight: var(--weight-bold);
  color: var(--red);
  margin: 0 auto .2em;
}
/*-------------------- example */
#example .wrapper {
  position: relative;
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  padding: 5em 0;
}
#example h2 {
  position: relative;
  left: auto;
  right: -20px;
  width: 170px;
  margin: 0 0 2em auto;
  transform: rotate(10deg);
}
#example .wrapper ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 2em;
}
#example .wrapper ul li {
  position: relative;
  background-color: var(--white);
  text-align: center;
  box-shadow: var(--shadow02);
}
#example .wrapper ul li h3 {
  color: var(--white);
  background-color: var(--red);
  font-size: 1.5rem;
  padding: 1em 1em;
}
#example .wrapper ul li .middle {
  position: relative;
  padding: 1.5em 0;
  height: 430px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
#example .wrapper ul li p {
  font-size: 1.375rem;
  line-height: 1.3;
}
#example .wrapper ul li .p-second {
  margin: .5em 0 0;
}
#example .wrapper ul li p .col-red {
  display: block;
  font-size: 3.5rem;
  color: var(--red);
  font-weight: var(--weight-bold);
  margin: .1em 0 0;
}
#example .wrapper ul li p .small {
  font-size: 2rem;
}
#example .reason{
    display: block;
    width: 60%;
    margin: 1.5em auto 0;
}
/*-------------------- recommended-sightseeing*/
#recommended-sightseeing .wrapper {
  position: relative;
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  padding: 6em 0;
}
#recommended-sightseeing h2 {
  font-size: 2rem;
  text-align: center;
  margin: 0 0 4em;
}
#recommended-sightseeing .illust-list {
  position: relative;
}
#recommended-sightseeing .illust-list img {
  width: 250px;
  filter: drop-shadow(var(--shadow03));
}
#recommended-sightseeing .illust-list .illust01 {
  position: absolute;
  top: 300px;
  left: 30px;
  transform: rotate(-20deg);
}
#recommended-sightseeing .illust-list .illust02 {
  position: absolute;
  top: -50px;
  left: auto;
  right: 40px;
  transform: rotate(20deg);
}
#recommended-sightseeing .illust-list .illust03 {
  position: absolute;
  top: 800px;
  left: auto;
  right: 30px;
  transform: rotate(-10deg);
}
#recommended-sightseeing .spot-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 1.5em;
  grid-row-gap: 3em;
}
#recommended-sightseeing .spot-list li {
  position: relative;
  z-index: 2;
}
#recommended-sightseeing .spot-list .spot-img img {
  box-shadow: var(--shadow);
}
#recommended-sightseeing .spot-list h3 {
  position: relative;
  font-size: 1.75rem;
  margin: .5em 0 .2em;
  z-index: -1;
}
#recommended-sightseeing .spot-list li h3::after {
  position: absolute;
  top: -50px;
  left: 10px;
  content: '';
  width: 150px;
  height: 120px;
  background-color: var(--deco-yellow);
  border-radius: 50%;
  z-index: -1;
}
#recommended-sightseeing .spot-list li:nth-child(2) h3::after {
  background-color: var(--deco-pink);
}
#recommended-sightseeing .spot-list li:nth-child(3) h3::after {
  background-color: var(--deco-blue);
}
#recommended-sightseeing .spot-list li:nth-child(4) h3::after {
  background-color: var(--deco-purple);
}
#recommended-sightseeing .spot-list li:nth-child(5) h3::after {
  background-color: var(--deco-orange);
}
#recommended-sightseeing .spot-list li:nth-child(6) h3::after {
  background-color: var(--deco-green);
}
#recommended-sightseeing .note {
  text-shadow: 1px 1px 0 var(--white), -1px -1px 0 var(--white), -1px 1px 0 var(--white), 1px -1px 0 var(--white), 0px 1px 0 var(--white), 0-1px 0 var(--white), -1px 0 0 var(--white), 1px 0 0 var(--white);
  text-align: right;
  margin: 2em 0 0;
}
/*-------------------- link-contents*/
#link-contents .wrapper {
  position: relative;
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
  padding: 6em 0;
}
#link-contents h2 {
  font-size: 2rem;
  text-align: center;
  margin: 0 0 2em;
}
#link-contents .illust-list {
  position: relative;
}
#link-contents .illust-list img {
  width: 250px;
  filter: drop-shadow(var(--shadow03));
}
#link-contents .illust-list .illust01 {
  position: absolute;
  top: -50px;
  left: 120px;
  transform: rotate(-20deg);
}
#link-contents .illust-list .illust02 {
  position: absolute;
  top: 70px;
  left: auto;
  right: 150px;
  transform: rotate(20deg);
}
/*-------------------- Page-top */
#page-top {
  position: fixed;
  z-index: 100;
  right: 20px;
  bottom: 20px;
}
#page-top a {
  display: block;
  width: 80px;
  height: 65px;
  padding: 20px 10px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  border-radius: 10px;
  background: #ddd;
}
#page-top a:hover {
  text-decoration: none;
  background: #a5a5a5;
}