@charset "utf-8";

/* ==================================================================
    common.css

=================================================================== */

@font-face {
    font-family: "YuGothic M";
    src: local(Yu Gothic Medium);
}

/* =================================
   ■ 共通指定
================================== */


/* --------------------------------
   □ 共通変数の定義
-------------------------------- */
:root {
    /* 色系 */
    --text-color: #070707;
    --link-color-black: #070707;
    --link-color-blue: #110284;
    --link-color-blue-hover: ##0E0454;
    
    --bg-color-white: #fff;

}

body{
    --wrap-space: 0;
}


/* --------------------------------
   □ font設定
-------------------------------- */
html{
    font-size:62.5%;
}

body{
    font-size:16px;
}
/* WINIE用 \*/
* html body{ font-size:100%; }
*:first-child+html body{ font-size:100%; }
/* */

table {
    font-size:inherit;
    font:100%;
}

select, input, textarea {
    font:99%;
}

li li,li p,li pre,li dt,li dd,dd li,dd p,dd pre,dd dt,dd dd {
  font-size:100%;
}

/* --------------------------------
   □ body
-------------------------------- */ 
body{
    font-family: 'Noto Sans JP' , "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "YuGothic M" , "メイリオ", "ＭＳ Ｐゴシック", sans-serif;
    font-display:swap;
    text-align: center; /* IE用 */

    color: var(--text-color , #333333);
    background:var(--bg-color-white , #fff);

    -webkit-text-size-adjust: 100%;
}

body.fixed {
    width: 100%;
    height: 100%;
    position: fixed;
    overflow-y: scroll;
}

main{
    display:block;
}

.gothic{
    font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "YuGothic M" , "メイリオ", "ＭＳ Ｐゴシック", sans-serif;
}

.en{
    font-family: 'Montserrat', sans-serif;
}

/* --------------------------------
   □ text
-------------------------------- */
p { 
    margin:0 0 0.8em 0;
    text-align:justify;
    text-justify:inter-ideograph;
}

p,table,ul,dl,ol,address{
    line-height:1.8;
}

p,table,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,figure,figcaption,address{
    box-sizing: border-box;
}

img{
    max-width: 100%;
    height: auto;
}

/* --------------------------------
   □ form
-------------------------------- */
input, select{
    box-sizing: border-box;
}

input.text{
    line-height:1.2;
}

input.text,
textarea,
select {
    border:1px solid #cfcfcf;
    padding:12px;
    border-radius:4px;
    box-sizing: border-box;
}

input.text:hover,
textarea:hover {
    border:1px solid #cfcfcf;
}

input.text:focus,
textarea:focus {
    border: 1px solid #333333;
}

input.error,
textarea.error {
    border:1px solid #da3e42;
    background:#fff3f3;
}

input.error:hover,
textarea.error:hover {
    border:1px solid #C30;
}

input.submit{
    line-height:100%;
    padding-top:2px;
}

input[type="button"],input[type="submit"] {
    -webkit-appearance: none;
}

/* --------------------------------
   □ link
-------------------------------- */
/* 基本 */
a{
    box-sizing: border-box;
    color:var(--link-color-blue , #0033cc);
    text-decoration:none;
}

/* 訪問済 */
a:visited {
    color:var(--link-color-blue , #0033cc);
}

/* ロールオーバー */
a:hover{
    color:var(--link-color-blue-hover , #245fbb);
    text-decoration:underline;
}

/* =================================
   ■ レイアウト
================================== */
/* --------------------------------
   □ 大枠 
-------------------------------- */
header,
.contents,
footer{
    /* 16px基準 */
}

/* .area → .containerに変更 */
ol#breadcrumbs,
.contents main > section,
.contents .chapter,
.contents .wide .container,
footer .container{
    max-width:1240px;
    margin-inline: auto;
    text-align: left;
    box-sizing:border-box;
}

.contents main > section.w1000,
.contents .chapter.w1000,
.contents .wide .container.w1000,
.contents main.w1000 > section,
.contents .w1000 .chapter,
.contents .w1000 .wide .container{
    max-width:1000px;
}


.contents section.wide,
.contents .chapter.wide{
    width:100%;
    max-width: inherit;
}

/* --------------------------------
   □ サイト情報 (ヘッダー)
-------------------------------- */
header{ 
    height:auto;
}

header p{ 
    margin-bottom: 0;
}

header .container{
    position: fixed;
    z-index: 2;
    width:100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 40px 12px 0;
    top: 0;
    left: 0;
    background: #fff;
}

header .container::before {
    position: absolute;
    top: 84px;
    left: 0;
    z-index: -1;
    content: '';
    width: 100%;
    height: 20px;
    background: linear-gradient(rgba(255, 255, 255, .8) 0, rgba(255, 255, 255, .3) 20%, rgba(255, 255, 255, 0) 50%);
    pointer-events: none;
}

header .container .information{
    display:flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 0 0 0 2vw;
    box-sizing: border-box;
}
header .container .logo{
    margin: 0;
    text-align: center;
    width: 24%;
}
header .container .logo a{
    text-decoration: none;
}
header .container .logo span{
    display: block;
    color: #333;
    font-size: 12px;
    margin-top: 3px;
}
header .container .logo img{
    max-width: min(100%, 200px);
    height: auto;
    margin-inline: auto;
}

header .container .utility{
    flex-grow: 1;
    display:flex;
    gap:20px;
    justify-content:flex-end;
    padding-right: 30px;
}
header .container .utility li.buttonStyle{
    width: 220px;
}
header .container .utility li.buttonStyle a{
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    min-height: 60px;
    padding: 7px 20px;
    box-shadow: 0px 0px 10px rgba(50, 51, 117, 0.3);
}
header .container .utility li.buttonStyle a:hover{
    letter-spacing: 0.1em;
}

header .container .utility li.buttonStyle a span{
    display: inline-block;
    line-height: 1.2;
    text-align: center;
}
header .container .utility li.buttonStyle a small{
    display: inline-block;
    width: 100%;
}
header .container .utility li.buttonStyle.guide a{
    background-color:#E03B21;
}
header .container .utility li.buttonStyle.guide a:hover{
    background-color:#C9341F;
}

header .container .utility li.buttonStyle.mail a{
    background-color:#ecad00;
}
header .container .utility li.buttonStyle.mail a:hover{
    background-color:#D69B03;
}


header .information .menu{
    display: flex;
    align-items: center;
    justify-content: center;
    width:48px;
    text-align: center;
}
    header .information .menu > p{
        position:relative;
        z-index: 6;
        display:inline-block;
        width : 42px;
        height: 42px;
        margin: 0;
        text-align: center;
        cursor: pointer;
        transition: all .7s ease;
    }

        header .information .menu > p > span {
            display : block;
            position: absolute;
            left: 6px;
            width   : 30px;
            height  : 2px ;
            background : #333;
            -webkit-transition: 0.5s ease-in-out;
            -moz-transition   : 0.5s ease-in-out;
            transition        : 0.5s ease-in-out;
        }
    
        .headerBlack header .information .menu > p > span{
            background : #333;
            caret-color:transparent
        }

    
            header .information .menu > p > span:nth-child(1) {
                top: 10px;
            }
            header .information .menu > p > span:nth-child(2) {
                top: 20px;
            }
            header .information .menu > p > span:nth-child(3) {
                top: 30px;
            }

            /* ナビ開いてる時のボタン */
            header .information .menu.open > p span {
                background: #333;
            }
    
            header .information .menu.open > p span:nth-child(1) {
                top : 19px;
                -webkit-transform: rotate(315deg);
                -moz-transform   : rotate(315deg);
                transform        : rotate(315deg);
            }

            header .information .menu.open > p span:nth-child(2),
            header .information .menu.open > p span:nth-child(3) {
                top: 19px;
                -webkit-transform: rotate(-315deg);
                -moz-transform   : rotate(-315deg);
                transform        : rotate(-315deg);
            }

header #globalNavigation{
    position: fixed;
    top  : 0;
    left : 0;
    z-index : -1;
    
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    
    color: #333;
    background: rgba(255,255,255,0.95);
    text-align: center;
    width: 100%;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
    transition: .6s ease;
    pointer-events: none;
}

header #globalNavigation a{
    pointer-events: none;
}

header #globalNavigation .navi-container{
    width: 800px;
    max-width: 100%;
    padding: 0 4%;
}

header #globalNavigation .navi-container .sitemap{
    display: flex;
    justify-content: center;
    align-items: stretch;
}

    
    header #globalNavigation ul.navigation {
        /* width: 50%; */
    }
    header #globalNavigation ul.navigation li{
        display:block;
        width: 100%;
        text-align:center;
    }
    
    header #globalNavigation ul.navigation li a{
        position: relative;
        display:inline-block;
        padding:8px 0;
        font-size: 2.0rem;
        color: #333;
        text-decoration: none;
    }

    header #globalNavigation ul.navigation li a::after {
        position: absolute;
        left: 0;
        content: '';
        width: 100%;
        height: 1px;
        background: #333;
        bottom: -1px;
        transform: scale(0, 1);
        transform-origin: center top;
        transition: transform 0.3s;
    }

    header #globalNavigation ul.navigation li a:hover::after {
        transform: scale(1, 1);
    }

    
    header #globalNavigation .contact{
        margin-top: 24px;
        margin-bottom: 24px;
    }
    header #globalNavigation .contact a{
        display: block;
        font-size: 2.0rem;
    }
    /*
    header #globalNavigation .contact a span{
        padding-left: 33px;
    }
    */
    header #globalNavigation .contact a:hover{
        letter-spacing: 1px;
    }
    
    header #globalNavigation ul.snsList{
        display: flex;
        gap:0 40px;
        justify-content: center;
    }

    header #globalNavigation ul.snsList li a{
        position: relative;
        display:inline-block;
        padding:8px 0;
        color: #333;
        text-decoration: none;
        transition: .3s;
    }
    header #globalNavigation ul.snsList li a:hover{
        letter-spacing: 0.1em;
    }
    header #globalNavigation ul.snsList li a i{
        margin-right: 8px;
    }

