@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
}

#page-top {
    position: fixed;
    bottom: 10px;
    right: 5px;
    z-index: 1000;
}

#page-top i {
    font-size: 4vw;
}

#page-top a {
    text-decoration: none;
    color: #0f2350;
    display: block;
    opacity: 0.9;
    transition: all .4s ease;
}

#page-top a:hover {
    text-decoration: none;
    opacity: 0.5;
}

.navright {
    width: 5%;
    position: fixed;
    top: 11vw;
    right: 0;
}


.set {
    background-color: #ffff;
    transition: 1s;
}

.set:hover {
    background-color: #dcdcdc;
    transition: 1s;
}


.set .up {
    display: block;
    margin-top: -1vw;
    font-family: serif;
    font-size: 2vw;
    text-align: center;
}

.set a {
    text-decoration: none;
}

.set a i {
    display: block;
    font-size: 1.5vw;
    text-align: center;
    color: #c0c0c0;
    padding-top: 2vw;
}

.set a span {
    display: block;
    color: #101010;
    font-family: serif;
    font-size: 1vw;
    text-align: center;
    margin-top: -1.5vw;
}

.set .onnsenn {
    display: block;
    font-size: 1.5vw;
    text-align: center;
    color: #101010;
    padding-top: 1vw;
}

.set .down {
    margin-top: 0vw;
}

header {
    width: 100%;
    position: relative;
}


.s_08 .accordion_area {
    position: absolute;
    top: 0;
    left: 30%;
	width: 50%;
	margin-left: auto;
	display: flex;
    margin-top: 1%;
    z-index: 1000;
}

.s_08 .accordion_area .accordion_one._flex {
	width: 100%;
}

.s_08 .accordion_area .sub-right {
    margin-left: 1vw;
}

.s_08 .accordion_one .accordion_header {
    display: flex;
    border-bottom: 1px solid #101010;
    padding-top: 0.5vw;
    padding-bottom: 0.5vw;
    padding-right: 1vw;
	color: #101010;
	font-size: 2vw;
	font-family: serif;
	position: relative;
	z-index: +1;
	cursor: pointer;
	transition-duration: 0.2s;
}

