@charset "UTF-8";
/* CSS Document */
/*==================
base
====================*/
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: normal;
}
ul, ol,li {
    list-style: none;
}
a {
    text-decoration: none;
    color: #181818;
}
img {
    max-width: 100%;
    height: auto;
}
table {
    width: 100%;
    border-collapse: collapse;
}
th, td {
    text-align: left;
}
input,textarea,select {
    font-family: inherit;
    font-size: inherit;
    border: 1px solid #ccc;
    padding: 8px;
}
input[type="submit"], input[type="button"] {
    -webkit-appearance: none; 
    border-radius: 0;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    scroll-padding-top: 20px;
}

body {
    font-family: "Noto Sans JP", serif;
    font-size: 1.5rem;
    line-height: 1.7;
    background-color: #F9F9F9;
    color: #181818;
    letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}
@media (min-width: 768px) {
    a[href^="tel:"] {
        pointer-events: none;
    }
}


/*==================
common
====================*/
.-w-wrapper {
    max-width: 1240px;
    margin: 0 auto;
}

.pc {
    display: block;
}
.sp {
    display: none;
}

@media (max-width: 1400px) and (min-width: 769px) {
    .-w-wrapper {
        /* padding-left: 40px;
        padding-right: 80px; */
        margin: 0 80px;
    }
}
/* @media (max-width: 1320px) {
    .-w-wrapper {
        padding-left: 40px;
        padding-right: 40px;
    }
} */

@media screen and (max-width: 768px) {
    .-w-wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }
    .sp {
        display: block;
    }
    .pc {
        display: none;
    }
}

/*フェード*/
.fade {
  transform: translateY(50px);
  opacity: 0;
  visibility: hidden;
  transition: transform 1.6s, opacity 1.6s, visibility 1.6s;
}
.is-fadein {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

/*フェードイン*/
.add-fadein {
    opacity: 0;
}
.fadein {
    animation: fadein 1.6s ease-in-out 0s 1 normal;
}
@keyframes fadein { 
    0% {
        opacity: 0;
    } 
    100% {
        opacity: 1;
    } 
}

/*フェードズーム*/
.add-fadezoom {
    opacity: 0;
}
.fadezoom {
    animation: fadezoom 1s ease-in-out 0s 1 normal;
}
@keyframes fadezoom { 
    0% {
        opacity: 0;
        transform: scale(0.95);
    } 
    100% {
        opacity: 1;
        transform: scale(1);
    } 
}


/*--------------------------------------
header
---------------------------------------*/
header a {
    transition: 0.3s;
}
header a:hover {
    opacity: 0.6;
}

.header_wrap {
    position: relative;
}
header {
    position: relative;
    z-index: 999;
}

header .menu_wrapper {
    width: 90px;
    height: 100vh;
    background: rgba(249,249,249,.4);
    backdrop-filter: blur(50px);
    position: fixed;
    right: 0;
}
header .menu_inner {
    position: relative;
    padding: 25px 16px;
    width: 100%;
    height: 100%;
}

.openbtn {
    cursor: pointer;
    position: relative;
    margin: 56px auto 0;
    width: 50px;
    height: 50px;
    z-index: 99;
    transition: all ease-in-out 0.6s;
}
.openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 1px;
    border-radius: 2px;
    background-color: #181818;
    width: 34px;
}
.openbtn span:nth-of-type(1) {
    top: 0;
}
.openbtn span:nth-of-type(2) {
    top: 6px;
}
.openbtn span:nth-of-type(3) {
    font-family: "Inter", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: 0;
    top: 12px;
    background: none;
    height: 1em;
    width: fit-content;
}

#g-nav {
    position: fixed;
    z-index: -1;
    opacity: 0;
    top: 0;
    right: -10vw;
    width: 40vw;
    min-width: 520px;
    height: 100vh;
    background: #333333;
    transition: all 0.5s;
    pointer-events: none;
}
#g-nav ul {
    display: none;
    position: relative;
    z-index: 999;
    left: 0;
    width: 100%;
    padding-left: 9%;
    padding-right: 6%;
}
#g-nav li a {
    color: #F0EEEC;
    text-decoration: none;
    display: block;
    text-transform: uppercase;
    display: inline-block;
}
#g-nav ul.level1 {
  top: 80px;
}
#g-nav ul.level1 > li {
    border-bottom: 1px solid #8F8F8F;
}
#g-nav ul.level1 li a {
    font-family: "Inter", sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    line-height: 1;
    padding: 20px 0;
}
#g-nav ul.level2 {
    padding-bottom: 20px;
    padding-left: 0;
}
#g-nav ul.level2 li a {
    font-family: "Inter", sans-serif;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    line-height: 1;
    padding: 2px 0;
    padding-left: 25px;
    position: relative;
    margin-bottom: 0;
    border: none;
}
#g-nav ul.level2 li a::before {
    position: absolute;
    content: '';
    width: 15px;
    height: 1px;
    background: #8F8F8F;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}
