@charset "UTF-8";
@font-face {
    font-family:'DM Serif Display';
    src: url(../fonts/DMSerifDisplay-Regular.ttf);
}
@font-face {
    font-family:'Noto Sans Japanese';
    src: url(../fonts/NotoSansJP-Medium.ttf);
}
@font-face {
    font-family:'Arial';
    src: url(../fonts/Arialn.ttf);
}


/*******************************************************************************************
共通処理
*******************************************************************************************/
html {
    font-size: 100%;
    scroll-snap-type:y proximity;/*ページ内リンク少し上に着地調整*/
    scroll-padding-top:10vh;/*ページ内リンク少し上に着地調整*/
    /*scroll-behavior:smooth;/*上に戻る挙動をスムーズ化　　問い合わせフォームの画面外のフォームエラーが表示されなくなる影響あり*/
    scroll-behavior:auto;/*上に戻る挙動をスムーズ化　　問い合わせフォームの画面外のフォームエラーが表示されなくなる影響あり*/
}
body {
    background-color:rgb(246,244,239);
    font-family:'Arial', 'DM Serif Display', serif;
    font-size: 0.9rem;
    line-height: 1.7;
}
/*画面幅が600px以下の場合*/
/*@media screen and (max-width: 600px) {
    body {
        font-size: 0.5rem;
    }
}
/*画面幅900px以上の場合*/
/*@media screen and (min-width: 900px) {
    body {
        font-size: 0.3rem;
    }
}
*/
/*中身のコンテンツ幅指定の共通クラス*/
.wrapper {
    width:1400px;
    max-width:100%;
    margin: 0 auto;
    padding:0 3%;
    text-align: center;
    position:relative;
}
/*H3レイアウト*/
.title_h3{
    font-size:1.8vw;
    font-weight:bold;
    white-space: nowrap;
    text-shadow:1px 2px 3px gray;
}
/*新着記事に「NEW」を付与*/
.text_icon{
    color:white;
    font-weight:bold;
    background-color:red;
    border-radius:30px;
    padding:3px 10px;
    margin-left:10px;
}
/*ＰＣ用の改行*/
br.br_pc{
    display:block;
}
/*スマホ用の改行*/
br.br_sm{
    display:none;
}
/*******************************************************************************************
変数定義
*******************************************************************************************/
body{
    /*テーマカラー*/
    --themecolor: rgb(97,31,16,1.0);
    /*ヘッダーの透過用カラー*/
    --themeheadcolor: rgb(97,31,16,0.4);
    /*メインフォントカラー*/
    --fontcolor:rgb(97,31,16,1.0); 
}
/*******************************************************************************************
header
*******************************************************************************************/
#header {
    /*position:relative;*/
    position:fixed;
    top:0;
    left:0;
    right:0;
    width:100%;
    max-width:100%;
    background-color:rgb(246,244,239,0.8);
    transition-duration:0.5s;
    height:auto;
    z-index:20;
}
#header #header_menu_area{
    height:auto;
    position:relative;
    z-index:20;
    display:flex;
    justify-content:space-between;
    align-items:center;
}
#header #header_menu_area #header_menu{
    width:100%;
    display:flex;
    height:auto;
    justify-content:space-between;
    align-items:center;
}
#header_menu h1{
    display:block;
    width:100px;
    height:auto;
    margin-right:10px;
    /*filter: drop-shadow(1px 1px 10px black);*/
}
#header_menu h1 .header_menu_title{
    /*display:inline-block;*/
    display:flex;
    vertical-align: middle;/*inline-block上下中央に必須*/
    height:100%;
    width:100%;
    background-color:var(--themecolor);
}
#header_menu h1 .header_menu_title img{
    /*display:block;*/
    display:flex;
    width:100%;
    height:100%;
    /*object-fit:cover;*/
    object-fit:contain;
}
#header_menu .title_area{
    display:flex;
    flex-direction:column;
    margin-right:30px;
}
#header_menu .title_area .sub{
    display:block;
    width:fit-content;
    color:#333333;
    font-size:1.0vw;
    font-weight:bold;
    white-space:nowrap;
    background-color:rgb(253,245,216,1);
    border:1px solid #997768;
    filter: drop-shadow(1px 1px 2px black);
    border-radius:30px;
    text-align:center;
    padding:0 10px;
}
#header_menu .title_area .title{
    color:white;
    font-size:1.5vw;
    white-space:nowrap;
    font-weight:bold;
    text-shadow:1px 2px 3px black;
}
#header_menu #nav{
    display:flex;
}
#header_menu #nav_menu{
    display:flex;
    justify-content:space-between;
    text-align:center;
    align-items:center;
    margin-right:50px;
}
#header_menu #nav_menu .nav_menu_item{
    color:var(--fontcolor);
    /*font-size:0.8vw;*/
    font-size:0.9rem;
    font-family:'DM Serif Display', serif;
    letter-spacing:0.2rem;
    white-space:nowrap;
    position:relative;
    padding:5px 10px;
    border-radius:20px;
    margin-left:50px;
    transition-duration:0.5s;
}
#header_menu #nav_menu .nav_menu_item:first-child(){
    margin-left:0px;
}
#header_menu #nav_menu .nav_menu_item:hover{
    background-color:#9b8571;
    text-shadow:none;
    transition: background-color 0.5s;
}
#header_menu #nav #nav_contact_area a.btn{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    width:auto;
    max-width:70px;
    background-color:rgb(246, 244, 239);
    border:3px solid white;
    border-radius:5px;    
    position:relative;
    padding:5px 20px;
    transition: background-color 0.5s;
    margin-right:2.5vw;
    filter: drop-shadow(1px 1px 1px black);
}
#header_menu #nav #nav_contact_area a.btn:hover{
    background-color:#9b8571;
}

#header_menu #nav #nav_contact_area a.btn .img_area{
    display:block;
    width:100%;
    height:30px;
    overflow:hidden;
}
#header_menu #nav #nav_contact_area a.btn .img_area img{
    display:block;
    width:100%;
    height:100%;
    object-fit:contain;
    margin:0 auto;
}
#header_menu #nav #nav_contact_area a.btn .text_area{
    display:block;
    width:fit-content;
    color:var(--fontcolor);
    font-size:0.7rem;
    font-family: 'DM Serif Display', serif;
    text-align:center;
}
#header_menu .drop_down{
    position:relative;
}
#header_menu .drop_area{
    background-color:#696969;
    padding:5px;
    opacity:0;
    position:absolute;
    left:0;
    top:110%;/*ヘッダーメニューの下部から表示*/
    transition: opacity .3s, visibility .3s;
    visibility:hidden;
    width:max-content;
    z-index:12;
}
#header_menu .drop_area .drop_item{
    color:white;
    text-align:left;
    border-bottom:1px dotted white;
    padding:5px 20px;
    transition: background-color 0.5s;
}
#header_menu .drop_area .drop_item:hover{
    color:#333333;
    background-color:white;
}
#header_menu .drop_area .drop_item:last-child{
    border-bottom:none;
}
#header_menu_area #header_menu_right{
    background-color:rgb(255,255,255,1.0);
    border-radius:10px;
    width:auto;
    height:auto;
    padding:5px 10px;
    margin:10px;
}
#header_menu_area #header_menu_right .tel_no{
    font-size:1.5vw;
    white-space:nowrap;
    border-radius:10px;
    padding:5px;
    transition: background-color 0.5s;
}
#header_menu_area #header_menu_right .tel_no:hover{
    background-color:#333333;
    color:white;
}
#header_menu_area #header_menu_right .hours{
    font-size:1.0vw;
    white-space:nowrap;
}
/*
ハンバーガメニュー
*/
#header .hamburger_btn{
    display:none;
    position:relative;
    width:55px;
    margin:0 0 0 auto;
    z-index:100;
}
/*ボタン外側*/
#header .hamburger_btn .header_menu_lines{
    position: relative;/*ボタン内側を基点とする*/
    background:white;
    cursor: pointer;
    width: 40px;
    height:40px;
    border-radius: 5px;
}
/*ボタン内側*/
#header .hamburger_btn .header_menu_lines span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 5px;
    height: 4px;
    border-radius: 5px;
    background: var(--themecolor);
    width: 75%;
}
#header .hamburger_btn .header_menu_lines span:nth-of-type(1) {
    /*top:10px; */
    top:calc(50% - 20%);
    transform:translateY(-50%);
}
  
#header .hamburger_btn .header_menu_lines span:nth-of-type(2) {
    /*top:18px;*/
    top:calc(50%);
    transform:translateY(-50%);
}
  
#header .hamburger_btn .header_menu_lines span:nth-of-type(3) {
    /*top:26px;*/
    top:calc(50% + 20%);
    transform:translateY(-50%);
}
#header .hamburger_btn .header_menu_lines.active span:nth-of-type(1) {
    top: 12px;
    left:10px;
    transform: translateY(6px) rotate(-45deg);
    width: 50%;
}
  
#header .hamburger_btn .header_menu_lines.active span:nth-of-type(2) {
    opacity: 0;
}
  
#header .hamburger_btn .header_menu_lines.active span:nth-of-type(3){
    top: 24px;
    left: 10px;
    transform: translateY(-6px) rotate(45deg);
    width: 50%;
}
  
