@charset "UTF-8";
/* CSS Document */
html {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
    color: #202121;
    font-size: 62.5%;
}
body {
    color: #202121;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.875;
    font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", sans-serif;
    font-feature-settings: "palt"1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    scroll-behavior: smooth;
}
@media screen and (max-width: 1000px) {
    /*---------------------------SP----- */
    body {
        font-size: 1.5rem;
        line-height: 1.875em;
        letter-spacing: 0.1em;
    }
}
@media only screen and (min-width: 781px) {
    .sp {
        display: none !important;
    }
    .pc {
        display: block;
    }
}
@media only screen and (max-width: 767px) {
    .pc {
        display: none !important;
    }
    .sp {
        display: block !important;
    }
}
a {
    color: #247ee8;
}
main p {
    margin-bottom: 40px;
}
.btn {
    max-width: 500px;
    width: 100%;
    font-size: 24px;
    text-align: center;
    display: block;
    padding: 10px 20px;
    background-color: #dbf54d;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    color: #000;
    transition: all 0.3s;
    margin: 0 auto;
    border: none;
}
@media screen and (max-width: 1000px) {
    .btn {
        font-size: 20px;
        padding: 12px 20px;
    }
}
.btn:hover {
    opacity: 0.7;
}
/* header
--------------------------------------------------------*/
header {
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 20px 26px;
    letter-spacing: 1px;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.16);
}
header .logo {
    position: relative;
    z-index: 10000;
}
header {
    z-index: 9999;
    top: 0;
    height: 80px;
}
@media screen and (max-width: 1000px) {
    header {
        height: 60px;
    }
}
header .header-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
header .logo {
    width: auto;
}
@media screen and (max-width: 1000px) {
    header .logo {
        height: 30px;
    }
}
header img {
    max-width: 200px;
    width: 100%;
    height: auto;
    width: auto;
}
header ul {
    display: flex;
    align-items: center;
}
header li {
    font-size: 1.4rem;
    font-weight: bold;
    margin-right: 2em;
}
header li.contact {
    margin-right: 0;
    color: #000;
    background-color: #fff;
    border: 2px solid #d9d9d9;
    border-radius: 50px;
}
header li.contact a {
	display: block;
   text-decoration: none;
    color: #000 !important;
    padding: 5px 30px 6px;
}
header li.request {
    margin-right: 10px;
    color: #000;
    background-color: #dbf54d;
    border: 2px solid #dbf54d;
    border-radius: 50px;
}
header li.request a {
	display: block;
    text-decoration: none;
    color: #000 !important;
    padding: 5px 30px 6px;
}
header li a {
    color: #202121;
    text-decoration: none;
}
header li a:hover {
    color: #202121;
    text-decoration: underline;
}
header li.contact a:hover {
    text-decoration: none;
	opacity: 0.7;
}
header li.request a:hover {
    text-decoration: none;
	opacity: 0.7;
}
.head_btn a {
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 100px;
    background-color: #ffcc00;
    color: #202121;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 34px;
    transition: all 0.3s;
}
.head_btn a:hover {
    opacity: 0.7;
}
@media screen and (max-width: 1120px) {
    /*---------------------------SP----- */
    .head_navi ul {
        display: none;
    }
}
@media screen and (max-width: 1000px) {
    /*---------------------------SP----- */
    header, .mv_head {
        padding: 10px 20px 10px 18px;
    }
    .head_navi .head_logo {
        height: 30px;
        width: auto;
        margin-right: 0px;
    }
    .head_btn a {
        font-size: 13px;
        padding: 6px 14px;
    }
}
.hamburger {
    display: none;
    width: 32px;
    height: 28px;
    position: relative;
    cursor: pointer;
    z-index: 10000;
}
@media screen and (max-width: 1000px) {
    .hamburger {
        display: block;
    }
}
.hamburger span {
    display: block;
    width: 100%;
    height: 4px;
    background-color: #1b41a1;
    position: absolute;
    transition: all 0.3s;
}
.hamburger span:nth-child(1) {
    top: 0;
}
.hamburger span:nth-child(2) {
    top: 12px;
}
.hamburger span:nth-child(3) {
    bottom: 0;
}
.hamburger.active span {
    background-color: #1b41a1;
}
.hamburger.active span:nth-child(1) {
    transform: translateY(12px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-12px) rotate(-45deg);
}
@media screen and (max-width: 1000px) {
    nav {
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.9);
        transition: all 0.3s;
        padding-top: 60px;
        z-index: 9999;
    }
    nav.active {
        top: 0;
    }
    nav ul {
        display: block;
        padding: 0 30px;
        position: absolute;
        top: 50%;
        left: 50%; /* Safari用 */
        transform: translate(-50%, -50%);
        width: 100%;
    }
    nav ul li {
        margin: 0 0 40px 0;
        text-align: center;
    }
    nav ul li.request {
        margin: 0 auto;
        padding: 7px 30px 8px;
    }
    nav ul li.contact {
        margin: 24px auto 0;
        width: 100%;
        padding: 12px 40px;
    }
    nav ul li a {
        font-size: 20px;
        color: #1b41a1;
    }
}
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
}
.overlay.active {
    display: block;
}
.inner {
    max-width: 1260px;
    padding: 0 80px;
    margin: 0 auto;
}
@media screen and (max-width: 1099px) {
    .inner {
        padding: 0 40px;
    }
}
@media screen and (max-width: 768px) {
    .inner {
        padding: 0 24px;
    }
}
.default-heading {
    color: #1b41a1;
    font-size: 40px;
    letter-spacing: 0.05em;
    font-weight: 900;
    line-height: 1.475;
    text-align: center;
    margin-bottom: 32px;
}
.default-heading.white {
    color: #fff;
}
@media screen and (max-width: 1000px) {
    .default-heading {
        font-size: 22px;
    }
}
.sm-heading {
    font-size: 34px;
    letter-spacing: 0.02em;
    font-weight: 700;
    line-height: 1.475;
    text-align: center;
}
@media screen and (max-width: 1000px) {
    .sm-heading {
        font-size: 20px;
        text-align: left;
        line-height: 1.8;
    }
}
.cta-heading {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    line-height: 2;
}
@media screen and (max-width: 1000px) {
    .cta-heading {
        font-size: 14px;
    }
}
.bk-main-color {
    background-color: #1b41a1;
}
.intro-text {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 500;
    text-align: center;
    margin-bottom: 32px;
}
@media screen and (max-width: 1000px) {
    .intro-text {
        font-size: 14px;
    }
}
.intro-text.white {
    color: #fff;
}
/* mv
--------------------------------------------------------*/
.sec_mv {
    margin-top: 80px;
    background-color: #247ee8;
}
@media screen and (max-width: 1000px) {
    .sec_mv {
        margin-top: 60px;
    }
}
.mv_wrap {
    position: relative;
    max-width: 1140px;
    margin: 0 auto;
    padding: 20px 20px;
    display: flex;
    justify-content: space-between;
    gap: 40px 110px;
}
@media screen and (max-width: 1249px) {
    .mv_wrap {
        gap: 40px;
    }
}
@media screen and (max-width: 1000px) {
    .mv_wrap {
        padding: 20px 0 0;
        overflow: hidden;
    }
}
.mv_wrap .mv_img {
    width: 318px;
    height: auto;
    position: absolute;
    top: 47.7%;
    left: 53%; /* Safari用 */
    transform: translate(-50%, -50%);
}
@media screen and (max-width: 1000px) {
    .mv_wrap .mv_img {
        width: 340px;
        height: auto;
        position: absolute;
        top: -30px;
        left: unset;
        transform: none;
        right: 0;
    }
}
@media screen and (max-width: 768px) {
    .mv_wrap .mv_img {
        width: 133px;
        height: auto;
        position: absolute;
        top: 100px;
        left: unset;
        transform: translate(-50%, -50%);
        right: -70px;
    }
}
.mv_main {
    position: relative;
    color: #fff;
    width: calc(100% - 500px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
    padding: 40px 0;
    z-index: 2;
}
.mv_main ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 410px;
}
.mv_main ul li {
    line-height: 1.2;
    font-size: 20px;
    font-weight: 700;
    color: #1b41a1;
    background-color: #fff;
    border-radius: 8px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width: 1000px) {
    .mv_main ul li {
        font-size: 16px;
    }
}
.content-form {
    width: 390px;
    position: relative;
    z-index: 2;
}
.mv_main h2 {
    max-width: 608px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    line-height: 1;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 1249px) {
    .mv_main h2 {
        font-size: 20px;
        line-height: 1.5;
    }
}
.mv_main h2 span {
    font-size: 50px;
    font-weight: 200;
    position: relative;
    top: -4px;
    padding-right: 20px;
    padding-left: 20px;
}
@media screen and (max-width: 1249px) {
    .mv_main h2 span {
        font-size: 40px;
    }
}
@media screen and (max-width: 1000px) {
    .mv_main h2 span {
        font-size: 24px;
        padding-right: 10px;
        padding-left: 10px;
        top: -2px;
    }
}
.mv_main h1 {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: 0.09em;
    line-height: 1.5;
    margin-bottom: 30px;
    text-align: left;
}
@media screen and (max-width: 1249px) {
    .mv_main h1 {
        font-size: 36px;
    }
}
.mv_main h1 .mv_main__small {
    font-size: 40px;
}
@media screen and (max-width: 1249px) {
    .mv_main h1 .mv_main__small {
        font-size: 30px;
    }
}
@media screen and (max-width: 1000px) {
    .mv_main h1 .mv_main__small {
        font-size: 18px;
    }
}
.mv_main h1 .mv_main__big {
    font-size: 84px;
    line-height: 1.3;
}
@media screen and (max-width: 1249px) {
    .mv_main h1 .mv_main__big {
        font-size: 60px;
    }
}
@media screen and (max-width: 1000px) {
    .mv_main h1 .mv_main__big {
        font-size: 44px;
    }
}
.mv_main h1 strong {
    font-size: 6rem;
    font-weight: 900;
    background-color: #4156f8;
    color: #fff;
    display: inline-block;
    line-height: 1em;
    padding: 5px 5px 8px;
}
.mv_main h1 span.h1a {
    font-size: 3.6rem;
    font-weight: 900;
}
.mv_main h1 span.h1b {
    font-size: 4.8rem;
    font-weight: 900;
}
.mv_main h1 span.h1c {
    font-size: 6rem;
    font-weight: 900;
    line-height: 1.3em;
}
@media screen and (max-width: 1180px) {
    /*---------------------------SP----- */
    .mv_main {
        width: 60%;
        margin-right: 40px;
        padding-left: 30px;
    }
    .content-form {
        width: 40%;
    }
    .mv_main h1 {
        font-size: 4rem;
    }
    .mv_main h1 strong {
        font-size: 4.4rem;
    }
    .mv_main h2 {
        max-width: 500px;
    }
    .mv_main h1 span.h1b {
        font-size: 3rem;
    }
}
@media screen and (max-width: 1020px) {
    /*---------------------------SP----- */
    .mv_main {
        padding-left: 0;
    }
}
@media screen and (max-width: 960px) {
    /*---------------------------SP----- */
    .mv_main {
        width: 65%;
        margin-right: 40px;
        padding-left: 0;
    }
    .content-form {
        width: 35%;
    }
    .mv_main .pc {
        display: none !important;
    }
    .mv_main .sp {
        display: block !important;
    }
}
@media screen and (max-width: 920px) {
    /*---------------------------SP----- */
    .mv_main h1 {
        font-size: 3rem;
    }
    .mv_main h1 strong {
        font-size: 3.4rem;
    }
    .mv_main h2 {
        max-width: 500px;
    }
    .mv_main h1 span.h1a {
        font-size: 2.4rem;
    }
    .mv_main h1 span.h1b {
        font-size: 2.4rem;
    }
    .mv_main h1 span.h1c {
        font-size: 4.6rem;
    }
}
@media screen and (max-width: 1000px) {
    /*---------------------------SP----- */
    .mv_wrap {
        max-width: 100%;
        display: block;
    }
    .mv_main {
        width: 100%;
        margin-right: 0;
        margin-bottom: 0;
        padding: 24px 24px 40px;
        gap: 20px;
    }
    .content-form {
        width: 100%;
    }
    .mv_main h2 {
        max-width: 100%;
        line-height: 1.6;
        font-size: 14px;
    }
    .mv_main h1 {
        font-size: 2.4rem;
        line-height: 1.4;
        margin-bottom: 14px;
        text-align: left;
    }
    .mv_main h1 strong {
        font-size: 3.1rem;
        line-height: 1em;
        padding: 8px 5px 8px;
    }
    .mv_main h1 span.h1a {
        font-size: 1.8rem;
    }
    .mv_main h1 span.h1b {
        font-size: 2rem;
    }
    .mv_main h1 span.h1c {
        font-size: 3.2rem;
        line-height: 1.5em;
    }
}
/* mv form
--------------------------------------------------------*/
.mv .content-form {
    background-color: #fff;
    border-radius: 16px;
    padding: 24px;
}
.hissu {
	text-align: right;
	font-size: 12px;
	margin-bottom: 8px;
	line-height: 1;
}
.hissu span {
	color: #ef2645;
}

