@charset "UTF-8";


main {
    padding-top: 14px;
    background: #fff;
    color: #000;
}

main p {
    margin: 0;
}

.cat_attention {
    padding-bottom: 70px;
}

/* -----------------------------------------------
category_title
----------------------------------------------- */
.category_title .text_wrap h2 {
    font-weight: bold;
    line-height: 1.47;
}

.category_title .text_wrap h2 span {
    display: block;
    color: #009CD0;
    font-weight: bold;
    font-family: 'Inter', sans-serif;
}

.category_title .text_wrap p {
    font-weight: 500;
}

@media screen and (max-width: 767px) {
    .category_title {
        margin-top: 11px;
    }

    .category_title .text_wrap {
        margin-top: 10px;
    }

    .category_title .text_wrap h2 {
        font-size: 3.4rem;
    }

    .category_title .text_wrap h2 span {
        margin-top: 7px;
        font-size: 1.6rem;
    }

    .category_title .text_wrap p {
        font-size: 1.4rem;
        line-height: 1.85;
        margin-top: 15px;
    }
}

@media screen and (min-width: 768px) {
    .category_title {
        position: relative;
        width: 100%;
        height: 460px;
        margin-top: 10px;
    }

    .category_title .img {
        position: absolute;
        top: 0;
        right: 0;
        width: 65.15%;
        height: 100%;
        overflow: hidden;
    }
    
    .category_title img {
        height: 100%;
        border-radius: 8px 0 0 8px;
        position: absolute;
        left: 0;
        top: 0;
        width: auto;
        max-width: none;
    }
    
    .category_title .inner_wrap {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 100%;
    }

    /* デザイン通りの場合 */
    /* .category_title .text_wrap {
        position: relative;
        width: 100%;
        height: 100%;
        padding-top: 96px;
    }

    .category_title .text_wrap p {
        position: absolute;
        bottom: -1px;
        padding: 30px 68px 30px 0;
        background: #FFFFFF;
        border-radius: 0 8px 0 0;
    } */

    /* テキストをひとまとめにする場合 */
    .category_title .inner_wrap {
        height: auto;
    }

    .category_title .text_wrap {
        display: inline-block;
        padding: 30px 50px 30px 0;
        background: rgba(255,255,255,.9);
        border-radius: 0 8px 8px 0;
        /* width: 568px; */
    }

    .category_title .text_wrap p {
        margin-top: 50px;
    }

    .category_title .text_wrap h2 {
        font-size: 48px;
    }

    .category_title .text_wrap h2 span {
        margin-top: 9px;
        font-size: 20px;
    }

    .category_title .text_wrap p {
        font-size: 16px;
        line-height: 2;
    }
}

@media screen and (max-width: 1000px) and (min-width: 768px) {
    .category_title .text_wrap {
        width: 568px;
    }
}

@media screen and (min-width: 1366px) {
    /* .category_title {
        padding-top: 23.5%;
        height: 0;
    }

    .category_title img {
        width: 100%;
        height: auto;
    } */
}

/* -----------------------------------------------
link_wrap
----------------------------------------------- */
.link_wrap {
    background-color: #E8F6FB;
}

