@charset "utf-8";

/*================================
Layout
================================*/
body {
    overflow-x: hidden;
}

html.nonScroll,
body.nonScroll {
    overflow: hidden;
}


/*================================
Header
================================*/
.h-nav {
	position: fixed;
    top: 0;
    left: 50%;
    transform: translate(-50%,0);
    z-index: 1;
    width: 100%;
    padding: 20px 25px 20px 25px;
    background: rgba(0,0,0,0);
    transition: all 0.3s ease;
}

body.notfound .h-nav {
    background: rgba(0,0,0,0.8)!important;
    position: relative!important;
}

.h-nav .inner {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

.h-nav.down{
	animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime{
  from {
    opacity: 1;
    transform: translate(-50%,0);
  }
  to {
    opacity: 0;
    transform: translate(-50%,-100px);
  }
}

.h-nav.up{
	animation: UpAnime 0.5s forwards;
    background: rgba(0,0,0,0.8)!important;
}
@keyframes UpAnime{
  from {
  	opacity: 0;
    transform: translate(-50%,-100px);
  }
  to {
  	opacity: 1;
    transform: translate(-50%,0);
  }
}

.h-nav .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.h-nav .inner .h-logo {
    width: 187px;
    font-size: 0;
    line-height: 1;
}

.h-logo .inner img {
    width: 187px;
    height: auto;
}

.h-nav nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    margin-left: 20px;
}

.h-nav nav .popup__close {
    display: none;
}

.h-nav nav a {
    transition: opacity 0.3s ease;
}

.h-nav nav a:hover {
    opacity: 0.6;
}

.h-nav nav .h-gnav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 6.5%;
    flex: 1;
}

.h-nav nav .h-gnav li a {
    font-family: 'Arial','Noto Sans JP',sans-serif;
    font-weight: normal;
    color: #FFF;
    word-break: break-all;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.6);
}

.h-nav nav .h-sns {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 10px;
    width: 84px;
    margin-left: 30px;
}

.h-nav nav .h-lang {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 1px;
    width: 98px;
    margin-left: 22px;
}

.h-nav nav .h-lang li {
    text-align: center;
}

.h-nav nav .h-lang li a {
    display: block;
    padding: 8px 5px;
    font-family: 'Noto Sans JP',sans-serif;
    font-size: 12px;
    line-height: 1;
    color: #000;
    background: #CCCCCC;
}

.h-nav nav .h-lang li.current a,
.h-nav nav .h-lang li a:hover {
    color: #FFF;
    background: #666666;
}

.h-nav nav .h-shop {
    width: 41px;
    margin-left: 30px;
}

/*================================
Contents
================================*/
/* common */
.section-header h2 {
    font-size: 45px;
    letter-spacing: 0.2em;
    font-weight: normal;
    color: #000E45;
    text-align: center;
    line-height: 1.8;
}

.section-header h2 > span {
    display: block;
    letter-spacing: 0.15em;
    font-size: 22px;
    line-height: 1.6;
}

.bg-beige {
    background: #F5F3EF;
}


/* m-mv */
.m-mv {
    background: #000;
    line-height: 1;
    margin: 0;
    padding: 0;
    vertical-align: bottom;
}

.m-mv video {
    vertical-align: bottom;
}


/* m-vision */
.m-vision {
    padding: 80px 0 0 0;
}

.m-vision .m-vision__2col {
    display: flex;
    justify-content: space-between;
    margin-top: 70px;
}

.m-vision .m-vision__2col .m-vision__2col_item.image {
    width: 55.538vw;
}

.m-vision .m-vision__2col .m-vision__2col_item.image picture {
    width: 100%;
    height: 100%;
}

.m-vision .m-vision__2col .m-vision__2col_item.image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.m-vision .m-vision__2col .m-vision__2col_item.text {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44.538vw;
    background: #000F45;
    padding: 3.538vw;
}

.m-vision .m-vision__2col .m-vision__2col_item.text h3 {
    font-size: 22px;
    font-weight: normal;
    text-align: right;
    color: #FFF;
}

.m-vision .m-vision__2col .m-vision__2col_item.text p {
    margin-top: 30px;
    font-size: 14px;
    letter-spacing: 0.2em;
    line-height: 2.2;
    text-align: right;
    color: #FFF;
}

@media screen and (min-width: 769px) {
    .en .m-vision .m-vision__2col .m-vision__2col_item.text h3 {
        text-align: left;
    }
    .en .m-vision .m-vision__2col .m-vision__2col_item.text p {
        text-align: left;
    }
}

@media screen and (max-width: 1160px) {
    .m-vision .m-vision__2col {
        display: flex;
        justify-content: space-between;
        margin-top: 70px;
        flex-direction: column-reverse;
    }
    .m-vision .m-vision__2col .m-vision__2col_item.text {
        width: 100%;
    }

    .m-vision .m-vision__2col .m-vision__2col_item.text h3,
    .m-vision .m-vision__2col .m-vision__2col_item.text p {
        text-align: center;
    }
    .m-vision .m-vision__2col .m-vision__2col_item.image {
        width: 100%;
    }
}