.p-dl__form__item {
	display: flex;
	font-size: 14px;
	margin-bottom: 14px;
}
.p-dl__form__item:last-child {
	margin-bottom: 0;
}
.p-dl__form__item label {
	width: 6em;
	font-weight: bold;
}
.p-dl__form__item label span {
	color: #ef2645;
}
.p-dl__form__item div {
	flex: 1;
}
.p-dl__form__item input, .p-dl__form__item textarea {
	width: 100%;
	background-color: #DCDFE5;
	border-radius: 8px;
	border: none;
	padding: 6px 10px;
}
.p-dl__form__item textarea {
	height: 150px;
}
.p-dl__form__item .name {
	display: flex;
	justify-content: space-between;
}
.p-dl__form__item .last_name {
	margin-right: 10px;
}
.p-dl__agree {
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 10px;
}
.p-dl__agree a {
	color: #247ee8;
}
.p-dl__form__submit {
	text-align: center;
}
.btn--shindan-submit {
	background-color: #dbf54d;
	border-radius: 100px;
	border: none;
	font-size: 16px;
	font-weight: bold;
	color: #000;
	width: 100%;
	padding: 10px;
    transition: all 0.3s;
	cursor: pointer;
}
.btn--shindan-submit:hover {
	opacity: 0.7;
}
.form_privacy {
    text-align: center;
    margin-top: 6px;
    font-size: 1.1rem;
}
.g-recaptcha {
	margin-bottom: 10px;
	margin-inline: auto;
	width: fit-content;
}
@media screen and (max-width: 360px) {
.g-recaptcha {
	transform-origin: 0% 0%;
	transform: scale(0.8);
}
}
@media screen and (max-width: 1000px) {
    .mv .content-form {
        padding: 40px 24px;
        border-radius: 0;
    }
	.btn--shindan-submit {
		width: 80%;
		margin: 0 auto;
	}
    .mv .content-form .form-box {
        padding-bottom: 10px;
		max-width: 580px;
		margin: 0 auto;
    }
}

