@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap');


/* layout
---------------------------------------------------------- */
html, body, div, dl, dt, dd, ul, ol, li, h1, h2, h2, h3, h4, h5, h6,
pre, form, fieldset, input, textarea, p, table, th, td, button, a, span {
	margin: 0;
	padding: 0;
	font-size: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
}
ol ,
ul {
	list-style: none;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
	display: block;
	margin: 0;
	padding: 0;
	font-size: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
}
html {
	font-size: 1rem;
	font-size: 10px;
	height: 100%;
}
body {
	color: #333333;
	font-family: 'Noto Sans JP',"游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	background: #fafafa;
	font-size: 1.6rem;
	line-height: 1.5;
	height: 100%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

@media (min-width: 767px) {
	body {
		position: relative;
		overflow-x: hidden;
	}
}


a {
	text-decoration: none;
	color: #333333;
	-webkit-transition: all 300ms 0s ease;
	transition: all 300ms 0s ease;
}
a:hover {
	opacity: 0.5;
}


.linkbox {
	cursor: pointer;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
main {
	overflow: hidden;
}



/*表示
----------------------------------------*/
/* PCだけ表示 */
.visible_pc {
	display: block !important;
}
/* SPだけ表示 */
.visible_sp {
	display: none !important;
}

/* PCだけ表示 */
.visible_pc_inline {
	display: inline !important;
}
/* SPだけ表示 */
.visible_sp_inline {
	display: none !important;
}

@media only screen and (max-width: 768px) {
	/* PCだけ表示 */
	.visible_pc {
		display: none !important;
	}
	/* SPだけ表示 */
	.visible_sp {
		display: block !important;
	}

	/* PCだけ表示 */
	.visible_pc_inline {
		display: none !important;
	}
	/* SPだけ表示 */
	.visible_sp_inline {
		display: inline !important;
	}
	/* SPだけ改行 */
	.sp_br {
		display: block;
	}

}



/* ヘッダー
----------------------------------------*/
.c-header {
    padding: 30px 0;
    background: #fafafa;
}
.c-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}
.c-header-inner * {
    width: 100%;
}
.c-header-inner h1 {
    width: 39.6%;
    max-width: 578px;
}
.c-header-inner .c-header-contact {
    width: 47.1%;
    max-width: 687px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.c-header-inner .c-header-contact .c-header-tel {
    width: 54.7%;
    max-width: 376px;
}
.c-header-inner .c-header-contact .c-header-tel a {
    pointer-events: none;
}
.c-header-inner .c-header-contact .c-header-form {
    width: 41.6%;
    max-width: 286px;
}

.c-header__float {
    display: none;
}

@media only screen and (max-width: 768px) {
    .c-header {
        padding: calc(30 / 750 * 100vw) 0;
    }
    .c-header-inner {
        padding: 0 calc(40 / 750 * 100vw);
    }
    .c-header-inner h1 {
        width: calc(427 / 750 * 100vw);
    }
    .c-header-inner .c-header-contact {
        width: calc(208 / 750 * 100vw);
        max-width: inherit;
    }
    .c-header-inner .c-header-contact .c-header-tel {
        display: none;
    }
    
    .c-header-inner .c-header-contact .c-header-form {
        width: calc(208 / 750 * 100vw);
    }
    
    .c-header__float {
        display: block;
        background: rgba(0,0,0,0.6);
        position: fixed;
        bottom: 0;
        z-index: 1;
        width: 100%;
        padding: calc(40 / 750 * 100vw);
    }
    .c-header__float ul {
        display: flex;
        justify-content: space-between;
    }
    .c-header__float ul li {
        width: calc(320 / 750 * 100vw);
    }
    .c-header__float ul li a {
        display: block;
    }
}


/* フッター
----------------------------------------*/
.c-footer {
    padding: 80px 0 70px;
    background: url("../img/common/bg-footer.jpg") no-repeat;
    background-size: cover;
    background-position: center;
}
.c-footer-inner {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 20px;
}

.c-footer-contents01 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 75px;
}
.c-footer-contents01 * {
    width: 100%;
}
.c-footer-logo {
    width: 57.7%;
    max-width: 577px;
}
.c-footer-form {
    width: 28.4%;
    max-width: 284px;
}

.c-footer-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}
.c-footer-nav li {
    margin: 0 15px;
}
.c-footer-nav li > * {
    color: #fff;
    background: none;
    border: none;
    font-size: 1.6rem;
    transition: 0.3s;
}
.c-footer-nav li > *:hover {
    opacity: 0.5;
}
.c-footer-nav li a.gaibu::after {
    content: "";
    display: inline-block;
    background: url("../img/common/ico-gaibu.svg") no-repeat;
    background-size: 100% 100%;
    width: 16px;
    height: 16px;
    margin-left: 8px;
    margin-bottom: -1px;
}
.c-footer-copy {
    font-size: 1.16rem;
    color: #fff;
    text-align: center;
}

