/* common */
*{
    box-sizing: border-box;
}
html{
    line-height: inherit;
    min-height: 100%;
    overflow-x: hidden;
}
body{
    width: 100%;
    font-family:"Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    letter-spacing: 0.05em;
    font-size: 16px;
}
a{
    text-decoration: none;
    display: block;
    color: #000;
    cursor: pointer;
    box-sizing: border-box;
}
img{
    width: 100%;
}
li{
    display: block;
}
table, tr, th, td{
    border: none;
    border-spacing: unset;
    margin: 0;
}
em{
    font-style: normal;
}
ol{
    padding: 0;
}
video{
    width: 100%;
}


h1{
    margin: 0;
    font-size: 46px;
}
h2{
    font-size: 40px;
    font-weight: 600;
    position: relative;
    text-align: center;
    margin: 0;
    line-height: 0.8;
    margin-bottom: 30px;
}
h2 span{
    width: fit-content;
    position: relative;
    display: block;
    margin: 0 auto 40px;
    font-size: 16px;
    letter-spacing: 0.1em;
    color: #ff5f00;
}
h2 span::before,
h2 span::after{
    content: '';
    width: 2px;
    height: 30px;
    transform: rotate(35deg);
    background: #ff5f00;
    position: absolute;
    top: -9px;
}
h2 span::before{
    left: -18px;
}
h2 span::after{
    right: -18px;
}
h3{
    font-size: 24px;
    text-align: center;
    font-weight: 600;
    margin: 0 auto 40px;
}
h4{
    margin: 0;
    font-size: 18px;
}
section{
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 100px;
}
ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
p{
    margin: 0;
}


body > div:not(.sidebar){
    padding-top: 84px;
}
.pc{
    display: block;
}
.sp{
    display: none;
}
.detailTxt{
    font-size: 18px;
    line-height: 2;
    margin-bottom: 40px;
}
.breadcrumb {
    display: flex;
    font-size: 12px;
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 22px;
}
.breadcrumb a{
    padding-right: 15px;
    margin-right: 25px;
    position: relative;
}
.breadcrumb a:hover{
    color: #ff5f00;
}
.breadcrumb a::after{
    content: '';
    width: 1px;
    height: 16px;
    background: #ff5f00;
    position: absolute;
    right: 0;
    top: 45%;
    transform:  rotate(35deg) translateY(-50%);
}
.breadcrumb span{
    color: #ff5f00;
}
.head{
    max-width: none;
    height: 240px;
    position: relative;
    margin-bottom: 80px;
}
.notice{
    font-size: 12px;
}
@media screen and (max-width: 1024px){
    body > div:not(.sidebar){
        padding-top: 70px;
    }
    .pc{
        display: none;
    }
    .sp{
        display: block;
    }
    h1{
        font-size: 28px;
    }
    h2{
        font-size: 25px;
    }
    h2 span{
        font-size: 10px;
    }
    h3{
        font-size: 20px;
        margin: 0 auto 26px;
    }
    .detailTxt{
        font-size: 16px;
        margin-bottom: 25px;
    }
    .breadcrumb {
        max-width: none;
        padding: 0 0 22px 5%;
        flex-wrap: wrap;
        row-gap: 10px;
    }
    .breadcrumb a{
        padding-right: 12px;
        margin-right: 24px;
    }
    .head{
        height: 120px;
        margin-bottom: 50px;
    }
}