.link_wrap li a {
    background-color: #fff;
    border: 1px solid #009CD0;
    border-radius: 8px;
    width: 100%;
    display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.link_wrap li a span {
    display: inline-block;
    font-weight: bold;
}

@media screen and (max-width: 767px) {
    .link_wrap {
        margin-top: 46px;
        padding: 30px 0;
    }

    .link_wrap li {
        width: 100%;
    }
    
    .link_wrap li:not(:first-child) {
        margin-top: 10px;
    }

    .link_wrap li a {
        position: relative;
        height: 50px;
    }

    .link_wrap li a::after {
        content: '';
        display: inline-block;
        background-image: url(../img/common/icon_arrow.svg);
        background-size: contain;
        background-repeat: no-repeat;
        position: absolute;
        width: 18px;
        height: 18px;
        left: 15px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .link_wrap li a span {
        font-size: 1.4rem;
    }
}

@media screen and (min-width: 768px) {
    .link_wrap {
        margin-top: 60px;
        padding: 60px 0;
    }

    .link_wrap ul {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-align-items: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }

    .link_wrap li {
        width: 49.21%;
    }
    
    .link_wrap li:nth-child(n + 3) {
        margin-top: 20px;
    }

    .link_wrap li a {
        height: 70px;
    }

    .link_wrap li a span {
        position: relative;
        padding-left: 27px;
        font-size: 18px;
    }

    .link_wrap li a span::after {
        content: '';
        display: inline-block;
        background-image: url(../img/common/icon_arrow.svg);
        background-size: contain;
        background-repeat: no-repeat;
        position: absolute;
        width: 18px;
        height: 18px;
        left: 0;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

/* -----------------------------------------------
cat_section
----------------------------------------------- */
.anc_item_wrap ul {
    display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}

.anc_item_wrap li a {
    display: block;
    width: 100%;
    background-color: #009CD0;
    display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
    position: relative;
}

.anc_item_wrap li a::after {
    content: '';
    display: inline-block;
    -webkit-transform: translateY(-50%) rotate(135deg);
    transform: translateY(-50%) rotate(135deg);
    position: absolute;
    top: 50%;
    right: 7.5%;
}

.anc_item_wrap li span {
    font-weight: bold;
    color: #fff;
}

.cat_item .img img {
    width: auto;
    display: block;
    border-radius: 0 8px 8px 0;
}

.cat_item:nth-child(even) .img img {
    border-radius: 8px 0 0 8px;
}

.cat_item .text {
    background-color: rgba(255,255,255,.9);
    border-radius: 8px 0 0 8px;
}

.cat_item:nth-child(even) .text {
    border-radius: 0 8px 8px 0;
}

.cat_item .text h3 {
    font-weight: bold;
}

.cat_item .text p {
    font-weight: 500;
}

.cat_item .links a {
    height: 50px;
    display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.cat_item .links a:first-child {
    background-color: #009CD0;
    color: #fff;
}

.cat_item .links a:nth-child(2) {
    background-color: #fff;
    border: 1px solid #009CD0;
    color: #000;
    /* display: none; */
}

.cat_item .links a span {
    font-weight: bold;
    position: relative;
    display: block;
}

.cat_section .cat_column {
    -webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}

.cat_section .fs-pt-column__item {
    border: 1px solid #E5E5E5;
    border-radius: 8px;
}

.cat_section .fs-pt-column__item .img img {
    border-radius: 8px 8px 0 0;
}

.cat_section .fs-pt-column__item .text span {
    display: block;
    font-weight: bold;
    text-align: center;
}

.cat_section .fs-pt-column__item .links a {
    display: block;
    width: 100%;
    margin: 0;
    display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.cat_section .fs-pt-column__item .links a:first-child {
    background-color: #009CD0;
    color: #fff;
}

.cat_section .fs-pt-column__item .links a:nth-child(2) {
    background-color: #fff;
    border: 1px solid #009CD0;
    color: #000;
    display: none;
}

.cat_section .fs-pt-column__item .links a span {
    display: block;
    font-weight: bold;
    position: relative;
    margin-top: 0;
}

.cat_section .fs-pt-column__item .links a span::after {
    content: '';
    display: inline-block;
    background-image: url(../img/common/icon_arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    width: 16px;
    height: 16px;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.cat_section .fs-pt-column__item .links a:first-child span::after {
    background-image: url(../img/common/icon_arrow_white.svg);
}

@media screen and (max-width: 767px) {
    .cat_section {
        margin-top: 47px;
    }

    .cat_section .head_wrap h2 {
        margin-bottom: 19px;
    }

    .anc_item_wrap ul {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .anc_item_wrap li {
        width: 48.69%;
    }
    
    .anc_item_wrap li:nth-child(even) {
        margin-left: 2.6%;
    }

    .anc_item_wrap li:nth-child(n + 3) {
        margin-top: 10px;
    }

    .anc_item_wrap li a {
        height: 40px;
        border-radius: 6px;
    }

    .anc_item_wrap li a::after {
        width: 4px;
        height: 4px;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
    }

    .anc_item_wrap li span {
        font-size: 1.4rem;
    }

    .cat_item_wrap {
        margin-top: 40px;
    }
    
    .cat_item:not(:first-child) {
        margin-top: 30px;
    }

    .cat_item .img {
        width: 106%;
        margin-left: calc((-100vw - -100%) / 2);
    }
    
    .cat_item:nth-child(even) .img {
        margin-left: 0;
    }

    .cat_item .text {
        padding: 14px 4.35% 15px;
        width: 101%;
        position: relative;
        margin-top: -60px;
    }

    .cat_item .text h3 {
        font-size: 24px;
    }

    .cat_item .text p {
        font-size: 1.4rem;
        margin-top: 24px;
        line-height: 1.85;
    }

    .cat_item .links {
        margin-top: 29px;
    }

    .cat_item .links a {
        width: 100%;
        border-radius: 6px;
        margin-left: auto;
        margin-right: auto;
        position: relative;
    }

    .cat_item .links a:not(:first-child) {
        margin-top: 10px;
    }

    .cat_item .links a::after {
        content: '';
        display: inline-block;
        background-image: url(../img/common/icon_arrow.svg);
        background-size: contain;
        background-repeat: no-repeat;
        position: absolute;
        width: 16px;
        height: 16px;
        left: 15px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    
    .cat_item .links a:first-child::after {
        background-image: url(../img/common/icon_arrow_white.svg);
    }

    .cat_item .links a span {
        font-size: 1.4rem;
    }

    .cat_column_area {
        margin-top: 45px;
    }
    
    .cat_column_wrap:not(:first-child) {
        margin-top: 37px;
    }

    .cat_section .fs-pt-column__item .text {
        padding: 8px 5.95% 10px;
    }

    .cat_section .fs-pt-column__item .text span {
        font-size: 1.4rem;
    }

    .cat_section .fs-pt-column__item .links {
        margin-top: 8px;
    }

    .cat_section .fs-pt-column__item .links a {
        height: 42px;
        border-radius: 6px;
        padding-left: 12px;
    }

    .cat_section .fs-pt-column__item .links a:nth-child(2) {
        margin-top: 6px;
    }

    .cat_section .fs-pt-column__item .links a span {
        font-size: 1.2rem;
        padding-left: 24px;
        min-height: auto;
        line-height: 1;
    }
}

@media screen and (min-width: 768px) {
    .cat_section {
        margin-top: 22px;
    }

    .cat_section .head_wrap h2 {
        margin-bottom: 43px;
    }

    .anc_item_wrap li {
        width: 16%;
    }
    
    .anc_item_wrap li:not(:first-child) {
        margin-left: 0.86%;
    }

    .anc_item_wrap li a {
        height: 60px;
        border-radius: 8px;
    }

    .anc_item_wrap li a::after {
        width: 8px;
        height: 8px;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
    }

    .anc_item_wrap li span {
        font-size: 1.17vw;
    }

    .cat_item_wrap {
        margin-top: 100px;
    }
    
    .cat_item {
        height: 580px;
        position: relative;
    }
    
    /* .cat_item:nth-child(2) {
        height: 550px;
    } */
    
    .cat_item:not(:first-child) {
        margin-top: 180px;
    }

    .cat_item .img {
        width: 1280px;
        position: absolute;
        top: 0;
        right: 25%;
    }
    
    .cat_item:nth-child(even) .img {
        left: 25%;
    }

    .cat_item .img img {
        height: 580px;
    }
    
    /* .cat_item:nth-child(2) .img img {
        height: 550px;
    } */

    .cat_item .text {
        position: absolute;
        bottom: 50px;
        right: 0;
        padding: 47px 0 50px 50px;
        width: 620px;
    }
    
    .cat_item:nth-child(even) .text {
        left: 0;
        padding: 50px 50px 50px 0;
    }

    .cat_item .text h3 {
        font-size: 34px;
    }

    .cat_item .text p {
        font-size: 16px;
        margin-top: 16px;
        line-height: 2;
    }

    .cat_item .links {
        margin-top: 51px;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .cat_item .links a {
        width: 270px;
        border-radius: 8px;
    }

    .cat_item .links a span {
        font-size: 16px;
        padding-left: 24px;
    }

    .cat_item .links a span::after {
        content: '';
        display: inline-block;
        background-image: url(../img/common/icon_arrow.svg);
        background-size: contain;
        background-repeat: no-repeat;
        position: absolute;
        width: 16px;
        height: 16px;
        left: 0;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    
    .cat_item .links a:first-child span::after {
        background-image: url(../img/common/icon_arrow_white.svg);
    }

    .cat_column_area {
        margin-top: 146px;
    }

    .cat_column_area .head_wrap h3 {
        margin-bottom: 45px;
    }
    
    .cat_column_wrap:not(:first-child) {
        margin-top: 46px;
    }

    .cat_section .fs-pt-column__item .text {
        padding: 14px 6.66% 20px;
    }

    .cat_section .fs-pt-column__item .text span {
        font-size: 20px;
    }

    .cat_section .fs-pt-column__item .links {
        margin-top: 10px;
    }

    .cat_section .fs-pt-column__item .links a {
        height: 50px;
        border-radius: 8px;
        padding-left: 14px;
    }

    .cat_section .fs-pt-column__item .links a:nth-child(2) {
        margin-top: 10px;
    }

    .cat_section .fs-pt-column__item .links a span {
        font-size: 1.17vw;
        padding-left: 23px;
    }
}

@media screen and (min-width: 1366px) {
    .anc_item_wrap li span {
        font-size: 16px;
    }

    .cat_section .fs-pt-column__item .links a span {
        font-size: 16px;
    }
}

/* -----------------------------------------------
reason_wrap
----------------------------------------------- */
.reason_wrap {
    background-position: center bottom;
}

.reason_wrap .head_content {
    background-color: #fff;
    border-radius: 8px;
}

.reason_wrap .head_content dt {
    color: #009CD0;
}

.reason_wrap .head_content dd {
    color: #234650;
}

.reason_wrap .head_content dd.att {
    color: #000;
    font-size: 10px;
    font-weight: 500;
}

@media screen and (max-width: 767px) {
    .reason_wrap {
        margin-top: 50px;
    }

    .reason_wrap h2 {
        width: 102%;
    }

    .reason_wrap .head_content {
        padding: 16px;
        width: 100%;
    }
}

@media screen and (min-width: 768px) {
    .reason_wrap {
        min-height: 590px;
    }

    .reason_wrap .head_content {
        padding: 20px;
        width: 500px;
    }
}

@media screen and (min-width: 1366px) {
    .reason_wrap {
        min-height: 590px;
        padding-top: 0;
        margin-top: 172px;
    }
}

/* -----------------------------------------------
contact_wrap
----------------------------------------------- */
@media screen and (max-width: 767px) {
    .contact_wrap {
        margin-top: 48px;
    }
}

@media screen and (min-width: 768px) {
    .contact_wrap {
        margin-top: 151px;
    }
}

/* -----------------------------------------------
portfolio_banner
----------------------------------------------- */
.portfolio_banner a img {
    width: 100%;
}

@media screen and (max-width: 767px) {
    .portfolio_banner {
        margin: 40px 0 48px;
    }
    
    .portfolio_banner a {
        display: block;
    }
}

@media screen and (min-width: 768px) {
    .portfolio_banner {
        margin: 40px 0 57px;
    }
    
    .portfolio_banner a {
        display: block;
        width: 84.37%;
        margin: 0 auto;
    }
}

/* -----------------------------------------------
portfolioへのリンク
----------------------------------------------- */
.to_portfolio a {
    background-color: #fff;
    border: 1px solid #009CD0;
    color: #000;
    border-radius: 6px;
    margin: 0 auto;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.to_portfolio a span {
    font-weight: bold;
    display: block;
}

@media screen and (max-width: 767px) {
    .to_portfolio {
        margin-top: 10px;
    }

    .to_portfolio a {
        height: 50px;
        width: 100%;
        position: relative;
    }

    .to_portfolio a span {
        font-size: 1.4rem;
    }

    .to_portfolio a span::after {
        content: '';
        display: inline-block;
        background-image: url(../img/common/icon_arrow.svg);
        background-size: contain;
        background-repeat: no-repeat;
        position: absolute;
        width: 16px;
        height: 16px;
        left: 15px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

@media screen and (min-width: 768px) {
    .to_portfolio {
        margin-top: 24px;
    }

    .to_portfolio a {
        height: 84px;
        width: 360px
    }

    .to_portfolio a span {
        font-size: 22px;
        padding-left: 28px;
        position: relative;
    }

    .to_portfolio a span::after {
        content: '';
        display: inline-block;
        background-image: url(../img/common/icon_arrow.svg);
        background-size: contain;
        background-repeat: no-repeat;
        position: absolute;
        width: 20px;
        height: 20px;
        left: 0;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

/* -----------------------------------------------
キャンペーン
----------------------------------------------- */
.reform_campaign_wrap {
    background-image: url(../img/cat/reform/campaign/stripe_bg.jpg);
    background-size: 40px 40px;
    background-repeat: repeat;
}

.reform_campaign_wrap img {
    width: 100%;
}

.campaign_con_wrap {
    background-color: #fff;
}

.campaign_con a {
    border-radius: 4px;
    color: #fff;
    background-color: #ed6c00;
    box-shadow: 0 5px #dd5e00;
    position: relative;
    font-weight: bold;
    display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.campaign_con a::after {
    border-color: transparent transparent transparent #fff;
    border-style: solid;
    border-width: 7.5px 0 7.5px 8px;
    content: '';
    height: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
}

.reform_campaign_wrap + .link_wrap {
    margin-top: 0;
}

@media screen and (max-width: 767px) {
    .reform_campaign_wrap {
        margin-top: 51px;
        padding-bottom: 60px;
    }

    .campaign_con_wrap {
        margin-top: 39px;
        padding: 16px 0 47px;
        border: 4px solid #d80012;
    }

    .campaign_con + .campaign_con {
        margin-top: 34px;
    }

    .campaign_con a {
        margin: 28px auto 0;
        width: calc(100% - 11.58%);
        height: 59px;
        font-size: 16px;
    }

    .campaign_con a::after {
        right: 13px;
    }

    .campaign_con_wrap + .conditions_wrap {
        margin-top: 40px;
    }
}

@media screen and (min-width: 768px) {
    .reform_campaign_wrap {
        margin-top: 60px;
        padding-bottom: 100px;
    }

    .campaign_con_wrap {
        margin-top: 71px;
        padding: 33px 0 65px;
        border: 6px solid #d80012;
    }

    .campaign_con + .campaign_con {
        margin-top: 55px;
    }

    .campaign_con a {
        margin: 31px auto 0;
        width: 480px;
        height: 84px;
        font-size: 24px;
    }

    .campaign_con a::after {
        right: 20px;
    }

    .campaign_con_wrap + .conditions_wrap {
        margin-top: 60px;
    }
}

/* キャンペーン適用条件 */
.conditions {
	background: #FFFAC7;
    margin-top: 50px;
}
.conditions_text {
	background: #fff;
	overflow-y: scroll;
	position: relative;
}
.conditions_text ul {
	width: 100%;
}
.conditions_text ul li:before {
	color: #1899CC;
	content: "●";
	font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
.conditions_text {
	box-sizing: border-box;
}
.conditions_heading {
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
}
.conditions_text li {
	padding-left: 1em;
	text-indent: -1em;
}
.conditions_text strong {
	display: block;
}
  
@media screen and (min-width: 768px) {
    .conditions {
        padding-bottom: 80px;
    }
    .conditions_text {
        padding: 37px 60px;
        max-height: 220px;
    }
    .conditions_text ul li,
    .conditions_text strong {
        font-size: 14px;
        line-height: 1.48;
        margin-bottom: 1.4em;
    }
}
@media screen and (max-width: 767px) {
  
	.conditions {
	  padding-bottom: 30px;
	}
	.conditions_text {
	  padding: 22px 20px;
	  max-height: 330px;
	}
	.conditions_text ul li,
	.conditions_text strong {
	  font-size: 1.4rem;
	  line-height: 1.68;
	  margin-bottom: 1.4em;
	}
  
  
}