/* 全体 */
html {
	-webkit-overflow-scrolling: touch;
	width: 100%;
	height: auto;
	scroll-behavior: smooth;
}
* {
	box-sizing: border-box;
}
body {
	font-family: "Zen Old Mincho", "游明朝", "ヒラギノ明朝 ProN W3", "MS明朝", serif;
	background: #fff;
	margin: 0;
	padding: 0;
	line-height: 1.6;
}
html, body, div, h1, h2, h3, h4, h5, h6,
p, blockquote, pre, address,
ul, ol, li, dl, dt, dd,
table, th, td,
form, fieldset {
	color: #000;
	font-weight: 100;
	line-height: 1.7;
	margin: 0;
	padding: 0;
	font-size: 18px;
}
img {
	border: none;
	max-width: 100%;
}
ol,ul,li {
	list-style: none;
}
a {
	color: #000;
	outline: none;
}
figure {
	margin: 0;
}
.pcnone {
	display: none;
}
@media screen and ( max-width:680px ) {
	html, body, div, h1, h2, h3, h4, h5, h6, p, blockquote, pre, address, ul, ol, li, dl, dt, dd, table, th, td, form, fieldset {
		font-size: 14px
	}
	main{
		overflow: hidden;
	}
	.pcnone {
		display: inherit!important;
	}
	.spnone {
		display: none;
	}
}

.center {
	text-align: center;
}
.left {
	text-align: left;
}
.right {
	text-align: right;
}

/* ローディング画面 */
#loading {
	position: fixed;
	inset: 0;
	background: #fff;
	z-index: 2000;
	display: flex;
	align-items: center;
	justify-content: center;
	background-image: url(../images/bg/bg_01.webp);
	background-repeat: repeat-y;
	background-size: contain;
}
.loading-inner {
	text-align: center;
}
.loading-text {
	color: #ab4628;
	font-size: 30px;
	opacity: 0;
	animation: fadeInText 1s ease forwards;
}
.loading-logo {
	max-width: 400px;
	margin-top: 10px;
	opacity: 0;
	animation: fadeInLogo 1s ease forwards;
	animation-delay: 1s;
}
@keyframes fadeInText {
	to { opacity: 1; }
}
@keyframes fadeInLogo {
	to { opacity: 1; }
}
@media screen and ( max-width:680px ) {
	.loading-text {
		font-size: 24px;
	}
	.loading-logo {
		max-width: 80%;
	}
}


/* TOPへボタン */
#page-top{
	display: block;
	position: fixed;
	z-index: 9999;
	bottom: 5%;
	right: 3%;
	background: rgba(255,255,255,.5);
	border: 1px solid #888;
	height: 40px;
	width: 40px;
	text-align: center;
	overflow: hidden;
}
#page-top:hover{
	background: rgba(255,255,255,1);
}
#page-top:before {
	content: '';
	position: absolute;
	top: 10px;
	right: 19px;
	width: 1px;
	height: 25px;
	background: #444;
}
#page-top:after {
	content: '';
	position: absolute;
	top: 10px;
	right: 15px;
	width: 8px;
	height: 8px;
	border-right: 1px solid #444;
	border-top: 1px solid #444;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

header {
	top: 0;
	z-index: 1001;
}
.header-inner {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 5%;
	z-index: 10;
	transition: 0.2s linear;
}

header {
	position: fixed; /* stickyは不要 */
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1001;
	transition: top 0.3s ease, background 0.3s ease;
}
header.fixed .header-inner {
	background-color: #0000003d;
	padding: 10px 5%;
}
header.fixed .header-inner {
	background-color: none;
}
header.fixed .site-title {
	width: 80px;
}

.site-title {
	margin: 0;
}
.site-title img {
	width: 180px;
}
@media screen and ( max-width:680px ) {
	.site-title img {
		width: 120px;
	}
}

