@charset "UTF-8";

/**********************************************共通*******************************************/
*{
  padding: 0;
  margin: 0;
  list-style: none;
  text-decoration: none;
  font-family:'Noto Serif JP',serif;
  font-weight: 300;
  text-box: trim-both cap alphabetic;
  color: #485552;
  letter-spacing: 0.05em;
  font-weight: 400;
  box-sizing: border-box;
}

table{
  border-collapse: collapse;
  width: 100%;
}

body.lock{
  overflow: hidden;
}

.lang_en,.lang_en *{
  font-family: "Cinzel", serif;
}

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

svg{
  width: 100%;
  height: auto;
  display: block;
}

main .main_containtar{
  overflow: hidden;
}

.tab{
  display: none;
}
.sp{
  display: none;
}


@media screen and (max-width:1023px){
  .tab{
    display: block;
  }
  .pc{
    display: none;
  }
}

@media screen and (max-width:767px){
  .sp{
    display: block;
  }
}

#wrapper{
  position: relative;
}

.text_box h2.text_box_title{
  font-size: 28px;
  color: #485552;
  margin-bottom: 40px;
  font-weight: 600;
}

.text_box .text_box_sub_title{
  color: #00493A;
  font-size: 20px;
  line-height: 160%;
  padding-bottom: 20px;
  margin-bottom: 70px;
  border-bottom: #00493A 0.5px solid;
}

.text_box p{
  font-size: 18px;
  color: #485552;
  line-height: 220%;
}

.title_box2{
  text-align: center;
  margin-bottom: 60px;
}

.title_box2 h2.text_box2_title{
  color: #485552;
  font-size: 28px;
  line-height: 160%;
  margin-bottom: 30px;
  font-weight: 600;
}

.title_box2 h3.text_box2_sub_title{
  font-size: 20px;
  line-height: 160%;
  color: #00493A;
}


.container_1440{
  max-width: 1440px;
  margin: 0 auto;
  width: 88.75%;
}

/*タブレット*/
@media screen and (max-width:1180px){
  h2.text_box_title{
    font-size: 28px;
  }
  .text_box h2.text_box_title{
    font-size: 22px;
    margin-bottom: 40px;
  }
  .text_box .text_box_sub_title{
    font-size: 16px;
    padding-bottom: 10px;
    margin-bottom: 50px;
  }
  .text_box p{
    font-size: 16px;
  }
  .title_box2{
    margin-bottom: 50px;
  }
  .title_box2 h2.text_box2_title{
    font-size: 22px;
    margin-bottom: 22px;
  }
  .title_box2 h3.text_box2_sub_title{
    font-size: 16px;
  }
  .container_1440{
    width: calc(100% - 40px);
  }
}

/*スマホ*/
@media screen and (max-width:769px){
  .text_box h2.text_box_title{
    font-size: 20px;
  }
  .title_box2 h2.text_box2_title{
    font-size: 20px;
    margin-bottom: 20px;
  }
  .container_1440{
    width: calc(100% - 31px);
  }
}

.loading{
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #fff;
  z-index: 999;
}

/******************************************共通ここまで****************************************/


/********************************************header*******************************************/

header{
  border-bottom: solid 0.7px #00493A;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  padding: 0 50px;
}

header:not(.top){
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  /* width: calc(100% - 100px); */
  z-index: 100;
}

header.top_mv{
  border-bottom: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /* width: calc(100% - 100px); */
  z-index: 100;
}

@media screen and (min-width:1081px){
  header.topfixed{
    position: fixed;
    right: 0;
    top: 0;
    left: 0;
    width: 100%;
    /* width: calc(100% - 100px); */
    z-index: 100;
    opacity: 0;
    background-color: rgba(255,255,255,0.5);
  }
  header.topfixed_transition{
    transition: .6s;
  }
  header.topfixed.move{
      opacity: 1;
  }
}

.header_inner_cover{
  width: 100%;
  /* width: calc(100% - 200px); */
}

header.top_mv .header_inner_cover{
  opacity: 0;
  visibility: hidden;
  height: 0;
}

.header_inner{
  display: flex;
  align-items: center;
  justify-content:space-between;
  width: 100%;
}

header .logo{
  width: 200px;
  display: flex;
  align-items: center;
  z-index: 105;
}

header .logo svg path{
  transition: .5s;
}

header.top:not(.move) .logo svg path{
  fill: #fff;
}

.header_inner .nav ul{
  display: flex;
  gap: 60px;
}

.header_inner .nav ul li a{
  font-size: 18px;
  display: block;
  color: #00493A;
}

