@charset "utf-8";

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
li,
span,
a,
figure,
dl,
dt,
dd,
nav,
picture {
  margin: 0;
  padding: 0;
  list-style-type: none;
  text-decoration: none;
}

img {
  vertical-align: bottom;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

:root {
  --main-color: #413f38;
  --text-color: #555;
  --bg-color: #f3f3f3;
  --sub-color: #a5a5a5;
  --btn: #E1B654;
  --headline-font: 'Garamond', serif;
  --main-font: 'Futura-PT', sans-serif;
  --text-font: 'Roboto', sans-serif;
}

body {
  font-family: var(--main-font);
  color: var(--text-color);
  background-color: #f3f3f3;
  font-weight: 400;
  letter-spacing: .03em;
  font-size: 1.7rem;
  line-height: 1.4;
}

.inner{
  width: 89%;
  margin: auto;
}

h1,h2,h3,h4,h5,h6{
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: .025em;
  color: var(--main-color);
}

/*各ページの見出し Discover～*/
h1{
  font-size: 5rem;
  font-family: var(--headline-font);
  position: absolute;
  color: #fefefe;
}

h1 span{
  display: block;
  font-size: 4rem;
  font-weight: 300;
  font-family: var(--main-font);
  margin-top: -15px;
  /*! line-height: 1; */
}

/*各セクションの見出し Massage, Package Tourなど*/
h2{
  font-size: 3.5rem;
}

h2 span{
  display: block;
}

/*CTAなど*/
h3{
  font-family: var(--headline-font);
}

h3 span{
  display: block;
  font-family: var(--main-font);
  font-weight: 300;
}

/*ツアーボックスのタイトル*/
h4{
  font-size: 2.3rem;
}

/*header*/
header{
  width: 100%;
}

.header-contents{
  position: relative;
}

.header-contents .header-logo{
  position: absolute;
  z-index: 10;
  top: 12px;
  left: 20px;
}

.header-contents .header-logo a{
  display: flex;
  align-items: center;
  font-size: 2rem;
  line-height: 1.1;
  font-family: var(--headline-font);
  font-weight: 400;
  color: #fff;
}

.header-contents div.policy-logo a{
  color: var(--main-color);
}

.header-contents .header-logo img {
  object-fit: contain;
  width: 37px;
  margin-right: 10px;
}

.sp-nav{
  position: fixed;
  z-index: 999;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  transition: all 0.6s;
  background-color: var(--main-color);
}
/*アクティブクラスがついたら位置を0に*/
.sp-nav.panelactive {
  right: 0;
}

.sp-nav a, .sp-nav .menu-item{
  color: #fefefe;
  font-size: 3rem;
}

.sp-toggle {
  display: block;
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  cursor: pointer;
  width: 60px;
  height: 55px;
  background-color: var(--main-color);
}

.sp-toggle span {
  display: block;
  transition: all .4s;
  position: absolute;
  right: 20px;
  height: 1.5px;
  background-color: #fff;
  width: 20px;
}

.sp-toggle span:nth-of-type(1) {
  top: 20px; 
}

.sp-toggle span:nth-of-type(2) {
  top: 27px;
}

.sp-toggle span:nth-of-type(3) {
  top: 35px;
}

.sp-toggle.active span{
  width: 40%;
}

.sp-toggle.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-135deg);
}

.sp-toggle.active span:nth-of-type(2) {
  opacity: 0;
}

.sp-toggle.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(135deg);
}

.sp-nav .menu{
  padding: 100px 0 30px 140px;
}

.sp-nav .drop-menu-list{
  margin: 5px 0 15px 15px;
}

.sp-nav .menu-item{
  margin-bottom: 5px;
}

.sp-nav .drop-menu-item{
  line-height: 1.2;
}

.sp-nav .drop-menu-item a{
  font-size: 2.2rem;
}

.sp-nav .drop-menu-item::before{
  content: '';
  display: inline-block;
  width: 10px;
  height: 1px;
  background-color: #fefefe;
  vertical-align: 5px;
  margin-right: 10px;
}

.sp-policy{
  padding: 0 0 0 140px;
}

.sp-policy a{
  font-size: 1.6rem;
}

.pc-nav{
  display: none;
}

