﻿


/*スマホサイト**********************************************************************/
@media screen and (max-width:700px) {



#vhc {
  display: grid;
  place-items: center;
  height: calc(100dvh - 40px);/*スマホ向けにはdvhを使用 - 画面下部の著作権表記を考慮*/
}



/* ボーダーが緩やかにつく */
.stroke {
  background: #646464;
  max-width: 90vw;
  height: 120vw;
  position: relative;
}

.stroke .border {
  content: "";
  position: absolute;
  opacity: 0;
}
.stroke .border.top,
.stroke .border.bottom {
  width: calc(100% - 50px);
}
.stroke .border.top {
  border-top: 8px solid #000000;
  right: 0;
  top: 0;
}
.stroke .border.bottom {
  border-bottom: 8px solid #000000;
  left: 0;
  bottom: 0;
}

.stroke .border.right,
.stroke .border.left {
  height: calc(100% - 50px);
}
.stroke .border.right {
  border-right: 8px solid #000000;
  right: 0;
  top: 0;
}
.stroke .border.left {
  border-left: 8px solid #000000;
  left: 0;
  bottom: 0;
}

.stroke.is-animated .border {
  opacity: 1;
}

.stroke.is-animated .border.top,
.stroke.is-animated .border.bottom {
  animation: stroke-width 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.stroke.is-animated .border.right,
.stroke.is-animated .border.left {
  animation: stroke-height 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes stroke-width {
  0% {
    width: 0;
    opacity: 1;
  }
  100% {
    width: calc(100% - 50px);
    opacity: 1;
  }
}

@keyframes stroke-height {
  0% {
    height: 0;
    opacity: 1;
  }
  100% {
    height: calc(100% - 50px);
    opacity: 1;
  }
}



img#logo_home {
	width: 76vw;
	margin: 24vw 7vw 0vw 7vw;
}



.cp_arrows *, .cp_arrows *:before, .cp_arrows *:after {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.cp_arrows {
	position: relative;
	display: flex;
    width: 50px;
	height: 50px;
	margin: 10vw auto 10vw auto;
	justify-content: center;
	align-items: center;
/*    background-color: #00FF00;*/
}
.cp_arrows .cp_arrow {
	position: absolute;
	top: 80%;/*スタート地点から動かす距離*/
	left: 20%;
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	-webkit-transform-origin: 50% 50%;
	        transform-origin: 50% 50%;
	opacity: 0;
}
.cp_arrows .cp_arrowfirst {
	-webkit-animation: arrow-move08 2s ease-in-out infinite;
	        animation: arrow-move08 2s ease-in-out infinite;
}
.cp_arrows .cp_arrowsecond {
	-webkit-animation: arrow-move08 2s 1s ease-in-out infinite;
	        animation: arrow-move08 2s 1s ease-in-out infinite;
}
.cp_arrows .cp_arrow:before, .cp_arrows .cp_arrow:after {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 30px;
	height: 1px;
	content: '';
	background: #ffffff;/*矢印の色*/
}
.cp_arrows .cp_arrow:before {
	-webkit-transform: rotate(30deg) translateX(-40%);
	        transform: rotate(30deg) translateX(-40%);
	-webkit-transform-origin: top left;
	        transform-origin: top left;
}
.cp_arrows .cp_arrow:after {
	-webkit-transform: rotate(-30deg) translateX(40%);
	        transform: rotate(-30deg) translateX(40%);
	-webkit-transform-origin: top right;
	        transform-origin: top right;
}
@-webkit-keyframes arrow-move08 {
	0% {
		top: 30%;/*スタート地点*/
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	70% {
		opacity: 0;
	}
}
@keyframes arrow-move08 {
	0% {
		top: 30%;/*スタート地点*/
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	70% {
		opacity: 0;
	}
}



#navi_home {
	width: 50vw;
	margin: 0vw 20vw 0vw 20vw;
}
img#navibutton_models {
	width: 50vw;
	margin-bottom: 5vw;
}
img#navibutton_contact {
	width: 50vw;
	margin-bottom: 10vw;
}
.navi_separater {
	display: none;
}



#icon_sns {
	width: 22vw;
	margin-left: 34vw;
}
img#icon_instagram_home {
	width: 10vw;
	float: left;
}
img#icon_x_home {
	width: 10vw;
	margin-left: 2vw;
	float: left;
}



}










