@charset "UTF-8";
/* ==========================================================================
 WebFont
============================================================================*/
/* ==========================================================================
viewport指定
============================================================================*/
/* ==========================================================================
 Inner Width Guide
============================================================================*/
/* ==========================================================================
 Color Guide
============================================================================*/
/***
    The new CSS reset - version 1.4.9 (last updated 11.2.2022)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
 */
*:where(
        :not(iframe, canvas, img, svg, video, input, textarea):not(
                svg *,
                symbol *
            )
    ) {
    all: unset;
    display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a,
button {
    cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu {
    list-style: none;
}

/* For images to not be able to exceed their container */
img {
    max-width: 100%;
}

/* removes spacing between cells in tables */
table {
    border-collapse: collapse;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
    white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
    -webkit-appearance: revert;
    -moz-appearance: revert;
    appearance: revert;
}

/* reset default text opacity of input placeholder */
::-webkit-input-placeholder {
    all: unset;
}
:-ms-input-placeholder {
    all: unset;
}
::-ms-input-placeholder {
    all: unset;
}
::placeholder {
    all: unset;
}

/* fix the feature of 'hidden' attribute.
 display:revert; revert to element instead of attribute */
:where([hidden]) {
    display: none;
}

/* revert for bug in Chromium browsers
 - fix for the content editable attribute will work properly. */
:where([contenteditable]) {
    -moz-user-modify: read-write;
    -webkit-user-modify: read-write;
    overflow-wrap: break-word;
    -webkit-line-break: after-white-space;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable="true"]) {
    -webkit-user-drag: element;
}

html {
    font-size: 10px;
    font-family: "ヒラギノ角ゴ W3 JIS2004", "Hiragino Kaku Gothic Pro W3",
        sans-serif;
    font-style: normal;
    color: #333333;
}

.body {
    width: 100%;
    height: auto;
}

#load {
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    position: fixed;
    z-index: 99999;
}

@media screen and (max-width: 640px) {
    .pc {
        display: none;
    }
}

.sp {
    display: none;
}

@media screen and (max-width: 640px) {
    .sp {
        display: block;
    }
}

sup {
    font-size: 70%;
    font-family: "ヒラギノ角ゴ W3 JIS2004", "Hiragino Kaku Gothic Pro W3",
        sans-serif !important;
    vertical-align: top;
    position: relative;
    top: -0.1em;
}

.header {
    background-color: #ffff55;
    width: 100%;
    height: auto;
}

.header .header__inner {
    width: 960px;
    height: auto;
    margin: 0 auto;
}

@media screen and (max-width: 640px) {
    .header .header__inner {
        width: 100%;
    }
}

.header .header__inner .header__image {
    width: 100%;
    height: auto;
    display: block;
}

.header .header__inner .header__image.sp {
    display: none;
}

@media screen and (max-width: 640px) {
    .header .header__inner .header__image.pc {
        display: none;
    }
    .header .header__inner .header__image.sp {
        display: block;
    }
}

.phone-check {
    width: 100%;
    min-width: 960px;
    height: auto;
    background-color: #0fa8ed;
}

@media screen and (max-width: 640px) {
    .phone-check {
        min-width: 100%;
    }
}

.phone-check .phone-check__inner {
    width: 960px;
    height: auto;
    margin: 0 auto;
    padding: 10px 0 5px;
}

@media screen and (max-width: 640px) {
    .phone-check .phone-check__inner {
        width: 95%;
    }
}

.phone-check .phone-check__check-message {
    width: 100%;
    height: auto;
    margin-bottom: 6px;
}

@media screen and (max-width: 640px) {
    .phone-check .phone-check__check-message {
        margin: 0 auto;
    }
}

.phone-check .phone-check__input-phone-message {
    width: 254px;
    height: 76px;
}

.phone-check .phone-check__input-phone-message.sp {
    width: 100%;
    height: auto;
    margin: 0 auto 6px;
}

.phone-check .phone-check__input-phone-message.sp.hidden {
    display: none;
}

.phone-check .phone-check__input-area {
    width: 100%;
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 5px;
}

.phone-check .phone-check__input-area.hidden {
    display: none;
}

@media screen and (max-width: 640px) {
    .phone-check .phone-check__input-area {
        height: auto;
    }
}

.phone-check .phone-check__input-area .phone-check__input-wrapper {
    width: 372px;
    height: 76px;
    background-color: #ffffff;
    position: relative;
}

