@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: Zen_Kaku_Gothic_New;
    src: url(../Zen_Kaku_Gothic_New/ZenKakuGothicNew-Medium.ttf)
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: #333;
}

header {
    width: 100%;
    display: flex;
    background-color: #a0cde7;
}



h1 {
    width: 15%;
    margin-top: 1%;
    margin-left: 5%;
}

h1 a img {
    display: block;
    width: 100%;
}

nav {
    width: 40%;
    margin-left: auto;
    margin-right: 5%;
}

nav .pcmenu {
    display: flex;
    background-color: #fff;
    border-bottom-left-radius: 2.5vw;
    padding: 1% 2%;
}

nav .pcmenu li {
    width: 25%;
    border-left: 3px dashed #A0CDE7;
    /* 時間あったら疑似要素にかける */
}

nav .pcmenu li:first-child {
    border-left: none;
}

nav .pcmenu li a {
    display: block;
    text-align: center;
    line-height: 2;
    font-size: 1.2vw;
}

nav .pcmenu li a img {
    display: block;
    width: 2.5vw;
    margin-left: auto;
    margin-right: auto;
}

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

nav .NavMenu::-webkit-scrollbar {
    display: none;
}

nav .NavMenu-flex {
    display: flex;
    width: 65%;
    margin-top: 5%;
    margin-left: auto;
    margin-right: auto;
}

nav .NavMenu-flex:first-of-type {
    display: block;
    margin-bottom: 5%;
}

nav .NavMenu .NavMenu-flex li {
    font-size: 1.4vw;
}

nav .NavMenu .NavMenu-flex li a {
    color: #608ca6;
}

nav .NavMenu .NavMenu-flex li ul a {
    display: block;
}

nav .NavMenu .NavMenu-flex li ul li{
    width: 100%;
    margin-left: 5%;
	font-size: 1.2vw;
}

nav .NavMenu .NavMenu-flex li ul li a {
	display: block; /*クリックできる領域を広げる*/
	color: #333;
    text-decoration: none;
    line-height: 2;
}

.NavMenu-title {
    margin-bottom: 5%;
}

nav .NavMenu-flex:last-of-type {
    margin-bottom: 10%;
}

nav .NavMenu-flex:last-of-type .NavMenu-title {
    width: 48%;
}

.NavMenu-title::before {
    content: "\f005";
    font: var(--fa-font-solid);
    font-size: 1.2vw;
    color: #A0CDE7;
}


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


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

