/* 基本設定 */
html {
  overflow: auto;
  scroll-behavior: smooth;
}

body {
  overflow: hidden;
  font-size: 16px;
  letter-spacing: 0.03em;
  font-family: sans-serif;
  line-height: 1.8em;
  color: #4B4B4B;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  animation: fadeIn 0.5s ease 0s 1 normal;
  padding: 1px;
}

img {
  max-width: 100%;
  height: auto;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  opacity: 1;
  transition: all .4s;
}

a:hover{
  opacity: 0.6;
  transition: all .4s;
}


p {
  text-align: left;
}

.left {
  float: left;
}

.right {
  float: right;
}

.clearfix:after {
  clear: both;
  content: "";
  display: block;
  height: 0;
}

.br_pc {
  display: none;
}

.br_sp {
  display: block;
}

.pc {
  display: none !important;
}

.sp {
  display: inline-block !important;
}

@media only screen and (min-width: 950px) {
  .pc_fl {
    float: left;
    width: 45%;
  }

  .pc_fr {
    float: right;
    width: 45%;
  }

  .br_pc {
    display: block;
  }

  .br_sp {
    display: none;
  }

  /* ブラウザ幅に応じて画像を切り替える */
  .pc {
    display: inline-block !important;
  }

  .sp {
    display: none !important;
  }
}

/* 共通ヘッダー・フッター */
header {
  background-color: #0d3827;
  height: 80vh;
  position: relative;
  background-image: url(../img/header_kv_bg_sp.jpg);
  background-size: contain;
  background-position: top 40vw center;
}

header h1 {
  width: 80%;
  max-width: 400px;
  padding: 7vw;
}

header img.copy {
  width: 95%;
  margin-left: -2vw;
}

header .openbtn {
  width: 35px;
  height: 30px;
  cursor: pointer;
  position: absolute;
  right: 7vw;
  top: 7vw;
  z-index: 9999;
}

header .openbtn span {
  display: inline-block;
  transition: all .4s;
  /*アニメーションの設定*/
  position: absolute;
  height: 3px;
  background: #fff;
  width: 100%;
}

header .openbtn span:nth-of-type(1) {
  top: 0px;
}

header .openbtn span:nth-of-type(2) {
  top: 12px;
}

header .openbtn span:nth-of-type(3) {
  top: 24px;
}

header .openbtn.active span:nth-of-type(1) {
  top: 0px;
  left: 0px;
  transform: translateY(6px) rotate(-45deg);
  width: 100%;
}

header .openbtn.active span:nth-of-type(2) {
  opacity: 0;
  /*真ん中の線は透過*/
}

header .openbtn.active span:nth-of-type(3) {
  top: 12px;
  left: 0px;
  transform: translateY(-6px) rotate(45deg);
  width: 100%;
}

nav.open_area {
  display: none;
  width: 100%;
  height: 100%;
  background-color: #0d3827;
  position: fixed;
  top: 0;
  left: 0;
}

nav.open_area ul {
  width: 80%;
  margin: 20vh auto 5vh;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
}

nav.open_area ul li {
  margin-bottom: 20px;
}

nav.open_area ul li a {
  color: #fff;
}

nav.open_area .conversion {
}

nav.open_area .conversion .inr {
  margin-bottom: 5px;
}

.noscroll {
  height: 100vh;
  overflow: hidden;
}

@media only screen and (min-width: 950px) {
  header {
    height: 80vh;
    background-image: url(../img/header_kv_bg_pc.jpg);
    background-size: cover;
    background-position: top left 30vw;
    position: relative;
  }

  header h1 {
    width: 80%;
    max-width: 400px;
    padding: 5vh;
  }

  header img.copy {
    width: 80%;
    max-width: 1400px;
    position: absolute;
    left: 1vw;
    bottom: -1vh;
  }

  header nav.pc {
    color: #fff;
    position: absolute;
    right: 5vh;
    top: 5vh;
    font-weight: bold;
  }

  header nav.pc ul li {
    display: inline-block;
    padding-left: 15px;
  }

  header nav.pc ul li:before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 12px;
    background-color: #fff;
    margin-right: 17px
  }

  header nav.pc ul li:first-child:before {
    content: none;
  }

  header nav.pc ul li a {
    color: #fff;
  }
}

