@charset "UTF-8";
/* CSS Document */
html{
  scroll-behavior: smooth;
    
}
body{
    font-family: YakuHanJPs_Narrow, "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8em;
    letter-spacing: .02rem;
    color: #111;
    -webkit-font-smoothing: antialiased;
    margin-top: 84px;
}
.mincho{
    font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
}
.mincho.ua-android {
  font-family: 'Noto Serif JP', serif;
}
.en{
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    letter-spacing: .07rem;
}
*{
    box-sizing: border-box;
}
img{
    vertical-align: bottom;
    width: 100%;
    height: auto;
}
li{
    list-style: none;
}
a{
    cursor: pointer;
    text-decoration: none;
    color: #111;
    letter-spacing: normal;
    line-height: 1em;
    transition: .4s;
}
.pc_none{
    display: none;
}


/*---------------------------------

  画面遷移

---------------------------------*/
body{
	animation: fadein 3.5s forwards;
}

@keyframes fadein {
	0% {opacity: 0}
	100% {opacity: 1}
}


/*---------------------------------

  ロード完了で画像scaleアニメーション

---------------------------------*/
.scale{
    filter: blur(5px);
    transform: scale(1.1);
}
.scale.appear{
    animation-name: image-fade-in;
    animation-delay: 0.1s;
    animation-duration: 2.2s;
    animation-timing-function: ease-out;
    animation-fill-mode:forwards;
}
@keyframes image-fade-in{
from {
    filter: blur(5px);
    transform: scale(1.1);
}
to {
    filter: blur(0);
    transform: scale(1);
}
}


/*---------------------------------

  スクロール到達で画像scaleアニメーション

---------------------------------*/
.image-fade-in{
    filter: blur(5px);
    transform: scale(1.1);
}
.image-fade-in.fadeIn{
    animation-name: image-fade-in;
    animation-delay: 0.2s;
    animation-duration: 2.0s;
    animation-timing-function: ease-out;
    animation-fill-mode:forwards;
}
@keyframes image-fade-in{
from {
    filter: blur(5px);
    transform: scale(1.1);
}
to {
    filter: blur(0);
    transform: scale(1);
}
}


/*---------------------------------

  スクロール到達で画像opacityアニメーション

---------------------------------*/
.opacity{
    opacity: 0;
}
.opacity.fadeIn{
    animation-name: opacity;
    animation-delay: 0.2s;
    animation-duration: 2.0s;
    animation-timing-function: ease-out;
    animation-fill-mode:forwards;
}
@keyframes opacity{
from {
    opacity: 0;
}
to {
    opacity: 1;
}
}


/*---------------------------------

  スクロール到達でblurアニメーション

---------------------------------*/
.blur{
	opacity: 0;
}
.blur.fadeIn{
    animation-name: blur;
    animation-delay: 0.2s;
    animation-duration: 1.9s;
    animation-timing-function: ease-out;
    animation-fill-mode:forwards;
    opacity: 0;
}
@keyframes blur{
from {
    opacity: 0;
    filter: blur(2px);
}
to {
    opacity: 1;
    filter: blur(0);
}
}


/*---------------------------------

  btn

---------------------------------*/
.btn{
    position: relative;
    display: inline-block;
    padding: 10px 40px 10px 0;
}
.btn .arrow{
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #fff;
    border: solid 1px #363636;
    transition: .45s;
    z-index: 30;
}
.btn .arrow::before{
    content: '';
    box-sizing: border-box;
    position: absolute;
    right: 10px;
    top: 50%;
    width: 5px;
    height: 5px;
    border-top: 1px solid #363636;
    border-right: 1px solid #363636;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    transition: .45s;
    z-index: 5;
}
.btn:hover .arrow{
    background-color: #C0C0C0;
}