.Toggle::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 8vw;
    height: 8vw;
    background-image: url(../images/アセット\ 70-8.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.Toggle span {
	display: block;
	position: absolute;
    top: 0;
	right: 1.5vw;
	width: 3vw;
	height: 3px;
    background-color: #fff;
	transition: .35s ease-in-out;/*変化の速度を指定*/
}

.Toggle span:nth-child(1) {
	top: 1.5vw;
}

.Toggle span:nth-child(2) {
	top: 2.5vw;
}

.Toggle span:nth-child(3) {
	top: 3.5vw;
}

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

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

main {
    width: 90%;
    margin-top: 7%;
    margin-left: auto;
    margin-right: auto;
}

h2 {
    font-size: 2vw;
    color: #608CA6;
    margin-bottom: 3%;
}
section {
    font-family: Zen_Kaku_Gothic_New;
}

.section-box1 {
    position: relative;
}

.section-box1 .top-illust img {
    position: absolute;
    top: -25%;
    left: 60%;
    width: 30%;
}

.section-box1, .section-box2, .section-box3 {
    width: 84%;
    border: 1px solid #A0CDE7;
    border-radius: 1vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3%;
    padding: 3% 8%;
}

.section-box1 p {
    font-size: 1.4vw;
    font-weight: 200;
    letter-spacing: 0.2em;
    color: #333;

}



section h3 {
    font-size: 1.6vw;
    font-weight: 200;
    color: #A0CDE7;
    margin-bottom: 1.2%;
}

section h4 {
    font-size: 1.3vw;
    font-weight: 100;
    color: #333;
    margin-top: 3%;
    margin-bottom: 1.2%;
}

section h4 span {
    font-size: 1vw;
}


section table  {
    width: 100%;
}

section th {
    width: 30%;
    text-align: center;
    background-color: #A0CDE7; 
    font-size: 1.2vw;   
    font-weight: 100;
    color: #ffffff;
}

th,td {
    padding: 1.1%; 
}

td {
    text-align: center;
    font-size: 1.2vw;
    letter-spacing: 0.2em;
    background-color: #EEF8F9;
    color: #333;

}

section table:nth-of-type(4) th {
    width: 20%;
    text-align: center;
    background-color: #A0CDE7;
}

.section-box2 p {
    font-size: 1.1vw;
    font-weight: 100;
    color: #333;
    margin-bottom: 1%;
}

.section-box2 p:nth-of-type(2) {
    margin-top: 1%;
}




/* アクセス */

iframe {
    width: 100%;
    height: 30vw;
    border-radius: 1vw;
}

.fa-solid {
    width: 3.5%;
    color: #333;
    font-size: 2vw;
}

.access-flexbox {
    display: flex;
    width: 100%;
    font-weight: 100;
    color: #333;
}

.access-box {
    width: 44%;
    padding: 2% 2.5%;
    border-radius: 1vw;
    background-color: #EEF8F9;
}

.access-box:nth-child(2) {
    margin-left: 2%;
}
.section-box3 h5 {
    margin-bottom: 2%;
    font-size: 1.3vw;
    font-weight: 100;
    color: #A0CDE7;
}

.access-box p {
    font-size: 1.2vw;
}

.access-pbox {
    position: relative;
    width: 95%;
    padding: 2% 2.5%;
    margin-bottom: 3%;
    border-radius: 1vw;
    background-color: #EEF8F9;
}

.access-pbox p {
    font-size: 1.2vw;
    font-weight: 100;
    color: #333;
}

.access-pbox span {
    font-size: 1vw;
    font-weight: 100;
    color: #333;
}

.ryoukin p {
    margin-top: 1%;
    font-size: 1.3vw;
    font-weight: 100;
    color: #333;
}

.access-pbox p:nth-of-type(2) {
    margin-top: 3%;
}

.illust img {
    position: absolute;
    top: 15%;
    left: 70%;
    display: block;
    width: 25%;

}

/* フッター */

main .footer-wave {
    position: relative;
    width: 100%;
}


main .footer-wave img {
    position: absolute;
    top: -1vw;
    width: 100%;
    z-index: 10;
}

footer {
    width: 100%;
    height: 40vw;
    z-index: 100;
    background-color: #fff;
}

footer .footer-container {
    display: flex;
    width: 100%;
    margin-top: 22%;
    padding-bottom: 3%;
    border-bottom: 3px dotted #eefbf9;
}

footer .footer-container .footer-top {
    width: 40%;
    margin-left: auto;
    margin-right: auto;
}

footer .footer-container .footer-top .footer-rogo {
    width: 30%;
    margin-top: 20%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 8%;
}

footer .footer-container .footer-top .footer-rogo img {
    width: 100%;
    vertical-align: bottom;
}

 

footer .footer-container .footer-top address {
    width: 90%;
   /*  font-style: normal; */
    margin-left: auto;
    margin-right: auto;
}

footer .footer-container .footer-top address p {
    font-size: 1vw;
    text-align: center;
    line-height: 1.6;
}

footer .footer-container .footer-top address p span {
    padding: 3%;
}


footer .footer-container .footer-section {
    width: calc(100% / 3);
    border-left: 3px dotted #eefbf9;
    
}

footer .footer-container .footer-section:nth-last-of-type(1) {
    margin-right: 2%;
}


footer .footer-container .footer-section h4 {
    margin-bottom: 7%;
    font-size: 1.4vw;
    font-family: static;
    margin-left: 11%;
    background-image: linear-gradient(25deg, #608ca6, #a0ede7, #608ca6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


footer .footer-container .footer-section h5 {
    margin-left: 10%;
    font-size: 1.2vw;
}

footer .footer-container .footer-section h5 a {
    text-decoration: none;
    color: #333;
}


footer .footer-container .footer-section h5 span {
    padding: 3%;
    font-size: 1.6vw;
}

footer .footer-container .footer-section p {
    margin-left: 15%;
    text-indent: 1em;
    font-size: 0.9vw;
    line-height: 2.5;

}

footer .footer-container .footer-section p a {
    display: inline-block;
    text-decoration: none;
    text-align: center;
    color: #333;
}


footer .footer-sns p {
    margin-top: 2%;
    text-align: center;
    font-size: 1vw;
}


footer .footer-sns .icon {
    width: 32%;
    margin-top: 2%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2%;
}

footer .footer-sns .icon .fa-brands {
    margin-left: 8%;
    display: inline-block;
    text-align: center;
    font-size: 3vw;
}

footer .footer-sns .icon .fa-instagram {
    background-image: linear-gradient(25deg, #4C64D3, #CF2E92, #F26939, #FFDD83);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

footer .footer-company {
    width: 100%;
    padding-top: 3%;
    border-top: 3px dotted #eefbf9;
}

footer .footer-company .company-flexbox {
    display: flex;
    width: 60.2%;
    margin-left: auto;
    margin-right: auto;
}

footer .footer-company .company-flexbox p {
    width: 15.6;
    padding-left: 2%;
    padding-right: 2%;
    line-height: 2.5;
    border-right: 3px dotted#eefbf9;
    font-size: 1vw;
}

footer .footer-company .company-flexbox p:nth-last-of-type(1) {
    border-right: 0;
}

footer .footer-company .company-flexbox p a {
    text-decoration: none;
    color: #333;
}

footer .footer-company + p {
    margin-top: 5%;
    padding: 2%;
    text-align: center;
    color: #ffffff;
    background-color: #608ca6;
    font-size: .8vw;
}