@media only screen and (max-width: 768px) {
    .c-footer {
        padding: calc(80 / 750 * 100vw) 0 calc(70 / 750 * 100vw);
    }
    .c-footer-inner {
        padding: 0 calc(85 / 750 * 100vw);
    }

    .c-footer-contents01 {
        display: block;
        margin-bottom: calc(65 / 750 * 100vw);
    }
    .c-footer-logo {
        width: 100%;
    }
    .c-footer-form {
        width: calc(319 / 750 * 100vw);
        max-width: inherit;
    }
    
    .c-footer-contents02 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: calc(55 / 750 * 100vw);
    }

    .c-footer-nav {
        display: block;
        margin: 0;
    }
    .c-footer-nav li {
        margin: 0;
    }
    .c-footer-nav li > * {
        font-size: calc(24 / 750 * 100vw);
    }
    .c-footer-nav li > *:hover {
        opacity: 1;
    }
    .c-footer-nav li + li {
        margin-top: calc(28 / 750 * 100vw);
    }
    .c-footer-nav li a.gaibu::after {
        width: calc(20 / 750 * 100vw);
        height: calc(20 / 750 * 100vw);
    }
    .c-footer-copy {
        font-size: calc(20 / 750 * 100vw);
    }
}


/* TOPページ コンテンツ
----------------------------------------*/
/* c-page-home__mainv
----------------------------------------*/
.c-page-home__mainv {
    background: #edf4f6;
}

.c-page-home__mainv-inner {
    max-width: 1500px;
    margin: 0 auto;
}

.c-page-home__mainv-inner figure {
    width: 100%;
}


@media screen and (max-width: 768px) {
    
}


/* c-page-home__contents
----------------------------------------*/
.c-page-home__contents-inner {
    padding: 25px 0 80px;
}

.c-page-home__contents-inner h2 {
    font-size: 2.9rem;
    font-weight: 500;
    font-feature-settings: "palt";
    letter-spacing: 0.12em;
    color: #50505a;
    text-align: center;
    margin-bottom: 25px;
}
.c-page-home__contents-inner h2 span {
    color: #f1943c;
}

