@charset "UTF-8";




@media screen and (max-width: 1366px) and (min-width:1200px){
    /*PC小*/
}/*PC小*/
@media screen and (max-width: 1199px) and (min-width:1024px){
    /*タブレット大*/

}/*タブレット大*/

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

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

@font-face{ 
    font-family: 'myWebFont'; /* お好きな名前にしましょう */
    src: url('../font/NotoSansCJKjp-hinted/NotoSansCJKjp-Medium.otf') 
}
@font-face{ 
    font-family: 'myWebFont02'; /* お好きな名前にしましょう */
    src: url('../font/07LogoTypeGothic7.ttf') 
}

.myWebFontClass {
    font-family: 'myWebFont';
}




body {
    text-align: left;
    color: #333333;
    line-height: 2.6;
    background: #fff;
    font-family: "游ゴシック", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;

    font-family: YuGothic, "游ゴシック", Osaka, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro",  "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Arial, Helvetica, Verdana, sans-serif;
    
    font-weight: normal;
    font-size: 1.8rem;
}

/* common
---------------------------------------------------------- */
a {
    color: #333;
}
a:link,
a:visited {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
    transition: .5s;
}
a.line:link,
a.line:visited {
    text-decoration: underline;
}
a.line:hover {
    text-decoration: none;
}
body {
    position: relative;
    -webkit-text-size-adjust: 100%;
}
button {
    cursor: pointer;
}
strong span {
    font-weight: bold;
}
p {
    margin-bottom: 25px;
}

.sp_none {
    display: block;
}
.pc_none {
    display: none;
}
table {
    width: 100%;
}
table td,table th {
    border-bottom: solid 1px #eee;
    padding: 2rem;
}
table th {
    width: 30%;
}
.clearfix::after {
    content: "";
    display: block;
    clear: both;
}
/*--------------------
見出し
--------------------*/



/*--------------------
form
--------------------*/
/* 共通 */
input[type="submit"],
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
input,
select,
textarea {
    font-family: YuGothic, Osaka, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Arial, Helvetica, Verdana, sans-serif;
    font-size: 1.2rem;
}
input[type="file"] {
    font-size: .875rem;
}


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

/* layout
---------------------------------------------------------- */


/* header
---------------------------------------------------------- */

header{
    background-color: #000;
    padding-top: 30px;
}

header .header_logo{
    width: 130px;
    margin: 0 auto;
    margin-bottom: 20px;
    transition-duration:.3s;
}
header .header_logo:hover{
    transform: scale(1.1);

}


.header_nav ul{
    display: flex;
    justify-content: center;
    padding-bottom: 20px;
}
.header_nav ul li{
    margin-right: 50px;
}
.header_nav ul li:last-child{
    margin-right: 0;
}
.header_nav ul li a{
    color: #fff;
    font-weight: bold;
    position: relative;
    display: inline-block;
}

.header_nav ul li a::after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    content: '';
    width: 50%;
    height: 2px;
    background: #fff;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform .3s;
}
.header_nav ul li a:hover::after {
    transform: scale(1, 1);
}

header .visible-phone:hover{
    transform: scale(1.1);
}

/*ドロワー*/
#searchMenu{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    width: 300px;
    height: 100%;
    max-height: 100%;
    position: fixed;
    top: 0;
    right: 0;/*左ならleft*/
    /*box-shadow: 0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);*/
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-right: 1px solid #E0E0E0;
    background: #fff;/*色変更*/
    background-image: url(../img/002paper.png);
    -webkit-transform: translateX(310px);/*左なら-*//*左なら-*/
    transform: translateX(310px);/*左なら-*/
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    will-change: transform;
    -webkit-transition-duration: .2s;
    transition-duration: .2s;
    -webkit-transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    color: #424242;
    overflow: visible;
    overflow-y: auto;
    z-index: 999;
    margin: 0;
}
/*#searchMenu{display: none;}*/
#searchMenu.is-visible{
    -webkit-transform: translateX(0);
    transform: translateX(0);
}
#searchMenu.is-visible~.mdl-layout__obfuscator {
    background-color: rgba(0,0,0,.5);
    visibility: visible;
    height: 100%;
}
#searchMenuBtn{
    cursor: pointer;
    position: fixed;
    top: 0;
    right: 0;
    width: 110px;
    transition-duration:.3s;
    cursor: pointer;
    z-index: 999;
}
#searchMenuBtn:hover{
    transform: scale(1.1);
}

