@charset "UTF-8";

/* -------------------------------------
nanto.css
------------------------------------- */
.container__inner {
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
}
.container__inner.inner--hidden {
    overflow: hidden;
}
.l-inner {
    width: 100%;
    max-width: 750px;
    padding: 0 8%;
    margin: 0 auto;
}
/* foundation */
:root {
    --primary: #b31a20;
    --secondary: #ffc887;
    --text: #535353;
    --white: #ffffff;
    --bg: rgba(255, 198, 132, .5);

    --cp-bg: #F0F0F0;
    --cp-use: #E6231E;
    --cp-character: #fdd000;
}

/* Header */
/* ============================================ */
.header {
    width: 100%;
    font-size: 1.0rem;
    border-bottom: 1px solid var(--primary);
    position: relative;
    z-index: 999;
    background-color: #fff;
}
.header__inner {
    width: 100%;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header__logo {
    width: 120px;
}


.campaign {
    background-color: #F0F0F0;
    /* padding-bottom: 40px; */
}

/* common */
.garland {
    position: relative;
}
.garland::before,
.garland::after {
    content: "";
    display: block;
    width: 22.5%;
    height: 250%;
    position: absolute;
    top: 0;
    background: url(../img/mainvisual_deco.webp) top left / contain no-repeat;
}
.garland::before {
    left: 0;
}
.garland::after {
    right: 0;
    transform: scale(-1, 1);
}

/* store-button */
.store-button {
    padding: 30px 0;
}
.store-button__title {
    font-weight: bold;
    text-align: center;
    position: relative;
    margin-bottom: 2.6%;
    color: #fff;
}
.store-button__title::before,
.store-button__title::after {
    display: block;
    content: "";
    width: 1px;
    height: 30px;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -15px;
}
.store-button__title::before {
    margin-left: -8em;
    transform: rotate(-35deg);
}
.store-button__title::after {
    margin-left: 8em;
    transform: rotate(35deg);
}
.store-button .btns-wrap {
    width: 100%;
    display: flex;
}
.store-button .btn-ios {
    width: 46%;
}
.store-button .btn-android {
    width: 60%;
    padding-left: 3%;
}

.store-nav {
    display: none;
    width: 100%;
    max-width: 750px;
    position: fixed;
    bottom: env(safe-area-inset-bottom);
    left: 50%;
    transform: translate(-50%, 0);
    padding: 15px 0 20px;
    background : -moz-linear-gradient(27.11% -32.61% -60deg,rgba(200, 21, 40, 1) 0%,rgba(142, 30, 34, 1) 100%);
    background : -webkit-linear-gradient(-60deg, rgba(200, 21, 40, 1) 0%, rgba(142, 30, 34, 1) 100%);
    background : -webkit-gradient(linear,27.11% -32.61% ,72.89% 132.61% ,color-stop(0,rgba(200, 21, 40, 1) ),color-stop(1,rgba(142, 30, 34, 1) ));
    background : -o-linear-gradient(-60deg, rgba(200, 21, 40, 1) 0%, rgba(142, 30, 34, 1) 100%);
    background : -ms-linear-gradient(-60deg, rgba(200, 21, 40, 1) 0%, rgba(142, 30, 34, 1) 100%);
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#C81528', endColorstr='#8E1E22' ,GradientType=0)";
    background : linear-gradient(150deg, rgba(200, 21, 40, 1) 0%, rgba(142, 30, 34, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#C81528',endColorstr='#8E1E22' , GradientType=1);
    z-index: 999;
}
.store-nav .l-inner {
    padding: 0 5%;
}

/* store-button--end */
.store-button.button--end {
    background-color: #F8ED00;
    margin-bottom: 8%;
}
.store-button.button--end .store-button__title {
    color: #000;
}
.store-button.button--end .store-button__title::before,
.store-button.button--end .store-button__title::after {
    background: #000;
}
.store-button__text--note {
    font-size: 1.2rem;
    margin-top: 5%;
}


/* head */
.head {
    padding-bottom: 180px;
    position: relative;
}
.head::before {
    content: "";
    display: block;
    width: 100%;
    height: 180px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: -moz-linear-gradient(top, rgba(255,255,255,0), #F0F0F0 75%);
    background: -webkit-linear-gradient(top, rgba(255,255,255,0), #F0F0F0 75%);
    background: linear-gradient(to bottom, rgba(255,255,255,0), #F0F0F0 75%);
    z-index: 10;
}

/* mainvisual */
.mainvisual {
    width: 100%;
    background: url(../img/mainvisual_bg.webp) center top / contain no-repeat;
    aspect-ratio: 1 / 1.272;
    position: relative;
    overflow: hidden;
}
.mainvisual::before {
    content: "";
    display: block;
    width: 99px;
    height: 116px;
    position: absolute;
    top: 17%;
    left: 7%;
    background: url(../img/mainvisual_img_hanabi.webp) top left / contain no-repeat;
    z-index: 2;
    opacity: 0;
    animation: fuwa 0.5s ease-out forwards;
    animation-delay: 0.75s;
}
.mainvisual__header {
    position: relative;
    z-index: 2;
}
.mainvisual__header::before,
.mainvisual__header::after {
    content: "";
    display: block;
    width: 22.5%;
    height: 195px;
    position: absolute;
    top: 0;
    background: url(../img/mainvisual_deco.webp) top left / contain no-repeat;
}
.mainvisual__header::before {
    left: 0;
}
.mainvisual__header::after {
    right: 0;
    transform: scale(-1, 1);
}
.mainvisual__curtain {
    width: 107%;
    margin-left: -7%;
    animation: slideIn 0.5s ease-out forwards;
    position: relative;
    z-index: 1;
}
@keyframes slideIn {
    from {
        margin-left: -7%;
    }
    to {
        margin-left: 25%;
    }
}
.mainvisual__shika {
    position: absolute;
    width: 46%;
    bottom: 5%;
    left: calc(50% - 13%);
    transform: translateX(-50%) rotate(14deg);
    transform-origin: left bottom;
    animation: hyokkori 0.5s ease-out forwards;
    animation-delay: 0.5s;
}
@keyframes hyokkori {
    from {
        left: calc(50% - 13%);
        transform: translateX(-50%) rotate(14deg);
    }
    to {
        left: calc(50% - 23%);
        transform: translateX(-50%) rotate(0deg);
    }
}
.mainvisual__balloon {
    position: absolute;
    width: 22%;
    bottom: 16%;
    left: calc(50% - 34%);
    transform: translateX(-50%);
    opacity: 0;
    animation: fuwa 0.75s ease-out forwards;
    animation-delay: 0.75s;
}
@keyframes fuwa {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.mainvisual__cracker {
    position: absolute;
    bottom: -18px;
    right: -8px;
    width: 40.7%;
    z-index: 1;
}
.mainvisual__catch {
    position: absolute;
    top: 17%;
    right: 5%;
    width: 55%;
    z-index: 2;
}
.mainvisual__title {
    position: absolute;
    bottom: 4%;
    right: 0;
    width: 68%;
    z-index: 3;
    filter: drop-shadow(7px 7px 5px rgba(35,24,21,.55));
}

/* 紙吹雪 */
.confetti {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}
.confetti__canvas {
    width: 100%;
    height: 96%;
}

/* body */
.body__inner {
    padding: 0 5%;
}

/* intro */
.intro {
    margin-top: -200px;
    padding-bottom: 20px;
    position: relative;
    z-index: 10;
}
.intro__summary + .intro__summary {
    margin-top: 25px;
}
.intro__catch {
    width: 80%;
    margin: 0 auto;
}
.intro__link {
    display: block;
    position: relative;
    z-index: 1;
}
.intro__summary:nth-of-type(2) .intro__catch {
    width: 60%;
}
.intro__summary:nth-of-type(1) .intro__link {
    margin-top: -7%;
}
.intro__summary:nth-of-type(2) .intro__link {
    margin-top: -11%;
}

.info {
    padding: 20px 0;
}
.info__banner {
    display: block;
    /* margin-top: 20px; */
}

/* detail */
.detail-mainvisual {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    padding: 41% 0 5%;
    background: url(../img/detail_bg.webp) top center / 76.5px 45px;
}
.detail-mainvisual:after {
    content: "";
    display: block;
    width: 95%;
    height: 95%;
    position: absolute;
    top: 1%;
    left: 3%;
    z-index: 0;
    background: url(../img/detail_bg_deco.webp) top center / contain no-repeat;
}
.detail-mainvisual__shika {
    width: 34.5%;
    position: absolute;
    top: 19%;
    left: 7%;
}
.detail-mainvisual__title {
    width: 102%;
    /* margin-top: -9%; */
    margin-left: -1%;
    position: relative;
    z-index: 1;
}
.detail-mainvisual__balloon {
    width: 70%;
    position: absolute;
    top: 6%;
    left: 50%;
    z-index: 1;
    transform: translateX(-50%);
}

.detail__section {
    padding: 20px 0;
    overflow: hidden;
}
.detail__section.garland::before,
.detail__section.garland::after {
    height: 165px;
    top: 19px;
}
#use {
    background-color: var(--cp-use);
}
#use + .store-button {
    background-color: var(--cp-use);
    padding-top: 10px;
}

#character {
    background-color: var(--cp-character);
}

.detail__container {
    background-color: var(--white);
    padding: 37px 8% 28px;
}
.detail-list {
    margin-bottom: 25px;
}
.detail-list__title {
    background-color: #FFF100;
    color: var(--cp-use);
    text-align: center;
    width: 9em;
    padding: 3px 0;
    font-size: 1.6rem;
    font-weight: bold;
    margin: 20px 0 15px;
}
.detail-list__text {
    /* font-size: 1.8rem;
    font-weight: bold;
    color: var(--cp-use); */
}
.detail-list__description {
    padding-left: 0.5em;
    text-indent: -0.5em;
}
.detail-list__description.description-kome {
    padding-left: 1em;
    text-indent: -1em;
}
.detail__head {
    text-align: center;
    margin: 0 -7% 8% -7%;
    position: relative;
    z-index: 1;
}
.detail__head::before {
    content: "";
    display: block;
    width: 48%;
    height: 60%;
    position: absolute;
    bottom: -25%;
    right: -15%;
    background: url(../img/use_img_cracker.webp) top left / contain no-repeat;
    z-index: -1;
}
#use .detail__title {
    width: 72%;
    margin-bottom: 3%;
}
#use .detail__text {
    width: 95%;
    display: block;
    margin-left: -2%;
    /* padding-right: 5%;
    padding-bottom: 25px;
    margin-top: -15px; */
}

/*命名ルールどうだっけ？*/
#use .entry__text.text-catch {
margin-bottom: 10px;
}
#use .entry__title {
    width: 73%;
    margin: 15px auto 10px;
}
#use .entry-section {
    margin-bottom: 30px;
}