@media screen and (min-width:834px) {

  body{
    font-size: 1.9rem;
  }

  h1{
    font-size: 7.5rem;
  }

  h1 span{
    font-size: 5.5rem;
    margin-top: -20px;
  }

  h2{
    font-size: 4.5rem;
    line-height: 1;
  }

  h4{
    font-size: 2.7rem;
  }

  .flex {
    display: flex;
    justify-content: space-between;
  }
  
  .inner {
    width: 1150px;
    margin: auto;
  }

  header{
    height: 75px;
    position: fixed;
    top: 0;
    z-index: 100;
  }

  .header-contents{
    background-color: #f3f3f3;
    width: 1050px;
    margin: auto;
    height: 60px;
    box-shadow: 0px 8px 9px -8px rgba(0, 0, 0, 0.3);
  }

  .header-contents .header-logo{
    top: 0;
    left: 0;
  }

  .header-contents .header-logo a{
    background-color: var(--main-color);
    height: 75px;
    padding: 0 40px;
    font-size: 2.1rem;
    letter-spacing: .07em;
    transition: .3s;
  }

  .header-contents div.policy-logo a{
    color: #fefefe;
  }

  .header-contents .header-logo img{
    width: 40px;
    margin-right: 15px;
  }

  .header-contents .header-logo a:hover{
    background-color: var(--text-color);
    transition: .3s;
  }

  .sp-nav, .sp-toggle, .sp-policy{
    display: none;
  }

  .pc-nav{
    display: block;
    width: 500px;
    margin: auto;
    margin-left: 35%;
  }

  .pc-nav .menu {
    height: 60px;
    align-items: center;
  }

  .pc-nav .menu-item{
    position: relative;
    top: 0;
  }
  
  .pc-nav .menu-item > a {
    color: var(--main-color);
    font-family: var(--main-font);
    font-size: 2rem;
    padding: 18px 0px;
    transition: .3s;
  }

  .pc-nav .menu-item a:hover{
    opacity: 0.5;
    transition: .3s;
  }

  /* 下矢印 */
  .init-bottom:after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 0 0 10px;
    border-right: 1px solid var(--main-color);
    border-bottom: 1px solid var(--main-color);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    vertical-align: 4px;
  }

  .drop-menu-list {
    visibility: hidden;
    opacity: 0;
    z-index: 1;
    position: absolute;
    top: 33px;
    width: 150px;
    background: #fefefe;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    left: -40px;
  }

  .drop-menu-list .drop-menu-item{
    border-top: 1px solid #ddd;
    padding: 10px 20px;
  }

  .drop-menu-list .drop-menu-item a{
    font-size: 1.7rem;
    color: var(--main-color);
  }

  .menu-item:hover .drop-menu-list {
    top: 44px;
    visibility: visible;
    opacity: 1;
  }
}

.js-fadeUp {
  opacity: 0;
  /*transform: translate(0, 50%);*/
  transition: 2s;
}
.js-fadeUp.is-inview {
  /*transform: translate(0, 0);*/
  opacity: 1;
}

.btn{
  position: relative;
}

.btn a {
  color: var(--text-color);
  width: 100%;
  display: inline-block;
  text-align: center;
  font-weight: 500;
  border: 1px solid #ddd;
  padding: 15px 0;
  font-size: 2rem;
  transition: .3s;
}

.btn a:hover{
  background-color: var(--btn);
  transition: .3s;
}

.arrow-right::before{
  content: '';
  display: inline-block;
  position: absolute;
	width: 30px;
	height: 1px;
	background: #b6b6b6;
}

.arrow-right::after{
  content: '';
  display: inline-block;
  position: absolute;
	width: 9px;
	height: 9px;
	border-top: 1px solid #b6b6b6;
	border-right: 1px solid #b6b6b6;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.btn.arrow-right::before{
  right: 8%;
  top: 50%;
}

.btn.arrow-right::after{
  right: 6.5%;
  top: 43%;
}

/*CTAのボタン*/
.btn03{
  position: relative;
}

.btn03 a{
  color: #fefefe;
  padding: 18px 0;
  font-size: 2.2rem;
  font-family: var(--headline-font);
  width: 100%;
  display: inline-block;
  text-align: center;
  border: 1px solid #ddd;
  transition: .3s;
}

.btn03 a:hover{
  opacity: 0.5;
  transition: .3s;
}

.btn03 .arrow-right::before{
  right: 7%;
  top: 53%;
}

.btn03 .arrow-right::after{
  right: 5.5%;
  top: 47%;
}

@media screen and (min-width:834px) {

  .btn03 a{
    width: 30%;
  }

  .btn03 .arrow-right::before{
    left: 24%;
    right: auto;
    top: 53%;
  }

  .btn03 .arrow-right::after{
    left: 26.2%;
    right: auto;
  }
}

.under-page-top{
  position: relative;
  width: 100%;
  height: 50vh;
  margin-bottom: 50px;
}

.under-page-top-headline{
  top: 45%;
  left: 5%;
}