header #globalNavigation.open {
    opacity: 100;
    visibility:visible;
    z-index : 2;
    pointer-events:visible;
}
header #globalNavigation.open a{
    pointer-events:visible;
}

    header .cpa{
        position: fixed;
        right: 0;
        bottom:0px;
        margin: 0;
        background: rgba(0,0,0,0.3);
        padding: 10px;
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }
    header .cpa img{
        height: auto;
    }

/* --------------------------------
   □ ページコンテンツ
-------------------------------- */
.contents{
    height:auto;
    overflow-x: hidden;
}

/* 下層の場合は余白付ける */
.secondary .contents main{
    padding-bottom: 106px;
}

    /* ◆ 汎用指定
    -------------------------------- */

    /* ◇ box
    -------------------------------- */	
    /* main直下のsection */
    .contents main > section{

    }

    .contents main > section + section{
        margin-top:84px;
    }

    .contents section a.textlink{
        color: #333;
        text-decoration: underline;
    }
    .contents section a.textlink:hover{
        color: #888;
    }


    /* ◇ title
    -------------------------------- */
    .contents .title._lv2{
        font-size:4.4rem;
        font-weight: 700;
    }

    .contents .title.indention > span{
        display: block;
    }

    .contents .title._lv2 span{
        font-size:1.6rem;
        line-height: 1;
        display: block;
        margin-top: 8px;
    }

    .contents .title._lv3{
        font-size:3.4rem;
        font-weight: 700;
    }
    .contents .title._lv3 span{
        font-size:1.6rem;
        line-height: 1;
        display: block;
        margin-top: 8px;
        padding-left: 4px;
    }

    .contents .title._lv4{
        font-size:2.4rem;
        font-weight: 700;
    }

    .contents .title.border{
        padding-bottom: 18px;
        border-bottom: 1px solid #989898;
    }

    .contents .title.left_wrapper{
        position: relative;
        text-align: left;
        margin-left: -194px;
        padding: 24px 0 24px 194px;
        background: #F7F6F4;
        border-radius: 64px;
        width: 800px;
        max-width: 100%;

        @media screen and
        (max-width : 767px) {
            margin-left: calc(var(--wrap-space) * -1);
            padding: 16px 6px 16px var(--wrap-space);
            width: 100%;
            border-radius: 0 24px 24px 0;
        }
    }

    .contents .title{
        small._decoration{
            float: right;
            display: inline-block;
            margin-left: auto;
            color: #E8E5DE;
            font-size: 1.4rem;
        }
    }


    /* ◇ n_lv*
    -------------------------------- */ 
    .contents .title.n_lv1{
        font-size:3.6rem;
        font-weight: 700;
    }
    .contents .title.n_lv1 > small{
        display: block;
        width: fit-content;
        font-size:1.8rem;
        font-weight: 700;
    }  

    .contents .title.n_lv1 span.en{
        font-size:1.8rem;
        line-height: 1;
        display: block;
        color: #110184;
        margin-bottom: 8px;
    }

    .contents .title.n_lv2{
        font-size: 2.4rem;
        font-weight: 700;

        & > small{
            font-size: 1.6rem;
            font-weight: 400;

            &.en.c_blue{
                margin-left: 8px;
            }
        }
    }

    .contents .title.n_lv3{
        font-size: 2.0rem;
        font-weight: 700;
    }

    .contents .title.n_lv1 + *{
        margin-top: 50px;
    }

    .contents .title.n_lv2 + *{
        margin-top: 30px;
    }

    .contents .title.center,
    .contents .title._center{
        text-align: center;
    }
    .contents .title.center span,
    .contents .title._center span{
        padding-left: 0;
    }

    .contents .title + *{
        margin-top: 20px;
    }
    .contents .title._lv2 + *{
        margin-top: 60px;
    }
    .contents .title._lv3 + *{
        margin-top: 48px;
    }
    .contents .title._lv4 + *{
        margin-top: 36px;
    }

    /* ◇ 下層用　メイン部分
    -------------------------------- */	
    .secondary .contents .visual{
        overflow: hidden;
        position: relative;
        width: 100%;
        height: 400px;
        margin-bottom: 38px;
        background: url("../images/constitution/visual.jpg") 0 50% no-repeat;
        background-size: cover;
    }

    .secondary .contents .visual.simple{
        height: 50px;
        margin-bottom: 38px;
        background: #fff!important;
    }


    .secondary .contents .visual .container{
        display: flex;
        flex-direction: column;
        justify-content:center;
        max-width:90%;
        height: 100%;
        margin: 0 auto;
    }

    .secondary .contents .visual h1,
    .secondary .contents .visual .text{
        position: relative;
        text-align: left;
        text-shadow:1px 1px 2px #fff;
    }
    .secondary .contents .visual h1 span{
        display: block;
        font-size:6.0rem;
    }

    .secondary .contents .visual h1{
        line-height: 1;
        display: block;
        font-weight: 400;

    }

    .secondary .contents section.wide{
        padding: 70px 0
    }

    .contents main > section + section {
        margin-top: 0;
    }

    .secondary .contents section p{
        line-height: 2;
    }

    .secondary .contents section .underline{
        background: -webkit-linear-gradient(transparent 88%, #FFF000 0%);
        background: -o-linear-gradient(transparent 88%, #FFF000 0%);
        background: linear-gradient(transparent 88%, #FFF000 0%);
    }

    /* 背景色 */
    .secondary .contents .bg_gold{
        background: #eeece3;
    }
    .secondary .contents .bg_gray{
        background: #C1BCB9;
    }

    @media only screen and
    (max-width : 767px) {
        
        .secondary .contents .visual{
            width: 100%;
            height: 300px;
            margin-bottom: 8px;
        }

        .secondary .contents .visual h1 span{
            display: block;
            font-size:2.4rem;
        }

        .secondary .contents .visual h1{
            font-size:1.6rem;
            font-weight: 700;

        }

        .secondary .contents section.wide{
            padding: 40px 0
        }

        .secondary .contents section p{
            line-height: 2;
        }

    }

    /* --------------------------------
    ■#contactArea
    -------------------------------- */ 
    #contactArea{
        background: #EEEDEE;
        padding: 34px 0;
    }
    #contactArea .container{
        display: flex;
        align-items: stretch;
        justify-content: space-between;
        gap:0 38px;
    }
    #contactArea .container .row{
        max-width: 50%;
    }
    #contactArea .container .row h2._lv2{
        margin-bottom: 32px;
    }
    #contactArea .container .row .logo{
        max-width: 300px;
        margin: 0 0 14px 0;
    }
    .renew2025 #contactArea .container .row{
        max-width: 100%;
    }
    .renew2025 #contactArea .container .row2{
        display: none!important;    
    }

    #contactArea .container .row2{
        display: table;
        width: 60%;
        padding: 25px;
        background: rgba(255,255,255,0.4);
    }
    #contactArea .container .row2 p.text{
        font-size: 1.8rem;
        text-align: center;
        font-weight: 700;
    }
    #contactArea .container .row2 p.tel{
        font-size: 1.6rem;
        line-height: 1.2;
        text-align: center;
    }
    #contactArea .container .row2 p.tel em{
        font-size: 2.8rem;
        display: block;
        text-align: center;
    }
    #contactArea .container .row2 p.tel a{
        text-decoration: none;
    }

	#contactArea .container .row2 p.buttonStyle{
        margin: 0;
	}
	#contactArea .container .row2 p.buttonStyle + p.buttonStyle{
        margin-top: 18px;
	}

    #contactArea .container .row2 p.buttonStyle a{
        width: 80%;
		background: #ECAD00;
        font-weight: 700;
        box-shadow: 4px 6px 4px 0px rgba(50, 51, 117, 0.1);
    }

	#contactArea .container .row2 p.buttonStyle a:hover{
		background-color:#D69B03;
	}
	#contactArea .container .row2 p.buttonStyle.tel a:hover{
		background-color:#ecad00;
	}

    @media only screen and
    (max-width : 767px) {

        #contactArea{
            padding: 8vw 0;
        }
        #contactArea .container{
            display: block;
            align-items: stretch;
            justify-content: space-between;
        }
        #contactArea .container .row{
            max-width: inherit;
        }
        #contactArea .container .row h2._lv2{
            margin-bottom: 32px;
            text-align: center;
        }
        #contactArea .container .row .logo{
            max-width: 100%;
            margin: 0 0 14px 0;
            text-align: center;
        }
        #contactArea .container .row .logo img{
            max-width: 60%;
        }
        #contactArea .container .row .addoress{
            text-align: center;
        }

        #contactArea .container .row2{
            display: table;
            width: 100%;
            padding: 4vw;
            background: rgba(255,255,255,0.4);
        }
        #contactArea .container .row2 p.text{
            font-size: 1.6rem;
            text-align: center;
        }
        #contactArea .container .row2 p.tel{
            font-size: 1.6rem;
        }
        #contactArea .container .row2 p.tel em{
            font-size: 3.2rem;
        }

        #contactArea .container .row2 p.buttonStyle a{
            width: 90%;
        }
        #contactArea .container .row2 p.buttonStyle.tel a:hover{
            background-color:#D69B03;
        }

    }

    /* --------------------------------
    ■#access
    -------------------------------- */ 
    #access{
        background: #BFB690;
        padding: 80px 0;
    }
    #access .container .shopList{
        display: flex;
        justify-content: center;
        align-items: stretch;
        flex-wrap: wrap;
        gap: 0 34px;
        max-width: 1100px;
        margin: 0 auto;
    }
    #access .container .shopList .shop{
        width: calc(50% - 34px);
        padding: 34px 16px;
        box-sizing: border-box;
        background: rgba(255,255,255,0.15);
            
    }

    #access .container h2{
        width: 100%;
        margin-bottom: 80px;
    }
    #access .container .explain{
    }

    #access .container .explain dl.info{
        margin: 0 auto;
        width: 90%;
    }

    #access .container .explain dl.info dt{
        margin-bottom: 16px;
        text-align: center;
    }
    #access .container .explain dl.info dt img{
        width: 60%;
    }


    #access .container .explain dl.info dd p.address{
        margin-bottom: 12px;
    }

    #access .container .explain dl.info dd div + div{
        margin-top: 24px;
    }

    #access .container .explain dl.info dd .date p{
        margin-bottom: 0;
    }
    #access .container .explain dl.info dd .date p + p{
        margin-top: 4px;
    }

    #access .container .explain dl.info dd .phone p{
    }
    #access .container .explain dl.info dd .phone p + p{
        margin-top: 4px;
    }
    #access .container .explain dl.info dd .phone p a{
        color: #111;
    }

    #access .container .explain .buttonArea .buttonStyle{
        text-align: center;
        margin-bottom: 0;
    }
    #access .container .explain .buttonArea .buttonStyle a{
        width: 100%;
        text-align: center;
        box-shadow: 0px 0px 4px rgba(50, 51, 117, 0.3);
    }

    #access .container .map{
        width: 100%;
        margin-top: 24px;
    }
    #access .container .map iframe{
        width: 100%;
        height: 400px;
    }

    #access ul.linkList{
        display: flex;
        flex-wrap: wrap;
    }

    @media only screen and
    (max-width : 767px) {
        
        #access{
            background: #BFB690;
            padding: 8vw 0;
        }
        #access .container{
        }

        #access .container h2{
            width: 100%;
            margin-bottom: 40px;
        }
        
    #access .container .shopList{
        display: block;
        margin: 0 auto;
    }
    #access .container .shopList .shop{
        width: auto;
        padding: 5vw 3vw;
    }
    #access .container .shopList .shop + .shop{
        margin-top: 6vw;
    }
        
        #access .container .explain{
            width: auto;
            box-sizing: border-box;
            margin: 0;
        }

        #access .container .explain dl.info{
            width: auto;
        }

        #access .container .explain dl.info dt{
            width: auto;
            margin-bottom: 16px;
            text-align: center;
        }
        #access .container .explain dl.info dt img{
            width: 60%;
        }
        
        #access .container .explain dl.info dd p{
            font-size: 1.4rem;
        }
        
        #access .container .explain .buttonArea{
            margin-top: 6vw;
        }

        #access .container .explain .buttonArea .buttonStyle{
            text-align: left;
        }
        #access .container .explain .buttonArea .buttonStyle a{
            width: 100%;
            text-align: center;
            box-shadow: 0px 0px 4px rgba(50, 51, 117, 0.3);
        }

        #access .container .map{
            width: 100%;
            height: 250px;
        }
        #access .container .map iframe{
            width: 100%;
            height: 100%;
        }
        
    }

    /* --------------------------------
    ■#pickupMenu
    -------------------------------- */ 
    #pickupMenu ul.linkList{
        display: flex;
        flex-wrap: wrap;
    }
    #pickupMenu ul.linkList > li{
        width: 50%;
    }
        #pickupMenu ul.linkList > li a{
            position: relative;
            overflow: hidden;
            display: block;
            text-align: center;
            text-decoration: none;
            color: #fff;
            transition: .3s;
            padding: 20px;
            height: 100%;
        }
        #pickupMenu ul.linkList > li a:hover{
        }

        #pickupMenu ul.linkList > li a::before{
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 50% 50% no-repeat;
            background-size: cover;
            transition: .5s;
        }
        #pickupMenu ul.linkList > li a:hover::before{
            transform: scale(1.1);
        }
        #pickupMenu ul.linkList > li a::after{
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.3);
            transition: .6s;
        }
        #pickupMenu ul.linkList > li a:hover::after{
            background: rgba(0,0,0,0.8);
        }

        #pickupMenu ul.linkList > li a > *{
            position: relative;
            z-index: 1;
            text-align: center;
        }

        #pickupMenu ul.linkList > li p.jp{
            font-size: 3.2rem;
            font-weight: 700;
            line-height: 1.4;
            text-align: center;
        }

        #pickupMenu ul.linkList > li p.jp .en{
            display: block;
            font-size: 1.6rem;
            font-weight: 400;
        }

        #pickupMenu ul.linkList > li p.buttonStyle{
            margin: 0;
        }

        #pickupMenu ul.linkList > li p.buttonStyle > span{
            padding-top: 8px;
            padding-bottom: 8px;
            width: 220px;
        }

        #pickupMenu ul.linkList > li .line {
            position: relative;
            text-align: center;
            padding: 12px 0 24px 0;
            height: 100%;
        }
        #pickupMenu ul.linkList > li a:hover .line::before,
        #pickupMenu ul.linkList > li a:hover .line::after {
            width: 100%;
            height: 100%;
        }

        #pickupMenu ul.linkList > li a .line::before,
        #pickupMenu ul.linkList > li a .line::after {

            content: "";
            display: block;
            position: absolute;
            z-index: 10;
            transition: all 0.3s ease 0s;
            -webkit-transition: all 0.3s ease 0s;
            width: 30px;
            height: 30px;
            border: 0 solid #fff;
        }

        #pickupMenu ul.linkList > li a .line::before {
            right: 0;
            top: 0;
            border-width: 1px 1px 0 0 ;
        }

        #pickupMenu ul.linkList > li a .line::after {
            bottom: 0;
            left: 0;
            border-width:  0 0 1px 1px;
        }


        #pickupMenu ul.linkList > li.before a::before{
            background-image:url("../images/before_after/visual.jpg");
        }
        #pickupMenu ul.linkList > li.price a::before{
            background-image:url("../images/pricelist/visual.jpg");
        }
        #pickupMenu ul.linkList > li.trainer a::before{
            background-image:url("../images/trainer/visual.jpg");
        }
        #pickupMenu ul.linkList > li.training a::before{
            background-image:url("../images/training/visual.jpg");
        }


    @media only screen and
    (max-width : 767px) {
        
        #pickupMenu ul.linkList{
            display: block;
        }
        #pickupMenu ul.linkList > li{
            width: 100%;
        }
            #pickupMenu ul.linkList > li a{
                padding: 15px;
                height: 100%;
            }
            #pickupMenu ul.linkList > li a:hover{
            }

            #pickupMenu ul.linkList > li a:hover::before{
                transform: scale(1);
            }
            #pickupMenu ul.linkList > li a::after{
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0,0,0,0.3);
                transition: .6s;
            }
            #pickupMenu ul.linkList > li a:hover::after{
                background: rgba(0,0,0,0.8);
            }

            #pickupMenu ul.linkList > li a > *{
                position: relative;
                z-index: 1;
                text-align: center;
            }

            #pickupMenu ul.linkList > li p.jp{
                font-size: 2.0rem;
            }

            #pickupMenu ul.linkList > li p.jp .en{
                font-size: 1.4rem;
            }

            #pickupMenu ul.linkList > li p.buttonStyle{
                margin: 0;
            }

            #pickupMenu ul.linkList > li p.buttonStyle > span{
                width: 60%;
                font-size: 1.5rem;
            }

            #pickupMenu ul.linkList > li .line {
                position: relative;
                text-align: center;
                padding: 12px 0 24px 0;
                height: 100%;
            }

            #pickupMenu ul.linkList > li a .line::before,
            #pickupMenu ul.linkList > li a .line::after {

                content: "";
                display: block;
                position: absolute;
                z-index: 10;
                transition: all 0.3s ease 0s;
                -webkit-transition: all 0.3s ease 0s;
                width: 20px;
                height: 20px;
                border: 0 solid #fff;
            }

            #pickupMenu ul.linkList > li a .line::before {
                right: 0;
                top: 0;
                border-width: 1px 1px 0 0 ;
            }

            #pickupMenu ul.linkList > li a .line::after {
                bottom: 0;
                left: 0;
                border-width:  0 0 1px 1px;
            }
        
        
    }