#use .entry-table {
    width: 100%;
    text-align: center;
    border-spacing: 0;
    border-collapse: separate;
    border: 4px solid #e72418;
    border-radius: 10px;
    margin-bottom: 10px;
}
#use .entry-table + .entry-table {
    margin-top: 15px;
}
#use .entry-table__type {
    text-align: center;
    padding: 3px 3px 5px;
    background: #e72418;
}
#use .entry-table__type .type-label {
        color: #e72418;
        /* border-radius: 10px; */
        border-radius: 20px;
        background: #fff;
}
#use .entry-table__th {
    color: #fff;
    text-align: center;
    padding: 12px 0;
    background: #e72418;
}
#use .entry-table__th:first-child {
    border-right: 1px solid #fff;
}
#use .entry-table__td {
    padding: 6px;
    border-bottom: 1px solid #e72418;
}
#use .entry-table__td:first-child {
    border-right: 1px solid #e72418;
}
#use .table-inner {
    min-height: 3em;
    display: grid;
    place-items: center;
}

#use .entry-case {
    margin-top: 15px;
}
#use .entry-case__text01 {
    margin-bottom: 16px;
}
#use .entry-case__text02 {
    width: 110px;
    margin-bottom: 6px;
}
#use .entry-case__example {
    margin-bottom: 22px;
}
#use .entry-case__head {
    width: 56px;
    margin: 0 auto 6px;
}
#use .entry-case__item:not(:first-of-type)::before {
    content: "";
    display: block;
    width: 17px;
    height: 17px;
    margin: 2px auto;
    background: url(../img/use_icon_entry01.webp) left top no-repeat;
    background-size: contain;
}
#use .entry-case__item:last-of-type::before {
    width: 20px;
    height: 8px;
    margin-top: 7px;
    margin-bottom: 6px;
    background: url(../img/use_icon_entry02.webp) left top no-repeat;
    background-size: contain;
}

