html {
    font-size: 62.5%; /* 10px */
    /*height: -webkit-fill-available;*/
}

body {
    margin: 0;
    width:100%;
    font-size:1.6rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight:400;
    line-height: 1.8;
}

.Noto-Serif {
    font-family: 'Noto Serif JP', serif;
}
.Josefin {
    font-family: 'Josefin Sans', sans-serif;
}
.mt20 {
    margin-top:2rem !important;
}

#wrap {
    width:100%;
    max-width:750px;
    min-width:320px;
    min-height:100vh;
    margin:0 auto;
}

/*----------------------------ヘッダー----------------------------*/

.header {
    width:100%;
    max-width:750px;
    min-width:320px;
    position: fixed;
    height:60px;
    background-color: #fff;
    z-index: 9999;
}
.header-container {
    width:100%;
    display: flex;
    justify-content: space-between;
}
.header-logo {
    width:180px;
    padding:12px;
}

/*　ハンバーガーボタン　*/
.hamburger {
    display : block;
    position: relative;
    z-index : 3;
    margin-top:10px;
    width : 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
}
.hamburger span {
    display : block;
    position: absolute;
    width   : 30px;
    height  : 2px ;
    left    : 6px;
    background : #000;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition   : 0.3s ease-in-out;
    transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
    top: 10px;
}
.hamburger span:nth-child(2) {
    top: 20px;
}
.hamburger span:nth-child(3) {
    top: 30px;
}
  
/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
    top : 16px;
    left: 6px;
    background :#fff;
    -webkit-transform: rotate(-45deg);
    -moz-transform   : rotate(-45deg);
    transform        : rotate(-45deg);
}
  
.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
    top: 16px;
    background :#fff;
    -webkit-transform: rotate(45deg);
    -moz-transform   : rotate(45deg);
    transform        : rotate(45deg);
}
  
nav.globalMenuSp {
    position: fixed;
    z-index : 2;
    top  : 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    color: #fff;
    /*background: rgba(0,0,0,0.7);*/
    background-color: #000;
    text-align: center;
    width: 100%;
    max-width:750px;
    height:100%;
    padding-top:6rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity .6s ease, visibility .6s ease;
}

.nav-logo {
    width:150px;
    margin: 0 auto 3rem;
}
  
nav.globalMenuSp ul {
    margin: 0 auto;
    padding: 0;
    width: 100%;
}
  
nav.globalMenuSp ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    transition: .4s all;
}
nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
}
  
nav.globalMenuSp ul li a {
    display: block;
    color: #fff;
    padding: 1em 0;
    text-decoration :none;
}
  
/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
    opacity: 100;
    visibility: visible;
}

/*----------------------------メインイメージ----------------------------*/

.main-img {
    width:100%;
    height:100vh;
    position: relative;
}
.main-img-box {
    position: absolute;
    height:100vh;
    top:0;
    left: 0;
    overflow: hidden;
}
.main-img-box img {
    height:100%;
    object-fit: cover;
}
.main-text {
    position: absolute;
    bottom:15%;
    left:5%;
    color:#fff;
    font-size:clamp(3.2rem , 4vw , 4rem);
    font-weight: 600;
    letter-spacing: .1em;
    line-height:1.6;
    animation-name: fade;
    animation-duration: 2s;
}
@keyframes fade{
    0%{
      opacity: 0;
    }
    100%{
      opacity: 1;
    }
}