.mdl-layout__obfuscator {
    background-color: rgba(0, 0, 0, 0);
    position: fixed;
    top: 0;
    left: 0;
    height: auto;
    width: 100%;
    z-index: 998;
    visibility: hidden;
    -webkit-transition-property: background-color;
    transition-property: background-color;
    -webkit-transition-duration: .2s;
    transition-duration: .2s;
    -webkit-transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    overflow-y: hidden;
}
#searchMenu ul {
    padding: 0;
    /* margin-bottom: 6%; */
    
    
    
}

#searchMenu > ul {
    padding: 20px 0 10px;
    border-bottom:  dotted 1px #333;
}

#searchMenu ul li a {
    margin: 0 1rem;
    /*border-bottom:  dotted 1px #fff;*/
}
#searchMenu ul li.close01 {
    width: 15%;
    padding: 8% 0 8% 0;
    margin: 0 40%;
    border: none;
}
#searchMenu ul li a {
    color: #333;
    font-weight: bold;
    display: block;
    box-sizing: border-box;
    padding: 1rem 1rem;
    text-decoration: none;
    font-size: 2rem;

}
#searchMenu ul li.nav_tit1 {
    font-weight: bold;
    color: #fff;
    border-bottom:  solid 1px #fff;
    margin: 1rem 4%;
    padding: 4%;
}
#searchMenu h2 {
    padding: 1rem 0.5rem;
    color: #fff;
    font-size: 0.95em;
    /*border-bottom: dotted 1px #fff;*/
}
#searchMenu ul ul  {
    margin: 0 1rem;
    /*border-bottom:  dotted 1px #fff;*/
}
#searchMenu ul ul li a {
    border-bottom: none;
    /*background: url(../img/ic_arrow03.svg) 95% center no-repeat;*/
    background-size: 11rem;
    padding: 1rem 0 0 0;
}
.close01{
    width: 50px;
    margin: 0 auto;
    margin-top: 50px;
}








/* main
---------------------------------------------------------- */

/*スライダー*/
.slick-prev{
    left:60px!important;
    z-index: 999;
}
.slick-next{
    right:60px!important;
    z-index: 999;
}
.slick-prev:before{
    font-size: 55px!important;
    z-index: 99;
}
.slick-next:before{
    font-size: 55px!important;
    z-index: 99;
}
.slick-dots {

}
.slick-dots li button:before {
    font-size: 15px;
    
}

#top .main_v{
    position: relative;
    background-color: #000;
}


#top .main_v .catch01{
    position: absolute;
    /* top と left に 50% を指定して、要素の左上を中央にする. */
    top: 50%;
    left: 50%;
    /* tarnslate で要素の縦横それぞれ50%分の長さを動かすことで、要素を中央にする. */
    transform: translate(-50%, -50%);
    width: 900px;
    z-index: 99;
}




@media screen and (max-width: 1366px){
    /*PC小*/
    #top .main_v .catch01{
        
        width: 700px;
    }  

    
    
}/*PC小*/
@media screen and (max-width: 1199px) and (min-width:1024px){
    /*タブレット大*/

}/*タブレット大*/

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

/*--------------------------------------------------*/
/*--------------------
.sec1
--------------------*/
#top .sec01{
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #000;
}
.midashi01{
    text-align: center;
    color: #fff;
    font-size: 5rem;
    font-family: "Yu Mincho", "YuMincho", serif;
}


.midashi01 span{
    font-size: 4.5rem;
}

.midashi01_sub01{
    color: #fff;
    text-align: center;
    font-size: 2rem;
}


#top .sec01 h2{
    margin-bottom: 50px;
}


