@charset "utf-8";
body{
    font-family: "游ゴシック", YuGothic,"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS P Gothic", sans-serif;
    -webkit-text-size-adjust: 100%; 
    font-weight: 500;
    color: #1C1C1C;
}
a{
    color:inherit;
}

#wrapper{
    min-height: 100vh;
    box-sizing: border-box;
    padding-top: 60px;
    padding-bottom: 100px;
    position: relative;
}

#totop{
    width: 40px;
    height: 40px;
    text-indent: -9999px;
    background-color: #1A5BC8;
    border-radius: 100%;
    position: fixed;
    right: 15px;
    bottom: 10px;
    cursor: pointer;
    display: none;
}
#totop:after{
    content: "";
    width: 13px;
    height: 13px;
    border-top: 5px solid #fff;
    border-right: 5px solid #fff;
    transform: rotate(-45deg);
    position: absolute;
    left: 11px;
    top: 14px;
    display: block;
    transition: top 0.1s ease-out;
}
#totop:hover:after{
    top: 11px;
}
/* HEADER */
#g_header{
    height: 60px;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    z-index: 100;
}
#g_header > div{
    max-width: 800px;
    margin: 0 auto;
    padding: 15px 50px 15px 15px;
    position: relative;
    box-sizing: border-box;
}
#g_header > div h1,
#g_header > div h2{
    padding: 5px 0;
}
#g_header h1 img,
#g_header h2 img{
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}
#g_header nav{
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    display: none;
}
#g_header .open + nav{
    display: block;
    opacity: 0;
    animation: sp_nav 0.3s ease-out forwards;
}
@keyframes sp_nav{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

#g_header nav a{
    font-size: 16px;
    text-decoration: none;
}
#g_header nav .nav_wrap{
    padding: 0 15px;
    overflow: hidden;
}
#g_header nav .nav_wrap > ul{
    padding-left: 10px;
    padding-bottom: 15px;
}
#g_header nav .nav_wrap > ul + ul{
    border-top: 1px solid #5D5D5D;
}
#g_header nav .nav_wrap > ul > li{
    margin-top: 15px;
    padding-left: 28px;
    background: url(../img/el_list.png) no-repeat left 1px;
    background-size: 15px;
}
#g_header nav .nav_wrap > ul > li > ul > li{
    margin-top: 15px;
    padding-left: 17px;
    line-height: 20px;
    position: relative;
}
#g_header nav .nav_wrap > ul > li > ul > li:before{
    content: "";
    width: 4px;
    height: 20px;
    border-left: 1px solid #5D5D5D;
    border-right: 1px solid #5D5D5D;
    position: absolute;
    left: 0;
    top: 0;
}
#g_header nav .nav_wrap > ul > li > ul > li > ul > li{
    margin-right: 15px;
    margin-top: 12px;
    display: inline-block;
}