@media screen and (min-width:834px) {

  .under-page-top{
    height: 75vh;
    margin-bottom: 0;
  }
  
  .under-page-top-headline{
    top: 45%;
    left: 15%;
  }
}

.contact-info {
  margin-bottom: 50px;
}

.contact-info dt {
  font-weight: 500;
  font-size: 2rem;
  margin-top: 30px;
  margin-bottom: 10px;
  color: var(--sub-color);
}

.contact-info dt img{
  width: 20px;
  margin-right: 7px;
  vertical-align: -3px;
}

.contact-info dd br{
  margin-bottom: 5px;
}

.cta-footer{
  position: relative;
  background: url(../images/footer-sp03.jpg) center bottom fixed;
  background-size: contain;
  max-height: 1200px;
  overflow: hidden;
}
/*
.cta-footer{
  background-image: url(../images/footer-sp03.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
}
*/
.cta-footer .cta-footer-text p{
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.1;
  color: transparent;
  -webkit-text-stroke: 1px #fefefe;
  text-stroke: 1px #FFF;
}


@media screen and (min-width:834px) {

  .cta-footer .cta-footer-btn{
    margin-top: 20px;
  }

  .cta-footer .cta-footer-text p{
    font-size: 9rem;
    line-height: 1;
  }

  .cta-footer .cta-footer-btn .btn04 a{
    font-size: 3rem;
    padding: 15px 0;
    width: 340px;
  }

  .cta-footer .cta-footer-btn .btn04 a::before{
    width: 42px;;
    height: 27px;
  }

  .cta-footer .cta-footer-btn .btn04 a:hover{
    background-color: #ffffff40;
  }
}

.btn05 a{
  background-color: var(--main-color);
  border-radius: 50%;
  width: 55px;
  height: 55px;
  font-size: 0;
  color: transparent;
  line-height: 0;
  position: fixed;
  display: none;
  right: 5%;
  bottom: 5%;
  z-index: 100;
}

.btn05 a:before{
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  border-top: 3px solid #fefefe;
  border-right: 3px solid #fefefe;
  transform: rotate(-45deg);
  margin-bottom: -1px;
  position: absolute;
  left: 20px;
  top: 22px;
}



/*footer*/
footer {
  color: var(--bg-color);
  background-color: var(--main-color);
}

.footer-logo {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  margin-bottom: 30px;
  font-family: var(--headline-font);
}

.footer-logo img{
  width: 35px;
  margin-right: 10px;
}

footer a {
  color: #fff;
  transition: .3s;
}

footer a:hover{
  opacity: 0.5;
  transition: .3s;
}

.footer-contents{
  padding: 30px 0;
}

.footer-contents .flex{
  display: flex;
  font-size: 1.4rem;
}

.address{
  display: none;
}

footer li {
  line-height: 1.8;
}

.footer-nav{
  flex-grow: 0.7;
}

.footer-tour{
  margin-left: 10px;
  margin-bottom: 10px;
}

.footer-tour-list{
  line-height: 1.3;
}

.footer-tour-list a{
  font-size: 1.4rem;
}

.footer-tour-list a::before{
  content: '';
  display: inline-block;
  width: 7px;
  height: 1px;
  background-color: #fefefe;
  vertical-align: 5px;
  margin-right: 7px;
}

.credit {
  padding-top: 20px;
  text-align: center;
  font-size: 1.3rem;
  font-family: var(--number-font);
}

.footer-photo{
  position: absolute;
  z-index: -1;
}

.policy-list{
  font-size: 1.2rem;
}

@media screen and (min-width:834px) {

  .btn05{
    display: none;
  }

  .footer-contents{
    padding: 60px 0 40px;
  }

  .footer-contents .flex{
    font-size: 1.6rem;
  }

  .footer-logo{
    font-size: 2.3rem;
  }

  .address{
    display: block;
    flex-grow: 3;
  }

  .address dl{
    margin-bottom: 15px;
  }

  .address dt{
    float: left;
    clear: both;
  }

  .address dd{
    padding-left: 100px;
  }

  .footer-nav{
    flex-grow: 1;
  }

  .policy-list{
    font-size: 1.4rem;
  }
}

.policy-contents{
  padding: 100px 0 50px;
  font-size: 1.6rem;
}

.policy-top-text{
  margin: 20px 0;
}

.policy-box{
  margin-top: 20px;
  margin-left: 20px;
}

.policy-text span{
  display: block;
  font-weight: 500;
}

.policy-text{
  margin-bottom: 20px;
  list-style-type: decimal;
}

.header-logo h1.policy-title{
  color: var(--main-color);
}

@media screen and (min-width:834px) {
  .policy-contents{
    padding: 150px 0;
  }
}