#top .sec01 .f_box01{
    width: 1366px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#top .sec01 .f_box01 .box01{
    width: 48%;
    margin-bottom: 30px;
}
#top .sec01 .f_box01 .box01 p{
    color: #fff;
    text-align: center;
    font-weight: 500;
    font-size: 2rem;
}

@media screen and (max-width: 1366px){
    /*PC小*/
    #top .sec01 h2{

        font-size: 5rem;
        margin-bottom: 50px;

    }
    #top .sec01 h2 span{
        font-size: 4rem;
    }

    #top .sec01 .f_box01{
        width: 1200px;
        
    }


}/*PC小*/
@media screen and (max-width: 1199px){
    /*タブレット大*/
    #top .sec01 h2{
        width: 700px;
        margin: 0 auto;
        margin-bottom: 50px;
    }

    #top .sec01 .f_box01{
        width: 1000px;

    }
    #top .sec01 .f_box01 .box01 p{
        font-size: 2.5rem;
    }
}/*タブレット大*/

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

/*--------------------------------------------------*/
/*--------------------
.sec2
--------------------*/
#top .sec02{
    background-image: url(../img/sec02_bg01.jpg);
    padding-top: 50px;
    padding-bottom: 50px;
}
#top .sec02 h2{
    margin-bottom: -40px;
}
#top .sec02 p{
    margin-bottom: 40px;
}
#top .sec02 .box01{
    width: 1366px;
    margin: 0 auto;
    margin-bottom: 50px;
}

@media screen and (max-width: 1366px){
    /*PC小*/
    #top .sec02 .box01{
        width: 1200px;

    }
    #top .sec02 h2{
        width: 1100px;
    }
    #top .sec02 p{
        width: 980px;
    }


}/*PC小*/
@media screen and (max-width: 1199px){
    /*タブレット大*/
    #top .sec02 .box01{
        width: 1000px;

    }
    #top .sec02 h2{
        width: 1000px;
    }
    #top .sec02 p{
        width: 900px;
    }

}/*タブレット大*/

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

/*--------------------------------------------------*/
/*--------------------
.sec3
--------------------*/
#top .sec03{
    padding-top: 30px;
    padding-bottom: 50px;
    background-color: #fff;
    background-image: url(../img/002paper.png);
    
}
#top .sec03 h2{
    margin-bottom: -40px;
    color: #333;
}
#top .sec03 .midashi01_sub01{
    margin-bottom: 0;
    color: #333;
    font-weight: 500;
    text-align: center;
}
#top .sec03 .midashi01_sub02{
    margin-bottom: 50px;
    color: #333;
    font-weight: 500;
    text-align: center;
}
#top .sec03 .midashi02{
    background-color: #b0272d;
    color: #fff;
    font-size: 2vw;
    text-align: center;
    width: 65vw;
    margin: 0 auto;
    margin-bottom: 50px;
    font-weight: bold;
    box-shadow: 0 1px 4px 0 rgb(0 0 0 / 20%);
}

#top .sec03 .f_box01{
    width: 65vw;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 2vw;
}
#top .sec03 .tyusyaku01{
    width: 65vw;
    display: block;
    margin: 0 auto;
    text-align: right;
    font-size: 1vw;
    margin-top: -3vw;
    margin-bottom: 2vw;
}
#top .sec03 .f_box01 .box01{
    width: 48%;

    position: relative;
    margin-bottom: 50px;
    background-color: #fff;
    border-radius: 30px;
    box-shadow: 0 1px 4px 0 rgb(0 0 0 / 20%);

}
#top .sec03 .f_box01 .box01 .inner01{
    width: 90%;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding: 1rem 0;
}


#top .sec03 .f_box01 .box01 h4{
    text-align: left;
    font-weight: bold;
    font-size: 1.5vw;
    color: #333;
}
#top .sec03 .f_box01 .box01 p{
    text-align: right;
    font-weight: bold;
    font-size: 1.5vw;
    color: #333;
    margin-bottom: 0;
}





