@charset "UTF-8";

/* reset
========================================================================== */
:root * {
    box-sizing: border-box;
}

/* reset
========================================================================== */
body,
h1,
h2,
h3,
h4,
h5,
h6,
div,
p,
ul,
ol,
li,
dl,
dt,
dd,
table,
tr,
thead,
tbody,
tfoot,
th,
td,
header,
footer,
nav,
article,
aside,
section,
figure,
figcaption {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
    font-size: 100%;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
    display: block;
}

select,
option,
input,
button,
label,
textarea {
    line-height: 1;
}

input {
    vertical-align: middle;
}

ol,
ul {
    list-style: none;
}

em {
    font-style: normal;
}

table {
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
}

table th,
table td {
    word-break: break-all;
}

img,
a img {
    border: none;
}

img {
    vertical-align: bottom;
    font-size: 0;
    line-height: 0;
    max-width: 100%;
    width: 100%;
    height: auto;
}

video {
    width: 100%;
    height: auto;

}

:root * {
    box-sizing: border-box;
}

a {
    word-wrap: break-word;
}

input,
button,
textarea,
select {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select::-ms-expand {
    display: none;
}

input::-ms-clear,
input::-ms-reveal {
    visibility: hidden;
}

hr {
    height: 0;
    margin: 0;
    padding: 0;
    border: none;
    border-top: 1px solid #000;
}


/* common
========================================================================== */

body {
    user-select: inherit !important;
        background-color: #F4F4F4;
}

@media screen and (min-width: 920px) {
    body {
        width: 620px;
        margin: 0 auto;
    }
}

.article-body {
    font-size: 17px !important;
    font-family: Hiragino Sans, Arial, sans-serif !important;
    color: #000000 !important;
    line-height: 1.8 !important;
    padding-top: 15px !important;
    padding-bottom: 45px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

body .article-body {
        background-color: #ffffff;
}

body .article-body iframe {}

body .article-body img {
    display: unset !important;

    margin-top: 0px !important;


    margin-bottom: 0px !important;

}

body .article-body video {
    display: unset !important;
}

body .article-body .sb-custom {

    font-size: 17px !important;


    font-family: Hiragino Sans, Arial, sans-serif !important;


    color: #000000 !important;


    line-height: 1.8 !important;

}

body .article-body .sb-custom img {

    margin-top: 0px !important;


    margin-bottom: 0px !important;

}




/* =========================================
   汎用ユーティリティクラス
========================================= */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-white {
    color: #ffffff;
}

.color-red {
    color: rgb(230, 0, 0);
}

.color-red-hex {
    color: #e60000;
}

.color-blue {
    color: rgb(0, 0, 255);
}

.color-blue-light {
    color: rgb(0, 102, 204);
}

.bg-white {
    background-color: rgb(255, 255, 255);
    color: #000;
}

.font-bold {
    font-weight: bold;
}

.fs-17 {
    font-size: 17px;
}

.fs-21 {
    font-size: 21px;
}

.fs-23 {
    font-size: 23px;
}

.fs-25 {
    font-size: 25px;
}

.fs-27 {
    font-size: 27px;
}

.ls-05 {
    letter-spacing: 0.05em;
}

.ls-minus-016 {
    letter-spacing: -0.16px;
}

/* =========================================
   カスタム見出し (青背景)
========================================= */
.custom-section-title {
    color: #000000;
    background-color: #0773DD;
    font-size: 24px;
    line-height: 1.7;
    padding: 10px 5px;
    letter-spacing: 0.05em;
    margin: 0px -20px !important;
    max-width: calc(100% + 40px);
    font-weight: 700;
}

/* =========================================
   吹き出しコンポーネント
========================================= */
.balloon-wrapper {
    width: 100%;
    margin: 1.5em 0;
    display: flex;
}

.balloon-left {
    flex-direction: row;
}

.balloon-right {
    flex-direction: row-reverse;
}

.balloon-wrapper .faceicon {
    flex-basis: 55px;
    flex-shrink: 0;
}

.balloon-wrapper .faceicon img {
    width: 55px;
    max-width: 55px;
    height: 55px !important;
    object-fit: cover;
    border-radius: 50%;
    box-sizing: border-box;
}

.balloon-wrapper .chatting {
    width: auto;
    background: #baeaff;
    margin: 0 14px auto;
    min-height: 27px;
    padding: 5px 13px;
    border-radius: 22px;
    position: relative;
    display: inline-block;
    box-sizing: border-box;
}

/* 左から右の影 */
.balloon-left .chatting {
    box-shadow: 2px 2px 3px 0px #cccccc;
}

/* 右から左の影 */
.balloon-right .chatting {
    box-shadow: -2px 2px 3px 0px #cccccc;
}

/* しっぽ(左) */
.balloon-left .chatting:before {
    content: '';
    position: absolute;
    top: 10px;
    left: -15px;
    width: 24px;
    height: 18px;
    border-right: 12px solid #baeaff;
    border-top-right-radius: 100%;
    transform: rotate(285deg);
    box-sizing: border-box;
}

/* しっぽ(右) */
.balloon-right .chatting:before {
    content: '';
    position: absolute;
    top: 10px;
    right: -15px;
    width: 24px;
    height: 18px;
    border-left: 12px solid #baeaff;
    border-top-left-radius: 100%;
    transform: rotate(75deg);
    box-sizing: border-box;
}

.balloon-wrapper .says p {
    margin: 0;
    padding: 0;
    letter-spacing: -0.01em;
}

/* =========================================
   下向き赤矢印 (動くアニメーション)
========================================= */
.downArrow {
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

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

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

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

.movebtn {
    animation: btnAnime02 1.5s infinite ease;
    align-items: flex-start;
    justify-content: center;
}

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

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

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

/* =========================================
   強調ボックス (だからこそ！)
========================================= */
.box_border {
    border: #0773DD 2px solid;
    text-align: center;
    border-radius: 10px;
    margin: 2% 5%;
    background: #FFFCF3;
}

.box_st {
    background: #0773DD;
    color: #ffffff;
    text-align: center;
    display: block;
    padding: 0.5%;
    font-size: 140%;
    font-weight: bold;
}

.box_border .box_in {
    text-align: left;
}

.box_border ul.list_numuber {
    padding: 2% 5% 3% 5%;
    line-height: 1.5;
}

.box_border ul.list_numuber li {
    list-style: none;
    font-size: 110%;
    padding: 2% 0;
}

@media screen and (max-width: 750px) {
    .box_border ul.list_numuber li {
        font-size: 95%;
    }
}

/* =========================================
   ピンクのアニメーション矢印 (cp_arrows)
========================================= */
.cp_arrows {
    position: relative;
    height: 50px;
    margin: 1em 0;
}

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

.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:before,
.cp_arrows .cp_arrow:after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 40px;
    height: 3px;
    content: '';
    background: #E91E63;
}

.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;
}

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

    70% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* =========================================
   連続流れる矢印 (arrowFlow)
========================================= */
.arrowFlow__area {
    width: 100%;
    height: auto;
}

.arrowFlow__inner {
    padding-bottom: 200px;
    overflow-y: hidden;
    position: relative;
}

.arrowFlow__beforeG,
.arrowFlow__afterG {
    width: 80%;
    max-width: 400px;
    height: auto;
    margin: 0 auto;
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    animation: arrowFlow 2s ease-in-out infinite;
    transform: translate(-50%, -300%);
    position: absolute;
    top: 0;
    left: 50%;
}

.arrowFlow__afterG {
    animation-delay: 1s;
}

.arrow {
    display: inline-block;
    vertical-align: middle;
    color: #ba0d0d;
    line-height: 1;
    position: relative;
    width: 40px;
    height: 60px !important;
    background: currentColor;
    margin: 0 30px;
}

.arrow:before {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 50px 50px 0 50px;
    border-color: #ba0d0d transparent transparent transparent;
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
}

@keyframes arrowFlow {
    0% {
        transform: translate(-50%, -300%);
    }

    60% {
        transform: translate(-50%, 100%);
    }

    100% {
        transform: translate(-50%, 400%);
    }
}

/* =========================================
   口コミ・会話エリア
========================================= */
.conversation__area {
    height: auto;
    position: relative;
    background: #cbe1ec;
    font-size: 16px;
    padding: 1em;
    padding-bottom: 2em;
    margin-top: 2em;
    box-sizing: border-box;
}

.conversation__area p {
    margin: 0;
}

@media screen and (max-width: 600px) {
    .conversation__area {
        font-size: 12px;
    }
}

.conversation__headBox {
    position: absolute;
    top: -1.5em;
    left: 1em;
}

.conversation__headBox .head {
    color: #fff;
    font-size: 1.15em;
    font-weight: bold;
    background: #0773DD;
    padding: 0.5em 1em;
}

.conversation__bubbleBox {
    display: flex;
    align-items: flex-start;
    margin-top: 2em;
}

.conversation__bubbleBox._right {
    justify-content: flex-end;
}

.conversation__bubbleBox._left {
    justify-content: flex-start;
}

.conversation__bubbleBox .bubble {
    width: auto;
    height: auto;
    border: 2px solid #aaa;
    border-radius: 5px;
    background: #fff;
    padding: 1em;
    position: relative;
}

.conversation__bubbleBox._right .bubble {
    order: 1;
    margin-right: 4.5%;
}

.conversation__bubbleBox._left .bubble {
    order: 2;
    margin-left: 4.5%;
}

/* 吹き出しのしっぽ枠線と白塗り */
.conversation__bubbleBox .bubble:before,
.conversation__bubbleBox .bubble:after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    position: absolute;
}

