@charset "utf-8";

body {
	background-color: #f08e56;
}

@media screen and (min-width: 769px) {
	
	#container {
		margin-top: -80px;
	}

/*======================================================================
kv
======================================================================*/
	
	#kv {
		display: flex;
		width: 100%;
		height: calc(min(56.2857vw,100vh) - min(5.6vw,80px));
		position: relative;
	}
	
	#kv .wrap {
		width: calc(100% - min(5.6vw,80px));
		height: 100%;
		overflow: hidden;
    	border-radius: 0 0 min(5.6vw,80px) 0;
		background-image: url("../images/kv.jpg");
		background-size: cover;
		background-position: center bottom;
		position: relative;
		z-index: 2;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
/*タイトル（社名）表示*/	
	
	#kv .wrap .updown{
		display: flex;
		overflow: hidden;
	}
	
	#kv .wrap .updown span {
		transform: translateY(110%); 
		display: block;
		animation: 3.8s updown-anim cubic-bezier(0.78, 0, 0.22, 1) forwards;
	}
	#kv .wrap .updown span:nth-child(2) {
		animation-delay: 0.1s;
	}
	#kv .wrap .updown span:nth-child(3) {
		animation-delay: 0.2s;
	}
	#kv .wrap .updown span:nth-child(4) {
		animation-delay: 0.3s;
	}
	#kv .wrap .updown span:nth-child(5) {
		animation-delay: 0.4s;
	}
	#kv .wrap .updown span:nth-child(6) {
		animation-delay: 0.5s;
	}
	#kv .wrap .updown span:nth-child(7) {
		animation-delay: 0.6s;
	}
	
	@keyframes updown-anim{
		
		0%{
			transform: translateY(110%); 
			opacity: 0;
		}
		20%{
			transform: translateY(0);
			opacity: 1;
		}
		50%{
			transform: translateY(0);
		}
		60%{
			transform: translateY(110%);
		}
		100%{
			transform: translateY(110%);
			opacity: 0;
		}
	}

/*丸いKVシャッター*/	
	
	#kv .wrap::after {
		content: '';
		position: absolute;
		bottom: -100%;
		left: -20%;
		z-index: -1;
		width: 200%;
		height: 380%;
		border-radius: 50%;
		background-color: #f08e56;
		animation: 3.6s cubic-bezier(0.83, 0, 0.17, 1) forwards;
		animation-name: img-wrap-after;
		animation-delay: 1.2s;
	}
	
	@keyframes img-wrap-after {
		100% {
			transform:  translate(-100%, 0);		
		}
	}
	
/*スクロールアイコン*/
	
	#kv .scrolldown {
		position: absolute;
		bottom: 30px;
		right: min(3vw,40px);
		animation: 1.5s cubic-bezier(0.85, 0, 0.15, 1) forwards;
		animation-name: move-icon;
		animation-delay: 4.0s;
		opacity: 0;
	}
	
	@keyframes move-icon {
		100% {
			opacity: 1;
			bottom: 0;
		}
	}
	
	#kv .scrolldown span {
		position: absolute;
		left:10px;
		bottom:min(1.0vw,2.5em);
		color: #fff;
		font-size: min(1.8vw,.8rem);
		letter-spacing: 0.1em;
		line-height: 1;
		font-weight: bold;
		writing-mode: vertical-rl;
	}
	
	#kv .scrolldown:before {
		content: "";
		position: absolute;
		bottom:0;
		left:-4px;
		width:10px;
		height:10px;
		border-radius: 50%;
		background:#ffe480;
		z-index: 2;
		animation:
		circlemove 2s ease-in-out infinite,
		cirlemovehide 2s ease-out infinite;
	}

	@keyframes circlemove {
		0% {
			bottom:clamp(75px,6.7857vw,95px);
		}
		100% {
			bottom:min(-0.3571vw,-5px);
		}
	}
	
	@keyframes cirlemovehide {
		0%{opacity:0}
		50%{opacity:1;}
		80%{opacity:0.9;}
		100%{opacity:0;}
	}
	
	.scrolldown:after{
		content:"";
		position: absolute;
		bottom:0;
		left:-.5px;
		width:3px;
		border-radius: 2px;
		height: clamp(80px,7.1428vw,100px);
		background:#fff;
	}

/*======================================================================
#concept
======================================================================*/
	
	#concept {
		margin-top: min(2.8vw,40px);
	}

	#concept .inner {
		display: flex;
		flex-direction: row-reverse;
		justify-content: space-between;
		align-items: center;
	}

	#concept .box {
		width: 49%;
	}


	#concept .card_wrap {
		width: 45%;
		height: min(45vw,570px);
		position: relative;
	}
	
	#concept h3 {
		margin: 80px 0 70px;
		width: 85%;
	}
	
	#concept p {
		color: #fff;
		margin-top: 1em;
		line-height: 2;
		max-width: 510px;
	}
	
	#concept p:first-of-type {
		margin-top: 0;
	}
	
