@charset "utf-8";

/* すべての要素に適用 */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}





/* top */
.top {
    margin-top: 7rem;
    text-align: center;
}

.top-title {
    display: block;
    font-weight: bold;
    font-size: 2.2rem;
    background: linear-gradient(to right, #ff0000 0%,
            /* 赤 */
            #ff7f00 33%,
            /* オレンジ */
            #ffff00 66%,
            /* 黄 */
            #00ff00 100%
            /* 緑 */
        );
    margin: 0;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.top-caption {
    font-size: 1.25rem;
    text-align: center;
    margin: 1rem .5rem;
    color: #3c3c3c;
    flex-wrap: wrap;
    /* 横幅がいっぱいになると次の行に折り返す */
}



/* scroll-arrows */
.scroll-arrows {
    text-align: left;
    margin-left: 3rem;


}

.arrow {
    display: block;
    font-size: 5rem;
    opacity: 0;
    animation: arrowFade 3s ease-in-out infinite;
}

.arrow1 {
    animation-delay: 0s;
    color: orange;
}

.arrow2 {
    animation-delay: 0.4s;
    color: yellow;
}

.arrow3 {
    animation-delay: 0.8s;
    color: yellowgreen;
}

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

    10% {
        opacity: 1;
        transform: translateY(6px);
    }

    30% {
        opacity: 0;
        transform: translateY(12px);
    }

    100% {
        opacity: 0;
        transform: translateY(12px);
    }
}


/* section-header */
.section-header {}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: #333;
}

.section-subtitle {
    text-align: center;
    font-size: 1.5rem;
    color: #333;
}








/* about....................................................... */
.about-section {
    padding: 0 1rem;
}


.about-contents {
    display: flex;
    /* flex-direction: column; */
    justify-content: center;
    align-items: end;
    display: block;
    text-align: center;
}

.about-caption {
    width: 100%;
    font-size: 1.1rem;
    margin: 1rem 0;
    color: #3c3c3c;
    flex-wrap: wrap;
    /* 横幅がいっぱいになると次の行に折り返す */
}

.about-content-bottom {}


.box-010 {
    position: relative;
    max-width: 400px;
    margin: 3rem auto 2rem;
    padding: 2.5em 1.5em 1.5em;
    box-shadow: 0 2px 3px rgb(0 0 0 / 20%);
    background-color: #e0efff;
    color: #333333;
}

.box-010 span {
    position: absolute;
    top: -15px;
    left: 0;
    transform: translateX(-.3em) rotate(-5deg);
    padding: .5em 2em;
    border-right: 2px dotted rgb(0 0 0 / 10%);
    border-left: 2px dotted rgb(0 0 0 / 10%);
    box-shadow: 0 0 5px rgb(0 0 0 / 20%);
    background-color: rgb(255 255 255 / 40%);
    font-weight: 600;
}

.box-010 p {
    margin: 0;
    text-align: left;
}





.button-54 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 250px;
    margin: 1rem auto 1rem;
    padding: .9em 3em .9em 2em;
    border: 1px solid #2589d0;
    border-radius: 5px;
    background-color: #fff;
    color: #2589d0;
    font-size: 1em;
    cursor: pointer;
}

.button-54::after {
    position: absolute;
    right: 2em;
    transform: translateY(-50%);
    transform-origin: left;
    width: 2em;
    height: .5em;
    background-color: #2589d0;
    clip-path: polygon(0 100%, 100% 100%, 70% 40%, 70% 90%, 0% 90%);
    content: '';
    transition: transform .3s;
}

.button-54:hover::after {
    transform: translateY(-50%) scaleX(1.4);
}








/* trouble-section */
.trouble-section {
    padding: 0 .5rem;
    margin-top: 100px;

    font-size: 1.25rem;
    text-align: center;
    flex-wrap: wrap;

}



.trouble-caption {
    margin-top: 75px;
    text-align: center;
    font-size: .75rem;
    opacity: 0;
    transform: translateY(30px);
    /* 最初は少し下に位置させる */
    transition: transform 1.5s ease, opacity 1.5s ease;
    /* 両方ゆっくり */
    line-height: 2;
    text-align: left;
}




.ttl_balloon4 {
    font-weight: bold;
    border: 3px solid #2589d0;
    padding: 0.5em 1em;
    border-radius: 10px;
    margin-bottom: 10px;
    margin-top: 3rem;
    position: relative;
}

