/* CSS Document */
/* -----------------------------------------
 *
 * Table of Contents:
 *
 * 0.0 - tags
 * 1.0 - Repeatable Patterns
 * 2.0 - Basic Layout
 * 3.0 - Page setting
 ----------------------------------------- */
/* -----------------------------------------

	0.0 - tags

-----------------------------------------*/
html {
    touch-action: manipulation;
}
body {
    -ms-content-zooming: none;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    color: #000;
    line-height: 1.6;
    font-family: 'Noto Sans JP', sans-serif;
    font-feature-settings: "palt";
}

.en{
    font-family: 'IBM Plex Sans', sans-serif;
}
a{
    text-decoration: none;
    color: #000;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}
a:hover img {
    opacity: 0.8;
}
a img {
    transition: opacity 0.3s ease-out;
}

hr.dash{
    border-top: 1px dashed #aaa;
}
.sp {
    display: none;
}
.pc {
    display: block;
}
@media (max-width: 750px) {
    .sp {
        display: block;
    }
    .pc {
        display: none;
    }
}
.mb-5 {margin-bottom: 5px;}
.mb-10 {margin-bottom: 10px;}
.mb-20 {margin-bottom: 20px;}
.mb-30 {margin-bottom: 30px;}
.mb-40 {margin-bottom: 40px;}
.mb-50 {margin-bottom: 50px;}
.mb-60 {margin-bottom: 60px;}
.mb-70 {margin-bottom: 70px;}
.mb-80 {margin-bottom: 80px;}
.mb-90 {margin-bottom: 90px;}
.mb-100 {margin-bottom: 100px;}
.mb-110 {margin-bottom: 110px;}
.mb-120 {margin-bottom: 120px;}
.mb-130 {margin-bottom: 130px;}
.mb-140 {margin-bottom: 140px;}
.mb-150 {margin-bottom: 150px;}
.mb-160 {margin-bottom: 160px;}
.mb-170 {margin-bottom: 170px;}
.mb-180 {margin-bottom: 180px;}
.mb-190 {margin-bottom: 190px;}
.mb-200 {margin-bottom: 200px;}
@media (max-width: 640px) {
    .mb-5 {margin-bottom:0.666666667vw;}
    .mb-10 {margin-bottom:1.333333333vw;}
    .mb-20 {margin-bottom:2.666666667vw;}
    .mb-30 {margin-bottom:4vw;}
    .mb-40 {margin-bottom:5.333333333vw;}
    .mb-50 {margin-bottom:6.666666667vw;}
    .mb-60 {margin-bottom:8vw;}
    .mb-70 {margin-bottom:9.333333333vw;}
    .mb-80 {margin-bottom:10.66666667vw;}
    .mb-90 {margin-bottom:12vw;}
    .mb-100 {margin-bottom:13.33333333vw;}
    .mb-110 {margin-bottom:14.66666667vw;}
    .mb-120 {margin-bottom:16vw;}
    .mb-130 {margin-bottom:17.33333333vw;}
    .mb-140 {margin-bottom:18.66666667vw;}
    .mb-150 {margin-bottom:20vw;}
    .mb-160 {margin-bottom:21.33333333vw;}
    .mb-170 {margin-bottom:22.66666667vw;}
    .mb-180 {margin-bottom:24vw;}
    .mb-190 {margin-bottom:25.33333333vw;}
    .mb-200 {margin-bottom:26.66666667vw;}
}

/* -----------------------------------------
wrapper
-----------------------------------------*/
#wrapper {
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    margin: auto;
    padding-bottom: 60px;
}

/* -----------------------------------------
gfooter
-----------------------------------------*/
#gfooter-wrap {
    /*position: relative;*/
    z-index: 3000;
    background: #fff;
    color: #333;
    font-size: 80%;
    padding: 20px 0;
    text-align: center;
    line-height: 1.4;
    position: absolute;
	bottom: 0;
	width: 100%;
}
#gfooter-wrap address {
    margin-top: 10px;
    font-style: normal;
}
@media screen and (max-width: 750px) {
    #gfooter-wrap {
        font-size: 2.4vw;
    }
}

