@charset "UTF-8";
@import "reset.css";
/* CSS Document */

:root {
	--main-color: #7600FF;
	--green: #A0B122;
	--pink: #FF0093;

	--jp-font: "Zen Kaku Gothic New", sans-serif;
	--en-font: "Outfit", sans-serif;
	--en-font2: "Bruno Ace SC", sans-serif;;
}


/*************************************

   common

**************************************/
body{
	font-family: var(--en-font);
	font-weight: 400;
	font-style: normal;
	margin: 0;
	padding: 0;
	position: relative;
}
p,span,li,dt,dd{
	line-height: 2em;
	font-size: 1em
}

a{
	text-decoration: none;
	word-break: break-all;
	transition: all 0.3s ease-out;
}
picture,
img{max-width: 100%}
.obc{
	width: 100%;
	height: 100%;
	object-fit: cover;
	vertical-align: bottom
}
.wrap{
	width: 95%;
	max-width: 1800px;
	margin: 0 auto
}
.wrap2{
	width: 95%;
	max-width: 1600px;
	margin: 0 auto
}
.flex{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between
}
@media screen and (max-width:667px){
	.sp-none{display: none!important}
}
@media screen and (min-width:668px){
	.sp-size{display: none!important}
}
@media (min-width:1000px){
	p,span,li,dt,dd{font-size: 16px}
}

.gradation{
	background: #6919A3;
	background: -webkit-linear-gradient(58deg, rgba(105, 25, 163, 1) 0%, rgba(57, 7, 51, 1) 99%);
	background: -moz-linear-gradient(58deg, rgba(105, 25, 163, 1) 0%, rgba(57, 7, 51, 1) 99%);
	background: linear-gradient(58deg, rgba(105, 25, 163, 1) 0%, rgba(57, 7, 51, 1) 99%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#6919A3", endColorstr="#390733", GradientType=0);
}

/*-------------------------

  フォント

-------------------------*/

.jpfont{
	font-family: var(--jp-font)
}
.enfont {
  font-family: var(--en-font);
}

.enfont2 {
  font-family: var(--en-font2);
}

/*-------------------------

  テーブル (dl)

-------------------------*/

.table_wrap dl{
	border-bottom: solid 1px #ccc;
}
.table_wrap dt,
.table_wrap dd{
	width: 100%;
	margin: 0;
	padding: .5em
}
.table_wrap dt{
	font-weight: bold;
}
.table_wrap dd a{
	color:#000
}


@media screen and (min-width:768px){
	.table_wrap dt{
		width: 20%;
		text-align: center;
	}
	.table_wrap dd{
		width: 75%}
	
}

/*-------------------------

  タイトル

-------------------------*/


.logo_name{
	font-weight: 900;
	letter-spacing: 2.5px;
	color: #000;
}

.title_en span{
	font-size: 4em;
	display: block;
	line-height: 1;
	margin-bottom: 10px
}
.title_en h2{
	font-weight: bold;
	font-size: 1.4em;
}

.title_bold{
	font-weight: 900;
	line-height: 1.6;
}

.read_text{
	font-size: 1em;
	font-weight: 700;
}

@media (min-width: 768px){
	.title_en span{
		font-size: 5em;
	}
}
@media (min-width: 1400px){
	.title_en span{
		font-size: 8em;
	}
	.read_text{
		font-size: 1.3em
	}
}

/*-------------------------

  ボタン

-------------------------*/
.btn_wrap{
	margin: 2em auto;
}
.btn1{
	width: 100%;
	min-width:250px;
	max-width: 300px;
	border-radius: 5em;
	letter-spacing: .5px;
	overflow: hidden;
	display: inline-block;
	text-align: center;
	text-decoration: none;
	padding: 1.2em 1em;
	outline: none;
	color: #fff;
	background-color: var(--main-color);
	position: relative;
	transition: color .5s ease;
	cursor: pointer;
}

.btn1 span{
	position: relative;
	color: inherit;
}
.btn1 span i{
	margin-right: 10px
}
.btn_left_slide::before {
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: #ff9c48;
	transform: scaleX(0);
	transform-origin: right;
	transition: all .5s ease;
	transition-property: transform;
	border-radius: 2.5em;
}
.btn_left_slide:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn_center_slide {
  z-index: 2;
}
.btn_center_slide:after {
	content: "";
	border-radius: 50%;
	display: block;
	margin: auto;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	width: 100%;
	padding-top: 100%;
	height: 0;
	z-index: -1;
	transform: translateY(-50%) scale(0.1);
	transition: opacity .6s, transform .4s ease-in-out;
	
}


.btn_center_slide:hover {
  color: #fff;
}
.btn_center_slide:hover::after {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
  transition-delay: 0s;
  transition: opacity .6s, transform .4s ease-in-out;
}




.btn_next:after{
	content: '\ea50';
	display: inline-block;
	font-family: icomoon;
    color: inherit;
	font-size: 20px;
    text-align: center;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%)rotate(90deg);
	transition: .5s;
	right: 8%;
}
.btn_next:hover:after{
	right: 5%
}