/* m-brands */
.m-brands {
    padding: 90px 0 200px 0;
}

.m-brands .inner {
    max-width: 1130px;
    margin: 0 auto;
}

.m-brands__caption {
    margin-top: 50px;
    padding: 0 20px;
    text-align: center;
}

.m-brands .m-brands__brands {
    margin-top: 110px;
}

.m-brands .m-brands__brands h3 {
    font-size: 26px;
    color: #000E45;
    text-align: center;
}

.m-brands .m-brands__brands .m-brands__list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 23px;
    margin-top: 50px;
}

.m-brands .m-brands__brands .m-brands__list .m-brands__list__item {
    cursor: pointer;
    width: 100%;
    max-width: 361px;
    padding: 16px 16px 0 16px;
    background: #FFF;
    transition: all 0.3s ease;
}

.m-brands .m-brands__brands .m-brands__list .m-brands__list__item:hover {
    box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.2);
    transform: scale(1.05);
}

.m-brands .m-brands__brands .m-brands__list .m-brands__list__item .thumbnail .image img {
    width: 100%;
    height: auto;
}

.m-brands .m-brands__brands .m-brands__list .m-brands__list__item .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 110px;
}

.m-brands .m-brands__brands .m-brands__list .m-brands__list__item .logo img {
    max-height: 94px;
    width: auto;
}

.m-brands .m-brands__brands.fitness .m-brands__list {
    justify-content: center;
}

.m-brands__popup__bg {
    display: none;
}

.m-brands__popup .popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 10;
    display: none;
}

.m-brands__popup .popup .popup__contents {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #FFF;
    width: 100%;
    max-width: 1248px;
    height: 100%;
    min-height: 675px;
    padding: 22px 18px;
    box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.2);
}

.m-brands__popup .popup .popup__contents .image {
    width: 57.231vw;
}

.m-brands__popup .popup .popup__contents .image img {
    width: 100%;
    height: auto;
}

.m-brands__popup .popup .popup__contents .text {
    width: 32.538vw;
    padding: 0 30px;
}

.m-brands__popup .popup .popup__contents .text .logo {
    text-align: center;
}

.m-brands__popup .popup .popup__contents .text h4 {
    position: relative;
    margin-top: 28px;
    padding-top: 28px;
    font-size: 15px;
    text-align: center;
}

.m-brands__popup .popup .popup__contents .text h4:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%,0);
    width: 90px;
    border-top: 1px solid #000;
}

.m-brands__popup .popup .popup__contents .summary {
    margin-top: 30px;
}

.m-brands__popup .popup .popup__contents .summary p {
    line-height: 1.8;
    line-break: normal;
}

.en .m-brands__popup .popup .popup__contents .summary p {
    line-height: 1.8;
    line-break: normal;
}

.m-brands__popup .popup .popup__contents .link {
    margin-top: 48px;
}

.m-brands__popup .popup .popup__contents .link ul {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
}

.m-brands__popup .popup .popup__contents .link ul li.website a {
    position: relative;
    display: inline-block;
    padding: 10px 32px;
    font-size: 13px;
    color: #000;
    border: 1px solid #000;
}

.m-brands__popup .popup .popup__contents .link ul li.website a:before {
    content:"\FF1E";
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translate(0,-50%);
    font-size: 12px;
}

.popup__close {
    display: block;
    position: absolute;
    top: 22px;
    right: 16px;
    width: 30px;
    height: 30px;
    border: 2px solid #333;
    background: #fff;
    cursor: pointer;
  }

.popup__close::before, .popup__close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3px;
    height: 27px;
    background: #000;
}

.popup__close::before {
    transform: translate(-50%,-50%) rotate(45deg);
}

.popup__close::after {
    transform: translate(-50%,-50%) rotate(-45deg);
}

.m-brands__popup__bg {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(51,51,51,0.9);
    z-index: 9;
}


/* m-about */
.m-about {
    padding: 160px 0 0 0;
}

.m-about .m-about__list {
    margin-top: 90px;
    padding: 0 20px;
}

.m-about .m-about__list dl {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 0 auto;
    max-width: 45.500em;
}

.m-about .m-about__list dt,
.m-about .m-about__list dd {
    font-size: 16px;
    line-height: 2.2;
}

.m-about .m-about__list dt {
    width: 8em;
}

.en .m-about .m-about__list dt {
    width: 13em;
}

.m-about .m-about__list dd {
    width: calc(100% - 8em);
}

.en .m-about .m-about__list dd {
    width: calc(100% - 13em);
}

.m-about .m-about__image {
    width: 100%;
    max-width: 1130px;
    margin: 90px auto 0 auto;
}

.m-about .m-about__image img {
    width: 100%;
    height: auto;
}