.c-page-home__contents-inner ul {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.c-page-home__contents-inner ul li {
    width: 48%;
}
.c-page-home__contents-inner ul li a {
    display: block;
    transition: 0.3s;
}
.c-page-home__contents-inner ul li a:hover {
    opacity: 0.5;
}

@media screen and (max-width: 768px) {
    .c-page-home__contents-inner {
        padding: calc(35 / 750 * 100vw) calc(40 / 750 * 100vw) calc(80 / 750 * 100vw);
    }

    .c-page-home__contents-inner h2 {
        font-size: calc(38 / 750 * 100vw);
        letter-spacing: 0.14em;
        margin-bottom: calc(40 / 750 * 100vw);
    }

    .c-page-home__contents-inner ul {
        max-width: 1000px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
    }
    .c-page-home__contents-inner ul li a:hover {
        opacity: 1;
    }

}


/* 下層ページ コンテンツ
----------------------------------------*/
/* c-breadcrumbs
----------------------------------------*/
.c-breadcrumbs {
    max-width: 1000px;
    margin: 10px auto;
}
.c-breadcrumbs-nav {
    display: flex;
}
.c-breadcrumbs-nav li {
    font-size: 1.6rem;
}
.c-breadcrumbs-nav li:not(:last-child)::after {
    content: "＞";
    font-size: 1.6rem;
    display: inline-block;
    margin-left: 7px;
    margin-right: 7px;
}
.c-breadcrumbs-nav li a {
    color: #3383b1;
}

@media screen and (max-width: 768px) {
    .c-breadcrumbs {
        display: none;
    }    
}


/* c-page-sub__contents
----------------------------------------*/
.c-page-sub__contents {
    background: #edf4f6;
}

.c-page-sub__contents-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0 80px;
}

.c-page-sub__contents h2.ttl-h2 {
    text-align: center;
    margin-bottom: 30px;
}
.c-page-sub__contents h2.ttl-h2 span {
    font-size: 2.6rem;
    font-weight: bold;
    letter-spacing: 0.12em;
    font-feature-settings: "palt";
    border-bottom: 2px solid #50505a;
    padding-bottom: 4px;
}


.c-page-sub__contents h3.ttl-h3 {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 0.12em;
    font-feature-settings: "palt";
    color: #50505a;
    margin-bottom: 20px;
}
.c-page-sub__contents h3.ttl-h3:not(:first-child) {
    margin-top: 65px;
}

@media screen and (max-width: 768px) {
    .c-page-sub__contents-inner {
        padding: calc(80 / 750 * 100vw) calc(40 / 750 * 100vw);
    }
    .c-page-sub__contents h2.ttl-h2 {
        margin-bottom: calc(50 / 750 * 100vw);
    }
    .c-page-sub__contents h2.ttl-h2 span {
        font-size: calc(38 / 750 * 100vw);
    }
    
    .c-page-sub__contents h3.ttl-h3 {
        font-size: calc(36 / 750 * 100vw);
        font-weight: 400;
        margin-bottom: 0;
        color: #787878;
        letter-spacing: 0;
    }
    .c-page-sub__contents h3.ttl-h3:not(:first-child) {
        margin-top: calc(67 / 750 * 100vw);
    }
}

/* c-page-sub__search
----------------------------------------*/
.c-page-sub__search-nav {
    display: flex;
    justify-content: space-between;
}
.c-page-sub__search-nav li {
    width: 46%;
}

@media screen and (max-width: 768px) {
    .c-page-sub__search-nav {
        display: block;
    }
    .c-page-sub__search-nav li {
        width: 100%;
    }
    .c-page-sub__search-nav li + li {
        margin-top: calc(80 / 750 * 100vw);
    }
}


.c-page-sub__search-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.c-page-sub__search-item {
    width: 46%;
    height: 100%;
    transition: all .4s;
}
.c-page-sub__search-item.is-hidden {
    visibility: hidden;
    opacity: 0;
    height: 0;
    padding:0;
}