.header_inner .nav ul li a:hover{
  opacity: 0.6;
}

.header_btns{
  display: flex;
  align-items: center;
  gap: 30px;
}

.header_btns .header_btn{
  border: solid 0.7px #00493A;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header_btns .header_btn a{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 237px;
  height: 50px;
  color: #00493A;
  font-size: 18px;
}

header .nav{
  padding-left: 15%;
}

.header_btns .header_btn:nth-child(1) a{
  background-color: #fff;
}

.header_btns .header_btn:nth-child(1) svg{
  width: 27px;
}

.header_btns .header_btn:nth-child(2) svg{
  width: 25px;
}

.header_btns .header_btn:nth-child(2) a{
  background-color: #00493A;
}

.header_btns .header_btn:nth-child(2) a span{
  color: #fff;
}

.header_btns .header_btn:nth-child(1) .icon_change span{
  color: #00493A;
}

header.top_mv .header_btns .header_btn:nth-child(1) .icon_change .icon_change_target_green{
  stroke: #fff;
}
header.top_mv .header_btns .header_btn:nth-child(2) .icon_change .icon_change_target_white{
  stroke: #00493A
}


@media screen and (min-width:1080px){
  .header_btns .header_btn .icon_change:hover{
    opacity: .6;
    transition: .5s;
  } 
}

.hamburger {
  position: relative;
  width: 50px;
  height: 30px;
  cursor: pointer;
}
.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: #00493A;
}

header.top:not(.move) .hamburger span {
  background-color: #fff;
}

.hamburger, .hamburger span {
  display: inline-block;
  transition: all .5s;
  box-sizing: border-box;
}

.hamburger {
  display: none;
  z-index: 1000;
}

header.top_mv .hamburger {
  display: block;
}

.hamburger span:nth-of-type(1) {
  top: 0;
}
.hamburger span:nth-of-type(2) {
  top: 15px;
}
.hamburger span:nth-of-type(3) {
  bottom: 0;
}

.hamburger.active span:nth-of-type(1) {
  -webkit-transform: translateY(14px) rotate(-45deg);
  transform: translateY(14px) rotate(-45deg);
}
.hamburger.active span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  -webkit-animation: active-btn_hamburger .8s forwards;
  animation: active-btn_hamburger .8s forwards;
}
@-webkit-keyframes active-btn_hamburger {
  100% {
    height: 0;
  }
}
@keyframes active-btn_hamburger {
  100% {
    height: 0;
  }
}
.hamburger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-15px) rotate(45deg);
  transform: translateY(-15px) rotate(45deg);
}


header.top_0 .header_inner_cover{
  transition: .5s;
}

header.top_mv .header_inner_cover{
    opacity: 0;
    visibility: hidden;
}

header.top_mv .header_inner_cover{
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 100;
    background-color: #00493A;
    overflow-y: auto;
}

header.top_mv .header_inner{
    flex-direction: column;
    justify-content: start;
    padding: 150px 40px 50px 40px;
    min-height: auto;
    width: 100%;
    /* width: calc(100% - 80px); */
    gap: 40px;
}

header.top_mv .nav{
  padding-left: 0;
   max-width: 470px;
}
header.top_mv .header_inner .nav ul{
  flex-wrap: wrap;
  gap: 25px;
}
header.top_mv .nav ul li{
  width: 100%;
}
header.top_mv .nav ul li a{
  font-size: 20px;
  color: #fff;
  padding-bottom: 25px;
  border-bottom: solid #B8B8B8 0.7px;
}
header.top_mv .header_btns{
  gap: 15px;
  width: 100%;
  max-width: 470px;
}
header.top_mv .header_btns .header_btn{
  width: calc(50% - 7.5px);
  height: 75px;
}
header.top_mv .header_btns .header_btn a{
  flex-direction: column;
  font-size: 16px;
  height: 100%;
}
header.top_mv .header_btns .header_btn:nth-child(1) a {
  background-color: #00493A;
  border: solid 0.7px #B8B8B8;
}
header.top_mv .header_btns .header_btn:nth-child(1) a span{
  color: #fff;
}
header.top_mv .header_btns .header_btn:nth-child(2) a {
  background-color: #fff;
  border: solid 0.7px #D5D5D5;
}
header.top_mv .header_btns .header_btn:nth-child(2) a span{
  color: #00493A;
}
header.top_mv.active .header_inner_cover{
    opacity: 1;
    visibility: visible;
}

