/*全体---------------------------------------------------------------------*/
html{
    font-size: 100%;
    scroll-behavior: smooth;
}
body{
    font-family: "fot-tsukuaoldmin-pr6n", 'Shippori Mincho', serif,"Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: 300;
    font-style: normal;
   overflow-x: hidden;
}
a{
    text-decoration: none;
}
img{
    max-width: 100%;
}
.big_bg{
    background: #f7f5ef;
}
/*全体ここまで*/

/*画面スクロール用-----------------------------------------------------------------*/
.scroll{
  transition: 0.8s ease-in-out;
  opacity: 0;
}
.scroll.on {
  opacity: 1.0;
}

/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}
.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}

/*----------------------------
scroll_left ｜左から出現
----------------------------*/
.scroll_left {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    transform: translateX(-30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}
.scroll_left.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}


/*----------------------------
scroll_right ｜右から出現
----------------------------*/
.scroll_right {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    transform: translateX(30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}
.scroll_right.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}

/*開いたらすぐにスクロールせずに表示----------*/
.scroll_up-0 {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}
.scroll_up-0.view{
  transform: translateY(0);
  opacity: 1.0;
}

.scroll-0{
  transition: 0.8s ease-in-out;
  opacity: 0;
}
.scroll-0.view {
  opacity: 1.0;
}

/*スクロールのタイミングを変える*/
.timing04{
    transition-delay: 0.4s;
}
.timing08{
    transition-delay: 0.8s;
}
.timing12{
    transition-delay: 1.2s;
}
.timing16{
    transition-delay: 1.6s;
}
.timing20{
    transition-delay: 2s;
}
.timing24{
    transition-delay: 2.4s;
}
.timing28{
    transition-delay: 2.8s;
}
.timing32{
    transition-delay: 3.2s;
}
.timing36{
    transition-delay: 3.6s;
}
.timing40{
    transition-delay: 4s;
}

/*画面スクロールここまで*/


/*ハンバーガーメニュー---------------------------------*/
.menu-btn{
    position: fixed;
    top: 40px;
    left: 30px;
    display: flex;
    height: 58px;
    width: 60px;
    justify-content: center;
    z-index: 91;
    background-color: rgba(0,0,0,0);
    transition: all 0.5s;
    cursor: url(../images/200ppi/icon2.png) 10 10 ,auto;
}
.menu-moji{
    position: fixed;
    top: 60px;
    left: 29px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90; 
    font-size: 0.8rem;
    color: #fff;
    text-shadow: 1px 1px 3px #101315;
}
.menu-close{
    position: fixed;
    top: 60px;
    left: 30px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    opacity: 0;
    font-size: 0.8rem;
    color: #fff;
}
.menu-btn span{
    content: '';
    display: block;
    height: 2px;
    width: 50px;
    background-color: #ffffff;
    position: absolute;
    box-shadow: 1px 1px 3px #101315;
    top: 5px;
}
.menu-btn span:before,
.menu-btn span:after{
    content: '';
    display: block;
    height: 2px;
    width: 50px;
    background-color: #ffffff;
    position: absolute;
    transition: all 0.4s;
}
.menu-btn:hover span:before{
    width: 40px;
}
.menu-btn:hover span:after{
    width: 25px;
}
.menu-btn span::before{
    top: 12px;
    box-shadow: 1px 1px 3px #101315;
}
.menu-btn span::after{
    top: 24px;
    box-shadow: 1px 1px 3px #101315;
}

/*チェック状態の時の変化--------*/
#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);
    box-shadow: none;
  /*メニューオープン時は真ん中の線を(span)透明にする*/
}
#menu-btn-check:checked ~ .menu-moji span {
    color: rgba(255, 255, 255, 0);
    transition: all 0.5s;
    text-shadow: none;
    /*メニューオープン時は真ん中の線を(span)透明にする*/
}
#menu-btn-check:checked ~ .menu-close{
    opacity: 1;
    transition: all 0.5s;
    
    /*メニューオープン時は真ん中の線を(span)透明にする*/
}

#menu-btn-check:checked ~ .menu-btn span:before {
    top: 15px;
    left: 10px;
    transform: rotate(45deg);
    width: 30px;
    box-shadow: none;
}

#menu-btn-check:checked ~ .menu-btn span:after {
    top: 15px;
    left: 10px;
    transform: rotate(-45deg);
    width: 30px;
    box-shadow: none;
}

#menu-btn-check{
    display: none;
}