#use .important-note {}
#use .important-note__title {
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.02em;
    /* border-radius: 10px; */
    border-radius: 20px;
    margin-bottom: 10px;
    background: #000;
}
#use .important-note__subtitle {
    color: #e72418;
    font-weight: normal;
    margin: 20px 0 8px;
}
#use .important-note__block {
    padding: 15px;
    border: 1px solid #ccc;
    background: #f5f7f7;
}
#use .important-note__inner {
    overflow-y: scroll;
    height: 270px;
    text-align: justify;
    padding-right: 20px;
}
#use .important-note__more {
    margin-bottom: 25px;
}
#use .important-note__link {
    color: #000;
    text-decoration: underline;
}

/* SimpleBarのカスタムスタイル */
.scroll__inner::-webkit-scrollbar {
  /* Chrome, Safari 対応 */
    display: none;
}
.simplebar-scrollbar::before {
    background: #000;
    border-radius: 10px;
    width: 6px;
    height: 20px;
}
.simplebar-scrollbar.simplebar-visible::before {
    opacity: 1;
}
@media screen and (min-width: 700px) {
    #use .important-note__title {
        font-size: 28px;
    }
    #use .entry-case__text02 {
        width: 220px;
    }
    #use .entry-case__head {
        width: 112px;
    }
    #use .entry-case__item:not(:first-of-type)::before {
        width: 34px;
        height: 34px;
        margin: 4px auto;
    }
    #use .entry-case__item:last-of-type::before {
        width: 40px;
        height: 16px;
        margin-top: 14px;
        margin-bottom: 12px;
    }
    #use .entry-case__example {
        margin-bottom: 44px;
    }
}