/* ハンバーガー */
.hamburger {
	width: 25px;
	height: 20px;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: 0.3s;
	z-index: 1002;
	position: relative;
}
.hamburger span {
  display: block;
  height: 1px;
  background: #fff;
  border-radius: 3px;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* サブメニュー */
.submenu {
	position: fixed;
	top: 0;
	right: 0;
	width: 40%;
	max-width: 400px;
	height: 100%;
	background: rgb(175 113 94 / 90%);
	transform: translateX(100%);
	transition: transform 0.4s ease;
	z-index: 1000;
	display: flex;
	flex-direction: column;
	padding: 20px;
	padding-top: 70px;
}
.submenu.active {
	transform: translateX(0);
}
.submenu .nav_title {
	font-size: 20px;
	padding-left: 10px;
	padding-bottom: 10px;
}
.submenu .nav_title span {
	font-size: 14px;
}
.submenu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.submenu ul li a {
	font-size: 14px;
	display: block;
	padding: 10px 0 10px 10px;
	border-top: 1px solid #fff;
}
.submenu ul li ul li a {
	border-top: 0;
	padding-bottom: 10px;
	padding-left: 40px;
	position: relative;
}
.submenu ul li ul li a::before {
	content: "";
	width: 14px;
	height: 2px;
	background-color: #fff;
	background-color: "#fff";
	position: absolute;
	top: 50%;
	left: 20px;
}
.nav_title {
}
.nav_title span {
	display: block;
}
.submenu p {
	color: #fff;
}
.submenu a {
  color: #fff;
  font-size: 1.3rem;
  text-decoration: none;
  transition: color 0.3s;
}
.submenu a:hover {
  color: #ff9800;
}
a.nav_btn {
	text-align: center;
	font-size: 14px;
	margin-top: 20px;
	border: 1px solid #fff;
	padding: 10px;
}
@media screen and ( max-width:680px ) {
	.submenu {
		width: 100%;
		overflow: auto;
	}
}


/* fadeup */
.fade-up {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.show {
	opacity: 1;
	transform: translateY(0);
}

/* fade-right */
.fade-right {
	opacity: 0;
	transform: translateX(-30px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-right.show {
	opacity: 1;
	transform: translateX(0);
}

/* fade-left */
.fade-left {
	opacity: 0;
	transform: translateX(30px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-left.show {
  opacity: 1;
	transform: translateX(0);
}

/* メインセクション */

.inner {
	width: 80%;
	max-width: 1450px;
	margin: auto;
	padding-bottom: 60px;
}

.it {
	font-family: "Balthazar", serif;
	text-transform: uppercase;
}

a.link_btn {
	font-size: 24px;
	display: inline-block;
	padding: 14px 30px;
	min-width: 320px;
	text-align: center;
	background-color: #4b3e3d;
	color: #fff;
	text-decoration: none;
}
a.link_btn:hover {
	opacity: 0.8;
}
a.link_btn.orange {
	background-color: #e78c13;
}
a.link_btn.purple {
	background-color: #91719f;
}
a.link_btn.brown {
	background-color: #ab4628;
}
a.p_link_btn {
	font-size: 30px;
	display: inline-block;
	padding: 14px;
	width: 380px;
	text-align: center;
	color: #000;
	text-decoration: none;
	transition: transform .6s ease;
}
a.p_link_btn span {
	display: block;
	font-size: 16px;
	margin-bottom: -10px;
}
a.p_link_btn:hover {
	transition: transform .6s ease;
	transform: scale(1.1);
}

.col .p_link_btn {
	background-image: url(../images/bg/bg_btn_01.webp);
	background-size: contain;
}
.col + .col .p_link_btn {
	background-image: url(../images/bg/bg_btn_02.webp);
	background-size: contain;
}

@media screen and ( max-width:1000px ) {
	#area_04 .inline,
	#area_05 .inline {
		flex-direction: column;
	}
	#area_04 .inline .col,
	#area_05 .inline .col {
		margin: 0;
		margin-bottom: 20px;
	}
}
@media screen and ( max-width:680px ) {
	.inner {
		width: 90%;
	}
	a.p_link_btn {
		font-size: 26px;
		width: 100%;
	}
	a.p_link_btn span {
		font-size: 13px;
		margin-bottom: 0;
	}
	a.link_btn {
		font-size: 16px;
		min-width: 100%;
	}
}

.inline {
	display: flex;
	flex-wrap: wrap;
}
.inline.center {
	justify-content: space-around;
}
.inline.center .col {
	flex: none;
}
.inline .col {
	flex: 1;
	margin-right: 4%;
}
.inline .col:last-of-type {
	margin-right: 0;
}
.inline .col figure {
	text-align: center;
	margin-bottom: 40px;
}
.inline .col figure:last-child {
	margin-bottom: 0;
}
@media screen and ( max-width:680px ) {
	.inline {
		flex-direction: column;
	}
	.inline.sp_r_top {
		flex-direction: column-reverse;
	}
	.inline .col {
		margin-right: 0;
	}
	.inline .col:last-of-type {
		width: 100%;
		margin: 4% 0;
	}
}

.bg_orange {
	background-color: rgba(152, 62, 36, 0.5);
}
.bg_white {
	background-color: #fff;
}

.full img {
	width: 100%;
}

main section {
	padding: 6% 0 0;
}

#sec_01,
#sec_02,
#sec_03 {
	background-repeat: repeat-y;
	background-size: contain;
	position: relative;
}
#sec_01 {
	padding-top: 0;
	background-image: url(../images/bg/bg_01.webp);
}
#sec_02 {
	background-image: url(../images/bg/bg_02.webp);
}
#sec_03 {
	background-image: url(../images/bg/bg_03.webp);
}
#sec_02::before,
#sec_03::before {
	content: '';
	width: 100%;
	height: 10px;
	background-image: url(../images/bg/bg_top_01.webp);
	position: absolute;
	top: 0;
}