/*スマホ版メニューの中身*/
.nmenu-content {
    width: 40%;
    height: 100%;
    position: fixed;
    top: 0;
    /*通常時は画面右に押し込む----------*/
    right: 100%;
    z-index: 80;
    background-color: #101315;
    transition: all 1s;
    opacity: 0;
}
.nmenu-content_p_wrap{
      text-align: center;
}
.nmenu-content_flex{
    width: 100%;
    max-width: 500px;
    display: flex;
    margin: 0 auto;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.nmenu-content ul li {
    list-style: none;
    flex-basis: 50%;
    text-align: center;
}
.nmenu-content_flex li a {
    width: 100%;
    box-sizing: border-box;
    color:#fff;
    text-decoration: none;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 20px;
}
.nmenu-content_flex:hover a{
    color: #606467;
}
.nmenu-content_flex a:hover{
    color: #ea7e3f;
}
.nmenu-content_logo{
    text-align: center;
    margin-top: 50px;
    margin-bottom: 80px;
}
.nmenu-content_logo img{
    width: 150px;
    height: 70px;
}
.nmenu-content_p{
    font-size: 1.2rem;
}
.nmenu-content_p a{
    position: relative;
    color: #fff;
}
.nmenu-content_p a:hover{
  color: #fff;
}
.nmenu-content_p a::after{
    position: absolute;
    content: '';
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 1px;
    background: #fff;
    transition: transform 0.5s ease-in-out;
    transform-origin: left;
}
.nmenu-content_p a:hover::after{
    transform: scale(0,1);
    transform-origin: right;
}
.nmenu-content_text{
    text-align: center;
    margin-bottom: 30px;
    color: #fff;
}
.nmenu-content_figure{
    display: flex;
    justify-content: space-around;
    margin-bottom: 100px;
}
.nmenu-content_figure a{
    width: 35%;
    display: block;
    overflow: hidden;
}
.nmenu-content_figure img{
    transition: all 0.5s;
}
.nmenu-content_figure img:hover{
    transform: scale(1.2,1.2);
    transition: all 0.5s;
    filter: saturate(0.5);
}
.nmenu-content_p_wrap{
    color: #fff;
}

/*チェック状態の時*/
#menu-btn-check:checked ~ .nmenu-content {
  right: 60%;/*メニューを画面内へ*/
  opacity: 1;
}
/*ハンバーガーメニューここまで*/

/*戻るボタン----------------------------------------------*/
.pagetop {
    animation: fuwafuwa 3s infinite ease-in-out .8s alternate;
    display: inline-block;
    transition: 1.5s ease-in-out;
    height: 50px;
    width: 50px;
    position: fixed;
    right: 30px;
    bottom: 50px;
    background: #10131583;
    border: solid 3px #f7f5ef;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}  
.pagetop:hover{
    animation-play-state: paused;
}
.pagetop__arrow {
    height: 15px;
    width: 15px;
    border-top: 3px solid #f7f5ef;
    border-right: 3px solid #f7f5ef;
    transform: translateY(20%) rotate(-45deg);
}
@keyframes fuwafuwa {
  0% {
    transform:translate(0, 0) rotate(-7deg);
  }
  50% {
    transform:translate(0, -7px) rotate(0deg);
  }
  100% {
    transform:translate(0, 0) rotate(7deg);
  }
}
/*戻るボタンここまで*/

/* Loading背景画面設定---------------------------------------------------------*/
#splash {
/*fixedで全面に固定*/
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999;
    background:#101315;
    text-align:center;
    color:#fff;
}

/* Loading画像中央配置　*/
#splash_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
    width:260px;
}

/* fadeUpをするアイコンの動き */
.fadeUp{
    animation-name: fadeUpAnime;
    animation-duration:3s;
    animation-fill-mode:forwards;
    opacity: 0;
}

