@charset "UTF-8";
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    font-style: normal;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
    line-break: strict;
    word-break: break-word;
    word-wrap: break-word;
    overflow-wrap: break-word;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
*,
*:focus,
a:focus {
    outline: none;
}
body{
    font-family: "Noto Sans JP", sans-serif;
    width: 100%;
    font-size: 18px;
    line-height: 1.6!important;
    margin: auto;
    overflow-x: hidden;
}
img{
    display: block;
    width: 100%;
}
h2, h3{
    margin: 0;
}
p, a{
    font-size: 18px;
    padding: 0;
    margin: 0;
}

/* font */
.mincho {
  font-family: "Zen Old Mincho", serif;
}
.mincho-e {
  font-family: "Libertinus Serif Display", system-ui;
}

/* 共通 */
.single-post{
    max-width: 1000px;
    margin: auto;
    overflow-x: hidden;
    padding-top: 90px!important;
}
.wrap{
    max-width: 750px;
    margin: auto;
}
.tx-red{
    color: #bb171e;
}

/* header */
.header{
    position: fixed;
    max-width: 1000px;
    width: 100%;
    height: auto!important;
    background-color: #bb171e;
	top: 0;
	left: 50%;
    transform: translate(-50%, 0);
	z-index: 9999;
}
.header-info-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
}
.header .logo{
    max-width: 180px;
}

/* menuボタン */
.menu-button {
    padding: 10px;
}
.menu-button, .menu-button span {
    display:block;
    transition:all .5s;
    -webkit-transition:all .5s;
    box-sizing:border-box;
}
.menu-button .h_menu {
    position:relative;
    width:35px;
    height:25px;
    margin:0 auto;
}
.menu-button span {
    position:absolute;
    left:0; width:100%;
    height:2px;
    background-color:#f6b256;
}

.menu-button span:nth-of-type(1) { top:0; }
.menu-button span:nth-of-type(2) { top:11px; }
.menu-button span:nth-of-type(3) { bottom:1px; }

.menu-button.active span:nth-of-type(1) {
  -webkit-transform:translateY(11px) rotate(-45deg);
  transform:translateY(11px) rotate(-45deg);
}
.menu-button.active span:nth-of-type(2) {
  opacity:0;
}
.menu-button.active span:nth-of-type(3) {
  -webkit-transform:translateY(-11px) rotate(45deg);
  transform:translateY(-11px) rotate(45deg);
}
.h-label{
    font-size: 14px;
    font-weight: bold;
    color: #f6b256;
    padding-bottom: 3px;
}

/* gnav */
.gnav{
    display: none;
}
.gnav.active{
    display: block;
}
.gnav img{
    display: block;
    padding: 15px;
    margin: auto;
}
.gnav-list{
    padding: 0;
    margin: 20px;
}
.gnav-list li{
    list-style: none;
    border-bottom: 2px solid #fff;
}
.gnav-list li a{
    position: relative;
    display: block;
    text-decoration: none;
    font-weight: bold;
    color: #fff;
    padding: 15px 30px;
}
.gnav-list li a::after{
    position: absolute;
    font-family: "Font Awesome 5 Free";
    content: '\f105';
    font-weight: bold;
    right: 30px;
    top: 30%;
    color: #fff;
}

/* contact */
.contact-block{
    max-width: 750px;
    padding-top: 50px;
    margin: auto;
}
.contact-block h2{
    font-size: 50px;
    text-align: center;
}
/* form */
.yoyaku-block{
    background-color: #f5f5f5;
    padding: 20px;
}
.hidden-fields-container{
    display: none;
}
.yoyaku-block p.title{
    font-weight: bold;
    margin-bottom: 5px;
}
.yoyaku-block p.title .hissu{
    background-color: #bb171e;
    color: #fff;
    font-size: 12px;
    margin-left: 5px;
    padding: 2px 5px;
}
.yoyaku-block p.title .contact-tokuten{
    background-color: #555;
    color: #fff;
    font-size: 12px;
    padding: 2px 5px;
    margin-left: 5px;
}
.form-item{
    padding-bottom: 15px;
}
.policy{
    display: block;
    color: #000;
    text-align: center;
    text-decoration: underline;
    margin: 20px 0;
}
input[type=text],
input[type="email"],
input[type="tel"]{
    width: 100%;
    border: 1px solid #ddd;
    padding: 11px;
}
.contact-block input[type=submit]{
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    background-color: #f6b256;
    color: #000;
    border: none;
    border-radius: 5px;
    padding: 15px;
    margin-top: 15px;
}

/* thanks */
.thanks-block{
    max-width: 750px;
    padding: 50px 0;
    margin: auto;
}
.thanks-block h2{
    text-align: center;
    font-size: 35px;
}
.thanks-block p{
    font-size: 15px;
}

/* footer */
.footer{
    max-width: 1000px;
    background-color: #262626!important;
    color: #fff;
    padding: 10px 15px!important;
    margin: 0 auto;
}
.footer-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-link{
    display: flex;
    gap: 5px;
}
.footer-link a{
    color: #fff;
}

/*750px以下*/
@media screen and (max-width:750px){
    body, p, a{
        font-size: 15px;
    }
    /* 共通 */
    .wrap{
        padding: 0 15px;
    }
    /* header */
    .header .logo{
        max-width: 160px;
    }

    /* contact */
    .contact-block{
        padding: 30px 15px 0;
    }
    .contact-block h2{
        font-size: 35px;
    }
    input[type=submit]{
        font-size: 15px;
    }
    .policy{
        margin: 10px 0;
    }
    
    /* thanks */
    .thanks-block{
        padding: 30px 15px;
    }
    .thanks-block h2{
        font-size: 25px;
    }
    /* footer */
    .footer img{
        width: 150px;
    }
}

/*480px以下*/
@media screen and (max-width:480px){
    body, p, a{
        font-size: 14px;
    }
    .wrap{
        padding: 0 10px;
    }
    .single-post{
        padding-top: 60px!important;
    }
    /* header */
    .header-info{
        height: 60px;
    }
    .header-info-inner{
        padding: 7px 15px;
    }
    .header .logo{
        max-width: 120px;
    }
    .menu-button{
        padding: 0;
    }
    .h-label{
        font-size: 12px;
    }
    .gnav-list{
        margin: 0 15px 15px 15px;
    }
    /* contact */
    .yoyaku-block p.title .contact-tokuten{
        font-size: 10px;
    }
    .contact-block input[type=submit]{
        font-size: 15px;
    }
    /* thanks */
    .thanks-block h2{
        font-size: 18px;
    }
    .thanks-block p{
        font-size: 14px;
    }
    /* footer */
    .footer img{
        width: 120px;
    }
    .footer-link a,
    .copyright{
        font-size: 12px;
    }
}