/*PCサイト**************************************************************************/
@media screen and (min-width:701px) {



#vhc {
	display: grid;
	place-items: center;
	height: calc(100vh - 40px);/*画面下部の著作権表記を考慮*/
}



/* ボーダーが緩やかにつく */
.stroke {
  background: #646464;
  width: 1180px;
  height: 600px;
  position: relative;
}

.stroke .border {
  content: "";
  position: absolute;
  opacity: 0;
}
.stroke .border.top,
.stroke .border.bottom {
  width: calc(100% - 60px);
}
.stroke .border.top {
  border-top: 10px solid #000000;
  right: 0;
  top: 0;
}
.stroke .border.bottom {
  border-bottom: 10px solid #000000;
  left: 0;
  bottom: 0;
}

.stroke .border.right,
.stroke .border.left {
  height: calc(100% - 60px);
}
.stroke .border.right {
  border-right: 10px solid #000000;
  right: 0;
  top: 0;
}
.stroke .border.left {
  border-left: 10px solid #000000;
  left: 0;
  bottom: 0;
}

.stroke.is-animated .border {
  opacity: 1;
}

.stroke.is-animated .border.top,
.stroke.is-animated .border.bottom {
  animation: stroke-width 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.stroke.is-animated .border.right,
.stroke.is-animated .border.left {
  animation: stroke-height 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes stroke-width {
  0% {
    width: 0;
    opacity: 1;
  }
  100% {
    width: calc(100% - 60px);
    opacity: 1;
  }
}

@keyframes stroke-height {
  0% {
    height: 0;
    opacity: 1;
  }
  100% {
    height: calc(100% - 60px);
    opacity: 1;
  }
}



img#logo_home {
	width: 916px;
	height: 95px;
	margin: 152px 0px 0px 135px;
}



.cp_arrows *, .cp_arrows *:before, .cp_arrows *:after {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.cp_arrows {
	position: relative;
	display: flex;
    width: 50px;
	height: 50px;
	margin: 66px auto 67px auto;
	justify-content: center;
	align-items: center;
/*    background-color: #00FF00;*/
}
.cp_arrows .cp_arrow {
	position: absolute;
	top: 100%;/*スタート地点から動かす距離*/
	left: 20%;
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	-webkit-transform-origin: 50% 50%;
	        transform-origin: 50% 50%;
	opacity: 0;
}
.cp_arrows .cp_arrowfirst {
	-webkit-animation: arrow-move08 2s ease-in-out infinite;
	        animation: arrow-move08 2s ease-in-out infinite;
}
.cp_arrows .cp_arrowsecond {
	-webkit-animation: arrow-move08 2s 1s ease-in-out infinite;
	        animation: arrow-move08 2s 1s ease-in-out infinite;
}
.cp_arrows .cp_arrow:before, .cp_arrows .cp_arrow:after {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 30px;
	height: 3px;
	content: '';
	background: #FFFFFF;/*矢印の色*/
}
.cp_arrows .cp_arrow:before {
	-webkit-transform: rotate(30deg) translateX(-39%);
	        transform: rotate(30deg) translateX(-39%);
	-webkit-transform-origin: top left;
	        transform-origin: top left;
}
.cp_arrows .cp_arrow:after {
	-webkit-transform: rotate(-30deg) translateX(39%);
	        transform: rotate(-30deg) translateX(39%);
	-webkit-transform-origin: top right;
	        transform-origin: top right;
}
@-webkit-keyframes arrow-move08 {
	0% {
		top: 10%;/*スタート地点*/
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	70% {
		opacity: 0;
	}
}
@keyframes arrow-move08 {
	0% {
		top: 10%;/*スタート地点*/
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	70% {
		opacity: 0;
	}
}



#navi_home {
	width: 603px;
	height: 50px;
	margin: 0px 0px 0px 290px;
}
img#navibutton_models {
	width: 300px;
	height: 50px;
	float: left;
}
img#navibutton_contact {
	width: 300px;
	height: 50px;
	float: left;
}
.navi_separater {
	width: 1px;
	height: 14px;
	margin: 18px 0px 18px 0px;
	background-color: #FFFFFF;
	float: left;
}



#icon_sns {
	width: 81px;
	height: 40px;
	margin: 32px 0px 0px 550px;
}
img#icon_instagram_home {
	width: 40px;
	height: 40px;
	float: left;
}
img#icon_x_home {
	width: 40px;
	height: 40px;
	margin-left: 1px;
	float: left;
}



}