#g-nav ul.level2 .level2_ttl {
    margin-bottom: 12px;
} 

#g-nav ul.level3 {
    padding-left: 0;
}
#g-nav ul.level3 li a {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    padding-left: 45px;
    position: relative;
}
#g-nav ul.level3 li a::before {
    position: absolute;
    content: '';
    width: 35px;
    height: 1px;
    background: #8F8F8F;
    top: 1em;
    left: 0;
}
#g-nav ul.level3 li a .sp380 {
    display: none;
}

/*activeのとき*/
#g-nav.panelactive ul {
    display: block;
}
#g-nav.panelactive{
    opacity: 1;
    z-index:999;
    right: 0;
    pointer-events: auto;
}

/* 閉じボタン */
.closebtn {
    position: absolute;
    top: 10px;   /* 上の位置 */
    right: 10px; /* 右端 */
    font-size: 2rem;
    cursor: pointer;
    display: none; /* 最初は非表示 */
    z-index: 1001;
}
#g-nav.panelactive .closebtn {
    display: block;
    cursor: pointer;
    width: 60px;
    height: 60px;
    z-index: 9999;
    transition: all ease-in-out 0.5s;
}
#g-nav.panelactive .closebtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 1px;
    width: 38px;
    background: #FFFFFF;
}
#g-nav.panelactive .closebtn span:nth-of-type(1) {
    top: 20px;
    transform: rotate(20deg) translate(-17px, 8px);
}
#g-nav.panelactive .closebtn span:nth-of-type(2) {
    top: 20px;
    transform: rotate(-20deg) translate(-19px, -5px);
}
#g-nav.panelactive .closebtn span:nth-of-type(3) {
    color: #FFFFFF;
    font-family: "Inter", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: 0;
    bottom: 8px;
    background: none;
    height: 1em;
    width: fit-content;
}


/*アイコン*/
header .header_menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    align-items: center;
}
header .header_menu ul li {
    height: 37px;
    margin-top: 5px;
}
header .header_menu ul li a img, header .header_menu ul li a svg {
    filter: invert(1);/*黒*/
    -o-object-fit: contain;
    object-fit: contain;
}
header .header_menu ul li:nth-child(1) a img, header .header_menu ul li:nth-child(1) a svg {
    width: 28px;
    height: 25px;
    margin-top: 2px;
}
header .header_menu ul li:nth-child(2) a img, header .header_menu ul li:nth-child(2) a svg {
    width: 26px;
    height: 25px;
    margin-top: 1px;
}
header .header_menu ul li:nth-child(3) a img, header .header_menu ul li:nth-child(3) a svg {
    width: 24px;
    height: 24px;
    margin-top: 4px;
}
/* header .header_menu ul li:nth-child(4) a img, header .header_menu ul li:nth-child(4) a svg {
    width: 28px;
    height: 23px;
    margin-top: 6px;
} */
header .header_menu ul li:nth-child(4) a img, header .header_menu ul li:nth-child(4) a svg {
    width: 24px;
    height: 19px;
    margin-top: 9px;
}

/*------share-----*/
header .header_menu ul li.share_icons_wrap {
    position: relative;
    text-align: center;
    margin-top: -5px;
    padding-right: 30px;
}
header .header_menu ul li.share_icons_wrap .share_icons {
    position: absolute;
    right: -13px;
    /* bottom: 0; */
    background: rgba(0,67,86,0);
    border-radius: 27.5px;
    width: 57px;
    padding: 15px 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-transition: all .8s;
    transition: all .8s;
}
header .header_menu ul li.share_icons_wrap .share_icons a#share_btn {
    display: block;
    width: 37px;
    height: auto;
    margin: auto;
}
header .header_menu ul li.share_icons_wrap .share_icons a#share_btn img {
    width: 25px;
    height: 27px;
/*    margin-left: 2px;*/
    margin-bottom: 10px;
}

