@charset "UTF-8";

/* 共通部分 */

html {
    scroll-behavior: smooth;
}

body {
    background-color: #fff;
    font-family: "Noto Sans JP", sans-serif;
    }

.wrapper {
    width: 90%;
    max-width: 1170px;
    margin: 0 auto;
}

:root {
    --blue: rgb(0, 134, 164);
    /* --accent: #96b6dd; */
    --accent:rgb(154, 208, 225);
}

a {
    text-decoration: none;
    display: block;
    color: var(--blue);
}

main, p {
    color: #000;
    font-size: 1rem;
}
.sp-only {
    display: none;
}


/* ローディング画面 */
#loading {
    transition: all 1s;
    background-color: #fff;
    background-color: rgb(224, 241, 244);
    backdrop-filter: blur(10px);
    position: fixed;
    z-index: 9999;
    inset: 0;
    display: grid;
    place-items: center;
    text-align: center;
}

#loading p {
    font-size: 1.2rem;
    font-family: "the-seasons", sans-serif;
    /* font-family: linotype-didot, serif; */
    font-weight: 400;
    font-style: normal;
    color: var(--blue);
    color: #000;
}


/* ヘッダー */

.page-header {
    display: flex;
    justify-content: space-between;
    padding-top: 5px;
    width: 90%;
    background-color: #fff;
    margin: 0 auto;
}

.page-header img {
    width: 11%;
}

.btn-menu {
    display: none;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    width: 400px;
}


/* バナー */

.banner-pc {
    margin-top: 10px; 
    text-align: center;
}

.banner-pc img {
    width: 100%;
}

.banner-sp {
    display: none;
}

/* おまとめ割引ボタン */

.omatome-box {
    text-align: center;
    margin-top: 50px;
}