@media screen and (max-width: 1366px){
    /*PC小*/
    #top .sec03 .f_box01{
         
    }



}/*PC小*/
@media screen and (max-width: 1199px){
    /*タブレット大*/
    #top .sec03 .f_box01{
         
    }


}/*タブレット大*/

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


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

/*--------------------
.blank
--------------------*/

#top .blank{
    width: 100%;
    height: 300px;
    background-image: url(../img/blank.jpg?01);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

@media screen and (max-width: 1366px){
    /*PC小*/



}/*PC小*/
@media screen and (max-width: 1199px){
    /*タブレット大*/

}/*タブレット大*/

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

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

/*--------------------
.sec04
--------------------*/
#top .sec04{
    padding-top: 30px;
    padding-bottom: 150px;
    background-color: #000;
}
#top .sec04 h2{
    

}
#top .sec04 p{
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    line-height: 2;
    margin-bottom: 75px;
    color: #fff;
}
#top .sec04 p span{
    font-size: 3rem;
    font-weight: bold;
    background:linear-gradient(transparent 60%, #91272d 60%);
}


@media screen and (max-width: 1366px){
    /*PC小*/

    


}/*PC小*/
@media screen and (max-width: 1199px){
    /*タブレット大*/

}/*タブレット大*/

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

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

/*--------------------
.sec05
--------------------*/

#top .sec05{
    padding-bottom: 100px;
    background-color: #000;

}
#top .sec05 .outer{
    background-color: #333;
    width: 1366px;
    margin: 0 auto;
    padding-top: 30px;
    padding-bottom: 100px;

}
#top .sec05 h2{
    width: 300px;
    margin: 0 auto;
}
#top .sec05 .f_box01{
    display: flex;
    width: 1366px;
    justify-content: space-between;
    margin: 0 auto;
}

#top .sec05 .f_box01 .box01,.sec05 .f_box01 .box02{
    width: 50%;
    text-align: center;
}

#top .sec05 .f_box01 .box02{
    border-left: 1px solid #fff;
}
#top .sec05 .f_box01 .box01 img{
    display: block;
    width: auto;
    height: 100px;
    margin: 0 auto;
    margin-bottom: 25px;
}
#top .sec05 .f_box01 .box02 img{
    display: block;
    width: auto;
    height: 70px;
    margin: 0 auto;
    margin-bottom: 50px;
}

#top .sec05 .f_box01 .box02 a{
    border: 1px solid #fff;
    font-size: 3rem;
    font-weight: bold;
    padding: 10px;
    width: 385px;
    display: block;
    margin: 0 auto;
    color: #fff;
}

#top .sec05 .f_box01 .box02 a:hover{
    border: 1px solid #333;
    background-color: #333;
    color: #fff;
}

#top .sec05 .f_box01 .box01 a,
.sec05 .f_box01 .box01 p,
.sec05 .f_box01 .box02 p{
    text-align: center;
    font-size: 4rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0;
}

@media screen and (max-width: 1366px){
    /*PC小*/
    #top .sec05 .outer{
        width: 1200px;
    }
    
    #top .sec05 .f_box01{
        width: 1200px;
    }


}/*PC小*/
@media screen and (max-width: 1199px){
    /*タブレット大*/
    #top .sec05 .outer{
        width: 1000px;
    }
    #top .sec05 .f_box01{
        width: 1000px;
    }

}/*タブレット大*/

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

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

/*--------------------
.sec06
--------------------*/

#top .sec06{
    padding-bottom: 100px;
    background-color: #000;

}
#top .sec06 h2{
    width: 250px;
    margin: 0 auto;
    margin-bottom: 50px;
}

#top .sec06 .f_box01{
    display: flex;
    width: 1366px;
    justify-content: space-between;
    margin: 0 auto;
    margin-bottom: 50px;
}
#top .sec06 .f_box01 .box01{
    width: 50%;
}
#top .sec06 .f_box01 .box01 table{
    color: #fff;
    margin-left: 50px;
}
#top .sec06 .f_box01 .box01 table tr{
    border-bottom: 1px solid #fff;
}
#top .sec06 .f_box01 .box01 table tr:last-child{
    border-bottom: 0px solid #fff;
}

