@charset "UTF-8";

/*------------------------------------------------------
	catalog
-------------------------------------------------------*/

#mv {
    height: 380px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}
#mv::before {
    content: "";
    width: 100%;
    height: 100%;
    background: url(../img/catalog/mv_bg-sp.jpg) center/cover no-repeat;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(1.15);
    transition: 3s;
}
#mv.on::before {
    transform: scale(1);
}
#mv .u-inner {
    height: 100%;
    display: flex;
    align-items: flex-end;
    z-index: 1;
}
#mv .ttl {
    width: 100%;
    height: 100%;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#mv .ttl .en {
    margin-left: -5px;
    font-size: 40px;
    font-weight: 500;
    order: -1;
}
@media screen and (min-width: 768px) {
    #mv {
        height: 393px;
        margin-top: 80px;
    }
    #mv::before {
        background-image: url(../img/catalog/mv_bg-pc.jpg);
    }
    #mv .u-inner {
        width: 100%;
        max-width: 1440px;
    }
    #mv .ttl .en {
        font-size: 46px;
    }
}

.catalog__body{
    line-height: 1.8;
}
.catalog__inner {
    padding: 0;
}
@media screen and (min-width: 768px){
    .catalog__inner {
        max-width: 1100px;
        width: 100%;
        padding: 0 30px;
        margin: 0 auto;
    }
}
.catalog__intro {
    text-align: center;
    margin: 60px 0;
}
@media screen and (min-width: 768px){
    .catalog__introTxt {
    font-size: 20px;
}
}
.catalog__item {
    padding-bottom: 50px;
}
@media screen and (min-width: 768px){
    .catalog__item {
        padding-bottom: 115px;
    }
}
.catalog__item:last-child {
        padding-bottom: 0px;
}
@media screen and (min-width: 768px){
    .catalog__item:last-child {
        padding-bottom: 36px;
    }
}
.catalog__item_ttlWrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin: 0 20px;
    padding-top: 20px;
    border-top: #1C1C1C 1px solid;
}
@media screen and (min-width: 768px){
    .catalog__item_ttlWrap {
        flex-direction: row;
        align-items: center;
        padding-top: 16px;
        margin: 0;
        gap: 36px;
    }
}
.catalog__item_ttl {
    font-size: 34px;
}
.catalog__item_subTtl {
    line-height: 1.7;
}
@media screen and (min-width: 768px){
    .catalog__item_subTtl {
    font-size: 16px;
}
}
.catalog__item_contents {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
    align-items: flex-start;
}
@media screen and (min-width: 768px){
    .catalog__item_contents {
    gap: 40px;
    margin-top: 50px;
    align-items: center;
    flex-direction: column;
    }
}
@media screen and (min-width: 960px){
    .catalog__item_contents {
    flex-direction: row;
    }
}
.catalog__item_content-bg{
    background-color: #FDFDF9;
}
.catalog__item_img {
    padding: 0 20px;
}
@media screen and (min-width: 768px){
    .catalog__item_img {
    padding: 0;
    width: 100%;
}
}
@media screen and (min-width: 960px){
    .catalog__item_img {
    width: 388px;
}
}
.catalog__item_txtWrap {
    padding: 20px;
}
@media screen and (min-width: 768px){
    .catalog__item_txtWrap {
    padding: 30px;
}
}
.catalog__item_info {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 20px;
}
@media screen and (min-width: 768px){
    .catalog__item_info {
        flex-direction: row;
}
}
.catalog__item_info_ttl{
    color: #fff;
    background-color: #1c1c1c;
    padding: 4px 8px;
    font-weight: 500;
}
@media screen and (min-width: 768px){
    .catalog__item_info_dt span{
    font-size: 16px;
    }
}
.info__dd_item::before {
    content: "・"
}






/* フォームcss */

.contact__body {
    padding: 60px 0 80px 0;
}
.contact__body__ttl{
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}
.contact__body__intro {
    font-weight: 500;
}
@media screen and (min-width: 768px) {
    .contact__body {
        padding: 100px 0 120px;
        font-size: 16px;
    }
    .contact__body__ttl{
    font-size: 20px;
    margin-bottom: 22px;
}
    .contact__body > .u-inner {
        max-width: 700px;
    }
}
.contact__complete__ttl {
    margin-bottom: 40px;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.5;
}
.contact__complete__txt {
    line-height: 1.7;
}
.contact__complete__txt a:hover {
    text-decoration: underline;
}
.contact__complete__link {
    width: 100%;
    max-width: 300px;
    height: 50px;
    margin: 60px auto 0;
    background-color: #fff;
    border: 1px solid #1c1c1c;
    border-radius: 40px;
    color: #1c1c1c;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}
.contact__complete__link:hover {
    background-color: #1c1c1c;
    color: #fff;
}
@media screen and (min-width: 768px) {
    .contact__complete > .u-inner {
        max-width: 1040px;
    }
    .contact__complete__ttl {
        margin-bottom: 50px;
        font-size: 24px;
    }
    .contact__complete__link {
        margin: 100px auto 0 0;
    }
}