/* main_block */
.main_block {
	height: 100vh;
	position: relative;
}
.main_block::before {
	content: '';
	width: 180px;
	height: 80px;
	background-image: url(../images/title_main_obj.svg);
	background-repeat: no-repeat;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 14vh;
	z-index: 1;
}
.main_visual {
	text-align: center;
	background-image: url(../images/bg/pane_01.webp);
	background-position: center;
	background-size: 140%;
	height: 90vh;
	position: relative;
	clip-path: ellipse(100% 100% at 50% -10%)
}
.main_visual .sub_text_left,
.main_visual .sub_text_right {
	font-size: 18px;
	position: absolute;
	letter-spacing: 2.2px;
	top: 40%;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}
.main_visual .sub_text_left {
	left: 1%
}
.main_visual .sub_text_right {
	right: 1%
}
.main_visual .main_title {
	width: 70%;
	text-align: center;
	position: absolute;
	top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.main_visual .main_title .sub {
	font-size: 32px;
	margin: 0;
	text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4)
}
.main_visual .main_title img {
	width:

}
.main_visual p {
	font-size: 60px;
	margin: 0;
	color: #fff;
}
.main_menu {
	margin-top: -40px;
	text-align: center;
}
.main_block .menu_nav {
	display: flex;
	justify-content: center;
	margin-top: 40px;
}
.main_block .menu_nav li:first-child {
	border-left: 1px solid #000;
}
.main_block .menu_nav li {
	border-right: 1px solid #000;
}
.main_block .menu_nav li a {
	display: inline-block;
	padding: 0 20px;
	text-decoration: none;
}
@media screen and ( max-width:680px ) {
	.main_menu {
		margin-top: -40px;
		text-align: center;
		position: absolute;
		bottom: 70px;
		width: 100%;
	}
	.main_visual {
		height: 70vh;
		background-size: cover;
		clip-path: ellipse(140% 80% at 50% -10%);
	}
	.main_visual .main_title {
		width: 80%;
		top: 30%;
	}
	.main_visual .main_title .sub {
		font-size: 26px;
	}
	.main_visual .sub_text_left,
	.main_visual .sub_text_right {
		font-size: 10px;
		top: 30%;
	}
	.main_block {
		height: auto;
	}
	.main_block::before {
		width: 120px;
		height: 52px;
		background-size: cover;
		bottom: 17vh;
	}
	.main_block .menu_nav li:first-child {
		border-left: 0.5px solid #000;
	}
	.main_block .menu_nav li {
		border-right: 0.5px solid #000;
	}
	.main_block .menu_nav li a {
		font-size: 11px;
		padding: 0 10px;
	}
}