@media screen and (max-width: 640px) {
    .phone-check .phone-check__input-area .phone-check__input-wrapper {
        width: 59%;
        height: auto;
    }
}

.phone-check
    .phone-check__input-area
    .phone-check__input-wrapper
    .phone-check__input {
    width: 368px;
    height: 72px;
    font-family: "ヒラギノ角ゴ W3 JIS2004", "Hiragino Kaku Gothic Pro W3",
        sans-serif !important;
    font-weight: bold;
    padding-left: 16px;
    line-height: 72px;
    font-size: 3rem;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    margin: auto;
    border: 4px solid #ff6300;
    border-radius: 0px;
    display: block;
}

@media screen and (max-width: 640px) {
    .phone-check
        .phone-check__input-area
        .phone-check__input-wrapper
        .phone-check__input {
        width: calc(100% - 4px);
        height: calc(100% - 4px);
        line-height: normal;
    }
}

@media screen and (max-width: 500px) {
    .phone-check
        .phone-check__input-area
        .phone-check__input-wrapper
        .phone-check__input {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 395px) {
    .phone-check
        .phone-check__input-area
        .phone-check__input-wrapper
        .phone-check__input {
        font-size: 2rem;
        padding-left: 10px;
    }
}

.phone-check
    .phone-check__input-area
    .phone-check__input-wrapper
    .phone-check__input::-webkit-input-placeholder {
    color: #d1d1d1;
    font-family: "ヒラギノ角ゴ W3 JIS2004", "Hiragino Kaku Gothic Pro W3",
        sans-serif !important;
    font-weight: bold;
}

.phone-check
    .phone-check__input-area
    .phone-check__input-wrapper
    .phone-check__input:-ms-input-placeholder {
    color: #d1d1d1;
    font-family: "ヒラギノ角ゴ W3 JIS2004", "Hiragino Kaku Gothic Pro W3",
        sans-serif !important;
    font-weight: bold;
}

.phone-check
    .phone-check__input-area
    .phone-check__input-wrapper
    .phone-check__input::-ms-input-placeholder {
    color: #d1d1d1;
    font-family: "ヒラギノ角ゴ W3 JIS2004", "Hiragino Kaku Gothic Pro W3",
        sans-serif !important;
    font-weight: bold;
}

.phone-check
    .phone-check__input-area
    .phone-check__input-wrapper
    .phone-check__input::placeholder {
    color: #d1d1d1;
    font-family: "ヒラギノ角ゴ W3 JIS2004", "Hiragino Kaku Gothic Pro W3",
        sans-serif !important;
    font-weight: bold;
}

.phone-check
    .phone-check__input-area
    .phone-check__input-wrapper
    .phone-check__alert {
    position: absolute;
    background-color: #ffcccc;
    color: red;
    font-family: "ヒラギノ角ゴ W6 JIS2004", "Hiragino Kaku Gothic Pro W6",
        sans-serif;
    font-weight: bold;
    padding: 8px 8px;
    font-size: 14px;
    top: 65px;
    left: 16px;
    width: 250px;
    border-radius: 4px;
    -webkit-box-shadow: 2px 2px 2px 0px rgba(192, 192, 192, 0.8);
    box-shadow: 2px 2px 2px 0px rgba(192, 192, 192, 0.8);
}

.phone-check
    .phone-check__input-area
    .phone-check__input-wrapper
    .phone-check__alert:after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #ffcccc;
    top: -4px;
    left: 16px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.phone-check
    .phone-check__input-area
    .phone-check__input-wrapper
    .phone-check__alert.hidden {
    display: none;
}

.phone-check .phone-check__input-area .phone-check__check-btn-phone {
    width: 318px;
    height: auto;
    cursor: pointer;
}

@media screen and (max-width: 640px) {
    .phone-check .phone-check__input-area .phone-check__check-btn-phone {
        width: 38%;
    }
}

.phone-check .phone-check__input-area .phone-check__check-btn-phone:hover {
    -webkit-transform: translate(2px, 2px);
    transform: translate(2px, 2px);
}

.phone-check
    .phone-check__input-area
    .phone-check__check-btn-phone
    .phone-check__check-btn-phone-image {
    width: 100%;
    height: auto;
}

.phone-check .phone-check__attention {
    color: #ffffff;
    font-size: 0.8rem;
    font-family: "ヒラギノ角ゴ W3 JIS2004", "Hiragino Kaku Gothic Pro W3",
        sans-serif;
}

.phone-check .phone-check__attention.hidden {
    display: none;
}

@media screen and (max-width: 640px) {
    .phone-check .phone-check__attention {
        font-size: 1rem;
    }
}

.phone-check .phone-check__success {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px 115px;
    background-color: #ffffff;
    border-radius: 5px;
    margin-bottom: 5px;
    opacity: 0%;
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}

.phone-check .phone-check__success.hidden {
    display: none;
}

.phone-check .phone-check__success.fadein {
    -webkit-animation: fadeIn 0.8s ease-in 0s 1 forwards;
    animation: fadeIn 0.8s ease-in 0s 1 forwards;
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@media screen and (max-width: 640px) {
    .phone-check .phone-check__success {
        padding: 30px 5vw;
    }
}

.phone-check .phone-check__success .phone-check__success-icon {
    width: 53px;
    height: 53px;
    margin-right: 15px;
}

.phone-check .phone-check__success .phone-check__success-thanks {
    font-size: 2.2rem;
    font-weight: bold;
    font-family: "ヒラギノ角ゴ W6 JIS2004", "Hiragino Kaku Gothic Pro W6",
        sans-serif;
    line-height: 2.2rem;
    margin-bottom: 15px;
}

@media screen and (max-width: 640px) {
    .phone-check .phone-check__success .phone-check__success-thanks {
        margin-bottom: 5px;
    }
}

.phone-check .phone-check__success .phone-check__success-message {
    font-size: 1.5rem;
    font-family: "ヒラギノ角ゴ W3 JIS2004", "Hiragino Kaku Gothic Pro W3",
        sans-serif;
    line-height: 1.5rem;
}

@media screen and (max-width: 640px) {
    .phone-check .phone-check__success .phone-check__success-message {
        line-height: 2.5rem;
    }
}

.email-check {
    width: 100%;
    min-width: 960px;
    height: auto;
    background-color: #3dcff6;
}

@media screen and (max-width: 640px) {
    .email-check {
        min-width: 100%;
    }
}

.email-check .email-check__inner {
    width: 960px;
    height: auto;
    margin: 0 auto;
    padding-top: 24px;
    position: relative;
}

@media screen and (max-width: 640px) {
    .email-check .email-check__inner {
        width: 95%;
        height: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 12px 0;
    }
}

.email-check .email-check__check-btn-email {
    width: 672px;
    display: block;
    height: auto;
    margin: 0 auto;
    cursor: pointer;
}

@media screen and (max-width: 640px) {
    .email-check .email-check__check-btn-email {
        display: none;
    }
}

.email-check .email-check__check-btn-email:hover {
    -webkit-transform: translate(2px, 2px);
    transform: translate(2px, 2px);
}

.email-check .email-check__check-btn-email .email-check__check-btn-email-image {
    width: 100%;
    height: auto;
    display: block;
}

.email-check .email-check__link {
    width: 100%;
    height: 92px;
    display: block;
}

@media screen and (max-width: 640px) {
    .email-check .email-check__link {
        width: 48%;
        height: auto;
    }
}

.email-check .email-check__link.sp {
    display: none;
}

@media screen and (max-width: 640px) {
    .email-check .email-check__link.sp {
        display: block;
    }
}

.email-check .email-check__call-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #ffffff;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 21px;
    padding-bottom: 26px;
}

@media screen and (max-width: 640px) {
    .email-check .email-check__call-info {
        display: none;
    }
}

.email-check .email-check__phone-number {
    font-family: "oswald", sans-serif;
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 4.5rem;
    line-height: 45px;
    background-image: url("../img/phone-icon.svg");
    background-size: 26px 26px;
    background-repeat: no-repeat;
    background-position: left 0 center;
    padding-left: 36px;
    margin-right: 15px;
}

.email-check .email-check__time-zone {
    font-size: 1.8rem;
}

.email-check .email-check__image {
    position: absolute;
    height: 168px;
    bottom: 0;
}

.email-check .email-check__image.male {
    width: 142px;
    right: 10px;
}

.email-check .email-check__image.female {
    width: 122px;
    left: 10px;
}

.email-check .email-check__image.email,
.email-check .email-check__image.phone {
    width: 100%;
    position: relative;
    height: auto;
}

.email-check .email-check__image.email:hover,
.email-check .email-check__image.phone:hover {
    -webkit-transform: translate(2px, 2px);
    transform: translate(2px, 2px);
}

.card-list {
    width: 100%;
    height: auto;
    font-family: "ryo-gothic-plusn", sans-serif;
}

.card-list .card-list__inner {
    width: 960px;
    margin: 0 auto;
    padding: 55px 0;
}

@media screen and (max-width: 640px) {
    .card-list .card-list__inner {
        width: 95%;
        padding: 30px 0;
    }
}

.card-list .card-list__title {
    width: 100%;
    height: 60px;
    font-weight: 700;
    font-size: 2.7rem;
    background-color: #ffff55;
    margin-bottom: 46px;
    border-left: 10px solid #000000;
    padding-left: 30px;
    letter-spacing: 2px;
    line-height: 60px;
}

.card-list .card-list__title sup {
    font-weight: normal;
    font-size: 50%;
    top: -0.4em;
}

@media screen and (max-width: 640px) {
    .card-list .card-list__title {
        height: auto;
        font-size: 1.9rem;
        line-height: 26px;
        margin-bottom: 30px;
        padding: 10px;
    }
}

.card-list .card-list__image-list {
    width: 100%;
    height: auto;
    position: relative;
}

.card-list .card-list__image {
    width: 100%;
    height: auto;
    display: block;
}

@media screen and (max-width: 640px) {
    .card-list .card-list__image.pc {
        display: none;
    }
    .card-list .card-list__image.hidden {
        display: none;
    }
}

.card-list .card-list__button {
    width: 42%;
    height: auto;
    margin: 15px auto 0;
}

.card-list .card-list__button .card-list__button-image {
    width: 100%;
}

.card-list .card-list__button .card-list__button-image.hidden {
    display: none;
}

.card-list .card-list__attention,
.back__attention {
    display: block;
    color: #868686;
    font-family: "ヒラギノ角ゴ W3 JIS2004", "Hiragino Kaku Gothic Pro W3",
        sans-serif;
    margin-top: 15px;
}

@media screen and (max-width: 640px) {
    .card-list .card-list__attention {
        font-size: 1rem;
    }
}

.card-list .card-list__attention::before {
    content: "※1.";
    margin-right: 3px;
}

.main {
    width: 100%;
    height: auto;
}

.main .main__section {
    width: 100%;
    min-width: 960px;
    font-family: "ryo-gothic-plusn", sans-serif;
    font-weight: normal;
    padding-bottom: 55px;
}

@media screen and (max-width: 640px) {
    .main .main__section {
        min-width: 100%;
        padding-bottom: 30px;
    }
}

.main .main__section.top {
    padding-top: 30px;
}

.main .main__section.horror {
    width: 100%;
    height: auto;
    background-color: #dfd8e5;
    position: relative;
}

.main .main__section.horror::after {
    content: "";
    width: 100%;
    height: 472px;
    background-image: url("../img/horror-background.svg");
    background-repeat: no-repeat;
    background-size: 1875px 472px;
    background-position: center top -20px;
    display: block;
    position: absolute;
    top: 0;
    z-index: 1;
}

@media screen and (max-width: 640px) {
    .main .main__section.horror::after {
        background-image: url("../img/sp/horror-background.svg");
        background-size: 100% auto;
    }
}

@media screen and (max-width: 500px) {
    .main .main__section.horror::after {
        background-size: 110% auto;
    }
}

@media screen and (max-width: 395px) {
    .main .main__section.horror::after {
        background-size: 130% auto;
    }
}

.main .main__section .main__section-inner {
    width: 960px;
    height: auto;
    margin: 0 auto;
    position: relative;
    z-index: 100;
}

@media screen and (max-width: 640px) {
    .main .main__section .main__section-inner {
        width: 95%;
    }
}

.main .main__section .main__section-inner.horror {
    padding-top: 30px;
}

.main .main__title {
    width: 100%;
    height: 60px;
    font-weight: 700;
    font-size: 2.7rem;
    background-color: #ffff55;
    margin-bottom: 47px;
    border-left: 10px solid #000000;
    padding-left: 30px;
    letter-spacing: 2px;
    line-height: 60px;
}

@media screen and (max-width: 640px) {
    .main .main__title {
        height: auto;
        font-size: 1.9rem;
        line-height: 26px;
        padding: 10px;
        letter-spacing: 0px;
        margin-bottom: 0;
    }
    .main .main__title.check-now {
        text-align: center;
        border: none;
        margin-bottom: 30px;
        position: relative;
    }
    .main .main__title.check-now .main__title-image {
        width: auto;
        height: 95%;
        position: absolute;
        bottom: 0;
    }
    .main .main__title.check-now .main__title-image.image1 {
        left: 5px;
    }
    .main .main__title.check-now .main__title-image.image2 {
        right: 5px;
    }
}

.main .main__topic {
    width: 100%;
    height: 210px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media screen and (max-width: 640px) {
    .main .main__topic {
        height: auto;
        display: block;
        text-align: center;
    }
}

.main .main__topic.multiple {
    margin-bottom: 30px;
}

@media screen and (max-width: 640px) {
    .main .main__topic.multiple {
        margin-bottom: 0;
    }
}

.main .main__topic.horror {
    margin-bottom: 20px;
}

.main .main__topic .main__topic-text {
    width: 512px;
    height: 100%;
    position: relative;
}

@media screen and (max-width: 640px) {
    .main .main__topic .main__topic-text {
        width: 100%;
        height: auto;
        text-align: center;
    }
}

.main .main__topic .main__topic-text.horror {
    width: 645px;
}

@media screen and (max-width: 640px) {
    .main .main__topic .main__topic-text.horror {
        width: 100%;
    }
}

.main .main__topic .main__topic-text.family {
    width: 370px;
}

@media screen and (max-width: 640px) {
    .main .main__topic .main__topic-text.family {
        width: 100%;
    }
}

.main .main__topic .main__topic-title {
    display: inline-block;
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 2.7rem;
    letter-spacing: 2px;
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(70%, transparent),
        color-stop(70%, #ffff55)
    );
    background: linear-gradient(transparent 70%, #ffff55 70%);
    margin-bottom: 25px;
}

@media screen and (max-width: 640px) {
    .main .main__topic .main__topic-title {
        margin-top: 25px;
        margin-bottom: 24px;
        font-size: 3rem;
        line-height: 3rem;
        letter-spacing: 0px;
    }
    .main .main__topic .main__topic-title.pc {
        display: none;
    }
    .main .main__topic .main__topic-title.br {
        background: none;
    }
}

.main .main__topic .main__topic-title .main__topic-title-span {
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(70%, transparent),
        color-stop(70%, #ffff55)
    );
    background: linear-gradient(transparent 70%, #ffff55 70%);
    display: none;
}

.main .main__topic .main__topic-title .main__topic-title-span.top {
    margin-bottom: 16px;
}

@media screen and (max-width: 640px) {
    .main .main__topic .main__topic-title .main__topic-title-span {
        display: inline-block;
    }
    .main .main__topic .main__topic-title .main__topic-title-span.block {
        display: block;
    }
}

.main .main__topic .main__topic-title.horror {
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(70%, transparent),
        color-stop(70%, #ffffff)
    );
    background: linear-gradient(transparent 70%, #ffffff 70%);
}

@media screen and (max-width: 640px) {
    .main .main__topic .main__topic-title.horror {
        background: none;
    }
}

.main .main__topic .main__topic-detail {
    width: 100%;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 2.6rem;
}

@media screen and (max-width: 640px) {
    .main .main__topic .main__topic-detail {
        text-align: left;
        font-size: 2rem;
        line-height: 3.2rem;
    }
}

.main .main__topic .main__topic-detail .orange {
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(50%, transparent),
        color-stop(50%, #ffb180)
    );
    background: linear-gradient(transparent 50%, #ffb180 50%);
}

.main .main__topic .main__topic-text-image {
    width: 115px;
    height: auto;
    position: absolute;
    right: 0;
    bottom: 0;
}

@media screen and (max-width: 640px) {
    .main .main__topic .main__topic-text-image {
        width: 30%;
        position: relative;
        margin: 0 auto;
        display: block;
    }
}

.main .main__topic .main__topic-images {
    width: 570px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media screen and (max-width: 640px) {
    .main .main__topic .main__topic-images {
        width: 90%;
        margin: 0 auto;
    }
}

.main .main__topic .main__topic-image {
    width: 420px;
    height: 100%;
    margin-top: 25px;
}

.main .main__topic .main__topic-image.horror,
.main .main__topic .main__topic-image.family {
    width: 280px;
    height: 210px;
    margin-top: 0;
}

@media screen and (max-width: 640px) {
    .main .main__topic .main__topic-image.horror,
    .main .main__topic .main__topic-image.family {
        width: 46%;
        height: auto;
        margin-top: 10px;
    }
}

@media screen and (max-width: 640px) {
    .main .main__topic .main__topic-image {
        width: 80%;
    }
}

.main .main__topic-attention {
    display: inline-block;
    font-family: "ヒラギノ角ゴ W3 JIS2004", "Hiragino Kaku Gothic Pro W3",
        sans-serif;
    color: #bcbcbc;
    margin-top: 15px;
}

.main .main__topic-attention::before {
    content: "※2.";
    margin-right: 3px;
}

@media screen and (max-width: 640px) {
    .main .main__topic-attention {
        font-size: 1rem;
        color: #868686;
        line-height: unset;
    }
}

.main .main__howto {
    width: 864px;
    height: auto;
    margin: 0 auto;
}

@media screen and (max-width: 640px) {
    .main .main__howto {
        width: 95%;
    }
}

.main .main__list {
    width: 100%;
    height: auto;
}

.main .main__list.sp {
    margin-top: 50px;
}

.main .main__item {
    width: 100%;
    height: 200px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px;
}

@media screen and (max-width: 640px) {
    .main .main__item {
        display: block;
        height: auto;
    }
}

.main .main__item:last-child {
    margin-bottom: 0;
}

.main .main__item .main__item-contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.main .main__item .main__item-no {
    width: 53px;
    height: 53px;
    margin-right: 27px;
}

@media screen and (max-width: 640px) {
    .main .main__item .main__item-no {
        width: 22px;
        height: 22px;
        margin-top: 5px;
        margin-right: 0;
    }
}

.main .main__item .main__item-image {
    width: 320px;
    height: 100%;
}

@media screen and (max-width: 640px) {
    .main .main__item .main__item-image {
        width: 80%;
        padding: 10px 15px 0;
        margin: 0 auto;
        display: block;
    }
}

.main .main__item .main__item-text {
    width: calc(100% - 400px);
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 3px;
    line-height: 4rem;
    padding-left: 37px;
}

@media screen and (max-width: 640px) {
    .main .main__item .main__item-text {
        width: calc(100% - 32px);
        font-size: 2rem;
        letter-spacing: 0px;
        line-height: 3.2rem;
        padding-left: 10px;
    }
}

.main .main__free-check-image {
    width: 100%;
    height: auto;
}

.main .main__declare-list {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media screen and (max-width: 640px) {
    .main .main__declare-list {
        display: none;
    }
}

.main .main__declare-list.sp {
    display: none;
    margin-top: 43px;
}

@media screen and (max-width: 640px) {
    .main .main__declare-list.sp {
        display: block;
    }
}

.main .main__declare-list .main__declare-image {
    width: 100%;
    height: auto;
}

.main .main__declare-list .main__declare-image.top {
    width: 468px;
    margin-bottom: 24px;
}

@media screen and (max-width: 640px) {
    .main .main__declare-list .main__declare-image.top {
        width: 100%;
    }
}

.main .main__declare-list .main__declare-image.bottom {
    width: 304px;
}

@media screen and (max-width: 640px) {
    .main .main__declare-list .main__declare-image.bottom {
        width: 100%;
    }
}

.main .main__qa-title {
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 2.7rem;
    letter-spacing: 2px;
    margin-bottom: 35px;
    text-align: center;
}

.main .main__qa-title span {
    display: inline-block;
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(70%, transparent),
        color-stop(70%, #ffff55)
    );
    background: linear-gradient(transparent 70%, #ffff55 70%);
}

@media screen and (max-width: 640px) {
    .main .main__qa-title {
        font-size: 2.5rem;
        line-height: 2.5rem;
        letter-spacing: 0px;
        margin-top: 45px;
    }
}

.main .main__qa-image {
    width: 94%;
    height: auto;
    margin: 0 auto 23px;
    display: block;
}

.main .main__qa-image.sp {
    width: 95%;
    display: none;
}

@media screen and (max-width: 640px) {
    .main .main__qa-image.pc {
        display: none;
    }
    .main .main__qa-image.sp {
        display: block;
    }
}

.main .main__qa-list {
    width: 864px;
    height: auto;
    margin: 0 auto;
    font-family: "ryo-gothic-plusn", sans-serif;
}

@media screen and (max-width: 640px) {
    .main .main__qa-list {
        width: 95%;
    }
}

.main .main__qa-list .main__qa-item-title,
.main .main__qa-list .main__qa-def {
    width: 100%;
    height: auto;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 22px;
    border-right: 4px solid #000000;
    border-left: 4px solid #000000;
    padding: 14px 14px 14px 44px;
    background-size: 22px 22px;
    background-repeat: no-repeat;
    background-position: top 14px left 14px;
    letter-spacing: 0;
}

@media screen and (max-width: 640px) {
    .main .main__qa-list .main__qa-item-title,
    .main .main__qa-list .main__qa-def {
        font-size: 1.7rem;
    }
}

.main .main__qa-list .main__qa-item-title {
    border-top: 4px solid #000000;
    border-bottom: 2px solid #000000;
    border-radius: 10px 10px 0 0;
    background-color: #fde0e1;
    text-align: left;
    margin: 0;
    background-image: url("../img/question.svg");
}

.main .main__qa-list .main__qa-def {
    border-bottom: 4px solid #000000;
    border-radius: 0 0 10px 10px;
    margin: 0 0 7px;
    background-color: #ffffff;
    background-image: url("../img/answer.svg");
}

.main .main__horror-title-image {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

@media screen and (max-width: 640px) {
    .main .main__horror-title-image {
        margin-top: 30px;
    }
}

.main .main__horror {
    width: 864px;
    height: auto;
    margin: 0 auto 60px;
}

@media screen and (max-width: 640px) {
    .main .main__horror {
        width: 95%;
    }
}

.main .main__horror-message-image {
    width: 82%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.main .main__horror-message-image.sp {
    display: none;
}

@media screen and (max-width: 640px) {
    .main .main__horror-message-image.pc {
        display: none;
    }
    .main .main__horror-message-image.sp {
        display: block;
    }
}

.main .main__client-voice-list {
    width: 100%;
    height: auto;
}

@media screen and (max-width: 640px) {
    .main .main__client-voice-list {
        margin-top: 40px;
    }
}

.main .main__client-voice-list .main__client-voice-item {
    width: 100%;
    height: 298px;
    background-color: #ffffff;
    background-size: 100% auto;
    background-repeat: no-repeat;
    position: relative;
    margin-bottom: 15px;
    border-radius: 8px;
}

@media screen and (max-width: 640px) {
    .main .main__client-voice-list .main__client-voice-item {
        height: auto;
        border: 3px solid #000000;
        border-radius: 10px 10px 10px 10px;
    }
}

.main .main__client-voice-list .main__client-voice-item:nth-child(1) {
    background-image: url("../img/client-voice-image1.png");
}

.main .main__client-voice-list .main__client-voice-item:nth-child(2) {
    background-image: url("../img/client-voice-image2.png");
}

.main .main__client-voice-list .main__client-voice-item:nth-child(3) {
    background-image: url("../img/client-voice-image3.png");
}

.main .main__client-voice-list .main__client-voice-item:nth-child(4) {
    background-image: url("../img/client-voice-image4.png");
    margin-bottom: 0;
}

.main .main__client-voice-list .main__client-voice-text {
    position: absolute;
    left: 300px;
    top: 142px;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 2.6rem;
}

@media screen and (max-width: 640px) {
    .main .main__client-voice-list .main__client-voice-text {
        position: relative;
        left: 0;
        top: 0;
        font-size: 2rem;
        line-height: 3.2rem;
        padding: 10px 15px;
    }
}

.main .main__client-voice-list .main__client-voice-text .orange {
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(50%, transparent),
        color-stop(50%, #ffb180)
    );
    background: linear-gradient(transparent 50%, #ffb180 50%);
}

.footer {
    width: 100%;
    min-width: 960px;
    height: 80px;
    color: #868686;
    border-top: 1px solid #c8c8c8;
    font-family: "ヒラギノ角ゴ W3 JIS2004", "Hiragino Kaku Gothic Pro W3",
        sans-serif;
}

@media screen and (max-width: 640px) {
    .footer {
        min-width: 100%;
        height: auto;
    }
}

.footer .footer__inner {
    width: 960px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 auto;
    padding-top: 20px;
}

@media screen and (max-width: 640px) {
    .footer .footer__inner {
        width: 95%;
        display: block;
        text-align: center;
        padding-bottom: 20px;
    }
}

.footer .footer__logo {
    display: block;
    width: auto;
    height: 32px;
}

@media screen and (max-width: 640px) {
    .footer .footer__logo {
        margin-bottom: 15px;
    }
}

.footer .footer__logo .footer__image {
    width: auto;
    height: 100%;
}

.footer .footer__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.2rem;
    margin-bottom: 3px;
}

.footer .footer__list .footer__item {
    margin-left: 15px;
}

@media screen and (max-width: 640px) {
    .footer .footer__list {
        font-size: 1rem;
        text-align: center;
        color: #bcbcbc;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.footer .footer__copyright {
    display: block;
    text-align: right;
}

@media screen and (max-width: 640px) {
    .footer .footer__copyright {
        font-size: 1rem;
        text-align: center;
        color: #bcbcbc;
    }
}

.cta {
    width: 100%;
    height: 135px;
    background: rgba(51, 51, 51, 0.8);
    position: fixed;
    bottom: 0;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    z-index: 999;
}

.cta.hidden {
    bottom: -135px;
}

@media screen and (max-width: 640px) {
    .cta {
        height: auto;
    }
}

.cta .cta__inner {
    width: 960px;
    height: 100%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (max-width: 640px) {
    .cta .cta__inner {
        width: 95%;
        display: block;
        padding-top: 10px;
        padding-bottom: 20px;
    }
}

.cta .cta__message {
    font-family: "ryo-gothic-plusn", sans-serif;
    color: #ffffff;
}

.cta .cta__message .yellow {
    color: #ffda00;
}

.cta .cta__message .cta__text {
    font-size: 2rem;
    font-weight: 800;
    line-height: 20px;
    margin-bottom: 12px;
}

@media screen and (max-width: 640px) {
    .cta .cta__message .cta__text {
        font-size: 4vw;
        text-align: center;
    }
}

.cta .cta__message .cta__call-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (max-width: 640px) {
    .cta .cta__message .cta__call-info.pc {
        display: none;
    }
}

.cta .cta__message .cta__phone-number {
    font-family: "oswald", sans-serif;
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 3.6rem;
    line-height: 36px;
    background-image: url("../img/phone-icon-green.svg");
    background-size: 26px 26px;
    background-repeat: no-repeat;
    background-position: left 0 center;
    padding-left: 36px;
    margin-right: 15px;
}

.cta .cta__message .cta__time-zone {
    font-size: 1.2rem;
    font-family: "ヒラギノ角ゴ W3 JIS2004", "Hiragino Kaku Gothic Pro W3",
        sans-serif;
}

.cta .cta__button {
    width: 384px;
    height: 72px;
    cursor: pointer;
}

.cta .cta__button:hover {
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
}

.cta .cta__button .cta__link {
    width: 100%;
    height: 100%;
    display: block;
}

.cta .cta__button .cta__image {
    width: 100%;
    height: 100%;
    display: block;
}

.cta .cta__button-list {
    display: none;
}

@media screen and (max-width: 640px) {
    .cta .cta__button-list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

.cta .cta__button-item {
    width: 49%;
}

.cta .cta__link {
    display: block;
}

.cta .cta__button-image {
    width: 100%;
    height: auto;
    display: block;
}

.cta .cta__button-image:hover {
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
}
/*# sourceMappingURL=style.css.map */

.phone-check__safety {
    display: flex;
    width: 100%;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 0.75rem;
    background-color: #fff;
    border-radius: 10px;
    font-size: 1.6rem;
    font-weight: 700;
    align-items: center;
    gap: 0.25rem;
}

.phone-check__safety.hidden {
    display: none;
}

.phone-check__safety::before {
    content: "";
    display: block;
    height: 0;
    width: 2rem;
    padding-top: 2rem;
    background: url(../img/check.svg) no-repeat 50%;
}

@media (max-width: 640px) {
    .phone-check__safety {
        width: 100%;
        margin-top: 1rem;
        margin-bottom: 1rem;
        padding: 0.5rem;
    }

    .phone-check__safety::before {
        width: 4rem;
        padding-top: 4rem;
    }
}
