@charset "UTF-8";

/*全部に適用するやつ*/

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}
 
body {
    margin: 0;
    padding: 0;
    font-family: "游ゴシック";
    font-size: 14px;
    font-weight: 600;
    background-color: #f9f9ff;
    overflow-x: hidden;
}

main{
    background-color: #bff4fc;
    display: block;
    border-top: #7ADFEE 2px solid;
}

.top{
    position: absolute;
    top: 120px;
}

dl{
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.main-footer{
    background-color: #bff4fc;
}

a {
    color: #00323F;
    text-decoration: none;
}

a:hover,
a:active{
	color: #7ADFEE;
}

.syousai{
    color: #0033ff;
}

h1,h2,h3,h4,p{
    color: #0a0b3b;
    font-size: 20px;
}

h2:not(.none-line){
    border-bottom: #7ADFEE solid 4px;
    width: 100%;
    font-size: 300%;
    position: absolute;
    top: 0;
}

h3:not(.news-h3){
    width: 100%;
    font-size: 200%;
    position: absolute;
    left: 5%;
}



b{
    display: inline;
    background-position: left -100% center;
    padding-bottom: 0.6em;/*ここで高さを決める*/
    background-size: 200% 0.5em;
    background-repeat: repeat-x;
    background-image: linear-gradient(to right, #e2ff7a 50%, #e2ff7a 50%);

}



.pc-img{
    position: fixed;
    opacity: 0;
    visibility: hidden;
    z-index: 5;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url(../img/pc.png);
    background-size: cover;
    background-position: center;
}

.pc-text{
    position: fixed;
    top: 60vh;
    left: 50vw;
    opacity: 0;
    visibility: hidden;
    z-index: 5;
    transform: translate(-50%,-50%);
    font-size: 24px;
    font-weight: 600;
}



@media only screen and (max-width: 999px) {
    .pc-img{
        opacity: 1;
        visibility: visible;
    }
    .pc-text{
        opacity: 1;
        visibility: visible;
    }
    body{
        overflow: hidden;
    }
}


img,video{
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.border{
    border: #7ADFEE 4px solid;
}

.back{
    background-color: #7ADFEE;
    width: 100%;
}

.center{
    text-align: center;
}

.space{
    margin-left: 8%;
}

.go-back{
    position: absolute;
    bottom: 0;
    left: 5%;
    font-size: 20px;
}

.go-next{
    position: absolute;
    bottom: 0;
    right: 5%;
    font-size: 20px;
}

.img-box{
    position: relative;
    margin: auto;
    margin-top: 5%;
    margin-bottom: 5%;
    display: block;
    width: 800px;
    height: 600px;
    border: 5px solid #7ADFEE;
}

.img-box img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.quote{
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 0;
    padding: 5px;
    background-color: rgba(122, 223, 238, 0.9);
}

/* ボタンのスタイル https://ics.media/entry/230629/ より */
.buttonUnderline {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    padding: 0 24px;
    overflow: hidden;
    font-size: 15px;
    color: #0a0b3b;
    text-align: center;
    overflow-wrap: anywhere;
    background: transparent;
  }
  
  .buttonUnderline::after {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    content: "";
    background-color: #7ADFEE;
    transform: scaleX(0);
    transform-origin: right top;
  }
  
  @media (any-hover: hover) {
    .buttonUnderline::after {
      transition: transform 0.2s cubic-bezier(0.19, 1, 0.22, 1);
    }
  
    .buttonUnderline:hover::after {
      transition: transform 0.4s cubic-bezier(0.9, 0, 0, 1);
      transform: scaleX(1);
      transform-origin: left top;
    }
  }
  



/*全部に適用‐ヘッダー*/
header{
    padding: 10px 4% 10px;
    position: fixed;
    top: 0;
    width: 100%;
    border-bottom: #7ADFEE solid 2px;
    display: flex;
    align-items: center;
    z-index: 1;
    background-color: #bff4fc;
    z-index: 3;
}

.header_logo{
    display: flex;
}

header img{
    width: 4vw;
    height: auto;
}

header h1{
    margin-top: 1vw;
}

header a{
    color: #0a0b3b;
    text-decoration: none;
}

header nav {
    margin: 0 0 1px auto ;
    padding: 0 40px 0 0;
    background-color: #ffffff;
    border-radius: 50px;
    border: #e2ff7a solid 3px;
}

header ul{
    list-style-type: none;
    display: flex;
    justify-content: center;
    gap: 40px;
}

h1{
    margin: 0px;
}






/*2階層目以降は横並びにしない*/
nav ul ul{
	display: block;
}

/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
nav ul li{
	position: relative;
}

nav ul li li a{
	padding:10px 35px;
}

nav ul li a:hover{
	color: #7ADFEE;	
}
/*== 2・3階層目の共通設定 */

/*下の階層を持っているulの指定*/
nav li.has-child ul{
    /*絶対配置で位置を指定*/
	position: absolute;
	left:0;
	top:32px;
	z-index: 4;
    /*形状を指定*/
	background:#f9f9f9;
    border: #e2ff7a solid 4px;
	width:225px;
    border-radius: 25px;
    /*はじめは非表示*/
	visibility: hidden;
	opacity: 0;
    /*アニメーション設定*/
	transition: all .3s;
}

/*hoverしたら表示*/
nav li.has-child:hover > ul,
nav li.has-child ul li:hover > ul,
nav li.has-child:active > ul,
nav li.has-child ul li:active > ul{
  visibility: visible;
  opacity: 1;
}

/*ナビゲーションaタグの形状*/

nav li.has-child ul li {
    padding: 10px 0;
}

nav li.has-child ul li a{
    color: #0a0b3b;
	border-bottom:solid 1px rgba(255,255,255,0.6);
    padding: 0;
    font-size: 15px;
}

nav li.has-child ul li:last-child > a{
 border-bottom:none;
 }

nav li.has-child ul li a:hover,
nav li.has-child ul li a:active{
	color: #7ADFEE;
}

/*全適用-フッター*/
footer{
    width: 100%;
    height: 280px;
    border-top-right-radius: 40%;
    border-top-left-radius: 40%;
    background-color: #0a0b3b;
    position: relative;
    z-index: 3;
}

footer p{
    color: #f9f9f9;
}

footer nav{
    margin: 0 0 0 auto;
    width: 30%;
}

footer ul{
    list-style-type: none;
    display: flex;
    justify-content: center;
    gap: 40px;
}

footer a{
    color: #f9f9f9;
    text-decoration: none;
}

footer img{
    margin: 2% 0 0 0;
}

.webkonn{
    text-align: center;
    margin: 10px 0 10px 0;
}

.copyright{
    text-align: center;
    margin: 0;
}

.go-top{
    width: 75px;
    height: auto;
    position: absolute;
    bottom: 120px;
    right: 11.5%;
}
/*個別のやつ*/

/*index.html*/
#body{
    overflow-y: hidden;
    overflow-x: hidden;
}

#loading{
    opacity: 1;
    visibility: visible;
}


#loading.second {
    opacity: 0;
    visibility: hidden;
}