#header .hamburger_btn .header_menu_lines.active span:nth-of-type(3)::after {
    /*content:"Close";MENU文言非表示*/
    transform: translateY(0) rotate(-45deg);
    top:5px;
    left:4px;
}
#header_slide_menu_area{
    display:none;/*PC非表示*/
    background-color:var(--themecolor);
    position: fixed;
    top: 0px;
    right: 0px;
    width: 50%;
    height:100%;
    padding:10px;
    transform: translateX(100%); /* ハンバーガーメニューOFF時、右側へスライドさせておく */
    z-index:100;
    transition: 0.4s;
    overflow-y:scroll;/*メニュー縦スクロール許可*/
}
#header_slide_menu_area.active{
    transform: translateX(0);
    display:block;
}
#header_slide_menu_area .header_slide_menu{
    color:white;
    padding:90px 30px;
}
#header_slide_menu_area .header_slide_menu li{
    padding-bottom:30px;
    font-family:'DM Serif Display', serif;
}
#header_slide_menu_area .header_slide_menu li .header_slide_menu_btn{
    letter-spacing:0.3rem;
}
/*******************************************************************************************
mask_area
*******************************************************************************************/
#mask_area{
    display:none;
    width:100%;
    height:100%;
    position:fixed;
    top:0;
    left:0;
    background-color:rgb(51,51,51,0.5);
    z-index:99;
}
#mask_area.active{
    display:block;
}
/*******************************************************************************************
mainvisual_slide（スライドショー用）
*******************************************************************************************/
#mainvisual_slide{
    /*position:absolute;
    top:0;
    left:0;*/
    position:relative;
    width:100%;
    margin-top:100px;
}
#mainvisual{
    position:relative;
    overflow:hidden;
    width:68%;
    height:86vh;
    max-height:86vh;
    margin-right:2.5vw;
    margin-left:auto;
}
/*メインビジュアル画像DIV*/
#mainvisual div{
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100vh;
    max-height:100vh;
    background-position: 50% 0%;/*画像のポジション調整 横% 縦%*/
    background-size: cover; /*画像のポジション調整*/
    background-repeat: no-repeat;
    z-index: 10;
    opacity: 0;
}
/*
mainvisual スライドショー アニメーション処理
*/
.anime_mainvisual div{
    animation-name: fade;
    animation-duration: 36s;
    animation-iteration-count: infinite;
}
@keyframes fade {
    0%{
        opacity: 0;
    }
    20%{
        opacity: 1;
    }
    80%{
        opacity: 0;
        transform: scale(1.2);
    }
    100%{
        opacity: 0;
        z-index: 0;
    }
}
/* 1枚目のスライド */
.anime_mainvisual div:first-of-type{
    background-image: url(../img/mainvisual1.png);
}
/* 2枚目のスライド */
.anime_mainvisual div:nth-of-type(2){
    background-image: url(../img/mainvisual2.png);
    animation-delay: 12s;/*2枚目開始秒数*/
}
/* 3枚目のスライド */
.anime_mainvisual div:last-of-type{
    background-image: url(../img/mainvisual3.png);
    animation-delay: 24s;/*3枚目開始秒数*/
}
/*******************************************************************************************
mainvisual_video（動画用）
*******************************************************************************************/
.mainvisual_video{
    width:100%;
    height:100vh;
    overflow: hidden;
    /*position:absolute;*/
    position:relative;
    top:0;
    left:0;
    right:0;
}
.mainvisual_video::after{
    content: '';
    width: 100%;
    height: 100%;
    background-color:rgb(255, 255, 255,0.3);
    display: block;
    position: absolute;
    left: 0;
    top: 0;
}
.mainvisual_video .mainvisual_video_content{
    width:100%;
    height:100vh;
    position:relative;
    overflow: hidden;
}
.mainvisual_video .mainvisual_video_content video{
    position: absolute;
    top: 50%;/*動画の左上部分を中央に移動*/
    left: 50%;/*動画の左上部分を中央に移動*/
    transform: translateX(-50%) translateY(-50%);/*動画の左上部分が中央のため、縦横それぞれ50%ずつ上、左に移動*/
    min-width: 100%;
    min-height: 100%;
}
/*******************************************************************************************
slogan
*******************************************************************************************/
#slogan_area{
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
    right:0;
}
#slogan{
    width:100%;
    height:100%;
}
#slogan_area .slogan_line1{
    position:absolute;
    top:50%;
    left: calc(4% + 30px);
    font-size:2rem;
    font-weight:normal;
    letter-spacing:0.2rem;
    color:var(--fontcolor);
    background-color:rgb(246,244,239);
    text-shadow:1px 2px 3px white;
    filter: drop-shadow(1px 1px 20px white);
    z-index:11;
}
#slogan_area .slogan_line1 br{
    display:none;
}
#slogan_area .slogan_line2{
    position:absolute;
    top:60%;
    left: calc(4% + 30px);
    font-size:1rem;
    font-family:'DM Serif Display', serif;
    font-weight:nomal;
    color:#848484;
    background-color:rgb(246,244,239);
    text-shadow:1px 2px 3px white;
    text-transform:uppercase;
    letter-spacing:0.2rem;
    filter: drop-shadow(1px 1px 20px white);
    z-index:11;
    padding-right:50px;
    position:relative;
}
#slogan_area .slogan_line2::after{
    content:"";
    width:70px;
    height:8px;
    background-color:var(--themecolor);
    position:absolute;
    bottom:-15px;
    left:0px;
}

/*******************************************************************************************
scroll
*******************************************************************************************/
#scroll_area{
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    height:100vh;
    max-height:100vh;
    width:100%;
    position:absolute;
    bottom:0;
    left:0;
    right:0;
}
#scroll_area .scroll_btn{
    display:block;
    width:50px;
    text-align:center;
    margin:0 auto;
    margin-bottom:30px;
    z-index:15;
}
#scroll_area .scroll_btn p{
    color:var(--fontcolor);
    border-bottom:1px dotted var(--fontcolor);
}
/*アニメーション（上下に動く）*/
.anime_updown{
    color:var(--themecolor);
    animation-name:UpDown;/*名称*/
    animation-duration: 1.5s;/*1回分の長さ*/
    animation-iteration-count: infinite;/*繰り返し回数*/
    animation-timing-function: ease-in-out;/*進行具合*/
    animation-direction: alternate;/*再生の向き*/
    }
    /* アニメーションの設定 */
    @keyframes UpDown{
    /* 開始地点 */
    0%{
    /* Y軸0px */
    transform: translateY(0);
    }
    /* 終了地点 */
    100%{
    /* Y軸50px */
    transform: translateY(15px);
    }
}
/*******************************************************************************************
reserved_btn_area
*******************************************************************************************/
#reserved_btn_area{
    position:absolute;
    bottom:0px;
    right:1.5rem;
    transform: translateY(50%);
    z-index:11;
}
#reserved_btn_area .reserved_btn{
    display:flex;
    justify-content:space-between;
    width:400px;
    color:white;
    background-color:var(--themecolor);
    padding:20px 30px;

}
#reserved_btn_area .reserved_btn .text_area{
    display:inline-block;

}
#reserved_btn_area .reserved_btn .text_area .text1{
    display:block;
    font-size:1.2rem;
    font-weight:bold;
    letter-spacing:0.1rem;
}
#reserved_btn_area .reserved_btn .text_area .text2{
    display:block;
    font-family:'DM Serif Display', serif;
    font-weight:400;
    letter-spacing:0.1rem;
}
#reserved_btn_area .reserved_btn .arrow_area{
    display:inline-block;
    width: 100px;
    padding:10px 30px 10px 20px;
    text-align:center;
    color:#FFF;
    margin:5px;
    cursor:pointer;
    position: relative;
    text-decoration: none;
    overflow:hidden;
}
#reserved_btn_area .reserved_btn .arrow_area::after{
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 5px);
    right: 20px;
    width: 100px;
    height: 5px;
    border: none;
    border-right: 2px solid #FFF;
    border-bottom: 1px solid #FFF;
    transform: skew(45deg);
    transition: 0.3s;
}
#reserved_btn_area .reserved_btn .arrow_area:hover::after{
    right: 10px;
    width: 120px;
}
/*******************************************************************************************
concept_area
*******************************************************************************************/
#concept{
    padding-top:200px;
    padding-bottom:100px;
}
#concept #concept_area{
    display:flex;
    justify-content:space-between;
    align-items:center;
}
#concept #concept_area .text_area{
    width:50%;
    text-align:left;
    padding:0 30px;

}
#concept #concept_area .text_area h2{
    color:var(--fontcolor);
    font-size:1.3rem;
    font-family:'DM Serif Display', serif;
    letter-spacing:0.2rem;
    margin-bottom:50px;
    position:relative;
}
#concept #concept_area .text_area h2:after{
    content:"";
    width:70px;
    height:3px;
    background-color:var(--themecolor);
    position:absolute;
    bottom:-20px;
    left:0;
}
#concept #concept_area .text_area .message p{
    color:var(--fontcolor);
    font-size:1.0rem;
    line-height:3rem;
}
#concept #concept_area .text_area .message p span{
    display:inline-block;
}
#concept #concept_area .img_area{
    width:50%;
}
#concept #concept_area .img_area .image{
    position:relative;
}
#concept #concept_area .img_area .image::after{
    content:"";
    display:block;
    width:80%;
    height:100%;
    background-color:var(--themecolor);
    position:absolute;
    bottom:-25px;
    right:0;
    margin-right:50px;
    z-index:1;
}
#concept #concept_area .img_area .image img{
    display:flex;
    width:80%;
    height:100%;
    position:relative;
    margin-left:50px;
    z-index:2;
}

