@charset utf-8;

/* -------------------------全体に対して------------------------- */
:root{
	--english-font: 'Cormorant Garamond', serif;
	--japanese-font: 'Klee One', cursive;
	--text-main-color: #383C48;
	--text-sub-color: #739498;
	--background-main-color: #E8F2F2;
}

body{
	font-family: var(--japanese-font),"ヒラギノ明朝",serif;
	font-weight: 600;
	color: var(--text-main-color);
	box-sizing: border-box;
	line-height: 1.5;
}

img{
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

a{
	text-decoration: none;
	color: var(--text-main-color);
}

/*-----ブラー表示-----*/
.blurAppearance{
  opacity: 0;overflow
  filter: blur(20px);
  transition: 1.4s;
}

.blurAppearanceScroll{
  opacity: 0;
  filter: blur(20px);
  transition: 1.4s;
}


/* -------------------------index.html------------------------- */
/* -----区切り線----- */
#top .separate-line{
	display: block;
	width: 1400px;
	width: 100%;
	height: 5px;
	margin: 0 auto;
	margin-left: 4%;
	background-image: url(../images/line1.svg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

/* --------------------header部分-------------------- */
.top{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
}

.top__logo{
	transition: .3s ease-out;
}

.top__logo:hover{
	opacity: .5;
}

.top__hamburger{
	position: relative;
	width: 36px;
	cursor: pointer;
}

.top__hamburger-line{
	display: block;
	width: 36px;
	height: 1px;
	background-color: var(--text-main-color);
	transition: .3s ease-out;
}

.top__hamburger-line:not(:last-child){
	margin-bottom: 12px;
}

body.open .top__hamburger-top{
	position: absolute;
	top: 30%;
	transform: rotate(45deg);
}

body.open .top__hamburger-middle{
	opacity: 0;
}

body.open .top__hamburger-bottom{
	position: absolute;
	top: 30%;
	transform: rotate(-45deg);
}

body.open{
	position: sticky;
	overflow: hidden;
}

.hamburger-open{
	display: block;
	position: fixed;
	top: 110px;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	height: 100vh;
	padding: 40px 0;
	background-color: var(--background-main-color);
	text-align: center;
	overflow: hidden;
	transform: translateX(100%);
	transition: .7s ease-out;
}

body.open .hamburger-open{
	transform: translateX(0);
}

.hamburger-open .gnav__list{
	margin: 3em 0;
}

.hamburger-open .gnav__link{
	display: block;
	font-size: 24px;
	margin-bottom: 1em;
	transition: .3s ease-out;
}

.hamburger-open .gnav__link:hover{
	opacity: .5;
}

.hamburger-open .gnav__link, .instagram__text{
	font-family: var(--english-font);
	font-weight: 500;
}

.instagram-link{
	transition: .3s ease-out;
}

.instagram-link:hover{
	opacity: .5;
}

.instagram__image{
	width: 60px;
}

.gnav-pc{
	display: none;
}

.eyecatch-wrapper{
	max-width: 320px;
	margin: 0 auto;
	padding: 0 40px;
}

.eycatch-name{
	text-align: center;
}

.eyecatch-name__image{
	max-width: 140px;
	margin: 40px 0 60px 0;
}

.eycatch-exterior{
	position: relative;
	max-width: 240px;
	margin: 0 auto;
}

.introduction{
	margin: 40px 0 60px 0;
	font-size: 14px;
	text-align: center;
}

.introduction__title{
	margin-bottom: 1em;
	font-size: 20px;
}

.introduction__text{
	margin-bottom: 1em;
}

/* --------------------main部分-------------------- */
.main{
	overflow-x: hidden;
}

.section-wrapper{
	max-width: 300px;
	margin: 40px auto;
	text-align: center;
}

/* .year-end-schedule {
	margin-bottom: 20px;
	font-size: 12px;
} */

#top .first-section__title, #top .second-section__title, #top .third-section__title, #top .forth-section__title{
	margin-bottom: .4em;
	letter-spacing: .2em;
	font-size: 20px;
	color: var(--text-sub-color);
}

.first-section__main-text, .second-section__main-text{
	line-height: 1.2;
}

.first-section__sub-text, .second-section__sub-text, .forth-section__sub-text{
	line-height: 1.2;
	font-size: 12px;
}

.second-section{
	margin-top: 28px;
}

.tel-number{
	position: relative;
	z-index: 99;
}

.tel-number::before{
	content: "";
	position: relative;
	top: .15em;
	display: inline-block;
	width: 1em;
	height: 1em;
	background-image: url(../images/tel.svg);
	background-size: 100%;
	background-repeat: no-repeat;
}

.tel-number::after, .footer__tel-number::after{
	content: "";
	position: absolute;
	display: block;
	left: -5%;
	bottom: 1px;
	width: 110%;
	height: 1px;
	background-color: var(--text-main-color);
}

.mini-text{
	font-size: 12px;
}

.third-section__sub-text{
	font-size: 12px;
	margin-top: .5em;
}

.menu-link{
	display: block;
	margin-top: 40px;
	transition: .3s ease-out;
}

.menu-link:hover{
	opacity: .5;
}

.menu-link__image{
	width: 200px;
}

#top .forth-section{
	text-align: left;
	padding: 0 20px;
}