/* -----------------------------------------

	2.0 - Basic Layout

-----------------------------------------*/
#contents {
    margin: 0 auto;
    line-height: 1.6;
    font-size: 26px;
    max-width: 750px;
    font-family: 'Noto Sans JP', sans-serif;
    font-style: normal;
}
@media (max-width: 750px) {
    #contents {
        font-size: 3.2vw;
    }
}
#contents img {
    width: 100%;
}
#contents .w-750 {
    max-width: 750px;
    margin: auto;
}
#contents img {
    width: 100%;
}
#contents .w-750 {
    max-width: 750px;
    margin: auto;
}
li {
    list-style-type: none;
}
.fw-b {
    font-weight: 600;
}
.ta-c {
    text-align: center;
}
.mincho {
    font-family: 'Noto Serif JP', serif;
}
.attention-footer {
    font-size: 90%;
    margin: 0 0 6em;
}
.btn-top {
    text-align: center;
    font-weight: 500;
    margin-bottom: 3em;
}

.contents-footer{
    width: 76.2666%;
    margin-right: auto;
    margin-left: auto;
    padding: 3.5em 0 0;
}

.link_home{
    position: relative;
    border: 1px solid #707070;
}
.link_home a{
    font-family: 'IBM Plex Sans', sans-serif;
    color: #707070;
    display: block;
    font-size: 24px;
    font-weight: 500;
    padding: 5px 5%;
    position: relative;
    text-align: center;
}

.link_home a:after{
    content: '';
    width: 10px;
    height: 10px;
    border: 0px;
    border-top: solid 2px #707070;
    border-right: solid 2px #707070;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: 3%;
    margin-top: -5px;
}

@media screen and (max-width: 750px) {
    .link_home a{
        padding: 2px 5%;
        font-size: 4.5vw;
    }
    .link_home a:after{
        width: 5px;
        height: 5px;
        right: 3%;
        margin-top: -2.5px;
    }
}


/* -----------------------------------------
page Layout
-----------------------------------------*/
#wrapper {
    padding-bottom: unset;
}
#contents {
	font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
}




/* Contents  */
div#contents {
	-moz-font-feature-settings: "palt";
	-webkit-font-feature-settings: "palt";
	font-feature-settings: "palt";
	font-variant-ligatures: no-common-ligatures;
	position: relative;
}
div#play-coat {
    position: relative;
	margin: 0 auto;
    padding-bottom: 13.334vw;
    max-width: 100%;
    text-align: left;
    color: #ffffff;
    background: #61187c;
    overflow: hidden;
}
div#play-coat img {
	height: auto;
	max-width: 100%;
}
div#play-coat button {
	margin: 0;
    padding: 0;
    outline: 0;
    border: 0;
    color: inherit;
}
div#play-coat *,
.modal_content * {
    box-sizing: border-box;
}
div#play-coat a {
    transition: opacity 0.3s ease-out;
}
div#play-coat a:hover {
    opacity: 0.8;
}
@media screen and (min-width: 751px) {
    div#play-coat {
        padding-bottom: 100px;
        max-width: 750px;
    }
}

a[href^="tel:"] {
    pointer-events: all;
}
@media screen and (min-width: 751px) {
    a[href^="tel:"] {
        pointer-events: none;
        cursor: default;
    }
}


/* -----------------------------------------
** index
-----------------------------------------*/