.ttl_balloon4::before {
    content: '';
    background-color: #fff;
    width: 20px;
    height: 3px;
    position: absolute;
    left: 30px;
    bottom: -3px;
}

.ttl_balloon4::after {
    content: '';
    background-color: #2589d0;
    width: 20px;
    height: 3px;
    transform: rotate(50deg);
    position: absolute;
    left: 25px;
    bottom: -10px;
}



.trouble-caption.active {
    opacity: 1;
    transform: translateY(0);
    /* 元の位置に戻る */
}


.under-line {
    font-weight: bold;
    display: inline-block;
    z-index: 3;
    position: relative;
    font-size: 1.35rem;
    text-align: center;
}

.under-line::before {
    content: "";
    position: absolute;
    bottom: 0.5rem;
    left: 0;
    height: 5px;
    width: 0%;
    background: linear-gradient(to right, #ff0000 0%, #ff7f00 33%, #ffff00 66%, #00ff00 100%);
    z-index: -1;
    transition: width 2s ease-in-out;
    border-radius: 1rem;

}

.under-line.visible::before {
    width: 100%;
}

.balloon1-left {
    position: relative;
    display: inline-block;
    margin: .75em 0 .75em 15px;
    padding: 7px 10px;
    min-width: 120px;
    max-width: 100%;
    color: #555;
    font-size: 16px;
    background: #e0edff;
    border-radius: 5px;

}

.balloon1-left:before {
    content: "";
    position: absolute;
    top: 50%;
    left: -30px;
    margin-top: -15px;
    border: 15px solid transparent;
    border-right: 15px solid #e0edff;
}

.balloon1-left p {
    margin: 0;
    padding: 0;
}


.balloon1-right {
    position: relative;
    display: inline-block;
    margin: 1.5em 15px 1.5em 0;
    padding: 7px 10px;
    min-width: 120px;
    max-width: 100%;
    color: #555;
    font-size: 16px;
    background: #e0edff;
}

.balloon1-right:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -15px;
    border: 15px solid transparent;
    border-left: 15px solid #e0edff;
}

.balloon1-right p {
    margin: 0;
    padding: 0;
}


.balloon5 {
    width: 100%;
    margin: 1.5em 0;
    overflow: hidden;
}

.balloon5 .faceicon {
    float: left;
    margin-right: -90px;
    width: 50px;
}

.balloon5 .faceicon img {
    width: 100%;
    height: auto;
    border: solid 3px #d7ebfe;
    border-radius: 50%;
}

.balloon5 .chatting {
    width: 100%;
}

.says {
    display: inline-block;
    position: relative;
    margin: 0 0 0 60px;
    padding: 11px 7px;
    border-radius: 12px;
    background: #d7ebfe;
}

.says:after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 18px;
    left: -24px;
    border: 12px solid transparent;
    border-right: 12px solid #d7ebfe;
}

.says p {
    font-size: 1.1rem;
    margin: 0;
    padding: 0;
}



/* 右吹き出し */
.balloon4 {
    width: 100%;
    margin: 1.5em 0;
    overflow: hidden;
}

.balloon4 .faceicon4 {
    float: right;
    margin-left: -90px;
    width: 50px;
}

.balloon4 .faceicon4 img {
    width: 100%;
    height: auto;
    border: solid 3px #d7ebfe;
    border-radius: 50%;
}

.balloon4 .chatting {
    width: 100%;
}

.says4 {
    display: inline-block;
    position: relative;
    margin: 5px 60px 0 0px;
    padding: 17px 13px;
    border-radius: 12px;
    background: #d7ebfe;
}

.says4:after {
    content: "";
    display: inline-blocks;
    position: absolute;
    top: 18px;
    right: -24px;
    border: 12px solid transparent;
    border-left: 12px solid #d7ebfe;
}

.says4 p {
    font-size: 1.1rem;
    margin: 0;
    padding: 0;
}








/* point-section */

.point-section {
    width: 100%;
    background-color: #fff;
    padding: 4rem 1rem 3rem 1rem;
    margin: 5rem 0 0 0;
}


.points {
    margin: 5rem 0;
}

.point {

    text-align: center;
    margin-bottom: 70px;
}


.point-strong {
    font-size: 3.0rem;
    border: 0.2rem solid #49a1ffe9;
    padding: 0.3vw 1vw 1vw 1vw;
    color: #49a1ffe9;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    border-radius: 1.5rem;

}