.c-page-sub__search-item a {
    background: #ffffff;
    margin-bottom: 80px;
    
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(1, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}
.c-page-sub__search-item a::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 9px;
    right: 36px;
    bottom: 17px;
}
.c-page-sub__search-house .c-page-sub__search-item a::before {
    background: url("/assets/img/common/ico-arrow-b.svg") no-repeat;
    background-size: 100% 100%;
}
.c-page-sub__search-mansion .c-page-sub__search-item a::before {
    background: url("/assets/img/common/ico-arrow-o.svg") no-repeat;
    background-size: 100% 100%;
}
.c-page-sub__search-item h3 {
    color: #fff;
    text-align: center;
    font-size: 2.2rem;
    font-weight: bold;
    padding: 4px 0;
    grid-area: 1 / 1 / 2 / 2;
}
.c-page-sub__search-house .c-page-sub__search-item h3 {
    background: #3383b1;
}
.c-page-sub__search-mansion .c-page-sub__search-item h3 {
    background: #f1943c;
}
.c-page-sub__search-item dl {
    padding: 15px 40px 15px;
    display: flex;
    align-items: center;
    grid-area: 2 / 1 / 3 / 2;
}
.c-page-sub__search-item dl dt {
    color: #b4b4b4;
    width: 25px;
    line-height: 1.1;
    border-right: 1px solid #b4b4b4;
    font-size: 1.8rem;
}
.c-page-sub__search-item dl dd {
    font-size: 2.4rem;
    line-height: 1.33;
    letter-spacing: 0.04rem;
    padding-left: 20px;
}
.c-page-sub__search-item figure {
/*
    padding: 0 40px 10px;
    grid-area: 3 / 1 / 4 / 2;
*/
    margin: 0 40px 10px;
    grid-area: 3 / 1 / 4 / 2;
    min-height: 260px;
    display: flex;
    align-items: center;
    background: #edf4f6;
}
.c-page-sub__search-item p {
    padding: 0 40px 45px;
    font-size: 2.2rem;
    line-height: 1.33;
    grid-area: 4 / 1 / 5 / 2;
}

.c-page-sub__search-btn {
    text-align: center;
}
.c-page-sub__search-btn.is-hidden {
    display: none;
}
.c-page-sub__search-btn button {
    background-color: #fff;
    border:  2px solid #c8c8c8;
    cursor: pointer;
    outline: none;
    color: #787878;
    padding: 8.8px 0;
    font-size: 2.2rem;
    font-weight: bold;
    letter-spacing: 0.012em;
    width: 460px;
    border-radius: 40px;
}

.c-page-sub__search-btn button::after {
    content: "";
    position: absolute;
    right: 30%;
    top: 43%;
    width: 7px;
    height: 7px;
    border-bottom: 2px solid #787878;
    border-right: 2px solid #787878;
    transform: rotate(45deg) translateY(-50%);
}

@media screen and (max-width: 768px) {
    .c-page-sub__search-list {
        display: block;
    }
    .c-page-sub__search-item {
        width: 100%;
    }
    .c-page-sub__search-item a {
        margin-bottom: calc(80 / 750 * 100vw);
    }
    
    .c-page-sub__search-item a::before {
        width: calc(100 / 750 * 100vw);
        height: calc(9 / 750 * 100vw);
        right: calc(25 / 750 * 100vw);
        bottom: calc(25 / 750 * 100vw);
    }
    .c-page-sub__search-item h3 {
        font-size: calc(24 / 750 * 100vw);
        width: 100%;
        grid-area: 1 / 1 / 2 / 3;
    }
    .c-page-sub__search-item dl {
        width: calc(350 / 750 * 100vw);
        padding: calc(24 / 750 * 100vw) calc(24 / 750 * 100vw) calc(15 / 750 * 100vw) 0;
        grid-area: 2 / 2 / 3 / 3;
    }
    .c-page-sub__search-item dl dt {
        width: calc(30 / 750 * 100vw);
        font-size: calc(20 / 750 * 100vw);
    }
    .c-page-sub__search-item dl dd {
        font-size: calc(28 / 750 * 100vw);
        padding-left: calc(10 / 750 * 100vw);
    }
    .c-page-sub__search-item figure {
        margin: calc(24 / 750 * 100vw) 0 calc(24 / 750 * 100vw) calc(24 / 750 * 100vw);
        grid-area: 2 / 1 / 4 / 2;
        min-height: inherit;
        display: block;
        background: none;
    }
    .c-page-sub__search-item figure img {
        object-fit: cover;
        width: calc(270 / 750 * 100vw);
        height: calc(270 / 750 * 100vw);
/*        object-position: 80%;*/
    }
    .c-page-sub__search-item p {
        width: calc(350 / 750 * 100vw);
        padding: 0 calc(24 / 750 * 100vw) calc(24 / 750 * 100vw) 0;
        font-size: calc(22 / 750 * 100vw);
        grid-area: 3 / 2 / 4 / 3;
    }
    .c-page-sub__search-btn button {
        padding: calc(20 / 750 * 100vw) 0;
        font-size: calc(32 / 750 * 100vw);
        width: 100%;
        border-radius: calc(50 / 750 * 100vw);
    }

    .c-page-sub__search-btn button::after {
        right: calc(210 / 750 * 100vw);
        width: calc(15 / 750 * 100vw);
        height: calc(15 / 750 * 100vw);
    }    
}