.background{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
    width: 100vw;
    height: 110vh;
    background-color: #0a0b3b;
    animation: back 1s linear 1  forwards;
}

@keyframes back {
    0%{
        transform: translateY(0);
    }

    100%{
        transform: translateY(110vh);
    }
}

.container {
    position: fixed;
    top: 0;
    background: #bff4fc;
    width: 100vw;
    height: 110vh;
    z-index: 10;
    animation: wave 2.5s linear 1 forwards;
}

@keyframes wave {
    0%{
        transform: translateY(-110vh);
    }

    40%{
        transform: translateY(0);
    }

    60%{
        opacity: 1;
        visibility: visible;
    }

    100%{
        opacity: 0;
        visibility: hidden;
    }
}

.wave {
    position: absolute;
    height: 118px;
    width: 100%;
    background: #bff4fc;
    bottom: 0;
    z-index: 10;
}

.wave::before, .wave::after {
    content: "";
    display: block;
    position: absolute;
    border-radius: 100% 50%;
}

.wave::before {
    width: 55%;
    height: 109%;
    background-color: #0a0b3b;
    right: -1.5%;
    top: 60%;
}
.wave::after {
    width: 55%;
    height: 100%;
    background-color: #bff4fc;
    left: -1.5%;
    top: 40%;
}



.circles{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 15;
}

