@charset "UTF-8";
*{
    padding: 0;
    margin: 0;
}

body {
    font-family: serif;
}

header {
    margin-top: 2vw;
    width: 100%;
    display: flex;
    position: fixed;
    top: 0px;
    z-index: 1000;
}

h1 {
    width: 20%;     
}

h1 a {
    display: block;
    font-size: 4vw; 
    text-align: center;
    text-decoration: none;
    color: #101010;
}


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

nav.NavMenu ul {
	list-style-type: none;
	background-color: #f5f5f5; /*背景*/
}

nav.NavMenu ul li {
	width: 100%;
	border-bottom: 1px dotted #808080;
}

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

nav.NavMenu ul li a {
	display: block; /*クリックできる領域を広げる*/
	text-align: center; /*テキストを中央揃え*/
	text-decoration: none;
	line-height: 3;
	color: #a9a9a9;
	font-size: 2vw;
}

/*トグルボタンが押されたときに付与するクラス*/
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 #a9a9a9;
	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);
}


h3 {
    text-align: center;
    font-size: 2.5vw;
    color: #101010;
    margin-top: 12vw;
}

.item {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5vw;
}

.item .item-flex {
    display: flex;
    margin-bottom: 2vw;
}

.item .blur{
    transition: all 1s;
    filter: blur(10px);
    &.scrollin{
      filter: blur(0);
    }
}

.item .item-flex .left-img {
    width: 60%;
}

.item .item-flex .left-img img {
    width: 100%;
    vertical-align: bottom;
}

.item-flex .right-text {
    width: 40%;  
}

.item-flex .one {
    background-image: linear-gradient(90deg, rgba(141, 139, 226, 1), rgba(220, 216, 242, 1) 0%, rgba(245, 195, 207, 1));
}

.item-flex .two {
    background-image: linear-gradient(90deg, rgba(229, 210, 230, 1), rgba(228, 210, 230, 1) 0%, rgba(197, 224, 239, 1));
}

.item-flex .three {
    background-image: linear-gradient(90deg, rgba(228, 210, 230, 1), rgba(205, 216, 222, 1) 0%, rgba(229, 210, 230, 1));
}

.item-flex .four {
    background-image: linear-gradient(90deg, rgba(229, 210, 230, 1), rgba(235, 217, 237, 1) 0%, rgba(192, 219, 234, 1));
}
  
.item-flex .right-text h2 {
    margin-top: 3vw;
    font-size: 2.8vw;
    margin-left: 5vw;
}

.item-flex .right-text p:nth-of-type(1) {
    font-size: 1.5vw;
    margin-left: 5vw;
}

.item-flex .right-text p:nth-of-type(2) {
    font-size: 2vw;
    margin-top: 3vw;
    margin-left: 5vw;
}


.item-flex .right-text p:nth-of-type(3) {
    font-size: 2vw;
    margin-top: 1vw;
    margin-left: 5vw;
}

.item-flex .right-text p:nth-of-type(4) {
    font-size: 1.5vw;
    margin-top: 3vw;
    margin-left: 5vw;
}

.item-flex .right-text p:nth-of-type(5) {
    font-size: 1.5vw;
    margin-top: 1.5vw;
    margin-left: 5vw;
}

.item-flex .right-text p:nth-of-type(6) {
    font-size: 1.5vw;
    margin-left: 5vw;
}

table {
    width: 95%;
    margin-top: 10vw;
    margin-left: auto;
    margin-right: auto;
    border-collapse: collapse;
    border: 1px solid  #d3d3d3; 
}

th {
    padding-bottom: 3vw;
    width: calc( 100% / 4);
    transition: 1s;
}

th:hover {
    background-image: linear-gradient(90deg, rgba(229, 210, 230, 1), rgba(248, 241, 249, 1) 0%, rgba(224, 235, 241, 1));
    transition: 1s;
}

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

.name img {
    width: 100%;
}

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


.photo img {
    width: 100%;
}

.silver span {
    display: block;
    width: 1.8vw;
    height: 1.8vw;
    border-radius: 50%;
    border: 1px solid #d0dee0;
    margin: 0 auto;
    background-image: linear-gradient(90deg, rgba(233, 233, 233, 1), rgba(172, 172, 172, 1));
}

.white span {
    display: block;
    width: 1.8vw;
    height: 1.8vw;
    border-radius: 50%;
    border: 1px solid #d0dee0;
    margin: 0 auto;
    background-color: white;
}

th p {
    font-size: 1vw;
    color: #101010;
}

th h4 {
    font-size: 1.3vw;
}

th h4:nth-of-type(1) {
    margin-top: 2vw;
}

.title {
    font-size: 1.2vw;
    font-weight: 500;
    text-align: center;
    border-top: 1px solid  #d3d3d3;
    border-bottom: 1px solid  #d3d3d3;
    background-color: #dcdcdc;
}

.space {
    font-size: 1.2vw;
    text-align: center;
    padding: 2.5vw 0;
}

.space1 {
    font-size: 1.2vw;
    text-align: center;
    padding: 2.5vw 0;
    color: #a9a9a9;
}



.data-flex-1 {
    display: flex;
    margin-top: 2.5vw;
    font-size: 1.2vw;
}

.data-flex {
    display: flex;
}

.last {
    padding-bottom: 2.5vw;
}

dt {
    font-size: 1.2vw;
    margin-left: 2vw;
}

.up {
    margin-top: 0vw;
}

dd {
    font-size: 1.2vw;
    margin-left: auto;
    margin-right: 3vw;
}

ul {
    list-style-type: none;
    font-size: 1.2vw;
    padding: 2.5vw 0;
}


th {
    border:  1px solid  #d3d3d3;
}

td {
    border:  1px solid  #d3d3d3;

}


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

.footer-flex .nav {
    width: 50%;
}

.footer-flex .nav ul {
    list-style-type: none;
   
}

.footer-flex .nav ul li a {
    display: block;
    text-decoration: none;
    font-size: 2vw;
    color: #808080;
    line-height: 3;
    transition: 1s;
    margin-left: 20vw;
 
}

.footer-flex .nav ul li a:hover {
    color: #101010;
}

.sns-box2 {
    display: flex;
    width: 50%;
    margin-top: 4vw;
    margin-left: 20vw;
}

.sns-box2 a {
    display: block;
}

.sns-box2 i {
    font-size: 3vw;
    color: #a9a9a9;
    margin-left: 2vw;
    transition: 1s;   
}

.sns-box2 i:hover {
    font-size: 2vw;
    color: #101010;
    margin-left: 2vw; 
    transition: 1s;   
}

footer p {
    text-align: center;
    color: #a9a9a9;
    font-size: 2vw;
    margin-bottom: 2vw;
}
