@charset "UTF-8";

/* common /////////////////////////////////////////////////////////////////////////////////////////// */

/* color */
.c1,.c1 a{
    color: var(--c1);
}
.c2,.c2 a{
    color: var(--c2);
}
.c3,.c3 a{
    color: var(--c3);
}
.cw,.cw a{
    color: #ffffff;
}
.cb,.cb a{
    color: var(--cb);
}

/* bg */
.bg1{
    background-color: var(--c1);
}
.bg2{
    background-color: var(--c2);
}
.bg3{
    background-color: var(--c3);
}
.bgw{
    background-color: #fff;
}
.bgp1{
    background-image: url(../img/bgp1.png);
}
.bgp2{
    background-image: url(../img/bgp2.png);
}
.bgp3{
    background-image: url(../img/bgp3.png);
}

/* font-family */
.ffyg{
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}
.ffza{
    font-family: 'Zen Antique', serif;
    font-weight: 400;
}

/* modalmenu */

#header_modalmenu_check {
    display: none;
}

.header_modalmenu_btn {
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;

    background-color: var(--c1);

    cursor: pointer;
    position: fixed;
    top: 0;
    right: 0;

	z-index: 90000;
}

.header_modalmenu_btn .box {
    display: inline-block;
    width: 30px;
    height: 20px;
    position: absolute;
    top: 20px;
    left: 15px;
}

.header_modalmenu_btn .box span {
    position: absolute;
    left: 0;
    top: calc((100% - 1px)/2);
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;

    transition: all .3s;
}

.header_modalmenu_btn .top {
    transform: translateY(-13px);
}

.header_modalmenu_btn .bottom {
    transform: translateY(13px);
}

#header_modalmenu_check:checked ~ .header_modalmenu_btn .top {
    transform: rotate(-135deg);
}

#header_modalmenu_check:checked ~ .header_modalmenu_btn .center {
    opacity: 0;
}

#header_modalmenu_check:checked ~ .header_modalmenu_btn .bottom {
    transform: rotate(135deg);
}

#header_modalmenu_close_bg {
    width: 100%;
    height: 100%;

    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.6);

	z-index: -1;
}

#header_modalmenu_area {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;

    opacity: 0;
    pointer-events: none;
    transition: all .3s;
    display: none;

	z-index: 80000;

    transition: all .3s;
}

#header_modalmenu_check:checked ~ #header_modalmenu_area {
    opacity: 1;
    pointer-events: all;
}

.header_modalmenu_areainner {
    height: 100%;
    
    transform: translateY(-60px);
    background-color: #ffffff;

    transition: all .2s;
}


#header_modalmenu_check:checked ~ #header_modalmenu_area .header_modalmenu_areainner {
    transform: translateY(0);

}

.header_modalmenu_infobar{
    height: 60px;
    padding: 10px 60px 10px 3%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header_modalmenu_nav{
    padding: 20px;
}

.header_modalmenu_nav ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}

.header_modalmenu_nav ul li{
    width: 100%;
    height: 100px;
    background-image: url(../img/bgp1.png);
}


.header_modalmenu_nav ul li:nth-of-type(6){
    background-image: none;
    background-color: var(--c1);
}

.header_modalmenu_nav ul li a{
    display: block;
    width: 100%;
    height: 100%;
    padding-top: 65px;

    font-size: 1.6rem;
    text-align: center;

    background-image: url(../img/cmn_icon_top.svg);
    background-repeat: no-repeat;
    background-size: auto 30px;
    background-position: center top 20px;
}

.header_modalmenu_nav ul li a:hover{
    color: #fff;
}

.header_modalmenu_nav ul li:nth-of-type(2) a{
    background-image: url(../img/cmn_icon_about.svg);
}

.header_modalmenu_nav ul li:nth-of-type(3) a{
    background-image: url(../img/cmn_icon_kitaya.svg);
}

.header_modalmenu_nav ul li:nth-of-type(4) a{
    background-image: url(../img/cmn_icon_lineup.svg);
}

.header_modalmenu_nav ul li:nth-of-type(5) a{
    background-image: url(../img/cmn_icon_contact.svg);
}

.header_modalmenu_nav ul li:nth-of-type(6) a{
    background-image: url(../img/cmn_icon_shop.svg);
    background-size: auto 40px;
    background-position: center top 15px;
}