/* ボタンホバー */
.btnLink{
    position: relative;
    display: block;
    text-align: center;
    transition: .3s;
}
.btnLink span{
    position: relative;
    z-index: 5;
}
.btnLink::before{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    content: '';
    width: 100%;
    height: 100%;
    transform: scale(0, 1);
}
.btnLink:hover::before{
    animation: hover-in .4s forwards alternate, hover-out .4s .4s forwards alternate;
}
.btnLink img{
    width: 33px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

/* whiteBtn */
.btnLink.white{
    border: 1px solid #000;
}
.btnLink.white span{
    color:#000;
}
.btnLink.white::before{
    background: #000;
}
.btnLink.white:hover span {
    animation: whiteBtn_hover .8s forwards;
}
@keyframes whiteBtn_hover {
    0%, 100% {
        color: #000;
    }
    50% {
        color: #fff;
    }
}

/* blackBtn */
.btnLink.black{
    border: 1px solid #000;
    background: #000;
}
.btnLink.black span{
    color: #fff;
    font-size: 16px;
}
.btnLink.black::before{
    background: #fff;
}
.btnLink.black:hover span {
    animation: blackBtn_hover .8s forwards;
}

@keyframes blackBtn_hover {
    0%, 100% {
        color: #fff;
    }
    50% {
        color: #000;
    }
}
@keyframes hover-in {
    0% {
        transform-origin: left top;
        transform: scale(0, 1);
    }
    100% {
        transform-origin: left top;
        transform: scale(1, 1);
    }
}
@keyframes hover-out {
    0% {
        transform-origin: right top;
        transform: scale(1, 1);
    }
    100% {
        transform-origin: right top;
        transform: scale(0, 1);
    }
}

/* イメージリンク */
.imgLink{
    position: relative;
}
.imgLink .imgWrap{
    overflow: hidden;
}
.imgLink .imgWrap img{
    transform: scale(1);
    transition: transform .6s ease;/* ゆっくり変化させる */
}
.imgLink:hover .imgWrap img{
    transform: scale(1.1);
}
.imgLink .textWrap{
    position: absolute;
    bottom: 10px;
    right: 20px;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    z-index: 5;
    display: flex;
    align-items: center;
}
.imgLink .textWrap p{
    line-height: 2;
}
.imgLink .textWrap img{
    width: 35px;
    margin-left: 15px;
}
@media screen and (max-width: 1024px) {
    section{
        width: 100%;
        max-width: none;
        padding: 0 5%;
        margin-bottom: 90px;
    }
    .imgLink .imgWrap img{
        transform: scale(1.1);
        transition: none;
    }
    .imgLink:hover .imgWrap img{
        transform: none;
    }
    .imgLink .textWrap{
        font-size: 18px;
    }
    .imgLink .textWrap img{
        width: 28px;
        margin-left: 10px;
    }
}


/* header */
header{
    width: 100%;
    padding: 0 3%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
}
header > a{
    width: 25%;
}
.header__menu--wrap{
    width: 654px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 10;
}
.header__menu--wrap li{
    position: relative;
    padding: 30px 0;
}
.header__menu--wrap li::before{
    content: '';
    width: 2px;
    height: 35px;
    background: #cdcdcd;
    position: absolute;
    top: 50%;
    right: -15px;
    transform: rotate(30deg) translateY(-50%);
}
.header__menu--wrap li:last-child::before{
    content: none;
}
.header__menu--wrap > li > a{
    font-weight: 600;
    font-size: 16px;
}
.header__menu--products .--inner > a {
    font-weight: 600;
    font-size: 16px;
}
.header__menu--wrap li a:hover{
    opacity: 0.7;
}
.header__childMenu{
    width: 100%;
    position: fixed;
    top: 8%;
    left: 0;
    right: 0;
    z-index: 5;
    border-top: 1px solid #cdcdcd;
    display: none;
}
.header__childMenu--wrap{
    width: 100%;
    height: auto;
    background: #fff;
    z-index: 5;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 38px 0 55px;
}
.header__childMenu--wrap li::before{
    content: none;
}
.header__childMenu--closeBtn{
    background: #000;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0;
    right: 0;
}
.header__childMenu--closeBtn:hover{
    opacity: 0.7;
}
.header__childMenu--closeBtn::before,
.header__childMenu--closeBtn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 30px;
    background: #fff;
}
.header__childMenu--closeBtn::before {
    transform: translate(-50%,-50%) rotate(45deg);
}
.header__childMenu--closeBtn::after {
    transform: translate(-50%,-50%) rotate(-45deg);
}
.header__childMenu--wrap > p{
    display: flex;
    align-items: center;
    width: 64%;
    margin: 0 auto 40px;
    font-size: 24px;
    font-weight: 600;
}
.header__childMenu--wrap > p img{
    width: 33px;
    margin-left: 10px;
}
.header__childMenu ul{
    display: flex;
    justify-content: space-between;
    width: 64%;
    margin: 0 auto;
}
.header__childMenu ul li{
    width: 18%;
}
.header__childMenu ul p{
    font-size: 16px;
    font-weight: 300;
    text-align: center;
    margin: 0 0 15px;
}
.header__childMenu ul li:hover{
    opacity: 0.7;
}
.header__childMenu ul li:hover p{
    color: #000;
}
.header__hamburger{
    width: 20px;
    height: 18px;
    position: relative;
}
.header__hamburger::before{
    content: '';
    width: 100%;
    height: 2px;
    background: #000;
    position: absolute;
    top: 8px;
    left: 0;
}
.header__hamburger::after{
    content: '';
    width: 100%;
    height: 2px;
    background: #000;
    position: absolute;
    top: 16px;
    left: 0;
}
.header__hamburger.is-active::before{
    transform: rotate(135deg);
}
.header__hamburger.is-active::after{
    top: 8px;
    transform: rotate(45deg);
}
.megamenu__overlay{
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, .5);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: none;
    z-index: 10;
}
.header__childMenu.is-active,
.megamenu__overlay.is-active{
    display: block;
}