/*******************************************************************************************
menu
*******************************************************************************************/
#menu{
    background-image:url(../img/menu_back.png);
    background-repeat:no-repeat;
    background-position:center center;
    background-size:cover;
    width:100%;
    padding:5rem 0;
    overflow:hidden;
}
#menu #menu_area{
    display:block;
    width:45%;
    background-color:white;
    padding:2rem 6rem;
    margin-right:5rem;
    margin-left:auto;
}
#menu #menu_area h2{
    color:var(--fontcolor);
    font-size:1.4rem;
    font-family:'DM Serif Display', serif;
    letter-spacing:0.3rem;
    margin-bottom:50px;
    position:relative;
}
#menu #menu_area h2:after{
    content:"";
    width:70px;
    height:3px;
    background-color:var(--themecolor);
    position:absolute;
    bottom:-20px;
    left:0;
}
#menu #menu_area .text1{
    color:var(--fontcolor);
    font-size:1rem;
}
#menu #menu_area .menu_btn .arrow_area{
    display:inline-block;
    width: auto;
    padding:10px 100px 25px 0px;
    margin-top:4rem;
    text-align:center;
    white-space:nowrap;
    color:var(--fontcolor);
    cursor:pointer;
    position: relative;
    text-decoration: none;
    overflow:hidden;
}
#menu #menu_area .menu_btn .arrow_area::after{
    content: "";
    display: block;
    position: absolute;
    /*top: calc(50% - 5px);*/
    bottom:0;
    /*right: 20px;*/
    left:-10px;
    width: 150px;
    height: 10px;
    border: none;
    border-right: 3px solid var(--themecolor);
    border-bottom: 3px solid var(--themecolor);
    transform: skew(45deg);
    transition: 0.3s;
}
#menu #menu_area .menu_btn .arrow_area:hover::after{
    right: 10px;
    width: 170px;
}
#menu #menu_area .menu_btn .arrow_area .text2{
    font-family:'DM Serif Display', serif;
    letter-spacing:0.1rem;
}
/*******************************************************************************************
news
*******************************************************************************************/
#news{
    padding-top:100px;
}
#news #news_top_area{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 3% 50px 3%;
}
#news #news_top_area h2{
    color:var(--fontcolor);
    font-size:1.3rem;
    font-family:'DM Serif Display', serif;
    letter-spacing:0.3rem;
    margin-bottom:30px;
    position:relative;
}
#news #news_top_area h2:after{
    content:"";
    width:70px;
    height:3px;
    background-color:var(--themecolor);
    position:absolute;
    bottom:-20px;
    left:0;
}
#news #news_top_area .news_top_right{
    display:flex;
}
#news #news_top_area .news_top_right p{
    color:var(--fontcolor);
    font-size:0.9rem;
    font-family: "游ゴシック体",
        "YuGothic", "游ゴシック Medium", "Yu Gothic Medium",
        "游ゴシック", "Yu Gothic", "Noto Sans Japanese",
        "Noto Sans CJK", "Droid Sans", "Hiragino Sans",
        "meiryo", sans-serif;
    padding-top:2px;
    padding-bottom:2px;
    padding-right:20px;
}
#news #news_top_area .news_top_right ul{
    display:flex;
    align-items:center;
}
#news #news_top_area .news_top_right ul .tab{
    color:var(--fontcolor);
    /*color:white;*/
    font-size:0.8rem;
    font-weight:bold;
    font-family: "游ゴシック体",
        "YuGothic", "游ゴシック Medium", "Yu Gothic Medium",
        "游ゴシック", "Yu Gothic", "Noto Sans Japanese",
        "Noto Sans CJK", "Droid Sans", "Hiragino Sans",
        "meiryo", sans-serif;
    border-radius:30px;
    /*background-color:#5F1606;*/
    margin-left:10px;
    padding:5px 15px;
}
#news #news_top_area .news_top_right ul .tab:hover{
    cursor:pointer;
}
#news #news_top_area .news_top_right ul .tab.active{
    color:white;
    background-color:var(--themecolor);
}
#news #news_content_area{
    text-align:center;
}
#news #news_content_area .news_content_box{
    width:85%;
    max-width:100%;
    background-color:white;
    text-align:center;
    padding:50px 75px;
    margin:0 30px 0 auto;
}
#news #news_content_area .news_panel{
    display:none;
}
#news #news_content_area .news_panel.active{
    display:block;
}
#news #news_content_area .news_panel li{
    display:flex;
    width:100%;
    align-items:center;
    justify-content:flex-start;
    margin-top:30px;
}
#news #news_content_area .news_panel li:first-child{
    margin-top:0px;
}
#news #news_content_area .news_panel li .item_meta{
    display:flex;
    width:20%;
    justify-content:space-between;
    align-items:center;
}
#news #news_content_area .news_panel li .time{
    color:var(--fontcolor);
    font-family:'DM Serif Display';
}
#news #news_content_area .news_panel li .category{
    display:inline-block;
    font-weight:600;
    font-family:'DM Serif Display';
    color:var(--fontcolor);
    width:6em;
}
#news #news_content_area .news_panel li .item_title{
    width:80%;
    font-family:'DM Serif Display';
}
#news #news_content_area .news_panel li .title{
    color:var(--fontcolor);
    display:block;
    font-weight:500;
    text-align:left;
    padding-left:30px;
    overflow:hidden;
    white-space:nowrap;
    text-overflow: ellipsis;
}
#news #news_notice{
    display:none;
}
#news #news_management{
    display:none;
}
#news #news_staffrecruit{
    display:none;
}
#news #news_content_area .news_btn .arrow_area{
    /*display:inline-block;*/
    display:block;
    width: 180px;
    padding:10px 100px 25px 0px;
    text-align:right;
    /*margin-top:1rem;*/
    margin:1rem 0 0 auto;
    white-space:nowrap;
    color:var(--fontcolor);
    cursor:pointer;
    position: relative;
    text-decoration: none;
    overflow:hidden;
}
#news #news_content_area .news_btn .arrow_area::after{
    content: "";
    display: block;
    position: absolute;
    /*top: calc(50% - 5px);*/
    bottom:0;
    /*right: 20px;*/
    right:50px;
    width: 150px;
    height: 10px;
    border: none;
    border-right: 3px solid var(--themecolor);
    border-bottom: 3px solid var(--themecolor);
    transform: skew(45deg);
    transition: 0.3s;
}
#news #news_content_area .news_btn .arrow_area:hover::after{
    right:30px;
    width: 170px;
}
#news #news_content_area .news_btn .arrow_area .text2{
    font-family:'DM Serif Display', serif;
    letter-spacing:0.1rem;
}
/*******************************************************************************************
salon
*******************************************************************************************/
#salon{
    padding-top:100px;
    padding-bottom:60px;
}
#salon #salon_title_area{
    padding:0 30px;
}
#salon #salon_title_area h2{
    color:var(--fontcolor);
    font-size:1.3rem;
    font-family:'DM Serif Display', serif;
    text-align:left;
    letter-spacing:0.3rem;
    margin-bottom:30px;
    position:relative;
}
#salon #salon_title_area h2:after{
    content:"";
    width:70px;
    height:3px;
    background-color:var(--themecolor);
    position:absolute;
    bottom:-20px;
    left:0;
}
#salon #salon_content_area{
    background-color:var(--themecolor);
    margin-top:80px;
}
#salon #salon_content_area #salon_content_first ul.salon_content_lists li.salon_content_items{
    border-bottom:1px solid rgba(255, 255, 255, 0.2);
}
#salon #salon_content_area #salon_content_first .wrapper{
    padding:0;
}
#salon #salon_content_area .salon_content_lists{
    display:flex;
    justify-content:center;
    color:white;
}
#salon #salon_content_area .salon_content_lists h3{
    font-size:1.1rem;
    /*font-family: "YuMincho", "Noto Sans Japanese", sans-serif;*/
    position:relative;
}
#salon #salon_content_area .salon_content_lists h3:after{
    content:"";
    display:block;
    width:40px;
    height:1px;
    background-color:white;
    position:absolute;
    bottom:0px;
    left:0;
}
#salon #salon_content_area .salon_content_lists .explanation{
    padding-top:30px;
}
#salon #salon_content_area .salon_content_lists .salon_content_items{
    width:50%;
    text-align:left;
    padding:30px 50px;
    border-right:1px solid rgba(255, 255, 255, 0.2);
}
#salon #salon_content_area .salon_content_lists .salon_content_items:last-child{
    border-right:none;
}
#salon #salon_content_area .salon_btn .arrow_area{
    display:inline-block;
    width: 100%;
    padding:20px 15px;
    margin-top:4rem;
    font-weight:bold;
    text-align:left;
    white-space:nowrap;
    color:white;
    border:1px solid white;
    cursor:pointer;
    position: relative;
    text-decoration: none;
    overflow:hidden;
}
#salon #salon_content_area .salon_btn .arrow_area::after{
    content: "";
    display: block;
    position: absolute;
    /*top: calc(50% - 5px);*/
    bottom:30%;
    /*right: 20px;*/
    left:10px;
    width: 150px;
    height: 10px;
    border: none;
    border-right: 2px solid white;
    border-bottom: 1px solid white;
    transform: skew(45deg);
    transition: 0.3s;
}
#salon #salon_content_area .salon_btn .arrow_area:hover::after{
    right: 10px;
    width: 170px;
}
#salon #salon_view_more{
    text-align:center;
}
#salon #salon_view_more .salon_btn .arrow_area{
    display:inline-block;
    width: 370px;
    padding:20px 30px;
    margin-top:4rem;
    font-weight:normal;
    text-align:left;
    white-space:nowrap;
    color:var(--fontcolor);
    border:2px solid var(--themecolor);
    cursor:pointer;
    position: relative;
    text-decoration: none;
    overflow:hidden;
}
#salon #salon_view_more .salon_btn .arrow_area::after{
    content: "";
    display: block;
    position: absolute;
    /*top: calc(50% - 5px);*/
    bottom:30%;
    /*right: 20px;*/
    right:40px;
    width: 150px;
    height: 10px;
    border: none;
    border-right: 3px solid var(--themecolor);
    border-bottom: 2px solid var(--themecolor);
    transform: skew(45deg);
    transition: 0.3s;
}
#salon #salon_view_more .salon_btn .arrow_area:hover::after{
    right: 30px;
    width: 160px;
}
#salon #salon_view_more .salon_btn .arrow_area .text{
    font-size:1.2rem;
    font-weight:bold;
    line-height:1.3rem;
}
#salon #salon_view_more .salon_btn .arrow_area .text span{
    font-size:0.9rem;
    font-family:'DM Serif Display', serif;
    font-weight:normal;
    letter-spacing:0.1rem;
}
/*******************************************************************************************
about
*******************************************************************************************/
#about{
    margin-bottom:100px;
}
#about #about_area{
    display:flex;
    padding:50px 0;
}
#about #about_area #about_img_area{
    display:block;
    width:50%;
}
#about #about_area #about_img_area .about_img{
    display:block;
    max-width:500px;
    height:auto;
    position:relative;
}
#about #about_area #about_img_area .about_img::before{
    content:"";
    width:100%;
    height:100%;
    background-color:var(--themecolor);
    background-repeat:no-repeat;
    background-size:cover;
    background-position:center center;
    position:absolute;
    top:2vw;
    left:2vw;
    z-index:1;
}
#about #about_area #about_img_area .about_img img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    position:relative;
    z-index:2;
}
#about #about_area #about_text_area{
    display:block;
    width:50%;
    background-color:white;
    padding:50px 70px;
    text-align:left;
}
#about #about_area #about_text_area h3{
    color: var(--fontcolor);
    font-size: 1.3rem;
    font-family: 'DM Serif Display', serif;
    text-align: left;
    letter-spacing: 0.3rem;
    margin-bottom: 30px;
    position: relative;
}
#about #about_area #about_text_area h3::after{
    content: "";
    width: 70px;
    height: 3px;
    background-color: var(--themecolor);
    position: absolute;
    bottom: -20px;
    left: 0;
}
#about #about_area #about_text_area #about_img_area_sm{
    display:none;
}
#about #about_area #about_text_area p.text{
    color:var(--fontcolor);
    font-size:1rem;
    margin-top:70px;
}
#about #about_area #about_text_area a.about_btn{
    display:block;
    margin-top:50px;
}
#about #about_area #about_text_area a.about_btn .arrow_area{
    display:block;
    width: 180px;
    padding:10px 100px 25px 0px;
    text-align:left;
    white-space:nowrap;
    color:var(--fontcolor);
    cursor:pointer;
    position: relative;
    text-decoration: none;
    overflow:hidden;
}
#about #about_area #about_text_area a.about_btn .arrow_area::after{
    content: "";
    display: block;
    position: absolute;
    bottom:0;
    right:50px;
    width: 150px;
    height: 10px;
    border: none;
    border-right: 3px solid var(--themecolor);
    border-bottom: 3px solid var(--themecolor);
    transform: skew(45deg);
    transition: 0.3s;
}
#about #about_area #about_text_area a.about_btn .arrow_area:hover::after{
    right:30px;
    width: 170px;
}
#about #about_area #about_text_area a.about_btn .arrow_area .btn{
    font-family:'DM Serif Display', serif;
    letter-spacing:0.1rem;
}
/*******************************************************************************************
footer
*******************************************************************************************/
#footer{
    text-align:center;
    background-color:var(--themecolor);
}
#footer #footer_menu .footer_logo{
    display:block;
    width:130px;
    height:auto;
    object-fit:cover;
    margin:0 auto;
    padding-top:50px;
}
#footer #footer_menu #footer_menu_area{
    margin-top:30px;
}
#footer #footer_menu #footer_menu_area #footer_menu_lists{
    display:flex;
    justify-content:center;
    color:white;
    font-size:1.5rem;
    font-family:'DM Serif Display', serif;
    letter-spacing:0.2rem;
}
#footer #footer_menu #footer_menu_area #footer_menu_lists li{
    margin-left:60px;
}
#footer #footer_menu #footer_menu_area #footer_menu_lists li:first-child{
    margin-left:0px;
}