/*======================================================================
#concept
======================================================================*/

	#about .outer {
		max-width: calc(100vw - ((100vw - 1150px)/2));
		box-sizing: border-box;
		margin-left: 0;
		margin-left: max(4.5vw,((100vw - 1150px)/2));
		position: relative;
		background-color: #fff;
		border-radius: min(6vw,80px) 0 0 min(6vw,80px);
		margin-top: 40px;
		padding-right: max(3vw,((100vw - 1250px)/2));
	}
	
	#about .outer .inner {
		display: flex;
		justify-content: space-between;
		padding: 0 0 0 3%;
		padding-top: min(2.8vw,40px);
		padding-bottom: min(2.8vw,40px);
	}
	
	#about .outer .inner .box_wrap {
		display: flex;
		justify-content: space-between;
		margin-left: -4.5vw;
		max-width: 1200px;
	}
	
	#about .outer .inner .box_wrap .box {
		width: 31.5%;
	}
	
	#about .outer .inner .box_wrap .box .image {
		width: calc(100% - 1.2vw);
		border-radius: min(2.4vw,20px);
		margin-bottom: min(1.2vw,10px);
		overflow: hidden;
		filter: drop-shadow(min(1.2vw,10px) min(1.2vw,10px) 0 #d0d0d0);
	}
	
	#about h3 {
		margin-top: 60px;
	}
	
	#about h3 .en {
		display: block;
		text-align: center;
		font-size: min(1.8vw,2.0rem);
		font-weight: bold;
		color: #ecb800;
		position: relative;
	}
	#about h3 .en::before {
		content: "";
		position: absolute;
		width: 1px;
		height: 80px;
		background-color: #ecb800;
		top: -90px;
		left: 50%;
	}
	
	#about h3 .jp {
		display: block;
		text-align: center;
		font-size: min(2.2vw,2.4rem);
		font-weight: bold;
		margin-top: 50px;
	}
	
	#about p {
		margin-top: 1em;
	}
	
	#about h3 + p {
		margin-top: 45px;
		min-height: 88px;
	}
	
	#about .inner .box_wrap .box ul {
		margin-top: 2em;
	}
	
	#about .inner .box_wrap .box ul li {
		margin-top: 1em;
		padding-left: 1.0em;
		position: relative;
	}
	
	#about .inner .box_wrap .box ul li::before {
		content: "";
		position: absolute;
		width: 8px;
		height: 8px;
		background-color: #ecb800;
		border-radius: 50%;
		left: 0;
		top: .55em;
	}
	
/*======================================================================
#events
======================================================================*/	
	
	#events .inner .box_wrap {
		display: flex;
		justify-content: space-between;
		margin-top: 80px;
	}
	
	#events .inner .box_wrap .box {
		width: 48.5%;
	}
	
	#events .inner .box_wrap .box .image {
		position: relative;
	}
	
	#events .inner .box_wrap .box .image img {
		border-radius: 0 min(2.2vw,2.4rem) min(2.2vw,2.4rem) min(2.2vw,2.4rem);
	}
	
	#events .inner .box_wrap .box .image::before {
		display: flex;
		align-items: center;
		justify-content: center;
		max-width: 50%;
		height: min(4.1vw,50px);
		background-color: #ffe480;
		color: #555;
		font-size: min(1.6vw,1.8rem);
		font-weight: bold;
		border-radius: min(2.2vw,2.4rem) min(2.2vw,2.4rem) 0 0;
	}
	
	#events .inner .box_wrap .box:nth-child(1) .image::before {
		content: "ヤルシェ！";
	}
	#events .inner .box_wrap .box:nth-child(2) .image::before {
		content: "やちよのキャンドルナイト";
	}
	
	#events h3 {
		text-align: center;
		font-size: min(2.2vw,2.4rem);
		font-weight: bold;
		margin-top: 50px;
		color: #fff;
	}
	
	#events h3 + p {
		margin-top: 45px;
		box-sizing: border-box;
		padding: 0 1em;
		color: #fff;
	}

/*======================================================================
#company
======================================================================*/
	
	#company .outer {
		max-width: calc(100vw - ((100vw - 1150px)/2));
		box-sizing: border-box;
		margin-left: 0;
		margin-left: max(4.5vw,((100vw - 1150px)/2));
		position: relative;
		background-color: #fff;
		border-radius: min(6vw,80px) 0 0 min(6vw,80px);
		margin-top: 40px;
		padding-right: max(3vw,((100vw - 1250px)/2));
	}
	
	#company .outer .inner {
		display: flex;
		justify-content: space-between;
		padding: 0 0 0 3%;
		padding-top: min(2.8vw,40px);
		padding-bottom: min(2.8vw,40px);
	}
	
	#company .outer .inner .box_wrap {
		display: flex;
		justify-content: space-between;
		margin-left: -4.5vw;
		max-width: 1200px;
	}
	
	#company .table_box {
		width: 48.5%;
		display: flex;
		flex-wrap: wrap;
	}
	
	#company .table_box dt {
		width: 6em;
		border-bottom: 1px solid rgba(48,48,48,.2);
		padding-top: 1em;
		padding-bottom: 1em;
		font-weight: bold;
	}
	
	#company .table_box dd {
		width: calc(100% - 6em);
		border-bottom: 1px solid rgba(48,48,48,.2);
		padding-top: 1em;
		padding-bottom: 1em;
	}
	
	#company .table_box dt:last-of-type,
	#company .table_box dd:last-of-type {
		border-bottom: none;
		padding-bottom: 0;
	}
	
	#company .image_box {
		width: 48.5%;
	}
	
	#company .image_box .map {
		width: calc(100% - min(4.4vw,4.8rem));
		position: relative;
		padding-top: 61%;
		border-radius: min(2.2vw,2.4rem);
		overflow: hidden;
		filter: drop-shadow(4px 4px 8px rgba(0,0,0,0.2));
	}
	
	#company .image_box .map iframe {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
	
	#company .image_box .images {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		margin-top: min(2.2vw,2.4rem);
	}
	
	#company .image_box .images .image{
		width: calc(50% - 1.5vw);
		border-radius: min(2.2vw,2.4rem);
		overflow: hidden;
		filter: drop-shadow(4px 4px 8px rgba(0,0,0,0.2));
	}
	
	#company .image_box .images .image:first-of-type{
		margin-top: min(2.2vw,2.4rem);
	}