.circles li{
    position: absolute;
    display: block;
    list-style: none;
    width: 50px;
    height: 50px;
    background: rgba(122, 223, 238, 0.5);
    animation: circles 1s linear 1 1s;
    bottom: -150px;
    border-radius: 50%;
    z-index: 15;
    
}

.circles li:nth-child(1){
    left: 25%;
    width: 150px;
    height: 150px;
    animation-delay: 1s;
}

.circles li:nth-child(2){
    left: 0;
    width: 80px;
    height: 80px;
    animation-delay: 1.5s;
}

.circles li:nth-child(3){
    left: 55%;
    width: 100px;
    height: 100px;
    animation-delay: 1.3s;
}

.circles li:nth-child(4){
    left: 85%;
    width: 60px;
    height: 60px;
    animation-delay: 1.1s;
}

.circles li:nth-child(5){
    left: 30%;
    width: 120px;
    height: 120px;
    animation-delay: 0.9s;
}

.circles li:nth-child(6){
    left: 50%;
    width: 110px;
    height: 110px;
    animation-delay: 1.4s;
}

.circles li:nth-child(7){
    left: 40%;
    width: 160px;
    height: 160px;
    animation-delay: 1.6s;
}

.circles li:nth-child(8){
    left: 70%;
    width: 150px;
    height: 150px;
    animation-delay: 0.8s;
}

.circles li:nth-child(9){
    left: 45%;
    width: 95px;
    height: 95px;
    animation-delay: 1.2s;
}

.circles li:nth-child(10){
    left: 30%;
    width: 110px;
    height: 110px;
    animation-delay: 1.5s;
}

.circles li:nth-child(11){
    left: 5%;
    width: 130px;
    height: 130px;
    animation-delay: 1.8s;
}

.circles li:nth-child(12){
    left: 90%;
    width: 80px;
    height: 80px;
    animation-delay: 1.4s;
}

.circles li:nth-child(13){
    left: 55%;
    width: 60px;
    height: 60px;
    animation-delay: 1.7s;
}

.circles li:nth-child(14){
    left: 75%;
    width: 100px;
    height: 100px;
    animation-delay: 1.1s;
}

.circles li:nth-child(15){
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 1.9s;
}

.circles li:nth-child(16){
    left: 60%;
    width: 110px;
    height: 110px;
    animation-delay: 1.6s;
}

.circles li:nth-child(17){
    left: 70%;
    width: 140px;
    height: 140px;
    animation-delay: 1.7s;
}

.circles li:nth-child(18){
    left: 10%;
    width: 130px;
    height: 120px;
    animation-delay: 1.3s;
}

.circles li:nth-child(19){
    left: 15%;
    width: 95px;
    height: 95px;
    animation-delay: 1.6s;
}

.circles li:nth-child(20){
    left: 50%;
    width: 110px;
    height: 110px;
    animation-delay: 0.5s;
}

@keyframes circles {

    0%{
        transform: translateY(-100vh) ;
        opacity: 1;
    }

    100%{
        transform: translateY(30vh) ;
        opacity: 0;
        border-radius: 50%;
    }
}




.main{
    margin: 90px auto 90px auto;
    max-width: 1000px;
    position: relative;
    z-index: 2;
}

.main.home{
    height: 1200px;
}

.hero{
    position: relative;/*h1の中央寄せ配置の起点とするためのrelative*/
    height: 100vh;/*高さを全画面にあわせる*/
}

.hero-text1{
    position:absolute;
    /*要素を天地中央寄せ*/
    top: 65%;
    left: 3%;
    transform: translateY(-50%);
    /*見た目の調整*/
    font-size: 2.5vw;
    text-decoration: underline;
}

.hero-text2{
    position: absolute;
    top: 68%;
    left: 3.5%;
    transform: translateY(-50%);
    /*見た目*/
    font-size: 1vw;
}

.hero-video-div{
    position: fixed;
    z-index: -1;/*最背面に設定*/
    top: 0;
    right:0;
    left:0;
    bottom:0;
    overflow: hidden;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*縦横幅指定*/
    width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
    height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
    min-height: 100%;
    min-width: 100%;
}

.hero-video{
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*縦横幅指定*/
    width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
    height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
    min-height: 100%;
    min-width: 100%;
}

/*index.html bubble*/
.bubble{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: #7ADFEE 8px solid;
}

.bubble1{
    position: sticky;
    top: 50%;
    transform: translateX(-200px);
}

