@charset "UTF-8";

* {
	margin: 0;
	padding: 0;
  text-decoration: none;
  list-style-type: none;
  font-family: serif;
}

*, *:before, *:after { box-sizing: border-box; }

html {
  overflow: auto;
}

body {
  position: relative;
  overflow: hidden;
}

nav.NavMenu{
	position: fixed; /*表示位置を固定*/
	z-index: 2; /*重ね順を変更*/
	top: -0.7vw; /*表示位置を指定*/
	left: 70%; /*表示位置を指定*/
	/*背景を白にする*/
	color: #000; /*文字色を黒にする*/
	text-align: center; /*テキストを中央揃え*/
	width: 30%; /*全幅表示*/
	transform: translatex(100%); /*ナビを上に隠す上から出したい場合は、transform: translateYを使う。*/
  transition: all 0.6s;/*アニメーションの時間を指定*/
}

nav.NavMenu ul{
	background: #ccc; /*背景をグレーにする*/
	width: 100%;
	margin: 0 auto;
	padding: 0;
  border-radius: 0 0 0 20%;
}

nav.NavMenu ul li{
	font-size: 1.1em;
	list-style-type: none;
	padding: 0;
	width: 100%;
}

nav.NavMenu ul li:last-child{
	padding-bottom: 0;
}

nav.NavMenu ul li a {
	display: block; /*クリックできる領域を広げる*/
	color: #000;
	padding: 1em 0;
}

/*トグルボタンが押されたときに付与するクラス*/
nav.NavMenu.active{
	transform: translateY(0%);/*上から出したい場合は、transform: translateYを使う。*/
}

/*トグルボタンのスタイルを指定*/
.Toggle {
	position: fixed;/* bodyに対しての絶対位置指定 */
	right: 13px;
	top: 12px;
	width: 42px;
	height: 42px;
	cursor: pointer;/*divだけどカーソルが変わるようにしている*/
	z-index: 3;/*ボタンを一番上にしている(押せなくなるから)*/
}

.Toggle span {
	display: block;
	position: absolute;
	left: 6px;
	width: 30px;
	border-bottom: solid 3px #000;
	transition: .35s ease-in-out;/*変化の速度を指定*/
}

.Toggle span:nth-child(1) {
	top: 9px;
  
}

.Toggle span:nth-child(2) {
	top: 18px;
}

.Toggle span:nth-child(3) {
	top: 27px;
}

/* 最初のspanをマイナス45度に */
.Toggle.active span:nth-child(1) {
	top: 18px;
	left: 6px;
	transform: rotate(-45deg);
}

/* 2番目と3番目のspanを45度に */
.Toggle.active span:nth-child(2),
.Toggle.active span:nth-child(3) {
	top: 18px;
	transform: rotate(45deg);
}

body {
    background-color: rgb(231, 238, 245);
}

#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 14px;
  line-height: 1;
  z-index: 1000;
}
#page-top a {
  background: #a4b893;
  text-decoration: none;
  color: #fff;
  width: 60px;
  padding: 12px 5px;
  text-align: center;
  display: block;
  border-radius: 50%;
  opacity: 0.9;
  transition: all .4s ease;
}
#page-top a:hover {
  text-decoration: none;
  opacity: 0.5;
}

.top-wrap {
    display: flex;
    width: 100%;
}

.company p {
  margin-top: 1vw;
  margin-left: 7vw;
  margin-bottom: -1vw;
  font-size: 1.1vw;
}

.company h1{
  margin-left: 3vw;
  font-size: 3vw;
}

.border-wrap {
    position: absolute;
}

.border1 {
    position: absolute;
    width: 40vw;
    height: 90vw;
    margin-top: -10vw;
    margin-left: 2vw;
    border-right: 1px solid #c75353;
    transform: rotate(-45deg);
    z-index: -10;
}

.border2 {
    position: absolute;
    height: 58.7vw;
    border-left: 1px solid #134681;
    transform: rotate(-45deg);
    z-index: -10;
}

.border3 {
    position: absolute;
    width: 50vw;
    margin-left: -15vw;
    padding: 5vw;
    border-bottom: 1px solid #a3a3a3;
    transform: rotate(-45deg);
    z-index: -10;
}

