@charset "UTF-8";

/* ページ移動画面ここから */

/***** 全画面を覆う背景 *****/
.mask {
    position: fixed; /*固定表示*/
    z-index: 999; /*最前面へ*/
    top: 0;
    left: 0;
    width: 100vw; /*画面幅*/
    height: 100vh; /*画面の高さ*/
    background: #000; /*好きな色*/
    animation: fadeOut 0.4s forwards; /*フェードアウト*/
    animation-delay: 1.6s; /*円のアニメーション＋遅延時間*/
}
  /*フェードアウトアニメーション*/
@keyframes fadeOut {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
      visibility: hidden;
    }
}
  
  /***** 広がる円 *****/
.circle {
    position: absolute; /*固定表示*/
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto; /*中央配置*/
    width: 0;
    height: 0;
    background: #fff; /*ページ全体の背景色*/
    animation: circle-open 1s linear forwards;
    animation-delay: 0.6s; /*任意の遅延時間*/
}
  
  /*円が拡大するアニメーション*/
@keyframes circle-open {
    0% {
      width: 0;
      height: 0;
      border-radius: 50%;
    }
    20%,
    80% {
      /*少し拡大して止まる*/
      width: 100px;
      height: 100px;
      border-radius: 50%;
    }
    99% {
      /*ぎりぎりまで正円*/
      width: 99vw;
      height: 99vw;
      border-radius: 50%;
    }
    100% {
      /*全画面*/
      width: 100vw;
      height: 100vh;
      border-radius: 0;
    }
}


/* マウスストーカーここから */

#js-mouse {
    pointer-events: none;
    position: fixed;
    top: -15px;
    left: -15px;
    width: 30px;
    height: 30px;
    background-color: rgba(255,255,255,0.5);
    border-radius: 50%;
    transform: translate(0,0);
    transition: transform 0.3s ease-out;
    z-index: 9999;
    opacity: 0;
    border: 1px solid #999;
}

#js-mouse.js-hover {
    width: 50px;
    height: 50px;
    background-color: rgba(255,255,255,0.5);
}



/* スクロールCSS */
.fade-in {
    opacity: 0;
    transition-duration: 500ms;
    transition-property: opacity, transform;
}
  
.fade-in-up {
    transform: translate(0, 50px);
}
  
.fade-in-down {
    transform: translate(0, -50px);
}
  
.fade-in-left {
    transform: translate(-50px, 0);
}
  
.fade-in-right {
    transform: translate(50px, 0);
}
  
.scroll-in {
    opacity: 1;
    transform: translate(0, 0);
}
  


/* ヘッダーここから */

/* ロゴ */
.header_logo1 {
    margin-left: -6% !important;
    margin-top: -7% !important;
}
.header_logo2 {
    display: none !important;
}
@media screen and (max-width:1060px) {
    .header_logo1 {
        display: none !important;
    }
    .header_logo2{
        display: block !important;
        width: 200px;
        position: absolute;
        top: 0%;
        left: 10%;
    }
}



/* ヘッダーナビ */
nav.header_navi {
    width: 700px;
    height: 114px;
    margin-top: -130px;
    margin-left: auto;
    margin-right: 50px;
}

ul.header_navilist1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
    margin-top: -300px;
}

li.header_navilist2 {
    list-style: none;
    margin-left: 20px;
    color: #000;
    font-family: "Source Han Sans JP","源ノ角ゴシック JP"serif;
    font-weight: bold;
    font-size: 20px;
    line-height: 66px;
    text-align: right;
}