#character {
}
#character .detail__container {
    padding: 18px 8% 10px;
    background: url(../img/character_bg.webp) left top no-repeat;
    background-size: cover;
}
#character .character__title {
    margin: 0 8px 10px -35px;
}
#character .character__image {
    max-width: 264px;
    margin: 0 auto 8px;
}
#character .character__text01 {
    margin-bottom: 10px;
}

@media screen and (min-width: 700px) {
}

/* recommend */
.recommend__title {
    margin-bottom: 50px;
    padding: 40px 0 0 0;
}
.recommend__title-01 {
    width: 62%;
    display: block;
    margin: 0 auto 10px auto;
}
.recommend__title-02 {
    width: 73%;
    display: block;
    margin: 0 auto 10px auto;
}
.recommend__title-03 {
    width: 59%;
    display: block;
    margin: 0 auto;
}

.recommend__function {
    position: relative;
    margin-bottom: 60px;
}

.recommend__sub-title {
    width: 70%;
    height: 60px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    position: absolute;
    top: 30px;
    left: 50%;
    z-index: 5;
}
.recommend__sub-title .sub-title__num img {
    display: inline-block;
    width: auto;
    height: 44px;
}
.sub-title__text {
    margin: 0 auto;
}
/* title color */
.function01 .recommend__sub-title {
    background: #7ec04d;
}
.function02 .recommend__sub-title {
    background: #18b4e3;
}
.function03 .recommend__sub-title {
    background: #ed7987;
}
.function04 .recommend__sub-title {
    background: #f6ab00;
}