.bubble2{
    position: sticky;
    top: 70%;
    transform: translateX(-300px);
}

.bubble3{
    position: sticky;
    top: 90%;
    transform: translateX(-175px);
}

.bubble4{
    position: sticky;
    top: 40%;
    transform: translateX(1075px);
}

.bubble5{
    position: sticky;
    top: 65%;
    transform: translateX(1200px);
}

.bubble6{
    position: sticky;
    top: 85%;
    transform: translateX(1100px);
}

.main.home h2{
    position: absolute;
    top: 5%;
    left: 6%;
    width: 100%;
    font-size: 300%;
    padding-left: 20px;
}

h2 svg{
    position: absolute;
    top: 15%;
    left: -5%;
    max-width: 4.5%;
}

.top-news{
    background-color: #0a0b3b;
    border-radius: 10px;
    width: 100%;
    position: absolute;
    top: 0;
    display: flex;
}

.top-news-dt{
    color: #e2ff7a;
    padding: 1% 0 1% 2%;
    font-size: 20px;
}

.top-news-dd{
    color: #f9f9f9;
    margin: auto 1% auto 3%;
    font-size: 18px;
}

.top-news dd a{
    color: #f9f9f9;
}

.top-news-go{
    color: #f9f9f9;
    margin: auto 1%;
    margin-left: auto;
    padding-right: 2%;
    font-size: 12px;
    width: auto;
}

.main-copy{
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.home-next{
    margin-top: 25%;
    margin-left: auto;
    margin-right: 5%;
    width: 15%;
}

.home-next-link{
    font-size: 20px;
}

.info{
    position: relative;
    top: 5%;
    width: 100%;
    height: auto;
}

.news{
    background-color: #7ADFEE;
    border-radius: 25px;
    position: absolute;
    top: 40%;
    left: 5%;
    width: 90%;
    height: 300px;
}

.news-scroll{
    height: 274px;
    background-color: #f9f9f9;
    border-radius: 25px;
    border: #7ADFEE 10px solid;
    overflow-y: scroll;
    overflow-x: auto;
}

.news-back{
    background-color: #0a0b3b;
    border-radius: 25px;
    position: absolute;
    top: 7.5%;
    left: 2.5%;
    width: 100%;
    height: 326px;
    z-index: -1;
}

.news h3{
    font-size: 25px;
    margin: 1% 0 0 5%;
}

.news-scroll dl dt{
    margin-left: 10px;
    font-size: 25px;
    color: #0a0b3b;
}

.news-scroll dl dd{
    font-size: 20px;
    color: #0a0b3b;
    margin: auto 0 auto 5%;
}





/*next.html*/
.main.next{
    height: 3300px;
}

.function-h3{
    position: absolute;
    top: 100px;
}

.function{
    position: absolute;
    top: 175px;
    left: 2%;
}

.function li,.environment li{
    color: #0a0b3b;
    font-size: 20px;
}

.environment-h3{
    position: absolute;
    top: 1800px;
}

.main.next img,.main.next video,.main.next iframe{
    max-width: 75%;
    border: #7ADFEE 4px solid;
}

.main.next video{
    max-width: 75%;
}

.environment{
    position: absolute;
    top: 1875px;
    left: 2%;
    width: 100%;
}

.environment table{
    padding: 20px 30px;
    color: #0a0b3b;
    font-size: 20px;
    background-color: #7ADFEE;
}

.environment td{
    padding: 10px 30px;
}

.note li{
    margin-bottom: 5%;
}




/*others.html*/

.main.others{
    height: 2000px;
}

.member{
    display: grid;
    grid-template-columns: 1fr 1fr ;
    gap: 40px;
}

.members{
    width: 75%;
    background-color: #7ADFEE;
    border-radius: 25px;
    padding: 0 0 0 10%;
    box-shadow: 20px 20px 0px 0 #0a0b3b;
}

.member-img{
    width: 100%;
    height: auto;
    transform: translateX(-8%);
}






/*kagawa-tameike.html*/
.main.kagawa-tameike{
    height: 1300px;
}

.kagawa-tameike-1{
    position: absolute;
    top: 120px;
}


.main.tameike-juyou{
    height: 2000px;
}

.main.site-map{
    height: 1700px;
}

.main.bousai{
    height: 1800px;
}

.main.sizenn{
    height: 1800px;
}

.dam-kagawawater{
    height: 1400px;
}

.main.kagawawater{
    height: 1100px;
}


.main.structure{
    height: 1700px;
}

.main.world-desert{
    height: 1700px;
}

.dam-structure-img{
    position: absolute;
    top: 420px;
}

.dam-structure{
    position: absolute;
    top: 1100px;
    margin-top: 100px;
    font-size: 20px;
}

.main.dam-electricity{
    height: 1900px;
}


.main.today-drought{
    height: 2800px;
}

.main.today-water-saving{
    height: 1800px;
}

.main.today-situation{
    height: 2000px;
}

.main.dam{
    height: 3600px;
}

.main.references{
    height: 5700px;
}

/*damに適応*/
.syuzaia{
    margin-left: 150px;
    margin-bottom: 100px;
    position: relative;
}

.syuzaia div:first-child{
    width: 100px;
    height: 100px;
    background-color: #7ADFEE;
    border-radius: 50%;
    position: relative;
    top: 175px;
    right: 205px;
}

.syuzaia div:first-child p{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-100%);
    font-size: 24px;
}