.point-title {
    font-size: 1.75rem;
    color: #171717;
    font-weight: bold;
    margin: 0;
    max-width: 100%;
    display: block;
    font-weight: bold;
    background: linear-gradient(to right, #ff0000 0%,
            /* 赤 */
            #ff7f00 33%,
            /* オレンジ */
            #ffc400 66%,
            /* 黄 */
            #00ff00 100%
            /* 緑 */
        );

    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateY(30px);
    /* 最初は少し下に位置させる */
    transition: transform 1.5s ease, opacity 1.5s ease;
    /* 両方ゆっくり */
}


.point-title.active {
    opacity: 1;
    transform: translateY(0);
    /* 元の位置に戻る */
}


.point-caption {
    font-size: 1.25rem;
    line-height: 3rem;
    margin: 20px 20px 0px 20px;
    flex-wrap: wrap;
    /* 横幅がいっぱいになると次の行に折り返す */
    opacity: 0;
    transform: translateY(30px);
    /* 最初は少し下に位置させる */
    transition: transform 1.5s ease, opacity 1.5s ease;
    /* 両方ゆっくり */

}


.point-caption.active {
    opacity: 1;
    transform: translateY(0);
    /* 元の位置に戻る */
}








/* price-section */
.price-section {
    margin-bottom: 10rem;
    padding: 0 1rem;
}

.heading10 {
    position: relative;
    padding-top: 30px;
    font-size: 26px;
    border-bottom: 1px solid rgba(5, 62, 98, 1);
}

.heading10 span {
    position: relative;
    z-index: 2;
}

.heading10::before {
    content: attr(data-en);
    position: absolute;
    top: 0px;
    left: 0;
    color: rgba(5, 62, 98, 0.2);
    font-size: 40px;
    text-transform: uppercase;
    z-index: 1;
}


.heading11 {
    position: relative;
    margin: 30px;
    text-align: center;
}

.heading11:before,
.heading11:after {
    position: absolute;
    z-index: 0;
    bottom: -10px;
    display: block;
    content: '';
    border: 1em solid #d90606;
}

.heading11:before {
    left: -30px;
    border-left-width: 15px;
    border-left-color: transparent;
}

.heading11:after {
    right: -30px;
    border-right-width: 15px;
    border-right-color: transparent;
}

.heading11 span {
    position: relative;
    z-index: 1;
    display: block;
    padding: 1rem 2rem;
    color: #fff;
    background: #fa4141;
}

.heading11 span:before,
.heading11 span:after {
    position: absolute;
    bottom: -10px;
    display: block;
    width: 10px;
    height: 10px;
    content: '';
    border-style: solid;
    border-color: #b70505 transparent transparent transparent;
}

.heading11 span:before {
    left: 0;
    border-width: 10px 0 0 10px;
}

.heading11 span:after {
    right: 0;
    border-width: 10px 10px 0 0;
}



.price-contents {
    width: 100%;
}


.price__description {
    text-align: left;
    font-size: 1.25rem;
    margin: 0 0 4rem;
}

.price__description div {
    font-size: 1.13rem;
    font-weight: 700;
    text-align-last: left;
}


.price__note-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 90%;
    margin: 0 auto;
    padding: .9em 3em .9em 2em;
    border: 1px solid #2589d0;
    border-radius: 5px;
    background-color: #fff;
    color: #2589d0;
    font-size: .9rem;
}


.price__note-btn::after {
    position: absolute;
    right: 2em;
    transform: translateY(-50%);
    transform-origin: left;
    width: 2em;
    height: .5em;
    background-color: #2589d0;
    clip-path: polygon(0 100%, 100% 100%, 70% 40%, 70% 90%, 0% 90%);
    content: '';
    transition: transform .3s;
}

.price__note-btn:hover::after {
    transform: translateY(-50%) scaleX(1.4);
}

/* 注意事項ボックス */
.price__note {
    max-height: 0;
    /* 初期は閉じる */
    overflow: hidden;
    background: #f0f8ff;
    /* 薄い青色背景 */
    margin: .5rem 1rem;
    padding: 0 .875rem;
    border-radius: 8px;
    transition: max-height 0.5s ease, padding 0.5s ease;
}

/* 開いたとき */
.price__note.active {
    max-height: 1500px;
    /* 大きめに開く（内容によって調整） */
    padding: .5rem .875rem;
}

.price__note strong {
    font-family: "futura-pt", sans-serif;
    font-weight: bold;
}

.price__price {
    margin: 4rem 0 1rem 0;
}


.price__price-tickets {
    margin: 0 10px 10px 10px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    align-items: center;
    gap: 10px 0px;
}