header .header_menu ul li.share_icons_wrap .share_icons a#share_btn svg, header .header_menu ul li.share_icons_wrap .share_icons a#share_btn use {
    width: 27px;
    height: 27px;
    margin-left: 2px;
    margin-bottom: 10px;
}
header .header_menu ul li.share_icons_wrap .share_icons a+a {
    margin-top: 5px;
}
header .header_menu ul li.share_icons_wrap .share_icons a {
    width: 0;
    margin: auto;
    -webkit-transition: all .2s;
    transition: all .2s;
}
/* openクラスが付与された時 */
header .header_menu ul li.share_icons_wrap .share_icons.open {
    background: rgba(255,255,255,.2);
    -webkit-transition: all .8s;
    transition: all .8s;
}
header .header_menu ul li.share_icons_wrap .share_icons.open a#share_btn {
    display: block;
    width: 37px;
}
header .header_menu ul li.share_icons_wrap .share_icons.open a {
    width: 37px;
    -webkit-transition: all .2s;
    transition: all .2s;
}
header .header_menu ul li.share_icons_wrap .share_icons.open a img {
    width: 37px;
    height: 37px;
    -webkit-transition: all .2s;
    transition: all .2s;
}


@media (max-width: 1400px) {
    header .menu_wrapper {
        width: 80px;
    }
}
@media (max-width: 1080px) {
    #g-nav {
        right: -50%;
        width: 50%;
    }
}
@media (max-width: 768px) {
    header {
        height: 60px;
    }
    header .menu_wrapper {
        width: 100%;
        height: 60px;
        background: #262626;
        backdrop-filter: none;
    }
    header .menu_inner {
        padding: 8px 14px;
        position: relative;
    }
    header .menu_inner .header_logo {
        filter: invert(0);
        width: 45px;
        height: 45px;
        object-fit: contain;
    }

    .openbtn {
        margin: 0;
        width: 40px;
        height: 40px;
        z-index: 99;
        position: absolute;
        top: 20px;
        right: 20px;
    }
    .openbtn span {
        background: #FFFFFF;
        color: #FFFFFF;
    }

    #g-nav {
        right: -100%;
        max-width: 500px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    #g-nav ul {
        padding-left: 20px;
        padding-right: 20px;
    }
    #g-nav > ul {
        padding-bottom: 40px;
    }
    #g-nav ul.level3 li a {
        font-size: 1.3rem;
        padding-top: 7px;
        padding-bottom: 7px;
    }
    .header_menu {
        display: none;
    }
}
@media (max-width: 520px) {
    #g-nav {
        /* max-width: 100%;
        min-width: fit-content; */
        width: 100%;
        min-width: 320px;
    }
}
 

/*--------------------------------------
CTA
---------------------------------------*/
#cta {
    margin-top: 160px;
    color: #FFFFFF;
    background: url("../img/common/cta_bg.webp") no-repeat;
    background-size: cover;
    background-position: center;
}
#cta .-w-wrapper {
    padding: 80px 0 84px;   
}
#cta h2 {
    font-family: "Inter", sans-serif;
    font-size: 3.6rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-align: center;
    margin-bottom: 12px;
}
#cta .lead_text {
    font-weight: 500;
    letter-spacing: 1.8px;
    text-align: center;
}

#cta .btn_wrap {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 48px;
}

#cta .btn_wrap .cta_btn {
    width: 320px;
    height: 56px;
    border-radius: 32px;
    transition: 0.3s;
}
#cta .btn_wrap .cta_btn a {
    display: flex;
    width: 100%;
    height: 100%;
    padding: 10px 0;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
}
#cta .btn_wrap .cta_btn:hover {
    transform: scale(1.03);
}
/*コロナストア*/
#cta .btn_wrap .cta_btn.official-store {
    border: 1px solid #E0E0E0;
    background: rgba(224,224,224,.1);
    backdrop-filter: blur(20px);
}
/*楽天市場*/
#cta .btn_wrap .cta_btn.rakuten {
    background: #BF0000;
}
#cta .btn_wrap .cta_btn.rakuten a {
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 1.2px;
}
/*JRE*/
#cta .btn_wrap .cta_btn.jre-mall {
 background: #008803;
}
#cta .btn_wrap .cta_btn.jre-mall a {
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.8px;
}

@media (max-width: 980px) and (min-width: 769px) {
    .cta_btn.official-store img {
        width: 174px;
    }
    #cta .btn_wrap .cta_btn.jre-mall a {
        font-size: 1.3rem;
        gap: 3px;
    }
    .cta_btn.jre-mall img {
        width: 92px;
    }
}
@media (max-width: 768px) {
    #cta .-w-wrapper {
        padding: 60px 0;
        position: relative;
        z-index: 1;
    }
    #cta {
        margin-top: 100px;
        background-position-x: 57%;
        position: relative;
    }
    #cta::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, .25);
        backdrop-filter: blur(2px);
        top: 0;
        left: 0;
    }
    #cta .btn_wrap {
        flex-direction: column;
    }
    #cta .-w-wrapper h2 {
        font-size: 3.8rem;
        letter-spacing: 4px;
    }
}