/* ヘッダーナビホバー時の動き */
a.mouse_under {
    background: linear-gradient(45deg,#000 50%,transparent 0)right /250% 100% no-repeat,
    linear-gradient(45deg,transparent 50%,#000 0)left /250% 100% no-repeat;
    transition: 0.5s;
}

a.mouse_under:hover {
    background-position: center;
    color: #fff;
}

/* ハンバーガーメニューここから */

/* PC非表示 */
.nav_toggle, .nav {
    display: none;
}

/* 1060px以下のサイズで見た場合のスタイル */

.nav_toggle {
    position: absolute;
    right: 10%;
    top: 7%;
}
@media screen and (max-width: 1060px) {

    .header_navi {
        display: none;
    }
    

    /* ハンバーガーのマーク */
    .nav_toggle {
        display: block;
        /* position: relative; */
        width: 1.75rem;
        height: 1.5rem;
        margin-left: 10px;
        z-index: 2;
    }
    .nav_toggle i {
        display: block;
        width: 100%;
        height: 2px;
        background-color: #333;
        position: absolute;
        transition: transform 0.5s,opacity 0.5s;
    }
    .nav_toggle i:nth-child(1) {
        top: 0;
    }
    .nav_toggle i:nth-child(2) {
        top: 0;
        bottom: 0;
        margin: auto;
    }
    .nav_toggle i:nth-child(3) {
        bottom: 0;
    }

    /* クリックされた後のハンバーガーのマーク */
    .nav_toggle.show i:nth-child(1) {
        transform: translateY(10px) rotate(-45deg);
    }
    .nav_toggle.show i:nth-child(2) {
        opacity: 0;
    }
    .nav_toggle.show i:nth-child(3) {
        transform: translateY(-12px) rotate(45deg);
    }

    /* クリックで表示されるメニュー：クリックされる前 */
    .nav {
        display: flex;
        position: fixed;
        align-items: center;
        justify-content: center;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.5s,visibilty 0.5s;
        background-color: #fff;
        z-index: 1;
    }

    /* クリックで表示されるメニュー：クリックされた後 */
    .nav.show {
        opacity: 1;
        visibility: visible;
    }
}


/* ハンバーガーメニュー表示後のデザインここから */

.nav.show {
    display: block;
    background-color: #EAEAEA;
    width: 375px;

}


.h_nav_title1 {
    font-family: "Source Han Sans JP","源ノ角ゴシック JP"serif;
    font-weight: bold;
    font-size: 15px;
    color: #565555;
    margin-top: 5%;
    margin-left: 5%;
}

.nav_menu_li1 {
    font-family: "Source Han Sans JP","源ノ角ゴシック JP"serif;
    font-weight: bold;
    font-size: 15px;
    margin-left: 5%;
    margin-top: 5%;
}

.h_nav_title2 {
    font-family: "Source Han Sans JP","源ノ角ゴシック JP"serif;
    font-weight: bold;
    font-size: 15px;
    color: #565555;
    margin-top: 5%;
    margin-bottom: 5%;
}

.nav_menu_ul2 {
    margin-left: 5%;
    font-family: "Source Han Sans JP","源ノ角ゴシック JP"serif;
    font-weight: bold;
    font-size: 15px;
    margin-left: 5%;
    margin-top: 5%;
}

.nav_menu_li2 {
    margin-bottom: 24px;
}

.nav_menu_li3{
    margin-bottom: 24px;
}

.h_nav_title3 {
    font-family: "Source Han Sans JP","源ノ角ゴシック JP"serif;
    font-weight: bold;
    font-size: 15px;
    color: #565555;
    margin-top: 5%;
    margin-bottom: 5%;
}

.nav_menu_ul3 {
    width: 329px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

/* ヘアギャラリーここから */

.title {
    font-family: "Source Han Sans JP","源ノ角ゴシック JP"serif;
    font-weight: bold;
    font-size: 40px;
    margin-left: 5%;
    margin-top: 15%;
}
@media screen and (max-width:1060px){
    .title {
        margin-top: 40%;
    }
}
@media screen and (max-width:375px) {
    .title {
        font-size: 25px;
        margin-top: 50%;
        margin-left: 10%;
    }
}


@-webkit-keyframes ani {
    0% {
      transform: translate3d(0, 0, 0);
      text-shadow: 0em 0em 0 lightblue;
      color: black;
    }
    30% {
      transform: translate3d(0, 0, 0);
      text-shadow: 0em 0em 0 lightblue;
      color: black;
    }
    70% {
      transform: translate3d(0.08em, -0.08em, 0);
      text-shadow: -0.08em 0.08em lightblue;
      color: black;
    }
    100% {
      transform: translate3d(0.08em, -0.08em, 0);
      text-shadow: -0.08em 0.08em lightblue;
      color: black;
    }
}
@keyframes ani {
    0% {
      transform: translate3d(0, 0, 0);
      text-shadow: 0em 0em 0 lightblue;
      color: black;
    }
    30% {
      transform: translate3d(0, 0, 0);
      text-shadow: 0em 0em 0 lightblue;
      color: black;
    }
    70% {
      transform: translate3d(0.08em, -0.08em, 0);
      text-shadow: -0.08em 0.08em lightblue;
      color: black;
    }
    100% {
      transform: translate3d(0.08em, -0.08em, 0);
      text-shadow: -0.08em 0.08em lightblue;
      color: black;
    }
}
.popout span {
    position: relative;
    display: inline-block;
    -webkit-animation: ani 1s infinite alternate cubic-bezier(0.86, 0, 0.07, 1);
            animation: ani 1s infinite alternate cubic-bezier(0.86, 0, 0.07, 1);
}
.popout span:nth-last-child(1n) {
    -webkit-animation-delay: -0.1666666667s;
            animation-delay: -0.1666666667s;
}
.popout span:nth-last-child(2n) {
    -webkit-animation-delay: -0.3333333333s;
            animation-delay: -0.3333333333s;
}
.popout span:nth-last-child(3n) {
    -webkit-animation-delay: -0.5s;
            animation-delay: -0.5s;
}



.cameramark {
    margin-top: 10%;
    margin-left: 85%;
    width: 5%;
    height: auto;
}
@media screen and (max-width:375px){
    .cameramark{
        width: 12%;
        margin-left: 10%;
    }
}


.kiran-img {
    position :relative;
    overflow :hidden;
}
.kiran {
    margin-left: 85%;
    height:100%;
    width:30px;
    position:absolute;
    top:-180px;
    left:0;
    background-color: #fff;
    opacity:0;
    transform: rotate(45deg);
    animation: reflection 2s ease-in-out infinite;
    -webkit-transform: rotate(45deg);
    -webkit-animation: reflection 2s ease-in-out infinite;
    -moz-transform: rotate(45deg);
    -moz-animation: reflection 2s ease-in-out infinite;
    -ms-transform: rotate(45deg);
    -ms-animation: reflection 2s ease-in-out infinite;
    -o-transform: rotate(45deg);
    -o-animation: reflection 2s ease-in-out infinite;
    }
    @keyframes reflection {
    0% { transform: scale(0) rotate(45deg); opacity: 0; }
    30% { transform: scale(0) rotate(45deg); opacity: 0.5; }
    31% { transform: scale(4) rotate(45deg); opacity: 1; }
    100% { transform: scale(50) rotate(45deg); opacity: 0; }
    }
    @-webkit-keyframes reflection {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    30% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    31% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
    }
    @-moz-keyframes reflection {
    0% { -moz-transform: scale(0) rotate(45deg); opacity: 0; }
    30% { -moz-transform: scale(0) rotate(45deg); opacity: 0.5; }
    31% { -moz-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -moz-transform: scale(50) rotate(45deg); opacity: 0; }
}

.gazou1 {
    font-size: 0;
    margin-top: 10%;
}
@media screen and (max-width:375px){
    .gazou1{
        display: none !important;
    }
}


.gazou2 {
    font-size: 0;
}
@media screen and (max-width:375px){
    .gazou2{
        display: none !important;
    }
}


.gazou3 {
    font-size: 0;
    position: relative;
}
@media screen and (max-width:375px){
    .gazou3 {
        display: none !important;
    }
}


.gallery1 {
    width: 40%;
    height: auto;
}

.gallery2 {
    width: 20%;
    height: auto;
}

.gallery5 {
    width: 20.65%;
    height: auto;
}

.gallery3 {
    width: 41.6%;
    height: auto;
}

div.gazou3 img.gallery3 {
    position: absolute;
}

.gallery4 {
    width: 19.65%;
    height: auto;
    margin-left: 41.5%;
}

.next {
    width: 5%;
    height: auto;
    margin-top: 15%;
    margin-left: 90%;
    margin-bottom: 5%;
    cursor: pointer;
    transition: 1s;
}
@media screen and (max-width:375px){
    .next{
        display: none !important;
    }
}


.next:hover {
    transform: rotate(1080deg);
}


/* 携帯用ここから */

.ph_g1 {
    display: none !important;
}
@media screen and (max-width:375px){
    .ph_g1{
        display: block !important;
        margin-top: 5%;
    }
}


.ph__g_box1 {
    display: none !important;
}
@media screen and (max-width:375px){
    .ph__g_box1{
        display: block !important;
    }
}



.ph_g2 {
    width: 30%;
}

.ph_g3 {
    width: 30.5%;
}

.ph_g4 {
width: 33%;
}

.ph__g_box2 {
    display: none !important;
}
@media screen and (max-width:375px){
    .ph__g_box2{
        display: block !important;
        position: relative;
    }
}


.ph_g5 {
    width: 20%;
}

.ph_g6 {
    position: absolute;
    top: 0;
    right: 27%;
    width: 53%;
}

.ph_g7 {
    width: 20%;
    position: absolute;
    top: 100%;
    left: 0;
}

.ph_g8 {
    display: none !important;    
}
@media screen and (max-width:375px){
    .ph_g8{
        display: inline !important;
        margin-top: 23%;
    }
}


.ph_nexr_b {
    display: none !important;
}
@media screen and (max-width:375px){
    .ph_nexr_b{
        display: block !important;
        margin-top: 10%;
        margin-left: 80%;
        margin-bottom: 5%;
    }
}

/* フッターここから */

/* 背景色 */
.footer {
    color: #ccc;
    background: #000;
    padding: 5%;
}
/* 文字 */
.footer a {
    color: #fff;
    text-decoration: none;
    font-family: "Source Han Sans JP","源ノ角ゴシック JP"serif;
    font-size: 20px;
    line-height: 50px;
}
@media screen and (max-width:1270px) {
    .footer a{
        font-size: 15px;
    }
}


/* フッターホバー時 */
.f_c li a {
    background: linear-gradient(45deg,#fff 50%,transparent 0)right /250% 100% no-repeat,
    linear-gradient(45deg,transparent 50%,#fff 0)left /250% 100% no-repeat;
    transition: 0.5s;
}
@media screen and (max-width:1060px) {
    .f_c li a{
        display: block;
        width: 50%;
    }
}


.f_c li a:hover {
    background-position: center;
    color: #000;
}

@media screen and (max-width:1060px){
    .f_c li:nth-of-type(n+5) a{
        margin-left: 70%;
        
    }
}
@media screen and (max-width:700px){
    .f_c li:nth-of-type(n+5) a{
        margin-left: 50%;
    }
}


.footer .footer_navi {
    display: flex;
}
@media screen and (max-width:1060px){
    .footer .footer_navi{
        display: block;
    }
}

@media screen and (max-width:1060px) {
    .f_c li:nth-child(5) a{
        margin-top: -200px;        
    }
}

@media screen and (max-width:1060px) {
    .f_c :nth-of-type(-n+4){
        margin-left: 5%;
    }
}
@media screen and (max-width:700px){
    .f_c :nth-of-type(-n+4){
        margin-left: 0;
    }
}

@media screen and (max-width:1060px) {
    .s_c li{
        margin-left: 10%;
    }
}
@media screen and (max-width:700px) {
    .s_c li{
        margin-left: 0%;
    }
}

@media screen and (max-width:1060px) {
    .s_c li img{
        display: block;
    }
}
@media screen and (max-width:700px){
    .s_c li img{
        margin-left: -20%;
    }
}


/* 店舗名ホバー時 */
.s_c li a {
    background: linear-gradient(45deg,#fff 50%,transparent 0)right /250% 100% no-repeat,
    linear-gradient(45deg,transparent 50%,#fff 0)left /250% 100% no-repeat;
    transition: 0.5s;
}

.s_c li a:hover {
    background-position: center;
    color: #000;
}

.footer.footer_navi h3 {
    margin: 0 0 10px 0;
    padding: 0;
    border-bottom: 1px solid #fff;
    font-size: 15px;
    line-height: 21px;
    font-family: "Source Han Sans JP","源ノ角ゴシック JP"serif;
}

@media screen and (max-width:1060px) {
    .footer_menu h3{
        margin-left: 10%;
        margin-top: 5%;
    }

}
@media screen and (max-width:700px){
    .footer_menu h3{
        margin-left: 0;
    }
}


.footer.footer_navi p {
    margin: 0;
    padding: 0 0 20px 0;
}

.footer.footer_navi.footer_menu {
    width: 22%;
}

.footer.footer_navi.footer_menu ul {
    margin: 0;
    padding: 0 0 20px 0;
    list-style: none;
}

.footer.footer_navi {
    width: 100%;
    padding: 20px 0 0 0;
}

/* マップ画像 */
.mapbutton {
    position: relative;
}

.mapbutton img {
    position: absolute;
    top: 7px;
    left: 350px;
    cursor:pointer;
}
@media screen and (max-width:1340px){
    .mapbutton img{
        display: none;
    }
}


.footer_menu {
    flex: 1;
}

/* 予約ボタン */
.yoyaku {
    margin-top: 20px;
    cursor: pointer;
    transition: .5s;
}

.yoyaku:hover {
    filter: invert(100);
    border: 3px solid #000;
}


@media screen and (max-width:1060px) {
    .g_c li{
        width: 35%;
        margin-left: auto;
        margin-right: auto;
    }
}
@media screen and (max-width:700px){
    .g_c li{
    margin-left: 0%;
    padding-left: 2%;
    }
}




.footer_logo {
    margin-left: -90px;
}
@media screen and (max-width:1060px) {
    .footer_logo{
        margin-left: 8%;
    }
}


.footer_top1 {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
    margin-top: -70px;
    margin-bottom: 30px;
}
@media screen and (max-width:1060px) {
    .footer_top1{
        display: block;
    }
}

@media screen and (max-width:1060px) {
    .footer_top1 a img{
        margin-left: 170%;
    }
}
@media screen and (max-width:700px){
    .footer_top1 a img{
        margin-left: 210%;
    }
}


.footer_line {
    margin-bottom: 30px;
}

/* コピーライト */
.copyright {
    display: block;
    margin-left: auto;
    width: 100%;
    height: auto;
    margin-right: 0;
}
@media screen and (max-width:1060px) {
    .copyright{
        margin-right: 5%;
    }
}