#top .forth-section__title{
	text-align: center;
}

#top .forth-section__main-text{
	font-size: 14px;
}

#top .forth-section__main-text.first-text{
	margin-bottom: 16px;
}

.map-image{
	display: block;
	margin: 40px auto 20px auto;
	max-width: 100%;
}

#top .forth-section__link{
	display: block;
	width: 10em;
	padding: 1em 2em;
	border: 2px solid #A89F67;
	margin: 0 auto;
	background-color: #A89F67;
	color: #ffffff;
	text-align: center;
	transition: .3s ease-out;
}

#top .forth-section__link:hover{
	background-color: #ffffff;
	color: var(--text-main-color);
}

/* --------------------footer部分-------------------- */
.footer{
	background-color: var(--background-main-color);
	padding: 20px;
	text-align: center;
}

.footer__title{
	letter-spacing: .2em;
	font-size: 20px;
}

.footer__main-text{
	margin: 16px 0 16px 0;
	font-size: 14px;
}

.footer__tel-number{
	position: relative;
	line-height: 1.2;
	font-size: 20px;
}

.footer__tel-number::before{
	content: "";
	position: relative;
	top: .15em;
	display: inline-block;
	width: 1em;
	height: 1em;
	background-image: url(../images/tel.svg);
	background-size: 100%;
	background-repeat: no-repeat;
}

.footer__sub-text{
	font-size: 14px;
}

.copylight{
	display: block;
	margin-top: 28px;
	font-size: 12px;
}

/* -----ロゴアニメーション----- */
#loading{
	width: 100%;
	height: 100%;
	background-color:#fff;
	position:fixed;
	z-index: 9999;
	transition: 2s ease-in;
}

#loadingLogo{
	position: relative;
	width: 200px;
	height: auto;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}


/* -------------------------menu.html------------------------- */
#menu .main__inner-wrapper{
	max-width: 300px;
	margin: 40px auto;
	padding: 0 20px;
}

#menu .main__title, #access .main__title, #about .main__title{
	margin-bottom: 12px;
	font-family: var(--english-font);
	font-size: 24px;
	font-weight: 400;
	text-align: center;
}

#menu .first-secion__title, #menu .second-secion__title, #menu .third-secion__title{
	position: relative;
	letter-spacing: .2em;
	font-size: 20px;
	text-align: center;
	color: var(--text-sub-color);
}

#menu .first-secion__title::after{
	content: "";
	position: absolute;
	display: block;
	left: 50%;
	bottom: .3em;
	width: 5em;
	height: .4em;
	background-color: var(--background-main-color);
	transform: translateX(-53%);
	z-index: -9999;
}