#top .sec06 .f_box01 .box01 table td, .sec06 .f_box01 .box01 table th{
    border: 0px solid #fff;
    padding: 15px 0;
}
#top .sec06 .f_box01 .box01 table th{
    width: 15%;
    
}
#top .sec06 .map{
    width: 1366px;
    margin: 0 auto;

}
@media screen and (max-width: 1366px){
    /*PC小*/
    #top .sec06 .f_box01{
        width: 1200px;
    }
    #top .sec06 .map{
        width: 1200px;
    }
    #top .sec06 .f_box01 .box01 table th {
        width: 20%;
    }


}/*PC小*/
@media screen and (max-width: 1199px){
    /*タブレット大*/
    #top .sec06 .f_box01{
        width: 1000px;
    }
    #top .sec06 .map{
        width: 1000px;

    }
}/*タブレット大*/

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

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

/*--------------------
footer
--------------------*/





footer{
    background-color: #333;
}
footer p{
    color: #fff;
    text-align: center;
    margin: 0;
    font-size: 2rem;
}

/* メニューページ
---------------------------------------------------------- */
#menu .main_v{
    /*width: 100%;
    height: 500px;
    background-image: url(../img/page02_main_v01.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    margin-bottom: 50px;*/
}

#menu .main_v h2{
    width: 100%;
}
#menu #contents{
    padding-bottom: 50px;
    background-color: #000;
}

#menu #contents .tyuuigaki{
    width: 1020px;
    margin: 0 auto;
    text-align: right;
    color: #fff;
    font-size: 1.5rem;

}
#menu #contents .sec01{
    width: 1020px;
    margin: 0 auto;
    margin-bottom: 100px;

}
#menu #contents .sec01>p{
    text-align: right;
    margin-bottom: 30px;
    font-size: 1.5rem;
    color: #fff;

}
#menu #contents h3{
    width: 100%;
    margin-bottom: 50px;
}
#menu #contents p{
    margin: 0;
}
#menu #contents .f_box01{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;

    
}

#menu #contents .f_box01 .f_box02{
    width: 48%;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #fff;
    color: #fff;
    margin-bottom: 30px;
}
#menu #contents .f_box01 .f_box02_01{
    width: 48%;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #fff;
    color: #fff;
    margin-bottom: 30px;
    align-items:flex-end;
}

#menu #contents .f_box01 .kara{
    width: 48%;
    padding: 10px 0;
    display: block;
    color: #fff;
    margin-bottom: 30px;
}
#menu #contents .f_box01 .f_box02 p{
    font-size: 1.5rem;
    font-weight: bold;
    text-align: right;
}

#menu #contents .f_box01 .f_box02_01 p{
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.5;
}
#menu #contents .f_box01 .f_box02_01 .box_left p{
    font-size: 1.5rem;
    font-weight: bold;
}






#menu #contents .f_box01 .f_box03{
    width: 100%;
    padding: 30px 1rem;
    display: flex;
    justify-content: space-between;
    
}

.border-top{
    border-top: 1px dotted #333;
    margin-top: 30px;
}
.border-bottom{
    border-bottom: 1px dotted #333;
    margin-bottom: 30px;
}
.margin_b_20{
    margin-bottom: 20px!important;
}
.margin_b_0{
    margin-bottom: 0px!important;
}