/* c-page-sub__privacy
----------------------------------------*/
.c-page-sub__privacy {
    background: #f0f0f0;
}
.c-page-sub__privacy > * {
    color: #50505a;
}
.c-page-sub__privacy .c-page-sub__contents-inner {
    max-width: 930px;
}

.c-page-sub__privacy h3 {
    font-size: 2.4rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    font-feature-settings: "palt";
    border-bottom: 2px solid #50505a;
    padding-bottom: 6px;
    margin-top: 35px;
    margin-bottom: 15px;
}
.c-page-sub__privacy p {
    font-size: 1.4rem;
    letter-spacing: 0.06em;
    font-feature-settings: "palt";
}
.c-page-sub__privacy-contact {
    margin-top: 35px;
    padding-left: 12px;
    border-left: 6px solid #1b2d63;
}
.c-page-sub__privacy-contact h4 {
    font-size: 2.4rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    font-feature-settings: "palt";
    color: #1b2d63;
}
.c-page-sub__privacy-contact p + p {
    margin-top: 15px;
}
@media screen and (max-width: 768px) {
    .c-page-sub__privacy h3 {
        font-size: calc(32 / 750 * 100vw);
        margin-top: calc(35 / 750 * 100vw);
        margin-bottom: calc(20 / 750 * 100vw);
        border-bottom: 1px solid #50505a;
    }
    .c-page-sub__privacy p {
        font-size: calc(26 / 750 * 100vw);
    }
    .c-page-sub__privacy-contact {
        margin-top: calc(30 / 750 * 100vw);
        padding-left: calc(20 / 750 * 100vw);
        border-left: calc(10 / 750 * 100vw) solid #1b2d63;
    }
    .c-page-sub__privacy-contact h4 {
        font-size: calc(32 / 750 * 100vw);
    }
    .c-page-sub__privacy-contact p + p {
        margin-top: calc(26 / 750 * 100vw);
    }
}