#menu .second-secion__title::after, #menu .third-secion__title::after{
	content: "";
	position: absolute;
	display: block;
	left: 50%;
	bottom: .3em;
	width: 6em;
	height: .4em;
	background-color: var(--background-main-color);
	transform: translateX(-53%);
	z-index: -9999;
}

.course-section{
	display: flex;
	flex-wrap: wrap;
	flex-direction: column-reverse;
	width: 90%;
	margin: 0 auto;
	margin-top: 60px;
}

.course-section.second-section, .course-section.third-section, .course-section.forth-section{
	margin-top: 100px;
}

.course-wrapper{
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	margin-top: 28px;
	writing-mode: vertical-rl;
	text-orientation: upright;
}

.course__image-wrapper{
	margin: 0 auto;
}

.course__image{
	width: 240px;
}

.course__image.third-image{
	width: 200px;
}

.course__image.forth-image{
	width: 200px;
}

.course__title{
	border-top: 6px solid var(--text-sub-color);
	padding-top: .5em;
	color: var(--text-sub-color);
	font-size: 20px;
	letter-spacing: .2em;
}

.course__price{
	text-indent: 4em;
}

.comma{
	position: relative;
	top: -.7em;
	right: -.3em;
}

.second-number{
	position: relative;
	top: -.7em;
}

.mini-text.tax-text{
	position: relative;
	top: -1em;
}

.course__list{
	padding: 2em 0;
	line-height: 2;
}

.course__description{
	text-indent: 3rem;
	font-size: 14px;
}

.course__second-description{
	text-indent: 6rem;
	font-size: 14px;
}

.course__second-description.chateaubriant-description{
	text-indent: 14rem;
}

.course__text{
	padding-top: 2em;
}

.course__text.chateaubriant-text{
	padding-top: 3em;
}

.indent{
	padding-top: 2em;
}

.second-indent{
	padding-top: 4em;
}

.course__price.chateaubriant-price{
	text-indent: 12em;
}

.course__price.kaisen-price{
	letter-spacing: 1.4em;
}

#menu .line-wrapper{
	max-width: 2000px;
	height: 270px;
	margin: 0 auto;
}

#menu .left-line{
	width: 120px;
	height: 100px;
	position: relative;
	left: -30px;
	background-image: url(../images/line3.png);
	background-repeat: no-repeat;
	background-size: 80%;
	background-position: center;
	opacity: .5;
}

#menu .right-line{
	width: 120px;
	height: 100px;
	margin-left: auto;
	position: relative;
	right: -30px;
	background-image: url(../images/line4.png);
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	opacity: .6;
}

#menu .separate-line{
	display: block;
	max-width: 1000px;
	width: 100%;
	height: 70px;
	margin: 0 auto;
	background-image: url(../images/line2.png);
	background-repeat: no-repeat;
	background-size: 90%;
	background-position: center;
}

#menu .second-secion__list{
	margin-top: 16px;
	font-size: 14px;
}

#menu .second-secion__item{
	padding-left: 1em;
	text-indent: -1em;
}

#menu .second-section__text{
	margin: 8px 0;
	font-size: 14px;
	text-align: center;
}

#menu .second-section__image{
	border-radius: 10px;
}

#menu .main__third-section{
	margin-top: 40px;
}

.third-secion__list{
	margin-top: 8px;
	font-size: 14px;
}

.main__custody-wrapper{
	margin-top: 60px;
}

.decoration-cake{
	width: 70px;
	height: 52px;
	margin: 16px auto;
	background-image: url(../images/sozai1.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
}

.custody-text-wrapper{
	font-size: 14px;
}

.important-text{
	background-image: linear-gradient(transparent 70%, #EDECBE 30%);
	color: #A89F67;
}

.custody-sub-text{
	font-size: 11px;
	padding-left: 1em;
	text-indent: -1em;
}

.decoration-flower{
	width: 58px;
	height: 87px;
	margin: 16px auto;
	background-image: url(../images/sozai2.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
	transform: rotate(-20deg);
}


/* -------------------------access.html------------------------- */
#access .main{
	width: 80%;
	margin: 40px auto;
	padding: 0 20px;
}

#access .first-secion__title, #access .second-secion__title{
	position: relative;
	letter-spacing: .2em;
	font-size: 20px;
	text-align: center;
	color: var(--text-sub-color);
}

#access .first-secion__title::after{
	content: "";
	position: absolute;
	display: block;
	left: 50%;
	bottom: .3em;
	width: 5em;
	height: .4em;
	background-color: var(--background-main-color);
	transform: translateX(-53%);
	z-index: -9999;
}