#menu #contents .f_box01 .f_box03 p{
    font-size: 1.5rem;
    font-weight: bold;
}
#menu #contents .f_box01 .f_box03 .box01{
    font-size: 1.5rem;
    font-weight: bold;
    width: 50%;
    display: flex;
    justify-content: space-between;
}
#menu #contents .f_box01 .f_box03 .box01 p{
    width: 45%;
    padding: 10px 1rem;
    background-color: #fff;
    -webkit-box-shadow: 0 1px 4px 0 rgb(0 0 0 / 20%);
    box-shadow: 0 1px 4px 0 rgb(0 0 0 / 20%);
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}
#menu #contents .f_box01 .f_box03 .box01 p span{
    font-size: 1.5rem;
    font-weight: bold;
}
#menu #contents .f_box01 .f_box03_01{
    width: 100%;
    padding: 30px 1rem;
    display: flex;
    justify-content: space-between;

}
#menu #contents .f_box01 .f_box03_01 p{
    font-size: 1.5rem;
    font-weight: bold;
}
#menu #contents .f_box01 .f_box03_01 span{
    font-size: 1.5rem;
    font-weight: bold;
}
#menu #contents .f_box01 .f_box03_01 .box01{
    font-size: 1.5rem;
    font-weight: bold;
    width: 70%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
#menu #contents .f_box01 .f_box03_01 .box01 p{
    width: 30%;
    padding: 10px 1rem;
    background-color: #fff;
    -webkit-box-shadow: 0 1px 4px 0 rgb(0 0 0 / 20%);
    box-shadow: 0 1px 4px 0 rgb(0 0 0 / 20%);
    border-radius: 10px;

    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}
#menu #contents .f_box_topping01{
    border: 1px solid #ac272d;
    margin-bottom: 30px;
}
#menu #contents .f_box_topping01 h4{
    color: #fff;
    background-color: #ac272d;
    width: 100%;
    line-height: 1.5;
    padding: 10px 0;
    text-align: center;
    color: #fff;
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 30px;
}
#menu #contents .f_box_topping02{
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
#menu #contents .f_box_topping02 .f_box_topping03{
    width: 48%;
    padding: 10px 0;
    border-bottom: 1px solid #fff;
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}
#menu #contents .f_box_topping02 .f_box_topping03 p{
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}

#menu #contents .f_box_aji01{
    border: 1px solid #ac272d;
    margin-bottom: 30px;
}

#menu #contents .f_box_aji01 h4{
    color: #fff;
    background-color: #ac272d;
    width: 100%;
    line-height: 1.5;
    padding: 10px 0;
    text-align: center;
    color: #fff;
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 30px;
}
#menu #contents .f_box_aji02{
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
#menu #contents .f_box_aji02 .f_box_aji03{
    width: 22%;
    padding: 10px 1rem;
    color: #fff;
    background-color: #ac272d;
    margin-bottom: 30px;
}
#menu #contents .f_box_aji02 .f_box_aji03 p{
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
}













/* お問い合わせ
---------------------------------------------------------- */

#contact .main_v{
    /*width: 100%;
    padding: 150px 0;
    background-image: url(../img/page03_main_v01.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 50px;*/
}

#contact .main_v h2{
    width: 100%;
    margin-bottom: 50px;
}
form{
    width: 1020px;
    margin: 0 auto;
}


form dl{
    margin-bottom: 20px;
}
form#mailformpro dl dt{
    width: 20%;
    font-size: 2.5rem;
}
form#mailformpro dl dd{
    width: 80%;

}
.mfp_element_submit{
    width: 100%;
    background-color: #333;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 50px;
    transition: .3s;
    border: 3px solid #333;
}
.mfp_element_submit:hover{
    color: #333;
    border: 3px solid #333;
    background-color: transparent;
}
input, select, textarea{
    font-size: 2.5rem!important;
}










/*サンクスページ*/
#thanks{
    display: flex; 
    flex-flow: column; 
    min-height: 100vh; 
    position: relative;
}

#thanks h2{
    padding-top: 50px;
    text-align: center;
    font-size: 4rem;
    margin-bottom: 50px;
    font-weight: bold;
}

#thanks .contact{
    padding-bottom: 100px;
}
#thanks .sub_contents p{
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;

}
#thanks .sub_contents a{
    font-weight: bold;
}
#thanks footer{
    position: absolute;
    bottom: 0;
    width: 100%;
}








/*pagetop*/
#pagetop {
    position: fixed;
    right: 1rem;
    bottom: 0rem;
    transition: .5s;
    width: 80px;
    z-index: 10;
}