/* c-page-sub__form
----------------------------------------*/
.c-page-sub__form,
.c-page-sub__contact {
    background: #f0f0f0;
}
.c-page-sub__form-step {
    display: flex;
    justify-content: center;
    justify-content: space-between;
    max-width: 690px;
    margin: 0 auto 20px;
}
.c-page-sub__form-step::before {
    content: "";
    position: absolute;
    width: 95%;
    height: 2px;
    background: #c8c8c8;
    top: 10px;
    left: 22px;
}
.c-page-sub__form-step::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #3383b1;
    top: 10px;
    left: 22px;
}
.c-page-sub__form-step.page02::after {
    width: 25%;
}
.c-page-sub__form-step.confirm::after {
    width: 50%;
}
.c-page-sub__form-step.thanks {
    margin-bottom: 70px;
}
.c-page-sub__form-step.thanks::after {
    width: 95%;
}
.text-center-pc {
    text-align: center;
}
.c-page-sub__form-step li {
    color: #c8c8c8;
    font-size: 1.2rem;
    padding-top: 22px;
    z-index: 1;
}
.c-page-sub__form-step li::before {
    content: "";
    background: url("../img/form/icp-step.svg") no-repeat;
    background-size: 100% 100%;
    width: 20px;
    height: 20px;
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.c-page-sub__form-step li.active {
    color: #3383b1;
}
.c-page-sub__form-step li.active::before {
    background: url("../img/form/icp-step-active.svg") no-repeat;
    background-size: 100% 100%;
}

@media screen and (max-width: 768px) {
    .c-page-sub__form-step {
        margin: 0 auto calc(40 / 750 * 100vw);
    }
    .c-page-sub__form-step::before {
        width: 90%;
        top: calc(15 / 750 * 100vw);
        left: calc(40 / 750 * 100vw);
    }
    .c-page-sub__form-step::after {
        top: calc(15 / 750 * 100vw);
        left: calc(40 / 750 * 100vw);
    }
    .c-page-sub__form-step.confirm::after {
        width: 47%;
    }
    .c-page-sub__form-step.thanks {
        margin-bottom: calc(50 / 750 * 100vw);
    }
    .c-page-sub__form-step.thanks + p {
        font-size: calc(28 / 750 * 100vw);
    }
    .c-page-sub__form-step.thanks::after {
        width: 90%;
    }
    .c-page-sub__form-step li {
        font-size: calc(20 / 750 * 100vw);
        padding-top: calc(30 / 750 * 100vw);
    }
    .c-page-sub__form-step li::before {
        width: calc(30 / 750 * 100vw);
        height: calc(30 / 750 * 100vw);
    }
    
    .text-center-pc {
        text-align: left;
    }
}

/*c-form
----------------------------------------*/
.c-form__box {
    display: flex;
    flex-direction: column;
    row-gap: 18px;
    max-width: 670px;
    margin: 40px auto 0;
}
.c-form__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.c-form__item dt {
    width: 140px;
    font-size: 1.6rem;
    font-feature-settings: "palt";
    font-weight: normal;
    color: #787878;
    display: inline-block;
}
.c-form__item dd {
    width: 533px;
}
.c-form__item-flex {
  display: flex;
}

.confirm .c-form__item {
    border-bottom: 1px solid #c8c8c8;
    padding-bottom: 15px;
}
.confirm .c-form__item dd {
    font-size: 1.6rem;
    font-feature-settings: "palt";
    font-weight: normal;
    color: #787878;
}

.c-form__item dd input[type=text], 
.c-form__item dd input[type=email], 
.c-form__item dd input[type=tel] {
    width: 100%;
    border: 1px solid #787878;
    border-radius: 40px;
    background: #fafafa;
    padding: 15px 20px;
    color: #000;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 150%;
}
.c-form__item dd input[type=text]:first-child, 
.c-form__item dd input[type=email]:first-child, 
.c-form__item dd input[type=tel]:first-child {
    margin-right: 10px;
}
.c-form__item dd input[type=text].is-error, 
.c-form__item dd input[type=email].is-error, 
.c-form__item dd input[type=tel].is-error {
    border-color: #9F0000;
    background: rgba(159, 0, 0, 0.1);
}

.c-form__item dd input::-moz-placeholder {
    color: #c8c8c8;
}
.c-form__item dd input::placeholder {
    color: #c8c8c8;
}

.c-form__item dd select {
    -moz-appearance: none;
    -webkit-appearance: none;
    width: 100%;
    border: 1px solid #787878;
    border-radius: 40px;
    background: #fafafa;
    padding: 15px 20px;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 150%;
}
.c-form__item dd select option:first-child {
    color: rgba(180, 180, 180, 0.6);
}
.c-form__item dd select option:nth-child(n + 2) {
    color: #000;
}

.c-form__item dd select.is-error {
    border-color: #9F0000;
    background: rgba(159, 0, 0, 0.1);
}

.c-form__item dd input[type="radio"] {
    display: none;
}
.c-form__item dd input[type="radio"] + .wpcf7-list-item-label {
	padding: 0 0 0 28px;
    margin-right: 25px;
	cursor: pointer;
	position: relative;
	display: inline-block;
}
.c-form__item dd input[type="radio"] + .wpcf7-list-item-label::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 20px;
    height: 20px;
    transform: translate(0, -50%);
    border: solid 2px #787878;
    z-index: 1;
    border-radius: 50px;
}
.c-form__item dd input[type="radio"]:checked + .wpcf7-list-item-label::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    z-index: 2;
    background: #787878;
    width: 14px;
    height: 14px;
    border-radius: 50px;
}
/*

.c-form__item dd textarea {
  width: 100%;
  border: 1px solid #B4B4B4;
  background: #fff;
  padding: 0.9rem 2rem;
  color: #000;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 150%;
}
.c-form__item dd textarea.is-error {
  border-color: #9F0000;
  background: rgba(159, 0, 0, 0.1);
}
.c-form__item dd textarea::-moz-placeholder {
  color: #B4B4B4;
}
.c-form__item dd textarea::placeholder {
  color: #B4B4B4;
}
*/