/*******************************************************************************************
footer トップへ戻るボタン    
*******************************************************************************************/
#footer{
    position:relative;
}
#footer #return_top_btn {
    right: 1rem;
    width:3.5rem;
    height:3.5rem;
    z-index:99;/*ハンバーガーメニュー表示中は後ろに隠す*/
    scroll-behavior:smooth;
}
/*******************************************************************************************
footer ボトムナビゲーション    
*******************************************************************************************/
#bottom_navi{
    display:none;/*一時的に非表示*/
}
#footer #bottom_navi .bottom_navi_area {
    background: #997768;
    border-top: solid 1px white;
    position: fixed;
    width: 100%;
    bottom: 0px;
    z-index: 99;
    padding-top:5px;
    padding-bottom:5px;
    display: none;
}
@media screen and (max-width: 480px) {
	/* 480px以下に適用されるCSS（スマホ用） */
    #footer #bottom_navi .bottom_navi_area { 
        display: block;
    }
}
#footer #bottom_navi .bottom_navi_lists {
    display: flex;
    margin-top:5px;
    list-style: none;
    padding: 0;
}
#footer #bottom_navi .bottom_navi_lists li {
    color:white;
    width: 33%;
    text-align: center;
    font-size: 12px;
    border-right:1px solid white;
}
#footer #bottom_navi .bottom_navi_lists li:last-child{
    border-right:none;
}
#footer #bottom_navi .bottom_navi_lists span{
    display:block;
}

/*******************************************************************************************
copyright
*******************************************************************************************/
#copyright{
    text-align:center;
    color:white;
    background-color:var(--themecolor);
    margin-top:100px;
}
#copyright .webdesign_area{
    text-decoration:underline;
    padding-bottom:10px;
}
/*******************************************************************************************
menu.php > page_header_menu
*******************************************************************************************/
#page_header_menu{
    width:100%;
    max-width:100%;
    overflow:hidden;
}
#page_header_menu .page_header_menu_area{
    margin-left:100px;
    width:100%;
    height:100%;
    overflow:hidden;
    position:relative;
}
#page_header_menu .page_header_menu_area::after{
    position:absolute;
    top:0;
    left:0;
    content:"";
    width:100%;
    height:100%;
    background-color:var(--themeheadcolor);
    z-index:2;
}
#page_header_menu .page_header_menu_area img{
    width:100%;
    height:100%;
    object-fit:cover;
    vertical-align:top;/*画像の下隙間除去用*/
}
#page_header_menu .page_header_menu_area .title_area{
    position:absolute;
    top:50%;
    left:30px;
    z-index:3
}
#page_header_menu .page_header_menu_area h2{
    font-size:2rem;
    font-family:'DM Serif Display', serif;
    letter-spacing:0.3rem;
    color:white;    
    position:relative;
}
#page_header_menu .page_header_menu_area h2::after{
    content:"";
    width:100%;
    height:2px;
    background-color:white;
    position:absolute;
    bottom:0;
    left:0;
}