/* component */
.c-section__ttl {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 5.334vw;
    margin-bottom: 13.334vw;
}
#brand .c-section__ttl h2 {
    width: 28.4vw;
}
#brand .c-section__ttl p {
    width: calc(100% - 28.4vw - 3.334vw);
}
#influence .c-section__ttl {
    flex-direction: row-reverse;
}
#influence .c-section__ttl h2 {
    width: 30.4vw;
}
#influence .c-section__ttl p {
    width: calc(100% - 30.4vw - 3.334vw);
}
.c-section__ttl p {
    font-size: 3.2vw;
    line-height: 1.834;
    letter-spacing: 0.05em;
}
.c-brand__text {
    margin: 0 auto 5.6vw;
    width: 80%;
    font-size: 3.467vw;
    line-height: 1.77;
    letter-spacing: 0.075em;
}
.c-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 0.534vw;
    font-size: 2.934vw;
    line-height: 1.834;
    border-radius: 50vh;
    color: #fff;
}
.c-btn.buy {
    background: #000;
    width: 16vw;
    height: 5.334vw;
    letter-spacing: 0.075em;
}
.c-btn.tel {
    color: #000;
    background: #fff;
    width: 33.334vw;
    height: 6.667vw;
    letter-spacing: 0.025em;
}
.c-btn.line {
    background: #a1a3a3;
    width: 23.334vw;
    height: 6.667vw;
    letter-spacing: 0.075em;
}
@media screen and (min-width: 751px) {
    .c-section__ttl {
        padding: 0 40px;
        margin-bottom: 100px;
    }
    #brand .c-section__ttl h2 {
        width: 213px;
    }
    #brand .c-section__ttl p {
        width: calc(100% - 213px - 25px);
    }
    #influence .c-section__ttl h2 {
        width: 228px;
    }
    #influence .c-section__ttl p {
        width: calc(100% - 228px - 25px);
    }
    .c-section__ttl p {
        font-size: 24px;
    }
    .c-brand__text {
        margin: 0 auto 42px;
        max-width: 536px;
        width: 100%;
        font-size: 26px;
    }
    .c-btn {
        padding-bottom: 4px;
        font-size: 22px;
    }
    .c-btn.buy {
        width: 120px;
        height: 40px;
    }
    .c-btn.tel {
        width: 250px;
        height: 50px;
    }
    .c-btn.line {
        width: 175px;
        height: 50px;
    }
}


/* mv */
.mv {
    padding-bottom: 17.334vw;
}
.mv__text {
    position: relative;
    padding-bottom: 8.667vw;
    margin: 6vw auto 0;
    width: 80vw;
    font-size: 3.734vw;
    line-height: 1.715;
    letter-spacing: 0.075em;
}
.mv__text::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 41.334vw;
    height: 1px;
    background: #fff;
}
@media screen and (min-width: 751px) {
    .mv {
        padding-bottom: 130px;
    }
    .mv__text {
        padding-bottom: 65px;
        margin: 45px auto 0;
        width: 600px;
        font-size: 28px;
    }
    .mv__text::after {
        width: 310px;
    }
}


/* brand */
.brand {
    padding-bottom: 8vw;
}
@media screen and (min-width: 751px) {
    .brand {
        padding-bottom: 60px;
    }
}