/*======================================================================
#contact
======================================================================*/
	
	#contact .inner .box_wrap {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		margin-top: 80px;
	}

	#contact .inner .box_wrap .box {
		width: 50%;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		min-height: min(36vw,464px);
		z-index: 5;
		background-color: #fff;
		border-radius: min(2.2vw,2.4rem);
		margin-top: min(6.6vw,7.2rem);
		margin-bottom: 20px;
		filter: drop-shadow(4px 4px 8px rgba(0,0,0,0.2));
		box-sizing: border-box;
		padding: min(3vw,40px);
	}
	
	#contact .inner .box_wrap .box h3 {
		text-align: center;
		font-size: min(2.2vw,2.6rem);
		font-weight: bold;
	}
	
	#contact .inner .box_wrap .box .tel {
		text-align: center;
		font-size: min(4.6vw,6.0rem);
		font-weight: bold;
		color: #ecb800;
		letter-spacing: .02em;
		padding-left: .2em;
		line-height: 1;
	}
	
	#contact .inner .box_wrap .box .time {
		text-align: center;
		font-size: min(1.8vw,2.0rem);
	}
	
	#contact .inner .box_wrap .box .to_contact {
		text-align: center;
		font-size: min(2.0vw,2.4rem);
		font-weight: bold;
	}
	
	#contact .inner .box_wrap .image {
		width: 58%;
		z-index: 1;
		margin-left: -8%;
		border-radius: min(2.2vw,2.4rem);
		overflow: hidden;
	}
	
	#contact .inner .box_wrap .btn_wrap {
		text-align: center;
	}

/*======================================================================
#スクロールイン挙動
======================================================================*/

	.slidein-left {
		transform: translate(-10%,0);
		opacity: 0;
		transition: all 1.3s cubic-bezier(0.25, 1, 0.5, 1);
	}
  
	.slidein-right {
		transform: translate(10%,0);
		opacity: 0;
		transition: all 1.3s cubic-bezier(0.25, 1, 0.5, 1);
	}

	.slidein-up {
		transform: translate(0,20%);
		opacity: 0;
		transition: all 1.3s cubic-bezier(0.25, 1, 0.5, 1);
	  }
	
	.slidein.trigger {
		opacity: 1;
		transform: translate(0,0);
	}
	
/* #concept: 写真挙動 */

	.card_wrap::before {
		content: "";
		position: absolute;
		width: 100%;
		height: 43%;
		border-radius: 56% 44% 49% 51% / 40% 31% 69% 60%;
		background-color: #ffe480;
		transform: rotate(2deg) scale(1) translate(0, 0%);
		bottom: 0;
		left: 0;
	}

	.card_wrap .card {
		position: absolute;
		border-radius: min(2.4vw,20px);
		overflow: hidden;
		opacity: 0;
		transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1), opacity .4s;
	}

	.card_wrap .card1 {
		width: 50%;
		transform: rotate(-6deg) scale(1) translate(0, 60%);
		top: 10%;
		left: 17%;
	}
	.card_wrap .card2 {
		width: 40%;
		transform: rotate(22deg) scale(1) translate(0, 60%);
		top: 26%;
		left: 57%;
		transition-delay: 0.1s;
	}
	.card_wrap .card3 {
		width: 35%;
		transform: rotate(-20deg) scale(1) translate(0, 60%);
		top: 32%;
		left: 2%;
		transition-delay: 0.2s;
	}
	.card_wrap .card4 {
		width: 38%;
		transform: rotate(9deg) scale(1) translate(0, 60%);
		top: 44%;
		left: 29%;
		transition-delay: 0.3s;
	}

	.card_wrap.trigger .card1 {
		opacity: 1;
		transform: rotate(-6deg) scale(1) translate(0, 0%);
	}
	.card_wrap.trigger .card2 {
		opacity: 1;
		transform: rotate(22deg) scale(1) translate(0, 0%);
	}
	.card_wrap.trigger .card3 {
		opacity: 1;
		transform: rotate(-20deg) scale(1) translate(0, 0%);
	}
	.card_wrap.trigger .card4 {
		opacity: 1;
		transform: rotate(9deg) scale(1) translate(0, 0%);
	}

/* #about: 挙動調整 */
	
	#about .box:nth-child(2) {
		transition-delay: .3s;
	}
	#about .box:nth-child(3) {
		transition-delay: .6s;
	}

/* #events: 挙動調整 */
	
	#events .box:nth-child(1) {
		transition-delay: .5s;
	}
	