.price__price-ticket {
    padding: 3px;
    width: 79px;
    height: 79px;
    background: rgba(230, 12, 12, 0);
    border-radius: 50%;
    margin: 0 auto;
    cursor: pointer;
}


.price__price-ticket.active {
    background: linear-gradient(to right, #ff0000 0%,
            /* 赤 */
            #ff7f00 33%,
            /* オレンジ */
            #ffff00 66%,
            /* 黄 */
            #00ff00 100%
            /* 緑 */
        );
    animation: gradient 5s ease infinite;
}



.price__price-ticket span {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    /* width: 100%; */
    width: 73px;
    height: 100%;
    border-radius: 50%;
    font-family: "futura-pt", sans-serif;
    font-size: 1.25rem;
    line-height: 1;
    color: #403e3e;
}


.price__price-ticket.active span {
    color: #000;
    transition: font-size 0.3s ease, color 0.3s ease;
    font-size: 2.25rem;

}



.price__price-card {
    margin-bottom: 30px;
}


.card {
    padding: 3px;
    background: linear-gradient(to right, #ff0000 0%,
            /* 赤 */
            #ff7f00 33%,
            /* オレンジ */
            #ffff00 66%,
            /* 黄 */
            #00ff00 100%
            /* 緑 */
        );
    animation: gradient 5s ease infinite;
}


.price__price-card-content {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.7142857143;
    text-align: center;
}


.card__content {
    padding: 30px 15px;
    background: #fff;
}


.price__price-caption {
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}


.price__price-table {
    margin: 0 0 10px;
    border-collapse: collapse;
    width: 100%;
}


.price__price-table th {
    background: #5f5f5f;
    color: #fff;
    width: 90px;
}


.price__price-table th,
.price__price-table td {
    padding: 15px;
    border: 1px solid #5f5f5f;
    line-height: 1.6;
}


.price__price-table td {
    font-weight: 700;
    text-align: center;
}

.price__price-table:nth-of-type(2) td {
    /* 2つ目のtableのtdにだけ効く！ */
    text-align: left;
}


.price__price-table td small {
    font-size: .7142857143rem;
    font-weight: 400;
}


.slider-container {
    width: 100%;
    /* 料金表の幅 */
    overflow: hidden;
    /*はみ出た部分を非表示 */
    /* border: 1px solid #ccc; */
}

.slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
    /* 3つのスライドを横に並べる */
    /* transform: translateX(-100%); */
}

.slide {
    width: 100%;
    flex-shrink: 0;
    /* スライドのサイズ固定 */
    text-align: center;
    padding: 20px 5vw;
    background-color: #f8f8f8;
    ;
    /* border-right: 1px solid #ddd; */
}



.section-inner {
    padding: 2rem 1rem;
}

.section-inner h2 {
    position: relative;
    margin-bottom: 0.5695rem;
    letter-spacing: .2rem;
    display: flex;
    align-items: flex-end;
    /* 下端に揃える */
    height: 2rem;
    /* 明確に高さを指定 */
    padding-left: 1.25rem;
    /* 擬似要素の幅分を確保 */
}

.section-inner h2::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    /* 下端に揃える */
    border-left: #e0efff solid 0.4rem;
    width: 2rem;
    height: 3.6rem;
    transform: rotate(-12.5deg);
}

.section-inner h2 span {
    font-size: 1.5rem;
    display: inline-block;
}


.text-heading {
    margin-bottom: 1rem;
}


.list-logo {
    width: 100%;
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.list-logo li {
    width: 28.8%;
    margin-bottom: 1rem;
    list-style: none;
    justify-content: center;

}

.list-logo li img {
    object-fit: contain;

}



/* 制作の流れ */
.ttl_background5 {
    font-weight: bold;
    padding: 0.5em 1em;
    color: #333;
    position: relative;
    z-index: 1;
    margin: 0 0 4rem 0;
}

.ttl_background5::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #e0efff;
    transform: skew(-20deg);
    z-index: -1;
}

.ttl_background5::after {
    content: '';
    position: absolute;
    border-left: 20px double #fff;
    height: 100%;
    top: 0;
    right: 50px;
    transform: skew(-20deg);
}

.flow_design03 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 20px;
}

.flow_design03 ul {
    padding: 0;
}

.flow_design03 li {
    list-style-type: none;
}

.flow_design03 dd {
    margin-left: 0;
}

.flow03 {
    position: relative;
}

