/*
Theme Name:
Description:
Author:
Version:
*/
/*********************************************/
/* 共通系                                    */
/*********************************************/
html {
	scroll-behavior: smooth;
}

body {
	font-family: "Lucida Grande", "游ゴシック", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Meiryo", sans-serif;
	color: #696969;
	font-size: 15px;
	line-height: 1.6;
	margin: 0;
	padding-top: 60px
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

img {
	max-width: 100%;
	vertical-align: bottom;
	border: none;
}

p {
	margin: 0;
}

a {
	text-decoration: none !important;
}

ul,
li {
	margin: 0;
	padding: 0;
	list-style: none;
}

section,
.footer_content {
	margin: 0 auto;
}

.content_width {
	max-width: 1000px;
	padding: 80px 24px;
}

@media (max-width: 1200px) {
	.content_width {
		padding: 80px;
	}
}

@media (max-width: 576px) {
	.content_width {
		padding: 56px 40px;
	}
}

.heading .en {
	font-family: agenda, sans-serif;
	font-size: 40px;
	line-height: 1;
	padding-top: 40px;
	position: relative;
}

.heading {
	text-align: center;
	margin-bottom: 56px;
}

@media (max-width: 768px) {
	.heading {
		margin-bottom: 56px;
	}
}

.heading .en span {
	padding: 40px;
	background-repeat: no-repeat;
}

.heading .en {
	position: relative;
	padding-bottom: 50px;
}

.heading .en::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%) rotate(45deg);
	width: 1px;
	height: 30px;
	background-color: #3a3937;
}

.loading {
	width: 100vw;
	height: 100vh;
	transition: all 1.5s;
	background-color: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	opacity: 1;
	visibility: visible;
}

.loading.is-active {
	opacity: 0;
	visibility: hidden;
}

.loading-animation {
	width: 100vw;
	height: 100vh;
	transition: all 1.5s;
	background-color: #fff;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
}

.loading-animation.is-active {
	opacity: 1;
	visibility: visible;
}

.loading img,
.loading-animation img {
	width: 20%;
}

@media (max-width: 768px) {

	.loading img,
	.loading-animation img {
		width: 35%;
	}
}

@media (max-width: 576px) {

	.loading img,
	.loading-animation img {
		width: 60%;
	}
}

