@charset "utf-8";


body {
	background-color: #fff;
	color: #332927;
	font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', YuGothic, 'Yu Gothic', 'メイリオ', Meiryo, sans-serif;
	font-size: 13px;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	word-wrap: break-word;
	-webkit-text-size-adjust: 100%;
	-webkit-font-feature-settings: "tnum";
	font-feature-settings: "tnum";
}


img {
	max-width: 100%;
}

main {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 50px 30px 0;
	display: block;
	width: 100%;
	overflow-x: hidden;
}

#wrapper {
	position: relative;
}

.pc-dsp {
	display: none;
}

.sp-dsp {
	display: block;
}


/*----- Header -----*/

.menu-trigger {
	display: inline-block;
	position: fixed;
	top: 40px;
	right: 30px;
	width: 34px;
	height: 24px;
	z-index: 99;
	-webkit-transition: .4s all;
	transition: .4s all;
}

.menu-trigger {
	z-index: 999;
}

.parts {
	display: inline-block;
	position: absolute;
	width: 100%;
	height: 2px;
	background-color: #000;
}

.parts01 {
	top: 0;
}

.parts02 {
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.parts03 {
	bottom: 0;
}


/* Menu Button Open */

.menu-trigger.active .parts02 {
	opacity: 0;
}

.menu-trigger .parts01 {
	-webkit-animation: menu-bar01 .75s forwards;
	animation: menu-bar01 .75s forwards;
}

@-webkit-keyframes menu-bar01 {
	0% {
		top: 50%;
		-webkit-transform: translateY(-50%) rotate(25deg);
	}

	50% {
		top: 50%;
		-webkit-transform: translateY(-50%) rotate(0);
	}

	100% {
		-webkit-transform: translateY(0) rotate(0);
	}
}

@keyframes menu-bar01 {
	0% {
		top: 50%;
		-webkit-transform: translateY(-50%) rotate(25deg);
		transform: translateY(-50%) rotate(25deg);
	}

	50% {
		top: 50%;
		-webkit-transform: translateY(-50%) rotate(0);
		transform: translateY(-50%) rotate(0);
	}

	100% {
		-webkit-transform: translateY(0) rotate(0);
		transform: translateY(0) rotate(0);
	}
}

.menu-trigger .parts02 {
	-webkit-transition: all .25s .25s;
	transition: all .25s .25s;
	opacity: 1;
}

.menu-trigger .parts03 {
	-webkit-animation: menu-bar02 .75s forwards;
	animation: menu-bar02 .75s forwards;
}

@-webkit-keyframes menu-bar02 {
	0% {
		bottom: 50%;
		-webkit-transform: translateY(50%) rotate(-25deg);
		width: 100%;
	}

	50% {
		bottom: 50%;
		-webkit-transform: translateY(50%) rotate(0);
		width: 100%;
	}

	100% {
		-webkit-transform: translateY(0) rotate(0);
	}
}

@keyframes menu-bar02 {
	0% {
		bottom: 50%;
		-webkit-transform: translateY(50%) rotate(-25deg);
		transform: translateY(50%) rotate(-25deg);
		width: 100%;
	}

	50% {
		bottom: 50%;
		-webkit-transform: translateY(50%) rotate(0);
		transform: translateY(50%) rotate(0);
		width: 100%;
	}

	100% {
		-webkit-transform: translateY(0) rotate(0);
		transform: translateY(0) rotate(0);
	}
}

.menu-trigger.active .parts01 {
	-webkit-animation: active-menu-bar01 .75s forwards;
	animation: active-menu-bar01 .75s forwards;
}

@-webkit-keyframes active-menu-bar01 {
	0% {
		-webkit-transform: translateY(0) rotate(0);
	}

	50% {
		top: 50%;
		-webkit-transform: translateY(-50%) rotate(0);
	}

	100% {
		top: 50%;
		-webkit-transform: translateY(-50%) rotate(25deg);
	}
}

@keyframes active-menu-bar01 {
	0% {
		-webkit-transform: translateY(0) rotate(0);
		transform: translateY(0) rotate(0);
	}

	50% {
		top: 50%;
		-webkit-transform: translateY(-50%) rotate(0);
		transform: translateY(-50%) rotate(0);
	}

	100% {
		top: 50%;
		-webkit-transform: translateY(-50%) rotate(25deg);
		transform: translateY(-50%) rotate(25deg);
	}
}

.menu-trigger.active .parts02 {
	opacity: 0;
}

.menu-trigger.active .parts03 {
	-webkit-animation: active-menu-bar03 .75s forwards;
	animation: active-menu-bar03 .75s forwards;
}

@-webkit-keyframes active-menu-bar03 {
	0% {
		-webkit-transform: translateY(0) rotate(0);
	}

	50% {
		bottom: 50%;
		-webkit-transform: translateY(50%) rotate(0);
		width: 100%;
	}

	100% {
		bottom: 50%;
		-webkit-transform: translateY(50%) rotate(-25deg);
		width: 100%;
	}
}

@keyframes active-menu-bar03 {
	0% {
		-webkit-transform: translateY(0) rotate(0);
		transform: translateY(0) rotate(0);
	}

	50% {
		bottom: 50%;
		-webkit-transform: translateY(50%) rotate(0);
		transform: translateY(50%) rotate(0);
		width: 100%;
	}

	100% {
		bottom: 50%;
		-webkit-transform: translateY(50%) rotate(-25deg);
		transform: translateY(50%) rotate(-25deg);
		width: 100%;
	}
}


/* Menu Contents */

.header-menu {
	position: fixed;
	top: 0;
	left: 0;
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
	z-index: 998;
	width: 100%;
	width: calc(100% - 10% - 46px);
	height: 100vh;
	background-color: #fff;
	-webkit-transition: .5s all;
	transition: .5s all;
}

.header-menu {
	background-color: rgb(255, 255, 255, 0.95);
}

.header-menu {
	width: calc(100%);
/*	padding: 0 50px;*/
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
/*
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
*/
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.header-menu.open {
	-webkit-transform: translateX(0);
	transform: translateX(0);
}


.header-menu-wrap {
	position: relative;
	height: 100%;
	margin-right: 18.75px;
	margin-right: calc(100vw * 0.05);
	padding-top: 120px;
	padding-left: 18.75px;
	padding-left: calc(100vw * 0.05);
}

.header-menu #menu_title {
	position: absolute;
	width: 25px;
	height: 250px;
	top: 20px;
	left: 30px;
	
}

.header-menu #menu_title img:first-child {
	width: 100%;
	height: auto;
}

