@charset "utf-8";

/*
 * 初期化
 */
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, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; font-weight: normal; box-sizing:border-box} body { line-height: 1; } article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; }

ul { list-style: none; }
blockquote, q { quotes: none; }
blockquote:before, blockquote:after, q:before, q:after { content: none; }
a { margin: 0; padding: 0; font-size: 100%; vertical-align: baseline; background: transparent; text-decoration: none; word-break:break-all}
del { text-decoration: line-through; }
abbr[title], dfn[title] { border-bottom: 1px dotted; cursor: help; }
table { border-collapse: collapse; border-spacing: 0; }
hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; }
input, select { vertical-align: middle; }
a { text-decoration: none; color: #000} img {width: 100%;}


/*
 * 共通
 */
html {
    --main-color: #393939;
    --main-bg-color: #356958;
    --main-dark-color: #6B8A87;
    --accent-color: #E59D9D;
    --serif: "Shippori Mincho", "Noto Serif JP", Meiryo, serif;
    scroll-behavior: smooth;
    --accentfont: "Miltonian", serif;
}

a:hover {
    transition: all ease .5s;
}

body {
    width: 100%;
    margin: 0 auto;
    font-family: var(--serif);
    color: var(--main-color);
}

/*
 * fade-in
 */
.fade-in {
    transition: transform .8s ease, opacity .8s ease;
    transform: translateY(21px);
    opacity: 0;
}

.fade-in.show {
    opacity: 1;
    transform: none;
}

/*
 * PC背景
 */

.bg-wrap-pc {
    /*background: url("../img/bg_pc.jpg");*/
    position: fixed;
    background-size: cover;
    width: 100vw;
    height: 100vh;
    display: flex;
    z-index: 0;
}
@media only screen and (max-width: 769px) {
    .bg-wrap-pc {
        display: none;
    }
}

.bg-wrap-pc .dummy-left, .bg-wrap-pc .dummy-right {
        flex-basis: 50%;
        background-image: url("../img/pc-bg.svg");
}

.bg-wrap-pc .dummy-content {
    flex-basis: 450px;
    flex-shrink: 0;
    border-left: solid 8px var(--accent-color);
    border-right: solid 8px var(--accent-color);
    box-sizing: content-box;
    background: var(--accent-color);
}

.bg-wrap-pc .logo-pc {
    max-width: 230px;
    width: 95%;
    margin: 0 auto;
    margin-top: 100px;
    display: block;
    opacity: 0;
    text-align: center;
}

.show .bg-wrap-pc .logo-pc {
    opacity: 1;
    transition: ease all .5s;
    transition-delay: .6s;
}

.bg-wrap-pc .nav {
    max-width: 230px;
    width: 95%;
    margin: 0 auto;
    margin-top: 100px;
}

.bg-wrap-pc .nav li {
    border-bottom: 1px dotted #E59D9D;
}

.bg-wrap-pc .nav li:first-child {
    border-top: 1px dotted #E59D9D;
}

.bg-wrap-pc .nav li a {
    text-align: center;
    opacity: 0;
    font-family: "Irish Grover", system-ui;
    letter-spacing: .1em;
}

.show .bg-wrap-pc .nav li a {
    opacity: 1;
    transition: ease all .5s;
    transition-delay: 1s;
}

.show .bg-wrap-pc .nav li:nth-child(2) a {
    transition-delay: 1.2s;
}
.show .bg-wrap-pc .nav li:nth-child(3) a {
    transition-delay: 1.4s;
}
.show .bg-wrap-pc .nav li:nth-child(4) a {
    transition-delay: 1.6s;
}
.show .bg-wrap-pc .nav li:nth-child(5) a {
    transition-delay: 1.8s;
}

.bg-wrap-pc .nav li a img {
    width: 81px;
    display: block;
    margin: 0 auto;
    margin-bottom: 5px;
}

.bg-wrap-pc .nav li:first-child a img {
    width: 39px;
}


.bg-wrap-pc .nav li a {
    color: var(--main-color);
    font-size: 11px;
    letter-spacing: 0.1em;
    display: inline-block;
    padding: 15px 20px;
    text-align: center;
    transition: all ease .5s;
    width: 100%;
    box-sizing: border-box;
}
.bg-wrap-pc .nav li.active a {
    background: #FBEFEF;
}

.content-wrap {
    max-width: 450px;
    display: block;
    flex-basis: 375px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
    opacity: 0;
    background: #fff;
    overflow: hidden;
}
@media only screen and (max-width: 769px) {
    .content-wrap {
        max-width: 100%;
    }
}

.show .content-wrap {
   opacity: 1;
   transition: opacity ease .8s;
   transition-delay: 2s;
   background: #fff;
}
@media only screen and (max-width: 769px) {
    .show .content-wrap {
        transition-delay: 0s;
    }
}

.sec {
    padding: 0 20px;
}
@media only screen and (max-width: 769px) {
    .sec {
        padding: 0 calc(20 / 375 * 100vw);
    }
}

ul.items {
    margin-top: 20px;
    margin-bottom: 100px;
    text-align: right;
    display: inline-block;
}
@media only screen and (max-width: 769px) {
    ul.items {
        margin-top: calc(20 / 375 * 100vw);
        margin-bottom: calc(100 / 375 * 100vw);
    }
}
@media screen and (min-width: 770px) {
    ul.items {
         margin-top:  calc(20 * 1.2px);
         margin-bottom: calc(100 * 1.2px);
    }
}

ul.items p {
    margin: 5px;
    padding-bottom: -5px;
    display: inline-block;
    border-bottom: solid 0.5px #393939;
    font-size: 16px;
}
@media only screen and (max-width: 769px) {
    ul.items p {
        margin: calc(5 / 375 * 100vw);
        padding-bottom: calc(-5 / 375 * 100vw);
        font-size: calc(16 / 375 * 100vw);
    }
}
@media screen and (min-width: 770px) {
    ul.items p {
         margin:  calc(5 * 1.2px);
         padding-bottom: calc(-5 * 1.2px);
         font-size: calc(16 * 1.2px);
    }
}

ul.items a {
    background: #6B8A87;
    color: #fff;
    font-size: 14px;
    padding: 3px 10px;
    margin-left: 1em;
    width: 57px;
    font-family: var(--accentfont);
}
@media only screen and (max-width: 769px) {
    ul.items a {
        font-size: calc(14 / 375 * 100vw);
        padding: calc(3 / 375 * 100vw) calc(10 / 375 * 100vw);
        width: calc(57 / 375 * 100vw);
    }
}
@media screen and (min-width: 770px) {
    ul.items a {
         font-size: calc(14 * 1.2px);
         padding: calc(3 * 1.2px) calc(10 * 1.2px);
         width: calc(57 * 1.2px);
    }
}

ul.items a:hover {
    background: #E59D9D;
}

/*
 * sec-main
 */

.sec-main {
    padding-top: 20px;
    position: relative;
    overflow: hidden;
}
@media only screen and (max-width: 769px) {
    .sec-main {
        padding-top: calc(20 / 375 * 100vw);
    }
}
@media screen and (min-width: 770px) {
    .sec-main {
        padding-top: calc(20 * 1.2px);
    }
}

.sec-main .img-wrap-title {
    z-index: 1;
    width: 170px;
    position: relative;
    transition: transform .8s ease, opacity .8s ease;
    transform: translateY(20px);
    opacity: 0;
}
@media only screen and (max-width: 769px) {
    .sec-main .img-wrap-title {
         width: calc(170 / 375 * 100vw);
    }
}
@media screen and (min-width: 770px) {
    .sec-main .img-wrap-title {
        width: calc(170 * 1.2px);
    }
}

.show .sec-main .img-wrap-title {
    opacity: 1;
    transform: none;
    transition-delay: 2.5s;
}
@media only screen and (max-width: 769px) {
    .show .sec-main .img-wrap-title {
        transition-delay: .5s;
    }
}

.sec-main .img-wrap-title p {
    font-size: 11px;
    margin: 0;
    margin-bottom: 5px;
    letter-spacing: 0.09em;
    line-height: 1;
    padding-left: 0.5em;
    word-break: keep-all;
}
@media only screen and (max-width: 769px) {
    .sec-main .img-wrap-title p {
         font-size: calc(11 / 375 * 100vw);
    }
}
@media screen and (min-width: 770px) {
    .sec-main .img-wrap-title p {
         font-size:  calc(11 * 1.2px);
    }
}

.sec-main .hero {
    margin-top: -80px;
    margin-right: -20px;
    z-index: 0;
    position: relative;
}
@media only screen and (max-width: 769px) {
    .sec-main .hero {
        margin-top: calc(-80 / 375 * 100vw);
        margin-right: calc(-20 / 375 * 100vw);
    }
}
@media screen and (min-width: 770px) {
    .sec-main .hero {
         margin-top:  calc(-80 * 1.2px);
         margin-right: calc(-20 * 1.2px);
    }
}

.sec-main .hero img {
    opacity: 0;
}

.show .sec-main .hero img {
    opacity: 1;
    transition: ease all .5s;
    transition-delay: 3s;
}
@media only screen and (max-width: 769px) {
    .show .sec-main .hero img {
        transition-delay: 1s;
    }
}

.sec p.catchcopy {
    margin-top: -90px;
    font-size: 24px;
    line-height: 1.65;
    font-weight: bold;
    letter-spacing: 0.1em;
    z-index: 1;
    position: relative;
}
@media only screen and (max-width: 769px) {
    .sec p.catchcopy {
        margin-top: calc(-90 / 375 * 100vw);
        font-size: calc(24 / 375 * 100vw);
    }
}
@media screen and (min-width: 770px) {
    .sec p.catchcopy {
         margin-top:  calc(-90 * 1.2px);
         font-size: calc(24 * 1.2px);
    }
}

.sec-main p.catchcopy {
    transition: transform .8s ease, opacity .8s ease;
    opacity: 0;
    transform: translateY(20px);
}

.show .sec-main p.catchcopy {
    opacity: 1;
    transform: none;
    transition-delay: 3.5s;
}
@media only screen and (max-width: 769px) {
    .show .sec-main p.catchcopy {
        transition-delay: 1.5s;
    }
}

.sec p.en {
    margin-top: 10px;
    font-family: var(--accentfont);
    font-size: 17px;
    margin-bottom: 75px;
}
@media only screen and (max-width: 769px) {
    .sec p.en {
        margin-top: calc(10 / 375 * 100vw);
        font-size: calc(17 / 375 * 100vw);
        margin-bottom: calc(75 / 375 * 100vw);
    }
}
@media screen and (min-width: 770px) {
    .sec p.en {
        margin-top:  calc(10 * 1.2px);
        font-size: calc(17 * 1.2px);
        margin-bottom: calc(75 * 1.2px);
    }
}

.sec p.message {
    font-size: 15px;
    line-height: 2;
    letter-spacing: 0.1em;
    text-align: center;
    margin-bottom: 20px;
}
@media only screen and (max-width: 769px) {
    .sec p.message {
        font-size: calc(15 / 375 * 100vw);
        margin-bottom: calc(20 / 375 * 100vw);
    }
}
@media screen and (min-width: 770px) {
    .sec p.message {
        font-size: calc(15 * 1.2px);
        margin-bottom: calc(20 * 1.2px);
    }
}


/*
 * sec-item-01
 */

.sec-item-01 {
    padding-top: 60px;
    margin-top: -30px;
}
@media only screen and (max-width: 769px) {
    .sec-item-01 {
        padding-top: calc(60 / 375 * 100vw);
        margin-top: calc(-30 / 375 * 100vw);
    }
}
@media screen and (min-width: 770px) {
    .sec-item-01 {
        padding-top: calc(60 * 1.2px);
        margin-top:  calc(-30 * 1.2px);
    }
}

/*
 * sec-item-02
 */

.sec-item-02 {
    padding-top: 80px;
    overflow: hidden;
    margin-top: -20px;
    margin-bottom: -30px;
}
@media only screen and (max-width: 769px) {
    .sec-item-02  {
        padding-top: calc(50 / 375 * 100vw);
        margin-top: calc(-20 / 375 * 100vw);
        margin-bottom: calc(-30 / 375 * 100vw);
    }
}
@media screen and (min-width: 770px) {
    .sec-item-02 {
        padding-top: calc(50 * 1.2px);
        margin-top:  calc(-20 * 1.2px);
        margin-bottom: calc(-30 * 1.2px);
    }
}

.sec-item-02 img {
    margin-left: -20px;
}
@media only screen and (max-width: 769px) {
    .sec-item-02 img  {
        margin-left: calc(-20 / 375 * 100vw);
    }
}
@media screen and (min-width: 770px) {
    .sec-item-02 img {
        margin-left: calc(-20 * 1.2px);
    }
}

/*
 * sec-item-03
 */

.sec-item-03 p.catchcopy {
    margin-top: -50px;
}
@media only screen and (max-width: 769px) {
    .sec-item-03 p.catchcopy  {
        margin-top: calc(-50 / 375 * 100vw);
    }
}
@media screen and (min-width: 770px) {
    .sec-item-03 p.catchcopy {
        margin-top: calc(-50 * 1.2px);
    }
}

.sec-item-03 p.en {
    margin-top: 10px;
}
@media only screen and (max-width: 769px) {
    .sec-item-03 p.en  {
        margin-top: calc(10 / 375 * 100vw);
    }
}
@media screen and (min-width: 770px) {
    .sec-item-03 p.en{
        margin-top: calc(10 * 1.2px);
    }
}

.sec-item-03 img {
    margin-left: 20px;
    margin-bottom: -60px;
}
@media only screen and (max-width: 769px) {
    .sec-item-03 img  {
        margin-left: calc(20 / 375 * 100vw);
        margin-bottom: calc(-60 / 375 * 100vw);
    }
}
@media screen and (min-width: 770px) {
    .sec-item-03 img {
        margin-left: calc(20 * 1.2px);
        margin-bottom: calc(-60 * 1.2px);
    }
}

/*
 * sec-gift
 */

.sec-gift {
    margin-top: -20px;
    background-image: url("../img/gift-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 40px 40px;
}
@media only screen and (max-width: 769px) {
    .sec-gift {
        margin-top: calc(-20 / 375 * 100vw);
        padding: calc(50 / 375 * 100vw) calc(40 / 375 * 100vw) calc(40 / 375 * 100vw);
    }
}
@media screen and (min-width: 770px) {
    .sec-gift {
        margin-top: calc(-20 * 1.2px);
        padding: calc(50 * 1.2px) calc(40 * 1.2px) calc(40 * 1.2px);
    }
}

.sec-gift .content {
    background: #fff;
    border-radius: 5px;
    padding: 30px;
    text-align: center;
    font-size: 15px;
}
@media only screen and (max-width: 769px) {
    .sec-gift .content {
        padding: calc(30 / 375 * 100vw);
        font-size: calc(15 / 375 * 100vw);
    }
}
@media screen and (min-width: 770px) {
    .sec-gift .content {
        padding: calc(30 * 1.2px);
        font-size: calc(15 * 1.2px);
    }
}

.sec-gift .content h2 {
    font-size: 23px;
}
@media only screen and (max-width: 769px) {
    .sec-gift .content h2 {
        font-size: calc(23 / 375 * 100vw);
    }
}
@media screen and (min-width: 770px) {
    .sec-gift .content h2 {
        font-size: calc(20 * 1.2px);
    }
}


.sec-gift .content p {
    margin-top: 20px;
    line-height: 2;
}
@media only screen and (max-width: 769px) {
    .sec-gift .content p {
        margin-top: calc(20 / 375 * 100vw);
    }
}
@media screen and (min-width: 770px) {
    .sec-gift .content p {
        margin-top: calc(20 * 1.2px);
    }
}

/*
 * フッター
 */

.sec-footer {
    padding-top: 20px;
    background: var(--accent-color);
    color: #fff;
    padding-bottom: 5px;
}
@media only screen and (max-width: 769px) {
    .sec-footer {
        padding-top: calc(20 / 375 * 100vw);
        padding-bottom: calc(5 / 375 * 100vw);
    }
}
@media screen and (min-width: 770px) {
    .sec-footer  {
        padding-top: calc(20 * 1.2px);
        padding-bottom: calc(5 * 1.2px);
    }
}

.sec-footer img {
    width: 133px;
    margin: 0 auto 20px;
    display: block;
}
@media only screen and (max-width: 769px) {
    .sec-footer img {
        width: calc(133 / 375 * 100vw);
        margin: 0 auto calc(20 / 375 * 100vw);
    }
}
@media screen and (min-width: 770px) {
    .sec-footer img {
        width: calc(133 * 1.2px);
         margin: 0 auto calc(20 * 1.2px);
    }
}

.sec-footer .copyright {
    padding-top: 5px;
    border-top: solid 1px #ECABAB;
    font-size: 10px;
    text-align: center;
    font-family: var(--accentfont);
}
@media only screen and (max-width: 769px) {
    .sec-footer .copyright {
        padding-top: calc(5 / 375 * 100vw);
        font-size: calc(10 / 375 * 100vw);
    }
}
@media screen and (min-width: 770px) {
    .sec-footer .copyright {
        padding-top: calc(5 * 1.2px);
        font-size: calc(10 * 1.2px);
    }
}