.conversation__bubbleBox .bubble::before {
    top: calc(1em - 2px);
}

.conversation__bubbleBox .bubble:after {
    top: 1em;
}

.conversation__bubbleBox._right .bubble:before {
    border-width: 9px 0 9px 15.6px;
    border-color: transparent transparent transparent #AAAAAA;
    right: -16px;
}

.conversation__bubbleBox._left .bubble:before {
    border-width: 9px 15.6px 9px 0;
    border-color: transparent #AAAAAA transparent transparent;
    left: -16px;
}

.conversation__bubbleBox._right .bubble:after {
    border-width: 7px 0 7px 12.1px;
    border-color: transparent transparent transparent #FFFFFF;
    right: -12px;
}

.conversation__bubbleBox._left .bubble:after {
    border-width: 7px 12.1px 7px 0;
    border-color: transparent #FFFFFF transparent transparent;
    left: -12px;
}

.conversation__bubbleBox .icon {
    width: 15%;
}

.conversation__bubbleBox._right .icon {
    order: 2;
}

.conversation__bubbleBox._left .icon {
    order: 1;
}

.conversation__bubbleBox .icon img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border: 2px solid #ccc;
    border-radius: 10vw;
    aspect-ratio: 1/1;
}

.conversation__whileBox {
    margin-top: 1em;
    width: 100%;
    height: auto;
}

/* footer
========================================================================== */

.footer__wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 1rem 0 1rem;
    font-size: 0.75rem;
    line-height: 2;
    text-align: center;
    color: #b3b3b3;
    background-color: #333;
}

.footer__copy {
  margin-top: 1rem;
}


@media (max-width: 768px) {
  .footer__wrap {
    padding: 2rem  4rem;
    font-size: 0.8rem;
    line-height: 2;
  }

  .footer__copy {
    margin-top: 2rem;
  }
}