/* influence */
.influence {
    padding-bottom: 32vw;
}
.influence .influence__list {
    display: flex;
    flex-direction: column;
    gap: 22vw 0;
    margin: 0 auto;
    width: 80%;
}
.influence .influence__list figure {
    margin-bottom: 4.667vw;
}
.influence .influence__list div.influence__content {
    width: 76.667%;
}
.influence .influence__content .name {
    margin-bottom: 4vw;
    font-size: 4vw;
    line-height: 1.834;
    letter-spacing: 0.075em;
}
.influence .influence__content .text {
    margin-bottom: 3.334vw;
    font-size: 3.467vw;
    line-height: 1.834;
    letter-spacing: 0.05em;
}    
.influence .influence__content .price {
    margin-bottom: 8vw;
    font-size: 3.2vw;
    line-height: 1.834;
    letter-spacing: 0.075em;
}    
.influence .influence__content .place {
    margin-bottom: 9.334vw;
}
.influence .influence__content .place dt {
    margin-bottom: 4vw;
    white-space: nowrap;
}
.influence .influence__content .place dt:nth-of-type(2) {
    margin-top: 6vw;
}
.influence .influence__content .place dd {
    display: flex;
    justify-content: space-between;
}
.influence .influence__content a.c-btn.buy {
    margin-bottom: 9.334vw;
}
.profile {
    position: relative;
    padding-top: 8vw;
    border-top: 1px solid #fff;
}
.profile__name {
    margin-bottom: 1.334vw;
    font-size: 4vw;
    line-height: 1.834;
    letter-spacing: 0.075em;
    font-weight: 700;
}
.profile__text {
    margin-bottom: 6vw;
    font-size: 3.467vw;
    line-height: 1.834;
    letter-spacing: 0.075em;
}
.profile__link {
    display: flex;
    align-items: flex-end;
    color: #fff;
}
.profile__link span:first-of-type {
    display: inline-block;
    width: 10vw;
}
.profile__link span:last-of-type {
    display: inline-block;
    margin: 0 0 1.867vw 2.934vw;
    width: calc(100% - 10vw - 2.934vw);
    font-size: 3.2vw;
    letter-spacing: 0.025em;
}
@media screen and (min-width: 751px) {
    .influence {
        padding-bottom: 240px;
    }
    .influence .influence__list {
        gap: 165px 0;
        width: 600px;
    }
    .influence .influence__list figure {
        margin-bottom: 35px;
    }
    .influence .influence__list div.influence__content {
        width: 465px;
    }
    .influence .influence__content .name {
        margin-bottom: 30px;
        font-size: 30px;
    }
    .influence .influence__content .text {
        margin-bottom: 25px;
        font-size: 24px;
    }
    .influence .influence__content .price {
        margin-bottom: 60px;
        font-size: 24px;
    }    
    .influence .influence__content .place {
        margin-bottom: 70px;
    }
    .influence .influence__content .place dt {
        margin-bottom: 30px;
    }
    .influence .influence__content .place dt:nth-of-type(2) {
        margin-top: 45px;
    }
    .influence .influence__content a.c-btn.buy {
        margin-bottom: 70px;
    }
    .profile {
        padding-top: 60px;
    }
    .profile__name {
        margin-bottom: 10px;
        font-size: 30px;
    }
    .profile__text {
        margin-bottom: 45px;
        font-size: 26px;
    }
    .profile__link span:first-of-type {
        width: 75px;
    }
    .profile__link span:last-of-type {
        margin: 0 0 14px 22px;
        width: calc(100% - 75px - 22px);
        font-size: 24px;
    }
}


/* catalog */
.catalog {
    padding-bottom: 17.334vw;
}
.catalog .catalog__image {
    margin: 0 auto 6.667vw;
    width: 80vw;
}
.catalog .catalog__text {
    font-size: 3.467vw;
    line-height: 1.77;
    letter-spacing: 0.075em;
    text-align: center;
}
@media screen and (min-width: 751px) {
    .catalog {
        padding-bottom: 130px;
    }
    .catalog .catalog__image {
        margin : 0 auto 50px;
        width: 600px;
    }
    .catalog .catalog__text {
        font-size: 26px;
    }
}


/* remo */
.remo {
    padding-bottom: 17.334vw;
}
.remo .remo__image {
    margin: 0 auto 6.667vw;
    width: 80vw;
}
.remo .remo__text {
    font-size: 3.467vw;
    line-height: 1.77;
    letter-spacing: 0.075em;
    text-align: center;
}
@media screen and (min-width: 751px) {
    .remo {
        padding-bottom: 130px;
    }
    .remo .remo__image {
        margin : 0 auto 50px;
        width: 600px;
    }
    .remo .remo__text {
        font-size: 26px;
    }
}


/* insta */
.insta {
    padding-bottom: 20.534vw;
}
.insta .insta__list {
    display: flex;
    justify-content: center;
    gap: 0 17.867vw;
}
.insta .insta__list li {
    width: 14.329%;
}
@media screen and (min-width: 751px) {
    .insta {
        padding-bottom: 154px;
    }
    .insta .insta__list {
        gap: 0 134px;
    }
    .insta .insta__list li {
        max-width: 96px;
        width: 100%;
    }
}


/* notice */
.notice {
}
.notice p {
    margin-inline: auto;
    width: 89.334vw;
    font-size: 3.2vw;
    line-height: 1.834;
    letter-spacing: 0.075em;
}
@media screen and (min-width: 751px) {
    .notice {
    }
    .notice p {
        width: 670px;
        font-size: 24px;
    }
}