/*---------------------------------

  ナビゲーション

---------------------------------*/
.sp_nav_wrapper{
    display: none;
}
header{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
}
header h1 a{
    display: block;
    width: 280px;
}
header h1 a:hover{
    opacity: .7;
}
header nav ul{
    display: flex;
    align-items: center;
}
header nav ul li{
    margin: 0 15px;
}
header nav ul li:last-of-type{
    margin: 0 0 0 20px;
}
header nav ul li a{
    display: inline-block;
    position: relative;
}
header nav ul li a::after{
    position: absolute;
    bottom: -8px;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: #111;
    opacity: 0;
    visibility: hidden;
    transition: .4s;
}
header nav ul li a:hover::after {
  bottom: -5px;
  opacity: 1;
  visibility: visible;
}
header nav ul li .nav_contact{
    padding: 15px;
    border: solid 1px #111;
    border-radius: 50px;
    width: 192px;
    text-align: center;
}
header nav ul li .nav_contact span{
    display: inline-block;
    padding-left: 30px;
    background: url("../img/common/mail.png") center left / 19px auto no-repeat;
    transition: background .4s;
}
header nav ul li .nav_contact:hover{
    background-color: #B1B1B1;
    color: #fff;
}
header nav ul li .nav_contact:hover span{
    background: url("../img/common/mail_white.png") center left / 19px auto no-repeat;
}
header nav ul li .nav_contact::after{
    display: none;
}
.line{
    position: absolute;
    top: 84px;
    left: 0;
    /*width: 100%;*/
    height: 1px;
    background: #363636;
    transition: all .8s ease-out;
}
@media print, screen and (max-width: 1200px) {
    header h1 a {
        width: 220px;
    }
    header nav ul li a{
        font-size: 15px;
    }
    header nav ul li .nav_contact{
        font-size: 16px;
    }
    header nav ul li {
        margin: 0 10px;
    }
}