@media screen and (max-width: 1024px) {
    header{
        width: 100%;
        padding: 15px 5%;
    }
    header > a{
        width: 64%;
    }
    .header__menu--wrap{
        width: 100%;
        height: 100vh;
        display: none;
        padding: 0 5% 40px;
        position: absolute;
        top: 50px;
        left: 0;
        right: 0;
        border-top: 1px solid #cccccc;
        background: #fff;
        overflow-y: scroll;
    }
    .header__menu--wrap li{
        border-bottom: 1px solid #cccccc;
        padding: 20px 0;
    }
    .header__menu--wrap li::before{
        content: none;
    }
    .header__menu--wrap.is-active{
        display: block;
    }
    .header__cta{
        width: 88%;
        max-width: 300px;
        background: #ff5f00;
        text-align: center;
        padding: 18px 0;
        margin: 40px auto 0;
        position: relative;
    }
    .header__cta a{
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        position: relative;
    }
    .header__cta a::before{
        content: '';
        width: 22px;
        height: 16px;
        background: url('../img/common/contact_icon.png') center / cover;
        position: absolute;
        top: 50%;
        left: 13%;
        transform: translate(-50%, -50%);
    }
    .header__childMenu{
        width: 100%;
        height: auto;
        margin-top: 15px;
        position: initial;
        background: none;
        border-top: none;
    }
    .header__childMenu--wrap{
        width: auto;
        background: #f0f0f0;
        position: inherit;
        padding: 0 5%;
    }
    .header__menu--products .--inner{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .header__childMenu--btn{
        width: 40px;
        height: 25px;
        position: relative;
        cursor: pointer;
    }
    .header__childMenu--btn span{
        width: 18px;
        height: 2px;
        background: #ff5f00;
        position: absolute;
        top: 50%;
        right: 0;
    }
    .header__childMenu--btn span:last-of-type{
        transform: rotate(90deg);
    }
    .header__childMenu--btn.is-active span:last-of-type{
        transform: rotate(0);
    }
    .header__childMenu--wrap > p.pc{
        display: none;
    }
    .header__childMenu ul {
        width: 100%;
        display: block;
    }
    .header__childMenu ul li{
        width: 100%;
        border-bottom: 1px solid #fff;
        position: relative;
    }
    .header__childMenu ul li::before{
        content: '';
        position: absolute;
        top: 50%;
        right: 5%;
        width: 4px;
        height: 4px;
        background: none;
        border-top: 2px solid #ff5f00;
        border-right: 2px solid #ff5f00;
        transform: rotate(45deg) translateY(-50%);
    }
    .header__menu--wrap .header__childMenu li:last-child::before{
        content: '';
    }
    .header__childMenu ul li p{
        font-size: 14px;
        margin-bottom: 0;
        text-align: left;
    }

}

/* sidebar */
.sidebar{
    position: fixed;
    top: 240px;
    right: 0;
    z-index: 5;
    background: #fff;
}
.sidebar > div{
    padding: 20px 15px;
}
.sidebar > div:hover{
    opacity: 0.7;
}
.sidebar a{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.sidebar p{
    writing-mode: vertical-rl;
    color: #fff;
    font-size: 16px;
    line-height: 0;
    font-weight: 600;
}
.sidebar img{
    width: 20px;
    margin-bottom: 15px;
}
.sidebar__contact{
    background: #ff5f00;
}
.sidebar__catalog{
    background: #00ad2b;
}
@media screen and (max-width: 1024px){
    .sidebar{
        width: 100%;
        top: auto;
        bottom: 0;
        z-index: 100;
        display: flex;
    }
    .sidebar > div{
        width: 50%;
        padding: 20px 0;
    }
    .sidebar p{
        writing-mode: inherit;
    }
    .sidebar a{
        display: flex;
        flex-direction: row;
        justify-content: center;
    }
    .sidebar img{
        width: 25px;
        margin-bottom: 0;
        margin-right: 13px;
    }
}

/* footer */
footer{
    width: 100%;
    padding: 50px 0;
    background: #000;
    color: #fff;
    font-size: 14px;
    display: flex;
    justify-content: space-around;
}
.footer__logo{
    width: 270px;
    margin-bottom: 45px;
}
footer small{
    font-size: 12px;
    font-family: 'Lato', sans-serif;
}
footer a:hover{
    opacity: 0.7;
}
.footer__address--wrap{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
.footer__address--wrap li{
    margin-bottom: 35px;
    line-height: 2.1;
}
.footer__address--wrap li:last-child{
    margin: 0;
}
.footer__menu--wrap{
    margin-bottom: 60px;
    display: flex;
}
.footer__menu--wrap ul{
    margin-right: 72px;
}
.footer__menu--wrap ul:last-of-type{
    margin-right: 0;
}
.footer__menu--wrap li{
    position: relative;
    margin-bottom: 30px;
}
.footer__menu--wrap li:last-child{
    margin-bottom: 0;
}
.footer__menu--wrap li::before{
    content: '';
    position: absolute;
    top: 6px;
    left: 3px;
    width: 4px;
    height: 4px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
}
.footer__menu--wrap li a{
    color: #fff;
    padding-left: 20px;
    font-size: 14px;
}
.footer__copyright{
    text-align: right;
}
@media screen and (max-width: 1024px){
    footer{
        font-size: 12px;
        display: block;
        padding: 50px 5% 100px;
    }
    .footer__logo {
        width: 55%;
        margin-bottom: 25px;
    }
    .footer__address--wrap{
        margin-bottom: 43px;
    }
    .footer__menu--wrap ul{
        width: 50%;
        margin-right: 30px;
    }
    .footer__address--wrap li{
        margin-bottom: 23px;
    }
    .footer__menu--wrap li {
        margin-bottom: 20px;
    }
    .footer__menu--wrap li a{
        font-size: 12px;
    }
    .footer__copyright{
        text-align: center;
        font-size: 10px;
    }
}


/* トップページ */
#main .btnLink{
    width: 70%;
    border: 2px solid #000;
    padding: 20px 70px;
}
#main .btnLink span{
    font-weight: 600;
}
#main .imgWrap{
    width: 500px;
    height: 300px;
}
@media screen and (max-width: 1024px) {
    #main .imgWrap{
        width: 100%;
        height: auto;
    }
}