.main_read {
	text-align: center;
}
.catch_text {
	margin-bottom: 10px;
}
.catch_text p {
	font-size: 46px;
	color: #ab4628;
}
.catch_text p span {
	display: block;
	font-size: 34px;
	margin-bottom: -10px;
}
.catch_text .it {
	font-size: 30px;
	opacity: 0.7;
}
.main_read img {
	max-width: 420px;
}
@media screen and ( max-width:680px ) {
	.main_read {

	}
	.main_read img {
		max-width: 90%;
	}
	.main_read_text {
		font-size: 15px;
		line-height: 2.2;
	}
	.catch_text p {
		font-size: 30px;
	}
	.catch_text p span {
		font-size: 22px;
	}
	.catch_text .it {
		font-size: 14px;
	}

}

.title {
	padding: 60px 0 100px;
	position: relative;
	text-align: center;
}
.title::after {
	content: url('../images/title_obj.svg');
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translate(-50%, -50%);
}
.title h2 {
	font-size: 40px;
	color: #000;
	margin: 0;
	margin-bottom: -10px;
}
.bg_orange .title h2,
.bg_orange .title .it,
.bg_orange .title + p,
.bg_orange p {
	color: #fff;
}
.title .it {
	font-size: 28px;
	color: #4b3e3d;
	opacity: 0.7;
	margin: 0;
}
.title + p {
	font-size: 20px;
	margin: 0 auto 100px;
	text-align: center;
}
@media screen and ( max-width:680px ) {
	.title h2 {
		font-size: 30px;
	}
	.title {
		padding: 30px 0 60px;
	}
	.title::after {
		content: '';
		background-image: url(../images/title_obj.svg);
		position: absolute;
		width: 80px;
		height: 30px;
		bottom: 20px;
		transform: translate(-50%, -50%);
		background-repeat: no-repeat;
		background-size: contain;
	}
	.title .it {
		font-size: 21px;
	}
	.title + p {
		font-size: 14px;
		margin: 0 auto 60px;
		text-align: center;
	}
}

.decoration_bg {
	padding: 60px;
	background-color: #fff;
	border-image-source: url(../images/bg/bg_deco.svg);
	border-image-slice: 50;
	border-image-width: 50px;
	border-image-outset: 0px;
	margin-bottom: 60px;
}
.decoration_bg h3 {
	font-size: 28px;
	text-align: center;
	text-decoration: underline;
	margin-bottom: 40px;
}
.decoration_bg h4 {
	font-family: "Balthazar", serif;
	font-size: 24px;
	color: #c6a86f;
	margin-top: 0;
}
.decoration_bg p {
	color: #000;
}
.decoration_bg .date_text {
	font-size: 16px;
}
.decoration_bg .teacher_text {
	font-size: 22px;
	margin-bottom: 20px;
}
.decoration_bg .prof_block {
	padding: 15px;
	background-color: #f4eee2;
}
@media screen and ( max-width:680px ) {
	.decoration_bg {
		padding: 40px;
	}
	.decoration_bg h3 {
		font-size: 22px;
		margin-bottom: 20px;
	}
	.decoration_bg .date_text,
	.decoration_bg .teacher_text {
		text-align: center;
	}
	.decoration_bg .teacher_text {
		font-size: 18px;
	}
}

.pastry_block {
	padding-top: 40px;
	padding-bottom: 40px;
	border-bottom: 2px solid #c6a86f;
}
.pastry_block:first-child {
	padding-top: 0;
}
.pastry_block:last-child {
	border-bottom: none;
}
.pastry_block h3 {
	margin-bottom: 0;
	text-decoration: none;
}
.pastry_block .sub {
	font-size: 22px;
	color: #ab4628;
	text-align: center;
	margin-bottom: 40px;
}
.pastry_block figure {
	width: 100%;
	margin: 0 auto;
}