@keyframes fadeUpAnime{
  0%{
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* Loading背景画面設定ここまで---------------------------------------*/


/*Top page 1----------------------------------------------------------*/
.top{
    background-image: url(../img_waifu_photo/top1.jpg);
    background-size: cover; 
    background-position: center center;
    background-repeat: no-repeat;
    height: 100vh;
    position: relative;
}
.top figure{
    text-align: center;
}
.top figure img{
    width: 150px;
    min-width: 150px;
    height: 70px;
    margin-top: 40px;
}
.top_slide{
    writing-mode: vertical-rl;
    color: #fff;
    font-weight: bold;
    position: absolute;
    bottom: 80px;
    font-size: 2.6rem;
    line-height: 2em;
    letter-spacing: 0.5em;
    right: 230px;
}
.rrr{
    /*各テキストにanimationを設定*/
    color: transparent; /*テキストを透明にしてtext-shadowだけ表示する*/
    animation-name: blur-title;
    animation-duration: 2.5s;
    animation-fill-mode: forwards;
}
.jjj{
  /*各テキストにanimationを設定*/
    color: transparent; /*テキストを透明にしてtext-shadowだけ表示する*/
    animation-name: title;
    animation-duration: 2.5s;
    animation-fill-mode: forwards;
}
/*一文字ずつ遅延させる*/
span:nth-child(1) {
    animation-delay: 4.5s;
  }
  span:nth-child(2) {
    animation-delay: 4.8s;
  }
  span:nth-child(3) {
    animation-delay: 5.1s;
  }
  span:nth-child(4) {
    animation-delay: 5.4s;
  }
  span:nth-child(5) {
    animation-delay: 5.7s;
  }
  span:nth-child(6) {
    animation-delay: 6s;
  }
  span:nth-child(7) {
    animation-delay: 6.3s;
  }
  span:nth-child(8) {
    animation-delay: 6.6s;
  }
  span:nth-child(9) {
    animation-delay: 6.9s;
  }
  span:nth-child(10) {
    animation-delay: 7.2s;
  }
  span:nth-child(11) {
    animation-delay: 7.5s;
  }
  span:nth-child(12) {
    animation-delay: 7.8s;
  }
  span:nth-child(13) {
    animation-delay: 8.1s;
  }
  span:nth-child(14) {
    animation-delay: 9.8s;
  }
  span:nth-child(15) {
    animation-delay: 8.4s;
  }
  @keyframes blur-title {
    0% {
      text-shadow: 0 0 100px #fff;
      opacity: 0;
    }
    5% {
      text-shadow: 0 0 90px #fff;
    }
    15% {
      opacity: 1;
    }
    20% {
      text-shadow: 0 0 0px rgba(154, 158, 111, 0.642);
    }
    100% {
      opacity: 1;
      color: #fff;
      text-shadow: 1px 1px 3px #101315;
    }
  }

  @keyframes title {
    0% {
      text-shadow: 0 0 100px #fff;
      opacity: 0;
    }
    5% {
      text-shadow: 0 0 90px #fff;
    }
    15% {
      opacity: 1;
    }
    20% {
      text-shadow: 0 0 0px rgba(154, 158, 111, 0.642);
    }
    100% {
      opacity: 1;
      color: #ea7e3f;
      text-shadow: 1px 1px 3px #101315;
    }
  }
  
  /*Top page 1ここまで*/

/*Top page 2--------------------------------------------------*/
/*.top2{
    display: flex;
    justify-content: space-around;
}
.top2_text{
    flex-basis: 30%;
}
.top2_img{
    flex-basis: 60%;
    display: flex;
    position: relative;
}
.top2_img p{
  writing-mode: vertical-rl;
}
.map_wrap{
    position: relative;
    height: 600px;
    width: 640px;
    background: #000;
}
.map_wrap .top2_line{
    width: 130px;
    height: auto;
    position: absolute;
    top: 100px;
    left: 100px;
}
.map_wrap .top2_map{
    width: 500px;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
}*/

.top2{
    margin-top: 200px;
}
.top2_flex{
    display: flex;
    justify-content: space-around;
}
.top2_text{
    flex-basis: 40%;
    margin: 80px auto 0  auto;
    letter-spacing: 0.18em;
    line-height: 2em;
}
.top2_text h3{
    text-align: center;
}
.top2_text p{
    margin-top: 30px;
}
.top2_img{
    flex-basis: 40%;
    display: flex;
}
.top2_img2 img{
    width: 100%;
    margin-top: -100px;
}
/*Top page 2ここまで*/

/*Top page 3-------------------------------------------*/
.top3{
    background: #101315;
    margin-top: 200px;
}
.top3_img{
    position: relative; 
}
.top3_img img{
    width: 100%;
}
.top3_img::after{
    content: "";
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    height: 40vw;
    background: linear-gradient(180deg, rgba(16, 19, 21, 0) 0.0, #101315);
}
.top3_flex{
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100vh;
    margin-top: -15%;
}
.top3_img2{
    width: auto;
    height: 50vh;
    margin: 0 auto;
    overflow: hidden;
    margin-top: 50px;
}
.top3_img2 img{
    width: auto;
    height: 70vh;
    transform: translate3d(0px, -20%, 0px);
}
.top3_text{
    width: 27vw;
    height: 100vh;
    color: #fff;
    z-index: 1;
    margin-top: 250px;
    margin-left: 150px;
}
.top3_text h2{
    font-size: 4.22rem;
    letter-spacing: 0.02em;
}
.top3_text h4{
    line-height: 1.8em;
    letter-spacing: 0.1em;
    margin-top: 50px;
}
.top3_text p{
    margin-top: 30px;
    letter-spacing: 0.18em;
    line-height: 2em;
}
/*Top page 3ここまで*/


/*Top page 4----------------------------------------------------------*/
.top4{
    margin-top: 200px;
}
.top4 h2{
    text-align: center;
    font-size: 4rem;
    letter-spacing: 0.1em;
}
.top4_flex{
    display: flex;
    justify-content: space-around;
    margin-top: 150px;
}
.top4_img{
    flex-basis: 50%;
}
.top4_text{
    flex-basis: 30%;
    margin-top: -30px;
}
.top4_text h4{
    line-height: 1.8em;
    letter-spacing: 0.1em;
}
.top4_text p{
    margin-top: 30px;
    letter-spacing: 0.18em;
    line-height: 2em;
}
.txsz{
    font-size: 2rem;
    letter-spacing: 0.1em;
    text-shadow: 1px 1px 3px #101315;
}
.txsz-p{
    text-shadow: 1px 1px 3px #101315;
}
/*Top page 4ここまで*/

/*Top page 5------------------------------------------------------------------*/
.top5{
    height: 100vh;
    background: #101315;
    margin-top: 200px;
}
.top5_flex{
    display: flex;
}
.top5_comtact{
    text-align: center;
    color: #fff;
    border-right: 1px solid #282b2d;
    margin: 50px 0;
    padding-right: 50px;
    height: 87vh;
}
.top5_logo{
    width: 150px;
    height: 70px;
    margin: 0 auto;
    margin-top: 60px;
}
.top5_comtact h5{
    margin-top: 300px;
    margin-bottom: 30px;
}
.top5_small{
    font-size: 0.7rem;
    letter-spacing: 0.1em;
}
.top5_big{
    font-size: 1.15rem;
}
.top5_boder a{
    color: #fff;
    position: relative;
}
.top5_boder a::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    background: #fff;
    width: 100%;
    height: 1px;
    transition: transform 0.5s ease-in-out;
    transform-origin: left;
}
.top5_boder a:hover::after{
    transform-origin: right;
    transform: scale(0,1);
}
.top5_map{
    margin-left: 30px;
    margin-top: 100px;
}
.top5_map h5{
    color: #fff;
    text-align: center;
}



.top5_flex_img{
    margin-top: 60px;
    display: flex;
    justify-content: space-around;
}
.top5_flex_img a{
    width: 40%;
    height: 100%;
    display: block; 
}
.top5_flex_img img{
  transition: all 0.5s;
}
.zoom:hover img{
  transform: scale(1.2,1.2);
  transition: all 0.5s;
}
.mask{
	position: relative;
	display: block;/*画像をくくるspanタグをブロック要素にする*/
    line-height: 0;/*行の高さを0にする*/
    overflow: hidden;
}
.mask::before,
.mask::after{
  position: absolute;
  top: 4%;
  right: 2.5%;
  bottom: 4%;
  left: 2.5%;
  z-index: 3;
  content:"";
  opacity: 0;
  transition: .3s ease-in-out;/*移り変わる速さを変更したい場合はこの数値を変更*/
}
.mask::before {
  border-top: 1px solid #ffffffa6;/*枠線の色と太さを変更したい場合はこの数値を変更*/
  border-bottom: 1px solid #ffffffa6;/*枠線の色と太さを変更したい場合はこの数値を変更*/
  transform: scale(0,1);
}
.mask::after{
  border-right: 1px solid #ffffffa6;/*枠線の色と太さを変更したい場合はこの数値を変更*/
  border-left: 1px solid #ffffffa6;/*枠線の色と太さを変更したい場合はこの数値を変更*/
  transform: scale(1,0);
}
.zoom:hover .mask::before, 
.zoom:hover .mask::after{
  /*hoverした時の変化*/
	opacity: 1;
  transform: scale(1);
  transition-delay: .3s;
}
.cap{
	opacity:0;
	transition: .5s ease-in-out;/*移り変わる速さを変更したい場合はこの数値を変更*/
	position: absolute;
	z-index:4;/*テキストを前面に出す*/
	top: 50%;
    left: 50%;
	transform: translate(-50%,-50%);
	color: #ffffffcd;/*テキストの色を変えたい場合はここを修正*/
    line-height: 1.5;/*行の高さを1.5にする*/
    font-size: 2rem;
    text-align: center;
    text-shadow: 1px 1px 3px #101315;
}
.zoom:hover .cap{
    opacity:1;
    transition-delay: .6s;
    transition-duration: .6s;
}
.name{
  opacity:0;
	transition: .5s ease-in-out;/*移り変わる速さを変更したい場合はこの数値を変更*/
	position: absolute;
	z-index:4;/*テキストを前面に出す*/
	top: 50%;
    left: 50%;
	transform: translate(-50%,-50%);
	color: #ffffffcd;/*テキストの色を変えたい場合はここを修正*/
    line-height: 1.5;/*行の高さを1.5にする*/
    font-size: 1rem;
    text-align: center;
    text-shadow: 1px 1px 3px #101315;
}
.zoom:hover .name{
  opacity:1;
  transition-delay: .6s;
  transition-duration: .6s;
}

.mask2{
	position: relative;
	display: block;/*画像をくくるspanタグをブロック要素にする*/
    line-height: 0;/*行の高さを0にする*/
    overflow: hidden;
}
.mask2::before{
  content:"";
	position: absolute;
	z-index: 2;
	left:0;
	top:0;
	opacity:0;
	transition: .3s ease-in-out;/*移り変わる速さを変更したい場合はこの数値を変更*/
    transform: translateX(100%);
	background:#00000072;/*背景色*/
	width:100%;
	height: 100%;	
}
.mask2::after{
  content:"";
	position: absolute;
	z-index: 2;
	left:0;
	top:0;
	opacity:0;
	transition: .3s ease-in-out;/*移り変わる速さを変更したい場合はこの数値を変更*/
  transform: translateX(-100%);
	background:#00000072;/*背景色*/
	width:100%;
	height: 100%;	
}
.zoom:hover .mask2::before{
  /*hoverした時の変化*/
	opacity:1;
	transform: translateX(50%);
}
.zoom:hover .mask2::after{
  /*hoverした時の変化*/
	opacity:1;
	transform: translateX(-50%);
}

.mask3{
	position: relative;
	display: block;/*画像をくくるspanタグをブロック要素にする*/
    line-height: 0;/*行の高さを0にする*/
    overflow: hidden;
}
.mask3::before{
  content:"";
	position: absolute;
	z-index: 2;
	left:0;
	top:0;
	opacity:0;
	transition: .3s ease-in-out;/*移り変わる速さを変更したい場合はこの数値を変更*/
    transform: translateY(100%);
	background:#00000072;/*背景色*/
	width:100%;
	height: 100%;	
}
.mask3::after{
  content:"";
	position: absolute;
	z-index: 2;
	left:0;
	top:0;
	opacity:0;
	transition: .3s ease-in-out;/*移り変わる速さを変更したい場合はこの数値を変更*/
  transform: translateY(-100%);
	background:#00000072;/*背景色*/
	width:100%;
	height: 100%;	
}
.zoom:hover .mask3::before{
  /*hoverした時の変化*/
	opacity:1;
	transform: translateY(50%);
  transition-duration:  .5s;
}
.zoom:hover .mask3::after{
  /*hoverした時の変化*/
	opacity:1;
	transform: translateY(-50%);
  transition-duration:  .5s;
}




.top5_boder_top{
    display: block;
    border-top: 1px solid #282b2d;
    width: 80%;
    margin: 0 auto;
    margin-top: 10px;
    display: flex;
    padding-top: 50px;
}
.top5_boder_top p{
    margin: auto;
    color: #fff;
}
.top5_logo2{
    width: 150px;
    height: 70px;
    margin-left: auto;
    margin-right: 0;
}


/*Top5 アイコン----*/
.top5_icon{
    margin-top: 100px;
    text-align: center;
}
.fb{
    text-decoration: none;
    cursor: url(../images/200ppi/sirusi-fa.png) ,auto;
}
.fb i{
    color: #757a7e;
}
.fb i:hover{
    transform: scale(1.2);
    color: #1877F2;
}
.tw{
    text-decoration: none;
    cursor: url(../images/200ppi/sirusi-tw.png) ,auto;
}
.tw i{
    color: #757a7e;
    border-radius: 50%;
}
.tw i:hover{
    color: #1d9bf0;
    transform: scale(1.2);
}
.ln{
    text-decoration: none;
    cursor: url(../images/200ppi/sirusi-li.png) ,auto;
}
.ln i{
    color: #757a7e;
}
.ln i:hover{
    color: #3fc755;
    transform: scale(1.2);
}
.ig{
    text-decoration: none;
    cursor: url(../images/200ppi/sirusi-in.png) ,auto;
}
.ig i{
    color: #757a7e;
}
.ig i:hover{
    color: #101315;
    background: linear-gradient(45deg, rgba(254,212,117,1) 0%,rgba(229,61,93,1) 50%,rgba(194,49,134,1) 70%,rgba(156,56,187,1) 100%);
    border-radius: 15%;
    padding: 0 3px;
    transform: scale(1.2);
}
.you{
  text-decoration: none;
  cursor: url(../images/200ppi/sirusi-you.png) ,auto;
}
.you i{
  color: #757a7e;
}
.you i:hover{
  color: #ff0000;
  transform: scale(1.2);
}
/*Top5 アイコンここまで----*/

/*Top page 5ここまで*/




/*accessページ-----------------------------------------------------------------------*/
.access_text{
        writing-mode: vertical-rl;
        font-weight: bold;
        font-size: 1.7rem;
        line-height: 2em;
        margin: 150px auto;
}
.access_wrap{
        display: flex; 
        margin-left: 15px;
}
.access_sns{
        color: #6d7377;
        transition: all 0.3s ease-in-out;
}
.access_sns:hover{
        color: #6d73773b;
        transition: all 0.3s ease-in-out;
}
.access_wrap_a{
        color: #6d7377;
        display: block;
        margin-left: 8px;
        transition: all 0.3s ease-in-out;
}
.access_wrap_a:hover{
        color: #6d73773b;
        transition: all 0.3s ease-in-out;
}

/*動く矢印ボタン JSもある*/
.c-arrow-link-wrap{
        text-align: right;
        margin-top: 10px;
        padding-right: 20px;
}
.c-arrow-link{
        position: relative;
        padding-right: 50px;
        color: #6d7377;
        transition: all 0.3s ease-in-out;
        margin: 0 auto;
}
  .c-arrow-link:hover{
        color: #6d73773b;
        transition: all 0.3s ease-in-out;
}
  .c-arrow-link--icon {
        overflow: hidden;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 30px;
        margin: auto 0;
        line-height: 1;
  }
  .c-arrow-link--icon:before {
    content: "＞";
    position: absolute;
    top: 0;
    right: 0;
    animation-fill-mode: both;
    animation-duration: 0.6s;
  }
  .c-arrow-link.is-hover .c-arrow-link--icon:before {
    animation-name: transformLeftRight;
    animation-delay: 0.2s;
  }
  .c-arrow-link.is-hover:hover .c-arrow-link--icon:before {
    animation-name: transformRightLeft;
    animation-delay: 0s;
  }
  
  @keyframes transformLeftRight {
    0% {
      transform: translateX(-100%);
      color: #6d7377;
    }
    100% {
      transform: translateX(0);
      color: #6d7377;color: #6d7377;
    }
  }
  @keyframes transformRightLeft {
    0% {
      transform: translateX(0);
      color: #6d7377;
    }
    100% {
      transform: translateX(100%);
      color: #6d7377;
    }
  }
/*動く矢印ボタンここまで*/


.access2{
    text-align: center;
    margin-top: 100px;
}
.access_text2_1{
    font-size: 2.3rem;
    margin-bottom: 40px;
    letter-spacing: 0.3em;
}
.access_text2_2{
    font-size: 1.13rem;
    margin-bottom: 30px;
}
.access_text2{
    font-size: 1.5rem;
}
.access_text2 a{
    position: relative;
    color: #101315;
}
.access_text2 a:hover{
  color: #101315;
}
.access_text2 a::after{
    position: absolute;
    content: '';
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 1px;
    background: #101315;
    transition: transform 0.5s ease-in-out;
    transform-origin: left;
}
.access_text2 a:hover::after{
    transform: scale(0,1);
    transform-origin: right;
}


/*questionページ-----------------------------------------------------------------------*/
/*4つのボタン*/
.question{
    margin: 50px auto 200px auto;
}
.c-arrow-link-wrap2{
    text-align: right;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 20px;
}
.c-arrow-link2{
    position: relative;
    padding-right: 50px;
    color: #101315;
    transition: all 0.3s ease-in-out;
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
}
.c-arrow-link2:hover{
    color: #6d73773b;
    transition: all 0.3s ease-in-out;
}
.c-arrow-link2::after{
    position: absolute;
    content: '';
    right: -10px;
    bottom: -3px;
    width: 135%;
    height: 1px;
    background: #616568;
    transition: transform 0.4s ease-in-out;
    transform-origin: left;
}
.c-arrow-link2:hover::after{
    transform: scale(0,1);
    transform-origin: right;
    background: #6d73773b;
}
.c-arrow-link--icon2 {
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 30px;
    margin: auto 0;
    line-height: 1;
}
.c-arrow-link--icon2:before {
    content: "⬇︎";
    position: absolute;
    top: 0;
    right: 0;
    animation-fill-mode: both;
    animation-duration: .4s;
    color: #616568;
    padding-top: 22px;
    padding-bottom: 20px;
    font-size: 1.2rem;
}
.c-arrow-link2.is-hover .c-arrow-link--icon2:before {
    animation-name: transformTopBottom;
    animation-delay: .2s;
}
.c-arrow-link2.is-hover:hover .c-arrow-link--icon2:before {
    animation-name: transformBottomTop;
    animation-delay: 0s;
}
.c-arrow-link--icon2:after {
    content: "⬇︎";
    position: absolute;
    top: 0;
    right: 0;
    animation-fill-mode: both;
    animation-duration: .6s;
    color: #616568;
    padding-top: 22px;
    padding-bottom: 20px;
    font-size: 1.2rem;
}
.c-arrow-link2.is-hover .c-arrow-link--icon2:after  {
    animation-name: transformTopBottom;
    animation-delay: .5s;
  }
.c-arrow-link2.is-hover:hover .c-arrow-link--icon2:after  {
    animation-name: transformBottomTop;
    animation-delay: .4s;
}
@keyframes transformTopBottom {
  0% {
    transform: translateY(-100%);
    color: #6d73773b;
  }
  20% {
    transform: translateY(-20%);
    color: #fff;
  }
  100% {
    transform: translateY(0);
    color: #616568;
  }
}
@keyframes transformBottomTop {
  0% {
    transform: translateY(0);
    color: #6d73773b;
  }
  100% {
    transform: translateY(100%);
    color: #616568;
  }
}

/*ご宿泊についてから*/
.question_h3{
        text-align: center;
        margin-bottom: 80px;
        letter-spacing: 0.4em;
        font-size: 2rem;
}
.question_p{
        font-size: 1.2rem;
        letter-spacing: 0.07em;
}
.question_p_hi{
        letter-spacing: 0.07em;
        line-height: 2em;
}
.question_wrap{
        margin-bottom: 150px;
}
.q{
        border: 1px solid #6d7377;
        height: 50px;
        width: 50px;
        padding-top: 10px;
        padding-right: 2px;
        border-radius: 20%;
        text-align: center;
        transition: all .3s ease-in-out;
}
.q-color:hover > .q{
        color: #fc5e24;
        background: #040e4ae1;
        transition: all .3s ease-in-out;
}
.a{
        border: 1px solid #6d7377;
        height: 50px;
        width: 50px;
        border-radius: 20%;
        text-align: center;
        padding-top: 10px;
}

/*bootstrqp5いじった*/
.accordion-button2{
        position: relative;
        display: flex;
        align-items: center;
        width: 100%;
        padding: 1rem 1.25rem;
        font-size: 1rem;
        color: #212529;
        text-align: left; 
        border: 0;
        border-radius: 0;
        overflow-anchor: none;
        transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease;
        background: transparent;
}
.accordion-button2::after{
        flex-shrink: 0;
        width: 1.25rem;
        height: 1.25rem;
        margin-left: auto;
        content: "";
        background-image: url(../images/200ppi/juuji.png);
        background-repeat: no-repeat;
        background-size: 1.25rem;
        transition: transform .5s ease-in-out;  
}
.accordion-button2:not(.collapsed)::after {
        background-image: url(../images/200ppi/yokoline.png);
        transform: rotate(180deg);
        transition:  transform 0s ease-in-out; 
}
.accordion-item2{
        border-bottom: 1px solid #6d73773b;
}
.accordion-header{
        background: transparent; 
}
/*bootstrqp5いじったここまで*/

.qu-boder_a{
        position: relative;
}
.qu-boder_a::after{
        content: '';
        position: absolute;
        left: 0;
        bottom: -3px;
        background: #101315;
        width: 100%;
        height: 1px;
        transition: transform 0.5s ease-in-out;
        transform-origin: left;
}
.qu-boder_a:hover::after{
        transform-origin: right;
        transform: scale(0,1);
}
/*questionページここまで------*/


/*アルバムページ---------------------------------------------------------------------*/
.big_bg2{
  background: #101315;
}
/*--固定背景の設定--*/
.cd-fixed-bg h2 {
  font-size: 5rem;
  letter-spacing: 0.3em;
  text-align: center;
  text-shadow: 1px 1px 3px #101315;
}
.cd-fixed-bg {
  position: relative;
  min-height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 2;
  box-sizing: border-box;
color: #FFF;
font-size: 5rem;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
height: 100vh;
padding: 5%;
}
/*--固定背景01--*/
.cd-fixed-bg.cd-bg-1  {
background-image: url(../images/haru-about.png);
}

/*--固定背景02--*/
.cd-fixed-bg.cd-bg-2  {
background-image: url(../images/natu-about.jpg);
}

/*--固定背景03--*/
.cd-fixed-bg.cd-bg-3  {
background-image: url(../images/aki-about.jpg);
}

/*--固定背景04--*/
.cd-fixed-bg.cd-bg-4  {
background-image: url(../images/winter-about.jpg);
}
.cd-fixed-bg span{
content: "";
position: absolute;
bottom: 0;
z-index: -1;
display: block;
width: 100%;
height: 40vw;
background: linear-gradient(180deg, rgba(16, 19, 21, 0) 0.0, #101315);
}
.hitokototext{
  font-size: 1.3rem;
  letter-spacing: 0.5em;
  text-align: center;
  text-shadow: 1px 1px 3px #101315;
}

/*セクション1*/
.blackbox{
margin: 20% 0 12% 0;
}
.blackbox h2{
font-size: 1.5rem;
writing-mode: vertical-rl;
color: #fff;
text-align-last: left;
letter-spacing: 0.5em;
line-height: 3em;
margin: 0 auto;
}

/*セクション2*/
.blackbox2{
  margin-bottom: 18%;
}
.blackbox2 h3{
font-size: 2.5rem;
color: #fff;
letter-spacing: 0.1em;
margin-bottom: 5%;
text-align: center;
}
.blackbox2 p{
width: 40%;
color: #fff;
margin: 0 auto;
letter-spacing: 0.18em;
line-height: 2em;
}

/*セクション3*/
.blackbox3 h3{
text-align: center;
color: #fff;
font-size: 3rem;
letter-spacing: 0.1em;
margin-bottom: 8%;
}
.loop02 {
display: flex;
overflow: hidden;
}
.loop02__box {
display: flex;
animation: loop-list 30s linear infinite;
margin: 0;
padding: 0;
}
.loop02__item{
width: calc(100vw / 4);
display: block;
margin-right: 10px;
}
.loop02__item img {
width: 100%;
}
@keyframes loop-list {
from {
    transform: translateX(-100%);
}
to {
    transform: translateX(0);
}
}
.loop-mask:hover .loop02__box{
  animation-play-state: paused;
}

.loop03 {
display: flex;
overflow: hidden;
margin-top: 10px;
}
.loop03__box {
display: flex;
animation: loop-list2 30s linear infinite;
margin: 0;
padding: 0;
}
.loop03__item{
width: calc(100vw / 4);
display: block;
margin-right: 10px;
}
.loop03__item img {
width: 100%;
}
@keyframes loop-list2 {
from {
    transform: translateX(0);
}
to {
    transform: translateX(-100%);
}
}
.loop-mask:hover .loop03__box{
  animation-play-state: paused;
}
.loop-mask{
  position: relative;
  cursor: url(../images/200ppi/sirusi.png) ,auto;
}
.loop-mask::before{
content: "";
position: absolute;
bottom: 0;
display: block;
width: 100%;
height: 20vw;
background: linear-gradient(180deg, rgba(16, 19, 21, 0) 0.0, #101315);
z-index: 20;
}

.but-al{
  text-align: center;
  margin-top: 15%;
}
.but-al a{
color: #fff;
position: relative;
font-size: 1.2rem;
letter-spacing: 0.1em;
cursor: url(../images/200ppi/sirusi2.png) ,auto;
}
.but-al a::before{
content: '';
position: absolute;
left: 0;
bottom: -10px;
background: #fff;
width: 100%;
height: 1px;
transition: transform 0.5s ease-in-out;
transform-origin: left;
}
.but-al a::after{
margin-left: 20px;
width: 3rem;
height: 3rem;
content: "";
background-image: url(../images/200ppi/camp.png);
background-repeat: no-repeat;
background-size: 3rem;
position: absolute;

}
.but-al a:hover::before{
transform-origin: right;
transform: scale(0,1);
}
.but-al a:hover::after{
  background-image: url(../images/200ppi/camp5.png);
background-repeat: no-repeat;
}

/*セクション4*/
.bd-top{
  border-top: 1px solid #282b2d;
}
/*アルバムページここまで*/



/*スマホ版------------------------------------------------------------*/
@media(max-width:1200px){
        /*Top3*/
        .top3_text{
          margin-left: 100px;
        }

        /*Top4*/
        .top4_flex{
          flex-direction: column;
        }
        .top4_text{
          margin-top: 100px;
        }     

        /*Top5*/
        .cap{
            font-size: 1.5rem;
        }
}

@media(max-width:800px){
    /*全体*/
      html{
          font-size: 80%;
      }

      /*メニュー中身*/
      .nmenu-content_logo{
            margin-bottom: 50px;
      }
      .nmenu-content {
        width: 100%;
      }
        /*チェック状態の時*/
        #menu-btn-check:checked ~ .nmenu-content {
          right: 0;/*メニューを画面内へ*/
          opacity: 1;
        }
      

    /*Top*/
      .top_slide{
          right: 50%;
          transform: translateX(50%);
      }

    /*Top2*/
      .top2{
          margin-top: 50px;
      }
      .top2_flex{
          flex-direction: column;
      }
      .top2_text{
          margin-bottom: 50px;
      }
      .top2_img img{
          height: 45vh;
      }
      .top2_img2 img{
        margin-top: 0px;
        
    }
      
    /*Top3*/
      .top3{
          margin-top: 150px;
      }
      .top3_flex{
          margin-top: -65%;
      }
      .top3_img2{
          display: none;
      }
      .top3_text{
          width: 100%;
          height: 20vh;
          margin: 0 auto;
      }
      
      /*Top4*/
      .top4{
        margin-top: 150px;
      }
      .top4_flex{
        margin-top: 50px;
      }
      .top4_text{
        margin-top: 70px;
      }
      
      /*Top5*/
      .top5{
            margin-top: 150px;
            height: 80vh;
      }
      .top5_comtact{
            display: none;
      }
      .top5_map{
            margin-left: 0;
      }
      .top5_flex_img{
            justify-content: space-between;
            margin-top: 35px;
      }
      .top5_flex_img a{
            width: 47%;
      }
      .top5_icon{
            margin-top: 70px;
          
      }
      .top5_boder_top{
            width: 100%;
            position: relative;
      }
      .top5_boder_top p{
           position: absolute;
            left: 20px;
            top: 110px;
      }
      

      .blackbox2 p{
        width: 70%;
        }
}

@media(max-width:780px){
    .top5_logo2{
        left: 330px;
  }
}

@media(max-width:500px){
    .nmenu-content_figure{
            margin-bottom: 70px;
    }

    .access_iframe{
            height: 400px;
    }

    .top5_map{
      margin-top: 70px;
  }

    .cd-fixed-bg h2 {
      font-size: 3rem;
    }
    .hitokototext{
      font-size: 0.9rem;
    }
}

@media(max-width:375px){
  .top3{
    height: 105vh;
}
    .top3_flex{
      margin-top: -85%;
  }
}
/*スマホ版ここまで*/


@media(min-width:600px){
  .cd-fixed-bg {
    background-attachment: fixed;
  }
}

@media(max-width:450px){
  .c-arrow-link2{
    position: relative;
    padding-right: 50px;
    color: #101315;
    transition: all 0.3s ease-in-out;
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
  }
}