/* function01 */
.function01 .recommend__sub-title .sub-title__text img {
    width: auto;
    height: 27px;
}
.function01 .recommend__word01 {
    width: 13%;
    top: 102px;
    right: 19%;
}
.function01 .recommend__word02 {
    width: 10%;
    top: 125px;
    right: 30%;
}

/* function02 */
.function02 .recommend__sub-title .sub-title__text img {
    width: auto;
    height: 44px;
}
.function02 .recommend__word01 {
    width: 9.6%;
    top: 106px;
    left: 31%;
}
.function02 .recommend__word02 {
    width: 13%;
    top: 132px;
    left: 22%;
}

/* function03 */
.function03 .recommend__sub-title .sub-title__text img {
    width: auto;
    height: 27px;
}
.function03 .recommend__word01 {
    width: 13%;
    top: 102px;
    right: 19%;
}
.function03 .recommend__word02 {
    width: 10%;
    top: 125px;
    right: 30%;
}

/* function04 */
.function04 .recommend__sub-title .sub-title__text img {
    width: auto;
    height: 46px;
}
.function04 .recommend__word01 {
    width: 10%;
    top: 106px;
    left: 33%;
}
.function04 .recommend__word02 {
    width: 13%;
    top: 132px;
    left: 23%;
}


.recommend__image {
    width: 100%;
    position: relative;
    margin-bottom: 30px;
}
.recommend__word01 {
    position: absolute;
}
.recommend__word02 {
    position: absolute;
}
.recommend__text01 {
    width: 40%;
    position: absolute;
    bottom: 0;
}
.recommend__text02 {}
.recommend {}

.recommend__function:nth-child(even) .recommend__sub-title {
    margin-left: -42%;
}
.recommend__function:nth-child(odd) .recommend__sub-title {
    margin-left: -28%;
}
.recommend__function:nth-child(even) .recommend__image {
    padding-right: 14%;
}
.recommend__function:nth-child(odd) .recommend__image {
    padding-left: 14%;
}
.recommend__function:nth-child(even) .recommend__text01 {
    right: 3.7%;
}
.recommend__function:nth-child(odd) .recommend__text01 {
    left: 3.7%;
}
.recommend__function:nth-child(even) .recommend__text02 img {
    height: 38px;
}
.recommend__function:nth-child(odd) .recommend__text02 img {
    height: 59px;
}

/* point01 */
.point01 {
    width: 100%;
    padding: 50px 0 80px 0;
}
.point01__title {
    margin-bottom: 40px;
}

.point01__lists {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.point01__item {
    width: 50%;
    margin-bottom: 40px;
}
.point01__item:nth-child(even) {
    padding-left: 2%;
}
.point01__item:nth-child(odd) {
    padding-right: 2%;
}
.point01__item:nth-child(7) {
    width: 100%;
    margin-bottom: 0;
}
.point01__link {
    display: block;
    color: #000;
}
.point01__image {}
.point01__caption {
    font-size: 1.3rem;
    text-align: center;
    margin-top: 10px;
}
/* .point01__text.text--end */
.point01__text--end {
    color: #c81528;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    padding: 5px 0;
    border: 2px solid #c81528;
    border-radius: 10px;
    position: relative;
}
.point01__text--end::before, .point01__text--end::after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    clip-path: polygon(0 100%, 50% 0, 100% 100%);
}
.point01__text--end::before {
    width: 10px;
    height: 21px;
    margin-left: -5px;
    background: #fff;
    top: -20px;
    z-index: 5;
}
.point01__text--end::after {
    width: 14px;
    height: 24px;
    margin-left: -7px;
    background: #c81528;
    top: -26px;
    z-index: 1;
}

@media screen and (min-width: 700px) {
    .point01__lists {
        margin-bottom: 70px;
    }
}