/* mv */
#main .mv{
    width: 100%;
    margin: 0 auto 95px;
    position: relative;
}
#main .slick-dots{
    position: static;
    margin-top: 20px;
}
#main .slick-dots li{
    margin-right: 20px;
}
#main .slick-dots li button:before{
    content: "";
    background: #000;
    width: 30px;
    height: 4px;
    transform: skew(-30deg, 0deg);
}
#main .slick-dots li.slick-active button:before{
    background: #FF5F00;
}
#main .slick-dots li button:hover:before,
#main.slick-dots li button:focus:before{
    opacity: 0.5;
    background: #FF5F00;
}

@media screen and (max-width: 1024px) {
    #main .mv{
        width: 100%;
        margin-bottom: 68px;
    }
    #main .slick-dots{
        margin-top: 0;
    }
}
/* features */
#main .features{
    display: flex;
    justify-content: center;
    align-items: center;
}
#main .features__txtWrap{
    width: 50%;
    margin-right: -48px;
    z-index: 5;
}
#main .features h2{
    text-align: left;
}
#main .features h2 span{
    margin: 0 0 40px 25px;
}
#main .features__imgWrap{
    width: 55%;
}
@media screen and (max-width: 1024px) {
    #main .features{
        flex-direction: column;
    }
    #main .features h2{
        text-align: center;
        margin-bottom: 25px;
    }
    #main .features > div{
        width: 100%;
        text-align: center;
    }
    #main .features .detailTxt{
        text-align: left;
    }
    #main .features__txtWrap{
        margin: 0 0 40px;
    }
    #main .features h2 span{
        margin: 0 auto 40px;
    }
    #main .btnLink{
        width: 90%;
        margin: 0 auto;
    }
    #main .features__imgWrap{
        width: 100%;
        margin-bottom: 25px;
    }
}

/* products */
#main .products p{
    text-align: center;
}
#main .products ul{
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    width: 100%;
}
#main .products ul li{
    width: 499px;
    z-index: 1;
}
@media screen and (max-width: 1024px) {
    #main .products ul{
        display: block;
    }
    #main .products ul li{
        width: 100%;
        margin-bottom: 2px;
    }
    #main .products .detailTxt{
        text-align: left;
    }
}