#nav_btn{
    width: 30px;
    height: 20px;
    position: absolute;
    top: 20px;
    right: 15px;
    cursor: pointer;
}
#nav_btn span{
    width: 100%;
    height: 1px;
    background-color: #1C1C1C;
    display: block;
    position: absolute;
    right: 0;
    transition: width 0.3s ease-out;
}
#nav_btn span._1{
    top: 0;
    transition-delay: 0s;
}
#nav_btn span._2{
    top: 10px;
    transition-delay: 0.1s;
}
#nav_btn span._3{
    top: 20px;
    transition-delay: 0.2s;
}
#nav_btn.open span{
    width: 15px;
}
#nav_btn.open span._1{
    transition-delay: 0.2s;
}
#nav_btn.open span._3{
    transition-delay: 0s;
}
@media (min-width:820px){
    #wrapper{
        padding-top: 70px;
    }
    #nav_btn{
        display: none;
    }
    #g_header{
        height: 70px;
        position: absolute;
    }
    #g_header > div{
        padding: 24px 0 13px;
    }
    #g_header > div h1,
    #g_header > div h2{
        padding: 0;
    }
    #g_header nav{
        font-size: 14px;
        position: absolute;
        top: 0;
        left: 310px;
        display: block !important;
    }
    #g_header nav a{
        font-size: 14px;
        position: relative;
        z-index: 10;
    }
    #g_header nav .nav_wrap{
        padding: 0;
        overflow: visible;
        display: flex;
        justify-content: space-between;
    }
    #g_header nav .nav_wrap > ul{
        padding: 30px 0 0;
        display: flex;
        justify-content: space-between;
    }
    #g_header nav .nav_wrap > ul._1{
        width: 450px;
    }
    #g_header nav .nav_wrap > ul._1 > li > a,
    #g_header nav .nav_wrap > ul._1 > li > span{
        font-weight: bold;
        height: 14px;
        display: inline-block;
        cursor: pointer;
    }
    #g_header nav .nav_wrap > ul + ul{
        margin-left: 22px;
        border: none;
    }
    #g_header nav .nav_wrap > ul > li{
        background: transparent;
        padding: 0;
        margin: 0;
        position: relative;
    }
    #g_header nav .nav_wrap > ul._1 li:hover > a:before,
    #g_header nav .nav_wrap > ul._1 > li.current > a:before,
    #g_header nav .nav_wrap > ul._1 li:hover > span:before,
    #g_header nav .nav_wrap > ul._1 > li.current > span:before{
        content: "";
        height: 1px;
        border-top: 1px solid #1A5BC8;
        border-bottom: 1px solid #1A5BC8;
        position: absolute;
        bottom: -5px;
        left: 0;
        right: 0;
    }
    #g_header nav .nav_wrap > ul > li > ul{
        width: 260px;
        padding: 15px;
        background-color: #fff;
        position: absolute;
        left: -75px;
        top: 14px;
        box-sizing: border-box;
        display: none;
    }
    #g_header nav .nav_wrap > ul > li:hover > ul{
        display: block;
    }
    #g_header nav .nav_wrap > ul > li.tw a{
        width: 17px;
        height: 14px;
        text-indent: -9999px;
        background: url(../img/nav_tw.png) no-repeat center center;
        background-size: contain;
        display: block;
    }
}

/* FOOTER */
#g_footer{
    padding: 20px 0 30px;
    background-color: #1A5BC8;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
#g_footer .rights{
    color: #fff;
    font-size: 10px;
    text-align: center
}

/* contents */
.contents{
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.contents h1{
    margin-left: 15px;
    margin-bottom: 10px;
    padding-left: 5px;
    font-size: 14px;
    line-height: 1.3;
    border-left: 8px solid #1A5BC8;
}

.anchor{
    width: 290px;
    height: 40px;
    margin: 10px auto 0;
    color: #7b6546;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    line-height: 40px;
    background-color: #f7ce59;
    display: block;
}
.main_visual{
    padding: 0 15px;
    margin-bottom: 20px;
    text-align: center;
}
.main_visual img{
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}


@media (min-width:820px){
    .contents h1{
        font-size: 18px;
        margin-left: 0;
    }
}

/* slide */
.slide_banner a:after{
    content: "";
}
.slide_banner{
    padding: 0 30px;
    margin: 0 auto;
    position: relative;
}
.slide_banner > div{
    width: 100%;
    overflow: hidden;
}
.slide_banner ul{
    overflow: hidden;
}
.slide_banner li{
    width: 230px;
    height: 100px;
    margin-right: 12px;
    float: left;
}
.slide_banner li > a,
.slide_banner li > span{
    width: inherit;
    height: inherit;
    display: block;
    font-size: 0;
    text-align: center;
    vertical-align: middle;
    position: relative;
}
.slide_banner li > a:before,
.slide_banner li > span:before{
    content: "";
    height: 100%;
    display: inline-block;
    vertical-align: middle;
}
.slide_banner li > a img,
.slide_banner li > span img{
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    vertical-align: middle;
}
.slide_banner .slide_control .prev,
.slide_banner .slide_control .next{
    position: absolute;
    top: 0;
    bottom: 0;
    width: 30px;
    background-size: 18px auto;
    background-repeat: no-repeat;
    background-position: center center;
    cursor: pointer;
}
.slide_banner.no_control .slide_control{
    display: none;
}
.slide_banner .slide_control .prev.deactivate,
.slide_banner .slide_control .next.deactivate{
    opacity: 0.3;
    cursor: default;
}
.slide_banner .slide_control .prev{
    left: -10px;
    background-image: url(../img/arr_l.png);
}
.slide_banner .slide_control .next{
    right: -10px;
    background-image: url(../img/arr_r.png);
}

.slide_banner li > a:after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255, 0.15);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.slide_banner li > a:hover:after{
    opacity: 1;
}
@media (min-width:820px){
    .slide_banner li{
        width: 176px;
        height: 77px;
    }
}