main {
  width: 100%;
  color: #0d3827;
  font-size: 12px;
}

#appeal {
  background-color: #f1f1f1;
  width: 100%;
  padding-bottom: 1vh
}

#appeal .kv {
  height: 70vh;
  background-color: #f1f1f1;
  background-image: url(../img/appeal_kv_bg_sp.png);
  background-size: cover;
  background-position: center;
}

#appeal .kv h2 {
  width: 85%;
  margin: 5vh auto;
}

#appeal .box {
  height: 100%;
  margin: 2vh auto;
  position: relative;
  z-index: 999;
}

#appeal .box::after {
  content: "";
  display: block;
  width: 100%;
  background-color: #0d3827;
  height: 20vh;
  position: absolute;
  top: 0;
  z-index: -1;
}

#appeal .box .img_area {
  width: 80%;
  margin: 0 auto;
}

#appeal .box .img_area img {
  padding-top: 10vw;
}

#appeal .box .text_area {
  width: 80%;
  margin: 3vh auto 6vh;
}

#appeal .box .text_area h3 {
  font-size: 22px;
  margin-bottom: 1vh;
}

#appeal .box .text_area h4 {
  font-size: 14px;
  margin-bottom: 1vh;
}

#appeal .box .text_area p {
  line-height: 1.9;
  margin-bottom: 2vh;
}

#appeal .box .text_area a {
  display: block;
  width: 100%;
  margin: 0 auto;
  border: 2px #0d3827 solid;
  padding: 20px;
  font-size: 14px;
  color: #0d3827;
  line-height: 1;
  font-weight: bold;
  position: relative;
}

#appeal .box .text_area a::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 21px;
  right: 15px;
  background-image: url(../img/external_link.svg);
  background-size: contain;
}

#appeal .box .text_area a::before {
  content: "";
  display: block;
  width: 25%;
  height: 10px;
  background-color: #149c00;
  position: absolute;
  top: -6px;
  left: -6px;
  z-index: -99;
}

@media only screen and (min-width: 950px) {
  #appeal {
    padding-bottom: 1vh
  }

  #appeal .kv {
    height: 60vh;
    background-image: url(../img/appeal_kv_bg_pc.png);
    background-size: cover;
    background-position: bottom 100% left 30%;
    background-color: #f1f1f1;
    position: relative;
  }

  #appeal .kv h2 {
    width: 40%;
    margin: auto;
    position: absolute;
    top: 20vh;
    left: 10vw;
  }

  #appeal .box {
    width: 90%;
    max-width: 1200px;
    height: auto;
    position: relative;
    display: flex;
    align-items: center;
    margin: 5vw auto;
  }

  #appeal .wrap .box:nth-child(odd) {
    display: flex;
    flex-direction: row-reverse;
  }

  #appeal .box::after {
    content: none;
  }

  #appeal .box .img_area {
    width: 55%;
    float: right;
    margin: 0 auto;
    position: relative;
  }

  #appeal .box .img_area img {
    padding-top: 0;
  }

  #appeal .box .img_area::after {
    content: "";
    display: block;
    width: 40%;
    background-color: #0d3827;
    height: 26vh;
    position: absolute;
    top: -2vh;
    left: -2vh;
    z-index: -1;
  }

  #appeal .wrap .box:nth-child(odd) .img_area::after {
    top: -2vh;
    left: auto;
    right: -2vh;
  }

  #appeal .box .text_area {
    width: 340px;
    margin: 3vh auto 10vh;
  }

  #appeal .box .text_area h3 {
    font-size: 24px;
    margin-bottom: 1vh;
    line-height: 1.8;
  }

  #appeal .box .text_area h4 {
    font-size: 16px;
    margin-bottom: 1vh;
  }

  #appeal .box .text_area p {
    line-height: 1.9;
    margin-bottom: 2vh;
    font-size: 14px;
  }

  #appeal .box .text_area a {
    display: block;
    width: 75%;
    margin: 0;
    border: 2px #0d3827 solid;
    padding: 20px;
    font-size: 14px;
    color: #0d3827;
    line-height: 1;
    font-weight: bold;
    position: relative;
    opacity: 1;
    transition: all .4s;
  }

  #appeal .box .text_area a:hover {
    width: 75%;
    margin: 0;
    border: 2px #149c00 solid;
    padding: 20px;
    font-size: 14px;
    color: #0d3827;
    line-height: 1;
    font-weight: bold;
    position: relative;
    opacity: 1;
    transition: all .4s;
  }


  #appeal .box .text_area a::after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 21px;
    right: 20px;
    background-image: url(../img/external_link.svg);
    background-size: contain;
  }

  #appeal .box .text_area a::before {
    transition: .4s;
  }


  #appeal .box .text_area a:hover::before {
    width: 100%;
    top:0;
    left: 0;
    height: 1px;
    transition: .4s;
  }

}