/*******************************************************************************************
menu.php > menu_main
*******************************************************************************************/
#menu_container #menu_main{
    padding-top:100px;
    text-align:center;
}
#menu_container #menu_main h2{
    color:var(--fontcolor);
    font-size:1.5rem;
    letter-spacing:0.1rem;
    position:relative;
}
#menu_container #menu_main h2::after{
    content:"";
    width:60px;
    height:3px;
    background-color:var(--themecolor);
    position:absolute;
    bottom:-20px;
    left:50%;
    transform:translateX(-50%);

}
#menu_container #menu_main .navi_box_area{
    margin-top:70px;
    background-color:#9B8571;
}
#menu_container #menu_main .navi_box{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    padding:50px;
}
#menu_container #menu_main .navi_box li{
    width:31.5%;
    margin-bottom:30px;
}
#menu_container #menu_main .navi_box li .btn{
    display:flex;
    justify-content:space-between;
    align-items:center;
    color:white;
    background-color:var(--themecolor);
    border-radius:15px;
    padding:10px;
}
#menu_container #menu_main .navi_box li .btn .text{
    text-align:left;
}
#menu_container #menu_main .navi_box li .btn .arrow{
    display:block;
    width:30px;
    height:30px;
    background-color:rgb(246,244,239);
    border-radius:50%;
    position:relative;
}
#menu_container #menu_main .navi_box li .btn .arrow img{
    display:block;
    width:50%;
    height:auto;
    margin:auto;
    position:absolute;
    top:50%;
    left:0;
    right:0;
    transform:translateY(-50%);
}
/*******************************************************************************************
menu.php > menu_detail
*******************************************************************************************/
#menu_container #menu_main .menu_detail{
    margin-top:100px;
}
#menu_container #menu_main .menu_detail .detail_head{
    display:flex;
    justify-content:space-between;
}
#menu_container #menu_main .menu_detail .detail_head .detail_left{
    width:40%;
    text-align:left;
}
#menu_container #menu_main .menu_detail .detail_head .detail_left .description .span1{
    display:block;
    font-size:1.3rem;
    font-weight:bold;
    margin-bottom:10px;

}
#menu_container #menu_main .menu_detail h3{
    color:white;
    font-size:1.3rem;
    text-align:left;
    background-color:var(--themecolor);
    padding:20px;
}
#menu_container #menu_main .menu_detail h4{
    color:var(--fontcolor);
    font-size:1.3rem;
    text-align:left;
    margin-top:20px;
    padding-left:30px;
    position:relative;
}
#menu_container #menu_main .menu_detail h4:after{
    content:"◉";
    width:50px;
    height:50px;
    position:absolute;
    top:0;
    left:0;
}
#menu_container #menu_main .menu_detail .detail_head .detail_left .description{
    margin-top:50px;
}
#menu_container #menu_main .menu_detail .detail_head .detail_left p{
    color:var(--fontcolor);
    font-size:1rem;
    line-height:2.2rem;
}
#menu_container #menu_main .menu_detail .detail_head .detail_right{
    width:50%;
    margin-left:100px;
}
#menu_container #menu_main .menu_detail table{
    width:100%;
    margin-top:30px;
    margin-bottom:50px;
    color:var(--fontcolor);
}
#menu_container #menu_main .menu_detail table tr{
    border-bottom:1px solid var(--themecolor);
}
#menu_container #menu_main .menu_detail table tr:first-child{
    border-top:1px solid var(--themecolor);
}
#menu_container #menu_main .menu_detail table th{
    width:30%;
    font-size:1.5rem;
    text-align:right;
    white-space: nowrap;
    border-right:1px solid var(--themecolor);
    padding:30px;
    vertical-align:middle;
}
#menu_container #menu_main .menu_detail table td{
    width:60%;
    font-size:1.3rem;
    text-align:left;
    padding:30px;
    vertical-align:middle;
}
#menu_container #menu_main .menu_detail table td .price{
    margin-top:20px;
}
#menu_container #menu_main .menu_detail table td .price:first-child{
    margin-top:0px;
}
#menu_container #menu_main .menu_detail table td .description{
    margin-top:10px;
    font-size:1.1rem;
}
#menu_container #menu_main .menu_detail table td .description .span1{
    display:block;
    font-weight:bold;
    margin-bottom:5px;
}
#menu_container #menu_main .menu_detail .notes{
    color:var(--fontcolor);
    text-align:left;
    font-size:1rem;
    margin-top:50px;
    line-height:2rem;
}
#menu_container #menu_main .menu_detail .detail_head_wide{
    display:flex;
    justify-content:space-between;
}
#menu_container #menu_main .menu_detail .detail_head_wide .detail_center{
    width:100%;
}
#menu_container #menu_main .menu_detail .detail_head_wide .detail_center .description{
    color:var(--fontcolor);
    font-size:1rem;
    line-height:2.2rem;
    margin-top:50px;
    text-align:left;
}
/*******************************************************************************************
salon.php > 
*******************************************************************************************/
#salon_container .item_top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding-top:150px;
}
#salon_container .item_top .img_area{
    width:40%;
}
#salon_container .item_top .img_area img{
    display:flex;
    width:100%;
    height:100%;
}
#salon_container .item_top .text_area{
    width:55%;
    /*margin-left:80px;*/
}
#salon_container .item_top .text_area h3{
    color:var(--fontcolor);
    font-size:1.7rem;
    font-weight:600;
    text-align:left;
    position:relative;
}
#salon_container .item_top .text_area h3::after{
    content:"";
    width:50px;
    height:2.5px;
    background-color:var(--themecolor);
    position:absolute;
    bottom:0;
    left:0;
}
#salon_container .item_top .text_area .text{
    color:var(--fontcolor);
    font-size:1rem;
    text-align:left;
    line-height:2.3rem;
    margin-top:50px;
}
#salon_container .item_bottom{
    display:flex;
    justify-content:space-between;
    padding-top:50px;
    padding-bottom:150px;
}
#salon_container .item_bottom .map_area{
    width:40%;
}
#salon_container .item_bottom .map_area iframe{
    width:100%;
    height:100%;
}
#salon_container .item_bottom .detail_area{
    width:50%;
    /*margin-left:80px;*/
}
#salon_container .item_bottom .detail_area .detail_main_area{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    color:var(--fontcolor);
    font-size:1rem;
    border:3px solid var(--themecolor);
    margin-top:50px;
    padding:30px 20px;
    position:relative;
}
#salon_container .item_bottom .detail_area .detail_main_area span{
    display:block;
    width:200px;
    padding:5px 40px;
    color:white;
    background-color:var(--themecolor);
    position:absolute;
    top:0;
    left:50%;
    transform: translate(-50%, -50%);
}
#salon_container .item_bottom .detail_area .detail_main_area p{
    font-size:1.1rem;
    text-align:left;
}
#salon_container .item_bottom .detail_area .button_area{
    display:flex;
    flex-direction:column;
    margin-top:20px;
}
#salon_container .item_bottom .detail_area .button_area .btn{
    display:flex;
    justify-content:space-between;
    align-items:center;
    text-align:left;
    color:white;
    background-color:var(--themecolor);
    padding:20px 20px 20px 50px;
    margin-top:20px;
    margin-bottom:10px;
}
#salon_container .item_bottom .detail_area .button_area .btn .arrow{
    display:block;
    width:30px;
    height:30px;
    background-color:rgb(246,244,239);
    border-radius:50%;
    position:relative;
}

#salon_container .item_bottom .detail_area .button_area .btn .arrow img{
    display:block;
    width:50%;
    height:auto;
    margin:auto;
    position:absolute;
    top:50%;
    left:0;
    right:0;
    transform:translateY(-50%);
}
#salon_container .item_box:nth-child(2){
    background-color:rgba(95, 22, 6, 0.08);
}
#salon_container .item_box:nth-child(4){
    background-color:rgba(95, 22, 6, 0.08);
}
/*******************************************************************************************
about.php
*******************************************************************************************/
#about_container{
    padding-top:100px;
    padding-bottom:100px;
}
#about_container #message{
    padding-top:100px;
    padding-bottom:100px;
    margin-bottom:150px;
}
#about_container #message h2{
    display:block;
    color:var(--fontcolor);
    font-size:1.7rem;
    font-family:'DM Serif Display', serif;
    position:relative;
}
#about_container #message h2::after{
    content:"";
    display:block;
    width:60px;
    height:2px;
    background-color:var(--themecolor);
    position:absolute;
    bottom:0;
    left:50%;
    transform:translateX(-50%);
}
#about_container #message .message_area{
    display:flex;
    padding-top:50px;
}
#about_container #message .message_area .left_area{
    width:40%;
}
#about_container #message .message_area .left_area .img_area{
    display:block;
    width:100%;
    height:100%;
    /*overflow:hidden;*/
    position:relative;
}
#about_container #message .message_area .left_area .img_area::after{
    content:"";
    width:100%;
    height:100%;
    background-color:#9b8571;
    position:absolute;
    bottom:-50px;
    left:50px;
    z-index:1;
}
#about_container #message .message_area .left_area .img_area img{
    width:100%;
    height:100%;
    object-fit:cover;
    position:relative;
    z-index:2;
}
#about_container #message .message_area .right_area{
    width:60%;
    color:var(--fontcolor);
    font-size:1rem;
    text-align:left;
    line-height:2rem;
    margin-left:100px;
    padding:0 40px 0 10px;
}
#about_container #message .message_area .right_area span{
    display:block;
    font-size:1.3rem;
    font-weight:bold;
    margin-bottom:10px;
}

