@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
		color: #fff;
}

p {
  font-family: serif;
	font-size: 1.4vw;
	line-height: 1.7;
	letter-spacing: 0.1vw;
}

li:nth-child(1) {
	margin-top: 0;
}

a {
	color: #fff;
}

html {
  overflow: auto;
}

body {
  position: relative;
  overflow: hidden;
}

/*ナビメニューのスタイルを指定*/
nav.NavMenu{
	position: fixed; /*表示位置を固定*/
	z-index: 2; /*重ね順を変更*/
	top: -0.7; /*表示位置を指定*/
	left: 50%; /*表示位置を指定*/
	background: #fff;/*背景を白にする*/
	color: #ffffff; /*文字色を黒にする*/
	width: 50%; /*全幅表示*/
	transform: translateX(100%); /*ナビを上に隠す上から出したい場合は、transform: translateYを使う。*/
	transition: all 0.3s; /*アニメーションの時間を指定*/
}


nav.NavMenu ul {
	background: #242b69 ; /*背景をグレーにする*/
	width: 100%;
	margin: 0 auto;
	padding: 0;
  z-index: 500;
}

nav.NavMenu ul li{
	font-size: 1.2em;
	list-style-type: none;
	padding: 0 20px;
	width: 100%;
	border-bottom: 1px dotted #6c589c;
}

nav.NavMenu ul li:hover{
  transition: 0.8s;
  background-color: #9c5858;
  animation: nav-li 0.8s linear forwards; ;
}
@keyframes nav-li {
    0%{
      background-color: #242b69;
    }

    20%{
      background-color: #3b47b3;
    }

    100%{
      background-color: #580058;
    }
}



nav.NavMenu ul li:last-child{
	padding-bottom: 0;
	border-bottom: none; /*最後のメニュー項目のみ下線を消す*/
}

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

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

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

.Toggle span {
	display: block;
	position: absolute;
	left: 6px;
	width: 30px;
	border-bottom: solid 3px #ffffff;
	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);
}

.back {
	position: fixed;
	z-index: -5;
}

.background-box1 {
	position: absolute;
	width: 40vw;
	height: 200vw;
	margin-top: -50vw;
	transform: rotate(70deg);
	background-color: rgba(153, 0, 255, 0.2);
	z-index: -1;
}

.background-box2 {
	position: absolute;
	width: 40vw;
	height: 200vw;
	margin-top: -33.5vw;
	margin-left: 5vw;
	transform: rotate(-70deg);
	background-color: rgba(255, 0, 170, 0.2);
	z-index: -1;
}

.arrow-left {
	width: 5vw;
	height: 7vw;
	margin-top: 13vw;
	margin-left: 1vw;
	position: fixed;
}

.arrow-left img {
	width: 5vw;
	height: 100%;
	transform: rotate(180deg);
	z-index: 50;
}


.arrow-right {
	width: 5vw;
	height: 7vw;
	margin-top: 13vw;
	margin-left: 91vw;
	position: fixed;
}

.arrow-right img {
	width: 5vw;
	height: 100%;
	margin-top: -0.5vw;
	margin-left: 1vw;
	z-index: 50;
}


.web-title {
	margin-top: 5vw;
	color: #fff;
	text-align: center;
	line-height: 1.7;
	font-size: 2.3vw;
	font-family: Shippori Mincho B1;
}

.web-image {
	width: 50%;
	margin-top: 5vw;
	margin-left: auto;
	margin-right: auto;
}

.web-image img {
	width: 100%;
}

.web-text1 {
	text-align: center;
	font-size: 1.5vw;
	font-weight: 600;
}

.web-text2-box {
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 5vw;
	margin-bottom: 5vw;
	padding-top: 1vw;
	padding-bottom: 5vw;
	background-color: #000000c9;
}

.web-text2 {
	width: 90%;
	margin-left: auto;
	margin-right: auto;
}

.web-text2 ul {
	width: 80%;
}

.web-text2 ul li {
	margin-top: 0.5vw;
	margin-left: 1em;
  font-family: serif;
	font-size: 1.4vw;
	line-height: 1.5;
	letter-spacing: 0.05vw;
	list-style-type: square;
}

h4 {
	font-size: 1.5vw;
	width: 20%;
	font-family: serif;
}

.web-consideration {
	display: flex;
	margin-top: 5vw;
}

.web-consideration p {
	white-space: pre-wrap;
}

.web-page {
	display: flex;
	margin-top: 5vw;
}

.web-page ul li a {
	color: cadetblue;
	border-bottom: 1px solid #fff;
}

.web-page ul li a:hover {
	color: rgb(0, 238, 255);
}

.web-taste {
	display: flex;
	margin-top: 5vw;
}

.web-ingenuity {
	display: flex;
	margin-top: 5vw;
}


footer {
	text-align: center;
	color: #fff;
	background-color: #000000c9;
}