@charset "utf-8";

/*----------------------------------------------------
CSSリセット
----------------------------------------------------*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

body {
    line-height: 1;
}

article,
aside,
dialog,
figure,
footer,
header,
hgroup,
nav,
section {
    display: block;
}

nav ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

a {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

ins {
    background-color: #ff9;
    color: #000;
    text-decoration: none;
}

mark {
    background-color: #ff9;
    color: #000;
    font-style: italic;
    font-weight: bold;
}

del {
    text-decoration: line-through;
}

abbr[title],
dfn[title] {
    border-bottom: 1px dotted #000;
    cursor: help;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #cccccc;
    margin: 1em0;
    padding: 0;
}

input,
select {
    vertical-align: middle;
}

/*----------------------------------------------------
----------------------------------------------------*/
html,
body {
    height: auto;
}

body {
    color: #000;
    font-family: sans-serif;
    font-size: 17px;
    letter-spacing: .015em;
    line-height: 1.75;
    word-wrap: break-word;
    overflow-x: hidden;
}

body>.wrap {
    overflow: hidden;
    width: 100%;
    min-height: 100%;
    position: relative;
    height: auto !important;
}

.pr {
    display: block;
    font-size: 11px;
    color: #666;
    text-align: right;
    margin: 8px;
}

img {
    display: block;
    width: 100%;
    max-width: 600px;
    margin: 14px auto;
    height: auto;
}