#access .second-secion__title::after{
	content: "";
	position: absolute;
	display: block;
	left: 50%;
	bottom: .3em;
	width: 7em;
	height: .4em;
	background-color: var(--background-main-color);
	transform: translateX(-53%);
	z-index: -9999;
}

.google-map-wrapper{
	position: relative;
	height: 0;
	margin: 20px auto;
	padding-bottom: 56.25%;
}

.google-map{
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
}

#access .post-code{
	font-size: 12px;
}

#access .main__inner-wrapper{
	font-size: 14px;
}

.map-description{
	margin-top: 1em;
}

.opening-time-wrapper{
	margin-top: 32px;
	text-align: center;
}

.opening-time{
	font-size: 16px;
	line-height: 1;
}

#access .second-secion__title{
	margin-top: 40px;
}

#access .second-section__text{
	margin-top: 16px;
	margin-bottom: 40px;
	font-size: 14px;
	text-align: center;
}


/* -------------------------about.html------------------------- */
#about .main{
	width: 300px;
	margin: 40px auto;
	padding: 0 20px;
}

#about .main__first-section{
	margin-top: 20px;
	text-align: center;
}

#about .first-secion__title{
	font-size: 20px;
	letter-spacing: .8em;
}

#about .first-secion__first-text-wrapper{
	margin-top: 12px;
	font-size: 14px;
}

#about .first-secion__first-text-wrapper .first-secion__text{
	margin-top: 8px;
}

#about .first-secion__image-wrapper{
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	margin-top: 40px;
}

.interior-image{
	position: relative;
	cursor: pointer;
	z-index: 9;
}

#about .first-secion__second-text-wrapper{
	text-align: left;
	margin-top: 20px;
}

#about .first-secion__description{
	padding-left: 1em;
	text-indent: -1em;
	font-size: 14px;
}

#about .main__second-section{
	margin-top: 60px;
}

#about .second-secion__title{
	position: relative;
	letter-spacing: .2em;
	font-size: 20px;
	text-align: center;
	color: var(--text-sub-color);
	z-index: -999;
}

#about .second-secion__title::after{
	content: "";
	position: absolute;
	display: block;
	left: 50%;
	bottom: .3em;
	width: 5em;
	height: .4em;
	background-color: var(--background-main-color);
	transform: translateX(-53%);
	z-index: -9999;
}

#about .second-secion__text-wrapper{
	margin-top: 16px;
	text-align: center;
}

#about .second-secion__sub-text{
	font-size: 14px;
}

#about .instagram-section{
	margin-top: 60px;
	margin-bottom: 40px;
	text-align: center;
}

.instagram-title{
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: var(--english-font);
	font-size: 20px;
}

.instagram-title::after{
	content: "";
	display: inline-block;
	background-image: url(../images/instagram.svg);
	background-repeat: no-repeat;
	background-size: 100%;
	width: 36px;
	height: 36px;
}

.instagram-wrapper{
	height: 520px;
}

.instagram-inner-wrapper{
	display: none;
	border: 6px solid var(--background-main-color);
	padding: 20px;
	box-shadow: 6px 6px var(--text-sub-color);
	transition: .3s ease-out;
}

.instagram-media{
	min-width: 100% !important;
    border-right: none !important;
    border-left: none !important;
}

/* --------------------モーダルウインドウ-------------------- */
.modal-wrapper{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(81,93,94,0.9);
    pointer-events: none;
    opacity: 0;
    transition: 0.25s ease-out;
    z-index: 999;
}