.c-form__required {
    font-size: 1.3rem;
    font-weight: normal;
    padding: 0.2rem 0.7rem;
    color: #fff;
    background-color: #C65546;
    border-radius: 0.3rem;
    margin-left: 1rem;
}
.c-form__input-s {
    width: 258px !important;
}
.c-form__input-m {
    width: 100% !important;
}

.c-form__select .wpcf7-form-control-wrap::before {
    content: "";
    position: absolute;
    right: 20px;
    box-sizing: border-box;
    width: 12px;
    height: 12px;
    border: 6px solid transparent;
    border-top: 10px solid #3383b1;
    z-index: 1;
    top: 50%;
    transform: translateY(-25%);
}
/*

.c-form__select::before {
    content: "";
    position: absolute;
    right: 20px;
    box-sizing: border-box;
    width: 12px;
    height: 12px;
    border: 6px solid transparent;
    border-top: 10px solid #3383b1;
    z-index: 1;
    top: 50%;
    transform: translateY(-25%);
}
*/

.c-form__agree {
    color: #787878;
    font-size: 1.6rem;
    font-feature-settings: "palt";
    margin-bottom: 25px;
    margin-top: 30px;

}
.c-form__agree a {
    margin: 12px 0;
    color: #3383b1;
    display: inline-block;
    text-decoration: underline;
}
.c-form__agree a.gaibu::after {
    content: "";
    display: inline-block;
    background: url("../img/common/ico-gaibu-b.svg") no-repeat;
    background-size: 100% 100%;
    width: 16px;
    height: 16px;
    margin-left: 8px;
    margin-bottom: -1px;
}
.c-form__agree a:hover {
    text-decoration: none;
    opacity: 1;
}


.c-form__submit {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}
.confirm .c-form__submit {
    margin-top: 65px;
}
.c-form__submit.col1 {
    justify-content: center;
}
.c-form__submit > * {
    width: 325px;
    transition: 0.3s;
    border: none;
    background: none;
    font-size: 1.6rem;
    font-weight: bold;
    border-radius: 50px;
    padding: 14px 0;
    cursor: pointer;
}
.c-form__submit.col1 > * {
    width: 369px;
    padding: 0;
}
.c-form__submit > *:hover {
    opacity: 0.5;
}
.c-form__submit-btn-gray {
    background: #fff;
    border: 2px solid #c8c8c8;
    color: #787878;
}
.c-form__submit-btn-gray::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 26px;
    width: 9px;
    height: 9px;
    border-bottom: 2px solid #787878;
    border-left: 2px solid #787878;
    transform: rotate(45deg) translateY(-50%);
}
.c-form__submit-btn-blue {
    background: #3383b1;
    border: 2px solid #ffffff;
    color: #ffffff;
}

.c-form_asterisk {
    font-size: 1.4rem;
    color: #000;
}