/*---------------------------------

  全ページ共通お問い合わせ

---------------------------------*/
.footer_contact{
    height: 400px;
    overflow: hidden;
    width: 100%;
    position: relative;
    margin-bottom: 80px;
    background-color: #333;
}
.thumbnail{
    width: 100%;
}
.footer_contact p img{
    opacity: .35;
}
.footer_contact .inner{
    width: 90%;
    max-width: 810px;
    margin: 0 auto;
    color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.footer_contact .inner h2{
    text-align: center;
    font-size: 24px;
    font-weight: 600;
}
.footer_contact .inner .column{
    margin: 30px auto 20px;
    border-top: solid 1px #fff;
    border-bottom: solid 1px #fff;
    padding: 30px 0;
    display: flex;
    justify-content: center;
    gap: 10%;
}
.footer_contact .inner p{
    text-align: center;
}
.footer_contact .inner .column .tel{
    text-align: center;
    font-size: 18px;
}
.footer_contact .inner .column .tel a{
    font-size: 32px;
    color: #fff;
    font-weight: 500;
    padding-top: 18px;
    display: inline-block;
}
.footer_contact .inner .column .tel a:hover{
    opacity: .6;
}
.footer_contact .inner .column .form{
    text-align: center;
    font-size: 18px;
}
.footer_contact .inner .column .form a{
    display: inline-block;
    padding: 15px;
    border: solid 1px #fff;
    border-radius: 50px;
    width: 288px;
    text-align: center;
    margin-top: 10px;
    color: #fff;
    font-size: 16px;
}
.footer_contact .inner .column .form a span{
    display: inline-block;
    padding-left: 30px;
    background: url("../img/common/mail_white.png") center left / 18px auto no-repeat;
    transition: background .4s;
}
.footer_contact .inner .column .form a:hover{
    background-color: rgba(255,255,255,0.4);
    color: #111;
}
.footer_contact .inner .column .form a:hover span{
    background: url("../img/common/mail.png") center left / 18px auto no-repeat;
}
.footer_contact .bg_02{
    display: none;
}
.footer_contact .bg_03{
    display: none;
}
@media print, screen and (max-width: 1200px) {
    .footer_contact {
        height: 320px;
    }
    .footer_contact .inner .column {
        margin: 20px auto 15px;
        padding: 20px 0;
        gap: 8%;
    }
    .footer_contact .inner .column .tel {
        font-size: 16px;
    }
    .footer_contact .inner .column .form {
        font-size: 16px;
    }
    .footer_contact .bg{
        display: none;
    }
    .footer_contact .bg_02{
        display: block;
    }
}


/*---------------------------------

  footer

---------------------------------*/
footer .top{
    padding-bottom: 60px;
    border-bottom: solid 1px #363636;
}
footer .top .inner{
    width: 80%;
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
footer .top .inner .detail{
    font-size: 14px;
    line-height: 1.8em;
}
footer .top .inner .detail .logo{
    width: 210px;
    display: block;
    padding-bottom: 30px;
}
footer .top .inner .detail .logo:hover{
    opacity: .6;
}
footer .top .inner .detail .address{
    position: relative;
    padding-right: 14px;
}
footer .top .inner .detail .address .map_link{
    display: block;
    width: 10px;
    position: absolute;
    right: 0;
    bottom: 4px;
}
footer .top .inner .detail .address .map_link:hover{
    opacity: .6;
}
footer .top .inner .detail .instagram{
    width: 20px;
    display: block;
    margin-top: 20px;
}
footer .top .inner .detail .instagram:hover{
    opacity: .6;
}
footer .top .inner .sitemap{
    display: flex;
}
footer .top .inner .sitemap ul:first-of-type{
    padding-right: 60px;
}
footer .top .inner .sitemap ul li{
    padding-bottom: 15px;
    line-height: 1em;
}
footer .top .inner .sitemap ul li a{
    line-height: 1em;
    display: inline-block;
    font-size: 13px;
    padding: 3px 2px 3px 20px;
    position: relative;
}
footer .top .inner .sitemap ul li a::before{
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    border: solid 1px #363636;
    transition: .4s;
}
footer .top .inner .sitemap ul li a:hover::before{
    background-color: #B1B1B1;
}
footer .bottom{
    width: 80%;
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 12px;
}
footer .bottom p{
    line-height: 1em;
}
footer .bottom a:hover{
    opacity: .7;
}


/*---------------------------------

  下層ページ見出し部分

---------------------------------*/
.sub_head{
    padding: 60px 0 80px;
    border-bottom: solid 1px #363636;
}
.sub_head .inner{
    width: 86%;
    max-width: 1800px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.sub_head .inner .page_title{
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.sub_head .inner .page_title h2{
    font-size: 34px;
    padding-bottom: 20px;
}
.sub_head .inner .image{
    width: 60%;
    border-radius: 12px;
    border: solid 1px #363636;
    overflow: hidden;
    position: relative;
    z-index: 1;
    will-change: transform;
}
@media print, screen and (max-width: 1400px) {
    .sub_head .inner .page_title h2 {
        font-size: 28px;
        padding-bottom: 20px;
    }
    .sub_head .inner {
        width: 92%;
    }
    .sub_head .inner .page_title {
        width: 45%;
    }
    .sub_head .inner .image {
        width: 55%;
    }
}
@media print, screen and (max-width: 900px) {
    .sub_head .inner .page_title h2 {
        font-size: 24px;
        padding-bottom: 15px;
    }
    .sub_head .inner .page_title span{
        font-size: 14px;
    }
}


/*---------------------------------

  下層ページ見出し部分（写真なし）

---------------------------------*/
.plain_head{
    border-bottom: solid 1px #363636;
    padding: 120px 0 50px;
}
.plain_head .inner{
    width: 80%;
    max-width: 1500px;
    margin: 0 auto;
}
.plain_head .inner>div{
    display: inline-block;
    text-align: center;
}
.plain_head .inner h2{
    font-size: 28px;
    padding-bottom: 10px;
}
.plain_head .inner span{
    font-size: 16px;
}
@media print, screen and (max-width: 1400px) {
    .plain_head .inner h2{
        font-size: 24px;
        padding-bottom: 10px;
    }
}
@media print, screen and (max-width: 900px) {
    .plain_head {
        padding: 80px 0 50px;
    }    
    .plain_head .inner h2{
        font-size: 20px;
        padding-bottom: 10px;
    }
    .plain_head .inner span{
        font-size: 14px;
    }
}


/*---------------------------------

  下層ページパンくず

---------------------------------*/
.pankuzu{
    border-top: solid 1px #363636;
    line-height: 1em;
    font-size: 12px;
    padding: 20px 0;
}
.pankuzu .inner{
    width: 80%;
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
}
.pankuzu .inner a:hover{
    opacity: .6;
}
.pankuzu .inner .arrow{
    display: inline-block;
    padding-left: 30px;
    position: relative;
}
.pankuzu .inner .arrow::before{
    content: '';
    box-sizing: border-box;
    position: absolute;
    left: 10px;
    top: 50%;
    width: 5px;
    height: 5px;
    border-top: 1px solid #363636;
    border-right: 1px solid #363636;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    transition: .45s;
    z-index: 5;
}


@media print, screen and (max-width: 1000px) {
    body{
        margin-top: 70px;
    }


    /*---------------------------------

      画面遷移

    ---------------------------------*/
    body{
        animation: fadein 2.2s forwards;
    }    
    
    /*---------------------------------

      ナビゲーション（ハンバーガーメニュー）

    ---------------------------------*/
    .pc_nav_wrapper{
        display: none!important;
    }
    header nav ul li a::after{
        display: none;
    }
    .sp_nav_wrapper{
        display: block!important;
        padding: 0;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: #fff;
        z-index: 1000;
        border-bottom: solid 1px #3A3A3A;
        border-top: solid 1px #3A3A3A;
        height: 70px;
    }
    .sp_nav{
        display: flex;
        align-items: center;
        height: 70px;
    }
    header .nav_logo {
        width: 220px;
    }
    header .nav_logo a{
        display: block;
        margin: 10px 0;
        width: 100%;
        padding-left: 15px;
    }
    #g-nav{
        /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
        position:fixed;
        z-index: 99;
        /*ナビのスタート位置と形状*/
        top:70px;
        right: -120%;
        width:100%;
        height: 100vh;/*ナビの高さ*/
        background: rgba(255,255,255,.98);
        /*動き*/
        transition: all 0.6s;
    }

    /*アクティブクラスがついたら位置を0に*/
    #g-nav.panelactive{
        right: 0;
    }

    /*ナビゲーションの縦スクロール*/
    #g-nav.panelactive #g-nav-list{
        /*ナビの数が増えた場合縦スクロール*/
        position: fixed;
        z-index: 99; 
        width: 100%;
        height: 100vh;/*表示する高さ*/
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    /*ナビゲーション*/
    .g-nav-list-inner{
        max-width: 600px;
        margin: 0 auto;
        padding: 50px 6%;
    }

    /*リストのレイアウト設定*/

    #g-nav li{
        list-style: none;
        text-align: center;
    }

    .g-nav-list-inner>ul>li>a{
        text-decoration: none;
        padding:10px;
        display: block;
        text-transform: uppercase;
        font-weight: 500;
    }

    /*========= ボタンのためのCSS ===============*/
    .openbtn{
        position:fixed;
        z-index: 9999;/*ボタンを最前面に*/
        top:0;
        right: 0;
        cursor: pointer;
        width: 70px;
        height:70px;
        border-left: solid 1px #3A3A3A;
    }

    /*×に変化*/	
    .openbtn span{
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 23px;
        height: 1px;
        background-color: #363636;
        width: 22px;
      }

    .openbtn span:nth-of-type(1) {
        top:26px;	
    }
    .openbtn span:nth-of-type(2) {
        top:34px;
    }
    .openbtn span:nth-of-type(3) {
        top:42px;
    }
    .openbtn.active span:nth-of-type(1) {
        top: 28px;
        left: 23px;
        transform: translateY(6px) rotate(-45deg);
    }
    .openbtn.active span:nth-of-type(2) {
        opacity: 0;
    }
    .openbtn.active span:nth-of-type(3){
        top: 40px;
        left: 23px;
        transform: translateY(-6px) rotate(45deg);
    }
    .sp_nav_sub{
        padding-right: 70px;
        position: fixed;
        top: 0;
        right: 0;
        height: 70px;
    }
    .sp_nav_sub a{
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 14px;
        text-align: center;
        width: 70px;
        height: 70px;
        border-left: solid 1px #3A3A3A;
        color: #363636;
        font-weight: 500;
        line-height: 1em;
    }
    .sp_nav_sub a span{
        width: 100%;
        font-size: 11px;
        letter-spacing: -0.02em;
        display: inline-block;
        padding-top: 20px;
        line-height: 1em;
        background: url("../img/common/mail.png") top 2px center / 22px auto no-repeat;
    }
    .page_category{
        padding: 24px 45px 24px 15px;
        position: relative;
        z-index: +1;
        cursor: pointer;
        transition: .35s;
        font-size: 16px;
        font-weight: 500;
        line-height: 1em;
        text-align: left;
    }
    .page_category>a{
        display: block;
        font-size: 16px;
    }
    header nav ul{
        display: block;
    }
    .nav_line_wrapper{
        background-image: linear-gradient(#3A3A3A, #3A3A3A);
        background-size: 0 1px;
        background-repeat: no-repeat,no-repeat;
        background-position: top left;
        transition: all .8s ease-out;
        transition-delay: .1s;
    }
    .nav_line{
        margin: 0;
        background-image: linear-gradient(#3A3A3A, #3A3A3A);
        background-size: 0 1px;
        background-repeat: no-repeat,no-repeat;
        background-position: bottom left;
        transition: all .8s ease-out;
        transition-delay: .2s;
    }
    .nav_line:nth-of-type(2){
        transition-delay: .3s;
    }
    .nav_line:nth-of-type(3){
        transition-delay: .4s;
    }
    .nav_line:nth-of-type(4){
        transition-delay: .5s;
    }
    .nav_line:nth-of-type(5){
        transition-delay: .6s;
    }
    .panelactive .nav_line{
        background-size: 100% 1px, 100% 1px;
    }
    .panelactive .nav_line_wrapper{
        background-size: 100% 1px, 100% 1px;
    }
    header nav ul li:last-of-type{
        margin: 0;
    }
    .nav_line:first-of-type{
    }
    .add_mark {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 10px;
        width: 14px;
        height: 14px;
    }
    .add_mark:before, .add_mark:after {
        position: absolute;
        content: "";
        margin: 0;
        box-sizing: border-box;
        vertical-align: middle;
    }
    .add_mark:before {
        border-top: 1px solid #888888;
        width: 14px;
        height: 0;
        top: 50%;
        transform: translateY(-50%);
        bottom: 0;
        right: 0;
    }
    .add_mark:after {
        border-left: 1px solid #888888;
        width: 0;
        height: 14px;
        top: 0;
        bottom: 0;
        left: 6.5px;
        transition: .3s;
    }
    .page_category.open .add_mark:after {
        height: 0;
    }
    .page_link{
        display: none;
        padding-bottom: 20px;
        border-radius: 8px;
        font-size: 15px;
    }
    .page_link ul{
        margin-left: 15px;
    }
    .page_link ul li .page_link_btn{
        text-align: left;
        display: block;
        font-size: 15px;
        margin-bottom: 15px;
        position: relative;
        padding-left: 40px;
    }
    .page_link ul li:last-of-type .page_link_btn{
        margin-bottom: 0;
    }
    header nav ul li {
        margin: 0;
    }
    .page_link ul li .page_link_btn::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 25px;
        height: 1px;
        background-color: #bbbbbb;
        transition: .4s;
    }
    .nav_contact{
        margin-top: 20px;
        margin-bottom: 30px;
    }
    .nav_contact:first-of-type{
        margin-bottom: 10px;
    }
    .nav_contact:last-of-type{
        margin-top: 0;
    }
    header .nav_contact a {
        display: block;
        border: solid 1px #3A3A3A;
        font-size: 16px;
        padding: 0 24px;
        border-radius: 54px;
        text-align: center;
    }
    .nav_contact_inner{
        display: inline-block;
        width: 210px;
        padding: 20px 0 20px 32px;
        background: url(../img/common/mail.png) center left / 22px auto no-repeat;
    }
    .nav_contact_inner.en{
        padding: 20px 0 20px 32px;
        font-size: 20px;
        background: url("../img/common/phone.png") center left 2px / 16px auto no-repeat;
    }
    .g-nav-list-inner .page_link_sub{
        margin-bottom: 80px;
    }
    .g-nav-list-inner .page_link_sub li{
        border-bottom: none!important;
        border-top: none!important;
    }
    .g-nav-list-inner .page_link_sub li a{
        text-align: left;
        font-size: 14px;
        font-weight: 400!important;
        padding: 0!important;
        margin-bottom: 12px;
        position: relative;
    }
    .g-nav-list-inner .page_link_sub li a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 8px;
        height: 8px;
        background: url(../img/common/nav_arrow.png) center / 6px auto no-repeat;
        transition: .35s;
    }


}


@media print, screen and (max-width: 750px) {
    .pc_none{
        display: block;
    }
    .sp_none{
        display: none;
    }
    

    /*---------------------------------

      btn

    ---------------------------------*/
    .btn{
        padding: 10px 35px 10px 0;
    }


    /*---------------------------------

      全ページ共通お問い合わせ

    ---------------------------------*/
    .footer_contact .bg_02 {
        display: none;
    }
    .footer_contact .bg_03 {
        display: block;
    }
    .footer_contact {
        height: 480px;
        margin-bottom: 45px;
    }
    .footer_contact .inner h2 {
        font-size: 22px;
    }
    .footer_contact .inner .column{
        display: block;
        padding: 25px 0;
    }
    .footer_contact .inner .column .tel a {
        font-size: 24px;
        margin-top: 8px;
        width: 90%;
        padding: 17px 15px;
        border: solid 1px #fff;
        border-radius: 50px;
        background-color: rgba(255,255,255,0.1);
    }
    .footer_contact .inner p{
        line-height: 1.5em;
        font-size: 17px;
    }
    .footer_contact .inner>p{
        font-size: 15px;
        line-height: 1.8em;
    }
    .footer_contact .inner .column .tel{
        padding-bottom: 20px;
    }
    .footer_contact .inner .column .form a{
        margin-top: 8px;
        width: 90%;
        padding: 21px 15px;
        font-size: 18px;
        background-color: rgba(255,255,255,0.1);
    }
    .footer_contact .inner .column .form a span{
        background: url(../img/common/mail_white.png) center left / 20px auto no-repeat;
    }
    
    
    /*---------------------------------

      footer

    ---------------------------------*/
    footer .top .inner{
        display: block;
    }
    footer .top .inner .sitemap{
        display: none;
    }
    footer .top {
        padding-bottom: 45px;
    }
    footer .top .inner .detail .logo {
        width: 230px;
        display: block;
        padding-bottom: 30px;
    }
    footer .top .inner .detail .address {
        padding-right: 15px;
        width: fit-content;
    }
    footer .top .inner .detail .address .map_link{
        bottom: 5px;
    }
    footer .top .inner .detail .instagram{
        margin-top: 10px;
        width: 24px;
    }
    footer .bottom{
        display: block;
    }
    footer .bottom p{
        text-align: center;
    }
    footer .top .inner .detail{
        margin-bottom: 30px;
    }
    footer .sp_sub{
        font-size: 12px;
    }
    footer .sp_sub a{
        display: block;
    }
    footer .sp_sub a:first-of-type{
        margin-bottom: 10px;
    }

    
    /*---------------------------------

      下層ページ見出し部分

    ---------------------------------*/
    .sub_head {
        padding: 55px 0 45px;
    }
    .sub_head .inner{
        display: block;
        width: 100%;
        padding: 0 20px;
    }
    .sub_head .inner .image{
        width: 100%;
    }
    .sub_head .inner .page_title{
        width: 100%;
        text-align: left;
        display: block;
        padding-bottom: 25px;
    }
    .sub_head .inner .page_title h2 {
        padding-bottom: 5px;
    }


    /*---------------------------------

      下層ページ見出し部分（写真なし）

    ---------------------------------*/
    .plain_head {
        padding: 60px 0 30px;
    }
    .plain_head .inner {
        width: 100%;
        padding: 0 20px;
    }
    .plain_head .inner>div {
        text-align: left;
    }
    .plain_head .inner h2 {
        font-size: 20px;
        padding-bottom: 5px;
        line-height: 1em;
    }


    /*---------------------------------

      下層ページパンくず

    ---------------------------------*/
    .pankuzu .inner {
        width: 100%;
        padding: 0 20px;
    }
    .pankuzu .inner .arrow{
        padding-left: 24px;
    }
    .pankuzu .inner .arrow::before{
        left: 8px;
    }

    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    




}