.omatome-start {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.omatome-letter {
    font-size: 1.5rem;
    color: var(--blue);
    margin: 0 10px;
}

.omatome-btn {
    /* border: 1px solid #704d4d; */
    /* background: #704d4d; */
    background: var(--accent);
    color: #fff;
    width: 50%;
    margin: 0 auto;
    padding: 15px 0;
    border-radius: 10px;
    font-size: 1.1rem;
    transition: .3s;
}

.omatome-btn:hover {
    opacity: .7;
}


/* 本文 */

h2 {
    font-size: 3.5em;
    text-align: center;
    margin: 120px 0 5px;
    /* font-family: 'Tangerine', cursive; */
    /* font-family: 'Roboto Slab', serif; */
    font-family: the-seasons, sans-serif;
    font-weight: 200;
    margin-bottom: 10px;
}

.subtitle {
    text-align: center;
    font-size: 1.1rem;
    width: 85%;
    margin: 0 auto 50px;
    display: flex;
}

.subtitle::before, .subtitle::after {
    flex: 1;
    height: 1px;
    content: '';
    background-color: rgb(0, 0, 0, .5);
    position: relative;
    top: .6rem;
}

.subtitle::before {
    margin-right: 1rem;
}

.subtitle::after {
    margin-left: 1rem;
}

.container, .container2, .container3, .container-last {
    position: relative;
    width: 90%;
    margin: 0 auto;
    padding: 100px 0 60px;
    /* border-bottom: 1px solid rgb(112, 77, 77, .3); */
}

.container, .container3, .container-last {
    display: flex;
    justify-content: space-between;
}

.container2, .one-image {
    padding: 60px 0;
}

.container2 {
    display: block;
    /* text-align: center; */
}

.container3 {
    flex-direction: row-reverse;
}

.container-last {
    padding-bottom: 0px;
    margin-bottom: 50px;
}

.point-icon-box, .h3-box {
    text-align: center;
}

.point-icon-center {
    /* display: block; */
    margin-bottom: 30px;
}

.point-icon {
    display: block;
    margin-bottom: 30px;
}

.new-icon {
    width: 60px;
}

/* 購入特典について */
.purchase-bonus {
    padding: 40px 20px;
    background-color: rgb(154, 208, 225, .2);
    width: 60%;
    margin: 0 auto;
    border-radius: 20px;
}
.purchase-bonus p {
    line-height: 1.7;
    /* text-align: center; */
}
.bonus-img-box {
    text-align: center;
    margin-bottom: 40px;
}
.bonus-img-box img {
    width: 25%;
    /* margin: 0 10px; */
}
/* .bonus-img-box{
    display:flex;
    justify-content:center;
    align-items:flex-start;
    gap:40px;
} */
.bonus-group{
    text-align:center;
}
.bonus-group:last-child {
    margin-top: 30px;
}
.bonus-label{
    display:inline-block;
    margin-bottom:10px;
    padding:8px 12px;
    font-size:14px;
    color:#fff;
    background:#b98d9b;
    background: rgb(0, 134, 164, .7);
    border-radius:999px;
}
.bonus-title {
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}
.bonus-lead {
    font-size: 16px;
    line-height: 1.9;
    margin: 0 0 28px;
}
.bonus-detail {
    border-top: 1px solid rgb(0, 134, 164, .3);
    padding-top: 18px;
    margin-bottom: 18px;
}
.bonus-detail:last-child {
    margin-bottom: 0;
}
.bonus-detail-label {
    font-weight: 700;
    font-size: 14px;
    color: #ecb0c1;
    color: #b98d9b;
    color: var(--blue);
    margin: 0 0 6px;
}
.bonus-detail-text {
    font-size: 14px;
    line-height: 1.7;
    /* color: rgb(112, 77, 77, .8); */
    margin: 0;
}


h3 {
    font-size: 1.3rem;
    margin-bottom: 50px;
    display: inline-block;
    background-image: linear-gradient(transparent 50%, #b8dbe6 50%);
    padding-bottom: 0.25rem;
    letter-spacing: .08rem;
}

.marker {
    background-repeat: no-repeat;
    background-size: 0% 100%;
    transition: background-size 1.5s;

}

.marker.on {
    background-size: 100% 100%;
}

h3::before {
    display: block;
    position: absolute;
}

.point1-title::after {
    content: '\f004';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 1.2rem;
    color: #000;
    top: 1px;
    position: relative;
    margin-left: 1px;
}

.caption-box {
    width: 55%;
    margin: auto 0;
}

.caption-box2  {
    width: 80%;
    margin: 0 auto 70px;
    text-align: center;
}

.caption-box p, .caption-box2 p {
    line-height: 1.7;
}

.short-txt, .omatome-caption {
    text-align: center;
}

.img-box {
    width: 40%;
    position: relative;
}

.img-box2, .img-box3 {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.inbox-wrapper {
    text-align: center;
}

.img-box3 {
    margin-bottom: 40px;
}

.hyoushi-box {
    justify-content: space-around;
}

.img-inbox, .img-inbox2 {
    position: relative;
    text-align: center;
}

.hyoushi-inbox {
    width: 45%;
}
.hyoushi-inbox img {
    width: 100%;
}


.icon-plus {
    position: absolute;
    bottom: 12%;
    right: 7%;
    /* margin-right: -50%;
    transform: translate(-50%, -50%); */
}

.icon-plus2 {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
}

.icon-plus::after, .icon-plus2::after {
    display: inline-block;  
    margin: 0;  
    content: '\f055';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 30px;
    color: rgb(255, 255, 255, .7);
}  

.icon-plus2::after {
    color: rgb(0, 0, 0, .3);
}

.gallery-img {
    width: 100%;
    margin: 10px 0;
}

.gallery-img02 {
    width: 95%;
}

.gallery-img04 {
    width: 90%;
    margin-bottom: 10px;
}

.photo-grapher {
    text-align: right;
    font-size: 0.7rem;
    margin-top: 20px;
}

.img-caption {
    font-size: 0.8rem;
    line-height: 1.7;
}

.silhouette {
    flex-wrap: wrap;
    align-items: center;
}

.silhouette-image {
    width: 16%;
}

.long {  
    width: 13%;
}

.silhouette-image img {
    width: 100%;
}

.moon-img {
    width: 100%;
}

.lightbox {
    transition: .3s;
}

.lum-lightbox.lum-open {
    z-index: 5;
}

.lum-lightbox-inner img {
    max-width: 60%;
    /* min-height: 100%; */
}

.lightbox:hover {
    transform: scale(1.1);
}

.plus-mark {
    position: absolute;
    z-index: 2;
    bottom: 8%;
    right: 3%;
}

.item-detail {
    width: 85%;
    margin: 0 auto;
    line-height: 1.7;
}

.more_btn {
    width: 85%;
    margin: 0 auto;
}

.more_btn a, .studio a {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    transition: .3s;
}

.more_btn a {
    margin: 30px 0 100px;
    font-size: 1.3rem;
    /* border: 1px solid #000; */
    /* background: #fff; */
    /* color: #000; */
    color: #fff;
    background: var(--accent);
}

.more_btn a:hover {
    /* border: none; */
    opacity: .7;
}

.studio {
    width: 100%;
    /* margin-left: 80px; */
}

.studio a {
    background-color: var(--accent);
    color: #fff;
    margin-top: 30px;
    font-size: 1.1rem;
}

.studio a:hover {
    opacity: .7;
}


/* ステッカー案内 */

.sticker {
    padding: 60px;
    background-color: rgb(154, 208, 225, .2);
    width: 60%;
    margin: 0 auto 60px;
    border-radius: 20px;
}
.sticker p {
    line-height: 1.7;
}
.sticker-lead {
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}
.sticker-detail {
    margin-bottom: 18px;
}
.sticker-shoplist {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 12px;
    justify-content: space-between;
}
.sticker-shoplist li {
    display: flex;
    align-items: center;
    gap: 8px;
}
.sticker-shoplist img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    flex-shrink: 0;
}
.sticker-shoplist span {
    font-size: 15px;
}
.sticker-img-box {
    text-align: center;
    margin-top: 20px;
}
.sticker-img-box img {
    width: 50%;
    border-radius: 12px;
}
.sticker-note {
    line-height: 1.7;
    list-style: none;
    font-size: 14px;
    color: #777;
    margin-top: 20px;
}


/* フッター */

footer, .menu a {
    background-color: #e0f1f4;
    background-color: rgb(204, 226, 234);
    /* color: rgb(0, 134, 164); */
    color: #000;
}

.copyright {
    text-align: center;
    padding: 20px 0;
    font-size: 0.8em;
    display: block;
    margin-top: 70px;
}

#floating-menu {
    display: none;
}



/*ここからタブレットサイズ（画面の横幅が560px〜959px）*/

@media screen and (max-width: 959px) {

    .wrapper {
        width: 85%;
    }
    .sp-only {
        display: inherit;
    }

    .pc-only {
        display: none;
    }

    .page-header {
        background: rgb(255, 255, 255, .7);
        width: 100%;
        border-top: none;
        padding: 0;
    }

    /* .page-header img {
        width: 16%;
    } */

    .banner-pc {
        display: none;
    }

    .banner-sp {
        display: block;
        text-align: center;
    }

    .banner-sp img {
        width: 85%;
    }

    .omatome-start {
        font-size: 1rem;
    }

    .omatome-letter {
        font-size: 1.3rem;
    }

    .omatome-btn {
        width: 60%;
        font-size: .9rem;
    }

    h2 {
        font-size: 3rem;
    }

    .subtitle {
        /* margin-bottom: 60px; */
        font-size: 1rem;
    }

    .photo-grapher {
        margin: 0;
    }

    .container, .container3, .container2, .container-last {
        width: 100%;
    }

    .container, .container3, .container-last {
        display: block;
        padding: 130px 0 60px;
    }

    .container-last {
        padding: 130px 0 50px;
    }

    .point-icon {
        margin: 0 auto 30px;
    }
    
    h3 {
        font-size: 1.2rem;
    }

    .point1-title::before, .point3-title::before, .point5-title::before, .point6-title::before, .point8-title::before, .point9-title::before {
        top: 40px;
        left: 50%;
        transform: translateX(-50%);
    }

    .caption-box, .caption-box2  {
        width: 95%;
        margin: 0 auto 70px;
        text-align: left;
    }

    .omatome-caption {
        margin-bottom: 0;
    }

    .lum-lightbox-inner img {
        max-width: 100%;
    }

    .img-box {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .img-box2 {
        flex-wrap: wrap;
        justify-content: flex-start;
        column-gap: 2px;
    }

    .hyoushi-box {
        justify-content: space-around;
    }

    .img-inbox2 {
        width: 33%;
    }

    .img-box05 {
        display: block;
    }
    .hyoushi-inbox {
        width: 45%;
    }
    .img-inbox-wrapper {
        flex-direction: column;
    }
    .short-txt {
        text-align: left;
    }

    .no-zoom {
        justify-content: center;
    }

    .gallery-img {
        width: 90%;
        margin: 0;
    }

    .photo-grapher {
        margin: 8px 0 0;
    }

    .gallery-img02 {
        margin-bottom: 10px;
    }

    .img05, .img06, .moon-img {
        width: 60%;
    }
    
    .silhouette {
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

    .silhouette-image {
        width: 16%;
    }

    .long {
        width: 12%;
    }

    .silhouette-image img {
        width: 100%;
    }
    
    .icon-plus::after, .icon-plus2::after {
        font-size: 25px;
    }

    .icon-plus {
        bottom: 8%;
        right: 8%;
    }

    .studio {
        width: 85%;
        margin: 0 auto 100px;
    }

    .studio a {
        margin-top: 60px;
    }

    .sticker {
        width: 80%;
        margin-top: 60px;
    }

    .sticker-shoplist {
        flex-direction: column;
    }

    .sticker-shoplist li {
        gap: 12px;
    }

    .more_btn a {
        display: none;
        margin-top: 20px;
        font-size: 1rem;
        /* background-color: rgb(0, 134, 164); */
        color: #fff;
        transition: .3s;
        border: none;
    }

    .copyright {
        padding: 30px 0;
        /* font-size: 0.7em; */
        padding-top: 30px;
    }

    #floating-menu {
        display: block;
        position: fixed;
        bottom: 67px;
        right: 50px;
        z-index: 100;
    }
    
    .buy-btn {
        background-color: var(--accent);
        color: #fff;
        border-radius: 10px;
        text-align: center;
        padding: 15px;
        font-size: 1rem;
    }

}

/*ここからSPサイズ（画面の横幅が559pxまで）*/

@media screen and (max-width: 559px) {

    #loading p {
        font-size: 1.1rem;
    }

    .wrapper {
        width: 90%;
    }

    .page-header img {
        width: 22%;
        margin-top: 5px;
    }
    
    .banner-sp {
        margin-top: 5px;
    }

    .banner-sp img {
        width: 100%;
    }

    .omatome-start {
        font-size: .8rem;
    }

    .omatome-letter {
        font-size: 1rem;
        margin: 0 5px;
    }

    .omatome-btn {
        width: 70%;
        font-size: .8rem;
    }
    
    h2 {
        font-size: 2.2rem;
        margin-top: 70px;
        margin-bottom: 5px;
    }

    .subtitle {
        font-size: .9rem;
        margin-bottom: 20px;
    }

    .subtitle::before, .subtitle::after {
        height: 1px;
        top: 0.5rem;
    }

    .purchase-bonus {
        width: 90%;
    }
    .bonus-label {
        font-size: 12px;
    }
    .bonus-img-box img {
        width: 40%;
    }

    h3 {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .lum-lightbox-inner img {
        max-width: 200%;
    }
    
    .img-box, .img-box3 {
        flex-direction: column;
    }

    .img-box3 {
        margin-bottom: 0;
    }

    .hyoushi-box {
        row-gap: 20px;
    }

    .img-inbox2 {
        width: 49%;
    }

    .hyoushi-inbox {
        width: 90%;
    }

    .silhouette {
        /* flex-direction: row; */
        flex-wrap: wrap;
        align-items: center;
    }

    .no-zoom {
        flex-direction: row;
    }

    .gallery-img, .gallery-img04, .moon-img {
        width: 90%;
        margin: 10px auto;
    }

    .gallery-img04 {
        margin: 10px 0 0;
    }

    .icon-plus {
        bottom: 15%;
        right: 9%;
    }

    .icon-plus::after, .icon-plus2::after {
        font-size: 20px;
    }

    .inbox-wrapper {
        margin-bottom: 20px;
    }

    .img-caption {
        font-size: 0.7rem;
        line-height: 1.5;
        width: 90%;
        margin: 0 auto;
    }

    .caption-box, .caption-box2 {
        width: 90%;
        margin-bottom: 40px;
    }

    .omatome-caption {
        margin-bottom: 20px;
    }

    .tracker {
        display: none;
    }

    .studio {
        margin: 0 auto;
    }

    .studio a {
        padding: 15px;
        font-size: 1rem;
        width: 100%;
        margin: 30px auto 0;
    }

    .sticker {
        width: 90%;
        padding: 40px 28px;
    }

    .sticker-img-box img {
        width: 95%;
    }

    .copyright {
        font-size: 0.6rem;
    }

    #floating-menu {
        bottom: 30px;
        right: 30px;
    }

    .buy-btn {
        padding: 12px;
        font-size: .9rem;
    }

}