@charset "UTF-8";
/* ------------------------default */
html {
  margin: 0;
  padding: 0;
  font-size: 62.5%; /* 1rem = 10px, デフォルト16pxを基準にリセット */
  /* scroll-behavior: smooth; */
}

/* --------------
reset
-------------- */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block;
}

body,
div,
dl,
dt,
dd,
ol,
ul,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
section,
nav,
article,
aside,
header,
footer,
figure,
figcaption,
details,
summary,
menu {
  margin: 0;
  padding: 0;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  vertical-align: middle;
}

ol,
ul,
menu {
  list-style: none;
}

/* -----------table */
table {
  border-collapse: collapse;
  width: 100%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

th,
td {
  border: 1px solid #d0d0d0;
  padding: 1em;
  text-align: left;
}

/* -----------img */
img,
video {
  max-width: 100%;
  height: auto;
}

/* --------------
base
-------------- */
body {
  width: 100%;
  font-size: 1.6rem;
  color: #333;
  font-family: "dnp-shuei-mgothic-std", "Noto Sans JP", sans-serif, "Hiragino Sans", "Arial";
  display: flex;
  flex-direction: column;
  background: #ffffff;
  text-align: left;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.7;
}

/* --------------
flex
-------------- */
.flex-column--0 {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.flex-column--1 {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.flex-column--2 {
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.flex-column--4 {
  display: flex;
  flex-direction: column;
  gap: 4em;
}

/* --------------
Link
-------------- */
a {
  text-decoration: none;
  color: #333;
}

a:hover {
  /* color: #e98e0f; */
}

a:hover img {
  opacity: 0.6;
}

/* ---------- align */
.alc {
  text-align: center;
}

.alr {
  text-align: right;
}

.all {
  text-align: left;
}

.alt {
  vertical-align: top;
}

.alb {
  text-align: bottom;
}

/* ---------- margin,padding */
.m-auto {
  margin: 0 auto;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20p;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb35 {
  margin-bottom: 35px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb45 {
  margin-bottom: 45px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb55 {
  margin-bottom: 55px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb70 {
  margin-bottom: 70px;
}

.bold {
  font-weight: bold;
}

/* ---------- font-size */
.fs22 {
  font-size: 2.2rem;
}

.fs14 {
  font-size: 1.4rem;
}

.normal {
  font-size: 1.6rem;
}

.ttl--h3 {
  font-size: 1.8rem;
}

.ttl--h4 {
  font-size: 1.6rem;
}

/*------color */
.color--red {
  color: #db1c1c;
}

.color--white {
  color: #fff;
}

.color--pink {
  color: #ed7a90;
}

.underline--yellow {
  background-image: linear-gradient(rgba(0, 0, 0, 0) 70%, rgba(252, 245, 145, 0.6784313725) 70%);
}

/*-------- back color */
.back--yellow {
  background-color: #fcf26a;
}

.back--blue {
  background-color: #6cb7b5;
}

.back--gray {
  background-color: #888888;
  color: #fff;
  padding: 0.15em 0.1em 0.1em 0.5em;
  border-radius: 4px;
  margin-bottom: 0.5em;
  display: inline-block;
  font-size: 1.4rem;
}

.back--gray span {
  background-color: #fff;
  padding: 0.2em 0.5em;
  color: #888;
  border-radius: 0 4px 4px 0;
  margin-left: 0.5em;
}

.border--red {
  border: 1px solid #c71c30;
  text-align: center;
  color: #c71c30;
  border-radius: 30px;
  width: 40%;
}

.radius--white {
  background-color: #fff;
  border-radius: 40px;
  display: inline-block;
  padding: 0.5em;
}

/*-------- dots */
.dots::before,
.dots::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: #333;
  border-radius: 50%;
}

.dots::before {
  top: 10px;
  left: 10px;
}

.dots::after {
  top: 10px;
  right: 10px;
}

/* --------------fadein */
.fade-in {
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
  transform: translateY(100px);
}

.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* --------------animation */
.fuwafuwa {
  animation: fuwafuwa 4s ease-in-out infinite alternate;
  -webkit-animation: fuwafuwa 4s ease-in-out infinite alternate;
}

@keyframes fuwafuwa {
  0% {
    transform: translate(0, 0) rotate(-7deg);
  }
  50% {
    transform: translate(0, -7px) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(7deg);
  }
}
/* --------------Top-------------- */
.main {
  flex-grow: 1;
}

.contents {
  position: relative;
  padding: clamp(24px, 6vw, 48px) clamp(8px, 4vw, 40px);
}

/* --------------header-------------- */
.background__left,
.background__right {
  width: calc((100% - var(--content-width)) * 0.5);
  --content-width: 35vw;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* ロゴ左 */
.background__left img {
  width: 24vw;
  position: absolute;
  top: 35%;
  right: 16%;
}

/* ナビ右 */
.background__right {
  right: 0;
  top: 0;
  position: absolute;
  z-index: 1;
}

.background__right .header__nav {
  position: absolute;
  top: 28%;
  left: 10%;
}

.header__nav--list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 1.5em 1em;
  gap: 2em;
}

.header__nav--item {
  position: relative;
  writing-mode: vertical-rl;
  text-align: center;
}

.header__nav--item::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  aspect-ratio: 1/1;
  background-color: #6cb7b5;
  border-radius: 50%;
}

.header__nav--item a {
  display: block;
  height: 30vh;
  padding: 2em 1em;
  background-color: #fff;
  border: 2px solid #333;
  border-radius: 50px;
  cursor: pointer;
  font-weight: bold;
}

/* ----slide----- */
#vanilla-slider {
  position: relative;
  width: 100%;
  height: 46vh;
}

.vanilla-slide {
  position: absolute;
  width: 90%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0;
  transition: opacity 1s;
}

.vanilla-slide.show {
  opacity: 1;
}

/* ----------main-visual-------------- */
.main-visual {
  background: #6cb7b5;
  /* margin-bottom: 3em; */
}

.main-visual::before {
  content: "";
  position: absolute;
  top: 1em;
  left: 0;
  width: 100%;
  height: 40px;
  background: url(../img/mv_back-top.png) no-repeat center center;
  background-size: contain;
}

.main-visual::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 25px;
  background: url(../img/mv_back-bottom.png) repeat-x center center;
  background-size: contain;
}

.main-visual__logo {
  margin: 0 auto;
}

.main-visual__wrap {
  position: relative;
}

.main-visual__wrap::before {
  content: "";
  position: absolute;
  top: 2em;
  left: -1em;
  width: 32%;
  height: 8%;
  background: url(../img/mv_left.png) no-repeat center center;
  background-size: contain;
  z-index: 2;
}

.main-visual__wrap::after {
  content: "";
  position: absolute;
  bottom: 1em;
  right: 0;
  width: 30%;
  height: 15%;
  background: url(../img/mv_right.png) no-repeat center center;
  background-size: contain;
  z-index: 1;
}

.main-visual__content {
  position: relative;
}

.main-visual::after {
  content: "";
  position: absolute;
  bottom: -21%;
  left: 50%;
  transform: translateX(-50%);
  width: 45%;
  height: 330px;
  background: url(../img/about_aoshima.png) no-repeat center center;
  background-size: contain;
  z-index: 1;
}

.main-visual__content--left,
.main-visual__content--right {
  writing-mode: vertical-rl;
  position: absolute;
  font-size: 1.8rem;
  color: #3e7e7c;
  background-color: #fff;
  border: 2px solid #6cb7b5;
  padding: 1em 0.3em;
  border-radius: 0 16px 0 16px;
  z-index: 2;
}

.main-visual__content--left {
  left: 28px;
  bottom: -1em;
}

.main-visual__content--right {
  right: 28px;
  top: -1em;
}

.main-visual__img {
  margin: 2em 0 6em;
  display: flex;
  justify-content: center;
}

.main-visual__txt {
  position: absolute;
  top: 28%;
}

.main-visual__txt--left {
  left: -1em;
}

.main-visual__txt--right {
  right: -1em;
}

/* ------------- about ------------- */
.about__wrap {
  font-size: 2rem;
  margin: 0 auto;
  line-height: 2;
  font-weight: bold;
}

/* ------------- campaign ------------- */
.campaign__wrap {
  position: relative;
  background-color: #fcf26a;
  padding: 6em 0.5em 2em;
  margin-top: 6em;
  font-size: 2.2rem;
  text-align: center;
  border-radius: 40px 40px 0 0;
}

.campaign__wrap::before {
  content: "";
  position: absolute;
  top: -26%;
  left: 2%;
  width: 100%;
  height: 42%;
  background: url(../img/campaign_fuwafuwa.png) no-repeat center center;
  background-size: contain;
  animation: fuwafuwa 4s ease-in-out infinite alternate;
  -webkit-animation: fuwafuwa 4s ease-in-out infinite alternate;
}

.campaign__wrap .dots {
  position: relative;
}

/* ------------- map ------------- */
.map__wrap p {
  display: inline-block;
  padding: 0 0.3em;
  font-size: 1.8rem;
  background-color: #69b0ae;
}

.map__list {
  margin-top: 3em;
}

.map__list--detail {
  position: relative;
  border: 1px solid #333;
  padding: 1em 1em 2em;
  margin-left: 2.5em;
}

.map__list--yellow,
.map__list--orange {
  position: absolute;
  top: 0;
  left: -2.5em;
  max-width: 2em;
  line-height: 2em;
  height: 8em;
  writing-mode: vertical-rl;
  display: inline-block;
  text-align: center;
}

.map__list--yellow {
  background-color: #fff34f;
}

.map__list--orange {
  background-color: #f7dab7;
}

.map__list--item h3 {
  position: relative;
  padding-top: 1.5em;
}

.map__list--item h3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 1em;
}

.map__list--item:nth-child(1) h3::before {
  background: url(../img/no_01.png) no-repeat center center/contain;
}

.map__list--item:nth-child(2) h3::before {
  background: url(../img/no_02.png) no-repeat center center/contain;
}

.map__list--item:nth-child(3) h3::before {
  background: url(../img/no_03.png) no-repeat center center/contain;
}

.map__list--item:nth-child(4) h3::before {
  background: url(../img/no_04.png) no-repeat center center/contain;
}

.map__list--item:nth-child(5) h3::before {
  background: url(../img/no_05.png) no-repeat center center/contain;
}

.map__list--item:nth-child(6) h3::before {
  background: url(../img/no_06.png) no-repeat center center/contain;
}

.map__list--item:nth-child(7) h3::before {
  background: url(../img/no_07.png) no-repeat center center/contain;
}

.map__list--icon {
  position: relative;
  display: flex;
  align-items: center;
}

.map__list--icon::before {
  content: "";
  width: 29px;
  height: 23px;
  background: url(../img/icon_onsen.png) no-repeat center center;
  background-size: contain;
  display: inline-block;
  margin-right: 0.5em;
}

/* ------------- button ------------- */
.button {
  display: block;
  width: 200px;
  padding: 0.2em 0;
  position: absolute;
  bottom: -4%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  border: 1px solid #333;
  color: #333;
  border-radius: 30px;
  text-align: center;
  box-shadow: 6px 4px #ed7a90;
  transition: all 0.2s ease;
}

.button:hover {
  background-color: #ed7a90;
  color: #fff;
  box-shadow: 2px 2px #ed7a90;
  transform: translate(-50%, 2px);
}

.button::after {
  content: "";
  display: inline-block;
  margin-left: 0.5em;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #333; /* 矢印の色 */
  transition: transform 0.2s ease;
  /* vertical-align: middle; */
}

.button:hover::after {
  transform: translateX(4px);
  border-left: 8px solid #fff;
}

/* ------------- howto ------------- */
.howto {
  margin-top: 2em;
}

.howto__ttl {
  position: absolute;
  top: -7%;
  left: 50%;
  transform: translateX(-50%);
}

.howto__txt img {
  margin: 6em auto 0;
}

/* ------------- rule ------------- */
.rule {
  margin-top: 5em;
}

.rule__wrap {
  position: relative;
  text-align: center;
  padding-top: 6em;
  z-index: 1;
}

.rule__wrap::before {
  content: "";
  position: absolute;
  top: -15%;
  left: 50%;
  transform: translateX(-50%);
  width: 25%;
  height: 207px;
  background: url(../img/end_thanks.png) no-repeat center center;
  background-size: contain;
}

.rule .back--white {
  position: relative;
  background-color: #fff;
  border-radius: 16px;
  padding: 5em 1em 1em;
  margin-top: 3em;
}

.rule .back--white::before {
  content: "";
  position: absolute;
  right: -10px;
  bottom: -12px;
  width: 100%;
  height: 100%;
  border: 2px solid #fff;
  border-radius: 16px;
  z-index: -1;
}

.rule__img {
  position: absolute;
  top: -18%;
  left: 50%;
  transform: translateX(-50%);
}

/* ------------- another ------------- */
.another__wrap img {
  animation: fuwafuwa 4s ease-in-out infinite alternate;
  -webkit-animation: fuwafuwa 4s ease-in-out infinite alternate;
}

/* ------------- footer ------------- */
.footer {
  width: 100%;
  background-color: #69b0ae;
  /* margin-top: 4em; */
}

.footer__wrap {
  background-color: #fff;
  padding: 3em 2em;
  text-align: center;
  border-radius: 36px;
}

.footer__logo {
  margin: 0 auto;
}

.footer__copyright {
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
}

@media screen and (min-width: 768px) {
  /* pcで非表示 */
  .ifsp {
    display: none;
  }
  .pc-flex--2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2em;
  }
  .pc-grid--2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2em;
  }
  .pc-grid--3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2em;
  }
  .pc-grid--4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1em;
  }
  /* ------ hamburger menu */
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .background__left,
  .background__right {
    width: calc((100% - var(--content-width)) * 0.5);
    --content-width: 52vw;
  }
}
@media screen and (max-width: 767px) {
  /* spで非表示 */
  .ifpc {
    display: none;
  }
  html {
    -webkit-text-size-adjust: 100%;
    height: 100%;
  }
  .inner {
    width: 98%;
    margin-right: auto;
    margin-left: auto;
  }
  .sp-column--1 {
    display: flex;
    flex-direction: column;
    gap: 1em;
  }
  .sp-column--2 {
    display: flex;
    flex-direction: column;
    gap: 2em;
  }
  .sp-flex {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  /* ------ hamburger menu */
  .sp-nav {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
    padding-top: 5em;
  }
  .header__hamburger {
    height: 48px;
    aspect-ratio: 1/1;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
    position: fixed;
    right: 1%;
    top: 4px;
    z-index: 1000;
  }
  .header__menu--border {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 18px;
    position: relative;
  }
  .header__hamburger--line {
    background-color: #333;
    width: 100%;
    height: 2px;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  /* ------ hamburger menu active */
  .sp-nav.active {
    transform: translateX(0);
  }
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 5px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -5px);
  }
  /* ロゴ左 */
  .background__left img {
    display: none;
  }
  /* ナビ右 */
  .background__right .header__nav {
    display: none;
  }
} /*# sourceMappingURL=style.css.map */