.s_08 .accordion_one .accordion_header span {
    display: block;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.s_08 .accordion_one .accordion_header_one {
    background-color: #c0c0c0;	
    border-bottom: 1px solid #ffff;
    list-style-type: none; 
    transition: 1s; 
}

.s_08 .accordion_one .accordion_header_one:hover {
    background-color: #0f2350;
    transition: 1s;
}

.s_08 .accordion_one .accordion_header_one a {
    display: block;
    text-decoration: none;
    text-align: center;
    color: #101010;
	font-size: 2vw;
    font-family: serif;
	position: relative;
	z-index: +1;
    padding-top: 0.5vw;
    padding-bottom: 0.5vw;
    transition: 1s;
}

.s_08 .accordion_one .accordion_header_one a:hover {
    color: #ffff;
    transition: 1s;
}


.s_08 .accordion_one .accordion_header:hover {
	opacity: .8;
}


.s_08 .accordion_one .accordion_header i {
    display: block;
    font-size: 0.8vw;
    color: #101010;
    padding-top: 0.5vw;
}



.s_08 .accordion_one .accordion_header.open i:before {
    display: block;
    transform: rotate(180deg);
}


.s_08 .accordion_one .accordion_inner {
	display: none;
	padding: 0;
	box-sizing: border-box;
}

.header-flex {
    padding-top: 5vw;
    display: flex;
}


h1 {
    width: 13%;   
    color: #101010;
    margin-left: 4%;
    margin-top: -3vw;
}

h1 a {   
    text-decoration: none; 
    font-size: 0.8vw;
    font-family: serif;
    font-size: 0.8vw;
    color: #101010;  
}

h1 .logo {
    width: 80%;
}

h1 .logo img {
    display: block;
    width: 100%;
}


/*ナビメニューのスタイルを指定*/
nav.NavMenu {
	position: fixed; /*表示位置を固定*/
	z-index: 2; /*重ね順を変更*/
	top: 6vw; /*表示位置を指定*/
	left: 15%; /*表示位置を指定*/
	width: 30%; /*全幅表示*/
	transform: translateY(-120%); /*ナビを上に隠す上から出したい場合は、transform: translateYを使う。*/
	transition: all 0.6s; /*アニメーションの時間を指定*/
}

nav.NavMenu ul {
	list-style-type: none;
	background-color: #f5f5f5; /*背景*/
}

nav.NavMenu ul li {
	width: 100%;
	border-bottom: 1px dotted #808080;
}

nav.NavMenu ul li:last-child {
	border-bottom: none; /*最後のメニュー項目のみ下線を消す*/
}

nav.NavMenu ul li a {
	display: block; /*クリックできる領域を広げる*/
	text-align: center; /*テキストを中央揃え*/
	text-decoration: none;
	line-height: 3;
	color: #a9a9a9;
	font-size: 2vw;
    font-family: serif;
}

/*トグルボタンが押されたときに付与するクラス*/
nav.NavMenu.active {
	transform: translateY(0%);/*上から出したい場合は、transform: translateYを使う。*/
}

/*トグルボタンのスタイルを指定*/
.Toggle {
	position: fixed;/* bodyに対しての絶対位置指定 */
	right: 13px;
	top: 12px;
	width: 42px;
	height: 42px;
	cursor: pointer;/*divだけどカーソルが変わるようにしている*/
	z-index: 3;/*ボタンを一番上にしている(押せなくなるから)*/
}

.Toggle span {
	display: block;
	position: absolute;
	left: 6px;
	width: 30px;
	border-bottom: solid 3px #a9a9a9;
	transition: .35s ease-in-out;/*変化の速度を指定*/
    z-index: 1000;
}

.Toggle span:nth-child(1) {
	top: 9px;
}

.Toggle span:nth-child(2) {
	top: 18px;
}

.Toggle span:nth-child(3) {
	top: 27px;
}

/* 最初のspanをマイナス45度に */
.Toggle.active span:nth-child(1) {
	top: 18px;
	left: 6px;
	transform: rotate(-45deg);
}

/* 2番目と3番目のspanを45度に */
.Toggle.active span:nth-child(2),
.Toggle.active span:nth-child(3) {
	top: 18px;
	transform: rotate(45deg);
}



.sub-ul  {
    position: absolute;
    left: 100%;
    top: 0;
    width: 100%;
    height: 0vw;
    opacity: 0;
    /*visibility: hidden;要素はあるけど見えない状態*/
    visibility: hidden;
    list-style-type: none;
    transition: 1s;
    z-index: 100;
}

.sub-ul .sub-li {
    position: relative;
    width: 100%;
    background-color: #0f2350;
    opacity: .7;
    transition: 1s;
}

.sub-ul .sub-li:hover {
    opacity: 1;
    transition: 1s;
}

.sub-ul .sub-li .sub-a {
    display: block;
    line-height: 3;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    font-size: 2vw;
    font-family: serif;
    text-decoration: none;
}

.sub-ul .sub-li .sub-a:hover::before {
    width: 10%;
    transition: 0.5s;
}

.sub-ul .sub-li .sub-a::before {
    position: absolute;
    left: 0%;
    top: 3vw;
    display: block;
    width: 0%;
    height: 0.05vw;
    content: "";
    background-color: #a75b5f;
    transition: 0.5s;
}


.drop:hover .sub-ul {
    height: fit-content;
    opacity: 1;
    visibility: visible;
    transition: 1s;  
}


.otoiawaseflex {
    display: flex;
    width: 100%;
    margin-top: 1vw;
}

.otoiawaseflex .otoiawase {
    display: flex;
    list-style-type: none;
    width: 15%;
    margin-left: auto;
}

.otoiawaseflex .otoiawase li {
   width: 50%;
   position: relative;
}

.otoiawaseflex .otoiawase li a {
    display: block;
    text-decoration: none;
    font-family: serif;
    font-size: 1vw;
    color: #101010;
    
}

.otoiawaseflex .otoiawase li a:hover::before {
    width: 80%;
    transition: 0.5s;
}

.otoiawaseflex .otoiawase li a::before {
    position: absolute;
    bottom: 0.01vw;
    left: 0%;
    display: block;
    width: 0%;
    height: 0.05vw;
    content: "";
    background-color:#808080;
    transition: 0.5s;
}

.sns-box1 {
    display: flex;
    width: 10%;
    padding-right: 5%;   
}

.sns-box1 a {
    display: block;
    margin-left: auto;
    margin-right: auto;
    color: #a9a9a9;
}
    
.sns-box1 a i {
    font-size: 1.3vw;
    transition: 1s;
}

.sns-box1 a i:hover {
    transform: scale(1.2); /* 拡大 */
    
}

.main_imgBox1 {
    width: 90%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10vw;
}
  
.main_img1 {
    z-index:-1;
    opacity: 0;
    width: 100%;
    height: 100vh;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-animation: anime 36s 0s infinite;
    animation: anime1 36s 0s infinite; }

.main_img1:nth-of-type(2) {
    -webkit-animation-delay: 6s;
    animation-delay: 6s; }

  .main_img1:nth-of-type(3) {
    -webkit-animation-delay: 12s;
    animation-delay: 12s; }

  .main_img1:nth-of-type(4) {
    -webkit-animation-delay: 18s;
    animation-delay: 18s; }

  .main_img1:nth-of-type(5) {
    -webkit-animation-delay: 24s;
    animation-delay: 24s; }

  .main_img1:nth-of-type(6) {
    -webkit-animation-delay: 30s;
    animation-delay: 30s; }
@keyframes anime1 {
    0% {
          opacity: 0;
      }
      8% {
          opacity: 1;
      }
      17% {
          opacity: 1;
      }
      25% {
          opacity: 0;
          transform: scale(1.05) ;
           z-index:9;
      }
      100% { opacity: 0 }
  }



.menu {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}

.menu .menu-ul {
    display: flex;
    list-style-type: none;
}

.menu .menu-ul .manu-li {
    width: calc( 100% / 3 );
    border-left: 0.5px solid #ffff;
}

.menu .menu-ul .drops {
    position: relative;
}

.menu .menu-ul .manu-li .menu-a {
    display: block;
    line-height: 1.7;
    text-decoration: none;
    text-align: center;
    color: #ffffff;
    font-size: 1.4vw;
    font-family: serif;
    text-decoration: none;
    background-color: #000000;
    transition: 1s;
}

.menu .menu-ul .manu-li .menu-a:hover {
    background-color: #ffff;
    color: #000000;
    transition: 1s;   
}

.manu-sub-ul {
    position: absolute;
    width: 100%;
    height: 0vw;
    opacity: 0;
    /*visibility: hidden;要素はあるけど見えない状態*/
    visibility: hidden;
    list-style-type: none;
    transition: 1s;
    z-index: 100;
}

.manu-sub-ul .manu-sub-li {
    width: 100%;
    background-color: #000000;
    opacity: 0.9;
    border-bottom: 0.5px solid #ffff;
}

.manu-sub-ul .manu-sub-li .manu-sub-a {
    display: block;
    line-height: 1.7;
    text-decoration: none;
    text-align: center;
    color: #ffffff;
    font-size: 1.2vw;
    font-family: serif;
    text-decoration: none;
    transition: 1s;
}

.manu-sub-ul .manu-sub-li .manu-sub-a:hover {
    background-color: #ffff;
    color: #000000;
    transition: 1s;
}

.drops:hover .manu-sub-ul {
    height: fit-content;
    opacity: 1;
    visibility: visible;
    transition: 1s;  
}

.setumeibox {
    margin-top: 5vw;
    background-image: url(../images/story_bg.svg);
    background-size: 100% 100%;
}

.siri-setumei {
    padding-top: 5vw;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 1.3vw;
    line-height: 2;
    color: #101010;
    white-space: pre-wrap;
    font-family: serif;
    padding-bottom: 5vw;

}

.ainusetumei {
    margin-top: 5vw;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}

.ma-ku {
    width: 25%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 3vw;
}

.ma-ku img {
    width: 100%;
}

h3 {
    text-align: center;
    color: #0f2350;
    font-size: 2vw;
    font-family: serif;
    margin-bottom: 3vw;
    
}

.siri-annai {
    display: block;
    margin-top: 3vw;
    color: #101010;
    font-size: 1.4vw;
    font-family: serif;
    text-align: center;
    margin-bottom: 1vw;
}

.siritext {
    display: block;
    color: #101010;
    font-size: 1vw;
    font-family: serif;
    text-align: center;
}

.tour-flex {
    display: flex;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5vw;
}

.tour-sita {
    margin-top: 6vw;
}

.tour-flex .tour {
    width: 30%;
}

.tour-flex .tour:nth-of-type(2) {
    margin-left: 5%;
}

.tour-flex .tour:nth-of-type(3) {
    margin-left: 5%;
}

.tour-flex .tour a {
    text-decoration: none;
}

.tour-flex .tour a .tour-imgs {
    width: 100%;
}

.tour-flex .tour a .tour-imgs img {
    width: 100%;
    transition: transform .6s ease; /* ゆっくり変化させる */
}

.tour-flex .tour a .tour-imgs img:hover {
    transform: scale(1.1); /* 拡大 */
}

.tour-flex .tour a h5 {
    font-family: serif;
    color: #0f2350;
    font-size: 1.4vw;
}


.tour-flex .tour a .tour-setumei {
    font-family: serif;
    color: #101010;
    font-size: 1.1vw;
    margin-top: 1vw;
    text-align: justify;
}

.tour-flex .tour a .more {
    margin-left: auto;
    margin-right: auto;
    width: 30%;
    font-family: serif;
    color: #ffff;
    font-size: 1.1vw;
    margin-top: 3vw;
    
    background-color: #0f2350;
    padding: 0.5vw 2vw;
    text-align: center;
    border-radius: 35px;
    transition: 1s;
}

.tour-flex .tour a .more:hover {
    opacity: 0.5;
    transition: 1s;
}

.ikimononituitebox {
    margin-top: 10vw;
    width: 90%;
    height: 30vh;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../images/mainimg.jpg);
    background-size: 100% 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.ikimononituitebox .ikimononituite {
    font-family: serif;
    font-size: 2vw;
    font-weight: 900;
    color: #ffff;   
}

.ainusetumei .sebutu {
    white-space: pre-wrap;
    font-family: serif;
    font-size: 1.2vw;
    text-align: center;
    margin-top: -2vw;
}

.animaru {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 3vw;
}

.animaru img {
    width: 100%;
}

.yaseisita {
    margin-top: 5vw;
}

@keyframes infinity-scroll-left {
    from {
      transform: translateX(0);
    }
      to {
      transform: translateX(-100%);
    }
    }
    .scroll-infinity__wrap {
        display: block;
        margin-top: 1vw;
      display: flex;
      width: 90%;
      overflow: hidden;
      margin-right: auto;
      margin-left: auto;
    }
    .scroll-infinity__list {
      display: flex;
      list-style: none;
      padding: 0
    }
    .scroll-infinity__list--left {
      animation: infinity-scroll-left 80s infinite linear 0.5s both;
    }
    .scroll-infinity__item {
      width: calc(100vw / 5);
    }
    .scroll-infinity__item>img {
      width: 100%;
    }

    @keyframes infinity-scroll-right {
        from {
          transform: translateX(-100%);
        }
          to {
          transform: translateX(0%);
        }
        }
        .scroll-infinity__list--right{
          animation :infinity-scroll-right 80s infinite linear 0.5s both;
        }

.youtube {
    display: flex;
    flex-direction: column;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}       



.youtube .youtubebox iframe {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2vw;
}

.sitahe {
    margin-top: 7vw;
}

.mozi {
    width: 55%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10vw;
}

.mozi img {
    width: 100%;
}

.moji-p {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 3vw;
    color: #101010;
    text-align: center;
    font-size: 1.2vw;
    font-family: serif;
    white-space: pre-wrap;
    line-height: 3;
    letter-spacing: 0.2em;
}


.down-imags {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.down-imags img {
    width: 100%;
}

.footer-flex {
    display: flex;
    width: 86%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10vw;
    border-top: 1px solid #0f2350;
    padding-top: 10vw;
}

.footer-flex .footer-logo {
    width: 8%;
    margin-left: 5vw;
}

.footer-flex .footer-logo img {
    width: 100%;
}

.footer-ul {
    margin-left: 10vw;
}

.footer-ul .footer-li {
    list-style-type: none;
}

.footer-ul .footer-li .footer-a {
    color: #101010;
    font-family: serif;
    font-size: 1.1vw;
    text-decoration: none;
    line-height: 3;
}


.footer-imgs {
    width: 1%;
    position: relative;
}

.footer-imgs img {
    width: 100%;
    position: absolute;
    top: -36.5vw;
    left: 5vw;
}

.footer-span {
    display: block;
    margin-top: 10vw;
    margin-left: 28vw;
    font-size: 1.7vw;
    font-family: serif;
    color: #0f2350;
}

.footer-down-flex {
    display: flex;
    width: 100%;
    margin-top: 3vw;
}

.footer-down-flex .down-left {
    width: 45%;
    margin-top: 2.5vw;
}

.footer-down-flex .down-left h4 {
    padding-left: 29vw;
    font-size: 1.1vw;
    font-family: serif;
    color: #101010;
    margin-bottom: 5vw;
}

.footer-down-flex .down-left h4:nth-of-type(1) {
    margin-bottom: 26vw;
}

.footer-down-flex .down-right {
    width: 55%;
}

.footer-down-flex .down-right p {
    padding-left: 4vw;   
}

.footer-down-flex .down-right p a {
    font-size: 1.1vw;
    font-family: serif;
    color: #101010;
    text-decoration: none;
}


.footer-down-flex .down-right .no {
    margin-bottom: 0.5vw;
}

.footer-down-flex .down-right .space {
    margin-bottom: 2vw;
}

.copyright {
    text-align: center;
    font-size: 1vw;
    color: #101010;
    margin-top: 3vw;
    padding-bottom: 7vw;
}