/* sitemap */
#sitemap .sitemap__head{
    background: url('../img/common/sitemap_head.jpg') center / cover;
}
#sitemap h1{
    color: #fff;
    position: absolute;
    top: 50%;
    left: 15%;
    transform: translateY(-50%);
}
#sitemap a:hover p,
#sitemap .sitemap__link--subttl li a:hover{
    border-bottom: 1px solid #ff5f00;
}
#sitemap .sitemap__detail--wrap{
    display: flex;
    justify-content: space-between;
}
#sitemap .sitemap__link--ttl,
#sitemap .sitemap__link--subttl{
    margin-bottom: 45px;
}
#sitemap .sitemap__link--ttl a,
#sitemap .sitemap__link--subttl a{
    width: fit-content;
    display: flex;
    align-items: center;
}
#sitemap .sitemap__link--ttl a{
    position: relative;
}
#sitemap .sitemap__link--ttl img{
    width: 32px;
    margin-left: 10px;
}
#sitemap .sitemap__link--ttl p{
    font-size: 22px;
    font-weight: 600;
}
#sitemap .sitemap__link--subttl p{
    font-size: 18px;
    font-weight: 600;
}
#sitemap ul{
    margin-top: 20px;
}
#sitemap ul li{
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}
#sitemap ul li::before{
    content: '';
    width: 4px;
    height: 4px;
    border-top: 3px solid #e65c1c;
    border-right: 3px solid #e65c1c;
    border-radius: 2px;
    position: absolute;
    top: 45%;
    left: 0;
    transform: rotate(45deg) translateY(-50%);
}
#sitemap ul li a{
    font-size: 14px;
}
#sitemap .sitemap__arrow{
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #e65c1c;
    position: relative;
    margin-left: 10px;
}
#sitemap .sitemap__arrow::before{
    content: '';
    width: 4px;
    height: 4px;
    border-top: 2px solid #e65c1c;
    border-right: 2px solid #e65c1c;
    border-radius: 2px;
    position: absolute;
    top: 3px;
    left: 2px;
    transform: rotate(45deg);
}
#sitemap .sitemap__arrow.orange{
    width: 20px;
    height: 20px;
    background: #ff5f00;
    border: none;
    margin: 0 10px 0 0;
}
#sitemap .sitemap__arrow.orange::before{
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    border-radius: 2px;
    top: 7px;
    left: 6px;
}

@media screen and (max-width: 1024px) {
    #sitemap .sitemap__head{
        background: url('../img/common/sitemap_head_sp.jpg') center / cover;
    }
    #sitemap .sitemap__detail--wrap{
        flex-direction: column;
    }
}
/* contact */
#contact .contact__head{
    background: url('../img/common/contact_head.jpg') center / cover;
}
#contact h1{
    color: #fff;
    position: absolute;
    top: 50%;
    left: 15%;
    transform: translateY(-50%);
}
#contact em{
    font-size: 14px;
    border: 1px solid #999999;
    color: #999999;
    font-weight: 600;
    padding: 1px 8px;
    margin-right: 10px;
}
#contact em.required{
    background: #ff5f00;
    color: #fff;
    border: none;
}
#contact .contact__wrap{
    max-width: 600px;
    width: 100%;
    margin: 0 auto 160px;
}
#contact .contact__wrap > p{
    font-size: 18px;
    width: 100%;
    text-align: center;
    margin-bottom: 66px;
}
#contact .contact__step{
    width: 100%;
    margin-bottom: 66px;
}
#contact form{
    font-size: 16px;
}
#contact .formItem{
    margin-bottom: 30px;
}
#contact .inputTitle{
    font-weight: 600;
    margin-bottom: 15px;
}
#contact input,
#contact textarea{
    width: 100%;
    font-size: 16px;
    background: #f7f7f7;
    border-radius: 4px;
    border: 1px solid #cccccc;
    padding: 10px;
    box-sizing: border-box;
}
#contact textarea{
    height: 120px;
}
#contact .contact__label--inner{
    margin-bottom: 50px;
}
#contact .contact__notice{
    margin: 8px 0 30px 0;
    font-size: 14px;
}
#contact .contact__postcode--wrap{
    display: flex;
    align-items: center;
}
#contact .contact__address--wrap .p-postal-code{
    width: 158px;
    margin: 0 15px;
}
#contact .contact__privacy p{
    font-size: 14px;
    margin-bottom: 35px;
}
#contact .contact__privacy--labelWrap{
    background: #f7f7f7;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
}
#contact .contact__privacy label{
    display: flex;
    margin: 0 auto;
    width: 100px;
}
#contact .contact__privacy label span{
    display: block;
    margin: 0 0 0 10px;
}
#contact .contact__privacy input{
    width: 18px;
}
#contact .contact__privacy--content{
    height: 250px;
    overflow-y: scroll;
    padding: 35px 5% 0;
    border: 1px solid #cccccc;
    border-radius: 4px;
}
#contact .contact__privacy--content h2{
    margin-bottom: 35px;
    font-size: 20px;
}
#contact .form_button{
    text-align: center;
}
#contact button{
    width: 340px;
    background: #ff5f00;
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 20px;
    text-align: center;
    position: relative;
}
#contact button img{
    width: 34px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
