:root {
  --blue: #3840F8;
  --en-oswald: "oswald",sans-serif;
  --en-pragmatica: "pragmatica-extended",sans-serif;
  --border-color: #878C9E;
}
html {
	scroll-behavior: smooth;
}
body {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	color: #1E1E1E;
	transition: background-color 1s;
}
body.black {
	background-color: #2F3631;
}
body.fixed {
	overflow: hidden;
}
.fixed_bg {
	position: fixed;
	z-index: -999;
	width: 100%;
	max-width: 1280px;
    height: 100vh;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}
.fixed_circle {
	position: absolute;
	top: 0;
	right: 0;
	width: 67%;
	animation: 14s linear infinite rotation1;
	transition: opacity .2s;
	filter: blur(20px);
}
@keyframes rotation1{
	0%{ transform:rotate(0);}
	100%{ transform:rotate(360deg); }
  }
.sp {
	display: none;
}
.container {
	max-width: 1200px;
	margin: auto;
	padding: 0 30px;
	box-sizing: content-box;
}
.no-events {
	margin-top: 80px;
	text-align: center;
}
@media (max-width: 767px) {
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
	.container {
		padding: 0 20px;
	}
	.fixed_bg {
		overflow: hidden;
		left: 55%;
	}
	.fixed_circle {
		width: 115%;
		top: 25vw;
		right: inherit;
		left: 7%;
		opacity: 90%;
	}
}


/* タイトル */
.h2 {
	font-family: "pragmatica-extended",sans-serif;
	font-weight: 400;
	font-size: 84px;
	line-height: calc(82/92);
}
.h2_italic,.italic {
	font-style: italic;
}
.h2_sub {
	font-weight: 600;
	font-size: 22px;
	letter-spacing: 0.03em;
	line-height: 1.1;
}
@media (max-width: 767px) {
	.h2 {
		font-size: 56px;
	}
	.h2_sub {
		font-size: 13px;
	}
	.h2_sub:before {
		width: 13px;
		height: 13px;
	}
	.section_title_box {
		flex-direction: column;
		align-items: flex-start;
	}
}


/* アニメーション */
/*
.text_animation {
	overflow: hidden;
}
.fade_animation_text {
	transform: translateY(101%);
}
*/


/* ボタン */
.btn {
	display: inline-flex;
	align-items: center;
	column-gap: 10px;
	box-shadow: inset 4px 4px 10px rgb(47 54 49 / .25);
	height: 65px;
	padding: 0 24px;
	box-sizing: border-box;
	border-radius: 999px;
	background-color: rgb(241 243 245 / .8);
	transition: .5s;
	border: 1px solid #D9D9D9;
}
.btn:hover {
	background-color: #fff;
}
.btn_icon {
	width: 28px;
}

.link_btn {
	width: 120px;
	height: 120px;
	display: grid;
	place-items: center;
	position: relative;
	z-index: 2;
}
.link_btn:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 2px solid #3840F8;
	background-color: rgb(222 222 229 / .4);
	transition: .5s;
}
.link_btn:hover:before {
	transform: scale(0.8);
}
.link_btn_arrow {
	width: 50%;
}

.btn_animation_box {
    overflow: hidden;
    position: relative;
    display: block;
}
.btn_animation_text {
    display: inline-block;
}
.btn_animation_text_second {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(102%);
}
.btn_animation.hover .btn_animation_text_first {
	animation-name: transformTop;
	animation-fill-mode: forwards;
  	animation-duration: .3s;
	transition-timing-function: ease-out;
}
.btn_animation.hover .btn_animation_text_second {
	animation-name: transformBottom;
	animation-fill-mode: forwards;
  	animation-duration: .3s;
	transition-timing-function: ease-out;
}
@keyframes transformTop {
	0% {
	  transform: translateY(0);
	}
	100% {
	  transform: translateY(-100%);
		  
	}
}
@keyframes transformBottom {
	0% {
	  transform: translateY(100%);
	}
	100% {
	  transform: translateY(0);
		  
	}
}
@media (max-width: 767px) {
	.btn {
		height: 50px;
	}
}


/* 画像 */
.image_bg {
	background-color: rgba(27, 28, 32, .1);
}
.image_img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.section_top_line {
	font-family: "pragmatica-extended",sans-serif;
	font-weight: 400;
	font-size: 14px;
	color: #878C9E;
	letter-spacing: -0.02em;
	text-align: right;
	border-bottom: 1px solid #878C9E;
	padding-bottom: 10px;
	margin-bottom: 30px;
}
@media (max-width: 767px) {
	.section_top_line {
		font-size: 12px;
	}
}


/* contact */
.contact_text_en {
	font-family: "pragmatica-extended",sans-serif;
	font-weight: 400;
	font-size: 18px;
	letter-spacing: -0.02em;
}
.contact_text {
	font-size: 14px;
	line-height: calc(25/14);
	margin-top: 15px;
}
.contact_line_btn {
	width: 270px;
	margin-top: 20px;
}
.contact_line_btn_text {
	font-weight: 600;
	color: #00B900;
	letter-spacing: 0.03em;
}
.contact_instagram_btn {
	width: 270px;
	margin-top: 10px;
}
.contact_instagram_btn_text {
	font-weight: 600;
	background: linear-gradient(90deg, #FFD600 0%, #FF7A00 5%, #FF0069 23%, #FF0069 63%, #D300C5 88%, #7638FA 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	line-height: 1.5;
}
@media (max-width: 1250px) {
	.contact_text_en,.contact_text,.contact_btn_box {
		text-align: center;
	}
}
@media (max-width: 767px) {
	.contact_line_btn {
		width: 240px;
		margin-top: 20px;
	}
	.contact_instagram_btn {
		width: 240px;
		margin-top: 10px;
	}
	.contact_line_btn_text {
		font-weight: 500;
		font-size: 14px;
	}
	.contact_instagram_btn_text {
		font-weight: 500;
		font-size: 14px;
	}
}


/* breadcrumb */
.breadcrumb {
	font-family: "pragmatica-extended", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #878C9E;
    letter-spacing: -0.02em;
    border-bottom: 1px solid #878C9E;
        padding-bottom: 7px;
    margin-bottom: 25px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	column-gap: 5px;
}
.breadcrumb_item {
	display: flex;
	align-items: center;
	column-gap: 5px;
}
.breadcrumb_item:before {
	content: "-";
}


/* page */
.main_page {
	margin-top: 190px;
}
.section_title_box {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
@media (max-width: 1250px) {
	.main_page {
		margin-top: 135px;
	}
	.section_title_box {
        flex-direction: column;
		align-items: flex-start;
    }
    .h2_sub {
        margin-top: 20px;
    }
}
@media (max-width: 768px) {
	.breadcrumb {
    font-size: 12px;
}
.h2_sub {
        margin-top: 10px;
    }
}