.wpcf7-spinner {
    display: none;
}
.wpcf7-list-item {
    margin: 0;
}


@media screen and (max-width: 991px) {
  .c-form__item dt {
    width: 35%;
  }
  .c-form__item dd {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
    .c-form__box {
        row-gap: calc(30 / 750 * 100vw);
    }

    .c-form__item {
        display: block;
    }

    .c-form__item dt {
        width: 100%;
        padding-top: 0;
        padding-bottom: calc(10 / 750 * 100vw);
    }

    .c-form__item dt label {
        font-size: calc(30 / 750 * 100vw);
    }

    .c-form__item dd {
        width: 100%;
    }
    
    .c-form__item-flex {
        justify-content: space-between;
    }
    .c-form__item-flex span {
      width: 49%;
    }
    
    .c-form__item dd input[type="text"], 
    .c-form__item dd input[type="email"], 
    .c-form__item dd input[type="tel"],
    .c-form__item dd select{
        padding: calc(20 / 750 * 100vw) calc(40 / 750 * 100vw);
    }
    
    .wpcf7-radio {
        display: flex;
        justify-content: space-between;
    }
    .wpcf7-radio > span {
        width: 49%;
    }
    
    .c-form__item dd input[type="radio"] + .wpcf7-list-item-label {
        margin: 0;
        cursor: pointer;
        position: relative;
        display: inline-block;
        width: 100%;
        border: 1px solid #787878;
        border-radius: 40px;
        background: #fafafa;
        padding: calc(20 / 750 * 100vw) calc(40 / 750 * 100vw) calc(20 / 750 * 100vw) calc(65 / 750 * 100vw);
        color: #787878;
        font-size: calc(30 / 750 * 100vw);
        box-sizing: border-box;
    }
    .c-form__item dd input[type="radio"] + .wpcf7-list-item-label::before {
        left: calc(20 / 750 * 100vw);
        width: calc(28 / 750 * 100vw);
        height: calc(28 / 750 * 100vw);
    }
    .c-form__item dd input[type="radio"]:checked + .wpcf7-list-item-label::after {
        left: calc(28 / 750 * 100vw);
        width: calc(20 / 750 * 100vw);
        height: calc(20 / 750 * 100vw);
    }

    .c-form__input-s {
        width: 100% !important;
    }
    .c-form__input-s-sp {
        width: 47.6% !important;
    }
    .c-form__input-m {
        width: 100% !important;
    }
    
    .c-form__agree {
        font-size: calc(24 / 750 * 100vw);
        margin-bottom: 0;
        margin-top: 0;
    }
    
    .c-form__agree a.gaibu::after {
        width: calc(24 / 750 * 100vw);
        height: calc(24 / 750 * 100vw);
    }
    
    .c-form__submit {
        display: block;
        margin-top: calc(35 / 750 * 100vw);
    }
    
    .confirm .c-form__submit {
        margin-top: calc(45 / 750 * 100vw);
    }

    .c-form__submit > * {
        margin: 0 auto;
        display: block;
        width: 100% !important;
    }

    .c-form__submit-btn-gray {
        margin: 0 auto 2rem;
    }
    
    .c-form_asterisk {
        font-size: calc(22 / 750 * 100vw);
        color: #787878;
    }
}


/* c-pagetop
----------------------------------------*/
.c-pagetop {
    width: 82px;
	position: relative;
	right: 20px;
	bottom: 0;
	margin-top: 0;
	z-index: 10;
    overflow: hidden;
    cursor: pointer;
    transition: 0.3s;
    margin-bottom: 0;
	text-align: center;
	line-height: 0;
	padding: 15px 0 0;
}

.c-pagetop:hover {
	opacity: .6;
}

@media only screen and (max-width: 768px) {

	.c-pagetop {
		width: calc(80 / 750 * 100vw);
        right: calc(20 / 750 * 100vw);
	}
}