video {
    display: block;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

p {
    margin: 20px;
}

a {
    color: #0066cc;
}

.red {
    color: #ff0000;
}

.blue {
    color: #0066cc;
}

.yellow {
    color: #ffff00;
}

.orange {
    color: #ff5d00;
}

.org {
    color: #e54825;
}

.purple {
    color: #fa57cc;
}

.pink {
    color: #fa57cc;
}

.wht {
    color: #fff;
}

.mk_y {
    background: #ffff00;
    margin: 4px 0;
}

.mk_r {
    background: #ff0000;
    margin: 4px 0;
}

.mk_b {
    background: #0000ff;
    margin: 4px 0;
}

.mk_or {
    background: #ff5d00;
    margin: 4px 0;
}

.mk_bk {
    background: #000;
    margin: 4px 0;
}

.uline {
    display: inline;
    border-bottom: 1px solid;
    padding-bottom: 1px;
    margin-bottom: 1px;
}

.uline2 {
    display: inline;
    border-bottom: 2px solid;
    padding-bottom: 2px;
    margin-bottom: 2px;
}

ul {
    position: relative;
    margin: 40px auto;
    padding: 20px 0;
}

.continue {
    display: flex;
    justify-content: center;
}

h2 {
    font-size: 20px;
    color: #ffffff;
    background: #ff7f50;
    text-align: center;
    padding: 10px !important;
    margin: 40px 10px !important;
    font-weight: 700;
    line-height: 30px;
    position: relative;
}

h2:before {
    border-top: 10px solid #ff7f50;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    content: "";
    position: absolute;
    bottom: -10px;
    left: calc(50% - 10px);
}

h3 {
    width: 90%;
    font-size: 21px;
    color: #000;
    background: #fff;
    font-weight: normal;
    border-left: 8px solid #e24a1e;
    border-bottom: 2px solid #e24a1e;
    /*
    border-radius: 12px;
    */
    margin: 20px 10px 50px;
    padding: 6px;
    text-align: left;
}

.cp_arrows {
    position: relative;
    height: 50px;
    margin-top: 1em;
    margin-bottom: 1em;
}

.cp_arrows .cp_arrowfirst {
    animation: arrow-move08 2s ease-in-out infinite;
}

.cp_arrows .cp_arrowsecond {
    animation: arrow-move08 2s 1s ease-in-out infinite;
}

.cp_arrows .cp_arrow {
    position: absolute;
    top: 100%;
    left: 45%;
    transform: translate(-50%, -50%);
    transform-origin: 50% 50%;
    opacity: 0;
}

.content :first-child {
    margin-top: 0;
}

@keyframes arrow-move08 {
    0% {
        top: 40%;
        opacity: 0;
    }

    70% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.cp_arrows .cp_arrow:before {
    transform: rotate(30deg) translateX(-39%);
    transform-origin: top left;
}

.cp_arrows .cp_arrow:after {
    transform: rotate(-30deg) translateX(39%);
    transform-origin: top right;
}

.cp_arrows .cp_arrow:before,
.cp_arrows .cp_arrow:after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 40px;
    height: 3px;
    content: '';
    background: #E91E63;
}

.cp_arrows *,
.cp_arrows *:before,
.cp_arrows *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.cp_arrows *,
.cp_arrows *:before,
.cp_arrows *:after {
    box-sizing: border-box;
}

.list-inputs>li input[type=checkbox] {
    display: none;
}

.list-inputs>li input[type=checkbox]+.wrap-input {
    display: inline-block;
    width: 100%;
    position: relative;
    font-size: 20px;
    color: #ffffff;
    background-color: #999999;
    border: 2px solid #999999;
    overflow: hidden;
    border-radius: 10px;
    box-sizing: border-box;
}

.list-inputs>li input[type=checkbox]+.wrap-input.value,
.list-inputs>li input[type=checkbox]+.wrap-input .value {
    position: relative;
    display: inline-block;
    padding: 0.6em 0.5em 0.6em 1.5em;
    line-height: 1.2;
    box-sizing: border-box;
}

.list-inputs>li input[type=checkbox]+.wrap-input.value::before,
.list-inputs>li input[type=checkbox]+.wrap-input .value::before {
    position: absolute;
    content: "";
    display: block;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    border: 2px solid #ffffff;
    left: 0.3em;
    top: 0.6em;
}

.list-inputs>li input[type=checkbox]+.wrap-input .value {
    width: 100%;
}

.list-inputs>li input[type=checkbox]:checked+.wrap-input {
    background-color: #ff7f50;
    border: 2px solid #ff7f50;
}

.list-inputs>li input[type=checkbox]:checked+.wrap-input.value,
.list-inputs>li input[type=checkbox]:checked+.wrap-input .value {
    position: relative;
}

.list-inputs>li input[type=checkbox]:checked+.wrap-input.value::after,
.list-inputs>li input[type=checkbox]:checked+.wrap-input .value::after {
    position: absolute;
    content: "";
    display: block;
    width: 0.4em;
    height: 0.8em;
    border-right: 3px solid #ffffff;
    border-bottom: 3px solid #ffffff;
    -webkit-transform: rotate(40deg);
    transform: rotate(40deg);
    left: 0.8em;
    top: 0.4em;
}

.accordion-link {
    width: 600px;
    max-width: 100%;
    background-color: #faebd7;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
    box-sizing: border-box;
}

.accordion-link picture,
.accordion-link img {
    max-width: 80%;
    vertical-align: bottom;
    margin: 0 auto;
}

.accordion-link .question {
    width: 90%;
    margin: 40px auto 0;
    padding: 0 20px;
    background-color: #ffffff;
    border-radius: 16px;
    text-align: center;
    box-sizing: border-box;
}

.accordion-link:last-of-type .question {
    margin-bottom: 40px;
}

.accordion-link .result {
    text-align: center;
    width: 100%;
    padding: 0;
    background-color: #ffffff;
    box-sizing: border-box;
}

.text {
    color: #000000;
    line-height: 1.5;
    margin: 1em 0 10px;
    font-size: 25px;
}

.tag {
    position: relative;
    top: -1.2em;
    display: inline-block;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    margin: 0;
    padding: 0.8em 1em 0.6em;
    background-color: #ff7f50;
    border-radius: 200vw;
    box-sizing: border-box;
}

.tag::before {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 10px solid transparent;
    border-top: 12px solid #ff7f50;
    border-left: 10px solid transparent;
    position: absolute;
    bottom: -10px;
    left: calc(50% - 10px);
    box-sizing: border-box;
}

.list-step {
    display: flex;
    gap: 5px 16px;
    align-items: center;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.list-step>li {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;
    color: #999999;
    font-size: 20px;
    line-height: 1;
    margin: 0;
    padding: 0.5em;
    background-color: #efefef;
    border-radius: 50%;
    box-sizing: border-box;
}

.list-step>li.current {
    color: #fff;
    background-color: #ff7f50;
}

.list-step>li::before {
    content: none;
}

.list-inputs {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin: auto;
    box-sizing: border-box;
}

.list-inputs.column-2>li {
    width: calc(100% - 5px);
}

.list-inputs>li img,
.list-inputs>li {
    width: 100%;
}

.list-inputs>li label {
    cursor: pointer;
}

.list-inputs>li input[type=radio] {
    display: none;
}

.list-inputs>li input[type=radio]+.wrap-input {
    display: inline-block;
    width: 100%;
    position: relative;
    font-size: 20px;
    color: #ffffff;
    background-color: #999999;
    border: 2px solid #999999;
    overflow: hidden;
    border-radius: 10px;
    box-sizing: border-box;
}

.list-inputs>li input[type=radio]+.wrap-input.value,
.list-inputs>li input[type=radio]+.wrap-input .value {
    position: relative;
    display: inline-block;
    padding: 0.6em 0.5em 0.4em 1.5em;
    line-height: 1.2;
    box-sizing: border-box;
}

.list-inputs>li input[type=radio]+.wrap-input.value::before,
.list-inputs>li input[type=radio]+.wrap-input .value::before {
    position: absolute;
    content: "";
    display: block;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    border: 2px solid #ffffff;
    left: 0.3em;
    top: 0.5em;
}

.list-inputs>li input[type=radio]+.wrap-input .value {
    width: 100%;
}

.list-inputs>li input[type=radio]:checked+.wrap-input {
    background-color: #ff7f50;
    border: 2px solid #ff7f50;
}

.list-inputs>li input[type=radio]:checked+.wrap-input.value,
.list-inputs>li input[type=radio]:checked+.wrap-input .value {
    position: relative;
}

.list-inputs>li input[type=radio]:checked+.wrap-input.value::after,
.list-inputs>li input[type=radio]:checked+.wrap-input .value::after {
    position: absolute;
    content: "";
    display: block;
    width: 0.4em;
    height: 0.8em;
    border-right: 3px solid #ffffff;
    border-bottom: 3px solid #ffffff;
    -webkit-transform: rotate(40deg);
    transform: rotate(40deg);
    left: 0.8em;
    top: 0.4em;
}

.btn {
    width: 95%;
    font-size: 20px;
    display: block;
    background-color: #4CAF50;
    color: #fff;
    font-weight: bold;
    line-height: 1.5;
    padding: 1em;
    border-radius: 200vh;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
    margin: auto;
}

.btn_balloon {
    margin-bottom: -10px;
    z-index: 1;
    position: relative;
    width: 80%;
    max-width: 300px;
}

.btn:hover {
    background: #55c55a;
}

.img {
    display: block;
    /*画面比率での画像サイズ指定*/
    width: 90%;
    /*画像表示サイズ上限指定*/
    max-width: 300px;
    /*画像上下マージン+センター寄せ指定*/
    margin: 10px auto;
}

.fade {
    transition: all 2000ms;
    opacity: 0;
    visibility: hidden;
    transform: translate(0px, 50px);
}

.fadein {
    opacity: 1;
    visibility: visible;
    transform: translate(0px, 0px);
}

.bound2__btnArea {
    margin-top: 30px;
}

.bound2__btnArea .boundImg__link {
    display: block;
    width: auto;

    height: auto;
    margin: 0 -20px !important;
    /*-20pxはversion設定の左右余白を変更していない場合のみです、左右余白と同じサイズを-(マイナス)で打ち消してください*/
    max-width: unset;
}

.bound2__btnArea .boundImg__link img,
.bound2__btnArea .boundImg__link video {
    width: 92%;
    height: auto;
    animation: bound2Btn 2s ease infinite;
}

@keyframes bound2Btn {
    0% {
        transform: translateY(0);
    }

    15% {
        transform: translateY(-30px);
    }

    30% {
        transform: translateY(0);
    }

    45% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(0);
    }
}

img,
video {
    width: 92%;
}

.continue span {
    display: block;
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 100vh;
    margin: 30px 0;
}

.continue .dot-1,
.continue .dot-2,
.continue .dot-3 {
    -webkit-animation: continue 1s infinite;
    -moz-animation: continue 1s infinite;
}

.continue .dot-1 {
    -webkit-animation-delay: 0.1s;
    -moz-animation-delay: 0.1s;
}

.downArrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.downArrow>span {
    width: 100px;
    height: 65px;
    padding: 0 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.downArrow>span::before {
    content: "";
    display: block;
    margin: 0 auto;
    width: 50%;
    height: 40%;
    background: #ff69b4;
}

.downArrow>span::after {
    content: "";
    display: block;
    width: 100%;
    height: 60%;
    background: -webkit-gradient(linear, left bottom, right top, color-stop(49%, transparent), color-stop(50%, #d096bb)) top left/50% 100% no-repeat, -webkit-gradient(linear, right bottom, left top, color-stop(49%, transparent), color-stop(50%, #d096bb)) top right/50% 100% no-repeat;
    background: linear-gradient(to top right, transparent 49%, #ff69b4 50%) top left/50% 100% no-repeat, linear-gradient(to top left, transparent 49%, #ff69b4 50%) top right/50% 100% no-repeat;
}

.movebtn {
    -webkit-animation-name: btnAnime02;
    -webkit-animation-duration: 1.0s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease;
    -moz-animation-name: btnAnime02;
    -moz-animation-duration: 1.0s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: ease;
    align-items: flex-start;
    justify-content: center;
}

@-webkit-keyframes btnAnime02 {
    0% {
        -webkit-transform: translate(0, 0);
    }

    50% {
        -webkit-transform: translate(0, -8px);
    }

    100% {
        -webkit-transform: translate(0, 0);
    }
}

@-moz-keyframes btnAnime02 {
    0% {
        -moz-transform: translate(0, 0);
    }

    50% {
        -moz-transform: translate(0, -8px);
    }

    100% {
        -moz-transform: translate(0, 0);
    }
}

.a-box.poyopoyo {
    animation: poyopoyo 2s ease-out infinite;
    opacity: 1;
}

@keyframes poyopoyo {

    0%,
    40%,
    60%,
    80% {
        transform: scale(1.0);
    }

    50%,
    70% {
        transform: scale(0.95);
    }
}

.balloon {
    position: relative;
    margin: 1em 0 1em 40px;
    padding: 15px;
    background-color: #fff0c6;
    border-radius: 30px;
    box-sizing: border-box;
}

.balloon:before {
    content: "";
    position: absolute;
    left: -38px;
    width: 13px;
    height: 12px;
    bottom: 0;
    background-color: #fff0c6;
    border-radius: 50%;
}

.balloon:after {
    content: "";
    position: absolute;
    left: -24px;
    width: 20px;
    height: 18px;
    bottom: 3px;
    background-color: #fff0c6;
    border-radius: 50%;
}

.balloon p {
    margin: 0;
    padding: 0;
}

.swiper {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    width: 90%;
    max-width: auto;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    transform: translate3d(0, 0, 0);
    transition-property: transform;
    transition-timing-function: linear !important;
    box-sizing: content-box;
}

.swiper-slide {
    /*背景の色*/
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 90%;
    height: auto;
    position: relative;
    transition-property: transform;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
    height: auto;
}

.swiper-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform, height;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
    height: auto;
}

.swiper-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform, height;
}

.box {
    background: #fff;
    padding: 12px;
    width: 94%;
    margin: 15px auto;
    box-shadow: 3px 3px 8px 3px rgba(0, 0, 0, 0.3);
}

.box_inner {
    background-image:
        linear-gradient(90deg,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0) 50%,
            #ffff 50%,
            #ffff 50%),
        linear-gradient(180deg,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0) 97%,
            #999 97%,
            #999 100%);
    background-size:
        8px 100%,
        100% 3em;
    line-height: 3em;
}

.box_inner p {
    margin-bottom: 1em;
    font-size: 20px;
}

.box {
    max-width: 640px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
    padding: 12px 12px;
    margin: 0 auto 22px;
    box-sizing: border-box;
}

h4.kutikomi-title {
    margin: 0 0 12px;
}

.parent {
    display: flex;
}

.child-left {
    margin-right: 12px;
}

.child-left img,
.child-right img {
    width: 80px;
    min-width: 80px;
    height: 80px !Important;
    border-radius: 50%;
    object-fit: cover;
}

.child-right {
    height: auto;
    flex-grow: 1;
    padding: 0 0 0 12px;
}

dl {
    margin: 0;
}

dt {
    font-size: 18px;
}

dd {
    font-size: 14px;
    margin: 0;
    text-align: right;
}

p.plus {
    font-size: 10px;
    color: #8B8A8A;
    margin: 10px 0 0;
    line-height: 1.4;
    text-align: right;
}

.auraBtn {
    position: relative;
    width: 90%;
    margin: 3em auto;
}

.auraBtn:before {
    animation: auraBtn 2s ease-out infinite
}

.auraBtn:after {
    animation: auraBtn 2s ease-out 1s infinite
}

.auraBtn:before,
.auraBtn:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 100vh;
    background: #32ca5b;
    transform: translate3d(0, 0, 0);
}

.auraBtn a {
    color: #fff;
    font-weight: 600;
    display: block;
    padding: 20px 0;
    border-radius: 100vh;
    text-align: center;
    text-decoration: none;
    background: #32ca5b;
    position: relative;
    z-index: 1;
}

@keyframes auraBtn {
    0% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
        opacity: 1
    }

    90% {
        opacity: .1
    }

    to {
        -webkit-transform: scale(1.2, 1.5);
        transform: scale(1.2, 1.5);
        opacity: 0
    }
}

.auraBtn a span {
    display: block;
    position: relative;
}

.auraBtn a span:after {
    content: "";
    position: absolute;
    top: calc(50% - 4px);
    right: 25px;
    width: 8px;
    height: 8px;
    border-right: 2px solid #fff;
    border-top: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.auraBtn.red a {
    background: #ff5555;
}

.auraBtn.red:before,
.auraBtn.red:after {
    background: #ffaaae;
    border: 1px solid #ff999e;
}

.auraBtn.blue a {
    background: #389aff;
}

.auraBtn.blue:before,
.auraBtn.blue:after {
    background: #389aff;
    border: 1px solid #389aff;
}

blockquote {
    border: 1px solid #8BC0B8;
    border-radius: 10px;
    padding: 6px;
    width: auto;
    margin: 0px 10px;
    text-align: center;
    font-size: 13px;
}

blockquote cite {
    display: block;
    font-size: 0.6rem;
    text-align: left;
    color: #888888;
    padding-right: 0px;
    margin: 20px 0px -10px 0px;
}

article {
    background: #fff;
}

article section {
    width: 620px;
    margin: 0 auto;
    padding: 0 10px;
}

@media(max-width:1023px) {
    header .wrap {
        width: 95%;
    }

    aside .wrap,
    article>section,
    footer .wrap {
        width: 100%;
        padding: 0;
    }
}