.header-menu #menu_title img:last-child {
	margin-top: 20px;
	width: 100%;
	height: auto;
}

.header-menu ul {
	margin-top: 80px;
	display: block;
}

.header-menu ul li {
	width: 200px;
	height: 80px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0 auto;
	border-bottom: 1.5px solid #d3d3d3;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.header-menu ul li a {
	color: #332927;
	font-size: 20px;
}

.header-menu ul li a:visited {
	color: #332927;
}

.overlay {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 997;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.85);
	opacity: 0;
	-webkit-transition: 1s ease;
	transition: 1s ease;
}

.overlay {
	background-color: rgba(0, 0, 0, 0.3);
}


.overlay.visible {
	display: block;
	opacity: 1;
}

.growing-img {
	width: 100%;
	height: auto;
	/*  padding-top: 50%;*/
	position: relative;
}

.growing-img .img_flame {
	background-image: url(../../img/top/sp/sp_1.jpg);
}

.flower-img .img_flame {
	background-image: url(../../img/top/pc/pc_2.jpg);
}

.img_flame {
	display: block;
	position: absolute;
	height: 100%;
	width: 100%;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}


/*----- Footer -----*/

footer {
	position: relative;
	padding-bottom: 40px;
}

.break {
	position: relative;
	height: 65px;
	margin-bottom: 30px;
}

.break-line {
	display: block;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 100%;
	height: 1px;
	background-color: #000;
}

.footer-logo {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 90px;
	padding: 15px;
	background-color: #fff;
}

.footer-contents {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 120px;
	/*  padding: 30px 50px 0;*/
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}