/* --------------------------------
   □ サイト情報(フッター)
-------------------------------- */
footer{
    clear:both;
    color: #fff;
    background: #282B30;
    padding: 45px 0 77px 0;
}
.renew2025 footer{
    color: #333;
    background: #F7F6F4;
}
.renew2025 footer .container a{
    color: #333;
}

.renew2025 footer .author ul.snsList li a{
    color: #333;
}
footer.white{
    clear:both;
    color: #282B30;
    background: #fff;
    padding: 45px 0 45px 0;
}

    footer .container{
        display: flex;
        gap:0 0 30px 0;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    footer .container a{
        color: #fff;
    }

    footer .author{
        position: relative;
        width: 30%;
    }

    footer .author .logo{
        margin-bottom: 31px;
    }
    footer .author .logo a{
        display: flex;
        align-items: center;
        gap: 0 12px;
        text-decoration: none;
    }
    footer .author .logo img{
        display: inline-block;
        max-width: 220px;
    }

    footer .author .address{
        font-size: 1.5rem;
    }

    footer .author .buttonStyle{
        text-align: left;
    }

    footer .author .buttonStyle a{
        font-size: 1.6rem;
        padding: 10px 38px;
    }

    footer .author .buttonStyle a > span{
        padding-left: 25px;
    }
    
    footer .author ul.snsList{
    }
    footer .author ul.snsList li + li{
        margin-top: 4px;
    }

    footer .author ul.snsList li a{
        position: relative;
        display:inline-block;
        padding:0;
        color: #fff;
        text-decoration: none;
        transition: .3s;
    }
    footer .author ul.snsList li a:hover{
        text-decoration: underline;
    }
    footer .author ul.snsList li a i{
        margin-right: 8px;
    }


    footer .sitemap{
        width: 70%;
    }
    footer .sitemap nav{
        display: flex;
        align-items: stretch;
        justify-content: flex-end;
        gap:4px 48px; 
    }

    footer nav .navigation{
        width: 30%;
    }
    footer nav .navigation dt,
    footer nav .navigation dd,
    footer nav .navigation li{
        line-height: 1.3;
    }

    footer nav .navigation * + dt,
    footer nav .navigation * + dd,
    footer nav .navigation * + li{
        margin-top: 8px;
    }

/*
    footer nav .navigation li{
        padding-left: 1em;
    }
*/

    footer nav .navigation a{
        display: inline-block;
        position: relative;
        overflow: hidden;
        text-decoration: none;
        color:#fff;
    }

        footer nav .navigation a:after {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background-color: #fff;
            transform: translate(-101%, 0);
            transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
            content: "";
        }
        footer nav .navigation a:hover:after {
            transform: translate(0, 0);
        }


    footer nav .navigation li a{
        color:#fff;
		width: 100%;
    }

        footer nav .navigation li a:after {
            background-color: #fff;
        }

    footer .copyright{
        width: 100%;
        margin: 80px 0 0 0;
        font-size: 1.2rem;
        text-align: center;
    }
    /* TOPへ戻る
    -------------------------------- */
    footer p.pagetop{
        display: none;
        position: fixed;
        z-index: 2;
        right: 0;
        bottom: 0;
        text-align:right;
        margin:8px;
    }

/* --------------------------------
   □ スマートフォン用の記述
-------------------------------- */
body .pc{
    display:block;
}
body .sp,
span.textized,
br.spOnly{
    display:none;
}

a.phone.noanchor{
    text-decoration:none;
    cursor:default;
}

/* SP以外(PC)
-------------------------------------------- */	
@media screen and (min-width: 768px)  {


}

/* タブレット用
-------------------------------------------- */
@media (max-width: 1180px) and 
(min-width: 768px) {


ol#breadcrumbs,
.contents main > section,
.contents .chapter,
.contents .wide .container,
footer .container{
    width:auto;
    margin-left: 20px;
    margin-right: 20px;
}

.contents section.wide,
.contents .chapter.wide{
    width:auto;
    margin-left: 0px;
    margin-right: 0px;
}

}

/* SP用
-------------------------------------------- */
@media only screen and
(max-width : 767px) {

/* --------------------------------
   □ 共通変数の定義
-------------------------------- */
body {
    --wrap-space: 3vw;
}

body.renew2025 {
    --wrap-space: 5vw;
}

/* =================================
   ■ 共通指定
================================== */

body {
    transform: none !important;
    min-width: auto;
}

img{
    max-width:100%;
    height:auto;
}

body .pc{
    display:none;
}
body .sp{
    display:block;
}

span.textized{
    display:inline;
}

br.spOnly{
    display:inline-block;
}

br.pcOnly{
    display:none;
}

.txtimg{
    display:none;
}

input, select{
    font-size:16px;
}

/* --------------------------------
   □ 大枠 
-------------------------------- */
header .container{
    font-size:100%;
    width:auto;
}

ol#breadcrumbs,
.contents main > section,
.contents .chapter,
.contents .wide .container,
footer .container{
    font-size:100%;
    width:auto;
    padding-left: var(--wrap-space);
    padding-right: var(--wrap-space);
}

.contents section.wide,
.contents .chapter.wide{
    width:auto;
    padding-left:0;
    padding-right: 0;
}

/* --------------------------------
   □ サイト情報 (ヘッダー)
-------------------------------- */
header{
    position:relative;
    height:auto;
}

header .container{
    position: fixed;
    z-index: 2;
    width:100%;
    max-width: inherit;
    height: 50px;
    padding: 0;
    top: 0;
    left: 0;
}
    
    header .container::before {
        top: 50px;
        height: 20px;
        background: linear-gradient(rgba(255, 255, 255, .8) 0, rgba(255, 255, 255, .3) 20%, rgba(255, 255, 255, 0) 50%);
    }

header .container .information{
    display:flex;
    justify-content:space-between;
    width: 100%;
    height: 100%;
    padding: 0 0 0 2vw;
    box-sizing: border-box;
}

header .information .logo{
    display:flex;
    height: 100%;
    width: 39%;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    margin: 0;
}
header .information .logo a{
    display: inline-block;
}
header .information .logo a img{
    display: block;
    vertical-align: bottom;
}

    

header .container .logo span{
    display: block;
    font-size: 8px;
    margin-top: 3px;
}
    

header .container .utility{
    position: fixed;
    left: 0;
    bottom: 0;
    padding-right: 0;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    gap:0;
    
    
    display: none;
}
header .container .utility li{
}
header .container .utility li.buttonStyle{
    width: 50%;
}
header .container .utility li.buttonStyle a{
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 4px 10px;
    border-radius: 0;
    max-width: inherit;
    height: 100%;
    margin-left: auto;
    
}
header .container .utility li.buttonStyle a:hover{
    letter-spacing: 0;
}

header .container .utility li.buttonStyle a span{
    display: inline-block;
    font-size: 1.3rem;
    line-height: 1.2;
    text-align: center;
    max-width: calc(7em + 19px);
    
}
header .container .utility li.buttonStyle.mail a span{
    padding-left: 19px;
}
header .container .utility li.buttonStyle a small {

}
header #globalNavigation ul.navigation li a {
    padding: 8px 0;
    font-size: 1.6rem;
}
header #globalNavigation ul.navigation li a::after {
    display: none;
}