/*************************************

   header

**************************************/

header{
	width: 100%;
	height: 65px;
	z-index: 1000;
	top: 0;
	left: 0;
	margin: 0 auto;
	background: #fff;
	position: fixed;
	display: flex;
	align-items: center;
	border-bottom: solid 1px #333
}

.header_logo a{
	display: block;
	width: 100%;
	height: 100%;
	font-size: 1.5em;
	
}
.global-nav__item > a{
	color: #000;
	letter-spacing: 1px;
	font-weight: bold;
	text-decoration: none;
}


/*-------------------------

  sp nav (~1099px)

-------------------------*/

@media (max-width:999px){
	.header_logo{
		position: absolute;
		top: 50%;
		left: 3%;
		transform: translateY(-50%);
	}
	
	.global-nav{
  		position: fixed;
  		right: -500px;
  		top: 0;
  		width: 100%; 
		max-width: 500px;
  		height: 100vh;
  		background-color: #fff;
  		transition: all 1s;
  		z-index: 2000;
  		overflow-y: auto;
	}
	.global-nav__list {
  		padding: 3em 1em 2em;
  		list-style: none;
		overflow-y: auto;
	}
	.global-nav__item{
		width: 100%;
		padding:1em;
		border-bottom: 1px solid #000;
		font-size: 1em
	}
	.global-nav__item > a {
		line-height: 1.3em;
	}
	/* ハンバーガーメニュー */
	.hamburger{
  		cursor: pointer;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        position: absolute;
        top: 50%;
		right: 0;
        width: 55px;
        height: 100%;
        transform: translate(0, -50%);
	}
	.hamburger__line {
  		position: absolute;
  		left: 50%;
		transform: translate(-50%,0);
  		width: 25px;
  		height: 1px;
    	background-color: #000;
  		transition: all .6s;
	}
	.hamburger__line--1 {
		top: calc(50% - 10px);
	}
	.hamburger__line--2 {
		top: 50%;
	}
	.hamburger__line--3 {
		top: calc(50% + 10px);
	}
	.black-bg {
  		position: fixed;
  		left: 0;
  		top: 0;
  		width: 100vw;
  		height: 100vh;
  		z-index: 100;
  		background-color: #252525;
  		opacity: 0;
  		visibility: hidden;
  		transition: all .6s;
  		cursor: pointer;
	}
	/* nav-open */
	.nav-open .global-nav {right: 0;}
	.nav-open .black-bg {
 		opacity: .7;
  		visibility: visible;
	}
	.nav-open .hamburger{
		background: none;
		box-shadow: none;
		z-index: 9999;
		right: .5em;
	}
	.nav-open .hamburger__line{
		top: 50%;
		background: #000;
	}
	.nav-open .hamburger__line--1 {
  		transform: rotate(-45deg);
	}
	.nav-open .hamburger__line--2 {
  		width: 0;
  		left: 50%;
	}
	.nav-open .hamburger__line--3 {
  		transform: rotate(45deg);
	}
	
	/* nav_btn */
	
	.nav_btn{
		border-bottom: none;
		padding: 1em 1em 0!important;
		display: flex;
	}
	.nav_btn a{
		margin: 0 auto;
	}
}

/*-------------------------

  pc nav (1200px~)

-------------------------*/

@media (min-width:1000px){
	header{
		height: 75px;
	}
	header > div.wrap{
		align-items: center;
		height: 100%;
	}
	.global-nav{
		display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        align-items: center;
	}
	.global-nav__list{
		display: flex;
		flex-wrap: wrap;
		align-items: center
	}
	.global-nav__item{
		margin-right: 1em
	}
	#contact_btn{
		margin-right: 0
	}
	.global-nav__item > a{
		display: inline-block;
		text-align: center;
		text-decoration: none;
		outline: none;
		border-bottom: 2px;
		position: relative;
		padding: 0 .5em
	}
	.is-current a{
		color: var(--main-color)
	}
	.global-nav__item > a:hover{
		color:#fff;
		background: var(--main-color);
	}
	
	.hamburger,
	.black-bg,
	.spnav{display: none}
	
}

@media screen and (min-width:1200px){
	.global-nav__item{
		margin-right: 1.5em
	}
}