/* point01 */
.point02 {
    width: 100%;
    padding: 80px 0;
    background: #fbe4ed;
}
.point02__title {
    margin-bottom: 40px;
}
.point02__lists {}
.point02__item:not(:last-child) {
    margin-bottom: 45px;
}
.point02__text {
    width: 14%;
    margin: 0 auto 15px;
}
.point02__image {
    width: 100%;
    padding: 20px 9%;
    border-radius: 5px;
    border: 1px solid #c81528;
    background: #fff;
    position: relative;
}
.point02__item:not(:last-child) .point02__image::after {
    content: '';
    display: block;
    width: 16px;
    height: 10px;
    clip-path: polygon(0 0, 50% 100%, 100% 0%);
    background: #c81528;
    margin-left: -8px;
    position: absolute;
    left: 50%;
    bottom: -10px;
}
.point02__caption {
    color: #c81528;
    font-weight: bold;
    text-align: center;
    margin-top: 8px;
}
.point02__caption .caption__text-note {
    font-size: 1.2rem;
    display: block;
    margin-top: 5px;
}

/* faq */
.faq {
    padding: 45px 0 30px 0;
}
.faq__title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.faq__title::before {
    width: 60px;
    height: 60px;
    display: inline-block;
    margin-right: 10px;
    content: url(../img/faq_icon.svg);
}
.faq__lists {}
.faq__text--q {
    color: #c81528;
    font-size: 1.6rem;
    margin-bottom: 15px;
}
.faq__text--a {
    margin-bottom: 55px;
}
.faq__text--end {
    color: #ec7aa7;
    font-size: 2.0rem;
    font-weight: bold;
    text-align: center;
    position: relative;
}
.faq__text--end::after {
    width: 100%;
    height: 100%;
    display: block;
    content: url(../img/faq_deco_01.svg);
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -12%;
    margin-left: -50%;
}

/* contact */
.contact {
    width: 100%;
    color: #fff;
    font-weight: bold;
    text-align: center;
    padding: 40px 0;
    background: #ec7aa7;
}
.contact__title {
    margin-bottom: 10px;
}
.contact__text--tel {
    font-size: 3.6rem;
    margin-bottom: 15px;
}
.contact__link {
    display: block;
}
.contact__text-01 {
    margin-bottom: 15px;
}
.contact__text-02 .text--right {
    display: block;
    text-indent: 5.5em;
}


/* notes */
.notes {
    padding: 35px 0 40px 0;
    background: #f2f2f2;
}
.notes__item {
    text-indent: -1.02em;
    margin-left: 1.02em;
}
.notes__title:not(:first-child),
.lists--single {
    margin-top: 20px;
}
.item--title {
    display: inline-block;
    width: 10.5em;
    text-indent: 0.5em;
}

/* footer */
.footer {
    text-align: center;
}
.footer__inner {
    padding: 50px 0 45px;
}
.footer__logo {
    width: 45%;
    margin: 0 auto;
}
.footer__copyright {
    color: #fff;
    width: 100%;
    display: block;
    font-size: 1.2rem;
    text-align: center;
    padding: 11px 0;
    background: #000;
}

/* font-size */
@media screen and (min-width: 700px) {
    body {
        font-size: 2.6rem;
    }
    .info__text {
        font-size: 2.8rem;
    }
    .info__text .text--small {
        font-size: 2.4rem;
    }
    .detail-list__title {
        font-size: 2.8rem;
    }
    .detail-list__text {
        font-size: 3.2rem;
    }

    .recommend__function:nth-child(even) .recommend__text02 img {
        height: 57px;
    }
    .recommend__function:nth-child(odd) .recommend__text02 img {
        height: 88px;
    }
    .point01__text--end {
        font-size: 3.2rem;
    }
    .faq__title {
        font-size: 3.2rem;
    }

    .faq__text--q {
        font-size: 2.8rem;
    }
    .point01__caption {
        font-size: 2.3rem;
    }
    .point02__caption .caption__text-note {
        font-size: 2.1rem;
    }
    .faq__text--end {
        font-size: 3.6rem;
    }
}