/* home */
.footer_banner ul{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.banner_1{
    margin-bottom: 20px;
}
.banner_2{
    margin-top: 20px;
    margin-bottom: 20px;
}
.footer_banner li{
    width: 290px;
    margin: 15px 7px 0;
}
.footer_banner li img{
    width: 100%;
    height: auto;
}
.footer_banner li a{
    display: block;
    position: relative;
}
.footer_banner li > a:after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255, 0.15);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.footer_banner li > a:hover:after{
    opacity: 1;
}


@media (min-width:820px){
    .footer_banner li{
        width: 230px;
    }
}

/* schedule */
.news.schedule .news_list li time {
    padding-left: 0;
}


/* news */
.news.schedule + .news{
    margin-top: 40px;
}
.news .news_list{
    border-top: 1px solid #CECECE;
}
.news .news_list li{
    padding: 10px 15px;
    border-bottom: 1px solid #CECECE;
}
.news .news_list li.new_post time:after{
    margin-left: 5px;
    content: "NEW";
    color: #ff8e8e;
    display: inline-block;
}
.news .news_list li .cat{
    min-width: 46px;
    height: 13px;
    color: #fff;
    font-size: 10px;
    line-height: 13px;
    text-align: center;
    border-radius: 3px;
    display: inline-block;
}
.news .news_list li .cat._1{
    background-color: #B1DE9F;
}
.news .news_list li .cat._2{
    background-color: #9FC7DE;
}
.news .news_list li .cat._3{
    background-color: #DECB9F;
}
.news .news_list li .cat._4{
    background-color: #DE9FC1;
}
.news .news_list li time{
    padding-left: 10px;
    color: #CECECE;
    font-size: 10px;
    line-height: 13px;
}
.news .news_list li p{
    font-size: 14px;
    line-height: 1.6;
}