.logo_block {
	text-align: center;
}
.logo_block img {
	max-width: 320px;
	margin-bottom: 40px;
}
#sec_03 .logo_block img {
	max-width: 160px;
}
.logo_block .sec_title p {
	font-size: 40px;
}
.logo_block .sec_title p.read_text {
	font-size: 26px;
}
@media screen and ( max-width:680px ) {
	.pastry_block .sub {
		font-size: 18px;
	}
	.logo_block img {
		max-width: 160px;
		margin-top: 20px;
	}
	#sec_03 .logo_block img {
		max-width: 120px;
	}
	.logo_block .sec_title p {
		font-size: 26px;
	}
	.logo_block .sec_title p.read_text {
		font-size: 13px;
	}
}

.product_block {
	margin-bottom: 100px;
	position: relative;
}
.product_block::after {
	content: '';
	width: 120px;
	height: 50px;
	margin: 100px auto 0;
	background-image: url(../images/bg/bg_block_end.webp);
	display: flex;
}
.product_block:last-child::after {
	display: none;
}
.product_block h3 {
	text-align: center;
	font-size: 46px;
	color: #e78c13;
	margin-bottom: 100px;
	position: relative;
}
.product_block h3 span {
	display: block;
	font-size: 24px;
	color: #000;
	margin-bottom: -10px;
}
.product_block h3::after {
	content: url(../images/bg/bg_titile_end.webp);
	width: 100%;
	position: absolute;
	left: 0;
	bottom: -50px;
}
.product_block p {
	font-size: 22px;
	margin-top: 16px;
	margin-bottom: 100px;
	text-align: center;
}
.product_block .inline {
	margin-bottom: 20px;
}
.product_block .num_2 img {
	width: 70%;
}
.product_block .num_3 img {
	width: 80%;
}
@media screen and ( max-width:680px ) {
	.product_block h3 {
		font-size: 26px;
	}
	.product_block .inline .col {
		margin-bottom: 60px;
	}
	.product_block p {
		font-size: 16px;
	}
	.product_block .num_2 img,
	.product_block .num_3 img {
		width: 80%;
	}
}

.movie_block {
	margin-bottom: 60px;
}
.movie_block iframe {
	width: 90%;
	max-width: 900px;
	height: 506px;
}
@media screen and ( max-width:680px ) {
	.movie_block iframe {
		width: 100%;
		height: 200px;
	}
}


.lineup_block {
	margin-bottom: 100px;
	position: relative;
}
.lineup_block:last-child {
}
.lineup_block::after {
	content: '';
	width: 120px;
	height: 50px;
	margin: 100px auto 0;
	background-image: url(../images/bg/bg_block_end.webp);
	display: flex;
}
.lineup_block:last-child::after {
	display: none;
}
.lineup_block .inlnie {
}
.lineup_block .inline .col {
}
.lineup_block h3 {
	text-align: center;
	font-size: 36px;
	color: #91719f;
	margin-bottom: 100px;
	line-height: 1.2;
	position: relative;
}
.lineup_block h3::after {
	content: url(../images/bg/bg_titile_end.webp);
	width: 100%;
	position: absolute;
	left: 0;
	bottom: -50px;
}
.lineup_block p {
	font-size: 22px;
}
.lineup_block .dl_wrap {
	margin-bottom: 40px;
}
.lineup_block .dl_wrap dl {
	display: flex;
	margin-bottom: 14px;
}
.lineup_block .dl_wrap dl dt {
	font-size: 20px;
	padding-right: 14px;
	border-right: 1px solid #000;
}
.lineup_block .dl_wrap dl dd {
	font-size: 20px;
	padding-left: 14px;
}
.lineup_block figure {
	width: 50%;
	margin: 0 auto;
}
@media screen and ( max-width:680px ) {
	.lineup_block h3 {
		font-size: 28px;
	}
	.lineup_block .dl_wrap dl dt,
	.lineup_block .dl_wrap dl dd {
		font-size: 14px;
	}
	.lineup_block p {
		font-size: 16px;
	}
}

.inq_block {
}
.inq_block .title + p {
	text-align: center;
	font-size: 22px;
	line-height: 2.4;
}
footer {
	text-align: center;
}
footer small {
	display: block;
}
footer .company_text {
	font-weight: bold;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 30px;
}
@media screen and ( max-width:680px ) {
	.inq_block .title + p {
		font-size: 16px;
	}
	.inq_block .title + p {
		line-height: 2.0;
	}
	footer .company_text {
		font: 20px;
	}

}