#syuzai{
    position: absolute;
    top: 400px;
    left: 100px;
    width: 80%;
    margin-top: 5%;
    margin-left: 10%;
    border-left: #7ADFEE solid 10px;
}

#syuzai h3{
    position: absolute;
    top: -125px;
    left: -100px;
}

#syuzai img{
    width: 500px;
    height: 300px;
    border: #7ADFEE 4px solid;
}

/*worldに適応*/
.sekai1{
    margin-top: 100px;
}

q{
    font-size: 25px;
}

.q{
    background-color: #7ADFEE;
    width: 80%;
    padding: 30px;
    box-shadow: 10px 10px 0 0 #0a0b3b;
    font-size: 15px;
}

.q-a{
    text-decoration: none;
}

.q-a:hover{
    color: #0a0b3b;
    text-decoration: underline;
}







/*references.html*/
.references ~ p{
    margin-bottom: 50px;
    background-color: #7ADFEE;
    width: 80%;
    padding: 25px;
    box-shadow: 10px 10px 0px 0 #0a0b3b;
}

.references ~ p::before{
    content: 'サイト名：';
}

.references ~ p.top-soft{
    margin-top: 200px;
    margin-bottom: 50px;
    background-color: #7ADFEE;
    width: 80%;
    padding: 25px;
    box-shadow: 10px 10px 0px 0 #0a0b3b;
}

.references ~ p.soft::before{
    content: 'ソフト名：';
}

.site{
    color: #0033ff;
    text-decoration: none;
}

.site:hover,
.site:active{
	color: #0033ff;
    text-decoration: underline;
}

.page{
    color: #0a0b3b;
    text-decoration: none;
}

.page:hover,
.page:active{
	color: #0a0b3b;
    text-decoration: underline;
}

.main.world-weather{
    height:2100px;
}

.main.world-water-quality{
    height: 1900px;
}

.world-weather-table{
    font-size: 18px;
    border-collapse:  separate; 
    width: 90%;
    border-spacing: 0;
    overflow: hidden;
    color: #0a0b3b;
}

.world-weather-table th,.world-weather-table td{
    padding: 20px;
    border-top: #0a0b3b solid 3px;
}

.world-weather-table th {
    background-color: #7ADFEE;
    color: #0a0b3b;
}

.world-weather-table th:first-child {
    border-left: #0a0b3b solid 3px;
}

.world-weather-table th:last-child,
.world-weather-table td:last-child {
    border-right: #0a0b3b solid 3px;
}

.world-weather-table tr:last-child th,
.world-weather-table tr:last-child td {
    border-bottom: #0a0b3b solid 3px;
}

.world-weather-table tr:first-child th:first-child {
    width: 10%;
}

.world-weather-table tr:first-child th:nth-child(2) {
    width: 19%;
}

.world-weather-table tr:first-child th:first-child {
    border-radius: 25px 0 0 0;
}

.world-weather-table tr:first-child th:last-child {
    border-radius: 0 25px 0 0;
}

.world-weather-table tr:last-child th:first-child {
    border-radius: 0 0 0 25px;
}