#contact .contact__label--inner{
    display: flex;
    border-top: 1px solid #cccccc;
    padding: 25px 0;
}
#contact label:last-of-type .contact__label--inner{
    border-bottom: 1px solid #cccccc;
    margin-bottom: 50px;
}
/* index */
#contact.contact__index .contact__zipBtn{
    width: 170px;
    background: #000;
    color: #fff;
    border-radius: 4px;
    text-align: center;
    padding: 6px;
    cursor: pointer;
}
/* confirm */
#contact.contact__confirm .inputTitle{
    width: 25%;
    margin-bottom: 0;
    margin: 0 60px 0 0;
}
#contact.contact__confirm .input_contents{
    width: 75%;
}
#contact.contact__confirm .form_button{
    display: flex;
    justify-content: space-between;
}
#contact.contact__confirm .form_button img{
    width: 32px;
}
#contact.contact__confirm .contact__backPage{
    position: relative;
}
#contact.contact__confirm .contact__backPage input{
    width: 230px;
    background: #999999;
    color: #fff;
    border: none;
    border-radius: 0;
    padding: 20px;
}
#contact.contact__confirm .contact__backPage img{
    position: absolute;
    top: 50%;
    left: 20px;
    transform: scale(-1, 1) translateY(-50%);
}
#contact.contact__confirm .contact__submit{
    width: 340px;
    position: relative;
}
#contact.contact__confirm .contact__submit img{
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
/* thanks */
#contact.contact__thanks h2{
    font-weight: normal;
    font-size: 24px;
    margin-bottom: 45px;
}
#contact.contact__thanks p{
    margin-bottom: 35px;
    font-size: 16px;
}
#contact.contact__thanks .form_button{
    width: 340px;
    background: #ff5f00;
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 20px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}
#contact.contact__thanks .form_button img{
    width: 32px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
    #contact .contact__head{
        background: url('../img/common/contact_head_sp.jpg') center / cover;
    }
    #contact h1{
        left: 5%;
    }
    #contact form{
        font-size: 14px;
    }
    #contact .contact__wrap{
        margin: 0 auto 80px;
    }
    #contact .contact__wrap > p{
        font-size: 16px;
        margin-bottom: 30px;
    }
    #contact .contact__step{
        margin: 0 auto 30px;
    }
    #contact .formItem{
        margin-bottom: 25px;
    }
    #contact.contact__confirm .form_button{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    #contact.contact__confirm .contact__backPage input{
        font-size: 14px;
    }
    #contact.contact__thanks h2{
        font-size: 18px;
        margin-bottom: 30px;
    }
    #contact.contact__thanks p{
        margin-bottom: 20px;
        font-size: 13px;
    }
    #contact.contact__thanks .form_button{
        width: 100%;
        padding: 15px;
        font-size: 14px;
    }
}