#about_container dl{
    display:flex;
    align-items:center;
    flex-wrap:nowrap;
    flex-direction:column;
}
#about_container dl .item{
    width:100%;
    display:flex;
    align-items:stretch;/*初期値*/
}
#about_container dl .item dt{
    display:flex;
    align-items:center;
    justify-content:center;
    width:30%;
    font-size:1.1rem;
    text-wrap:nowrap;
    padding:30px;
    color:var(--fontcolor);
    border-bottom:2px solid var(--themecolor);
}
#about_container dl .item:first-child dt{
    border-top:2px solid var(--themecolor);
}
#about_container dl .item dd{
    width:70%;
    font-size:1.1rem;
    text-align:left;
    color:var(--fontcolor);
    border-bottom:2px solid #C6C6C6;
    padding:30px;
}
#about_container dl .item:first-child dd{
    border-top:2px solid #C6C6C6;
}
#about_container dl .item dd .span1{
    display:inline-block;
    width:100px;
}
#about_container .about_comment{
    font-size:1.5rem;
    margin-top:70px;
    color:var(--fontcolor);
}
/*******************************************************************************************
news.php
*******************************************************************************************/
#news_container{
    padding-top:100px;
}
#news_container .news_category{
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:1.1rem;
}
#news_container .news_category .title{
    padding-right:30px;
}
#news_container .news_category ul{
    display:flex;
    align-items:center;
    border-left:1px solid #C6C6C6;;
}
#news_container .news_category ul li{
    font-size:1.0rem;
    font-weight:bold;
    padding:10px 20px;
}
#news_container .news_lists{
    padding:50px 100px;
}
#news_container .news_lists .news_item{
    display:flex;
    justify-content:center;
    border-bottom:1px solid #707070;
    padding:30px 10px;
}
#news_container .news_lists .news_item .meta{
    display:flex;
    justify-content:space-between;
    width:20%;
    color:#333333;
    font-size:1.0rem;
    font-weight:bold;
}
#news_container .news_lists .news_item .title{
    width:80%;
    color:#333333;
    font-size:1.0rem;
    text-align:left;
    padding-left:100px;
}
/*******************************************************************************************
contact.php
*******************************************************************************************/
#contact_container{
    padding-top:100px;
    padding-bottom:100px;
}
#contact_container #contact_main{
    text-align:center;
}
#contact_container #contact_main p.explanation{
    font-size:1.2rem;
    color:var(--fontcolor);
}
#contact_container #contact_main form{
    margin:50px 20% 0 20%;
}
#contact_container #contact_main form .input_item{
    display:flex;
    text-align:left;
    margin-bottom:20px;
    border-radius:5px;
    overflow:hidden;
}
#contact_container #contact_main form .input_item label{
    display:inline-block;
    width:30%;
    font-size:0.9rem;
    font-weight:bold;
    color:var(--fontcolor);
    white-space:nowrap;
    padding:3px 10px;
    margin-bottom:5px;
    /*background-color:var(--themeheadcolor);*/
    vertical-align:top;
}
#contact_container #contact_main form .input_item label span.required{
    display:inline-block;
    width:auto;
    color:#d7003a;
    background-color:rgb(238,187,185);
    border-radius:5px;
    padding:0 5px;
    margin-left:10px;
}
#contact_container #contact_main form .input_item .sex_list{
    display:inline-block;
    width:70%;
    background-color:white;
    border:1px solid var(--themecolor);
    border-radius:5px;
}
#contact_container #contact_main form .input_item .sex_list .sex_item{
    display:flex;
    align-items:center;
    margin:10px;
}
#contact_container #contact_main form .input_item .sex_list .sex_item p.text{
    color:var(--fontcolor);
    font-weight:bold;
    white-space:nowrap;
    margin-left:10px;
}
#contact_container #contact_main form .input_item input{
    display:inline-block;
    width:70%;
    background-color:white;
    border:1px solid var(--themecolor);
    border-radius:5px;
    padding:3px 10px;
}
#contact_container #contact_main form .input_item input::placeholder{
    color:rgb(0,0,0,0.5);
}
#contact_container #contact_main form .input_item .sex_list .sex_item input{
    display:inline-block;
    width:auto;
    background-color:white;
    border:1px solid var(--themecolor);
    padding:3px 10px;
    appearance: revert;/*ラジオボタンのチェックボタン表示に必要*/
    vertical-align:middle;
    margin-left:10%;
}
#contact_container #contact_main form .input_item select{
    display:inline-block;
    width:70%;
    background-color:white;
    border:1px solid var(--themecolor);
    border-radius:5px;
    padding:3px 10px;
}
#contact_container #contact_main form .input_item select option{
    color:var(--fontcolor);
    font-weight:bold;
}
#contact_container #contact_main form .input_item textarea{
    display:inline-block;
    width:70%;
    background-color:white;
    border:1px solid var(--themecolor);
    border-radius:5px;
    padding:3px 10px;
}
#contact_container #contact_main form .input_item textarea::placeholder{
    color:rgb(0,0,0,0.5);
}
#contact_container #contact_main form button.submit{
    color:white;
    font-weight:bold;
    background-color: var(--themecolor);
    border-radius:5px;
    margin-top:50px;
    padding:10px 30px;
    cursor:pointer;
}
/*******************************************************************************************
cofirm.php
*******************************************************************************************/
#cofirm_container{
    padding-top:100px;
    padding-bottom:100px;
}
#cofirm_container #cofirm_main{
    text-align:center;
    margin:0 10%;
}
#cofirm_container #cofirm_main p.comment{
    color:var(--fontcolor);
    font-size:1rem;
}
#cofirm_container #cofirm_main table{
    display:block;
    width:100%;
    margin-top:50px;
    margin-bottom:50px;
    background-color:white;
    border-radius:10px;
}
#cofirm_container #cofirm_main table tbody tr{
    display:flex;
    width:100%;
}
#cofirm_container #cofirm_main table tbody{
    display:block;
    width:100%;
}
#cofirm_container #cofirm_main table tbody tr th{
    display:inline-block;
    width:30%;
    font-size:0.9rem;
    font-weight:bold;
    color:var(--fontcolor);
    text-align:left;
    padding:10px 10px;
}
#cofirm_container #cofirm_main table tbody tr td{
    display:inline-block;
    width:70%;
    font-size:0.9rem;
    color:var(--fontcolor);
    text-align:left;
    padding:10px 10px;
}
#cofirm_container #cofirm_main form input.submit_btn{
    color:white;
    font-weight:bold;
    background-color: var(--themecolor);
    border-radius:5px;
    margin-top:50px;
    padding:10px 30px;
    cursor:pointer;
}
#cofirm_container #cofirm_main form button.return_btn{
    color:var(--fontcolor);
    font-weight:bold;
    background-color:white;
    border:1px solid var(--themecolor);
    border-radius:5px;
    margin-top:50px;
    padding:10px 30px;
    cursor:pointer;
}
/*******************************************************************************************
send.php
*******************************************************************************************/
#send_container{
    padding-top:100px;
    padding-bottom:100px;
}
#send_container #send_main p.text_area{
    color:var(--fontcolor);
    font-size:1rem;
}
#send_container #send_main a.return_btn{
    display:inline-block;
    color:var(--fontcolor);
    font-weight:bold;
    background-color:white;
    border:1px solid var(--themecolor);
    border-radius:5px;
    margin-top:50px;
    padding:10px 30px;
    cursor:pointer;
}
/*******************************************************************************************
アニメーション（共通）
*******************************************************************************************/
/*
アニメーション（スクロール時、右下にフェードイン）
フェードイン前の初期ポジションを指定用？
*/
.anime_slideBottom {
    opacity: 0;
    transform: translateY(20px);
    transition-property:all;
    transition-duration:0.5s;
    transition-delay:0s;
    transition-timing-function:ease-in-out;
}
/*******************************************************************************************
Media Queries
*******************************************************************************************/
@media only screen and (min-width: 1930px) {

}
/* Smaller than standard 1200 */
@media only screen and (max-width: 1199px) {

}
/* Smaller than standard 980 */
@media only screen and (max-width: 991px) {

}
@media only screen and (max-width: 1024px) {

}
@media only screen and (max-width: 780px) {

}
/* Tablet Landscape */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) {

}

@media only screen and (max-width: 1399px) {

}

/* All Mobile Sizes */
@media only screen and (max-width: 767px) {

}
@media only screen and (max-width: 600px) {

}