header #globalNavigation .contact a {
    display: block;
    font-size: 1.6rem;
}

header .cpa{
    right: 3%;
    bottom:20px;
    width: 100%;
    text-align: right;
    padding: 0;
    background: none;
}
header .cpa img{
    max-width: inherit;
    width: 94%;
    height: auto;
}

/* --------------------------------
   □ ページコンテンツ
-------------------------------- */
.contents{
    height:auto;
}

    .secondary .contents main {
        padding-bottom: 46px;
    }

    /* ◇ box
    -------------------------------- */	
    /* main直下のsection */
    .contents main > section{

    }

    .contents main > section + section{
        margin-top:7vw;
    }

    /* ◇ title
    -------------------------------- */
    .contents .title._lv2{
        font-size:2.4rem;
    }

    .contents .title._lv2 span{
        font-size:1.6rem;
    }

    .contents .title._lv3{
        font-size:2.0rem;
        font-weight: 700;
    }
    .contents .title._lv3 span{
        font-size:1.5rem;
    }

    .contents .title._lv4{
        font-size:1.8rem;
    }
    

    .contents .title.n_lv1{
        font-size:2.5rem;
    }
    .contents .title.n_lv1 > small{
        font-size:1.6rem;
    }
    
    .contents .title.n_lv1 span.en{
        font-size:1.6rem;
        margin-bottom: 8px;
    }

    .contents .title.n_lv2{
        font-size: 2.0rem;
        font-weight: 700;
    }

    .contents .title.n_lv3{
        font-size: 1.8rem;
        font-weight: 700;
    }

    .contents .title.n_lv1 + *{
        margin-top: 27px;
    }

    .contents .title.n_lv2 + *{
        margin-top: 20px;
    }

    .contents .title + *{
        margin-top: 16px;
    }
    .contents .title._lv2 + *{
        margin-top: 27px;
    }
    .contents .title._lv3 + *{
        margin-top: 22px;
    }
    .contents .title._lv4 + *{
        margin-top: 18px;
    }
    

    /* ◇ 下層用　メイン部分
    -------------------------------- */	
    .secondary .contents .accentBox{
        width: 100%;
        height: calc(40vw + 50px);
        margin-bottom: 42px;
    }

    .secondary .contents .accentBox::before{
        position: absolute;
        top: 50px;
        bottom: inherit;
        right: 0;
        width: 60%;
        height: 46%;
        border-radius: 16px 0 0 16px;
    }

    .secondary .contents .accentBox h1{
        font-size:4.0rem;
        line-height: 1;
        display: block;
        font-weight: 400;

    }