/* features */
#features .features__head{
    background: url('../img/features/head.jpg') center / cover;
}
#features h1{
    color: #fff;
    position: absolute;
    top: 50%;
    left: 15%;
    transform: translateY(-50%);
}
#features h2{
    margin-bottom: 70px;
}
#features .features__power--detail{
    border: 2px solid #cccccc;
    padding: 48px 0;
    position: relative;
}
#features .features__power--detail::before{
    content: '';
    width: 25px;
    height: 25px;
    border-top: 4px solid #000;
    border-left: 4px solid #000;
    position: absolute;
    top: -2px;
    left: -2px;
}
#features .features__power--detail::after{
    content: '';
    width: 25px;
    height: 25px;
    border-bottom: 4px solid #000;
    border-right: 4px solid #000;
    position: absolute;
    bottom: -2px;
    right: -2px;
}
#features .features__power--img{
    width: 35%;
    margin: 0 auto 34px;
}
#features .features__power--detail .detailTxt{
    width: 60%;
    text-align: center;
    margin: 0 auto;
}
#features .features__quality--detail{
    display: flex;
    justify-content: space-between;
}
#features .features__quality--img{
    width: 52%;
}
#features .features__quality--txt{
    width: 42%;
}
#features .features__quality--txt p{
    margin-bottom: 40px;
    line-height: 1.7;
}
#features .features__quality--txt p:last-of-type{
    margin: 0;
}
#features section.features__parkheat{
    max-width: none;
}
#features .features__parkheat--detail{
    width: 100%;
    max-width: none;
    background: #eeeeee;
    padding: 36px 0;
    margin-bottom: 95px;
}
#features .features__parkheat--detailInner{
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#features .features__parkheat--img{
    width: 38%;
}
#features .features__parkheat--detail ul{
    width: 56%;
}
#features .features__parkheat--detail li{
    width: 100%;
    position: relative;
    padding-left: 35px;
    line-height: 3;
    border-bottom: 1px solid #fff;
    font-size: 18px;
}
#features .features__parkheat--detail li:first-child{
    border-top: 1px solid #fff;
}
#features .features__parkheat--detail li::before{
    content: '';
    width: 22px;
    height: 22px;
    position: absolute;
    top: 50%;
    left: 0;
    background: url('../img/products/check.png') center/cover;
    transform: translateY(-50%);
}
#features .features__products{
    display: flex;
    justify-content: space-between;
}
#features .features__products--wrap{
    width: 47%;
}
#features .features__products--img{
    margin-bottom: 42px;
}
#features .features__products h3{
    width: 100%;
    text-align: left;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ff5f00;
    font-size: 32px;
}
#features .features__products h3 span{
    color: #ff5f00;
    font-size: 20px;
}
#features .features__products h3::before{
    content: none;
}
#features .features__products--txt p{
    line-height: 1.7;
}
@media screen and (max-width: 1024px){
    #features .features__head{
        background: url('../img/features/head_sp.jpg') center / cover;
    }
    #features h1{
        left: 5%;
    }
    #features h2{
        margin-bottom: 30px;
    }
    #features .features__power--detail{
        padding: 27px 5%;
    }
    #features .features__power--img{
        width: 100%;
        margin-bottom: 28px;
    }
    #features .features__power--detail .detailTxt{
        width: 100%;
        text-align: left;
    }
    #features .features__quality--detail{
        display: block;
    }
    #features .features__quality--img{
        width: 100%;
        margin-bottom: 27px;
    }
    #features .features__quality--txt{
        width: 100%;
    }
    #features .features__quality--txt p{
        margin-bottom: 27px;
    }
    #features .features__parkheat h2{
        margin-bottom: 110px;
    }
    #features .features__parkheat--img{
        width: 73%;
        margin: 0 auto;
    }
    #features .features__parkheat--img img{
        margin: -130px auto 0;
    }
    #features .features__parkheat--detail{
        padding: 0 5% 30px;
        margin-bottom: 40px;
    }
    #features .features__parkheat--detail ul{
        width: 100%;
    }
    #features .features__parkheat--detailInner{
        max-width: none;
        display: block;
    }
    #features .features__parkheat--detail li{
        width: auto;
        line-height: normal;
        padding: 15px 0 15px 35px;
    }
    #features .features__parkheat--detail li::before{
        top: 30px;
    }
    #features .features__products{
        display: block;
    }
    #features .features__products--wrap{
        width: 100%;
    }
    #features .features__products--img{
        margin-bottom: 28px;
    }
    #features .features__products h3{
        margin-bottom: 20px;
        padding-bottom: 20px;
        font-size: 20px;
    }
    #features .features__products h3 span{
        font-size: 16px;
    }
    #features .features__products--txt{
        margin-bottom: 44px;
    }
}

/* policy */
#policy .policy__head{
    background: url('../img/common/policy_head.jpg') center / cover;
}
#policy h1{
    color: #fff;
    position: absolute;
    top: 50%;
    left: 15%;
    transform: translateY(-50%);
}
#policy section:not(.policy__head){
    max-width: 800px;
}
#policy h2,
#policy h3,
#policy p{
    text-align: left;
}
#policy h2{
    font-size: 32px;
    margin-bottom: 40px;
}
#policy h3{
    font-size: 24px;
    margin-bottom: 5px;
}
#policy h3 span{
    color: #ff5f00;
    line-height: 2.2;
}
#policy ol > li{
    margin-bottom: 54px;
}
#policy p{
    line-height: 2.2;
}
#policy ul{
    margin: 20px 0 54px;
}
#policy ul > li{
    display: flex;
    margin-bottom: 20px;
}
#policy ul > li p{
    line-height: normal;
}
@media screen and (max-width: 1024px){
    #policy .policy__head{
        background: url('../img/common/policy_head_sp.jpg') center / cover;
    }
    #policy h2{
        font-size: 25px;
    }
    #policy h3{
        font-size: 18px;
        margin-bottom: 18px;
    }
    #policy p{
        font-size: 14px;
    }
    #policy ol > li{
        margin-bottom: 27px;
    }
    #policy ul{
        margin: 10px 0 27px;
    }
}