.modal-wrapper.show{
    opacity: 1;
    pointer-events: all;
}

.modal-image{
    position: absolute;
    max-width: 80%;
    max-height: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0;
    border: 16px solid var(--background-main-color);
    transition: 0.5s ease-out;
}

.modal-image.show {
    opacity: 1;
}

/* -------------------------404.html------------------------- */
#error .page-cover{
	position: relative;
	min-height: 100vh;
	min-height: 100dvh;
	padding-bottom: 200px;
	box-sizing: border-box;
	overflow-x: hidden;
}

#error .footer{
	position: absolute;
	bottom: 0;
	width: 100%;
}

#error .footer__innner-wrapper{
	position: relative;
	left: -20px;
}

#error .main{
	margin: 40px auto;
	padding: 20px;
	text-align: center;
}

#error .main__title{
	margin: 0 auto;
	max-width: 300px;
	font-size: 20px;
	background-color: var(--background-main-color);
}

#error .main__content{
	margin-top: 1em;
	font-size: 14px;
}

#error .main__link{
	display: inline-block;
	margin-top: 2em;
	border-bottom: 1px solid var(--text-main-color);
}


@media(min-width: 600px){
	/* -------------------------index.html------------------------- */
	.eyecatch-wrapper{
		max-width: 800px;
	}

	.eycatch-name{
		text-align: center;
	}

	.eyecatch-name__image{
		max-width: 200px;
	}

	.eycatch-exterior{
		max-width: 460px;
	}

	.introduction__title{
		margin-bottom: 1.5em;
	}

	.introduction__text{
		margin-bottom: 1.5em;
	}

	.section-wrapper.first-section-wrapper{
		margin: 80px auto;
	}

	.second-section{
		margin-top: 60px;
	}

	.section-wrapper.third-section-wrapper{
		max-width: 480px;
	}

	#top .third-section, .forth-section{
		margin: 80px 0;
	}

	#top .forth-section__sub-text{
		margin-top: 40px;
	}

	.map-image{
		width: 400px;
	}


	/* -------------------------menu.html------------------------- */
	#menu .main{
		margin-bottom: 80px;
	}

	#menu .main__inner-wrapper{
		max-width: 480px;
	}

	.course-section{
		width: 100%;
	}

	.course-section.second-section, .course-section.third-section, .course-section.forth-section{
		margin-top: 140px;
	}

	.course-wrapper{
		margin-top: 40px;
	}

	.course__image{
		width: 320px;
	}

	.course__image.third-image{
		width: 280px;
	}

	.course__image.forth-image{
		width: 280px;
	}

	.course__list{
		padding: 2.5em 0;
		line-height: 3;
	}

	.course__description{
		text-indent: 5rem;
	}

	.course__second-description{
		text-indent: 7rem;
	}

	.course__text{
		margin-right: 4em;
	}

	.course__second-description{
		margin-left: 8em;
	}

	#menu .line-wrapper{
		height: 320px;
	}

	#menu .left-line{
		width: 180px;
	}

	#menu .right-line{
		width: 180px;
		height: 160px;
	}

	#menu .second-secion__list{
		margin-top: 28px;
		line-height: 1.8;
	}

	#menu .main__third-section{
		margin-top: 60px;
	}

	.third-secion__list{
		display: flex;
		justify-content: center;
		margin-top: 28px;
		text-align: center;
	}

	.third-secion__item{
		margin-right: 40px;
	}

	.custody-text-wrapper{
		padding: 20px 0;
	}


	/* -------------------------access.html------------------------- */
	#access .main{
		margin-bottom: 80px;
	}

	#access .main__inner-wrapper{
		text-align: center;
	}

	.google-map-wrapper{
		margin: 28px auto;
	}

	.opening-time-wrapper{
		margin-top: 40px;
		text-align: center;
	}
	/* -------------------------about.html------------------------- */
	#about .main{
		width: 440px;
	}

	.interior-image{
		margin: 0 auto;
		width: 360px;
	}

	.instagram-wrapper{
		height: 680px;
	}
}