/*-----------------ABOUTとBRANDとCOMPANYとNEWS---------------------*/
.about ,.brand ,.company ,.news {
    width:100%;
    margin-top:clamp(6rem , 10vw ,5rem);
    padding-bottom:clamp(4rem , 10vw ,5rem);
}
.title {
    font-size:clamp(3rem,4vw , 4rem);
    text-align: center;
    letter-spacing: .08em;
    line-height: 1.2;
    position: relative;
}
.title span {
    font-size:clamp(1.3rem ,1.8vw , 1.5rem);
    text-align: center;
    font-weight: 400;
    letter-spacing: 0em;
}
.title::after {
    content: '';
    width: 40px;
    height: 3px;
    display: inline-block;
    background-color: #000;
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.img-wrap-a , .img-wrap-b ,.news-box {
    width:96%;
    margin-top:clamp(4.5rem , 8vw ,5.5rem);
    margin-bottom:clamp(4rem , 8vw ,5rem);
}
.img-wrap-b {
    margin-right: 0;
    margin-left: auto;
}
.news-box {
    margin-right: auto;
    margin-left: auto;
}
.about p, .brand p , .company p {
    width:94%;
    margin:0 auto;
}
.about-title-s {
    font-size:clamp(1.8rem ,2.5vw , 2.5rem);
    letter-spacing: .1em;
    font-weight: 600;
    text-align: center;
}
.about-title-l {
    font-size:clamp(2.7rem ,3vw , 3.5rem);
    letter-spacing: .1em;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem !important;
}
.btn {
    width:200px;
    margin:4rem auto;
}
.btn a {
    display: block;
    padding: 1rem 3rem;
    background-color: #000;
    color: #fff;
    font-size:1.4rem;
    text-decoration: none;
    text-align: center;
    letter-spacing: .2em;
}

/*news*/
.news-box dl {
    margin-bottom:clamp(1.5rem , 2vw ,2rem);
}
.news-box dt {
    display: inline-block;
    background-color: #000;
    color:#fff;
    letter-spacing: .1em;;
    padding : 2px 10px 1px;
    font-size:14px;
}
.news-box dd {
    margin-top:clamp(0.6rem , 1vw ,1rem);
}
.news-box dd a {
    text-decoration: none;
    color: #CC13B4;
}
.news-img {
    width:100%;
    max-width: 750px;
}
.news-img video ,.news-img img {
    width:100%;
}

/*仕切りの紫の花*/
.purple-back {
    width:100%;
    height:12rem;
    background-image: url(../images/purple-back.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size:cover;
    background-position: center;
}

/*会社概要*/
.company-info {
    width:94%;
    margin:6rem auto;
}
.company-info dt {
    background-color: #E9E9E9;
    padding:0.5rem;
}
.company-info dd {
    padding:1rem 0.5rem 2rem 0.5rem;
}

/*-----------------footer---------------------*/
footer {
    background-color: #F3DFF1;
    padding: 4.5rem 0;
}
.footer-logo {
    width:150px;
    margin: 0 auto;
}
.footer-nav {
    padding:2.2rem 0;
}
.footer-nav ul {
    width:90%;
    margin: 0 auto !important;
    text-align: center;
    list-style-type: none;
    padding:0 0 2rem !important;
    border-bottom:1px solid #A1A1A1;
}
.footer-nav ul li {
    padding:0 0 1rem !important;
}
.footer-nav ul li a {
    text-decoration: none;
    color: #000;
}
ul.privacy-trade {
    width:90%;
    margin: 0 auto !important;
    text-align: center;
}
ul.privacy-trade li {
    padding:0 0 0.5rem !important;
}
ul.privacy-trade li a {
    text-decoration: none;
    color: #000;
    font-size:1.3rem;
}
.copyright {
    width:100%;
    background-image: url(../images/purple-back.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    color:#fff;
    font-size: 1.2rem;
    text-align: center;
    letter-spacing: .1em;
    padding: 1.8rem 0;
}

/*----------------------PRODUCTSページ--------------------------*/
.sub-img {
    width:100%;
    height:55vh;
    max-height:600px;
    min-height:300px;
    position: relative;
}
.sub-img-box {
    position: absolute;
    height:100%;
    top:0;
    left: 0;
    overflow: hidden;
}
.sub-img-box img {
    height:100%;
    object-fit: cover;
    opacity: .6;
}
.sub-main-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
.logo-products {
    width:70px;
    margin:0 auto 1.2rem;
}
.products-link {
    width:90%;
    max-width:500px;
    margin: 5rem auto;
}
.products-link ul {
    list-style-type: none;
    padding :0 !important;
}
.products-link ul li {
    margin-bottom :1.5rem !important;
}
.products-link ul li a {
    display: block;
    position: relative;
    background-color: #F3DFF1;
    text-decoration: none;
    color: #000;
    padding:0.5rem 1.5rem !important;
}
.products-link ul li a::after{
    content: '';
    width: 8px;
    height: 8px;
    margin-top: -5px;
    border-top: solid 1px #000;
    border-right: solid 1px #000;
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: 1.5rem;
}
.products-box {
    width:100%;
}
.products-img-wrap {
    width:100%;
    height:100vw;
    max-height:500px;
    min-height:300px;
    overflow: hidden;
}
.products-img-wrap img {
    height:100%;
    object-fit: cover;
}
.products-box-text {
    width:94%;
    margin:3rem auto;
}
.products-box-text h4 {
    text-align: center;
    font-size:clamp(2.2rem , 3.2vw , 3.2rem);
    font-weight: 600;
    letter-spacing: .08em;
}
.sub-text {
    text-align: center;
    font-size:clamp(1.7rem , 2.8vw , 2.7rem);
    font-weight: 600;
    margin:2rem 0;
    color: #CC13B4;
    position: relative;
    padding: 1rem 0;
    line-height: 1.6;
}
.sub-text::before, .sub-text::after {
	content: '';
	width: 15px;
	height: 100%;
	position: absolute;
}
.sub-text::before {
	border-left: solid 1px #CC13B4;
	border-top: solid 1px #CC13B4;
	border-bottom: solid 1px #CC13B4;
	top: 0;
	left: 0;
}
.sub-text::after {
	border-right: solid 1px #CC13B4;
	border-top: solid 1px #CC13B4;
	border-bottom: solid 1px #CC13B4;
	top: 0;
	right: 0;
}
.products-box-text ul {
    list-style-type:decimal;
    margin:0 auto 3rem;
    padding-left:20px;
    width:100%;
    max-width:500px;
}
.products-box-text ul li {
    margin-bottom:0.8rem;
    font-size:1.5rem;
    line-height: 1.5;
}
.products-box-text ul li span {
    font-size:1.3rem;
}
.products-sub-img {
    margin:0 0 2rem;
}
.item-name {
    font-size:clamp(2rem , 3vw ,2.8rem);
    font-weight: 600;
}
.item-cate {
    font-size:1.3rem;
    line-height: 1.5;
}
.item-price {
    font-size:clamp(2.7rem , 3.5vw ,3.5rem);
    text-align: right;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom:2rem;
}
.item-price span {
    font-size:1.3rem;
}
.discount {
    font-size:clamp(2.2rem , 3vw ,3rem) !important;
    padding:0 5px;
    margin-right:5px;
    color: #fff;
    background-color: #CC13B4;
}
.color-purple {
    color:#CC13B4;
}
/*アコーディオン部分*/
.toggle {
	display: none;
}
.Label {		/*タイトル*/
	padding: 1em;
	display: block;
	color: #000;
    border-top:1px solid #000;
    border-bottom:1px solid #000;
}
.Label::before{		/*タイトル横の矢印*/
	content:"";
	width: 6px;
	height: 6px;
	border-top: 2px solid #000;
	border-right: 2px solid #000;
	-webkit-transform: rotate(45deg);
	position: absolute;
	top:calc( 50% - 3px );
	right: 20px;
	transform: rotate(135deg);
}
.Label,
.content {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
    font-size:1.3rem;
    line-height:1.5;
}
.content {		/*本文*/
	height: 0;
	margin-bottom:10px;
	padding:0 20px;
	overflow: hidden;
}
.toggle:checked + .Label + .content {	/*開閉時*/
	height: auto;
	padding:10px ;
	transition: all .1s;
}
.toggle:checked + .Label::before {
	transform: rotate(-45deg) !important;
}
.stores-btn {
    display: flex;
    justify-content: center;
    margin:3.5rem 0 7rem;
}
.balloon {
    position: relative;
    display: inline-block;
    margin: 1.5em 0;
    padding: 7px 10px 30px;
    width: 100%;
    background: #FFF;
    border-bottom: solid 3px #dddddd;
    box-sizing: border-box;
}
.balloon:before {
    content: "";
    position: absolute;
    bottom: -22px;
    left: 50%;
    margin-left: -15px;
    border: 12px solid transparent;
    border-top: 12px solid #FFF;
    z-index: 2;
}
.balloon:after {
    content: "";
    position: absolute;
    bottom: -28px;
    left: 50%;
    margin-left: -17px;
    border: 14px solid transparent;
    border-top: 14px solid #dddddd;
    z-index: 1;
}
.balloon p {
    margin: 0;
    padding: 0;
}
.no-balloon {
    display: inline-block;
    margin: 1.5em 0;
    padding: 0 10px 30px;
    width: 100%;
    box-sizing: border-box;
}
.step-name {
    font-size:clamp(2rem , 3vw ,2.8rem);
}
ul.notes {
    list-style-type: none;
    width:94%;
    margin:0 auto 5rem !important;
    font-size: 12px;
    line-height: 1.5;
}

/*---------------プライバシーポリシーと特商法-------------------*/

.other-img {
    width:100%;
    max-height:280px;
    min-height:200px;
    position: relative;
    background-color: #fff;
    padding-top:100px !important;
}
.other-title-wrap {
    position: absolute;
    height:100%;
    width:100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
}
.other-title {
    font-size:clamp(2.5rem,3vw , 3rem);
    text-align: center;
    letter-spacing: .08em;
    line-height: 1.2;
    position: relative;
}
.other-title::after {
    content: '';
    width: 40px;
    height: 3px;
    display: inline-block;
    background-color: #000;
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.other-wrap {
    width:94%;
    margin:0 auto 7rem;
}
.other-wrap ul {
    font-size:1.5rem;
    margin:4rem 0 6rem !important;
    padding-left:2.2rem !important;
}
.other-wrap ul li {
    margin-bottom:1rem !important;
}
.other-wrap ol {
    font-size:1.4rem;
    margin:1rem 0 !important;
    padding-left:2rem !important;
}
.other-wrap ol li {
    margin:0 !important;
}
.other-wrap h3 {
    font-size:clamp(1.6rem , 2.2vw ,2rem);
    border-top:1px solid #000;
    border-bottom:1px solid #000;
    padding:1rem 0;
}
.other-wrap dl {
    border-top:1px solid #ccc;
    padding: 3rem 0;
}
.other-wrap dl dt {
    font-weight: 600;
    font-size:1.8rem;
    padding: 0 0 1rem;
}
.line-b {
    border-bottom:1px solid #ccc;
}

/*-----------------メール送信完了画面---------------------*/
.thanks {
    margin:0 auto 20rem;
}
.thanks a {
    text-decoration: none;
    color: #000;
}