/* #company: 挙動調整 */
	
	#company .image_box .map {
		transition-delay: .5s;
	}
	#company .image_box .images .image:nth-of-type(1) {
		transition-delay: .7s;
	}
	#company .image_box .images .image:nth-of-type(2) {
		transition-delay: .9s;
	}

/* #contact: 挙動調整 */
	
	#contact .box {
		transition-delay: .3s;
	}
}

@media screen and (min-width: 521px) and (max-width: 768px) {
	
	#container {
		margin-top: -56px;
	}
	
/*======================================================================
kv
======================================================================*/
	
	#kv {
		display: flex;
		width: 100%;
		height: 60vw;
		position: relative;
	}
	
	#kv .wrap {
		width: calc(100% - 60px);
		height: 100%;
		overflow: hidden;
    	border-radius: 0 0 min(5.6vw,80px) 0;
		background-image: url("../images/kv.jpg");
		background-size: cover;
		background-position: center bottom;
		position: relative;
		z-index: 2;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
/*タイトル（社名）非表示*/	
	
	#kv .wrap .updown{
		display: none;
	}
	
/*スクロールアイコン*/
	
	#kv .scrolldown {
		position: absolute;
		bottom: 20px;
		right: 30px;
		animation: 1.5s cubic-bezier(0.85, 0, 0.15, 1) forwards;
		animation-name: move-icon;
		animation-delay: .5s;
		opacity: 0;
	}
	
	@keyframes move-icon {
		100% {
			opacity: 1;
			bottom: 0;
		}
	}
	
	#kv .scrolldown span {
		position: absolute;
		left:10px;
		bottom:min(1.0vw,2.5em);
		color: transparent;
		font-size: min(1.8vw,.8rem);
		letter-spacing: 0.1em;
		line-height: 1;
		font-weight: bold;
		writing-mode: vertical-rl;
	}
	
	#kv .scrolldown:before {
		content: "";
		position: absolute;
		bottom:0;
		left:-4px;
		width:10px;
		height:10px;
		border-radius: 50%;
		background:#ffe480;
		z-index: 2;
		animation:
		circlemove 2s ease-in-out infinite,
		cirlemovehide 2s ease-out infinite;
	}

	@keyframes circlemove {
		0% {
			bottom:65px;
		}
		100% {
			bottom:-5px;
		}
	}
	
	@keyframes cirlemovehide {
		0%{opacity:0}
		50%{opacity:1;}
		80%{opacity:0.9;}
		100%{opacity:0;}
	}
	
	.scrolldown:after{
		content:"";
		position: absolute;
		bottom:0;
		left:-.5px;
		width:3px;
		border-radius: 2px;
		height: 70px;
		background:#fff;
	}

/*======================================================================
#concept
======================================================================*/
	
	#concept {
		margin-top: 0;
		padding-top: 60px;
	}

	#concept .inner {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		align-items: center;
	}

	#concept .box {
		width: 100%;
	}


	#concept .card_wrap {
		width: 85%;
		height: 90vw;
		position: relative;
	}
	
	#concept h3 {
		margin: 20px 0 55px;
		width: 80%;
		max-width: 350px;
		box-sizing: border-box;
	}
	
	#concept p {
		color: #fff;
		line-height: 1.8;
		box-sizing: border-box;
		text-align: justify;
		width: calc(100% - (60px - 3vw));
	}
	
	#concept p:nth-of-type(2) {
		margin-top: 1em;
	}
	
/*======================================================================
#concept
======================================================================*/

	#about .outer {
		box-sizing: border-box;
		margin-left: 3vw;
		position: relative;
		background-color: #fff;
		border-radius: 6vw 0 0 6vw;
		margin-top: 30px;
		padding-right: 3vw;
	}
	
	#about .outer .inner {
		display: flex;
		justify-content: space-between;
		padding: 30px 0 30px 6vw;
	}
	
	#about .outer .inner .box_wrap {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		margin-left: -3vw;
	}
	
	#about .outer .inner .box_wrap .box {
		width: 100%;
		margin-top: 80px;
	}
	#about .outer .inner .box_wrap .box:nth-child(1) {
		margin-top: 0;
	}
	
	#about .outer .inner .box_wrap .box .image {
		width: calc(100% - 1.2vw);
		border-radius: 3vw;
		margin-bottom: 1.5vw;
		overflow: hidden;
		filter: drop-shadow(1.5vw 1.5vw 0 #d0d0d0);
	}
	
	#about h3 {
		margin-top: 60px;
	}
	
	#about h3 .en {
		display: block;
		text-align: center;
		font-size: 2.0rem;
		font-weight: bold;
		color: #ecb800;
		position: relative;
	}
	#about h3 .en::before {
		content: "";
		position: absolute;
		width: 1px;
		height: 70px;
		background-color: #ecb800;
		top: -90px;
		left: 50%;
	}
	
	#about h3 .jp {
		display: block;
		text-align: center;
		font-size: 2.8rem;
		font-weight: bold;
		margin-top: 20px;
	}
	
	#about p {
		margin-top: 1em;
	}
	
	#about h3 + p {
		margin-top: 55px;
	}
	
	#about .inner .box_wrap .box ul {
		margin-top: 1em;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		
	}
	
	#about .inner .box_wrap .box ul li {
		margin-top: 1em;
		padding-left: 1.0em;
		position: relative;
		min-width: calc(50% - 1em);
	}
	
	#about .inner .box_wrap .box ul li::before {
		content: "";
		position: absolute;
		width: 8px;
		height: 8px;
		background-color: #ecb800;
		border-radius: 50%;
		left: 0;
		top: .55em;
	}
	