@media(min-width: 1000px){
	/* -------------------------index.html------------------------- */
	.top__hamburger{
		display: none;
	}

	.hamburger-open{
		display: none;
	}

	.gnav-pc{
		display: block;
	}

	.gnav__list{
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		font-family: var(--english-font);
		font-weight: 500;
		font-size: 24px;
	}

	.gnav__item{
		margin-right: 40px;
	}

	.gnav__link{
		display: block;
		transition: .3s ease-out;
	}

	.gnav__item:last-child{
		width: 100%;
		text-align: right;
		font-size: 16px;
	}

	.gnav__link.instagram-link{
		position: relative;
		right: 20px;
		width: 20px;
		margin-left: auto;
	}

	.gnav__link.instagram-link::before{
		content: "";
		position: absolute;
		right: 20px;
		top: 3px;
		width: 20px;
		height: 20px;
		background-image: url(../images/instagram.svg);
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center;
	}

	.gnav__link:hover{
		opacity: .5;
	}

	.eyecatch-wrapper{
		max-width: 1000px;
		margin-top: 80px;
	}

	.eycatch-name{
		text-align: center;
	}

	.eyecatch-name__image{
		max-width: 300px;
	}

	.eycatch-exterior{
		max-width: 600px;
		margin-top: 100px;
	}

	.introduction{
		margin: 80px 0 80px 0;
		font-size: 16px;
	}

	.introduction__title{
		margin-bottom: 1.8em;
		font-size: 22px;
	}

	.introduction__text{
		margin-bottom: 1.7em;
	}


	/* --------------------main部分-------------------- */
	.section-wrapper.first-section-wrapper{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: bottom;
		max-width: 640px;
		margin: 100px auto;
	}

/* .year-end-schedule {
	width: 100%;
	font-size: 16px;
	margin-bottom: 60px;
} */

	#top .first-section__title, #top .second-section__title, #top .third-section__title, #top .forth-section__title{
		font-size: 28px;
	}

	.first-section__main-text, .second-section__main-text, .first-section__sub-text{
		line-height: 1.6;
	}

	.lo-text{
		margin-top: -.6em;
	}

	.mini-text{
		font-size: 14px;
	}

	.first-section__main-text, .tel-number{
		font-size: 20px;
	}

	.first-section__sub-text, .second-section__sub-text, .forth-section__sub-text{
		font-size: 14px;
	}

	.second-section{
		margin-top: 0;
	}

	#top .third-section, .forth-section{
		margin: 100px 0;
	}

	#top .third-section__main-text{
		font-size: 20px;
	}

	#top .third-section__sub-text{
		font-size: 14px;
	}

	.menu-link__image{
		width: 400px;
	}

	#top .forth-section__main-text{
		font-size: 16px;
	}

	#top .section-wrapper.third-section-wrapper{
		max-width: 600px;
	}

	#top .forth-section__link{
		font-size: 20px;
	}


	/* --------------------footer部分-------------------- */
	.footer{
		padding: 60px 0 20px 0;
	}

	.footer__title{
		font-size: 28px;
	}

	.footer__main-text{
		margin: 32px 0 32px 0;
		font-size: 16px;
	}

	.footer__tel-number{
		font-size: 24px;
	}

	.footer__sub-text{
		font-size: 16px;
	}

	.copylight{
		display: block;
		margin-top: 40px;
	}


	/* -------------------------menu.html------------------------- */
	#menu .main__inner-wrapper{
		max-width: 560px;
	}

	#menu .main__title, #access .main__title, #about .main__title .main__title{
		margin-bottom: 20px;
		font-size: 32px;
	}

	#menu .first-secion__title, #menu .second-secion__title, #menu .third-secion__title{
		font-size: 28px;
	}

	.course-section.second-section, .course-section.third-section, .course-section.forth-section{
		margin-top: 180px;
	}

	.course-wrapper{
		margin-top: 48px;
	}

	.course__image{
		width: 400px;
	}

	.course__image.third-image{
		width: 320px;
	}

	.course__image.forth-image{
		width: 320px;
	}

	.course__title{
		font-size: 24px;
	}

	.course__price{
		margin-right: -.3em;
		text-indent: 5em;
	}

	.course__list{
		padding: 3em 0;
		line-height: 3.5;
	}

	.course__price.chateaubriant-price{
		text-indent: 15em;
	}

	.course__price.kaisen-price{
		text-indent: 5em;
	}

	.course__text.chateaubriant-text{
		padding-top: 4em;
	}

	.course__second-description.chateaubriant-description{
		padding-top: 5em;
	}

	#menu .line-wrapper{
		height: 400px;
	}

	#menu .left-line{
		width: 240px;
		opacity: .3;
	}

	#menu .right-line{
		width: 240px;
		height: 200px;
		opacity: .3;
	}

	#menu .separate-line{
		display: block;
		width: 100%;
		height: 100px;
		background-size: 100%;
		opacity: .6;
	}

	#menu .second-secion__title{
		margin-top: 60px;
	}

	#menu .second-secion__list{
		margin-top: 40px;
		font-size: 16px;
		line-height: 2.0;
	}

	#menu .second-section__text{
		margin: 16px 0;
		font-size: 16px;
	}

	#menu .main__third-section{
		margin-top: 80px;
	}

	.third-secion__list{
		margin-top: 40px;
		font-size: 16px;
	}

	.third-secion__item{
		margin-right: 40px;
	}

	.main__custody-wrapper{
		margin-top: 80px;
	}

	.custody-text-wrapper{
		font-size: 16px;
		line-height: 1.8;
	}

	.custody-sub-text{
		font-size: 14px;
	}


	/* -------------------------access.html------------------------- */
	#access .first-secion__title, #access .second-secion__title{ 
		font-size: 28px;
	}

	.google-map-wrapper{
		max-width: 800px;
		height: 480px;
		padding-bottom: 0;
	}

	.opening-time-wrapper{
		max-width: 800px;
		margin-top: 60px;
	}

	#access .post-code{
		font-size: 14px;
	}

	#access .main__inner-wrapper{
		font-size: 16px;
	}

	.opening-time-wrapper{
		margin: 0 auto;
		margin-top: 40px;
	}

	.opening-time{
		font-size: 20px;
	}

	#access .second-section__text{
		margin-top: 20px;
		font-size: 16px;
	}


	/* -------------------------about.html------------------------- */
	#about .main{
		width: 920px;
	}

	#about .main__first-section{
		margin-top: 40px;
	}

	#about .first-secion__title{
		font-size: 24px;
	}

	#about .first-secion__first-text-wrapper{
		margin-top: 20px;
		font-size: 16px;
	}

	#about .first-secion__first-text-wrapper .first-secion__text{
		margin-top: 16px;
	}

	#about .first-secion__image-wrapper{
		margin-top: 60px;
	}

	.interior-image{
		margin: 0 auto;
		width: 440px;
	}

	#about .first-secion__second-text-wrapper{
		margin-top: 40px;
	}

	.second-secion__main-text{
		font-size: 20px;
	}

	#about .main__second-section{
		margin-top: 80px;
	}

	#about .second-secion__title{
		font-size: 24px;
	}

	#about .instagram-section{
		margin: 80px auto;
		width: 480px;
	}

	.instagram-title{
		font-size: 24px;
		margin-bottom: 20px;
	}

	/* -------------------------404.html------------------------- */
	#error .page-cover{
		padding-bottom: 300px;
	}

	#error .footer__innner-wrapper{
		left: 0;
	}

	#error .main__title{
		max-width: 400px;
		font-size: 28px;
	} 

	#error .main__content{
		margin-top: 2em;
		font-size: 14px;
	}

	#error .main__link{
		margin-top: 3em;
		transition: .3s ease-out;
	}

	#error .main__link:hover{
		opacity: .5;
	}
}