@media screen and (max-width:1645px){
  header .nav{
    padding-left: 10%;
  }
}

@media screen and (max-width:1550px){
  header .nav{
    padding-left: 5%;
  }
}


@media screen and (max-width:1500px){
  header{
    height: 80px;
  }
  .header_inner .nav ul{
    gap: 30px;
  }
  .header_btns{
    gap: 20px;
  }
  .header_btns .header_btn a{
    width: 215px;
  }
}

@media screen and (max-width:1300px){
  header,header:not(.top){
    padding: 0 30px;
    width: 100%;
    /* width: calc(100% - 60px); */
  }
  header.topfixed,header.top_mv{
    width: 100%;
    /* width: calc(100% - 60px); */
  }
  header .nav{
    padding-left: 3%;
  }
}

@media screen and (max-width:1230px){
  .header_inner .nav ul{
    gap: 15px;
  }
  .header_btns{
    gap: 10px;
  }
  .header,header:not(.top){
    padding: 0 20px;
  }
}


/*タブレット*/
@media screen and (max-width:1180px){
  header{
    height: auto;
    border-bottom: none;
    padding: 30px 20px 0 20px;
  }
  header .logo{
      width: 171px;
      position: absolute;
      left: 20px;
      top: 30px;
  }
  header.top{
    width: 100%;
    /* width: calc(100% - 60px); */
    position: fixed;
    opacity: 1;
    z-index: 100;
  }
  header.active .logo svg path{
    fill: #fff;
  }
  .hamburger{
    display: inline-block;
    position: absolute;
    top: 30px;
    right: 20px;
  }
  .hamburger.active span {
    background-color: #fff;
  }


  header .header_inner_cover,header.top_mv .header_inner_cover{
    transition: .5s;
    opacity: 0;
    visibility: hidden;
}

header .header_inner_cover,header.top_mv .header_inner_cover{
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 100;
    background-color: #00493A;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
header .header_inner{
    flex-direction: column;
    justify-content: start;
    padding: 150px 40px 50px 40px;
    min-height: 100%;
    width: 100%;
    /* width: calc(100% - 80px); */
    gap: 40px;
}
header:not(.top){
  width: 100%;
    /* width: calc(100% - 40px); */
}
header .nav{
  padding-left: 0;
   max-width: 470px;
}
header .header_inner .nav ul{
  flex-wrap: wrap;
  gap: 25px;
}
header .nav ul li{
  width: 100%;
}
header .nav ul li a{
  font-size: 20px;
  padding-bottom: 25px;
  border-bottom: solid #B8B8B8 0.7px;
}
.header_inner .nav ul li a{
  color: #fff;
}
header .header_btns{
  gap: 15px;
  width: 100%;
  max-width: 470px;
}
header .header_btns .header_btn{
  width: calc(50% - 7.5px);
  height: 75px;
}
header .header_btns .header_btn a{
  flex-direction: column;
  font-size: 16px;
  height: 100%;
}
header .header_btns .header_btn:nth-child(1) a {
  background-color: #00493A;
  border: solid 0.7px #B8B8B8;
}
.header_btns .header_btn:nth-child(1) .icon_change span{
  color: #fff;
}
header .header_btns .header_btn:nth-child(2) a {
  background-color: #fff;
  border: solid 0.7px #D5D5D5;
}
header .header_btns .header_btn:nth-child(2) a span{
  color: #00493A;
}
header .header_btns .header_btn:nth-child(1) .icon_change .icon_change_target_green{
  stroke: #fff;
}
header .header_btns .header_btn:nth-child(2) .icon_change .icon_change_target_white{
  stroke: #00493A
}
header.active .header_inner_cover,header.top.active .header_inner_cover{
    opacity: 1;
    visibility: visible;
}
}

@media screen and (max-width:950px){
    header.active:after{
    background-color: #00493A;
    height: 80px;
    left: 0;
    top: 0;
    width: 100%;
    content: "";
    position: absolute;
    z-index: 100;
  }
}



/*スマホ*/
@media screen and (max-width:769px){
    header{
      padding: 20px 17px 0 17px;
    }
    header.top{
      width: 100%;
      /* width: calc(100% - 34px); */
    }
    header:not(.top){
      width: 100%;
      /* width: calc(100% - 34px); */
    }
    .header_inner{
      padding-top: 96px;
    }
    header .logo{
      width: 118px;
      top: 20px;
      left: 17px;
    }
    .hamburger {
      width: 40px;
      height: 26px;
      top: 20px;
      right: 17px;
    }
    .hamburger span:nth-of-type(2) {
      top: 12px;
    }
    .hamburger.active span:nth-of-type(1) {
      -webkit-transform: translateY(12px) rotate(-45deg);
      transform: translateY(12px) rotate(-45deg);
    }
    .hamburger.active span:nth-of-type(3) {
      -webkit-transform: translateY(-12px) rotate(45deg);
      transform: translateY(-12px) rotate(45deg);
    }
}

@media screen and (max-width:350px){
  .header_btns .header_btn a,header.top.active .header_btns .header_btn a{
    font-size: 4.2vw;
  }
}


/*****************************************headerここまで***************************************/


/********************************************footer********************************************/

footer{
  background-color: #00493A;
  padding: 80px 0;
}

.footer_inner{
  display: flex;
  justify-content:space-between;
  align-items: end;
}

.footer_logo{
  width: 338px;
  margin-bottom: 62px;
}

.footer_link ul{
  display: flex;
  align-items: center;
  gap: 30px 60px;
}

.footer_link ul li a{
  font-size: 16px;
  color: #fff;
  line-height: 230%;
}

.footer_link ul li a:hover{
  opacity: .6;
}

.footer_link ul li a svg.link_logo{
  margin-left: 7px;
  transform: translateY(2px);
  width: 1em;
  display: inline-block;
}

.footer_inner_right{
  display: flex;
  align-items: end;
  flex-direction: column;
}

footer .insta_logo{
  margin-bottom: 65px;
}

footer .insta_logo a:hover{
  opacity: .6s;
}

footer .copyright small{
  font-size: 14px;
  color: #fff;
  line-height: 200%;
}


/*タブレット*/
@media screen and (max-width:1180px){
  footer{
    padding: 50px 0;
  }
  .footer_logo{
    width: 294px;
  }
  .footer_link ul{
    flex-direction: column;
    align-items: start;
  }
  footer .insta_logo{
    margin-bottom: 26px;
  }
}

/*スマホ*/
@media screen and (max-width:670px){
  footer{
    position: relative;
  }
  .footer_inner{
    flex-direction: column;
    align-items: start;
  }
  .footer_inner_left{
    width: 100%;
    margin-bottom: 50px;
  }
  .footer_logo{
    margin: auto;
    margin-bottom: 50px;
    width: 66.666666%;
    max-width: 250px;
  }
  footer .insta_logo{
    position: absolute;
    top: 120px;
    right: 16px;
  }
}

/******************************************footerここまで****************************************/

/****************************************KVスクロールボタン***************************************/

.scroll_down {
  position: absolute;
  left: 50px;
  bottom: 0;
  z-index: 99;
  opacity: 0;
  -webkit-transition: .5s;
  transition: .5s;
  -webkit-transition-delay: 1.8s;
  transition-delay: 1.8s;
}

.scroll_down.active{
  opacity: 1;
}

.scroll_down:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  }