/* --------------------------------
   □ サイト情報(フッター)
-------------------------------- */
footer{
    padding: 44px 0 32vw 0;
}

    footer .container{
        display: block;
    }

    footer .container a{
        color: #fff;
    }

    footer .author{
        position: relative;
        width: auto;
    }

    footer .author .logo{
        margin-bottom: 11px;
        text-align: center;
    }
    footer .author .logo a{
        display: inline-block;
        text-align: center;
    }
    footer .author .logo img{
        max-width: 220px;
    }

    footer .author .address{
        font-size: 1.4rem;
        text-align: center;
    }

    footer .author ul.snsList{
        margin-top: 26px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        gap: 8px 16px;
    }
    footer .author ul.snsList li + li{
        margin-top: 4px;
    }

    footer .author ul.snsList li a{
        position: relative;
        display:inline-block;
        padding:0;
        color: #fff;
        text-decoration: none;
        transition: .3s;
    }
    footer .author ul.snsList li a:hover{
        text-decoration: underline;
    }
    footer .author ul.snsList li a i{
        margin-right: 8px;
    }
    

    footer .sitemap{
        margin-top: 40px;
        width: 96%;
    }
    footer .sitemap nav{
        display: flex;
        align-items: stretch;
        justify-content: space-between;
        gap:4px 12px; 
    }

    footer nav .navigation{
        width: 49%;
    }


    footer nav .navigation li{
        padding-left: 0.2em;
    }

    footer nav .navigation a{
        display: inline-block;
        position: relative;
        overflow: hidden;
        text-decoration: none;
        color:#fff;
    }

        footer nav .navigation a:after {
            display: none;
        }
        footer nav .navigation a:hover:after {
            transform: translate(0);
        }


    footer .copyright{
        width: 100%;
        margin: 40px 0 0 0;
        font-size: 1.2rem;
        text-align: center;
    }

/* TOPへ戻る
-------------------------------- */
footer p.pagetop{
    margin-bottom: 32vw;
    width: 14vw;
}
    

footer.white p.pagetop{
    margin-bottom: 2vw;
}

    
    footer p.pagetop img{
        width: 100%;
    }

}