.border4 {
    position: absolute;
    width: 100vw;
    height: 10vw;
    margin-top: 10vw;
    margin-left: -5vw;
    border-bottom: 1px solid #417c19;
    transform: rotate(-45deg);
    z-index: -10;
}

.top-text {
    position: absolute;
    width: 30%;
    margin-left: 6vw;
    margin-top: 25vw;
}

.top-text h1 {
    position: absolute;
    width: 90%;
    top: -3vw;
    left: 14vw;
    font-size: 3vw;
    color: #3b3b3b;
    transform: translate(-50%, -50%);
}

.top-text p {
    font-size: 1.5vw;
    margin-left: -1vw;
    white-space: keep-all;
}

.material1 {
  position: absolute;
  width: 100%;
  height: 13vw;
  margin-left: 10vw;
  margin-top: -10vw;
  animation: infinity-scroll-left 25s infinite linear  both;
  z-index: -1;
}
@keyframes infinity-scroll-left {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  20% {
    transform: translateX(-30%);
    opacity: 0;
  }
  40% {
    transform: translateX(100%);
    opacity: 0;
  }
  60% {
    transform: translateX(70%);
    opacity: 1;
  }
  80% {
    transform: translateX(35%);
    opacity: 1;
  }
  100% {
  transform: translateX(0%);
  opacity: 1;
}
}

.material1 img {
  width: 13vw;
  height: 13vw;
}

.material2 {
  position: absolute;
  width: 100%;
  height: 10vw;
  margin-left: 70vw;
  margin-top: 3;
  animation: infinity-scroll-left2 45s infinite linear  both;
  z-index: -1;
}
@keyframes infinity-scroll-left2 {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  20% {
    transform: translateX(-35%);
    opacity: 1;
  }
  40% {
    transform: translateX(-70%);
    opacity: 0.1;
  }
  60% {
    transform: translateX(-100%);
    opacity: 0;
  }
  80% {
    transform: translateX(30%);
    opacity: 0;
  }
  100% {
  transform: translateX(0%);
  opacity: 1;
}
}

.material2 img {
  width: 10%;
  height: 10vw;
}

.material3 {
  position: absolute;
  width: 100%;
  height: 20vw;
  margin-left: 30vw;
  margin-top: 14vw;
  animation: infinity-scroll-left3 20s infinite linear  both;
  z-index: -1;
}
@keyframes infinity-scroll-left3 {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  20% {
    transform: translateX(-35%);
    opacity: 0.2;
  }
  40% {
    transform: translateX(-70%);
    opacity: 0;
  }
  60% {
    transform: translateX(60%);
    opacity: 0;
  }
  80% {
    transform: translateX(30%);
    opacity: 0.3;
  }
  100% {
  transform: translateX(0%);
  opacity: 1;
}
}

.material3 img {
  width: 20vw;
  height: 20vw;
}

.material4 {
  position: absolute;
  width: 100%;
  height: 8vw;
  margin-left: 70vw;
  margin-top: 29vw;
  animation: infinity-scroll-left4 55s infinite linear  both;
  z-index: -3;
}
@keyframes infinity-scroll-left4 {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  20% {
    transform: translateX(-35%);
    opacity: 1;
  }
  40% {
    transform: translateX(-70%);
    opacity: 0.2;
  }
  60% {
    transform: translateX(-110%);
    opacity: 0;
  }
  80% {
    transform: translateX(30%);
    opacity: 0;
  }
  100% {
  transform: translateX(0%);
  opacity: 1;
}
}

.material4 img {
  width: 8vw;
  height: 8vw;
}

.material5 {
  position: absolute;
  width: 100%;
  height: 10vw;
  margin-left: 20vw;
  margin-top: 42vw;
  animation: infinity-scroll-left5 25s infinite linear  both;
  z-index: -2;
}
@keyframes infinity-scroll-left5 {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  20% {
    transform: translateX(-30%);
    opacity: 0;
  }
  40% {
    transform: translateX(100%);
    opacity: 0;
  }
  60% {
    transform: translateX(70%);
    opacity: 0.2;
  }
  80% {
    transform: translateX(35%);
    opacity: 1;
  }
  100% {
  transform: translateX(0%);
  opacity: 1;
}
}

