@charset "UTF-8";

@media screen and (min-width: 768px){
.sp_only {display: none; }
}

@media screen and (max-width: 768px){
.pc_only {display: none; }
}

/* 全体の設定
-------------------------------------*/
html {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    font-size: 62.5%;
	scroll-behavior: smooth;
}

body {
    color: #000;
    font-family: 'Kosugi Maru', sans-serif;
    background:#000000;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    margin:0;
	padding:0;
	overflow-x: hidden;
}

img {
	max-width: 1000px;
	height: auto;/*高さ自動*/
}

video{
	width: 100%;
}

a {
	text-decoration: none;
	color: #940c83;
}

.member_video{
	width: 60%;
    margin: 0 auto;
    padding: 4% 0;
}

/* 画面外にいる状態 */
.fadein {
	opacity : 0.1;
	transform : translate(0, 50px);
	transition : all 1000ms;
	}

/* 画面内に入った状態 */
.fadein.scrollin {
	opacity : 1;
	transform : translate(0, 0);
	}

.btn {
	max-width: 385px;
    margin: 0 auto;
	background: #940c83;
    border: solid 2px #940c83;
	border-radius: 55px;
    transition: .4s;
}

.btn a {
	display:block;
	text-align: center;
	font-size: 20px;
	color: #fff;
    text-decoration-line: none;
    padding: 16px 60px;
	position:relative;
}

.btn a::after {
	position: absolute;
    top: 48%;
    right: 26px;
    content: '';
    margin-top: -6px;
    border-top: solid 4px #fff;
    width: 13px;
    height: 13px;
    border-right: solid 4px #fff;
    transform: rotate(45deg);
    border-left-color: #940c83;
    transition: all .3s;
}

.btn:hover {
	transition: all .3s;
	opacity: 0.8;
}

@media only screen and (max-width: 768px){
.btn a {
    font-size: 18px;
	padding: 12px;
}
	
.member_video{
	width: 92%;
    margin: 0 auto;
    padding-bottom: 8%;
}
}
/*ヘッダー
-------------------------------------*/
@media only screen and (min-width: 768px){
header {
    width: 100%;
    height: 80px;
    position: fixed;
    top: 0px;
    left: 0px;
    border-bottom: 1px solid #e3e3e3;
    background: #fff;
    z-index: 10;
}

header .header_inner {
    width: 87.5%;
    height: 80px;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
}

header h1 {
    width: 151px;
}

header h1 img {
    vertical-align: top;
    width: 100%;
}

header ul {
  list-style-type: none;
}

header li {
	float: left;
	padding: 10px
}
nav.globalMenuSp {
    display: none;
}
}