/* m-location */
.m-location {
    padding: 160px 0 130px 0;
}

.m-location .m-location__map {
    margin-top: 60px;
}

.m-location .m-location__map iframe {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
}

.m-location .m-location__map .route {
    margin-top: 50px;
    padding: 0 20px;
    text-align: center;
}


/* m-contact */
.m-contact {
    padding: 0 0 30px 0;
}

.m-contact .section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../img/m-contact-header_pc.jpg) no-repeat center center;
    background-size: cover;
    height: 368px;
}

.m-contact .section-header h2,
.m-contact .section-header h2 span {
    color: #FFF;
}

.m-contact .m-contact__form {
    margin: 45px 0 0 0;
    padding: 0 20px;
    text-align: center;
}

.m-contact .m-contact__form a.btn {
    display: inline-block;
    margin: 70px 0 0 0;
    padding: 30px 80px;
    font-size: 18px;
    color: #FFF;
    background: #000E45;
    text-align: center;
    transition: opacity 0.3s ease;
}

.m-contact .m-contact__form a.btn:hover {
    opacity: 0.5;
}

.m-contact .m-contact__form a.btn span {
    position: relative;
}

.m-contact .m-contact__form a.btn span:before {
    content: "\FF1E";
    position: absolute;
    top: 50%;
    left: -46px;
    transform: translate(0,-50%);
    opacity: 0.5;
}

.m-contact .m-contact__policy {
    width: 100%;
    max-width: 1130px;
    margin: 140px auto 0 auto;
    padding: 0 20px;
}

.m-contact .m-contact__policy h3 {
    font-size: 30px;
    font-weight: normal;
    text-align: center;
}

.m-contact .m-contact__policy h4 {
    margin-top: 50px;
    font-size: 18px;
    letter-spacing: 0;
}

.m-contact .m-contact__policy p {
    margin-top: 20px;
    letter-spacing: 0;
}

.m-contact .m-contact__policy p.caption {
    margin-top: 70px;
}

.m-contact .m-contact__policy a {
   color: #000F45;
   text-decoration: underline;
}

.m-contact .m-contact__policy a:hover {
    text-decoration: none;
}

.m-contact .m-contact__policy dl,
.m-contact .m-contact__policy ul {
    margin-top: 20px;
    margin-left: 2em;
    line-height: 2.2;
    font-size: 16px;
}

.m-contact .m-contact__policy ol {
    margin-top: 20px;
    margin-left: 2.5em;
    line-height: 2.2;
    font-size: 16px;
}

.m-contact .m-contact__policy ul {
    list-style-type: disc;
}
a.btn.more {
    display: block;
    width: fit-content;
    margin: 70px auto 0 auto;
    padding: 20px 100px;
    font-size: 16px;
    color: #FFF;
    background: #333333;
    text-align: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a.more:hover {
    opacity: 0.5;
}

a.more span {
    position: relative;
}

a.more span:before {
    content: "\FF0B";
    position: absolute;
    top: 50%;
    left: -36px;
    transform: translate(0,-50%);
    opacity: 0.5;
    font-size: 20px;
}

/*================================
Footer
================================*/
footer .inner {
    margin: 200px 0 0 0;
    padding: 64px 0 45px 0;
}

footer a {
    transition: opacity 0.3s ease;
}

footer a:hover {
    opacity: 0.5;
}

.f-nav .f-nav__upper nav {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 60px;
    padding: 0 20px;
}

.f-nav .f-nav__upper nav .f-gnav {
    display: flex;
    align-items: center;
    column-gap: 60px;
}

.f-nav .f-nav__upper nav .f-gnav li a {
    font-size: 14px;
    font-family: 'Arial','Noto Sans JP',sans-serif;
    color: #000F45;
}

.f-nav .f-nav__upper nav .f-lang {
    display: flex;
    align-items: center;
}

.f-nav .f-nav__upper nav .f-lang li a {
    font-size: 14px;
    font-family: 'Arial','Noto Sans JP',sans-serif;
    color: #000F45;
}

.f-nav .f-nav__upper nav .f-lang li:first-of-type:after {
    content: "|";
    display: inline-block;
    margin: 0 2px;
}

.f-nav .f-nav__lower nav .f-sns {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 17px;
    margin-top: 40px;
}

.f-logo {
    margin-top: 40px;
    text-align: center;
}

.f-copyright {
    margin-top: 17px;
    font-size: 10px;
    font-family: 'Arial','Noto Sans JP',sans-serif;
    color: #000E45;
    text-align: center;
}

/*================================
404
================================*/
.notfound .m-404 .inner {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notfound .m-404 .section-header h2 span {
    margin-top: 10px;
    font-size: 32px;
}

.notfound .m-404 .m-404-box a {
    display: block;
    margin-top: 50px;
    color: #000;
    text-align: center;
}

.notfound .m-404 .m-404-box a:hover {
    text-decoration: underline;
}

.notfound footer .inner {
    margin-top: 0;
}