/* privacy */
#privacy .privacy__head{
    background: url('../img/common/policy_head.jpg') center / cover;
}
#privacy h1{
    color: #fff;
    position: absolute;
    top: 50%;
    left: 15%;
    transform: translateY(-50%);
}
#privacy section:not(.privacy__head){
    max-width: 800px;
}
#privacy h2,
#privacy p{
    text-align: left;
}
#privacy h2{
    font-size: 32px;
    margin-bottom: 40px;
}
#privacy ol > li{
    margin-bottom: 54px;
    line-height: 2;
}
#privacy ul > li{
    display: flex;
    margin-bottom: 36px;
    line-height: 2;
}
#privacy .privacy__address--wrap{
    width: 95%;
    margin: 0 auto;
    line-height: 2;
}
#privacy .privacy__address{
    padding: 35px 40px;
    border: 1px solid #000;
    margin-bottom: 40px;
}
@media screen and (max-width: 1024px){
    #privacy .privacy__head{
        background: url('../img/common/policy_head_sp.jpg') center / cover;
    }
    #privacy h1{
        left: 5%;
    }
    #privacy h2{
        font-size: 25px;
    }
    #privacy p{
        font-size: 14px;
    }
    #privacy ol > li{
        margin-bottom: 27px;
    }
    #privacy ul > li{
        margin-bottom: 18px;
    }
    #privacy .privacy__address{
        padding: 20px 5%;
        margin-bottom: 25px;
    }
}

/* catalogs */
#catalogs .catalogs__head{
    background: url('../img/common/catalogs_head.jpg') center / cover;
}
#catalogs h1{
    color: #fff;
    position: absolute;
    top: 50%;
    left: 15%;
    transform: translateY(-50%);
}
#catalogs h2{
    margin-bottom: 75px;
}
#catalogs h3{
    width: 196px;
    position: relative;
    padding: 0 10px;
    margin: 0 0 40px;
}
#catalogs h3::before,
#catalogs h3::after{
    content: '';
    width: 5px;
    height: 30px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
#catalogs h3::before{
    background: url('../img/common/h2_item01.png') center / cover;
    left: 0;
}
#catalogs h3::after{
    background: url('../img/common/h2_item02.png') center / cover;
    right: 0;
}
#catalogs ul{
    display: flex;
    flex-wrap: wrap;
    gap: 80px 60px;
}
#catalogs li{
    width: 205px;
}
#catalogs .catalogs__txt--category{
    width: 82px;
    text-align: center;
    font-size: 12px;
    border: 1px solid #000;
    padding: 5px 0;
    margin-top: 20px;
}
#catalogs .catalogs__txt--category.product{
    width: 106px;
}
#catalogs .catalogs__txt--category.others{
    width: 55px;
}
#catalogs h4{
    margin-top: 13px;
}
#catalogs ul:not(:last-of-type){
    margin-bottom: 86px;
}
#catalogs li a{
    display: flex;
    align-items: center;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 600;
}
#catalogs li a img{
    width: 30px;
    margin-left: 10px;
}
@media screen and (max-width: 1024px){
    #catalogs .catalogs__head{
        background: url('../img/common/catalogs_head.jpg') center / cover;
    }
    #catalogs h3{
        width: 150px;
        margin: 0 auto 30px;
    }
    #catalogs ul{
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 40px 27px;
    }
    #catalogs li{
        width: calc(100% / 2 - 15px);
    }
    #catalogs .catalogs__others{
        justify-content: center;
    }
}


.newsrelease .info {
    width: 960px;
    border-top: 1px solid #ccc;
}

.newsrelease .info li {
    padding: 15px 20px;
    font-size: 14px;
    line-height: 24px;
    border-bottom: 1px solid #ccc;
}

.newsrelease .info li .date {
    width: 124px;
    display: inline-block;
    color: #e60012;
}

.newsrelease .info li .icon_com {
    width: 100px;
    height: 22px;
    font-size: 12px;
    display: inline-block;
    text-align: center;
    color: #fff;
    background: #a7a7a7;
}

.newsrelease .info li p {
    padding-left: 37px;
    display: inline-block;
}

.newsrelease .info li a {
    text-decoration: none;
    display:inline;
    color: #000;
    cursor: pointer;
    box-sizing: border-box;
    text-decoration: underline;
}


@media screen and (max-width: 1024px){
    .newsrelease .info {
        width: 100%;
        border-top: 1px solid #ccc;
        margin: 0 0 100px;
    }

    .newsrelease .info li {
        padding: 3% 2%;
    }

    .newsrelease .info li .date {
        width: 28%;
    }

    .newsrelease .info li .icon_com {
        width: 26%;
        height: auto;
    }

    .newsrelease .info li p {
        width: 100%;
        padding: 1% 0 0 0;
        clear: both;
    }
}