.footer-contents ul,
.address {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-left: 30px;
}

.footer-contents > .address {
	padding-left: 0px;
	width: 116px;
	font-family: YuGothic, 'Yu Gothic', 'メイリオ', Meiryo, sans-serif;
}


.footer-contents p,
.footer-contents ul li,
.footer-nav li {
	white-space: nowrap;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}

.footer-contents ul li {
	margin-right: 20px;
	letter-spacing: 1px;
}

.footer-contents ul li:nth-last-child(1) img, .footer-contents ul li:nth-last-child(2) img{
	display: inline-block;
/*	margin-bottom: -0.2em;*/
}

.footer-contents ul li img {
	width: 18px;
	height: 18px;
	margin-bottom: 7px;
}

.footer-contents ul li:last-child {
	margin-right: 0;
}

.address p:nth-of-type(1) {
	margin: 0;

}

.address p:nth-of-type(2) {
	margin-left: 50px;
	margin-right: 10px;
	font-weight: bold;
	font-family: sans-serif;
	letter-spacing: 10px;
}


#foot_name {
	display: block;
	margin: 0 22px;
	width: 17px;
	/*  height: 100px;*/
	position: relative;
	text-align: left;
}

#foot_name img {
	display: block;
	height: auto;
	width: 100%;
	margin: 0;
	-o-object-fit: cover;
	object-fit: cover;
}

/*
#foot_name::after{
  display: block;
  content: "";
  left: 10px;
  width: 100px;
  height: 30px;
  transform: rotate(90deg);
  transform-origin: 0 0;
  position: absolute;
  background-image: url(../../img/AMIE-03.svg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
}
*/

.address p:last-child {
	margin-right: 25px;
	/*  font-weight: bold;*/
	font-size: 18px;
	letter-spacing: 10px;
}

.footer-nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: absolute;
	bottom: 40px;
	left: 30px;
	width: 94px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.footer-nav li a {
	color: #332927;
	letter-spacing: 2px;
}

footer small {
	display: block;
/*	padding: 0 50px;*/
	text-align: right;
	margin: 0 25px 0 auto;
}

#about_button:hover {
	background-color: rgb(255, 255, 255, 0.3);
}

/*----- Top Page -----*/

/* First View */

.first-view {
	position: relative;
	width: 100%;
	height: 100vh;
	height: calc(var(--vh, 1vh) * 100);
	/*
  background: url(../images/first-view_background.jpg) no-repeat;
  background-position: bottom 0 right -40px;
  background-size: 90%;
*/
}

.fv-right {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 60%;
	height: auto;
	max-width: 297px;
	max-height: 100%;
}

.fv-left {
	display: none;
}

.stamp {
	position: absolute;
	bottom: 100px;
	left: 75px;
	width: 45px;
	height: auto;
}

.main-title {
	display: inline-block;
	position: relative;
	padding: 80px 95px 0 50px;
	overflow: hidden;
}

.main-title h1 {
	font-size: 26px;
	letter-spacing: 15px;
	float: left;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	margin-bottom: 10px;
}

.logo {
	position: absolute;
	right: 0;
	bottom: 40px;
	width: 50px;
}

@media screen and (min-width: 768px) {
	.fv-left {
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 40%;
		height: auto;
		max-width: 400px;
	}

	.stamp {
		right: 310px;
		left: auto;
	}
}

@media screen and (min-width: 960px) {
	.fv-right {
		max-width: 360px;
		height: auto;
	}

	.stamp {
		right: 370px;
		width: 55px;
	}
}

@media screen and (min-width: 1440px) {
	.fv-right {
		max-width: 435px;
	}

	.fv-left {
		max-width: 480px;
	}

	.first-view .main-title {
		padding-right: 380px;
		padding-bottom: 100px;
	}

	.first-view .main-title h1 {
		font-size: 38px;
	}

	.stamp {
		right: 445px;
		width: 60px;
	}
}

/* Common */

.top-contents .container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.sec-title {
	width: 26px;
	margin-right: 25px;
	font-size: 26px;
	letter-spacing: 15px;
	white-space: nowrap;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}