/*-------------------------

  アコーディオンメニュー

-------------------------*/
.acc_click{
	position: relative;
    cursor: pointer;
	transition: all .5s ease;
}
/*アコーディオンで現れるエリア*/
.box{
    display: none;/*はじめは非表示*/
   
}
.box a{
	text-decoration: none;
	padding: .3em 0;
	display: block;
	font-size: 15px;
	color: #000
}

@media (max-width:999px){
	.acc_click{
		display: block;
		width: 100%;
	}
	/*アイコンの＋×*/
	.acc_click::before,
	.acc_click::after{
		position: absolute;
		content:'';
		width: 15px;
		height: 1px;
		background-color: #000;
	}
	.acc_click::before{
		top:48%;
		right: 15px;
		transform: rotate(0deg);
	}
	.acc_click::after{    
		top:48%;
		right: 15px;
		transform: rotate(90deg);
	}
	/*　closeというクラスがついたら形状変化　*/
	.acc_click.close::before{
		transform: rotate(45deg);
	}
	.acc_click.close::after{
		transform: rotate(-45deg);
	}
	.box{padding: .5em .5em 0}
	.box li{margin: .3em 0}
	.box li a:before{
		content: '-';
		color: var(--main-color);
		display: inline-block;
		margin-right: .5em
	}
}

@media (min-width:1000px){
	.dropdown{position: relative}
	.box{
		position: absolute;
		padding: 1em 1.2em;
        background: var(--main-color);
		width: 200px;
		top: 54px;
		left: 50%;
		transform: translate(-50% , 0);
	}
	.box li{
		position: relative;
		display: block;
		width: 100%;
	}
	.box li a{
		color: #fff;
		width: 100%
	}
	.box li:after{
		content: "";
		position: absolute;
		left: 0;
		bottom: 0;
		width: 0%;
		height: 1px;
		background-color: var(--main-color);
		transition: width 0.3s ease;
	}
	.box li:hover:after{
		width: 100%;
	}
	.box li:hover a{
		transform: translateX(5px);
		opacity: .9
	}
}



/***********************************

  footer

***********************************/


/*-------------------------

  ft_fix

-------------------------*/

@media screen and (max-width:667px){
	#ft_fix{
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 50px;
		z-index: 800;
	}
	#ft_fix > *{
		width: 50%;
		text-align: center;
	}
	#ft_fix a{
		color: #fff;
		display: block;
		padding: .5em
	}
	#ft_fix i{
		margin-right: .3em
	}
	.fix_support{
		background: var(--orange)
	}
	.fix_contact{
		background: var(--main-color);
	}
}
@media screen and (min-width:668px){
	#ft_fix{display: none}
}

/*-------------------------

  footer

-------------------------*/
footer{
	position: relative;
	padding: 4em 0;
}

footer .logo_name{
	font-size: 2em;
	margin-bottom: .5em;
}
#copy{
	width: 100%;
}
#copy p{
	font-size: 12px;
}


/*************************************

  contact_area

**************************************/
#contact_area{
	padding: 3em 0;
	background: #FA8600;
	background: -webkit-linear-gradient(90deg, rgba(250, 134, 0, 1) 0%, rgba(242, 213, 90, 1) 99%);
	background: -moz-linear-gradient(90deg, rgba(250, 134, 0, 1) 0%, rgba(242, 213, 90, 1) 99%);
	background: linear-gradient(90deg, rgba(250, 134, 0, 1) 0%, rgba(242, 213, 90, 1) 99%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FA8600", endColorstr="#F2D55A", GradientType=1);
	border-radius: 1em;
}

#contact_area *{
	color: #fff;
}
#contact_area h2{
	font-size: 3.5em;
	margin-bottom: 10px;
	letter-spacing: 1px;
}
#contact_area p{
	margin-bottom: 3em;
	letter-spacing: 1px;
}
#contact_area div.flex{
	justify-content: center;
}
#contact_area div.flex > a{
	margin: .5em auto;
	font-family: var(--en-font)
}
#email_btn,
#insta_btn{
	transition: .5s
}

#email_btn{
	background: #000;
}
#email_btn:after{
	background: var(--main-color);
}
#insta_btn{
	background: #BC058B
}
#insta_btn:after{
	background: #3028E8;
}


@media (min-width:768px){
	#contact_area{
		padding: 5em 0;
	}
	#contact_area h2{
		font-size: 6em;
	}
	#contact_area div.flex > a{
		margin: .5em 10px;
	}
}
@media (min-width:1200px){
	#contact_area{
		padding: 8em 0;
	}
	#contact_area h2{
		font-size: 8em;
	}
}