.conversion {
  background-color: #0d3827;
  width: 100%;
  color: #f1f1f1;
  padding: 4vh 0;
}

.conversion .wrap {
  padding: 1vh 0;
}

.conversion .wrap h3 {
  width: 60%;
  margin: 0 auto;
}

.conversion .wrap ul {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-evenly;
}

.conversion .wrap ul li {
  width: 45%;
  background-color: #fff;
  line-height: 1;
  position: relative;
}

.conversion .wrap ul li a {
  display: block;
  width: 100%;
  padding: 4vw;
}

.conversion .wrap .inr {
  margin-bottom: 20px;
}

.conversion .wrap ul li::after {
  content: "";
  display: block;
  width: 2vw;
  height: 2vw;
  position: absolute;
  bottom: 1vw;
  right: 1vw;
  background-image: url(../img/cursor-right.svg);
  background-size: 100% auto;
}

.conversion.center {
  background-color: #149c00;
  background-image: url(../img/conversion_bg_sp.jpg);
}

.conversion.under {
  background-color: #0d3827;
  background-image: url(../img/attraction_bg_sp.jpg);
  background-size: cover;
}

@media only screen and (min-width: 950px) {
  .conversion {
    padding: 4vh 0;
  }

  .conversion .wrap {
    padding: 1vh 0;
    display: flex;
    justify-content: space-between;
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
  }

  .conversion .inr {
    display: flex;
    align-items: center;
    width: 45%;
  }

  .conversion .inr h3 {
    width: 45%;
    margin: 0 auto;
  }

  .conversion .wrap ul {
    width: 45%;
    margin: 0 auto;
    display: block;
  }

  .conversion .wrap ul li {
    width: 100%;
    margin-bottom: 10px;
  }

  .conversion .wrap ul li a {
    display: block;
    padding: 20px 30px;
  }

  .conversion .wrap ul li::after {
    width: 8px;
    height: 8px;
    bottom: 8px;
    right: 8px;
  }

  .conversion.center {
    background-image: url(../img/conversion_bg_pc.jpg);
    background-size: cover;
    background-position: center;
  }

  .conversion.fix {
    position: absolute;
    width: 180px;
    bottom: 15vh;
    right: 0;
    padding: 0px;
    z-index: 99999;
  }

  .conversion.fix .wrap {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
    padding: 15px 0 15px 20px;
  }

  .conversion.fix .wrap .inr {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
  }

  .conversion.fix .wrap .inr ul {
    width: 100%;
  }

  .conversion.fix .wrap .inr li {
    width: 100%;
  }

  .conversion.fix .wrap .inr li a {
    width: 100%;
    padding: 13px 26px;
  }

  .conversion.fix .wrap .inr ul li::after {
    width: 5px;
    height: 5px;
    bottom: 4px;
    right: 4px;
  }

  .conversion.fix .wrap .inr h3 {
    width: 90%;
    padding-bottom: 5px;
  }

  .conversion.fix .wrap .inr h3 img.sp {
    display: block !important;
  }

  .conversion.fix .wrap .inr h3 img.pc {
    display: none !important;
  }
}

#attraction {
  background-color: #0d3827;
  background-image: url(../img/attraction_bg_sp.jpg);
  background-size: cover;
  width: 100%;
  color: #f1f1f1;
  padding: 10vh 0;
}

#attraction h2 {
  width: 70%;
  margin: 0 auto 1vh;
}