.flow03::before {
    content: "";
    width: 15px;
    height: 100%;
    background: #eee;
    margin-left: -129px;
    display: block;
    position: absolute;
    top: 0;
    left: 120px;
    border-radius: 20px;
}

.flow03>li {
    position: relative;
}

.flow03>li:not(:last-child) {
    margin-bottom: 60px;
}

.flow03>li .icon03 {
    font-size: 0.8em;
    width: 2em;
    height: 2em;
    line-height: 2;
    text-align: center;
    font-weight: bold;
    border-radius: 100vh;
    color: #fff;
    background: #2589d0;
    display: inline-block;
    margin-right: 0.3em;
}

.flow03>li dl {
    padding-left: 30px;
    position: relative;
}

.flow03>li dl::before,
.flow03>li dl::after {
    content: "";
    display: block;
    position: absolute;
    top: 15px;
}

.flow03>li dl::before {
    width: 7px;
    height: 7px;
    margin-top: -3px;
    background: #2589d0;
    border-radius: 50%;
    left: -4px;
}

.flow03>li dl::after {
    width: 20px;
    border-bottom: 1px dashed #999;
    position: absolute;
    left: 5px;
}

.flow03>li dl dt {
    font-size: 1.3em;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5em;
    display: flex;
    align-items: center;
}


.box-011 {
    position: relative;
    max-width: 400px;
    margin: 1.9em auto 0;
    padding: 1em 1.5em;
    border: 2px solid #2589d0;
    border-radius: 3px;
}

.box-011 span {
    position: absolute;
    top: -2.1em;
    left: -2px;
    padding: .2em .8em;
    border-radius: 5px 5px 0 0;
    background-color: #2589d0;
    color: #fff;
}

.box-011 p {
    margin: 0;
    color: #333;
}










/* お問い合わせ */

.contact-area {
    padding: .5rem;
}

.company-contents {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 0 40px 0;
}


.company-name {
    text-align: center;
    font-size: 1.5rem;
    color: #000000;
    margin-bottom: 1rem;
}

.company-contents img {
    width: 200px;
    margin: 0 auto;
}

.contact-contents {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
}

.line-time {
    font-size: 1rem;
    color: #000000;
    text-align: center;
    margin-top: 10px;

}

.qr-img {
    width: 150px;
    height: auto;
    display: block;
    margin: 0 auto 15px;
}

.line-btn {
    display: block;
    background: #06c755;
    width: 250px;
    height: 50px;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    /* cursor: pointer; レスポンシブ処理に使用 */
    text-align: center;
    margin: 0 auto;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.25);
    /* 影を濃くする */
}


/* レスポンシブ処理に使用 */
/* .line-btn:hover {
    background: #04b44d;
} */


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

.tel-label {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #000000;
}

.tel-link {
    font-size: 1.5rem;
    color: #000000;
    text-decoration: none;
}

/* レスポンシブ処理に使用 */
/* .tel-link:hover {
    text-decoration: underline;
} */




.company-info {
    max-width: 500px;
    /* 横幅を整える */
    margin: 20px auto;
    /* 中央寄せ */
    color: #050505;
}

.company-info ul {
    list-style: none;
    /* リストの点を消す */
    padding: 0;
    margin: 0;
}

.company-info li {
    display: flex;
    justify-content: center;
    /* 横並びにする */
    margin-bottom: 1.25rem;
    /* 行間 */
    border-bottom: #000000 solid 1px;
    align-items: end;
}

.company-info .label {
    width: 100px;
    /* ラベル部分の幅 */
    letter-spacing: 1px;
    text-align: center;
}

.company-info .value {
    flex: 1;
    /* 右側を広くとる */
    text-align: center;
    color: #000000;
}

.zip {
    text-transform: none;
    -webkit-text-transform: none;
}


.map {
    position: relative;
    width: 100%;
    /* 親要素に合わせる */
    padding-bottom: 56.25%;
    /* アスペクト比16:9を維持 */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    margin: 3rem 0 0 0;
    /* 角丸は任意 */
}

.map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* スマホでも横幅いっぱいに */
    height: 100%;
    /* 高さも比率で調整される */
    border: 0;
}




.footer {
    text-align: center;
    /* 中央揃え */
    font-size: 14px;
    /* 少し小さめ文字 */
    color: #000000;
    /* グレーで落ち着いた印象 */
    padding: 60px 10px 0;
    /* 上下に余白 */
    /* 任意で背景色 */
}

.footer p {
    margin: 0;
    /* デフォルトの余白を消す */
}