.fadeUp {
	animation-name: fadeUpAnime;
	animation-duration: 0.7s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes fadeUpAnime {
	from {
		opacity: 0;
		transform: translateY(100px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 128px;
	padding: 16px 32px;
	border-radius: 50vh;
	position: relative;
	transition: all 0.4s ease-out;
}

.btn_center {
	margin: 0 auto;
}

.btn_mocha {
	background-color: #e3dec2;
}

.btn_orange {
	background-color: #d8a380;
}

.btn_mocha.btn_reverse::after,
.btn_orange.btn_reverse::after {
	transform: rotate(-135deg);
	left: 25px;
}

.btn_mocha::after,
.btn_orange::after {
	content: "";
	width: 7px;
	height: 7px;
	border-top: 1px solid #3a3937;
	border-right: 1px solid #3a3937;
	transform: rotate(45deg);
	position: absolute;
	right: 25px;
}

.btn_mocha:hover,
.btn_orange:hover,
.btn_contact:hover,
.btn_submit:hover {
	border-color: transparent;
	background: linear-gradient(270deg, #d8a380 0%, #ffe140 50%, #d8a380 100%);
	background-size: 200% auto;
	background-position: right center;
	box-shadow: 0 5px 10px rgba(255, 163, 115, 0.4);
}

/* ヘッダー */
.header_logo {
	display: flex;
	align-items: end;
	font-size: 10px;
	padding: 10px 0;
}

.header_logo a {
	width: 110px;
}

.header_logo p {
	margin-left: 32px;
	line-height: 1;
}

.header {
	background-color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 500;
	top: 0;
	left: 0;
	width: 100%;
	padding: 10px 5%;
	box-sizing: border-box;
	position: fixed;
}

@media (max-width: 768px) {
	.pc_nav {
		display: none;
	}
}

.pc_nav ul {
	display: flex;
	align-items: center;
	text-align: center;
}

.pc_nav ul li a {
	display: block;
	font-family: agenda, sans-serif;
	color: inherit;
	width: 80px;
	margin-right: 40px;
}

.pc_nav ul li:last-child a {
	margin-right: 0;
}

.btn_contact {
	width: 50%;
	border-radius: 50vh;
	background-color: #d8a380;
	padding: 8px 12px;
	transition: all 0.4s ease-out;
}

@media (max-width: 768px) {
	.btn_contact {
		width: 60%;
		margin: 0;
		margin: 0 auto;
	}
}

.btn_menu {
	display: none;
}

@media (max-width: 768px) {
	.btn_menu {
		display: block;
		position: absolute;
		top: 25px;
		right: 5%;
		cursor: pointer;
		height: 30px;
		z-index: 100;
	}
}

@media (max-width: 768px) {
	.btn_menu span {
		display: block;
		background: #3a3937;
		width: 32px;
		height: 1px;
		border-radius: 1px;
		position: relative;
		top: 15px;
		transition: 0.3s;
	}

	.btn_menu span::before,
	.btn_menu span::after {
		content: "";
		display: block;
		background: #3a3937;
		width: 32px;
		height: 1px;
		border-radius: 1px;
		position: absolute;
		transition: 0.3s;
	}

	.btn_menu span::before {
		bottom: 5px;
	}

	.btn_menu span::after {
		top: 5px;
	}
}

.sp_nav {
	display: none;
}

@media (max-width: 768px) {
	.open {
		z-index: 100;
	}
}

@media (max-width: 768px) {
	.open span {
		background: transparent;
		color: #fff;
	}

	.open span::before {
		bottom: 0;
		transform: rotate(45deg);
		background-color: #3a3937;
	}

	.open span::after {
		top: 0;
		transform: rotate(135deg);
		background-color: #3a3937;
	}
}

@media (max-width: 768px) {
	.sp_nav {
		position: absolute;
		top: 0;
		left: 0;
		height: 100vh;
		/* 画面いっぱい */
		width: 100%;
		background: #e3dec2;
		z-index: 50;
	}

	.sp_nav ul {
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		padding: 24px;
	}

	.sp_nav li a {
		color: #3a3937;
		padding: 32px 0;
		text-align: center;
		display: block;
		font-family: agenda, sans-serif;
		font-size: 20px;
	}
}

/* メインビジュアル */
.main_visual {
	background: rgba(227, 222, 194, 0.5);
	height: 100vh;
	margin-bottom: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	overflow: hidden;
	/* fv_circleの拡大を切り取り */
}

.fv_circle {
	/* 波紋の基点 */
	position: relative;
	background-image: radial-gradient(circle, #ffffff 0% 60%, rgba(227, 222, 194, 0) 70% 100%);
	width: 600px;
	height: 600px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

@media (max-width: 992px) {
	.fv_circle {
		width: 550px;
		height: 550px;
	}
}

@media (max-width: 768px) {
	.fv_circle {
		width: 500px;
		height: 500px;
	}
}

@media (max-width: 576px) {
	.fv_circle {
		width: 400px;
		height: 400px;
	}
}

/* 波形を2つ設定 */
.fv_circle::after,
.fv_circle::before {
	content: "";
	/* 波形の位置 */
	position: absolute;
	left: -25%;
	top: -25%;
	border: 1px solid #c4ba7f;
	width: 150%;
	height: 150%;
	border-radius: 50%;
	/* はじめは不透明 */
	opacity: 1;
	animation: 2.5s circleanime linear infinite;
}

/* 波形の2つ目は0.5秒遅らせてアニメーション */
.fv_circle::before {
	animation-delay: 0.5s;
}

/* 波形のアニメーション */
@keyframes circleanime {
	0% {
		transform: scale(0.68);
	}

	100% {
		transform: scale(1.2);
		opacity: 0;
	}
}

.main_message {
	font-size: 30px;
	font-weight: 700;
}

@media (max-width: 992px) {
	.main_message {
		font-size: 22px;
	}
}

@media (max-width: 768px) {
	.main_message {
		font-size: 20px;
	}
}

@media (max-width: 576px) {
	.main_message {
		font-size: 18px;
	}
}

.main_message .font_large {
	font-size: 40px;
}

@media (max-width: 992px) {
	.main_message .font_large {
		font-size: 32px;
	}
}

@media (max-width: 768px) {
	.main_message .font_large {
		font-size: 30px;
	}
}

@media (max-width: 576px) {
	.main_message .font_large {
		font-size: 23px;
	}
}

.main_message .font_emphasis {
	background-repeat: no-repeat;
	display: inline-block;
}

.circle {
	background-image: url("img/ka.png");
	background-position: 50% 7%;
}

.triangle {
	background-image: url("img/ta.png");
	background-position: 50% 5%;
}

.square {
	background-image: url("img/chi.png");
	background-position: 50% 5%;
}

@media (max-width: 992px) {

	.circle,
	.triangle,
	.square {
		padding-top: 3px;
	}
}

@media (max-width: 768px) {

	.circle,
	.triangle,
	.square {
		padding-top: 5px;
	}
}

.scroll_down {
	position: absolute;
	left: 50%;
	bottom: 10px;
	height: 50px;
}

.scroll_down span {
	position: absolute;
	left: -15px;
	top: -15px;
	font-size: 11px;
	letter-spacing: 0.05em;
}

.scroll_down::after {
	content: "";
	position: absolute;
	top: 0;
	width: 1px;
	height: 30px;
	background: #c4ba7f;
	animation: pathmove 2.5s ease-in-out infinite;
	opacity: 0;
}

@keyframes pathmove {
	0% {
		height: 0;
		top: 0;
		opacity: 0;
	}

	30% {
		height: 30px;
		opacity: 1;
	}

	100% {
		height: 0;
		top: 50px;
		opacity: 0;
	}
}

/* フッター */
.footer {
	width: 100%;
	background: linear-gradient(to bottom, #fff 50%, #e3dec2 100%);
}

.footer_content {
	max-width: 1000px;
	padding: 80px 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

@media (max-width: 1200px) {
	.footer_content {
		display: block;
		text-align: center;
		padding: 64px;
	}
}

@media (max-width: 576px) {
	.footer_content {
		padding: 64px 30px;
	}
}

.footer_nav ul {
	display: flex;
	align-items: center;
	text-align: center;
}

.footer_nav ul li a {
	display: block;
	font-family: agenda, sans-serif;
	color: inherit;
	/* width: 80px; */
	margin: 0 20px;
}

.pc_sns a {
	margin: 0;
}

@media (max-width: 1200px) {
	.footer_nav ul {
		justify-content: center;
		margin-bottom: 32px;
	}
}

@media (max-width: 576px) {
	.footer_nav .footer_list {
		display: none;
	}
}

.copy_right {
	font-size: 10px;
}

@media (min-width: 1201px) {
	.sp_sns {
		display: none !important;
	}
}

@media (max-width: 1200px) {
	.pc_sns {
		display: none !important;
	}
}



/*仮設定*/
main {
	min-height: 1500px;
}