.scroll_down a {
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 10px;
  padding-bottom:150px;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  letter-spacing: .2em;
  text-decoration: none;
  writing-mode: vertical-lr;
  transition: .2s;
  margin: auto;
  z-index: 100;
}

/* .scroll_down a:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 150px;
  background: #fff;
} */

.scroll_down a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1.5px;
  height: 150px;
  background: #fff;
}

.scroll_down a:hover {
  opacity: .5;
}

.scroll_down a:after {
  animation: sdl01 3s ease-in-out infinite;
}

@keyframes sdl01 {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

/*タブレット*/
@media screen and (max-width:1180px){
  
}

/*スマホ*/
@media screen and (max-width:769px){
  .scroll_down{
    left: 16px;
  }
  .scroll_down a {
    width: 10px;
    font-size: 14px;
    padding-bottom: 65px;
  }
  /* .scroll_down a:before {
    height: 65px;
  } */
  .scroll_down a:after {
    height: 65px;
  }
}

/************************************KVスクロールボタンここまで************************************/

.dots-box{
  display: flex;
  justify-content: center;
}

.dots-wrap {
    display: flex;
    justify-content:space-between;
    background-color: #B8B8B8;
}

.dots-wrap li {
    width: 30px;
    height: 2px;
    cursor: pointer;
}

.dots-wrap li button {
    display: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding: 0;
    border: none;
    background-color: transparent;
}

.dots-wrap li:hover,
.dots-wrap li.slick-active {
    background: #485552;
}

.text_fade{
  opacity: 0;
  transform: translateY(-30px);
  transition: .5s;
}

.text_fade.active{
  opacity: 1;
  transform: translateY(0);
}