/* scrollbar */
::-webkit-scrollbar {
    height: 10px;
    width: 10px;
    background-color: #F4E5B8;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #E0B532;
}

/* cmn ///////////////////////////////////// */

/* header */

.header_infobar{
    height: 120px;
    padding-left: 30px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100000;
}

.header_logo{
    height: 58px;
}

.header_logo > a{
    display: block;
    height: 100%;
}

.header_logo > a > img{
    max-height: 100%;
}

.header_right{
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header_right_left{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.header_phone{
    display: flex;
    align-items: flex-end;
}

.header_phone > a{
    display: inline-block;
    padding-left: 27px;
    background-image: url(../img/cmn_icon_phone.svg);
    background-repeat: no-repeat;
    background-size: auto 26px;
    background-position: left bottom 3px;
}

.header_phone > p {
    line-height: 1.3;
    margin-left: 20px;
}

.header_nav ul{
    display: flex;
}

.header_nav ul li{
    margin-left: 30px;
}

.header_nav ul li a{
    display: block;
    padding-left: 35px;
    background-image: url(../img/cmn_icon_about.svg);
    background-repeat: no-repeat;
    background-size: 24px auto;
    background-position: left center;
}

.header_nav ul li:nth-of-type(2) a{
    background-image: url(../img/cmn_icon_kitaya.svg);
}

.header_nav ul li:nth-of-type(3) a{
    background-image: url(../img/cmn_icon_lineup.svg);
}

.header_nav ul li:nth-of-type(4) a{
    background-image: url(../img/cmn_icon_contact.svg);
}

.header_shop_link{
    width: 120px;
    height: 120px;
    padding-top: 70px;
    border: solid 3px var(--c1);

    background-image: url(../img/cmn_icon_shop.svg);
    background-repeat: no-repeat;
    background-position: center 18.5px;
}

.header_infobar a:hover{
    color: var(--c1);
}

.header_phone > a:hover{
    background-image: url(../img/cmn_icon_phone_red.svg);
}

.header_nav ul li a:hover{
    background-image: url(../img/cmn_icon_about_red.svg);
}

.header_nav ul li:nth-of-type(2) a:hover{
    background-image: url(../img/cmn_icon_kitaya_red.svg);
}

.header_nav ul li:nth-of-type(3) a:hover{
    background-image: url(../img/cmn_icon_lineup_red.svg);
}

.header_nav ul li:nth-of-type(4) a:hover{
    background-image: url(../img/cmn_icon_contact_red.svg);
}

.header_shop_link:hover{
    background-image: url(../img/cmn_icon_shop_red.svg);
    background-color: #fff;
}

/* cmn_maintitle */

.cmn_mainimg{
    height: 280px;
    background-image: url(../img/about_mainimg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.cmn_maintitle{
    width: 140px;
    height: 320px;
    padding: 10px 0;

    box-shadow: 2px 2px 5px rgba(0, 0, 0, .3);
}

.cmn_maintitle > h1{
    width: 100%;
    height: 100%;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;

    display: flex;
    justify-content: center;
    align-items: center;
}


/* footer */

.footer_top ul{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.footer_top ul li{
    position: relative;
}

.footer_top ul li::after{
    content: '|';
}

.footer_top ul li:last-of-type:after{
    content: none;
}

.footer_top ul li a{
    display: inline-block;
    padding: 0 20px;
}

.footer_top ul li:last-of-type a{
    padding-right: 35px;
    background-image: url(../img/cmn_icon_link.svg);
    background-repeat: no-repeat;
    background-position: right 20px center;
}

.footer_top ul li:last-of-type a:hover{
    background-image: url(../img/cmn_icon_link_red.svg);
}

.borderLine{
    width: 100%;
    height: 1px;
    background-color: var(--cb);
}


.footer_middle > div{
    display: flex;
    justify-content: space-between;
}

.footer_logo{
    max-width: 280px;
}

.footer_middle_right{
    width: 50%;
}

.footer_bottom > div{
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;
}

.footer_link_facebook{
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
}

.footer_link_unico{
    opacity: .3;

    position: absolute;
    bottom: 10px;
    right: 30px;
}

.footer_gotop {
    position: fixed;
    right: 30px;
    bottom: 40px;
    display: none;
    z-index: 90000;
}

.footer_gotop a{
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 30px;
    background-color: var(--c1);
    background-image: url(../img/footer_gotop_icon.svg);
    background-repeat: no-repeat;
    background-position: center center;
}

.footer_gotop a:hover{
    opacity: 1;
    background-position: center top 10px;
}

/* cmn_tit */

.cmn_tit_1st > h2{
    display: inline-block;
    padding-left: 35px;
    background-image: url(../img/cmn_tit_1st_deco.png);
    background-repeat: no-repeat;
    background-size: 23px 24px;
    background-position: 0 5px;
}

.cmn_tit_2nd > h3{
    padding: 2px 0 3px 20px;
    line-height: 25px;
    border-bottom: solid 1px var(--cb);

    position: relative;
}

.cmn_tit_2nd > h3::before{
    content: "";
    width: 5px;
    height: 30px;

    background-color: var(--cb);

    position: absolute;
    left: 0px;
    bottom: 0px;
}

/* cmn_btn */

.cmn_btn{
}

.cmn_btn a,
.contact_form .contact_btn_area button{
    display: block;
    width: 100%;
    max-width: 400px;
    height: 60px;
    border: none;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, .3);

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    z-index: 0;

    transition: none;
}

.cmn_btn a span,
.contact_form .contact_btn_area button span{
    padding-left: 10px;
    padding-right: 25px;

    background-image: url(../img/cmn_btn_deco.svg);
    background-repeat: no-repeat;
    background-position: right 1px center;

    transition: all .2s;
}

.cmn_btn a::before,
.contact_form .contact_btn_area button::before{
    content: '';
    width: 10px;
    height: 100%;

    background-image: url(../img/bgp2.png);

    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
}

.cmn_btn a:hover,
.contact_form .contact_btn_area button:hover{
    color: var(--cb);
}

.cmn_btn a:hover span,
.contact_form .contact_btn_area button:hover span{
    background-image: url(../img/cmn_btn_deco_black.svg);
}

.cmn_btn a:hover::before,
.contact_form .contact_btn_area button:hover::before{
    width: 100%;
}

/* cmn_dl */

.cmn_dl > div {
    margin-bottom: 10px;
    display: flex;
    line-height: 20px;
}

.cmn_dl > div:last-of-type{
    margin-bottom: 0;
}

.cmn_dl > div dt{
    width: 240px;
    flex-shrink: 0;

    color: #fff;
    background-image: url(../img/bgp1.png);

    display: flex;
    align-items: center;
    padding: 15px 20px;
}

.cmn_dl > div dd{
    width: 100%;

    display: flex;
    align-items: center;
    padding: 15px 20px;
}

/* cmn_link_shop */

.cmn_link_shop a{
    display: block;
    width: 100%;

    position: relative;

    pointer-events: none;
}

.cmn_link_shop a > figure{
    display: flex;

    position: absolute;
    top: 0px;
    left: 0px;
}

.cmn_link_shop a > figure::before{
    content: '';
    width: 100%;
    height: 100%;

    background-color: rgba(0, 0, 0, .5);

    position: absolute;
    top: 0px;
    left: 0px;
}

.cmn_link_shop a > figure > img{
    width: 50%;
}

.cmn_link_shop a > div{
    pointer-events: auto;
    
    position: relative;
    z-index: 1;
}

.cmn_link_shop a > div > div{
    padding: 10px;
}

.cmn_link_shop a > div > div > div{
    border: solid 1px var(--c2);
}

.cmn_link_shop a > div > div > div > span{
    padding-right: 20px;
    background-image: url(../img/cmn_btn_deco.svg);
    background-repeat: no-repeat;
    background-position: right 1px center;
}

.cmn_link_shop a:hover > figure::before{
    background-color: transparent;
}

/* cmn_shopdata */

.cmn_shopdata > div{
    margin-bottom: 10px;
    display: flex;
	align-items: flex-start;
    line-height: 20px;
}

.cmn_shopdata > div:last-of-type{
    margin-bottom: 0;
}

.cmn_shopdata > div > dt{
    width: 80px;
    padding: 0 10px;
    text-align-last: justify;

    flex-shrink: 0;
}

.cmn_shopdata > div:first-of-type > dd{
    width: 100%;

}

.cmn_shopdata > div:first-of-type > dd > a{
    padding-right: 25px;

    background-image: url(../img/cmn_shopdata_adress.svg);
    background-repeat: no-repeat;
    background-position: right center;
}

/* cmn_detail */

.cmn_detail > a{
    padding-right: 17px;

    background-image: url(../img/cmn_detail_arr_02.svg);
    background-repeat: no-repeat;
    background-position: right 1px center;
}

.cmn_detail > a:hover{
    background-image: url(../img/cmn_detail_arr_02_red.svg);
}


/* home ///////////////////////////////////// */

/* home_mainimg */

.home_mainimg{
    width: 100%;
    height: 380px;
    margin-left: auto;
    margin-bottom: 200px;

    position: relative;
}

.home_mainimg > .swiper_outer{
    width: 85.7%;
    margin-left: auto;
}

.home_body .swiper-slide{
    height: 580px;
}

.home_body .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home_body .swiper-pagination{
    text-align: right;
    padding-right: 20px;
}

.home_body .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{
    width: 10px;
    height: 10px;
    margin: 0 7px;
    background-color: #fff;
    opacity: 1;
}

.home_body .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background-color: var(--c1);
}

.home_maincopy{
    position: absolute;
    top: 50px;
    left: 5.7%;
    z-index: 1;

    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    pointer-events: none;
}

.home_maincopy_01{
    width: 140px;
    height: 440px;
    padding: 10px 0;

    box-shadow: 2px 2px 5px rgba(0, 0, 0, .3);

    position: relative;
    z-index: 1;

    opacity: 0;
}

.home_maincopy_01 > div{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

}

.home_maincopy_02{
    width: 200px;
    height: 400px;
    padding: 30px 50px 30px 0;

    box-shadow: 2px 2px 5px rgba(0, 0, 0, .3);
    transform: translate(20px, 110px);

    opacity: 0;
}

.copyanime .ca{
    opacity: 0;
}

.copy02_anime{
    animation: copy02 2s forwards;
    animation-delay: 4.5s;
}

@keyframes copy02{
    0%{opacity: 0;}
    100%{opacity: 1;transform: translate(20px, 80px);}
}

/* home_ kitaya */

.home_kitaya_items{
    display: flex;
    justify-content: space-between;
}

.home_kitaya_item{
    width: 45%;
    position: relative;
}

.home_kitaya_item > figure{
    width: 100%;
    height: 300px;
}

.home_kitaya_item > div{
    width: 80px;
    height: 350px;
    padding-top: 10px;

    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;

    position: absolute;
    top: 200px;
    right: 30px;
}

.home_kitaya_item > div > h2{
    display: flex;
    align-items: center;
}

.home_kitaya_item > p{
    width: 100%;
    height: 250px;
    padding: 50px 140px 0 0;

    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}

.home_kitaya_item > p > span > a{
    padding-bottom: 17px;
    background-image: url(../img/cmn_detail_arr.svg);
    background-repeat: no-repeat;
    background-position: center bottom;
}

.home_kitaya_item > p > span > a:hover{
    background-image: url(../img/cmn_detail_arr_red.svg);
}

/* home_lineup */

.home_lineup > .cmn_content > ul{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 50px 5%;
}

.home_lineup > .cmn_content > ul > li > p > a{
    padding-right: 17px;
    background-image: url(../img/cmn_detail_arr_02.svg);
    background-repeat: no-repeat;
    background-position: right 1px center;
}

.home_lineup > .cmn_content > ul > li > p > a:hover{
    background-image: url(../img/cmn_detail_arr_02_red.svg);
}

/* home_news */

.home_news .cmn_content{
    display: flex;
    justify-content: space-between;
}

.home_news .cmn_content > div{
    width: 45%;
    height: 490px;
}

.home_news .cmn_content > div > h3{
    height: 40px;
    background-color: #000;
}

.home_news_news > ul{
    height: calc(100% - 40px);
    padding: 20px 30px;
    overflow-y: scroll;
}

.home_news_news > ul > li > h4,
.home_news_news > ul > li > .fs12{
    padding-left: 10px;
    line-height: 20px;

    position: relative;
}

.home_news_news > ul > li > h4::before,
.home_news_news > ul > li > .fs12::before{
    content: '';
    width: 3px;
    height: 100%;

    background-image: url(../img/bgp2.png);

    position: absolute;
    top: 0px;
    left: 0px;
}

/* home_about */

.home_about .cmn_content > div{
    width: 40%;
}

.home_about .cmn_content > div h2{
    line-height: 60px;
    padding-left: 40px;
}

.home_about .cmn_content > figure{
    width: 50vw;
    height: 500px;

    position: absolute;
    top: 100px;
    right: 0px;
}

/* home_shoplist */

.home_shoplist_list{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 45px;
}

.home_shoplist_list > li{
    padding-bottom: 40px;
}

.home_shoplist_list > li .cmn_shopdata{
    border-top: solid 1px var(--cb);
}

.home_shoplist_list > li .cmn_shopdata > div > dt{
    width: 20px;
    padding: 0;
    text-align-last: auto;
}

.home_shoplist_list > li .cmn_detail{
    width: 100%;
    position: absolute;
    bottom: 0px;
    right: 0px;
}


/* about ///////////////////////////////////// */

.about_copy{
    width: 57.1%;
    margin-left: auto;

    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;

    display: flex;
    flex-direction: column;
    justify-content: center;
}


.about_copy p:nth-of-type(1){
    animation-delay: 1.0s;
}
.about_copy p:nth-of-type(2){
    animation-delay: 1.5s;
}
.about_copy p:nth-of-type(3){
    animation-delay: 2.0s;
}
.about_copy small{
    animation-delay: 2.5s;
}

.about_subimg{
    width: 53.6%;
    height: 400px;
    margin-top: -230px;
}

.about_about .cmn_maxbox{
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about_about .cmn_maxbox > div{
    width: 45%;
}

.about_about > figure{
    width: 50%;
    height: 500px;

    position: absolute;
    top: 0px;
    right: 0px;
}

.about_greeting .cmn_content{
    display: flex;
    justify-content: space-between;
}

.about_greeting .cmn_content > figure{
    width: 50%;
    height: 350px;
}

.about_greeting .cmn_content > p{
    width: 45%;
}



.about_body .swiper-slide{
    width: auto;
}

.about_body .swiper-slide p{
    width: 100%;
    padding-right: 10px;

    line-height: 40px;
    background-image: linear-gradient(transparent, #333);

    position: absolute;
    bottom: 0px;
    left: 0px;

}

.about_body .swiper-slide img{
    width: 350px;
    height: 250px;
    object-fit: cover;
}

.about_information .cmn_maxbox{
    display: flex;
    justify-content: space-between;
}

.about_company{
    width: 55%;
}

.about_history{
    width: 45%;
}

.about_information .cmn_maxbox .cmn_dl > div dt{
    width: 120px;
}

.about_access .cmn_maxbox{
    min-height: 540px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about_access .cmn_maxbox > div{
    width: 35%;
    margin-left: auto;
}

.about_access iframe{
    width: 50%;
    height: 540px;

    position: absolute;
    top: 0px;
    left: 0px;
}

/* kitaya ///////////////////////////////////// */

.kitaya_body .cmn_mainimg{
    background-image: url(../img/kitaya_mainimg.jpg);
}

.kitaya_item_description > div{
    width: 35%;
}

.kitaya_item_description > div > figure{
    height: 140px;
}

.kitaya_item_description > div > figure > img{
    height: 100%
}

.kitaya_item_description > div > p{
    width: 100%;
    height: 300px;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}

.kitaya_item_mainimg{
    width: 50%;
    height: 500px;

    position: absolute;
    top: 100px;
    right: 0px;
}

.kitaya_item_title{
    width: 100px;
    height: 350px;

    position: absolute;
    top: 0px;
    left: -50px;
}

.kitaya_item_title > h2{
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;

    display: flex;
    align-items: center;
}

.kitaya_item_purpose .cmn_maxbox{
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}

.kitaya_item_purpose .cmn_maxbox > div{
    width: 45%;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.kitaya_item_purpose .cmn_maxbox > figure{
    width: 50%;
    height: 300px;
}

.kitaya_item_list .cmn_maxbox > ul{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 40px;
}

.kitaya_item_list .cmn_maxbox > ul li figure{
    width: 100%;
    height: 150px;
}

/* lineup ///////////////////////////////////// */

.lineup_body .cmn_mainimg{
    background-image: url(../img/lineup_mainimg.jpg);
}

.lineup_items > .lineup_item > figure{
    width: 50%;
    height: 500px;

    position: absolute;
    top: 0px;
    left: 0px;
}

.lineup_items > .lineup_item:nth-of-type(2n) > figure{
    left: auto;
    right: 0px;
}

.lineup_items > .lineup_item > .cmn_maxbox > div{
    width: 45%;
    height: 500px;
}

.lineup_items > .lineup_item:nth-of-type(2n-1) > .cmn_maxbox > div{
    margin-left: auto;
}

.lineup_shimabrands{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px 50px;
}

.lineup_shimabrand_description{
    display: flex;
}

.lineup_shimabrand_description > a{
    flex-shrink: 0;
}

.lineup_shimabrand_description img{
    width: 74px;
}

.lineup_item_07 .cmn_content_top{
    display: flex;
    justify-content: space-between;
}

.lineup_item_07 .cmn_content_top > figure{
    margin-left: 50px;
    width: 300px;
    height: 250px;
    flex-shrink: 0;
}

.lineup_item_07 .cmn_content_bottom > div{
    display: flex;
    justify-content: space-between;
}

.lineup_item_07 .cmn_content_bottom > div figure{
    width: 48%;
    height: 250px;
}

/* contact ///////////////////////////////////// */

.contact_body .cmn_mainimg{
    background-image: url(../img/contact_mainimg.jpg);
}

.contact_data a{
    padding-left: 40px;
    background-image: url(../img/cmn_icon_phone_black.svg);
    background-repeat: no-repeat;
    background-position: left bottom 10px;
}

/* contact_form */

div.mfp_ok{
    display: none !important;
}

.contact_body .cmn_dl > div dt{
    width: 300px;
    position: relative;
}

.attention{
    color: var(--cr);
}

.required{
    display: inline-block;
    width: 40px;
    height: 20px;
    font-size: 1.2rem;
    color: #ffffff;
    background-color: var(--cr);
    text-align: center;
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
}

.reenter{
    font-size: 1.5rem;
    display: inline-block;
    color: var(--cr);
    padding-left: 10px;
}

.postMark{
    color: var(--cb);
}

.contact_body .cmn_dl > div dd{
    display: block;
    width: 700px;
}

.contact_form .cmn_dl .select_box{
    width: 300px;
    position: relative;
}

.contact_form .cmn_dl .select_box select{
    width: 100%;
    height: 40px;
}

.contact_form .cmn_dl .select_box::after{
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 13.0px 7.5px 0 7.5px;
    border-color: #808080 transparent transparent transparent;
    content: "";
    display: inline-block;
    pointer-events: none;
    position: absolute;
    top: 14px;
    right: 10px;
}

.contact_form .cmn_dl select{
    width: 100%;
    height: 100%;
    padding: 0 20px;
    border: solid 1px var(--cf);
    border-radius: 0;
    appearance: none;
    -webkit-appearance: none;
    background-color: #ffffff;
}

.contact_form .cmn_dl input{
    width: 100%;
    height: 40px;
    padding: 0 20px;
    border: solid 1px var(--cf);
    border-radius: 0;
    appearance: none;
    -webkit-appearance: none;
    margin: 0;
}

.contact_form .cmn_dl .input01{
    width: 300px
}

.contact_form .cmn_dl .input02{
    width: calc(100% - 70px);
    margin-bottom: 10px;
}

.contact_form .cmn_dl .input03{
    width: calc(100% - 70px);
}

.contact_form .cmn_dl .input04{
    width: 200px;
    margin-left: 10px;
    margin-bottom: 10px;
}

.contact_form .cmn_dl textarea{
    width: 100% !important;
    height: 210px !important;
    padding: 10px 20px;
    border: solid 1px var(--cf);
    border-radius: 0;
    appearance: none;
    -webkit-appearance: none;
}

.contact_privacy > div{
    height: 200px;
    padding: 40px 30px;
    overflow-y: scroll;
    border: solid 1px var(--cf);
}

.contact_privacy_content > div{
    padding: 20px 30px;
}

.privacy_check{
    max-width: 500px;
    margin: 0 auto;
}

.contact_form .privacy_check input{
    width: 20px;
    height: 20px;
    border: none;
    margin-right: 10px;
}

.privacy_check label{
    width: 100%;
    height: 80px;

    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;
}

.contact_form .contact_btn_area{
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-around;
}

.contact_form .contact_btn_area button:nth-of-type(1){
    margin-left: 20px;
}

.contact_form .contact_btn_area button:nth-of-type(2) span{
    background-image: url(../img/cmn_btn_deco_black.svg);
}