@media only screen and (max-width: 768px){
header {
    width: 100%;
    height: 60px;
    position: fixed;
    top: 0px;
    left: 0px;
    border-bottom: 1px solid #e3e3e3;
    background: #fff;
    z-index: 10;
}

header h1 {
    position: fixed;
    z-index: 10;
}
.header_inner img{
	margin: 7px 16px;
    width: 130px;
}

/*　ハンバーガーボタン　*/
.hamburger {
	position: fixed;
    right: 0px;
    z-index: 10;
    width: 60px;
    height: 60px;
	top: 0px;
}

.hamburger span {
	display: block;
	position: absolute;
	width: 28px;
	height : 2px ;
	left: 16px;
	background : #940c83;
	box-shadow: 0px 0px 2.6px 1.2px #ffffff;
	-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: 20px;
}
	
.hamburger span:nth-child(2) {
  top: 30px;
}
	
.hamburger span:nth-child(3) {
  top: 40px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
	top : 30px;
	left: 15px;
	box-shadow: none;
	-webkit-transform: rotate(-45deg);
	-moz-transform   : rotate(-45deg);
	transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
	top: 30px;
	box-shadow: none;
	-webkit-transform: rotate(45deg);
	-moz-transform   : rotate(45deg);
	transform        : rotate(45deg);
}

nav.globalMenuSp {
	z-index : 2;
	top  : 59px;
	left : 0;
	color: #fff;
	background: #fff;
	text-align: center;
	display: flex;
	position: fixed;
    justify-content: center;
    flex-direction: column;
	width: 100%;
	height: 60px;
	transform: translateY(-200px);
	transition: all 0.5s 0s ease;
}

nav.globalMenuSp ul {
	display: flex;
	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 a {
	font-size: 1.6rem;
	display: block;
	color: #940c83;
	padding: 0.4em 0;
	text-decoration :none;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
	transform: translateY(0);
    position: fixed;
}
}
/*メイン
-------------------------------------*/
.main{
    background-image: url(../img/bg_01.png);
	background-repeat: no-repeat;
	background-size:100%;
    padding: 5% 0 0;
    text-align: center;
}

.main_img{
    margin: 94px auto 60px;
    max-width: 1000px;
}

.main_img img{
	padding: 0 3%;
	width: 100%
}

.main p span{
	font-size: 42px;
	display: block;
    margin-bottom: 10px;
}

.main .owl-carousel {
	position:relative;
	clear: left;
}

.main .owl-carousel .list {
	display: inline-block;
	margin: 2px 6px;
	width: 100%;
}

.main .owl-carousel .list img{
	width:100%;
}

@media screen and (min-width: 768px){
.pc_main{
	background-color: #000;
	border-radius: 6px;
	width: 910px;
	margin: 30px auto;
	height: 370px;
}

.main p{
    color: #fff;
	font-size: 24px;
	padding: 6.8% 0px 0px 20px;
    height: 370px;
}

.main_video{
	max-width: 200px;
	float: right;
	padding: 20px;
}
}

@media only screen and (max-width: 980px){
.main{
	margin: 60px 0 0;
}
	
.main_category{
	max-width: 1000px;
    margin: 0 auto;
	width: 75%;
	display: flex;
	flex-wrap: wrap;
}
	
.main_img{
	order: 0;
	float: none;
	margin: 0 auto;
	padding-top:26px
}
	
.main p{
	font-size: 20px;
}
	
.main p span{
	font-size: 30px;
	display: block;
    margin-bottom: 10px;
}
}

@media only screen and (max-width: 768px){
.main{
	margin: 60px 0 0;
}

.main_img{
	padding: 6% 0 16% 0;
}

.main_category{
	width: 100%;
}
	
.main_video{
	margin-top: 20px;
	order: 2;
	float: none;
	padding-right: 6%;
    max-width: 40%;
}
	
.main p{
    max-width: 50%;
	background-color: rgba(0,0,0,0.75);
    color: #fff;
	font-size: 3vw;
	border-radius: 6px;
	margin: 20px auto;
	padding: 20px;
	width: 90%;
	text-align: left;
}

.main p span{
	font-size: 4.6vw;
}
	
.main .owl-carousel {
	padding-top: 6%;
}

}
/*商品紹介
-------------------------------------*/
.introduction{
	background-image: url(../img/bg_02_pc.png);
	background-size:100%;
	background-color: #000000;
	background-repeat: no-repeat;
	padding: 80px 0 0;
}

.introduction h2 {
	color: #ffffff;
    font-size: 20px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    text-align: center;
    padding: 70px 0 37px;
    background: url(../img/taitle_bg.png) no-repeat center center;
    font-weight: 800;
    max-width: 400px;
}

.introduction h2::before {
    position: absolute;
    top: 60%;
    right: auto;
    bottom: auto;
    left: -300px;
    background-color: #ffffff;
    content: '';
    height: 4px;
    width: 400px;
}

.introduction h2::after{
	position: absolute;
    top: 60%;
    right: -300px;
    bottom: auto;
    left: auto;
    background-color: #ffffff;
    content: '';
    height: 4px;
    width: 400px;
}

.introduction_text{
    color: #fff;
	font-size: 17px;
	padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
	text-shadow: -1px 1px 0 #000, -1px -1px 0 #000, -1px 1px 0 #000, 1px -1px 0 #000, 0px 1px 0 #000, 0px -1px 0 #000, -1px 0 0 #000, 1px 0 0 #000;
}

.introduction_text span{
	display: inline-block;
	font-size: 30px;
	margin-bottom: 20px;
	border-bottom: solid 1px #ffffff;
	line-height: 1.2;
}

.introduction_img{
	text-align : center;
	margin: 2% 0;
}

.introduction_img img{
	padding: 0 3%;
    width: 100%;
}

.introduction_btn{
	padding: 0 20px 80px;
}

.special {
    margin: 0 auto;
	max-width: 960px;
	width: 90%;
	border: 2px solid #d8b956;
    background: #000;
}

.special_title {
    font-size: 22px;
    background: #d8b956;
    padding: 2px;
    text-align: center;
    color: #fff;
    font-weight: bold;
    letter-spacing: 4px;
}
.special_text {
	color: #fff;
    padding: 15px 20px;
    margin: 0;
}

.special_text span {
	color: #d8b956;
}

@media only screen and (max-width: 768px){
.introduction{
	background-image: url(../img/bg_02_sp.png);
	background-repeat: no-repeat;
}	
	
.introduction h2::before {
	height: 3px;
    left: 40px;
    width: 74px;
}

.introduction h2::after{
	height: 3px;
    right: 40px;
    width: 74px;
}

.introduction_text{
    color: #fff;
	font-size: 13px;
	padding: 0 20px 20px;
}

.introduction_text span{
	display: inline-block;
	font-size: 24px;
	text-align: center;
}

.special {
	margin: 0px auto 24px;
}

.special_title {
    font-size: 18px;
}

.special_text {
	padding: 10px;
    font-size: 13px;
}

}

/*確認方法
-------------------------------------*/
.confirm{
	background: #f4f4f4;
	background-size:100%;
	background-color: #1a1a1a;
	padding: 80px 0 0;
}

.confirm h2 {
	color: #ffffff;
    font-size: 20px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    text-align: center;
    padding: 70px 0 37px;
    background: url(../img/taitle_bg.png) no-repeat center center;
    font-weight: 800;
    max-width: 400px;
}

.confirm h2::before {
    position: absolute;
    top: 60%;
    right: auto;
    bottom: auto;
    left: -300px;
    background-color: #ffffff;
    content: '';
    height: 4px;
    width: 400px;
}

.confirm h2::after{
	position: absolute;
    top: 60%;
    right: -300px;
    bottom: auto;
    left: auto;
    background-color: #ffffff;
    content: '';
    height: 4px;
    width: 400px;
}

.confirm_text {
  max-width: 550px;
  margin: 0 auto;
	color: #fff;
	font-size: 17px!important;
	padding-bottom: 80px;
}

.confirm .owl-carousel {
	position:relative;
}

.confirm .owl-carousel .list {
	display: inline-block;
	margin: 2px 6px;
	width: 100%;
}

.confirm .owl-carousel .list img{
	width:100%;
}

.confirm_btn{
	padding: 40px 20px;
}

@media only screen and (max-width: 768px){
.confirm  h2::before {
	height: 3px;
    left: 40px;
    width: 74px;
}

.confirm  h2::after{
	height: 3px;
    right: 40px;
    width: 74px;
}
	
.confirm_text {
	font-size: 13px!important;
	padding: 0 20px 80px;
}
}
/*注意事項
-------------------------------------*/
.caution{
	background: #000000;
	background-size:100%;
	padding: 80px 0 0;
}

.caution h2 {
	color: #ffffff;
    font-size: 20px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    text-align: center;
    padding: 70px 0 37px;
    background: url(../img/taitle_bg.png) no-repeat center center;
    font-weight: 800;
    max-width: 400px;
}

.caution h2::before {
    position: absolute;
    top: 60%;
    right: auto;
    bottom: auto;
    left: -300px;
    background-color: #ffffff;
    content: '';
    height: 4px;
    width: 400px;
}

.caution h2::after{
	position: absolute;
    top: 60%;
    right: -300px;
    bottom: auto;
    left: auto;
    background-color: #ffffff;
    content: '';
    height: 4px;
    width: 400px;
}

.caution h3 {
	font-size: 20px;
    color: #fff;
    text-align: center;
    padding: 33px 0;
}

.caution_text{
    background-color: #ffffff;
    color: #000000;
    font-size: 16px;
    border-radius: 6px;
    margin: 30px auto;
    padding: 22px;
    max-width: 1000px;
    width: 95%;
}

.caution_text span{
	font-size: 20px;
	color: #940c83;
	display: block;
	text-align: center;
}

@media only screen and (max-width: 768px){
.caution  h2::before {
	height: 3px;
    left: 40px;
    width: 74px;
}

.caution  h2::after{
	height: 3px;
    right: 40px;
    width: 74px;
}
}

/*FAQ
-------------------------------------*/
.faq{
	background: #000000;
	background-size:100%;
	padding: 80px 0 100px;
}

.faq h2 {
	color: #ffffff;
    font-size: 20px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    text-align: center;
    padding: 70px 0 37px;
    background: url(../img/taitle_bg.png) no-repeat center center;
    font-weight: 800;
    max-width: 400px;
}

.faq h2::before {
    position: absolute;
    top: 60%;
    right: auto;
    bottom: auto;
    left: -300px;
    background-color: #ffffff;
    content: '';
    height: 4px;
    width: 400px;
}

.faq h2::after{
	position: absolute;
    top: 60%;
    right: -300px;
    bottom: auto;
    left: auto;
    background-color: #ffffff;
    content: '';
    height: 4px;
    width: 400px;
}

.acd-check{
    display: none;
}

.acd-label{
	max-width: 1000px;
	width: 95%;
    background: #fff;
	border-radius: 6px;
    display: block;
    margin: 2px auto;
    padding: 10px 46px 10px 8px;
    position: relative;
}

.acd-label:after{
    font-family: 'Font Awesome 5 Free';
	content: '\f107';
    font-weight: 900;
    color: #940c83;
    position: absolute;
	padding: 10px 20px;
	right: 0;
    top: 0px;
}

.acd-content{
	max-width: 1000px;
	width: 95%;
    margin: 2px auto;
    display: block;
    height: 0;
    opacity: 0;
    padding: 0 10px;
    transition: .6s;
    visibility: hidden;
}

.acd-label span{
	font-weight: bold;
    padding: 0 9px;
	color: #940c83;
}

.acd-content span{
	color: #940c83;
	font-weight: bold;
    padding: 0 9px;
}

.acd-check:checked + .acd-label:after{
    content: '\f106';
}

.acd-check:checked + .acd-label + .acd-content{
	max-width: 1000px;
	width: 95%;
	border-radius: 6px;
	background: #f5f5f5;
    height: auto;
    opacity: 1;
	margin: 0 auto;
    padding: 10px;
    visibility: visible;
}

@media only screen and (max-width: 768px){
.faq  h2::before {
	height: 3px;
    left: 40px;
    width: 74px;
}

.faq  h2::after{
	height: 3px;
    right: 40px;
    width: 74px;
}
}

/*フッター
-------------------------------------*/
footer {
	width: 100%;
	border-top: 1px solid #e3e3e3;
	background:#fff;
	padding: 12.5vw 0 14.84vw 0;
	z-index: 15;
}

footer .list_website {
    margin-bottom: 7.81vw;
}

footer .list_website ul {
    display: flex;
    justify-content: center;
	list-style-type: none;
}

footer .list_website ul li:nth-child(1) {
    margin-right: 4.69vw;
}

footer .list_website ul li {
    width: 35.94vw;
    height: 14.06vw;
    position: relative;
}

footer .list_website ul li a {
    width: 35.94vw;
    height: 14.06vw;
    position: relative;
    display: block;
}

footer .list_website ul li:nth-child(1) span {
    background-image: url(../img/bnr_officialsite.png);
	background-size: 100%;
}

footer .list_website ul li:nth-child(2) span {
    background-image: url(../img/bnr_officialgoods_02.png);
	background-size: 100%;
}

footer .list_website ul li a span {
    display: block;
    text-indent: -10000px;
	position: absolute;
    width: 100%;
    height: 100%;
}

footer nav {
    margin-bottom: 7.81vw;
}

footer nav .nav_inner {
    text-align: center;
}

footer nav .nav_inner p {
    display: inline-block;
    line-height: 1.8;
}

footer nav .nav_inner p a {
    color: #000;
    font-size: 2.19vw;
}

footer nav .nav_inner p:after {
    content: "|";
    font-size: 12px;
    padding: 0 0.5em;
}

footer nav .nav_inner p:last-child:after {
    content: none;
}

footer .copy {
    text-align: center;
}

footer .copy p {
    font-size: 2.19vw;
}

@media (min-width: 640px){
footer .list_website {
    margin-bottom: 50px;
}

footer .list_website ul li {
    width: 230px;
    height: 90px;
}
	
footer .list_website ul li a {
    width: 230px;
    height: 90px;
	display: block;
}
	
footer .list_website ul li:nth-child(1) {
    margin-right: 30px;
}
}

@media (min-width: 864px){
footer {
    padding: 60px 0 60px 0;
}

footer nav {
    margin-bottom: 24px;
}
	
footer nav .nav_inner p a {
    font-size: 12px;
}

footer nav .nav_inner br.br1 {
    display: none;
}

footer nav .nav_inner p:nth-of-type(3):after, footer nav .nav_inner p:nth-of-type(6):after {
    display: inline-block;
}

footer .copy p {
    font-size: 12px;
}
}
@media (max-width: 864px){
footer nav .nav_inner p:nth-child(3):after {
    content: none;
}
}
/*TOPへ戻る
-------------------------------------*/
.header-box {
	display: none;
}

.pagetop{
  width: 9.38vw;
  height: 9.38vw;
  position: fixed;
  bottom: 3.13vw;
  right: 3.13vw;
  z-index: 3;
}

.pagetop a {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  display: block;
  border: 1px solid #e3e3e3;
  background: #fff;
  border-radius: 50%;
}

.pagetop:hover {
  transition: all .3s;
  opacity: 0.8;
}

.pagetop a span {
  width: 2.34vw;
  height: 2.27vw;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -0.66vw 0 0 -1.17vw;
}

.pagetop a i {
  width: 2.34vw;
  height: 2.27vw;
  display: block;
  background: url(../img/top.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-size: contain;
}

@media screen and (min-width: 640px){
.pagetop {
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
}

.pagetop a span{
    margin: -4px 0 0 -7.5px;
}

.pagetop a i {
    width: 15px;
    height: 8px;
}
}