.sec-title span {
	margin-top: 15px;
	font-size: 13px;
	letter-spacing: 3px;
}

.sec-contents {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.lead {
	font-size: 18px;
	letter-spacing: 5px;
	line-height: 1.8;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	text-justify: inter-ideograph;
}

.split-line {
	display: block;
	width: 40px;
	height: 1px;
	margin: 35px 0;
	background-color: #555;
}

.text {
	letter-spacing: 5px;
	line-height: 2;
}

/* images */

.img-box {
	position: relative;
	width: 100%;
}

.img-box::after {
	content: "";
	display: block;
	padding-top: 150%;
}

.img-box img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	font-family: 'object-fit: cover;'
}

/* Growing Up */

.growing-up {
	margin-bottom: 70px;
}

.growing-up .container {
	margin-bottom: 60px;
}

.growing-img {
	margin-bottom: 35px;
}

/* One Grain */

.one-grain {
	margin-bottom: 70px;
}

.one-grain .text {
	margin-bottom: 30px;
}

.one-grain a {
	display: inline-block;
	width: 200px;
	padding: 15px 0;
	border: solid 1px #000;
	color: #332927;
	font-size: 18px;
	letter-spacing: 7px;
	text-align: center;
	text-indent: 7px;
	white-space: nowrap;
}

/* About */

.top-about {
	margin-bottom: 50px;
}

.about-img {
	margin-right: -30px;
	/*  flex: 1;*/
	width: 100%;
	height: auto;
	padding-top: 150%;
	position: relative;
}

/*
.about-img::after {
  content: "";
  display: block;
}
*/

.about-img span {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	display: block;
	width: 100%;
	height: 100%;
	background-image: url(../../img/top/sp/sp_3.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.about-img img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	font-family: 'object-fit: cover;'
}

.catch {
	position: absolute;
	top: 50px;
	right: 40px;
	width: 78px;
	color: #fff;
	font-size: 20px;
	letter-spacing: 8px;
	line-height: 1.8;
	white-space: nowrap;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}

.about-img a {
	display: inline-block;
	position: absolute;
	bottom: 40px;
	left: 40px;
	padding: 24px 12px;
	border: solid 1px #fff;
	color: #fff;
	font-size: 20px;
	letter-spacing: 8px;
	white-space: nowrap;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}


.hover_button:hover {
	background-color: #f5f5f5;
}



/* SNS */

.sns {
	display: none;
	margin-bottom: 70px;
}

.frame {
	height: 500px;
	padding: 30px;
	border: dashed 1px #000;
}

.facebook {
	margin-bottom: 30px;
}

.frame p {
	font-size: 18px;
	letter-spacing: 2px;
}

/* Map */

.map {
	margin-bottom: 70px;
}

.amie-map {
	position: relative;
	width: 100%;
}

.amie-map::after {
	content: "";
	display: block;
	padding-top: 150%;
}

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

.footer-contents li a {
	color: #332927;
}

.footer-contents li a:link {
	color: #332927;
}

.footer-contents li a:visited {
	color: #332927;
}


.insta_section .container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}


#instagram-feed1 {
	width: 100%;
}


.instagram_profile {
	display: none;
}

.instagram_gallery {
	width: 100%;
	margin-bottom: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}



.instagram_gallery a {
	width: calc(100% / 3 - 5px);
	margin-bottom: 5px;
}

/*
.instagram_gallery::after{
	display: block;
	content:"";
	width: calc(100% / 4 - 10px);
}
*/

.instagram_gallery a img {
	width: 100% !important;
	height: auto;
}


@media screen and (min-width: 798px) {

	.instagram_gallery a {
		width: calc(100% / 4 - 5px);
		margin-bottom: 5px;
	}

	.instagram_gallery a:last-of-type {
		display: none;
	}


}

.insta_section {
	margin-bottom: 60px;
}


/*
 * Snap Widget
 */
@media screen and (min-width: 798px) {
    .media-grid .media-list-item {
        width: 25% !important;
    }
}

iframe#iFrameResizer0 {
    background: #eee;
}