/* Mobile Portrait Size */
/*@media only screen and (max-width: 479px) {*/
@media only screen and (max-width: 768px) {
    .wrapper {
        width:100%;
        max-width:100%;
        /*margin: 0 20px;*/
        padding:0 20px;

    }
    /*PC用の文章改行を解除*/
    br.br_pc{
        display:none;
    }
    br.br_sm{
        display:block;
    }
    /*
    header
    */
    #header {
        height:10vh;
        max-height:10vh;
        background-color:rgb(246,244,239,1);
    }
    #header_menu{
        height:10vh;
        max-height:10vh;
    }
    #header_menu h1{
        /*width:auto;*/
        width:10vh;
        height:10vh;
        line-height:10vh;
        max-height:10vh;
        margin-right:10px;
    }
    #header_menu .title_area{
        margin-right:10px;
    }
    #header_menu .title_area .sub{
        font-size:0.7rem;
    }
    #header_menu .title_area .title{
        font-size:0.85rem;
    }
    #header_menu #nav_menu{
        display:none;
    }
    #header_menu_area #header_menu_right{
        display:none;
    }
    #header .hamburger_btn{
        display:block;
    }
    #header_slide_menu_area{
        display:block;
    }
    #header_menu #nav #nav_contact_area{
        margin-right:10px;
    }
    #header_menu #nav #nav_contact_area a.btn{
        padding:5px 10px;
    }
    #header_menu #nav #nav_contact_area a.btn .img_area{
        display:block;
        width:100%;
        height:20px;
        overflow:hidden;
    }
    /*
    main
    */
    #main{
        margin-top:0vh;
    }
    /*
    mainvisual
    */
    #mainvisual_slide{
        margin-top:9.5vh;
    }
    #mainvisual{
        width:100%;
        height:calc(100vh - 9.5vh);
        max-height:calc(100vh - 9.5vh);
    }
    /*メインビジュアル画像DIV*/
    #mainvisual div{
        height: calc(100vh - 9.5vh);
        max-height:calc(100vh - 9.5vh);
        background-position: 50% 100%;/*画像のポジション調整 横% 縦%*/
        background-size: cover; /*画像のポジション調整*/
    }
    /*メインビジュアル1枚目*/
    .anime_mainvisual div:first-of-type{
        background-image: url(../img/mainvisual1_phone.png);
        background-position:0%  0%;
    }
    /*メインビジュアル2枚目*/
    .anime_mainvisual div:nth-of-type(2){
        background-image: url(../img/mainvisual2_phone.png);
        background-position:0px 0px;
        animation-delay: 12s;
    }
    /*メインビジュアル3枚目*/
    .anime_mainvisual div:last-of-type{
        background-image: url(../img/mainvisual3_phone.png);
        background-position:0px 0px;
        animation-delay: 24s;
    }
    /*
    slogan
    */
    #slogan_area .slogan_line1{
        top:47%;
        left: calc(2% + 25px);
        font-size:1.2rem;
        letter-spacing:0.02rem;
        padding:3px 1px;
    }
    #slogan_area .slogan_line1 br{
        display:block;
    }
    #slogan_area .slogan_line2{
        left: calc(2% + 25px);
        font-size:0.7rem;
        font-weight:normal;
        padding:3px 3px;
        letter-spacing:0.15rem;

    }
    #slogan_area .slogan_line2::after{
        width:50px;
        height:7px;
        bottom:-15px;
        left:0px;
    }
    /*
    scroll
    */
    #scroll_area{
        margin-top:9.5vh;
        height:calc(100vh - 9.5vh);
        max-height:calc(100vh - 9.5vh);
    }
    #scroll_area .scroll_btn{
        margin-bottom:0px;
    }
    /*
    reserved_btn_area
    */
    #reserved_btn_area{
        position:absolute;
        bottom:0px;
        left:0;
        right:0;
        transform: translateY(100%);
    }
    #reserved_btn_area .reserved_btn{
        width:100%;
    }
    #reserved_btn_area .reserved_btn .text_area .text1{
        font-size:1.0rem;
        letter-spacing:0rem;
    }
    #reserved_btn_area .reserved_btn .text_area .text2{
        font-size:0.7rem;
        letter-spacing:0.1rem;
    }
    /*
    concept
    */
    #concept{
        padding-top:150px;
        padding-bottom:60px;
    }
    #concept #concept_area{
        display:flex;
        flex-direction:column;
        align-items:normal;
    }
    #concept #concept_area .text_area{
        display:contents;
    }
    #concept #concept_area .text_area h2{
        order:1;
        font-size:1.4rem;
        margin-bottom:40px;
    }
    #concept #concept_area .text_area h2:after{
        width:40px;
        height:2px;
        bottom:-10px;
    }
    #concept #concept_area .text_area p{
        font-size:0.7rem;
        line-height:1.5rem;
    }
    #concept #concept_area .text_area .message{
        order:3;
        margin-top:50px;
    }
    #concept #concept_area .text_area .message p{
        font-size:0.8rem;
        line-height:2.0rem;
    }
    #concept #concept_area .text_area .message p span{
        display:inline;
    }
    #concept #concept_area .img_area{
        display:contents;
    }
    #concept #concept_area .img_area .image::after{
        width:95%;
        height:100%;
        top:20px;
        left:20px;
        margin-right:0px;
    }
    #concept #concept_area .img_area .image{
        order:2;
        position:relative;
    }
    #concept #concept_area .img_area .image img{
        width:95%;
        margin-left:0;
    }
    /*
    menu
    */
    #menu{
        padding:30px 30px;
    }
    #menu #menu_area{
        width:100%;
        padding:2.5rem 2.0rem;
        text-align:center;
        margin:0 auto;
    }
    #menu #menu_area h2{
        font-size:1.4rem;
        letter-spacing:0.2rem;
        margin-bottom:50px;
        text-align:center;
    }
    #menu #menu_area h2:after{
        width:40px;
        height:1.5px;
        bottom:-10px;
        left:50%;
        transform: translateX(-50%);
    }
    #menu #menu_area .text1{
        text-align:center;
        font-size:0.75rem;
    }
    #menu #menu_area .menu_btn .arrow_area{
        /*width:100%;*/
        width:auto;
        padding:0 0 10px 0;
        margin-top:2rem;
        margin-left:50px;
    }
    #menu #menu_area .menu_btn .arrow_area::after{
        width: 100px;
        left:-10px;
        bottom:0px;
        border-right: 2px solid var(--themecolor);
        border-bottom: 2px solid var(--themecolor);
    }
    #menu #menu_area .menu_btn .arrow_area:hover::after{
        right: 10px;
        width: 120px;
    }
    #menu #menu_area .menu_btn .arrow_area .text2{
        font-size:0.7rem;
        padding:0 50px 0 0;
        letter-spacing:0.15rem;
    }
    /*
    news
    */
    #news{
        padding-top:90px;
    }
    #news .wrapper:first-child {
        width:100%;
        max-width:100%;
    }
    #news .wrapper:last-child {
        width:100%;
        max-width:100%;
        padding:0;
    }
    #news #news_top_area h2:after{
        width:40px;
        height:2px;
        bottom:-10px;
    }
    #news #news_top_area{
        flex-direction:column;
        align-items: flex-start;
        padding:0 0 30px 0;
    }
    #news #news_top_area .news_top_right{
        width:100%;
        margin-top:30px;
    }
    #news #news_top_area .news_top_right p{
        display:none;
    }
    #news #news_top_area .news_top_right ul {
        width:100%;
        justify-content:space-between;
    }
    #news #news_top_area .news_top_right ul .tab{
        font-size:0.75rem;
        font-weight:normal;
        margin-left:0;
        padding:5px 5px;
    }
    #news #news_content_area .news_content_box{
        width:100%;
        max-width:100%;
        text-align:center;
        padding:40px 20px;
        margin:0;
    }
    #news #news_content_area .news_panel li{
        flex-direction:column;
        padding:30px 0;
        border-bottom: 2px solid var(--themecolor);
    }
    #news #news_content_area .news_panel li .item_meta{
        width:100%;
    }
    #news #news_content_area .news_panel li .item_meta .time{
        font-weight:bold;
    }
    #news #news_content_area .news_panel li .item_meta .category{
        font-weight:bold;
    }
    #news #news_content_area .news_panel li .item_title{
        width:100%;
        margin-top:20px;
    }
    #news #news_content_area .news_panel li .title{
        font-size:0.8rem;
        font-weight:bold;
        padding-left:0px;
    }
    #news #news_content_area .news_btn .arrow_area{
        width: 95px;
        padding:10px 40px 10px 0px;
        margin:30px auto;
    }
    #news #news_content_area .news_btn .arrow_area::after{
        bottom:0;
        /*right:50px;*/
        left:-10px;
        width: 85px;
        height: 10px;
        border-right: 2px solid var(--themecolor);
        border-bottom: 2px solid var(--themecolor);
    }
    #news #news_content_area .news_btn .arrow_area:hover::after{
        left:-10px;
        width: 100px;
    }
    #news #news_content_area .news_btn .arrow_area .text2{
        font-size:0.7rem;
    }
    /*
    salon
    */
    #salon #salon_title_area{
        padding:0;
    }
    #salon #salon_title_area h2:after{
        width:40px;
    }
    #salon #salon_content_area .salon_content_lists{
        flex-direction:column;
    }
    #salon #salon_content_area .salon_content_lists h3{
        font-size:1.3rem;
    }
    #salon #salon_content_area .salon_content_lists .salon_content_items{
        width:100%;
        padding: 50px 30px;
        border-right:none;
        border-bottom:1px solid var(--themecolor);
    }
    #salon #salon_view_more{
        margin:30px;
    }
    #salon #salon_view_more .salon_btn .arrow_area{
        display:inline-block;
        width: 100%;
        padding:20px 30px;
        margin-top:0;
        font-weight:normal;
        text-align:left;
        white-space:nowrap;
        color:var(--fontcolor);
        border:2px solid var(--themecolor);
        cursor:pointer;
        position: relative;
        text-decoration: none;
        overflow:hidden;
    }
    #salon #salon_view_more .salon_btn .arrow_area .text{
        font-size:0.8rem;
        font-weight:bold;
    }
    #salon #salon_view_more .salon_btn .arrow_area .text span{
        font-size:0.7rem;
    }
    /*
    about
    */
    #about{
        background-color:white;
        margin-bottom:100px;
    }
    #about #about_area{
        display:flex;
        flex-direction:column-reverse;
        padding:0;
    }
    #about #about_area #about_img_area{
        display:none;
        width:100%;
        margin-top:50px;
        order:2;
    }
    #about #about_area #about_text_area{
        width:100%;
        padding:30px 0;
    }
    #about #about_area #about_text_area p.text{
        font-size:0.9rem;

    }
    #about #about_area #about_text_area #about_img_area_sm{
        display:block;
        margin-top:100px;
    }


    /*
    footer
    */
    #footer_menu_area{
        display:none;
    }
    /*
    copyright
    */
    #copyright{
        margin-top:0;
    }
    #copyright .copyright_area{
        font-size:0.7rem;
    }
    #copyright .webdesign_area{
        font-size:0.7rem;
    }
    /*
    menu.php > page_header_menu
    */
    #page_header_menu{
        margin-top:10vh;
        height:110px;
    }
    #page_header_menu .page_header_menu_area{
        margin-left:0;
        height:100%;
    }
    #page_header_menu .page_header_menu_area .title_area{
        position:absolute;
        top:50%;
        left:50%;
        transform:translate(-50%, -50%);
    }
    #page_header_menu .page_header_menu_area h2{
        font-size:1.3rem;
        letter-spacing:0.1rem;
    }
    #page_header_menu .page_header_menu_area h2::after{
        bottom:-5px;
        height:1.5px;
    }
    /*
    menu.php > message
    */
    #menu_container #message{
        padding-top:70px;
        padding-bottom:30px;
    }
    #menu_container #message h2{
        font-size:1.6rem;
        letter-spacing:0.2rem;
    }
    #menu_container #message h2::after{
        width:40px;
        height:1.5px;
        position:absolute;
        bottom:-10px;
    }
    #menu_container #message .message_area{
        flex-direction:column;
    }
    #menu_container #message .message_area .left_area{
        width:90%;
    }
    #menu_container #message .message_area .left_area .img_area::after{
        position:absolute;
        bottom:-20px;
        left:20px;
    }
    #menu_container #message .message_area .right_area{
        width:100%;
        font-size:0.8rem;
        line-height:2rem;
        margin-left:0;
        margin-top:50px;
        padding:0;
    }
    /*
    menu.php > menu_main
    */
    #menu_container #menu_main{
        padding-top:0px;
    }
    #menu_container #menu_main h2{
        font-size:1.5rem;
        letter-spacing:0.2rem;
    }
    #menu_container #menu_main h2::after{
        width:40px;
        height:2px;
        position:absolute;
        bottom:-10px;    
    }
    #menu_container #menu_main .navi_box_area{
        margin-top:50px;
    }
    #menu_container #menu_main .navi_box{
        flex-direction:column;
        padding:0px;
    }
    #menu_container #menu_main .navi_box li{
        width:100%;
        margin-bottom:30px;
    }
    #menu_container #menu_main .navi_box li:first-child{
        margin-top:30px;
    }
    /*
    menu.php > menu_detail
    */
    #menu_container #menu_main .menu_detail .detail_head{
        flex-direction:column;
    }
    #menu_container #menu_main .menu_detail .detail_head .detail_left{
        display:contents;
        width:100%;
    }
    #menu_container #menu_main .menu_detail h3{
        font-size:0.9rem;
        padding:15px;
        order:1;
    }
    #menu_container #menu_main .menu_detail .detail_head .detail_left .description{
        margin-top:20px;
        order:3;
    }
    #menu_container #menu_main .menu_detail .detail_head .detail_left .description p{
        font-size:0.8rem;
        line-height:2.2rem;
    }
    #menu_container #menu_main .menu_detail .detail_head .detail_right{
        width:100%;
        margin-top:20px;
        margin-left:0;
        order:2;
    }
    #menu_container #menu_main .menu_detail table th{
        width:20%;
        font-size:1.0rem;
        text-align:right;
        padding:20px 10px 20px 0px;
    }
    #menu_container #menu_main .menu_detail table th span{
        display:block;
        text-align:right;
        font-size:0.8rem;
    }
    #menu_container #menu_main .menu_detail table td{
        width:80%;
        font-size:1.0rem;
        text-align:left;
        padding:20px 10px 20px 10px;
        vertical-align:middle;
    }
    #menu_container #menu_main .menu_detail table td .description{
        margin-top:10px;
        font-size:0.8rem;
    }
    #menu_container #menu_main .menu_detail .notes{
        font-size:0.8rem;
    }
    #menu_container #menu_main .menu_detail .detail_head_wide .detail_center .description{
        font-size:0.8rem;
        margin-top:30px;
    }
    #menu_container #menu_main .menu_detail .table_wide tr{
        display:flex;
        flex-direction:column;
    }
    #menu_container #menu_main .menu_detail .table_wide th{
        width:100%;
        border-right:none;
        font-size:0.8rem;
        text-align:left;
        padding:20px 10px 0px 10px;
    }
    #menu_container #menu_main .menu_detail .table_wide th br{
        display:none;/*改行brを解除*/
    }
    #menu_container #menu_main .menu_detail .table_wide td{
        width:100%;
    }
    #menu_container #menu_main .menu_detail .table_wide td .description{
        font-size:0.7rem;
    }
    #menu_container #menu_main .menu_detail .table_normal_wide th{
        font-size:0.8rem;
        text-align:right;
    }
    #menu_container #menu_main .menu_detail .table_normal_wide th span{
        display:block;
        text-align:right;
    }
    #menu_container #menu_main .menu_detail .table_normal_wide td .description{
        font-size:0.7rem;
    }
    #menu_container #menu_main .menu_detail h4{
        font-size:0.9rem;
    }
    #menu_container #menu_main .menu_detail h4::after{
        height:auto;
    }
    /*
    salon.php
    */
    #salon_container .item_box .item_top{
        flex-direction:column;
        padding-top:90px;
    }
    #salon_container .item_box .item_top .img_area{
        width:100%;
        height:200px;
        order:1;
    }
    #salon_container .item_box .item_top .img_area img{
        width:100%;
        height:100%;
        object-fit:cover;
    }
    #salon_container .item_box .item_top .text_area{
        width:100%;
        margin-top:50px;
        order:2;
    }
    #salon_container .item_box .item_top .text_area h3{
        font-size:1.3rem;
    }
    #salon_container .item_box .item_top .text_area h3:after{
        width:40px;
        bottom:-10px;
    }
    #salon_container .item_box .item_top .text_area .text p{
        font-size:0.9rem;
    }
    #salon_container .item_box .item_bottom{
        flex-direction:column;
        padding-bottom:80px;
    }
    #salon_container .item_box .item_bottom .map_area{
        width:100%;
        order:1;
    }
    #salon_container .item_box .item_bottom .detail_area{
        width:100%;
        order:2;
    }
    #salon_container .item_bottom .detail_area .detail_main_area{
        font-size:0.8rem;
    }
    #salon_container .item_bottom .detail_area .detail_main_area span{
        width:150px;
    }
    #salon_container .item_bottom .detail_area .detail_main_area p{
        font-size:0.9rem;
    }
    #salon_container .item_bottom .detail_area .button_area .btn{
        padding:20px 20px 20px 20px;
        margin-top:20px;
        margin-bottom:10px;
    }
    #salon_container .item_bottom .detail_area .button_area .btn .text{
        font-size:0.8rem;
    }
    /*
    about.php
    */
    #about_container #message{
        padding-top:50px;
        padding-bottom:100px;
        margin-bottom:0;
    }
    #about_container #message .message_area{
        flex-direction:column;
    }
    #about_container #message .message_area .left_area{
        width:100%;
        margin-bottom:50px;
    }
    #about_container #message .message_area .left_area .img_area::after{
        content:"";
        width:100%;
        height:100%;
        background-color:#9b8571;
        position:absolute;
        bottom:-10px;
        left:10px;
        z-index:1;
    }
    #about_container #message .message_area .right_area{
        width:100%;
        color:var(--fontcolor);
        font-size:0.9rem;
        text-align:left;
        line-height:2rem;
        margin-left:0;
        padding:0;
    }
    #about_container dl .item dt{
        font-size:0.8rem;
        padding:10px;
    }
    #about_container dl .item dd{
        font-size:0.8rem;
        padding:15px 0 15px 15px;
    }
    #about_container dl .item dd .span1{
        display:block;
        width:100%;
        padding-top:7px;
    }
    #about_container .about_comment{
        font-size:0.8rem;
        margin-top:50px;
        color:var(--fontcolor);
    }
    #about_container .about_comment span{
        display:block;
        padding-bottom:5px; 
    }
    /*
    contact
    */
    #contact_container #contact_main p.explanation{
        text-align:left;
        font-size:1rem;
    }
    #contact_container #contact_main form{
        margin:50px 0 0 0;
    }
    #contact_container #contact_main form .input_item{
        flex-direction:column;
    }
    #contact_container #contact_main form .input_item label{
        font-size:0.9rem;
        width:100%;
    }
    #contact_container #contact_main form .input_item input{
        width:100%;
    }
    #contact_container #contact_main form .input_item select{
        width:100%;
    }
    #contact_container #contact_main form .input_item textarea{
        width:100%;
    }
    #contact_container #contact_main form .input_item .sex_list{
        width:100%;
    }
    /*
    cofirm
    */
    #cofirm_container #cofirm_main{
        margin:0;
    }
    #cofirm_container #cofirm_main table tbody tr{
        flex-direction:column;
    }
    #cofirm_container #cofirm_main table tbody tr th{
        width:100%;
        font-size:0.9rem;
        color:rgb(246, 244, 239);
        background-color:#845e56;
    }
    #cofirm_container #cofirm_main table tbody tr td{
        width:100%;
    }
}
@media only screen and (max-width: 320px) {

}
/* Center menu vertically */
@media screen and (min-width: 1025px) {
	
}