/* client
--------------------------------------------------------*/
.client h2 {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.8;
    padding: 30px 0 0;
}
.client h2 br {
    display: none;
}
.client h2 img {
    width: 420px;
    height: auto;
    margin-right: 10px;
    vertical-align: top;
    display: inline;
}
.mv_kome {
    font-size: 13px;
    text-align: right;
    max-width: 1130px;
    margin: 10px auto 0;
    padding-right: 20px;
    line-height: 1;
}
@media screen and (max-width: 768px) {
    /*---------------------------SP----- */
    .client {
        max-width: 100%;
        margin: 30px auto 30px;
    }
    .client h2 {
        font-size: 15px;
        margin-bottom: 18px;
        line-height: 1.6;
    }
    .client h2 br {
        display: block;
    }
    .client h2 img {
        max-width: 320px;
        width: 90%;
        margin-right: 5px;
        vertical-align: baseline;
    }
    .mv_kome {
        font-size: 11px;
        max-width: 100%;
        margin: 4px auto 0;
    }
}
.scroll {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    background-color: #fff;
    padding: 10px 0;
}
.scroll ul {
    display: flex;
    gap: 40px; /* 画像の間隔調整 */
    animation: scroll-left 20s linear infinite;
    width: -moz-max-content;
    width: max-content;
}
.scroll ul::after {
    content: "";
    display: flex;
    gap: 40px;
    width: -moz-max-content;
    width: max-content;
    animation: inherit;
}
.scroll li {
    flex-shrink: 0;
    list-style: none;
}
.scroll img {
    height: 40px;
    width: auto; /* 横幅は自動調整 */
    display: block;
}
@keyframes scroll-left {
    from {
        transform: translateX(0%);
    }
    to {
        transform: translateX(-50%);
    }
}
/* sec01
--------------------------------------------------------*/
.sec01 {
    padding: 20px 0;
    background-color: #f5f5f5;
}
.sec01 img {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}
@media screen and (max-width: 768px) {
    /*---------------------------SP----- */
}
/* sec02
--------------------------------------------------------*/
.sec02 {
    padding: 64px 0;
    background-color: #1b41a1;
    position: relative;
}
@media screen and (max-width: 1000px) {
    .sec02 {
        padding: 40px 0;
    }
}
.sec02 ul {
    margin-top: 32px;
    list-style-type: none;
    padding: 0;
}
.sec02 ul li {
    color: #fff;
    font-size: 14px;
    text-align: center;
    margin-bottom: 10px;
    padding-left: 1.5em;
}
@media screen and (max-width: 1000px) {
    .sec02 ul li {
        text-align: left;
        letter-spacing: -1px;
        line-height: 1.4;
    }
}
.sec02 ul li:before {
    content: "※";
    display: inline-block;
    width: 1.5em;
    margin-left: -1.5em;
    color: #fff;
}
.sec02 ul li:last-child {
    margin-bottom: 0;
}
/* sec03
--------------------------------------------------------*/
.sec03 {
    padding: 64px 0;
}
@media screen and (max-width: 1000px) {
    .sec03 {
        padding: 40px 0;
    }
    .sec03 .inner {
		max-width: 600px;
    }
}
.sec03 h2 {
    margin-bottom: 64px;
}
@media screen and (max-width: 1000px) {
    .sec03 h2 {
        margin-bottom: 40px;
    }
}
.sec03 dl {
    display: flex;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 40px;
    background-color: #f5f5f5;
    border-radius: 16px;
}
@media screen and (max-width: 1000px) {
    .sec03 dl {
        display: block;
    }
}
.sec03 dl dt {
    width: 59%;
    padding: 38px 40px;
    border-radius: 16px 0 0 16px;
    background-color: #dcdfe5;
}
@media screen and (max-width: 1000px) {
    .sec03 dl dt {
        width: 100%;
        border-radius: 16px 16px 0 0;
        padding: 38px 24px;
    }
}
.sec03 dl dt h3 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 15px;
    color: #1b41a1;
    line-height: 1.6;
}
@media screen and (max-width: 1000px) {
    .sec03 dl dt h3 {
        font-size: 18px;
        text-align: center;
    }
}
.sec03 dl dt h3 strong {
    font-weight: 900;
    background: linear-gradient(transparent 70%, #e0f46b 70%);
}
.sec03 dl dt p {
    line-height: 2;
    font-size: 14px;
    max-width: 420px;
    letter-spacing: 0;
    font-weight: 500;
}
.sec03 dl dd {
    width: 41%;
    padding: 14px;
}
@media screen and (max-width: 1000px) {
    .sec03 dl dd {
        width: 100%;
        padding: 24px 30px;
    }
}
/* sec04
--------------------------------------------------------*/
.sec04 {
    padding: 64px 0;
    background-color: #f2f3f5;
}
@media screen and (max-width: 1000px) {
    .sec04 {
        padding: 40px 0 50px;
    }
}
.sec04 h2 {
    margin-bottom: 40px;
}
.sec04-text h3 {
    font-size: 16px;
    font-weight: 700;
    padding: 16px 24px;
    background-color: #fff;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.5;
}
.sec04-text h3 strong {
    font-weight: 900;
    background: linear-gradient(transparent 70%, #e0f46b 70%);
}
.sec04-text img {
    width: 100%;
    max-width: 144px;
    margin: 0 auto;
}
/* sec05
--------------------------------------------------------*/
.sec05 {
    padding: 64px 0;
    background-color: #1b41a1;
}
@media screen and (max-width: 1000px) {
    .sec05 {
        padding: 40px 0;
    }
}
.sec05 img {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}
.sec05 .sec05-text {
    font-size: 18px;
    margin: 40px auto;
    text-align: center;
    color: #fff;
}
/* sec06
--------------------------------------------------------*/
.sec06 {
    padding: 64px 0;
}
@media screen and (max-width: 1000px) {
    .sec06 {
        padding: 40px 0;
    }
    .sec06 .inner {
		max-width: 600px;
    }
}
.sec06 ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 64px auto 0;
}
@media screen and (max-width: 1000px) {
    .sec06 ul {
        margin-top: 24px;
        grid-template-columns: repeat(1, 1fr);
    }
}
.sec06 ul li {
    border-radius: 16px;
    background-color: #f2f3f5;
}
.sec06 ul li > img {
    border-radius: 16px 16px 0 0;
}
.sec06 ul li h3 {
    color: #1b41a1;
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #d9d9d9;
}
.sec06 ul li h3 img {
    width: 200px;
    margin-bottom: 16px;
}
.sec06-text {
    position: relative;
    padding: 24px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}
.sec06-text.coming-soon {
    height: 49%;
    text-align: center;
}
@media screen and (max-width: 1000px) {
    .sec06-text.coming-soon {
        height: 230px;
    }
}
.sec06-text.coming-soon p {
    color: #949599;
    font-size: 26px;
    font-weight: 700;
    position: absolute;
    top: 50%;
    left: 50%; /* Safari用 */
    transform: translate(-50%, -50%);
    width: 100%;
}
/* sec07
--------------------------------------------------------*/
.sec07 {
    padding: 64px 0;
    background-color: #f2f3f5;
}
@media screen and (max-width: 1000px) {
    .sec07 {
        padding: 40px 0;
    }
}
.sec07 .default-heading {
    margin-bottom: 64px;
}
@media screen and (max-width: 1000px) {
    .sec07 .default-heading {
        margin-bottom: 24px;
    }
}
.sec07 .company-info__wrap {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 16px;
    overflow: hidden;
}
.sec07 .company-info__wrap th, .sec07 .company-info__wrap td {
    font-size: 14px;
    padding: 24px;
    border: 1px solid #f2f3f5;
    line-height: 1.8;
}
@media screen and (max-width: 1000px) {
    .sec07 .company-info__wrap th, .sec07 .company-info__wrap td {
        padding: 16px;
    }
}
.sec07 .company-info__wrap th {
    width: 200px;
    background-color: #f2f3f5;
    font-weight: 700;
    text-align: center;
    vertical-align: middle;
    background-color: #cfd1d6;
}
@media screen and (max-width: 1000px) {
    .sec07 .company-info__wrap th {
        width: 80px;
        padding: 24px 0;
    }
}
.sec07 .company-info__wrap td {
    width: calc(100% - 200px);
    background-color: #fff;
}
@media screen and (max-width: 1000px) {
    .sec07 .company-info__wrap td {
        font-size: 12px;
    }
}
@media screen and (max-width: 1000px) {
    .sec07 .company-info__wrap td a {
        font-weight: 700;
    }
}
.sec07 .company-info__wrap td .yomi {
    margin-left: 14px;
}
@media screen and (max-width: 1000px) {
    .sec07 .company-info__wrap td .yomi {
        display: block;
        margin-left: 0;
    }
}
.sec07 .company-info__wrap td .company-info__txt {
    margin-bottom: 16px;
}
.sec07 .company-info__wrap td .company-info__map-items {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    margin-top: 16px;
}
@media screen and (max-width: 1000px) {
    .sec07 .company-info__wrap td .company-info__map-items {
        display: block;
    }
}
.sec07 .company-info__wrap td .company-info__map-items .company-info__map-item.-left {
    width: 100%;
    max-width: 380px;
}
.sec07 .company-info__wrap td .company-info__map-items .company-info__map-item.-left .ggmap {
    position: relative;
    padding-bottom: 82%;
    height: 0;
    overflow: hidden;
    width: 370px;
}
@media screen and (max-width: 1000px) {
    .sec07 .company-info__wrap td .company-info__map-items .company-info__map-item.-left .ggmap {
        width: 220px;
    }
}
.sec07 .company-info__wrap td .company-info__map-items .company-info__map-item.-left .ggmap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
@media screen and (max-width: 1000px) {
    .sec07 .company-info__wrap td .company-info__map-items .company-info__map-item.-right a {
        font-size: 14px;
        font-weight: 700;
        margin-top: 6px;
        display: inline-block;
    }
}
.sec07 ul.company-info__list.-staff01 {
    padding-left: 20px;
    margin-bottom: 20px;
}
.sec07 ul.company-info__list.-staff01:last-child {
    margin-bottom: 0;
}
.sec07 ul.company-info__list.-staff01 li {
    list-style: disc;
    margin-bottom: 0;
    font-weight: 500;
}
/* form
--------------------------------------------------------*/
.form_area {
    position: relative;
    padding: 100px 30px 80px;
}
@media screen and (max-width: 1000px) {
    .form_area {
        padding: 60px 0 40px;
    }
}
.form_area__bg {
    position: absolute;
    top: 0;
    left: 50%; /* Safari用 */
    transform: translate(-50%, 0%);
    width: 94px;
}
@media screen and (max-width: 1000px) {
    .form_area__bg {
        width: 50px;
    }
}
.form_area__text {
    line-height: 2;
    text-align: center;
    margin-bottom: 0;
    margin-top: 30px;
}
@media screen and (max-width: 1000px) {
    .form_area__text {
        text-align: left;
    }
}
.form_intro {
    max-width: 800px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    color: #fff;
}
.form_intro_txt {
    padding-right: 40px;
}
.form_intro_txt h2 {
    font-size: 5rem;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1;
}
.form_intro_txt p {
    font-weight: bold;
    line-height: 1.8;
}
.form_intro img {
    width: 280px;
}
.cta__form {
    max-width: 750px;
    margin: 40px auto 0;
    background-color: #fff;
    padding: 30px 40px 40px;
    border: solid 1px #333;
}
.cta .form-box {
    padding: 5px;
    background: #fff;
    border-radius: 20px;
    color: #202121;
    font-size: 16px;
}
.cta .form-box a {
    color: #3fa1ed;
}
.cta .form-box form {
    padding: 0;
    max-width: 575px;
    margin: 0 auto;
}
.cta .form-box h2 {
    background-color: #c1203d;
    font-size: 24px;
    color: #fff;
    border-radius: 20px 20px 0 0;
    text-align: center;
    padding: 5px 5px 2px;
}
@media screen and (max-width: 1023px) {
    .cta .form-box h2 {
        font-size: 18px;
    }
}
.cta .form-box h2 span {
    background-color: #fff;
    border-radius: 5px;
    color: #c1203d;
    margin-left: 8px;
    padding: 3px 7px 2px 10px;
    font-size: 20px;
    letter-spacing: 0.22em;
    position: relative;
    top: -2px;
}
@media screen and (max-width: 1023px) {
    .cta .form-box h2 span {
        font-size: 14px;
    }
}
.cta .form-box .form-group {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 26px;
}
@media screen and (max-width: 1023px) {
    .cta .form-box .form-group {
        flex-wrap: wrap;
        margin-top: 10px;
        justify-content: flex-start;
    }
}
.cta .form-box .form-group label {
    display: inline-block;
    width: 126px;
    font-size: 18px;
    text-align: right;
}
@media screen and (max-width: 1023px) {
    .cta .form-box .form-group label {
        font-size: 15px;
        text-align: left;
        width: auto;
        display: inline-block;
        margin-bottom: 5px;
    }
}
.cta .form-box .form-group .haveto {
    color: #fff;
    font-size: 14px;
    background-color: #e23a47;
    padding: 8px;
    border-radius: 5px;
    width: 54px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media screen and (max-width: 1023px) {
    .cta .form-box .form-group .haveto {
        width: auto;
        height: auto;
        font-size: 12px;
        padding: 1px 8px;
        margin-left: 8px;
        position: relative;
        top: -3px;
    }
}
.cta .form-box .form-group .haveto.pc {
    display: flex;
}
@media screen and (max-width: 1023px) {
    .cta .form-box .form-group .haveto.pc {
        display: none;
    }
}
.cta .form-box .form-group input {
    background-color: #eaeaea;
    border: solid 0.25px #ababab;
    border-radius: 3px;
    box-shadow: none;
    padding: 5px 10px;
    width: 330px;
}
.cta .form-box .form-group select {
    background-color: #eaeaea;
    border: solid 0.25px #ababab;
    border-radius: 3px;
    box-shadow: none;
    padding: 5px 10px;
    width: 330px;
}
@media screen and (max-width: 1023px) {
    .cta .form-box .form-group input {
        width: 100%;
    }
    .cta .form-box .form-group select {
        width: 100%;
    }
}
@media screen and (max-width: 1023px) {
    .cta .form-box .form-group.name {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
}
@media screen and (max-width: 1023px) {
    .cta .form-box .form-group.name label {
        width: 100%;
    }
}
.cta .form-box .form-group.name input {
    width: 149px;
}
@media screen and (max-width: 1023px) {
    .cta .form-box .form-group.name input {
        width: 48%;
    }
}
.cta .form-box .form-group .name-haveto {
    display: none;
}
@media screen and (max-width: 1023px) {
    .cta .form-box .form-group .name-haveto {
        display: inline-block;
        color: #fff;
        font-size: 12px;
        padding: 1px 8px;
        margin-left: 8px;
        position: relative;
        top: -3px;
        background-color: #e23a47;
        border-radius: 5px;
    }
}
.cta .form-box .privacy-wrap {
    margin: 26px 0 10px;
    text-align: center;
}
.cta .form-box .privacy-wrap label {
    margin-left: 8px;
}
.cta .form-box .g-recaptcha {
    margin-bottom: 26px;
}
.cta .form-box .g-recaptcha > div {
    margin: 0 auto;
}
.cta .form-box .button-wrap button {
    cursor: pointer;
    position: relative;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.1em;
    width: 100%;
    max-width: 476px;
    border-radius: 8px;
    background-color: #03306d;
    color: #fff;
    border: none;
    margin: 10px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 0 14px;
    transition: all 0.3s;
}
@media screen and (max-width: 1023px) {
    .cta .form-box .button-wrap button {
        font-size: 18px;
    }
}
.cta .form-box .button-wrap button::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 11px;
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    position: absolute;
    top: 50%;
    right: 25px; /* Safari用 */
    transform: translate(0, -50%);
}
.cta .form-box .button-wrap button:hover {
    opacity: 0.7;
}
@media screen and (max-width: 1000px) {
    /*---------------------------SP----- */
    .form_intro {
        max-width: 100%;
        margin: 0 auto 30px;
        display: block;
    }
    .form_intro_txt {
        padding-right: 0;
    }
    .form_intro_txt h2 {
        font-size: 2.2rem;
        margin-bottom: 20px;
        text-align: center;
    }
    .form_intro img {
        width: 50%;
        margin: 20px auto 0;
    }
    .cta__form {
        max-width: 100%;
        border-radius: 6px;
        padding: 20px;
    }
    .cta .form-box .form-group .haveto, .cta .form-box .form-group .name-haveto {
        font-size: 10px;
        padding: 6px 8px;
        line-height: 1;
    }
    .cta .form-box .privacy {
        font-size: 12px;
        line-height: 1.4;
    }
}
/* footer
--------------------------------------------------------*/
footer {
    background-color: #000;
}
footer .foot_bk {
    padding: 60px 0;
    display: flex;
    gap: 40px 80px;
    color: #fff;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}
@media screen and (max-width: 1000px) {
    footer .foot_bk {
        flex-flow: column-reverse;
        padding: 40px 24px 100px;
    }
}
footer .foot_logo {
    width: 100%;
    max-width: 300px;
    font-size: 12px;
}
@media screen and (max-width: 1000px) {
    footer .foot_logo {
        max-width: 100%;
        font-size: 12px;
        text-align: center;
    }
}
@media screen and (max-width: 1000px) {
    footer .foot_logo h3 {
        display: flex;
        justify-content: center;
    }
}
footer .foot_logo img {
    width: 178px;
}
@media screen and (max-width: 1000px) {
    footer .foot_logo img {
        max-width: 100%;
    }
}
footer .foot_logo p {
    margin-top: 10px;
}
@media screen and (max-width: 1000px) {
    footer .foot_logo p {
        letter-spacing: 0;
    }
}
footer .foot_nav {
    width: 100%;
    max-width: calc(100% - 300px);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
@media screen and (max-width: 1000px) {
    footer .foot_nav {
        max-width: 100%;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}
footer .foot_nav dt {
    font-weight: 700;
    margin-bottom: 10px;
}
@media screen and (max-width: 1000px) {
    footer .foot_nav dt {
        font-size: 15px;
    }
}
footer .foot_nav dd a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}
footer .copyright {
    letter-spacing: 0;
    text-align: center;
    color: #000;
    font-size: 1rem;
    margin-bottom: 0;
    padding-top: 30px;
}
footer .copyright a {
    color: #000;
    text-decoration: none;
    font-size: 1rem;
}
footer ul {
    display: flex;
    justify-content: center;
    gap: 50px;
}
.footer-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 24px;
}
@media screen and (max-width: 1000px) {
    .footer-cta {
        display: block;
    }
}
.footer-cta a {
    color: #000;
    background-color: #dbf54d;
    border: 2px solid #dbf54d;
    border-radius: 50px;
    padding: 5px 30px 6px;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
}
@media screen and (max-width: 340px) {
	.footer-cta a {
		font-size: 13px;
	}
}
.pagetop {
    position: fixed;
    z-index: 99;
    right: 20px;
    bottom: 20px;
    width: 60px;
}
@media screen and (max-width: 1000px) {
    /*---------------------------SP----- */
    footer ul {
        display: block;
    }
    .copyright {
        text-align: center;
        font-size: 1rem;
    }
    .pagetop {
        right: 0.8em;
        bottom: 0.8em;
        width: 40px;
    }
}
@media screen and (max-width: 1000px) {
    .top_gift {
        width: 130px;
        top: 300px;
    }
}
@media screen and (max-width: 880px) {
    .top_gift {
        width: 100px !important;
    }
    .sec_kikubeki {
        padding-left: 0;
        padding-right: 0;
    }
}
/* サンクスページ
--------------------------------------------------------*/
.thanks {
    max-width: 800px;
    margin: 0 auto;
}
.thanks h1 {
    text-align: center;
    border-bottom: 2px solid #005bce;
    font-size: 3rem;
    margin-bottom: 60px;
    padding-bottom: 20px;
}
.thanks p {
    text-align: center;
    line-height: 2;
    margin-bottom: 1.4em;
}
.thanks_btn a {
    display: block;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    width: 320px;
    margin: 60px auto 20px;
    padding: 1rem 1rem;
    font-weight: bold;
    border: 2px solid #005bce;
    color: #005bce;
    transition: 0.5s;
}
.thanks_btn a:hover {
    color: #fff;
    background: #005bce;
}
.thanks_btn2 a {
    display: block;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    width: 320px;
    margin: auto;
    padding: 1rem 1rem;
    font-weight: bold;
    border: 2px solid #005bce;
    background: #005bce;
    color: #fff;
    transition: 0.5s;
}
.thanks_btn2 a:hover {
    color: #005bce;
    background: #fff;
}
@media screen and (max-width: 1000px) {
    /*---------------------------SP----- */
    .thanks {
        max-width: 100%;
        margin: 0 auto 0;
        padding: 3em 20px 0;
    }
    .thanks h1 {
        font-size: 1.8rem;
        margin-bottom: 40px;
        padding-bottom: 14px;
    }
    .thanks p {
        text-align: justify;
        line-height: 2;
        margin-bottom: 1.4em;
    }
    .thanks p br {
        display: none;
    }
    .thanks_btn a {
        width: 84%;
    }
    .thanks_btn2 a {
        width: 84%;
    }
}
/* サンクスページ ------------------------------------ */
.thanks {
    padding: 100px 0;
}
.thanks h1 {
    text-align: center;
    font-size: 30px;
    margin: 0;
}
.thanks p {
    font-size: 16px;
    text-align: center;
    margin-bottom: 1.2em;
    padding: 0 20px;
}
.thanks .thanks_img {
    max-width: 100px;
    margin: 40px auto;
}
.thanks .vvl {
    margin: 40px 0;
}
.thanks .btn_thanks a {
    cursor: pointer;
    position: relative;
    font-size: 20px;
    font-weight: 700;
    width: 476px;
    max-width: 100%;
    border-radius: 40px;
    background-color: #fff;
    color: #202121;
    border: none;
    margin: 10px auto 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
    display: block;
    color: #202121;
    padding: 15px 0 14px;
    text-decoration: none;
    text-align: center !important;
}
@media screen and (max-width: 1023px) {
    .thanks {
        padding: 60px 0;
    }
    .thanks h1 {
        font-size: 24px;
    }
    .thanks p {
        font-size: 15px;
        text-align: justify;
        padding: 0 6%;
    }
    .thanks .btn_thanks a {
        font-size: 17px;
        width: 90%;
        max-width: 90%;
    }
} 