header .menu a img {
  filter: brightness(1);
}

nav {
  color: #fff;
}
nav.black {
  color: #222;
}

.topSlide .slide {
  width: 100%;
  height: 100vh;
  min-height: 550px;
  max-height: 800px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  .topSlide .slide {
    min-height: 500px;
    max-height: 500px;
  }
}
.topSlide .slide::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(34, 34, 34, 0.5);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.topSlide .slide span {
  display: block;
  width: 200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(50px);
}
@media screen and (max-width: 960px) {
  .topSlide .slide span {
    width: 150px;
  }
}
@media screen and (max-width: 668px) {
  .topSlide .slide span {
    width: 100px;
    padding-top: 50px;
  }
}
.topSlide .slide.slick-active span {
  animation: fadeIn2 6.5s ease;
  animation-delay: 0.5s;
}
@keyframes fadeIn2 {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  30% {
    opacity: 1;
    transform: translateY(0);
  }
  88% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-10px);
  }
}

.aboutArea {
  margin: 150px 0 50px;
  padding: 0 5vw;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 960px) {
  .aboutArea {
    margin: 70px 0 30px;
  }
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  .aboutArea {
    margin: 40px 0 0;
  }
}
.aboutArea .text {
  width: 50%;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 960px) {
  .aboutArea .text {
    width: 55%;
  }
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  .aboutArea .text {
    width: 100%;
  }
}
.aboutArea .text > div p {
  margin-bottom: 40px;
  line-height: 200%;
}
@media screen and (max-width: 960px) {
  .aboutArea .text > div p {
    margin-bottom: 20px;
    line-height: 170%;
  }
}
.aboutArea .photo {
  width: 42%;
}
@media screen and (max-width: 960px) {
  .aboutArea .photo {
    width: 40%;
  }
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  .aboutArea .photo {
    width: 85%;
    margin: 20px auto 0;
  }
}
.aboutArea .photo li:nth-child(1) {
  width: 56%;
  margin: 0 0 80px auto;
}
@media screen and (max-width: 960px) {
  .aboutArea .photo li:nth-child(1) {
    width: 75%;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  .aboutArea .photo li:nth-child(1) {
    width: 80%;
    margin-bottom: 25px;
  }
}
.aboutArea .photo li:nth-child(2) {
  width: 52%;
}
@media screen and (max-width: 960px) {
  .aboutArea .photo li:nth-child(2) {
    width: 70%;
  }
}

.newsArea {
  margin-bottom: 150px;
  position: relative;
  padding: 200px 8vw 100px 5vw;
}
@media screen and (max-width: 960px), (max-height: 650px) {
  .newsArea {
    padding-right: 5vw;
  }
}
@media screen and (max-width: 800px) {
  .newsArea {
    padding-top: 100px;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 668px) {
  .newsArea {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  .newsArea {
    margin-top: -50px;
  }
}
.newsArea::after {
  content: "";
  width: calc(100% - 5vw);
  height: 100%;
  background: url(../../common/images/bg_pattern.jpg);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  clip-path: polygon(0 0, 100% 300px, 100% 100%, 0 100%);
}
@media screen and (max-width: 960px), (max-height: 650px) {
  .newsArea::after {
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  .newsArea::after {
    clip-path: polygon(0 0, 100% 200px, 100% 100%, 0 100%);
    background-size: 300px auto;
  }
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  .newsArea::after {
    clip-path: polygon(0 0, 100% 100px, 100% 100%, 0 100%);
  }
}
.newsArea > section {
  max-width: 1200px;
  margin: 0 auto;
}
.newsArea > section .title {
  display: table;
  margin-bottom: 50px;
}
@media screen and (max-width: 668px) {
  .newsArea > section .title {
    margin-bottom: 25px;
  }
}
.newsArea > section .title h2 {
  font-size: clamp(36px, 100vw * 60 / 1200, 60px);
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  line-height: 100%;
  margin-bottom: 10px;
}
.newsArea > section .title .jp {
  text-align: right;
}
.newsArea > section .article {
  max-width: 900px;
}
.newsArea > section .article > div {
  display: flex;
  border-bottom: 1px solid rgba(34, 34, 34, 0.4);
  padding: 20px 10px;
}
.newsArea > section .article > div .date {
  width: 7em;
  letter-spacing: 1px;
}
.newsArea > section .article > div .tit {
  width: calc(100% - 7em);
}
.newsArea > section .article > div .tit a {
  display: block;
}
.newsArea > section .article .moreBtn {
  margin-top: 40px;
}
@media screen and (max-width: 668px) {
  .newsArea > section .article .moreBtn {
    margin-top: 20px;
  }
}
.newsArea > section .article .moreBtn a {
  margin-left: auto;
}

.mainArea {
  padding: 0 5vw;
}
.mainArea > section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 100px;
}
@media screen and (max-width: 960px) {
  .mainArea > section {
    margin-bottom: 50px;
  }
}
.mainArea > section .photo {
  width: 50%;
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  .mainArea > section .photo {
    width: 100%;
  }
}
.mainArea > section > div {
  width: 50%;
  padding: 50px 3vw 0 7vw;
}
@media screen and (max-width: 1367px) {
  .mainArea > section > div {
    padding: 20px 3vw 0 5vw;
  }
}
@media screen and (max-width: 960px) {
  .mainArea > section > div {
    width: calc(50% - 30px);
    padding: 20px 0 0;
  }
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  .mainArea > section > div {
    width: 100%;
  }
}
.mainArea > section > div .title {
  display: table;
  margin-bottom: 50px;
}
@media screen and (max-width: 960px) {
  .mainArea > section > div .title {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  .mainArea > section > div .title {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  .mainArea > section > div .title .en {
    padding-bottom: 10px;
  }
}
.mainArea > section > div .title .jp {
  text-align: right;
}
.mainArea > section > div .text {
  margin-left: 3vw;
}
.mainArea > section > div .text p:not(.moreBtn) {
  line-height: 200%;
  margin-bottom: 40px;
}
@media screen and (max-width: 960px) {
  .mainArea > section > div .text p:not(.moreBtn) {
    line-height: 170%;
    margin-bottom: 20px;
  }
}
.mainArea > section:nth-child(2n) {
  flex-direction: row-reverse;
}
.mainArea > section:nth-child(2n) > div {
  padding: 50px 3vw 0 1vw;
}
@media screen and (max-width: 1367px) {
  .mainArea > section:nth-child(2n) > div {
    padding: 20px 3vw 0 1vw;
  }
}
@media screen and (max-width: 960px) {
  .mainArea > section:nth-child(2n) > div {
    padding: 20px 0 0;
  }
}

.bicycleArea {
  margin-bottom: 100px;
  position: relative;
  padding: 200px 8vw 100px 5vw;
}
@media screen and (max-width: 960px), (max-height: 650px) {
  .bicycleArea {
    padding-right: 5vw;
  }
}
@media screen and (max-width: 800px) {
  .bicycleArea {
    padding-top: 100px;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 668px) {
  .bicycleArea {
    margin-bottom: 50px;
  }
}
.bicycleArea::after {
  content: "";
  width: calc(100% - 5vw);
  height: 100%;
  background: url(../../common/images/bg_pattern.jpg);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  clip-path: polygon(0 0, 100% 300px, 100% 100%, 0 100%);
}
@media screen and (max-width: 960px), (max-height: 650px) {
  .bicycleArea::after {
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  .bicycleArea::after {
    clip-path: polygon(0 0, 100% 200px, 100% 100%, 0 100%);
    background-size: 300px auto;
  }
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  .bicycleArea::after {
    clip-path: polygon(0 0, 100% 100px, 100% 100%, 0 100%);
  }
}
.bicycleArea > section {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.bicycleArea > section > div {
  width: 60%;
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  .bicycleArea > section > div {
    width: 100%;
  }
}
.bicycleArea > section > div .title {
  display: table;
}
.bicycleArea > section > div .title h2 {
  font-size: clamp(36px, 100vw * 60 / 1200, 60px);
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  line-height: 100%;
  margin-bottom: 10px;
}
.bicycleArea > section > div .title .jp {
  text-align: right;
}
.bicycleArea > section > div .text {
  margin-top: 50px;
  line-height: 200%;
}
@media screen and (max-width: 960px) {
  .bicycleArea > section > div .text {
    margin-top: 20px;
  }
}
.bicycleArea > section .photo {
  width: 37%;
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  .bicycleArea > section .photo {
    width: calc(100% - 20px);
    margin: 20px auto 0;
  }
}

.linkArea {
  padding: 0 5vw 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 668px) {
  .linkArea {
    padding-bottom: 50px;
  }
}
.linkArea > section {
  width: calc(50% - 40px);
  color: #fff;
  padding: 50px;
  height: 570px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 1200px) {
  .linkArea > section {
    width: calc(50% - 15px);
    height: 400px;
  }
}
@media screen and (max-width: 960px) {
  .linkArea > section {
    height: 300px;
    padding: 30px;
  }
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  .linkArea > section {
    width: 100%;
    height: 260px;
  }
  .linkArea > section:not(:last-child) {
    margin-bottom: 20px;
  }
}
.linkArea > section.sightseeing {
  background: url(../images/bg_photo_sightseeing.jpg) no-repeat center/cover;
}
.linkArea > section.faq {
  background: url(../images/bg_photo_faq.jpg) no-repeat center/cover;
}
.linkArea > section h2 {
  font-size: clamp(36px, 100vw * 60 / 1200, 60px);
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  line-height: 100%;
  margin-bottom: 20px;
}
.linkArea > section .jp {
  margin-bottom: 30px;
}

.flowArea {
  padding: 0 5vw 150px;
}
@media screen and (max-width: 960px) {
  .flowArea {
    padding-bottom: 70px;
  }
}
.flowArea > section {
  max-width: 1200px;
  margin: 0 auto;
}
.flowArea > section > h2 {
  font-size: clamp(24px, 100vw * 40 / 1200, 40px);
  text-align: center;
  margin-bottom: 70px;
}
@media screen and (max-width: 960px) {
  .flowArea > section > h2 {
    margin-bottom: 30px;
  }
}
.flowArea > section > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.flowArea > section > div > section {
  width: calc(25% - 30px);
  background: url(../images/bg_marble.jpg);
  border-radius: 200px;
  padding: 30px 30px 100px;
}
@media screen and (max-width: 1200px) {
  .flowArea > section > div > section {
    width: calc(25% - 12px);
    padding: 20px 25px 60px;
  }
}
@media screen and (max-width: 960px) {
  .flowArea > section > div > section {
    width: calc(25% - 12px);
    padding: 20px 25px 60px;
    background-size: 250px auto;
  }
}
@media screen and (max-width: 668px) {
  .flowArea > section > div > section {
    width: calc(25% - 10px);
    padding: 20px 10px 50px 15px;
  }
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  .flowArea > section > div > section {
    width: calc(50% - 10px);
    padding: 20px 20px 50px;
  }
  .flowArea > section > div > section:nth-child(n+3) {
    margin-top: 20px;
  }
}
.flowArea > section > div > section .number {
  font-size: clamp(36px, 100vw * 60 / 1200, 60px);
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  text-align: center;
  line-height: 100%;
  margin-bottom: 20px;
}
@media screen and (max-width: 960px) {
  .flowArea > section > div > section .number {
    margin-bottom: 10px;
  }
}
.flowArea > section > div > section .number::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background-color: #fff;
  border-radius: 50%;
  margin: 0 auto 10px;
}
.flowArea > section > div > section .pict {
  width: 90px;
  margin: 0 auto 20px;
}
@media screen and (max-width: 960px) {
  .flowArea > section > div > section .pict {
    width: 60px;
    margin-bottom: 10px;
  }
}
.flowArea > section > div > section h3 {
  font-size: clamp(17.6px, 100vw * 22 / 1200, 22px);
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 960px) {
  .flowArea > section > div > section h3 {
    margin-bottom: 10px;
  }
}
.flowArea > section > div > section .text {
  font-size: clamp(12px, 100vw * 15 / 1200, 15px);
}

.enjoyArea {
  padding: 0 5vw 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 668px) {
  .enjoyArea {
    padding-bottom: 50px;
  }
}
.enjoyArea > ul {
  width: 55%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 1367px) {
  .enjoyArea > ul {
    width: 46%;
  }
}
@media screen and (max-width: 960px) {
  .enjoyArea > ul {
    width: 35%;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  .enjoyArea > ul {
    width: 90%;
    margin: 0 auto 20px;
  }
}
.enjoyArea > ul li {
  width: 45%;
}
.enjoyArea > ul li:nth-child(1) {
  padding-bottom: 100px;
}
@media screen and (max-width: 1200px) {
  .enjoyArea > ul li {
    width: calc(50% - 15px);
  }
}
@media screen and (max-width: 960px) {
  .enjoyArea > ul li {
    width: 80%;
  }
  .enjoyArea > ul li:nth-child(1) {
    padding-bottom: 30px;
  }
  .enjoyArea > ul li:nth-child(2) {
    margin-left: auto;
  }
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  .enjoyArea > ul li {
    width: 60%;
  }
  .enjoyArea > ul li:nth-child(1) {
    width: 50%;
    padding-bottom: 20px;
  }
}
.enjoyArea > section {
  width: 40%;
}
@media screen and (max-width: 1367px) {
  .enjoyArea > section {
    width: 50%;
  }
}
@media screen and (max-width: 960px) {
  .enjoyArea > section {
    width: 58%;
  }
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  .enjoyArea > section {
    width: 100%;
  }
}
.enjoyArea > section .en {
  letter-spacing: -1px;
}
.enjoyArea > section > div {
  margin-top: 80px;
  margin-left: 4vw;
}
@media screen and (max-width: 1600px) {
  .enjoyArea > section > div {
    margin-left: 0;
  }
}
@media screen and (max-width: 1200px) {
  .enjoyArea > section > div {
    margin-top: 40px;
  }
}
.enjoyArea > section > div .text {
  line-height: 200%;
  margin-bottom: 30px;
}
@media screen and (max-width: 1200px) {
  .enjoyArea > section > div .text {
    line-height: 170%;
  }
}

.accessArea {
  padding: 0 5vw;
}
.accessArea > section {
  max-width: 1200px;
  margin: 0 auto;
}
.accessArea > section > div {
  margin: 30px 0 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  .accessArea > section > div {
    margin-bottom: 30px;
  }
}
.accessArea > section > div ul {
  margin-right: 30px;
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  .accessArea > section > div ul {
    margin-right: 0;
  }
}
.accessArea > section > div ul li {
  margin-top: 10px;
}
.accessArea > section > div .moreBtn {
  margin-top: 30px;
}
.accessArea > section .map iframe {
  width: 100%;
  height: 500px;
  filter: grayscale(1);
}/*# sourceMappingURL=index.css.map */