/*--------------------------------------
footer
---------------------------------------*/
footer a {
    transition: 0.3s;
}
footer a:hover {
    opacity: 0.7;
}
.footer {
    text-align: center;
    background: #101010;
    /* min-width: 1120px; */
    padding-bottom: 10px;
}
.footer .footer_sub_menus {
    max-width: 530px;/*調整*/
    margin: auto;
}
.footer .footer_sub_menus ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: center;
    padding: 40px 0 0;
    margin-top: 0;
    gap: 8px;
}
.footer .footer_sub_menus ul li {
    font-size: 12px;
    color: #fff;
    width: calc(20% - 20px);
}
.footer .footer_sub_menus ul li a {
    color: #fff;
    display: inline-block;
}
.footer .footer_sub_menus ul li a span {
    display: block;
    margin-bottom: 10px;
    height: 40px;
    line-height: 40px;
}
.footer .footer_sub_menus ul li a span img {
    display: inline-block;
    vertical-align: bottom;
}
.footer .footer_sub_menus .footer_share {
    margin-top: 40px;
    margin-bottom: 40px;
}
.footer .footer_sub_menus .footer_share .footer_share_icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    /* min-height: 65px; */
    border: 1px solid #a5a5a5;
    border-radius: 27px;
    position: relative;
    /* width: 190px; */
    width: 150px;
    margin: 0 auto 25px;
}
.footer .footer_sub_menus .footer_share .footer_share_icons::after {
    content: '';
    position: absolute;
    background: url("../img/common/share_arrow.svg") no-repeat;
    top: 100%;
    left: 50%;
    transform: translate(-50%,-5%);
    width: 13px;
    height: 9px;
}
.footer .footer_sub_menus .footer_share .footer_share_icons a {
    margin: 8px 10px 3px;
}

.footer .footer_sub_menus .footer_share .footer_share_icons img {
    display: inline-block;
}

.footer .footer_sub_menus .footer_share p {
    width: 100%;
    font-size: 12px;
    color: #fff;
    margin-top: 5px;
}
.footer_logo a {
 display: inline-block;
}
.footer p.copy {
    color: #7E7E7E;
    font-size: 10px;
    margin: 20px auto 40px;
}

@media screen and (max-width: 768px) {
    .footer .footer_sub_menus ul {
        max-width: 92%;
        margin: 0 auto;
        gap: 20px;
    }
    .footer .footer_sub_menus ul li {
        font-size: 10px;
    }
    .footer_logo img {
        max-width: 110px;
    }
}


/*--------------------------------------
パンくず
---------------------------------------*/
#bread-list {
    padding: 18px 0;
}
#bread-list li:nth-of-type(n + 2) {
    position: relative;
}
#bread-list li:nth-of-type(n + 2)::before {
    content: '';
    height: 1px;
    width: 16px;
    background: #181818;
    position: absolute;
    top: 50%;
    left: -31px;
    transform: translateY(-45%);
}
#bread-list .-w-wrapper {
    display: flex;
    gap: 46px;
}
#bread-list li {
    font-family: "Inter", sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.2px;

}
@media (max-width: 768px) {
    #bread-list {
        padding: 12px 0;
    }
    #bread-list li:nth-of-type(n + 2)::before {
        width: 12px;
        left: -22px;
        transform: translateY(-50%);
    }
    #bread-list .-w-wrapper {
        gap: 30px;
    }
    #bread-list li {
        font-size: 1.2rem;
    }
}


/*--------------------------------------
MV normal
---------------------------------------*/
#mv_normal {
    padding: 60px 0 80px 20px;
}
#mv_normal .heading_H1 {
    line-height: 1.35;
}
#mv_normal .heading_H1 .jp {
    font-family: "Noto Sans JP", serif;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 1.6px;
}
#mv_normal .heading_H1 .en {
    font-family: "Inter", sans-serif;
    font-size: 4.6rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.5px;
}
@media (max-width: 768px) {
    #mv_normal {
        padding: 40px 0 40px 15px;
    }
    #mv_normal .heading_H1 .jp {
        font-size: 1.1rem;
        letter-spacing: 1.6px;
    }
    #mv_normal .heading_H1 .en {
        font-size: 3.6rem;
        letter-spacing: 0.5px;
    }
}