#attraction h3 {
  width: 40%;
  margin: 0 auto 3vh;
}

#attraction ul {
  width: 95%;
  margin: 0 auto;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

#attraction li {
  display: block;
  width: 47%;
  background-color: #000;
  text-align: center;
  margin-bottom: 1vh;
  font-size: 14px;
  font-weight: bold;
}

#attraction li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 7vw 0;
  color: #f1f1f1;
  position: relative;
}

#attraction li a::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  right: 5px;
  bottom: 5px;
  background-image: url(../img/external_link_w.svg);
  background-size: contain;
}

#attraction li a{
  background-position: center;
  background-size: cover;
}

#attraction li a.bg01 {
  background-image: url(../img/attraction_bnr_bg01.jpg);
}

#attraction li a.bg02 {
  background-image: url(../img/attraction_bnr_bg02.jpg);
}

#attraction li a.bg03 {
  background-image: url(../img/attraction_bnr_bg03.jpg);
}

#attraction li a.bg04 {
  background-image: url(../img/attraction_bnr_bg04.jpg);
}

#attraction li a.bg05 {
  background-image: url(../img/attraction_bnr_bg05.jpg);
}

#attraction li a.bg06 {
  background-image: url(../img/attraction_bnr_bg06.jpg);
}

@media only screen and (min-width: 950px) {
  #attraction {
    background-image: url(../img/attraction_bg_pc.jpg);
    padding: 15vh 0 3vh;
  }

  #attraction h2 {
    width: 1000px;
    margin: 0 auto 30px;
  }

  #attraction h3 {
    width: 200px;
    margin: 0 auto 50px;
  }

  #attraction ul {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
  }

  #attraction li {
    width: 49%;
    margin-bottom: 7px;
    font-size: 26px;
  }

  #attraction li a {
    padding: 100px 0;
    position: relative;
  }

  #attraction li a {
    background-size: 130%;
    background-position: center;
    transition: .4s;
  }


  #attraction li a:hover {
    background-size: 140%;
    transition: .4s;
  }


  #attraction li a::after {
    width: 20px;
    height: 20px;
    right: 10px;
    bottom: 10px;
  }
}

footer {
  background-color: #0d3827;
  color: #f1f1f1;
  padding: 5vh 0;
}

footer .inr {
  width: 80%;
  padding: 2vh 0;
  margin: 0 auto 1vh;
  font-size: 12px;
  line-height: 1.5;
}

footer .inr h3 {
  width: 80%;
  max-width: 260px;
  margin-bottom: 3vh;
}

footer .inr h3.small {
  width: 60%;
  max-width: 300px;
}

footer .inr address {
  font-style: normal;
}

footer .inr address dl dt {
  margin-bottom: 1vh;
}

footer .inr address dl dd {
  margin-bottom: 1vh;
}

footer .inr address dl dd {
  margin-bottom: 1vh;
}

footer p.note {
  padding: 5vw;
  border: 1px #f1f1f1 solid;
  font-size: 14px;
  text-align: center;
  line-height: 1.8;
  margin-bottom: 2vh;
}

@media only screen and (min-width: 950px) {
  footer {
    padding: 3vh 0;
  }

  footer .wrap {
    display: flex;
    width: 80%;
    max-width: 1000px;
    padding: 0;
    margin: 1vh auto 0vh;
    font-size: 12px;
    line-height: 1.5;
  }

  footer .inr {
    width: 33%;
  }

  footer .inr:nth-child(1) {
    width: 27%;
  }

  footer .inr h3 {
    width: 80%;
    margin-bottom: 1vh;
  }

  footer .inr h3.small {
    width: 60%;
  }

  footer .inr address {
    font-style: normal;
  }

  footer .inr address dl dt {
    margin-bottom: 5px;
  }

  footer .inr address dl dd {
    margin-bottom: 3px;
  }

  footer .inr address dl dd {
    margin-bottom: 3px;
  }

  footer p.note {
    padding: 20px;
    border: 1px #f1f1f1 solid;
    font-size: 14px;
    text-align: center;
    line-height: 1.8;
    margin-bottom: 2vh;
  }
}




.fadeInDown {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  visibility: visible !important;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