/*======================================================================
#events
======================================================================*/	
	
	#events .inner .box_wrap {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		margin-top: 30px;
	}
	
	#events .inner .box_wrap .box {
		width: 100%;
		margin-top: 80px;
	}
	#events .inner .box_wrap .box:first-of-type {
		margin-top: 0;
	}
	
	#events .inner .box_wrap .box .image {
		position: relative;
	}
	
	#events .inner .box_wrap .box .image img {
		border-radius: 0 3vw 3vw 3vw;
	}
	
	#events .inner .box_wrap .box .image::before {
		display: flex;
		align-items: center;
		justify-content: center;
		max-width: 50%;
		height:40px;
		background-color: #ffe480;
		color: #555;
		font-size: 1.4rem;
		font-weight: bold;
		border-radius: 3vw 3vw 0 0;
	}
	
	#events .inner .box_wrap .box:nth-child(1) .image::before {
		content: "ヤルシェ！";
	}
	#events .inner .box_wrap .box:nth-child(2) .image::before {
		content: "やちよのキャンドルナイト";
	}
	
	#events h3 {
		text-align: center;
		font-size: 2.4rem;
		font-weight: bold;
		margin-top: 40px;
		color: #fff;
	}
	
	#events h3 + p {
		margin-top: 35px;
		box-sizing: border-box;
		padding: 0 1em;
		color: #fff;
		text-align: justify;
	}

/*======================================================================
#company
======================================================================*/
	
	#company .outer {
		box-sizing: border-box;
		margin-left: 3vw;
		position: relative;
		background-color: #fff;
		border-radius: 6vw 0 0 6vw;
		margin-top: 30px;
		padding-right: 3vw;
	}
	
	#company .outer .inner {
		display: flex;
		justify-content: space-between;
		padding: 30px 0 30px 6vw;
	}
	
	#company .outer .inner .box_wrap {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		margin-left: -3vw;
	}
	
	#company .table_box {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
	}
	
	#company .table_box dt {
		width: 6em;
		border-bottom: 1px solid rgba(48,48,48,.2);
		padding-top: 1em;
		padding-bottom: 1em;
		font-weight: bold;
	}
	
	#company .table_box dd {
		width: calc(100% - 6em);
		border-bottom: 1px solid rgba(48,48,48,.2);
		padding-top: 1em;
		padding-bottom: 1em;
	}
	
	#company .table_box dt:last-of-type,
	#company .table_box dd:last-of-type {
		border-bottom: none;
		padding-bottom: 0;
	}
	
	#company .image_box {
		width: 100%;
		margin-top: 60px;
	}
	
	#company .image_box .map {
		position: relative;
		padding-top: 61%;
		border-radius: 3vw;
		overflow: hidden;
		filter: drop-shadow(4px 4px 8px rgba(0,0,0,0.2));
	}
	
	#company .image_box .map iframe {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
	
	#company .image_box .images {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		margin-top: 30px;
	}
	
	#company .image_box .images .image{
		width: calc(50% - 1.5vw);
		border-radius: 2vw;
		overflow: hidden;
		filter: drop-shadow(4px 4px 8px rgba(0,0,0,0.2));
	}
	
	#company .image_box .images .image:first-of-type{
		margin-top: 30px;
	}

/*======================================================================
#contact
======================================================================*/
	
	#contact .inner .box_wrap {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		margin-top: 30px;
	}

	#contact .inner .box_wrap .box {
		width: 50%;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		min-height: 36vw;
		z-index: 5;
		background-color: #fff;
		border-radius: 3vw;
		margin-top: 6vw;
		margin-bottom: 20px;
		filter: drop-shadow(4px 4px 8px rgba(0,0,0,0.2));
		box-sizing: border-box;
		padding: 3vw;
	}
	
	#contact .inner .box_wrap .box h3 {
		text-align: center;
		font-size: 1.7rem;
		font-weight: bold;
	}
	
	#contact .inner .box_wrap .box .tel {
		text-align: center;
		font-size: 2.8rem;
		font-weight: bold;
		color: #ecb800;
		letter-spacing: .02em;
		line-height: 1;
		margin-top: 10px;
	}
	
	#contact .inner .box_wrap .box .time {
		text-align: center;
		font-size: 1.4rem;
		margin-top: 10px;
	}
	
	#contact .inner .box_wrap .box .to_contact {
		text-align: center;
		font-size: clamp(1.3rem,1.6vw,1.6rem);
		font-weight: bold;
		margin-top: 10px;
	}
	
	#contact .inner .box_wrap .image {
		width: 58%;
		z-index: 1;
		margin-left: -8%;
		border-radius: 3vw;
		overflow: hidden;
	}
	
	#contact .inner .box_wrap .btn_wrap {
		text-align: center;
		margin-top: 10px;
	}