.material5 img {
  width: 10%;
  height: 10vw;
}

video {
  position: absolute;
  display: block;
  width: 60%;
  right: 0;
  margin-top: 12vw;
}

.back-wrap {
    width: 100%; 
    height: 50vw;
    margin-top: 50vw;
}

.back-image1{
    position: absolute;
    width: 100%;
    height: 60vw;
    background-image: url(../images/backimage1.png);
    background-size: 100% 150%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    animation: parallax-1 linear both;
    animation-timeline: view();
}

@keyframes parallax-1 {
  from {
    background-position: center 0;
  }

  to {
    background-position: center -300px;
  }

}

.back-image2 {
    position: relative;
    width: 70%;
    height: 50vw;
    top: 5vw;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../images/backimage2.png);
    background-size: 150% 130%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    animation: parallax-2 linear both;
    animation-timeline: view();
}

@keyframes parallax-2 {
  from {
    background-position: center 0;
    border-radius: 50%;
  }

  to {
    background-position: center -200px;
    border-radius: 50%;
  }

}
.back-image1::before {
    content: '';
    background-color: rgba(0,0,0,.4);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.back-image2::before {
    content: '';
    background-color: rgba(0,0,0,.3);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 50%;
}

.back-image2 h3 {
    position: absolute;
    color: #fff;
    font-size: 2.5vw;
    letter-spacing: 0.2vw;
    margin-top: 0.7vw;
    margin-left: 48%;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}

.about-content {
  margin-top: 10vw;
  padding-top: 20vw;
  height: 130vw;
  display: flex;
  background-color: #3b3b3b;
}

.about-content h3 {
  margin-left: 10%;
  font-size: 2vw;
  color: #f1f1f1;
}

.about-img-p {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 50vw;
}

.about-img-p img {
  width: 100%;
  height: 40vw;
}

.about-img-p p {
  color: #f1f1f1;
  font-size: 1.3vw;
  margin-top: 2vw;
  letter-spacing: 0.15vw;
}

.about-items {
  margin-top: -40vw;
}

.parallax1 {
	position: relative;
	width: 30vw;
  height: 25vw;
	left: 1vw;
	z-index: 10;
  border-radius: 110px;
  transition: 0.1s;
  animation: parallax1 linear;
  animation-timeline: view();
  animation-range: entry 0% contain 50%;
}

@keyframes parallax1 {
  0% {
    opacity: 0;
    scale: 0.5;
  }
  50% {
    opacity: 0.5;
    scale: 1;
  }
  100% {
    opacity: 1;
    scale: 1;
  }
}

.parallax2 {
	position: relative;
	width: 20vw;
  height: 15vw;
  left: -8vw;
	z-index: 10;
  border-radius: 80px;
  transition: 0.1s;
  animation: parallax2 linear;
  animation-timeline: view();
  animation-range: entry 0% contain 50%;
}

@keyframes parallax2 {
  0% {
    opacity: 0;
    scale: 0.5;
  }
  50% {
    opacity: 0.5;
    scale: 1;
  }
  100% {
    opacity: 1;
    scale: 1;
  }
}

.parallax3 {
	position: relative;
	width: 25vw;
  height: 20vw;
  left: -5vw;
	z-index: 10;
  border-radius: 100px;
  transition: 0.1s;
  animation: parallax2 linear;
  animation-timeline: view();
  animation-range: entry 0% contain 50%;
}

@keyframes parallax3 {
  0% {
    opacity: 0;
    scale: 0.5;
  }
  50% {
    opacity: 0.5;
    scale: 1;
  }
  100% {
    opacity: 1;
    scale: 1;
  }
}

.parallax4 {
	position: relative;
	width: 25vw;
  height: 20vw;
  left: 30vw;
	z-index: 10;
  border-radius: 100px;
  transition: 0.1s;
  animation: parallax2 linear;
  animation-timeline: view();
  animation-range: entry 0% contain 50%;
}

@keyframes parallax4 {
  0% {
    opacity: 0;
    scale: 0.5;
  }
  50% {
    opacity: 0.5;
    scale: 1;
  }
  100% {
    opacity: 1;
    scale: 1;
  }
}

.parallax5 {
	position: relative;
	width: 40vw;
  height: 30vw;
  left: 33vw;
	z-index: 9;
  border-radius: 150px;
  transition: 0.1s;
  animation: parallax5 linear;
  animation-timeline: view();
  animation-range: entry 0% contain 50%;
}

@keyframes parallax5 {
  0% {
    opacity: 0;
    scale: 0.5;
  }
  50% {
    opacity: 0.5;
    scale: 1;
  }
  100% {
    opacity: 1;
    scale: 1;
  }
}

.reason {
  width: 60%;
  margin-top: 150vw;
  margin-left: auto;
  margin-right: auto;
}

.reason h2 {
  margin-bottom: 10vw;
  text-align: center;
  font-size: 2.2vw;
}

.reason h3 {
  font-size: 1.8vw;
  margin-bottom: 3vw;
}

.reason-nunber1 {
  position: absolute;
  margin-top: -15vw;
  margin-left: -5vw;
  font-size: 20vw;
  color: #c7c7c7;
  z-index: -1;
}

.reason-content1 {
  display: flex;
}

.reason-text1 {
  width: 55%;
  font-size: 1.2vw;
}

.reason-image1 {
  width: 40%;
  margin-left: auto;
}

.reason-image1 img {
  width: 100%;
  height: 30vw;
}

.reason-nunber2 {
  position: absolute;
  margin-top: 4vw;
  margin-left: 53vw;
  font-size: 20vw;
  color: #c7c7c7;
  z-index: -1;
}

.reason-content2 {
  margin-top: 15vw;
  display: flex;
}

.reason-text2 {
  width: 55%;
  font-size: 1.2vw;
}

.reason-image2 {
  width: 40%;
  margin-right: auto;
}

.reason-image2 img {
  width: 100%;
  height: 30vw;
}

.reason-nunber3 {
  position: absolute;
  margin-top: 4vw;
  margin-left: -5vw;
  font-size: 20vw;
  color: #c7c7c7;
  z-index: -1;
}

.reason-content3 {
  display: flex;
  margin-top: 15vw;
}

.reason-text3 {
  width: 55%;
  font-size: 1.2vw;
}

.reason-image3 {
  width: 40%;
  margin-left: auto;
}

.reason-image3 img {
  width: 100%;
  size: 110% 100%;
  height: 30vw;
}


.curve1 {
  position: absolute;
  width: 80%;
  height: 70vw;
  margin-left: -40vw;
  top: 220vw;
  border-right: 2px solid #c75353;
  border-radius: 50%;
  z-index: -2;
  opacity: 0.5;
}

.curve2 {
  position: absolute;
  width: 80%;
  height: 70vw;
  margin-left: 60vw;
  top: 270vw;
  border-left: 2px solid #134681;
  border-radius: 50%;
  z-index: -2;
  opacity: 0.5;
}

.curve3 {
  position: absolute;
  width: 80%;
  height: 70vw;
  margin-left: -40vw;
  top: 320vw;
  border-right: 2px solid #417c19;
  border-radius: 50%;
  z-index: -2;
  opacity: 0.5;
}

.merchandise-wrap {
  padding-top: 10vw;
  width: 100%;
}

.features-back h3 {
  position: absolute;
  margin-top: -7.5vw;
  margin-left: 10vw;
  font-size: 8vw;
  opacity: 0.2;
  z-index: 1;
}

.features-back2 h3 {
  position: absolute;
  margin-top: -3vw;
  margin-left: 35vw;
  font-size: 8vw;
  opacity: 0.1;
  z-index: 2;
}

.features-back3 h3 {
  position: absolute;
  margin-top: 1.5vw;
  margin-left: 60vw;
  font-size: 8vw;
  opacity: 0.04;
  z-index: 3;
}

.features {
  position: relative;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.features h3 {
  padding-bottom: 10vw;
  text-align: center;
  font-size: 4vw;
}

.features-content {
  display: flex;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}

.features-content img {
  width: 50%;
  margin-right: auto;
}

.features-content p {
  width: 40%;
  margin-left: auto;
  font-size: 1.3vw;
  line-height: 1.6;
}

.features-items {
  width: 80%;
  display: flex;
  margin-top: 5vw;
  margin-left: auto;
  margin-right: auto;
}

.features-items1 {
  width: 25%;
  margin-right: auto;
  border-radius: 20px;
  background-image: linear-gradient(0deg, rgba(204, 204, 204, 1), rgba(255, 255, 255, 1) 45%);
}

.features-items1 img {
  display: block;
  width: 15vw;
  height: 10vw;
  margin-left: auto;
  margin-right: auto;
}

.features-items2 img {
  width: 27vw;
  height: 20vw;
  margin-left: auto;
  margin-right: auto;
}

.features-items3 {
  width: 25%;
  margin-left: auto;
  border-radius: 20px;
  background-image: linear-gradient(0deg, rgba(204, 204, 204, 1), rgba(255, 255, 255, 1) 45%);
}

.features-items3 img {
  display: block;
  width: 15vw;
  height: 10vw;
  margin-left: auto;
  margin-right: auto;
}

.features-items h4 {
  text-align: center;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2vw;
  margin-bottom: 2vw;
  font-size: 1.2vw;
  font-weight: 500;
}

.features-items p {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.2vw;
  line-height: 1.5;
}

.support-title {
  text-align: center;
  margin-top: 4vw;
  margin-bottom: 4vw;
}

.support-title h3 {
  font-size: 2.2vw;
}

.support-content {
  display: flex;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
}

.support-content p {
  width: 40%;
  height: fit-content;
  margin-right: auto;
  font-size: 1.3vw;
  line-height: 1.6;
}

.support-content img {
  width: 50%;
}

.support-link {
  display: flex;
  width: 60%;
}

.support-link-item1 a {
  position: absolute;
  margin-top: 3vw;
  margin-left: 15vw;
  text-align: center;
  line-height: 6vw;
  font-size: 2vw;
  color: #3b3b3b;
  z-index: 10;
  animation: infinite;
}

.support-link-item1 a::after {
  position: absolute;
  top: 5vw;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #a3a3a3;
  bottom: -1px;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.8s;  
  z-index: 11;
}
  
.support-link-item1 a:hover::after {
  transform: scale(1, 1);    
  transform-origin: left top;
  background: #c75353;
  transition: transform 0.3s;
  z-index: 11;
}

.support-link-item2 a {
  position: absolute;
  margin-top: 3vw;
  margin-left: 45vw;
  text-align: center;
  line-height: 6vw;
  font-size: 2vw;
  color: #3b3b3b;
  z-index: 10;
}

.support-link-item2 a::after {
  position: absolute;
  top: 5vw;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #a3a3a3;
  bottom: -1px;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.8s;  
  z-index: 11;
}
  
.support-link-item2 a:hover::after {
  transform: scale(1, 1);    
  transform-origin: left top;
  background: #c75353;
  transition: transform 0.3s;
  z-index: 11;
}

.map-wrap {
  width: 100%;
  margin-top: 20vw;
  padding-bottom: 30vw;
  background-color: #3b3b3b;
}

.map {
  width: 80%;
  height: 50vw;
  margin-left: auto;
  margin-right: auto;
}

.map-border {
  width: 100%;
  margin-top: 9vw;
  position: absolute;
  border-bottom: 2px solid #a3a3a3; 
  opacity: 0.7;
}

.map-text {
  position: absolute;
  margin-top: 5vw;
  margin-left: 10vw;
}

.map-text h3 {
  font-size: 3vw;
  color: #fff;
}

.map-text p {
  margin-top: -0.8vw;
  font-size: 1.7vw;
  color: #fff;
}

.map iframe {
  width: 100%;
  height: 100%;
  margin-top: 20vw;
  margin-bottom: 20vw;
}

.pages {
  position: relative;
  width: 100%;
  height: 20vw;
  background-image: url(../images/page-content-image.jpg);
  background-size: 100% 100%;
  background-attachment: fixed;
  z-index: 1;
}

.pages::before {
  content: '';
  background-color: rgba(0,0,0,.4);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}

.pages h3 {
  position: absolute;
  margin-top: 3vw;
  margin-left: 23vw;
  font-size: 4vw;
  color: #f5f5f5;
  z-index: 10;
}

.pages-content1 a {
  position: absolute;
  margin-top: 12vw;
  margin-left: 26vw;
  text-align: center;
  line-height: 6vw;
  font-size: 2vw;
  color: #f5f5f5;
  z-index: 10;
  animation: infinite;
}

.pages-content1 a::after {
  position: absolute;
  top: 5vw;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #a3a3a3;
  bottom: -1px;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.8s;  
  z-index: 11;
}
  
.pages-content1 a:hover::after {
  transform: scale(1, 1);    
  transform-origin: left top;
  background: #c75353;
  transition: transform 0.3s;
  z-index: 11;
}

.pages-content2 a {
  position: absolute;
  margin-top: 12vw;
  margin-left: 54vw;
  text-align: center;
  line-height: 6vw;
  font-size: 2vw;
  color: #f5f5f5;
  z-index: 10;
}

.pages-content2 a::after {
  position: absolute;
  top: 5vw;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #a3a3a3;
  bottom: -1px;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.8s;  
  z-index: 11;
}
  
.pages-content2 a:hover::after {
  transform: scale(1, 1);    
  transform-origin: left top;
  background: #c75353;
  transition: transform 0.3s;
  z-index: 11;
}

footer {
  margin-top: 5vw;
  width: 100%;
}

.footer-nav {
  width: 90%;
  display: flex;
  margin-left: auto;
  margin-right: auto;
}

.company2 {
  width: 20%;
}

.company2 p {
  text-align: center;
  font-size: 1.1vw;
}

.company2 h2 {
  text-align: center;
  font-size: 2.2vw;
}

footer a {
  color: #000;
}

.footer-adrress {
  width: 30%;
  padding-bottom: 5%;
  margin-left: 5vw;
  font-size: 1.2vw;
}

address h3 {
  font-size: 1.8vw;
  margin-bottom: 2vw;
}

.footer-adrress ul {
  width: 50%;
  font-size: 1.2vw;
  margin-left: 35%;
  margin-right: 15%;
}

.footer-menu-wrap {
  width: 70%;
}

.footer-menu-wrap h3 {
  margin-left: 15%;
  font-size: 1.8vw;
  margin-bottom: 2vw;
}

.footer-menu {
  width: 70%;
  display: flex;
  margin-left: 5vw;
  padding-bottom: 5%;
}

.footer-menu1 ul {
  font-size: 1.2vw;
  margin-left: 15%;
  margin-right: 15%;
}

.footer-menu2 {
  padding-bottom: 5%;
  width: 50%;
}

.footer-menu2 ul {
  font-size: 1.2vw;
  margin-right: 15%;
}


.border5 {
  position: absolute;
  width: 20vw;
  height: 60vw;
  margin-top: -30vw;
  margin-left: 41vw;
  border-left: 1px solid #c75353;
  transform: rotate(-45deg);
  z-index: -1;
  opacity: 0.5;
  
}

.border6 {
  position: absolute;
  width: 20vw;
  height: 47vw;
  margin-top: -20vw;
  margin-left: 11vw;
  border-left: 1px solid #134681;
  transform: rotate(-45deg);
  z-index: -1;
  opacity: 0.5;
}

.border7 {
  position: absolute;
  width: 50vw;
  height: 70vw;
  margin-top: -50vw;
  margin-left: -20vw;
  border-right: 1px solid #a3a3a3;
  transform: rotate(45deg);
  z-index: -1;
  opacity: 0.5;
}

.border8 {
  position: absolute;
  width: 48vw;
  height: 50vw;
  margin-top: -32vw;
  margin-left: 8vw;
  border-right: 1px solid #417c19;
  transform: rotate(45deg);
  z-index: -1;
  opacity: 0.5;
}

.sns-box {
  display: flex;
  width: 10%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3vw;
}

i {
  font-size: 1.8vw;
}
.fa-x-twitter {
  color: #000;
}

.fa-square-facebook {
  color: #3b5998;
}

.fa-square-instagram {
  color: #CF2E92;
}

.fa-line {
  color: #00B900;
}

a {
  display: block;
  margin-top: 2%;
  margin-right: 10%;
  text-decoration: none;
}

small p {
  font-size: 0.9vw;
  text-align: center;
}