/* book */
.books_list{
    border-top: 2px solid #CECECE;
}
.books_list li{
    padding: 15px;
    border-bottom: 1px solid #CECECE;
    box-sizing: border-box;
}
.books_list li > div{
    padding-bottom: 55px;
    position: relative;
    overflow: hidden;
}
.books_list li .to_store{
    width: 290px;
    height: 40px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    line-height: 40px;
    background-color: #CECECE;
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -145px;
}
.books_list li a .to_store{
    color: #7b6546;
    background-color: #f7ce59;
}
.books_list li .left{
    width: 100px;
    float: left;
}
.books_list li .left a{
    text-decoration: none;
}
.books_list li .left span img{
    width: 100px;
    height: auto;
}
.books_list li .right{
    width: calc(100% - 110px);
    min-height: 143px;
    padding-bottom: 40px;
    position: relative;
    float: right;
    box-sizing: border-box;
}
.books_list li .right .label{
    padding: 5px;
    margin-bottom: 10px;
    font-size: 12px;
    text-align: center;
    border: 1px solid #CECECE;
}
.books_list li .right h2{
    font-size: 14px;
    line-height: 1.6;
}
.books_list li .right .text p{
    margin-top: 10px;
    font-size: 11px;
    line-height: 1.5;
}
.books_list li .right .caption{
    color: #5D5D5D;
    font-size: 10px;
    line-height: 16px;
    position: absolute;
    bottom: 0;
    left: 0;
}
@media (min-width:820px){
    .books_list{
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        align-content: stretch;
    }
    .books_list li{
        width: 390px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .books_list li > div{
        padding-bottom: 0;
    }
    .books_list li .left{
        width: 150px;
    }
    .books_list li .left span img{
        width: 150px;
    }
    .books_list li .to_store{
        width: 150px;
        margin: 10px 0 0;
        position: relative;
        text-decoration: none;
        left: 0;
    }
    .books_list li .right{
        width: calc(100% - 170px);
        min-height: 0;
        padding-bottom: 45px;
    }
    .books_list li .right .text p{
        font-size: 14px;
    }
}


/* profile */
.profile{
    padding: 0 15px;
}
.profile .upper{
    height: 154px;
    padding-left: 125px;
    position: relative;
}
.profile .upper img{
    width: 115px;
    height: auto;
    position: absolute;
    left: 0;
}
.profile .upper .name h2{
    padding-bottom: 8px;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #5D5D5D;
}
.profile .upper .name h2 span{
    padding-left: 10px;
    font-size: 11px;
}
.profile .upper .name p{
    margin-top: 10px;
    font-size: 11px;
    line-height: 1.5;
}
.profile .body{
    margin-top: 10px;
}
.profile .body p{
    font-size: 14px;
    line-height: 1.5;
}
.profile .body p + p{
    margin-top: 1em;
}
.profile .body .buttons{
    margin-top: 20px;
}

.profile_lists .year{
    padding: 4px 15px;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    background-color: #CECECE;
}
.profile_lists ul + .year{
    margin-top: 20px;
}
.profile_lists ul li{
    padding: 10px 15px;
    border-bottom: 1px solid #CECECE;
}
.profile_lists ul li .time{
    margin-bottom: 3px;
    font-size: 12px;
}
.profile_lists ul li p{
    font-size: 14px;
    line-height: 1.5;
}
@media (min-width:820px){
    .profile{
        margin-top: 20px;
        padding: 0;
    }
    .profile .upper{
        height: auto;
        padding-left: 200px;
    }
    .profile .upper img{
        width: 174px;
        height: auto;
    }
    .profile .upper .name h2{
        width: 290px;
        font-size: 18px;
        font-weight: bold;
    }
    .profile .upper .name h2 span{
        padding-left: 20px;
        font-size: 13px;
        font-weight: 500;
    }
    .profile .upper .name p{
        font-size: 13px;
    }

    .profile .body p{
        font-size: 14px;
    }
    .profile .body p + p{
        margin-top: 1em;
    }
    .profile .body .buttons{
        margin-top: 20px;
        overflow: hidden;
    }
    .profile .body .buttons .anchor{
        float: left;
    }
    .profile .body .buttons .anchor + .anchor{
        margin-left: 20px;
    }
    .profile_lists{
        margin-top: 20px;
    }
    .profile_lists .year{
        font-size: 14px;
    }
}

/* sakuhin */
.sakuhin_list{
    border-top: 2px solid #CECECE;
}
.sakuhin_list li{
    padding: 10px 15px;
    border-bottom: 1px solid #CECECE;
}
.sakuhin_list li .title{
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.6;
}
.sakuhin_list li .free{
    min-width: 30px;
    height: 13px;
    margin-left: 5px;
    color: #fff;
    font-size: 10px;
    line-height: 13px;
    text-align: center;
    border-radius: 3px;
    background-color: #DE9FC1;
    display: inline-block;
}
.sakuhin_list li .release time{
    font-size: 11px;
    line-height: 13px;
}
.sakuhin_list li .media{
    margin-top: 6px;
    font-size: 11px;
    line-height: 1.6;
}
@media (min-width:820px){
    .sakuhin_list{
        margin-top: 20px;
    }
    .sakuhin_list li{
        padding-left: 175px;
        position: relative;
        overflow: hidden;
    }
    .sakuhin_list li .release{
        position: absolute;
        left: 15px;
        top: 10px;
    }
}


/* sakuhin popup */
.popup_container{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(206, 206, 206, 0.9);
    z-index: 100;
    display: none;
    justify-content: center;
    align-items: center;
}
.popup_close{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    cursor: pointer;
    z-index: 1;
}
.popup_close span {
  color: #000;
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
}
.popup_close span:before {
  content: '';
  position: absolute;
  top: 15px;
  width: 30px;
  height: 1px;
  background-color: #000;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.popup_close span:after {
  content: '';
  position: absolute;
  top: 15px;
  width: 30px;
  height: 1px;
  background-color: #000;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.popup_inner{
    width: 800px;
    max-width: 100vw;
    height: 60vh;
    padding: 15px 15px 70px;
    background-color: #fff;
    position: relative;
    z-index: 10;
    box-sizing: border-box;
}
.popup_inner .popup_image_container{
    max-width: 100%;
    height: calc(60vh - 85px);
    text-align: center;
    display: flex;
    align-items: stretch;
}
.popup_inner .popup_image_container > span{
    width: 100%;
    height: calc(60vh - 85px);
    display: block;
}
.popup_inner .popup_image_container > span a{
    width: 100%;
    height: calc(60vh - 85px);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    display: block;
    box-sizing: border-box;
    border: 1px solid #CECECE;
    transition: opacity 0.3s ease;
}
.popup_inner .popup_image_container > span a:hover{
    opacity: 0.6;
}
.popup_inner .popup_image_container img{
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}
.popup_inner .popup_footer{
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 15px;
}

.popup_inner .popup_footer .popup_logo{
    width: 100px;
    max-height: 30px;
    display: flex;
    align-items: stretch;
}
.popup_inner .popup_footer .popup_logo span{
    width: 100%;
    display: block;
}
.popup_inner .popup_footer .popup_logo span img{
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    vertical-align: middle;
}
.popup_inner .popup_footer .popup_media{
    font-size: 12px;
    font-weight: bold;
}
.popup_inner .popup_footer .popup_number{
    font-size: 12px;
}
.popup_inner .popup_footer * + .popup_number{
    margin-top: 10px;
}
@media (min-width:820px){
    .popup_inner .popup_footer .popup_media{
        font-size: 14px;
        font-weight: 500;
    }
}


/* roudoku */
.roudoku p{
    font-size: 14px;
    line-height: 1.5;
}
.roudoku section + section{
    margin-top: 40px;
}
.roudoku .roudoku_upper{
    padding: 0 15px;
}
.roudoku .roudoku_upper h1{
    margin: 0;
    padding: 10px 0;
    text-align: center;
    color: #fff;
    background-color: #1A5BC8;
    border: none;
}
.roudoku .roudoku_upper .inner{
    padding: 10px;
    text-align: center;
    border: 1px solid #1A5BC8;
}

.roudoku_siyou{
    padding: 0 15px;
}

.roudoku_jisseki{
    padding: 0 15px;
}
.roudoku_jisseki .item{
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #CECECE;
    word-break: break-all;
}
.roudoku_jisseki > p{
    text-align: center;
}

.roudoku_siyou p + p{
    margin-top: 1em;
}

.roudoku_point{
    padding: 0 15px;
}
.roudoku_point p{
    padding-bottom: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.5;
    border-bottom: 1px solid #CECECE;
}
.roudoku_point p span{
    padding-right: 5px;
    font-size: 20px;
    font-weight: bold;
}
@media (min-width:820px){
    .roudoku .roudoku_upper{
        padding: 0;
    }
    .roudoku .roudoku_upper .inner{
        padding: 15px;
    }
    .roudoku_point p{
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
}



/* lesson */
.lesson .inner{
    padding: 0 15px;
}
.lesson .upper p{
    font-size: 14px;
    line-height: 1.5;
}
.lesson .upper p + p{
    margin-top: 1em;
}
.lesson section + section{
    margin-top: 40px;
}
.lesson dl{
    padding-left: 50px;
    padding-bottom: 10px;
    font-size: 14px;
    line-height: 1.5;
    position: relative;
    border-bottom: 1px solid #CECECE;
}
.lesson dl + dl{
    margin-top: 10px;
}
.lesson dt{
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.lesson .syousai p{
    margin-top: 1.5em;
    font-size: 14px;
}

.lesson .videos{
    padding: 0 15px;
}
.lesson .video {
  width: 100%;
  padding-top: 56.25%;
  margin-bottom: 10px;
  position: relative;
}
.lesson .video iframe {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  right: 0;
}

.lesson .photos{
    padding: 0 15px;
}
.lesson .photo + .photo{
    margin-top: 10px;
}
.lesson .photo img{
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

.lesson h2{
    margin-left: 15px;
    margin-top: 20px;
    font-size: 14px;
}
.lesson .voice{
    margin-top: 10px;
    padding: 0 15px;
    position: relative;
}
.lesson .voice p{
    padding: 10px 13px;
    font-size: 12px;
    line-height: 1.5;
    background-color: #F2F2F2;
    border-radius: 10px;
    position: relative;
}
.lesson .voice p:after{
    content: "";
    border-style: solid;
    border-width: 0 10px 10px 0;
    border-color: transparent #f2f2f2 transparent transparent;
    position: absolute;
    top: 10px;
    left: -10px;
}

.lesson .lesson_section p{
    font-size: 14px;
    line-height: 1.5;
}
.lesson .lesson_section p + p{
    margin-top: 1em;
}

@media (min-width:820px){
    .lesson .syousai{
        margin-top: 20px;
    }
    .lesson .videos{
        overflow: hidden;
        padding: 0;
        margin-bottom: 20px;
    }
    .lesson .video{
        width: 390px;
        padding-top: 220px;
        margin-bottom: 0;
        float: left;
    }
    .lesson .video + .video{
        margin-left: 20px;
    }
    .lesson .voice{
        padding-right: 0;
    }
    .lesson .photos{
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .lesson .photo{
        width: 390px;
        margin-bottom: 20px;
    }
    .lesson .photo + .photo{
        margin-top: 0px;
    }
}


/* contact */
.contact .upper{
    padding: 0 15px;
    font-size: 14px;
    line-height: 1.5;
}

.contact .submitText01{
    font-size: 12px;
}
.contact .contact_form_wrap{
    margin-top: 20px;
    padding: 0 15px;
}
.contact .hissutext,
.contact .hissu{
    padding: 2px 5px;
    color: #fff;
    font-size: 10px;
    border-radius: 10px;
    background-color: #1A5BC8;
}
.contact div.wpcf7{
    width: 100%;
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.5;
}
.contact div.wpcf7 div + dl{
    border-top: 1px solid #CECECE;
}
.contact div.wpcf7 dl{
    border-bottom: 1px solid #CECECE;
}
.contact div.wpcf7 dt{
    padding: 10px 5px;
    text-align: left;
    font-weight: bold;
    vertical-align: top;
}
.contact div.wpcf7 dt.require:after{
    content: "必須";
    padding: 2px 5px;
    margin-left: 5px;
    color: #fff;
    font-size: 10px;
    line-height: 1.2;
    border-radius: 10px;
    background-color: #1A5BC8;
    display: inline-block;
}
.contact div.wpcf7 dd{
    padding: 0 5px 10px;
}
.contact div.wpcf7 dd .description{
    margin-top: 10px;
    display: block;
}
.contact div.wpcf7 dd select{
    width: 100%;
    height: 2.5em;
    font-size: 16px;
    line-height: 1.5;
    border: 1px solid #1C1C1C;
}
.contact div.wpcf7 dd input[type="text"],
.contact div.wpcf7 dd input[type="tel"],
.contact div.wpcf7 dd input[type="email"]{
    width: 100%;
    height: 2.5em;
    padding: 0 10px;
    font-size: 16px;
    line-height: 1.5;
    border: 1px solid #1C1C1C;
    box-sizing: border-box;
    display: block;
}
.contact div.wpcf7 dd input[type="radio"],
.contact div.wpcf7 dd input[type="checkbox"]{
    vertical-align: middle;
}
.contact span.wpcf7-list-item{
    margin: 0 1em 0 0;
}
.contact div.wpcf7 dd textarea{
    width: 100%;
    height: 7.5em;
    min-height: 6em;
    padding: 0 5px;
    font-size: 16px;
    line-height: 1.5;
    resize: vertical;
    border: 1px solid #1C1C1C;
    box-sizing: border-box;
}
.contact .submitText02{
    margin-top: 15px;
    font-size: 12px;
}
.contact input[type="radio"],
.contact input[type="checkbox"]{
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: bottom;
}
.wpcf7-form-control.wpcf7-submit{
    width: 290px;
    height: 40px;
    padding: 0;
    margin: 15px auto 0;
    color: #7b6546;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    line-height: 40px;
    background-color: #f7ce59;
    border: none;
    display: block;
}
div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing{
    border-color: #f00;
}
@media (min-width:820px){
    .contact div.wpcf7 dl{
        overflow: hidden;
    }
    .contact div.wpcf7 dt{
        width: 180px;
        padding: 15px 0 0 0;
        font-weight: 500;
        float: left;
        box-sizing: border-box;
    }
    .contact div.wpcf7 dt small{
        font-size: 12px;
    }
    .contact div.wpcf7 dd{
        width: calc(100% - 180px);
        padding: 15px 0 15px 15px;
        border-left: 1px solid #CECECE;
        float: left;
        box-sizing: border-box;
    }
    .contact div.wpcf7 dd.mh{
        min-height: calc(3em + 30px);
    }
    .contact div.wpcf7 dd select,
    .contact div.wpcf7 dd textarea,
    .contact div.wpcf7 dd input[type="text"],
    .contact div.wpcf7 dd input[type="tel"],
    .contact div.wpcf7 dd input[type="email"]{
        font-size: 14px;
        border: 1px solid #CECECE;
    }
}