/*======================================================================
#スクロールイン挙動
======================================================================*/

	.slidein-left {
		transform: translate(-10%,0);
		opacity: 0;
		transition: all 1.3s cubic-bezier(0.25, 1, 0.5, 1);
	}
  
	.slidein-right {
		transform: translate(10%,0);
		opacity: 0;
		transition: all 1.3s cubic-bezier(0.25, 1, 0.5, 1);
	}

	.slidein-up {
		transform: translate(0,10%);
		opacity: 0;
		transition: all 1.3s cubic-bezier(0.25, 1, 0.5, 1);
	  }
	
	.slidein.trigger {
		opacity: 1;
		transform: translate(0,0);
	}
	
/* #concept: 写真挙動 */

	.card_wrap::before {
		content: "";
		position: absolute;
		width: 100%;
		height: 43%;
		border-radius: 56% 44% 49% 51% / 40% 31% 69% 60%;
		background-color: #ffe480;
		transform: rotate(2deg) scale(1) translate(0, 0%);
		bottom: 0;
		left: 0;
	}

	.card_wrap .card {
		position: absolute;
		border-radius: min(2.4vw,20px);
		overflow: hidden;
		opacity: 0;
		transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1), opacity .4s;
	}

	.card_wrap .card1 {
		width: 50%;
		transform: rotate(-6deg) scale(1) translate(0, 60%);
		top: 10%;
		left: 17%;
	}
	.card_wrap .card2 {
		width: 40%;
		transform: rotate(22deg) scale(1) translate(0, 60%);
		top: 26%;
		left: 57%;
		transition-delay: 0.1s;
	}
	.card_wrap .card3 {
		width: 35%;
		transform: rotate(-20deg) scale(1) translate(0, 60%);
		top: 32%;
		left: 2%;
		transition-delay: 0.2s;
	}
	.card_wrap .card4 {
		width: 38%;
		transform: rotate(9deg) scale(1) translate(0, 60%);
		top: 44%;
		left: 29%;
		transition-delay: 0.3s;
	}

	.card_wrap.trigger .card1 {
		opacity: 1;
		transform: rotate(-6deg) scale(1) translate(0, 0%);
	}
	.card_wrap.trigger .card2 {
		opacity: 1;
		transform: rotate(22deg) scale(1) translate(0, 0%);
	}
	.card_wrap.trigger .card3 {
		opacity: 1;
		transform: rotate(-20deg) scale(1) translate(0, 0%);
	}
	.card_wrap.trigger .card4 {
		opacity: 1;
		transform: rotate(9deg) scale(1) translate(0, 0%);
	}

/* #about: 挙動調整 */

/* #events: 挙動調整 */
	
	#events .box:nth-child(1) {
		transition-delay: .5s;
	}
	
/* #company: 挙動調整 */
	
	#company .image_box .images .image:nth-of-type(2) {
		transition-delay: .5s;
	}

/* #contact: 挙動調整 */
	
	#contact .box {
		transition-delay: .3s;
	}
}

@media screen and  (max-width: 520px) {
	
		#container {
		margin-top: -48px;
	}
	
/*======================================================================
kv
======================================================================*/
	
	#kv {
		display: flex;
		width: 100%;
		height: 60vw;
		position: relative;
	}
	
	#kv .wrap {
		width: calc(100% - 50px);
		height: 100%;
		overflow: hidden;
    	border-radius: 0 0 min(5.6vw,80px) 0;
		background-image: url("../images/kv.jpg");
		background-size: cover;
		background-position: center bottom;
		position: relative;
		z-index: 2;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
/*タイトル（社名）非表示*/	
	
	#kv .wrap .updown{
		display: none;
	}
	
/*スクロールアイコン*/
	
	#kv .scrolldown {
		position: absolute;
		bottom: 20px;
		right: 25px;
		animation: 1.5s cubic-bezier(0.85, 0, 0.15, 1) forwards;
		animation-name: move-icon;
		animation-delay: .5s;
		opacity: 0;
	}
	
	@keyframes move-icon {
		100% {
			opacity: 1;
			bottom: 0;
		}
	}
	
	#kv .scrolldown span {
		position: absolute;
		left:10px;
		bottom:min(1.0vw,2.5em);
		color: transparent;
		font-size: min(1.8vw,.8rem);
		letter-spacing: 0.1em;
		line-height: 1;
		font-weight: bold;
		writing-mode: vertical-rl;
	}
	
	#kv .scrolldown:before {
		content: "";
		position: absolute;
		bottom:0;
		left:-4px;
		width:10px;
		height:10px;
		border-radius: 50%;
		background:#ffe480;
		z-index: 2;
		animation:
		circlemove 2s ease-in-out infinite,
		cirlemovehide 2s ease-out infinite;
	}

	@keyframes circlemove {
		0% {
			bottom:65px;
		}
		100% {
			bottom:-5px;
		}
	}
	
	@keyframes cirlemovehide {
		0%{opacity:0}
		50%{opacity:1;}
		80%{opacity:0.9;}
		100%{opacity:0;}
	}
	
	.scrolldown:after{
		content:"";
		position: absolute;
		bottom:0;
		left:-.5px;
		width:3px;
		border-radius: 2px;
		height: 70px;
		background:#fff;
	}