.ta-j {
    text-align: justify;
}
.d-if {
    display: inline-flex;
}
.ml-25 {
    margin-left: 3.334vw;
}
@media screen and (min-width: 751px) {
    .ml-25 {
        margin-left: 25px;
    }
}
  


.c-slider__wrap .slick-prev {
    top: 44.3%;
    left: 6.667vw;
    z-index: 10;
}
.c-slider__wrap .slick-prev::before {
    content: "";
    font-size: 0;
    width: 0;
    height: 0;
    border-right: 2vw solid rgba(255, 255, 255, 0.8);
    border-top: 1.334vw solid transparent;
    border-bottom: 1.334vw solid transparent;
}
.c-slider__wrap .slick-next {
    top: 44.3%;
    right: 6.667vw;
    z-index: 10;
}
.c-slider__wrap .slick-next::before {
    content: "";
    font-size: 0;
    width: 0;
    height: 0;
    border-left: 2vw solid rgba(255, 255, 255, 0.8);
    border-top: 1.334vw solid transparent;
    border-bottom: 1.334vw solid transparent;
}
.c-slider__list .slick-list {
    overflow: visible;
}
.c-slider__item {
    display: flex;
    flex-direction: column;
    width: 80vw;
    margin-right: 2.667vw;
}
.c-slider__item .c-slider__content {
    padding: 5.334vw 8.667vw 0;
}
.c-slider__item .c-slider__content .name {
    margin-bottom: 4vw;
    font-size: 4vw;
    line-height: 1.834;
    letter-spacing: 0.075em;
}
.c-slider__item .c-slider__content .text {
    margin-bottom: 3.334vw;
    font-size: 3.467vw;
    line-height: 1.834;
    letter-spacing: 0.05em;
}
.c-slider__item .c-slider__content .price {
    margin-bottom: 8vw;
    font-size: 3.2vw;
    line-height: 1.834;
    letter-spacing: 0.075em;
}
.c-slider__item .c-slider__content .place {
    margin-bottom: 9.334vw;
    font-size: 3.2vw;
}
.c-slider__item .c-slider__content .place dt {
    margin-bottom: 4vw;
    white-space: nowrap;
}
.c-slider__item .c-slider__content .place dt:nth-of-type(2) {
    margin-top: 6vw;
}
.c-slider__item .c-slider__content .place dd {
    display: flex;
    justify-content: space-between;
}
#slide-3 .c-slider__content a.c-btn.buy,
#slide-7 .c-slider__content a.c-btn.buy {
    margin-bottom: 8vw;
}
#slide-8 .c-slider__content .price li:not(:last-child) {
    margin-bottom: 4vw;
}
@media screen and (min-width: 751px) {
    .c-slider__wrap .slick-prev {
        left: 55px;
    }
    .c-slider__wrap .slick-prev::before {
        border-right: 15px solid rgba(255, 255, 255, 0.8);
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
    }
    .c-slider__wrap .slick-next {
        right: 55px;
    }
    .c-slider__wrap .slick-next::before {
        border-left: 15px solid rgba(255, 255, 255, 0.8);
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
    }
    .c-slider__item {
        width: 600px;
        margin-right: 20px;
    }
    .c-slider__item .c-slider__content {
        padding: 40px 65px 0;
    }
    .c-slider__item .c-slider__content .name {
        margin-bottom: 30px;
        font-size: 30px;
    }
    .c-slider__item .c-slider__content .text {
        margin-bottom: 25px;
        font-size: 26px;
    }
    .c-slider__item .c-slider__content .price {
        margin-bottom: 60px;
        font-size: 24px;
    }
    .c-slider__item .c-slider__content .place {
        margin-bottom: 70px;
        font-size: 24px;
    }
    .c-slider__item .c-slider__content .place dt {
        margin-bottom: 30px;
    }
    .c-slider__item .c-slider__content .place dt:nth-of-type(2) {
        margin-top: 45px;
    }
    #slide-3 .c-slider__content a.c-btn.buy,
    #slide-7 .c-slider__content a.c-btn.buy {
        margin-bottom: 60px;
    }
    #slide-8 .c-slider__content .price li:not(:last-child) {
        margin-bottom: 30px;
    }
}