@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;/*変化の速度を指定*/
}

.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); /* 拡大 */
    
}

.hero {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2vw;
}

.hero video {
    width: 100%;
} 

.ainubox {
    margin-top: 10vw;
    margin-bottom: 10vw;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    background-color: #121e3f;
    background-image: url(../images/story_bg.svg);
    
}

.ainuh4 {
    padding-top: 10vw;
    text-align: center;
    font-size: 1.6vw;
    font-family: serif;
    color: #ffff;
}

.ainushajime {
    width: 60%;
    margin-top: 3vw;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
    line-height: 2;
    font-size: 1.2vw;
    font-family: serif;
    color: #ffff;
    padding-bottom: 10vw;
}

.ainusetumei {
    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;
    
}

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

.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;
    text-align: center;
}

.tour-flex .tour a h6 {
    font-family: serif;
    color: #0f2350;
    font-size: 1.2vw;
    margin-top: 1vw;
}

.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;
}

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

.otanosimi-a {
    text-decoration: none;
}

.otanosimi {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../images/moyou.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    margin-top: 10vw;
}

.otanosimi-2 {
    padding-top: 2vw;
    font-size: 2vw;
    font-family: serif;
    color: #ffff;
    text-align: center;
}

.otanosimi-2 span {
    margin-left: 1vw;
    font-size: 2.5vw;
}

.otanosimi .otanosimiimgs {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    border-top: 1px solid #ffff;
   
}

.otanosimi .otanosimiimgs img {
    display: block;
    padding-bottom: 2vw;
    padding-top: 1vw;
    width: 100%; 
}

.otanosimi .otanosimiimgs .smolllost {
    display: block;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}

.ilasutobox {
    position: relative;
}

.ilasuto {
    display: block;
    width: 20%;
    position: absolute;
    top: -13vw;
    left: 70%;
}

.ilasuto img {
    width: 100%;    
}


.toribox {
    position: relative;
}

.kakesu {
    display: block;
    width: 20%;
    position: absolute;
    top: 63vw;
    left: 8%;
}

.kakesu img {
    width: 100%;
}


.purupuru {
    animation:2s ease-in 1s infinite alternate forwards running purupuru;
  }
  
  @keyframes purupuru {
    0%   { transform: scale(1.0, 1.0) translate(0%, 0%); }
    20%  { transform: scale(1.0, 1.06) translate(-5%, -4%) skew(6deg, 0deg); }
    50%  { transform: scale(1.0, 0.94) translate(5%, 4%) skew(-6deg, 0deg); }
    65%  { transform: scale(1.0, 1.03) translate(2%, -2%) skew(-3deg, 0deg); }
    80%  { transform: scale(1.0, 0.97) translate(-2%, 2%) skew(3deg, 0deg); }
    100% { transform: scale(1.0, 1.0) translate(0%, 0%); }
  }



.otanosimimain {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1vw;
}

.otanosimimain img {
    width: 100%;
    vertical-align: bottom;
}

.kamuihukurou {
    padding: 10vw 0;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../images/kamuihukurou.jpg);
    background-size: 100% 100%;
    background-color:rgba(255,255,255,0.8);/*background-imageのみ透過*/
    background-blend-mode:lighten;  
}

.kamuihukurou2 {
    padding: 10vw 0;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../images/odori.jpg);
    background-size: 100% 100%;
    background-color:rgba(255,255,255,0.9);
    background-blend-mode:lighten;  
}

.kamui {
    
    font-weight: 900;
    font-size: 3.5vw;
    font-family: serif;
    color: #0f2350;
    text-align: center;
}

.kamui2 {
    font-size: 1.5vw;
    font-family: serif;
    font-weight: 900;
    color: #0f2350;
    text-align: center;
}

.kamui3 {
    font-size: 2vw;
    font-family: serif;
    font-weight: bold;
    color: #a75b5f;
    text-align: center;
    margin-top: 3vw;
}

.kamui4 {
    font-size: 2vw;
    font-family: serif;
    font-weight: bold;
    color: #a75b5f;
    text-align: center;

}

.kamui5 {
    font-size: 1.2vw;
    font-family: serif;
    color: #101010;
    text-align: center;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2vw;
    line-height: 2;
    
}

.otanosimi-a .more {
    margin-left: auto;
    margin-right: auto;
    width: 15%;
    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;
}

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

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

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

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

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

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

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

  .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: 26.5vw;
}

.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;
}