/*======================================================================
#concept
======================================================================*/
	
	#concept {
		margin-top: 0;
		padding-top: 60px;
	}

	#concept .inner {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		align-items: center;
	}

	#concept .box {
		width: 100%;
	}


	#concept .card_wrap {
		width: 85%;
		height: 90vw;
		position: relative;
	}
	
	#concept h3 {
		margin: 20px 0 55px;
		width: 80%;
		max-width: 350px;
		box-sizing: border-box;
	}
	
	#concept p {
		color: #fff;
		line-height: 1.8;
		box-sizing: border-box;
		text-align: justify;
		width: calc(100% - (50px - 3vw));
	}
	
	#concept p:nth-of-type(2) {
		margin-top: 1em;
	}
	
/*======================================================================
#concept
======================================================================*/

	#about .outer {
		box-sizing: border-box;
		margin-left: 3vw;
		position: relative;
		background-color: #fff;
		border-radius: 6vw 0 0 6vw;
		margin-top: 30px;
		padding-right: 3vw;
	}
	
	#about .outer .inner {
		display: flex;
		justify-content: space-between;
		padding: 30px 0 30px 6vw;
	}
	
	#about .outer .inner .box_wrap {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		margin-left: -3vw;
	}
	
	#about .outer .inner .box_wrap .box {
		width: 100%;
		margin-top: 60px;
	}
	#about .outer .inner .box_wrap .box:nth-child(1) {
		margin-top: 0;
	}
	
	#about .outer .inner .box_wrap .box .image {
		width: calc(100% - 1.2vw);
		border-radius: 3vw;
		margin-bottom: 1.5vw;
		overflow: hidden;
		filter: drop-shadow(1.5vw 1.5vw 0 #d0d0d0);
	}
	
	#about h3 {
		margin-top: 60px;
	}
	
	#about h3 .en {
		display: block;
		text-align: center;
		font-size: 2.0rem;
		font-weight: bold;
		color: #ecb800;
		position: relative;
	}
	#about h3 .en::before {
		content: "";
		position: absolute;
		width: 1px;
		height: 70px;
		background-color: #ecb800;
		top: -90px;
		left: 50%;
	}
	
	#about h3 .jp {
		display: block;
		text-align: center;
		font-size: 2.8rem;
		font-weight: bold;
		margin-top: 20px;
	}
	
	#about p {
		margin-top: 1em;
	}
	
	#about h3 + p {
		margin-top: 45px;
	}
	
	#about .inner .box_wrap .box ul {
		margin-top: 1em;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		
	}
	
	#about .inner .box_wrap .box ul li {
		margin-top: 1em;
		padding-left: 1.0em;
		position: relative;
		min-width: calc(50% - 1em);
	}
	
	#about .inner .box_wrap .box ul li::before {
		content: "";
		position: absolute;
		width: 8px;
		height: 8px;
		background-color: #ecb800;
		border-radius: 50%;
		left: 0;
		top: .55em;
	}
	
/*======================================================================
#events
======================================================================*/	
	
	#events .inner .box_wrap {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		margin-top: 30px;
	}
	
	#events .inner .box_wrap .box {
		width: 100%;
		margin-top: 80px;
	}
	#events .inner .box_wrap .box:first-of-type {
		margin-top: 0;
	}
	
	#events .inner .box_wrap .box .image {
		position: relative;
	}
	
	#events .inner .box_wrap .box .image img {
		border-radius: 0 3vw 3vw 3vw;
	}
	
	#events .inner .box_wrap .box .image::before {
		display: flex;
		align-items: center;
		justify-content: center;
		max-width: 50%;
		height:40px;
		background-color: #ffe480;
		color: #555;
		font-size: 1.4rem;
		font-weight: bold;
		border-radius: 3vw 3vw 0 0;
	}
	
	#events .inner .box_wrap .box:nth-child(1) .image::before {
		content: "ヤルシェ！";
	}
	#events .inner .box_wrap .box:nth-child(2) .image::before {
		content: "やちよのキャンドルナイト";
	}
	
	#events h3 {
		text-align: center;
		font-size: 2.4rem;
		font-weight: bold;
		margin-top: 40px;
		color: #fff;
	}
	
	#events h3 + p {
		margin-top: 35px;
		box-sizing: border-box;
		padding: 0 1em;
		color: #fff;
		text-align: justify;
	}

/*======================================================================
#company
======================================================================*/
	
	#company .outer {
		box-sizing: border-box;
		margin-left: 3vw;
		position: relative;
		background-color: #fff;
		border-radius: 6vw 0 0 6vw;
		margin-top: 30px;
		padding-right: 3vw;
	}
	
	#company .outer .inner {
		display: flex;
		justify-content: space-between;
		padding: 30px 0 30px 6vw;
	}
	
	#company .outer .inner .box_wrap {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		margin-left: -3vw;
	}
	
	#company .table_box {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
	}
	
	#company .table_box dt {
		width: 6em;
		border-bottom: 1px solid rgba(48,48,48,.2);
		padding-top: 1em;
		padding-bottom: 1em;
		font-weight: bold;
	}
	
	#company .table_box dd {
		width: calc(100% - 6em);
		border-bottom: 1px solid rgba(48,48,48,.2);
		padding-top: 1em;
		padding-bottom: 1em;
	}
	
	#company .table_box dt:last-of-type,
	#company .table_box dd:last-of-type {
		border-bottom: none;
		padding-bottom: 0;
	}
	
	#company .image_box {
		width: 100%;
		margin-top: 60px;
	}
	
	#company .image_box .map {
		position: relative;
		padding-top: 61%;
		border-radius: 3vw;
		overflow: hidden;
		filter: drop-shadow(4px 4px 8px rgba(0,0,0,0.2));
	}
	
	#company .image_box .map iframe {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
	
	#company .image_box .images {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		margin-top: 30px;
	}
	
	#company .image_box .images .image{
		width: calc(50% - 1.5vw);
		border-radius: 2vw;
		overflow: hidden;
		filter: drop-shadow(4px 4px 8px rgba(0,0,0,0.2));
	}
	
	#company .image_box .images .image:first-of-type{
		margin-top: 30px;
	}