.world-weather-table tr:last-child td:last-child {
    border-radius: 0 0 25px 0;
}

.main.quizpage{
    height: 1000px;
}

.quiz-box{
    position: absolute;
    top: 250px;
    width: 100%;
    height: 100%;
}

.quiz{
    position: relative;
    height: 500px;
    background-color: #7ADFEE;
    border-radius: 25px;
    border: #0a0b3b 4px solid;
}

#question{
    text-align: center;
    transform: translateX(-5%);
    
}

#question::before{
    content: 'Q.';
}

.choice{
    text-align: center;
    padding-top: 200px;
}

.choice button{
    width: 30%;
    height: 75px;
    font-size: 20px;
    font-weight: 600;
    color: #0a0b3b;
    border: #0a0b3b solid 2px;
    background-color: #bff4fc;
    cursor: pointer;
    border-radius: 20px;
    animation: button-default 0.5s 1 forwards;
    transform: translate(0,0);
    box-shadow: 0 0 0 0 #0a0b3b;
}

.choice button:hover{
    animation: button 0.5s 1 forwards;
}

@keyframes button-default {

    0%{
        box-shadow: 10px 10px 0 0 #0a0b3b;
    }

    100%{
        box-shadow: 5px 5px 0 0 #0a0b3b;
    }
}

@keyframes button {

    0%{
        box-shadow: 5px 5px 0 0 #0a0b3b;
    }

    100%{
        box-shadow: 10px 10px 0 0 #0a0b3b;
    }

}





.numbers{
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 50px;
}

.numbers p {
    z-index: 5;
}

.numbers p:first-child::before{
    content: '答えた問題：';
}

.numbers p:first-child::after{
    content: '問';
}

.numbers p:last-child::before{
    content: '正解した問題：';
}

.numbers p:last-child::after{
    content: '問';
}

#correct{
    font-size: 300px;
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    transform: translate(-50%,-115%);
    font-weight: 900;
    color: #fa3737af;
    user-select: none;
    opacity: 0;
    visibility: hidden;
    width: 100%;
}

#incorrect{
    font-size: 300px;
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    transform: translate(-50%,-115%);
    font-weight: 900;
    color: #6137faaf;
    user-select: none;
    opacity: 0;
    visibility: hidden;
    width: 100%;
}

.correct{
    animation: correct 0.75s linear;
}

@keyframes correct {
    0%{
        opacity: 0;
        visibility: hidden;
    }

    25%{
        opacity: 1;
        visibility: visible;
    }

    75%{
        opacity: 1;
        visibility: visible;
    }

    100%{
        opacity: 0;
        visibility: visible;
    }
}

#go-result{
    position: relative;
    margin: auto;
    margin-top: 20px;
    margin-left: 85%;
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #0a0b3b;
    border: #0a0b3b solid 2px;
    background-color: #bff4fc;
    cursor: pointer;
    border-radius: 10px;
    z-index: 6;
}



#all-correct{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #7ADFEE;
    border-radius: 25px;
    display: none;
}

.result{
    text-align: center;
    transform: translateX(-5%);
}

.results{
    font-family: "游ゴシック";
    font-size: 20px;
    font-weight: 600;
    color: #0a0b3b;
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);

}

.graphs{
    position: relative;
    transform: translate(0,50px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.graphs p:first-child{
    margin-bottom: 0;
}

#percent{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-30%);
    font-size: 25px;
}

#review-img{
    display: block;
    margin-top: 100px;
    width: 400px;
    height: auto;
}






.interview{
    position: relative;
    margin: auto;
    margin-top: 10px;
    margin-bottom: 10px;
    font-family: '游ゴシック' sans-serif;
    font-size: 20px;
    color: #0a0b3b;
    font-weight: 600;
    padding: 20px;
    height: 350px;
}

.interview img{
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
}

.target{
    position: absolute;
    background: #7ADFEE;
    box-shadow: 5px 5px 0 0 #0a0b3b;
    padding: 10px;
    width: 40%;
    z-index: 1;
    border-radius: 5px;
}

.serif{
    position: absolute;
    background: #7ADFEE;
    padding: 50px;
    margin: 50px;
    margin-top: 0;
    top: 50px;
    left: 1%;
    border-radius: 25px;
    box-shadow: 5px 5px 0 0 #0a0b3b;
}