/*======================================================================
#contact
======================================================================*/
	
	#contact .inner .box_wrap {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		margin-top: 30px;
	}

	#contact .inner .box_wrap .box {
		width: 88%;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		min-height: 52.5vw;
		z-index: 5;
		background-color: rgba(255,255,255,0.9);
		border-radius: 3vw;
		margin-top: 12vw;
		margin-bottom: 20px;
		filter: drop-shadow(4px 4px 8px rgba(0,0,0,0.2));
		box-sizing: border-box;
		padding: 6vw 3vw;
	}
	
	#contact .inner .box_wrap .box h3 {
		text-align: center;
		font-size: clamp(2.0rem,3vw,3.6rem);
		font-weight: bold;
	}
	
	#contact .inner .box_wrap .box .tel {
		text-align: center;
		font-size: clamp(3.2rem,7vw,7.0rem);
		font-weight: bold;
		color: #ecb800;
		letter-spacing: .02em;
		line-height: 1;
		margin-top: 3vw;
	}
	
	#contact .inner .box_wrap .box .time {
		text-align: center;
		font-size: clamp(1.75rem,3vw,3.2rem);
		margin-top: 3vw;
	}
	
	#contact .inner .box_wrap .box .to_contact {
		text-align: center;
		font-size: 1.75rem;
		font-weight: bold;
		margin-top: 3vw;
	}
	
	#contact .inner .box_wrap .image {
		width: 88%;
		z-index: 1;
		margin-left: -68%;
		border-radius: 3vw;
		overflow: hidden;
	}
	
	#contact .inner .box_wrap .btn_wrap {
		text-align: center;
		margin-top: 5vw;
	}

/*======================================================================
#スクロールイン挙動
======================================================================*/

	.slidein-left {
		transform: translate(-10%,0);
		opacity: 0;
		transition: all 1.3s cubic-bezier(0.25, 1, 0.5, 1);
	}
  
	.slidein-right {
		transform: translate(10%,0);
		opacity: 0;
		transition: all 1.3s cubic-bezier(0.25, 1, 0.5, 1);
	}

	.slidein-up {
		transform: translate(0,10%);
		opacity: 0;
		transition: all 1.3s cubic-bezier(0.25, 1, 0.5, 1);
	  }
	
	.slidein.trigger {
		opacity: 1;
		transform: translate(0,0);
	}
	
/* #concept: 写真挙動 */

	.card_wrap::before {
		content: "";
		position: absolute;
		width: 100%;
		height: 43%;
		border-radius: 56% 44% 49% 51% / 40% 31% 69% 60%;
		background-color: #ffe480;
		transform: rotate(2deg) scale(1) translate(0, 0%);
		bottom: 0;
		left: 0;
	}

	.card_wrap .card {
		position: absolute;
		border-radius: min(2.4vw,20px);
		overflow: hidden;
		opacity: 0;
		transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1), opacity .4s;
	}

	.card_wrap .card1 {
		width: 50%;
		transform: rotate(-6deg) scale(1) translate(0, 60%);
		top: 10%;
		left: 17%;
	}
	.card_wrap .card2 {
		width: 40%;
		transform: rotate(22deg) scale(1) translate(0, 60%);
		top: 26%;
		left: 57%;
		transition-delay: 0.1s;
	}
	.card_wrap .card3 {
		width: 35%;
		transform: rotate(-20deg) scale(1) translate(0, 60%);
		top: 32%;
		left: 2%;
		transition-delay: 0.2s;
	}
	.card_wrap .card4 {
		width: 38%;
		transform: rotate(9deg) scale(1) translate(0, 60%);
		top: 44%;
		left: 29%;
		transition-delay: 0.3s;
	}

	.card_wrap.trigger .card1 {
		opacity: 1;
		transform: rotate(-6deg) scale(1) translate(0, 0%);
	}
	.card_wrap.trigger .card2 {
		opacity: 1;
		transform: rotate(22deg) scale(1) translate(0, 0%);
	}
	.card_wrap.trigger .card3 {
		opacity: 1;
		transform: rotate(-20deg) scale(1) translate(0, 0%);
	}
	.card_wrap.trigger .card4 {
		opacity: 1;
		transform: rotate(9deg) scale(1) translate(0, 0%);
	}

/* #about: 挙動調整 */

/* #events: 挙動調整 */
	
	#events .box:nth-child(1) {
		transition-delay: .5s;
	}
	
/* #company: 挙動調整 */
	
	#company .image_box .images .image:nth-of-type(2) {
		transition-delay: .5s;
	}

/* #contact: 挙動調整 */
	
	#contact .box {
		transition-delay: .3s;
	}
}