@charset "UTF-8";

/* 共通部分
----------------------------------*/
html {
    font-size: 100%;
    /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
    -ms-overflow-style: none;
    /*Firefoxへの対応*/
    scrollbar-width: none;
    
}
body {
    font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
    line-height: 1.7;
    color: #432;
    margin: 0;
    overflow: hidden;
    height: 100vh;
    background-image: url(../images/Back_img.png);
    background-size: 100vw 100vh;
    background-attachment: fixed;

}
a {
    text-decoration: none;
}
img {
    max-width: 100%;
}

/* body */

/* load */
#load {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: white;
    text-align: center;
    z-index: 10;
}
#load img {
    margin-top: 25vh;
    width: 20vw;
    animation: DokuDoku 1.2s infinite ease-in-out
}
@keyframes DokuDoku {
    0% { scale: 1; }
    20% { scale: 1; }
    35% { scale: 1.2; }
    45% { scale:1; }
    60% { scale: 1.2; }
    100% { scale: 1; }
}
.load-hidden {
    visibility: hidden;
}

/* ロゴ */
.Logo {
    position: fixed;
    left: 0;
    width: calc((100vw - 450px) / 2);
    height: 100vh;
}
.Logoimg {
    width: 50%;
    max-width: 350px;
    min-height: 150px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    filter: drop-shadow(3px 3px 3px #363636);
    transform-origin: center;
    animation: kurakura 5s infinite ease-in-out;
}
@keyframes kurakura {
    0% { transform: translate(-50%, -50%) rotate(0);}
    40% { transform: translate(-50%, -50%) rotate(0);}
    60% { transform: translate(-50%, -50%) rotate(20deg);}
    80% { transform: translate(-50%, -50%) rotate(-20deg);}
    100% { transform: translate(-50%, -50%) rotate(0);}
}
.cloud {
    width: 70%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* タブ */
.tab {
    width: calc((100vw - 450px) / 2);
    height: 300px;
    position: fixed;
    top: 30%;
    right: 0;
    text-decoration: none; 
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    text-align: center;
}
.tab h1 {
    width: 30%;
    min-width: 150px;
    background-color: #E9C1C1;
    color: black;
    margin: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-family: "Zen Maru Gothic", serif;
    font-weight: 700;
    font-size: 25px;
    font-style: normal;
    box-shadow: 2px 2px 10px black;
}
.tab h1:hover {
    background-color: #FFF;
    color: #e98383;
}

/* main */

/* ハンバーガーメニュー非表示 */
.nav, .nav2 {
    display: none;
}

#main {
    width: 450px;
    background-color: white;
    margin: auto;
    justify-content: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.heart {
    width: 275px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 1;
}
.heart-bigger {
    cursor: pointer;
}
.heart-bigger:hover {
    width: 300px;
}
.heart-fuwa {
    animation: fuwafuwa 2s infinite ease-in-out;
}
.heart-move {
    animation: heart-visible 1s ease 0 forwards;
    animation-iteration-count: 1;
}
.heart-remove {
    visibility: hidden;
}
.shadow {
    width: 100px;
    height: 20px;
    position: fixed;
    top: 70%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    background-color: black;
    opacity: 50%;
}
.shadow-fuwa {
    animation: fuwashadow 2s infinite ease-in-out;
}
.shadow-hidden {
    visibility: hidden;
}
@keyframes fuwashadow {
    0%, 100% {
        width: 100px; height: 20px; opacity: 0.5;
    }
    50% {
        width: 120px; height: 30px; opacity: 0.7;
    }
}
.backbox {
    width: 450px;
    position: fixed;
    visibility: hidden;
    background-color: #E9C1C1;
    z-index: 2;
}
.backbox-move {
    animation: BackBox-big 1.5s ease 0s forwards;
    animation-iteration-count: BackBox-big 1;
}
.backbox-remove {
    bottom: 0;
    animation: BackBox-small 1.5s ease 0s forwards;
    animation-iteration-count: BackBox-small 1;
}
.backbox-visible {
    bottom: 0;
    animation: BackBox-bigup 1s ease 0s forwards;
    animation-iteration-count: BackBox-bigup 1;
}

@keyframes fuwafuwa {
    0%, 100% {
        top: 50%; z-index: 1;
    }
    50% {
        top: 55%; z-index: 1;
    }
}
@keyframes BackBox-big {
    0% { height: 0px; border-radius: 0 0 50px 50px;  visibility: visible; }
    100% { height: 100vh; border-radius: 0; visibility: visible; }
}
@keyframes BackBox-small {
    0% { height: 100vh; visibility: visible; }
    99% { visibility: visible; }
    100% { height: 0; visibility: hidden;}
}
@keyframes BackBox-bigup {
    0% { height: 0; visibility: visible; }
    100% { height: 100vh; visibility: visible;}
}

/* 導入漫画1コマ目 */
.koma1 {
    width: 400px;
    height: 400px;
    position: fixed;
    visibility: hidden;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.koma1-move {
    animation: Koma1-visible 1.5s ease 0 forwards;
    animation-iteration-count: 1;
}
.koma1-remove {
    animation: Koma1-hidden 1.5s ease 0 forwards;
    animation-iteration-count: 1;
    visibility: visible;
}
.koma1 img {
    position: relative;
}
.Joho {
    position: absolute;
    font-family: "Zen Kurenaido", sans-serif;
    font-weight: 10;
    color: #FFF;
    bottom: -10px;
    right: 10px;
    z-index: 4;
}

@keyframes Koma1-visible {
    0% { top: 40%; opacity: 0; visibility: visible; }
    100% { top: 50%; opacity: 1; visibility: visible; }
}
@keyframes Koma1-hidden {
    0% { top: 50%; opacity: 1; visibility: visible; }
    100% { top: 60%; opacity: 0; visibility: visible; }
}

/* 導入漫画2コマ目 */
.koma2 {
    width: 400px;
    height: 400px;
    position: fixed;
    visibility: hidden;
    border-radius: 10px;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.koma2-move {
    animation: Koma2-visible 1.5s ease 0 forwards;
    animation-iteration-count: 1;
}
.koma2-remove {
    animation: Koma2-hidden 1.5s ease 0 forwards;
    animation-iteration-count: 1;
    visibility: visible;
}
.koma2 img {
    position: relative;
}
.nanda {
    position: absolute;
    top: 253px;
    left: 50px;
    font-family: "Zen Kurenaido", sans-serif;
    z-index: 2;
}
@keyframes Koma2-visible {
    0% { top: 40%; opacity: 0; visibility: visible; }
    100% { top: 50%; opacity: 1; visibility: visible; }
}
@keyframes Koma2-hidden {
    0% { top: 50%; opacity: 1; visibility: visible; }
    100% { top: 60%; opacity: 0; visibility: visible; }
}

/* 導入漫画3コマ目 */
.koma3 {
    width: 400px;
    height: 400px;
    position: fixed;
    visibility: hidden;
    border-radius: 10px;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.koma3-move {
    animation: Koma3-visible 1.5s ease 0 forwards;
    animation-iteration-count: 1;
}
.koma3-remove {
    animation: Koma3-hidden 1.5s ease 0 forwards;
    animation-iteration-count: 1;
    visibility: visible;
}
.koma3 img {
    position: relative;
}
.basudayo {
    position: absolute;
    top: 34px;
    right: 24px;
    font-family: "Zen Kurenaido", sans-serif;
    z-index: 2;
}
.bikkuri {
    position: absolute;
    bottom: 3px;
    left: 22px;
    font-family: "Zen Kurenaido", sans-serif;
    z-index: 2;
}
@keyframes Koma3-visible {
    0% { top: 40%; opacity: 0; visibility: visible; }
    100% { top: 50%; opacity: 1; visibility: visible; }
}
@keyframes Koma3-hidden {
    0% { top: 50%; opacity: 1; visibility: visible; }
    100% { top: 60%; opacity: 0; visibility: visible; }
}

/* 導入漫画4コマ目 */
.koma4 {
    width: 400px;
    height: 400px;
    position: fixed;
    visibility: hidden;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: #E9C1C1;
}
.koma4-move {
    animation: Koma4-visible 1.5s ease 0 forwards;
    animation-iteration-count: 1;
}
.koma4-remove {
    animation: Koma4-hidden 1.5s ease 0 forwards;
    animation-iteration-count: 1;
    visibility: visible;
}
.koma4-img1 {
    width: 370px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.koma4-img2 {
    width: 320px;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
}
.kenketuka {
    position: absolute;
    top: 6px;
    left: 40px;
    font-family: "Zen Kurenaido", sans-serif;
    z-index: 3;
}
.eltu {
    position: absolute;
    bottom: 20px;
    left: 145px;
    font-family: "Zen Kurenaido", sans-serif;
    z-index: 3;
}
@keyframes Koma4-visible {
    0% { top: 40%; opacity: 0; visibility: visible; }
    100% { top: 50%; opacity: 1; visibility: visible; }
}
@keyframes Koma4-hidden {
    0% { top: 50%; opacity: 1; visibility: visible; }
    100% { top: 60%; opacity: 0; visibility: visible; }
}

/* 導入漫画5コマ目 */
.koma5 {
    width: 400px;
    height: 400px;
    position: fixed;
    visibility: hidden;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.koma5-move {
    animation: Koma5-visible 1.5s ease 0 forwards;
    animation-iteration-count: 1;
}
.koma5-remove {
    animation: Koma5-hidden 1.5s ease 0 forwards;
    animation-iteration-count: 1;
    visibility: visible;
}
.koma5 img {
    position: relative;
}
.nara {
    position: absolute;
    bottom: 58px;
    right: 30px;
    font-family: "Zen Kurenaido", sans-serif;
    z-index: 3;
}
@keyframes Koma5-visible {
    0% { top: 40%; opacity: 0; visibility: visible; }
    100% { top: 50%; opacity: 1; visibility: visible; }
}
@keyframes Koma5-hidden {
    0% { top: 50%; opacity: 1; visibility: visible; }
    100% { top: 60%; opacity: 0; visibility: visible; }
}


/* Heart Logo */
.main-Logo {
    position: fixed;
    width: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    filter: drop-shadow(3px 3px 3px #363636);
    visibility: hidden;
}
.Logo-move {
    animation: logo-visible 1s ease 0 forwards;
    animation-iteration-count: 1;
}
@keyframes logo-visible {
    0% { top: 40%; opacity: 0; visibility: visible; }
    100% { top: 50%; opacity: 1; visibility: visible; }
}
.Logo-remove {
    animation: logo-hidden 1.5s ease 0 forwards;
    animation-iteration-count: 1;
    visibility: visible;
}
@keyframes logo-hidden {
    0% { top: 50%; opacity: 1; visibility: visible; }
    100% { top: 60%; opacity: 0; visibility: visible; }
}
#TOP {
    width: 1px;
    height: 1px;
    position: absolute;
    top: 3500px;
}


/* ABOUT */
#about {
    margin-top: 5500px;
    text-align: center;
}
#about h1 {
    font-family: "Lemon", serif;
    font-size: 50px;
}
#about h2 {
    font-family: "Zen Kurenaido", sans-serif;
}
#about img {
    margin-top: 30px;
    width: 400px;
}


/* JAPAN */
#japan {
    margin-top: 200px;
    text-align: center;
}
#japan h1 {
    width: 140px;
    margin: auto;
    font-family: "Zen Kurenaido", sans-serif;
    background-color: #D0D0D0;
    font-size: 20px;
}
.j-koma1 {
    width: 400px;
    height: 400px;
    margin: 30px auto;
    position: relative;
    visibility: hidden;
    background-color: #F9F9F9;
    border: solid 4.5px rgb(90, 90, 90);
    position: relative;
    z-index: 1;
}
.Jk1-view {
    animation: Jk1-visible 1s ease-in 1 forwards;
    animation-iteration-count: 1;
}
@keyframes Jk1-visible {
    0% { transform: translateY(40px); opacity: 0; }
    100% { opacity: 1; visibility: visible; }
}
.j-koma1 h2 {
    position: absolute;
    bottom: 35px;
    left: 55px;
    font-size: 20px;
    text-align: left;
    font-family: "Zen Kurenaido", sans-serif;
}
.j-koma2 {
    width: 300px;
    height: 300px;
    margin: -50px 0 0 auto;
    visibility: hidden;
    border: solid 4.5px rgb(90, 90, 90);
    border-right: none;
    position: relative;
    z-index: 2;
}
.Jk2-view {
    animation: Jk2-visible 1s ease-in 1 forwards;
    animation-iteration-count: 1;
}
@keyframes Jk2-visible {
    0% { transform: translateX(40px); opacity: 0; }
    100% { opacity: 1; visibility: visible; }
}
.j-koma2 h2 {
    position: absolute;
    top: 4px;
    left: 42px;
    font-size: 20px;
    font-family: "Zen Kurenaido", sans-serif;
}
.j-koma3 {
    width: 350px;
    height: 350px;
    margin: -35px auto 50px 0;
    visibility: hidden;
    background-color: white;
    border: solid 4.5px rgb(90, 90, 90);
    border-left: none;
    position: relative;
    z-index: 1;
}
.Jk3-view {
    animation: Jk3-visible 1s ease-in 1 forwards;
    animation-iteration-count: 1;
}
@keyframes Jk3-visible {
    0% { transform: translateX(-40px); opacity: 0; }
    100% { opacity: 1; visibility: visible; }
}
.j-koma3 h2 {
    position: absolute;
    bottom: -48px;
    left: 120px;
    font-size: 20px;
    line-height: 1.3;
    font-family: "Zen Kurenaido", sans-serif;
    z-index: 3;
    white-space: nowrap;
}
.ganwo {
    position: absolute;
    bottom: -45px;
    left: 60px;
    z-index: 2;
}

/* グラフ */
#graph {
    width: 100%;
    height: 700px;
    margin-top: 100px;
    position: relative;
    visibility: visible;
    background-color: #F9F9F9;
    border: solid 4.5px rgb(90, 90, 90);
    border-left: none;
    border-right: none;
    z-index: 1;
}
.grabikkuri {
    width: 200px;
    position: absolute;
    top: 120px;
    right: 0;
    z-index: 2;
}
.grabikkuri-F {
    position: absolute;
    width: 420px;
}
#graph h2 {
    position: absolute;
    top: 13px;
    left: 32px;
    font-size: 20px;
    line-height: 1.3;
    font-family: "Zen Kurenaido", sans-serif;
}
.bar-graph {
    width: 450px;
    position: absolute;
    top: 250px;
    z-index: 3;
}
.bar-graph h3 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.bar-graph-wrap {
    width: 380px;
    top: 50px;
    left: 50px;
    border: solid 2.5px black;
    border-top: none;
    border-right: none;
    position: relative;
    height: 300px;
}
.bar-graph-wrap .gra {
    width: 12px;
    position: absolute;
    bottom: 0;
    border-radius: 4px 4px 0 0;
    flex-direction: column-reverse;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 10px;
    z-index: 5;
}
.bar-graph-wrap .gra span {
    font-size: 14px;
    color: #ffffff;
}
.H29 {
    left: 3%;
    background: #eb6974;
    height: 0;
    top: auto;
}
.H29-view {
    animation: graphAnimeH29 2s forwards;
}
@keyframes graphAnimeH29 {
    0% { height: 0%; }
    100% { height: 90%; }
}
.H30 {
    left: 17%;
    background: #eb6974;
    height: 0;
    top: auto;
}
.H30-view {
    animation: graphAnimeH30 2s forwards;
}
@keyframes graphAnimeH30 {
    0% { height: 0%; }
    100% { height: 75%; }
}
.R1 {
    left: 31%;
    background: #eb6974;
    height: 0;
    top: auto;
}
.R1-view {
    animation: graphAnimeR1 2s forwards;
}
@keyframes graphAnimeR1 {
    0% { height: 0%; }
    100% { height: 76%; }
}
.R2 {
    left: 45%;
    background: #eb6974;
    height: 0;
    top: auto;
}
.R2-view {
    animation: graphAnimeR2 2s forwards;
}
@keyframes graphAnimeR2 {
    0% { height: 0%; }
    100% { height: 61%; }
}
.R3 {
    left: 59%;
    background: #eb6974;
    height: 0;
    top: auto;
}
.R3-view {
    animation: graphAnimeR3 2s forwards;
}
@keyframes graphAnimeR3 {
    0% { height: 0%; }
    100% { height: 60%; }
}
.R4 {
    left: 73%;
    background: #eb6974;
    height: 0;
    top: auto;
}
.R4-view {
    animation: graphAnimeR4 2s forwards;
}
@keyframes graphAnimeR4 {
    0% { height: 0%; }
    100% { height: 45%; }
}
.R5 {
    left: 87%;
    background: #ce3a46;
    height: 0;
    top: auto;
}
.R5-view {
    animation: graphAnimeR5 2s forwards;
}
@keyframes graphAnimeR5 {
    0% { height: 0%; }
    100% { height: 31%; }
}
.unit {
    position: absolute;
    top: -50px;
    left: -50px;
}
.num0 {
    position: absolute;
    bottom: -30px;
    left: -35px;
}
.num1 {
    position: absolute;
    top: 115px;
    left: -35px;
}
.num2 {
    position: absolute;
    top: -30px;
    left: -35px;
}

.mother {
    width: 350px;
    height: 420px;
    margin: -50px auto 0 0;
    visibility: hidden;
    background-color: #F9F9F9;
    border: solid 4.5px rgb(90, 90, 90);
    border-left: none;
    position: relative;
    z-index: 2;
}
.mother-view {
    animation: mother-visible 1s ease-in 1 forwards;
    animation-iteration-count: 1;
}
@keyframes mother-visible {
    0% { transform: translateX(-40px); opacity: 0; }
    100% { opacity: 1; visibility: visible; }
}
.mother-img {
    position: absolute;
    bottom: 0;
}
.mother-F {
    position: absolute;
    top: -45px;
    left: 35px;
}
.mother h2 {
    position: absolute;
    top: 3px;
    left: 52px;
    font-size: 20px;
    font-family: "Zen Kurenaido", sans-serif;
    z-index: 3;
    white-space: nowrap;
}

.shira {
    width: 350px;
    height: 350px;
    margin: -50px 0 0 auto;
    visibility: hidden;
    background-color: #F9F9F9;
    border: solid 4.5px rgb(90, 90, 90);
    border-right: none;
    position: relative;
    z-index: 2;
}
.shira-view {
    animation: shira-visible 1s ease-in 1 forwards;
    animation-iteration-count: 1;
}
@keyframes shira-visible {
    0% { transform: translateX(40px); opacity: 0; }
    100% { opacity: 1; visibility: visible; }
}
.shira h2 {
    position: absolute;
    top: 9px;
    left: 20px;
    font-size: 20px;
    font-family: "Zen Kurenaido", sans-serif;
    z-index: 3;
}


.hug {
    width: 450px;
    height: 700px;
    margin-top: 300px;
    position: relative;
    z-index: 2;
    text-align: center;
}
.hugheart{
    margin-top: 50px;
    width: 700px;
    visibility: hidden;
}
.hugheart-view {
    animation: hugheart-visible 1s ease-in 1 forwards;
    animation-iteration-count: 1;
}
@keyframes hugheart-visible {
    0% { opacity: 0;}
    100% { opacity: 1; visibility: visible;}
}
.hug h2 {
    width: 300px;
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 25px;
    font-family: "Zen Kurenaido", sans-serif;
    z-index: 3;
}
.anata {
    width: 400px;
    height: 130px;
    border-radius: 40%;
    background-color: #ffbebe;
    position: absolute;
    top: 450px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    visibility: hidden;
    z-index: 2;
}
.anata-view {
    animation: anata-visible 1s ease-in 1 forwards;
    animation-iteration-count: 1;
}
@keyframes anata-visible {
    0% { opacity: 0; visibility: visible;}
    100% { opacity: 1; visibility: visible;}
}
.anata h3 {
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 25px;
    font-family: "Zen Kurenaido", sans-serif;
    z-index: 3;
}

.kotira {
	display: block;
	text-align: center;
	text-decoration: none;
	width: 200px;
    height: 60px;
    line-height: 60px;
	margin: 150px auto 0;
	font-weight: bold;
	border: 2px solid #c0432d;
	background: #c0432d;
	color: #fff;
	border-radius: 5px;
	transition: 0.5s;
	animation: move_d 3s infinite;
	box-shadow: 0 5px 0 #a13826;
	position: relative;
    cursor: pointer;
    z-index: 5;
}
.kotira h2 {
    font-size: 17px;
    margin: 0 5px 0;
}
.kotira span {
    font-size: 28px;
}
@keyframes move_d {
    0% {box-shadow: 0 5px 0 #a13826; top: 0px;}
    10% {box-shadow: 0 0 0 #a13826; top: 5px;}
    20% {box-shadow: 0 5px 0 #a13826; top: 0px;}
    30% {box-shadow: 0 0 0 #a13826; top: 5px;}
    40% {box-shadow: 0 5px 0 #a13826; top: 0px;}
}
.kotira:hover {
	color: #c0432d;
	background: #fff;
	border: 2px solid #a13826;
}

#merit {
    width: 450px;
    margin-top: 300px;
    text-align: center;
}
.meritTitle {
    font-family: "Lemon", serif;
    font-size: 50px;
}
.meritSubTitle {
    font-family: "Zen Kurenaido", sans-serif;
}
.meritComment {
    font-family: "Zen Kurenaido", sans-serif;
}

.gakutika {
    position: relative;
    margin-top: 30px;
    visibility: hidden;
}
.gakutika-view {
    animation: gakutika-visible 1s ease-in 1 forwards;
    animation-iteration-count: 1;
}
@keyframes gakutika-visible {
    0% { transform: translateX(-40px); opacity: 0; }
    100% { opacity: 1; visibility: visible; }
}
.gakutika-text {
    width: 370px;
    height: 30px;
    position: relative;
    background-color: #E9C1C1;
    margin: 100px 0 30px;
    display: flex;
}
.gakutika-text h1 {
    font-family: "Zen Maru Gothic", serif;
    font-weight: 900;
    font-size: 50px;
    font-style: normal;
    margin: -60px 30px 0 25px;
}
.gakutika-text h2 {
    font-family: "Zen Maru Gothic", serif;
    font-weight: 900;
    font-size: 40px;
    font-style: normal;
    white-space: nowrap;
    margin-left: 10px;
    margin-top: -30px;
}
.gakutika-text h3 {
    width: 30px;
    position: absolute;
    top: -90px;
    left: 75px;
    font-size: 50px;
    font-weight: 40;
}
.gakuimg {
    width: 450px;
    height: 500px;
    position: relative;
}
.suit {
    position: absolute;
    width: 350px;
    left: 0;
    transform: translate(-50px);
}
.gaku-shadow {
    position: absolute;
    top: 310px;
    left: 105px;
    width: 80px;
    height: 50px;
    border-radius: 50%;
    background-color: black;
    opacity: 0.3;
}
.niko {
    position: absolute;
    width: 350px;
    right: 0;
    bottom: -30px;
}
.niko-F {
    position: absolute;
    width: 300px;
    right: 30px;
    bottom: -170px;
}
.gakutika-girlcome {
    position: absolute;
    bottom: -57px;
    right: 65px;
    z-index: 3;
}

.okashi {
    position: relative;
    margin-top: 200px;
    visibility: hidden;
}
.okashi-view {
    animation: okashi-visible 1s ease-in 1 forwards;
    animation-iteration-count: 1;
}
@keyframes okashi-visible {
    0% { transform: translateX(-40px); opacity: 0; }
    100% { opacity: 1; visibility: visible; }
}
.okashi-text {
    width: 370px;
    height: 30px;
    position: relative;
    background-color: #E9C1C1;
    margin: 50px 0 30px;
    display: flex;
    text-align: left;
}
.okashi-text h1 {
    font-family: "Zen Maru Gothic", serif;
    font-weight: 900;
    font-size: 50px;
    font-style: normal;
    margin: -60px 30px 0 25px;
}
.okashi-text h2 {
    font-family: "Zen Maru Gothic", serif;
    font-weight: 900;
    font-size: 28px;
    font-style: normal;
    white-space: nowrap;
    line-height: 40px;
    margin-left: 10px;
    margin-top: -20px;
}
.okashi-text h3 {
    width: 30px;
    position: absolute;
    top: -90px;
    left: 75px;
    font-size: 50px;
    font-weight: 40;
}
.okashimg {
    width: 450px;
    height: 500px;
    position: relative;
}
.benefits {
    position: absolute;
    width: 350px;
    left: 15px;
    transform: translate(-50px);
}
.hoshi {
    position: absolute;
    width: 350px;
    right: 0;
    bottom: -30px;
}
.hoshi-F {
    position: absolute;
    width: 300px;
    right: 30px;
    bottom: -170px;
}
.okashi-girlcome {
    position: absolute;
    bottom: -57px;
    right: 78px;
    z-index: 3;
}

.health {
    position: relative;
    margin-top: 200px;
    visibility: hidden;
}
.health-view {
    animation: health-visible 1s ease-in 1 forwards;
    animation-iteration-count: 1;
}
@keyframes health-visible {
    0% { transform: translateX(-40px); opacity: 0; }
    100% { opacity: 1; visibility: visible; }
}
.health-text {
    width: 370px;
    height: 30px;
    position: relative;
    background-color: #E9C1C1;
    margin: 50px 0 30px;
    display: flex;
    text-align: left;
}
.health-text h1 {
    font-family: "Zen Maru Gothic", serif;
    font-weight: 900;
    font-size: 50px;
    font-style: normal;
    margin: -60px 30px 0 25px;
}
.health-text h2 {
    font-family: "Zen Maru Gothic", serif;
    font-weight: 900;
    font-size: 28px;
    font-style: normal;
    white-space: nowrap;
    line-height: 40px;
    margin-left: 10px;
    margin-top: -20px;
}
.health-text h3 {
    width: 30px;
    position: absolute;
    top: -90px;
    left: 75px;
    font-size: 50px;
    font-weight: 40;
}
.healthimg {
    width: 450px;
    height: 500px;
    position: relative;
}
.walk {
    position: absolute;
    width: 400px;
    top: 0;
    left: -50px;
    bottom: -30px;
}
.he-shadow {
    position: absolute;
    top: 330px;
    left: 70px;
    width: 130px;
    height: 50px;
    border-radius: 50%;
    background-color: black;
    opacity: 0.3;
}
.down {
    position: absolute;
    width: 350px;
    right: 0;
    bottom: -30px;
}
.down-F {
    position: absolute;
    width: 300px;
    right: 30px;
    bottom: -170px;
}
.health h3 {
    position: absolute;
    bottom: -57px;
    right: 68px;
    z-index: 3;
}

.kotira2 {
	display: block;
	text-align: center;
	text-decoration: none;
	width: 200px;
    height: 60px;
    line-height: 60px;
	margin: 150px auto 0;
	font-weight: bold;
	border: 2px solid #c0432d;
	background: #c0432d;
	color: #fff;
	border-radius: 5px;
	transition: 0.5s;
	animation: move_d2 3s infinite;
	box-shadow: 0 5px 0 #a13826;
	position: relative;
    cursor: pointer;
    z-index: 5;
}
.kotira2 h2 {
    font-size: 17px;
    margin: 0 5px 0;
}
.kotira2 span {
    font-size: 28px;
}
@keyframes move_d2 {
    0% {box-shadow: 0 5px 0 #a13826; top: 0px;}
    10% {box-shadow: 0 0 0 #a13826; top: 5px;}
    20% {box-shadow: 0 5px 0 #a13826; top: 0px;}
    30% {box-shadow: 0 0 0 #a13826; top: 5px;}
    40% {box-shadow: 0 5px 0 #a13826; top: 0px;}
}
.kotira2:hover {
	color: #c0432d;
	background: #fff;
	border: 2px solid #a13826;
}


/* footer */
footer {
    position: relative;
    margin-top: 200px;
    width: 450px;
    height: 280px;
    background-color: #E9C1C1;
    text-align: center;
}
footer::before, footer::after {
    content: "";
    display: block;
    position: absolute;
}
footer::before {
    width: 120%;
    height: 200px;
    background-color: #FFFFFF;
    right: -50%;
    bottom: 170px;
    border-radius: 50% 100%;
    transform: rotate(16.5deg);
}
footer::after {
    width: 80%;
    height: 200px;
    background-color: #E9C1C1;
    left: -28%;
    bottom: 150px;
    border-radius: 50% 100%;
}
.footer-Logo {
    position: relative;
    width: 225px;
    z-index: 5;
}
.subfooter::before {
    width: 120%;
    height: 200px;
    background-color: #f0f0f0;
    right: -50%;
    bottom: 170px;
    border-radius: 50% 100%;
    transform: rotate(16.5deg);
}


/* question */
#main2 {
    width: 450px;
    background-color: #f0f0f0;
    margin: auto;
    justify-content: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Detail */
#Detail {
    width: 450px;
    height: auto;
    text-align: center;
}
.De-back {
    width: 450px;
    height: 600px;
    position: absolute;
    top: 0;
    background-color: #E9C1C1;
    z-index: -1;
}
.De-back::before, .De-back::after, .Despan1, .Despan2{
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
}
  
.De-back::after {
    width: 25%;
    height: 20%;
    background-color: rgb(240, 240, 240);
    left: -5%;
    bottom: -12%;
    border-radius: 50% 60%;
}
.De-back::before {
    width: 25%;
    height: 25%;
    background-color: #E9C1C1;
    left: 22.5%;
    bottom: -8.2%;
    border-radius: 50% 60%;
    transform: rotate(90deg);
}
.Despan1{
    width: 25%;
    height: 33%;
    background-color: rgb(240, 240, 240);
    right: 18%;
    bottom: -19%;
    border-radius: 50% 60%;
    transform: rotate(90deg);
}
.Despan2{
    width: 25%;
    height: 27%;
    background-color: #E9C1C1;
    right: -18.5%;
    bottom: -6%;
    border-radius: 50% 60%;
    transform: rotate(70deg);
}
.detailtitle {
    font-family: "Lemon", serif;
    font-size: 50px;
}
.situmon {
    font-family: "Zen Maru Gothic", serif;
    font-weight: 900;
    font-size: 50px;
    font-style: normal;
}

/* QA1 */
.QA1 {
    width: 450px;
    height: 500px;
    position: relative;
}
.Q1 {
    position: relative;
    width: 450px;
    height: 105px;
}
.Q1-img {
    width: 312px;
    position: absolute;
    right: 50px;
    top: 15px;
    filter: drop-shadow(5px 5px 0 rgb(133, 133, 133));
    z-index: 1;
}
.Q-circle {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #BE3455;
    text-align: center;
    margin-left: 60px;
    z-index: 2;
}
.Q-circle h1 {
    color: #FFF;
    font-family: "Judson", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 35px;
    line-height: 50px;
}
.Q1-text {
    position: absolute;
    color: black;
    top: 19px;
    left: 120px;
    font-size: 17px;
    font-weight: bold;
    z-index: 2;
}
.A1 {
    position: relative;
    margin-top: 25px;
    width: 450px;
    height: 105px;
}
.A1-img {
    width: 312px;
    position: absolute;
    left: 50px;
    top: 15px;
    filter: drop-shadow(5px 5px 0 rgb(133, 133, 133));
    z-index: 1;
}
.A-circle {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #BE3455;
    text-align: center;
    margin-left: 340px;
    z-index: 2;
}
.card {
    position: absolute;
    top: 80px;
    left: 65px;
    z-index: 1;
}
.A-circle h1 {
    color: #FFF;
    font-family: "Judson", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 35px;
    line-height: 50px;
}
.A1-text {
    position: absolute;
    color: black;
    width: 260px;
    top: 30px;
    left: 80px;
    font-size: 14.5px;
    z-index: 2;
}

/* QA2 */
.QA2 {
    width: 450px;
    height: 430px;
    position: relative;
}
.Q2 {
    position: relative;
    width: 450px;
    height: 105px;
}
.Q2-img {
    width: 312px;
    position: absolute;
    right: 50px;
    top: 15px;
    filter: drop-shadow(5px 5px 0 rgb(133, 133, 133));
    z-index: 1;
}
.Q2-text {
    position: absolute;
    color: black;
    top: 12px;
    left: 120px;
    font-size: 17px;
    font-weight: bold;
    line-height: 22px;
    z-index: 2;
}
.A2 {
    position: relative;
    margin-top: 25px;
    width: 450px;
    height: 105px;
}
.A2-img {
    width: 312px;
    position: absolute;
    left: 50px;
    top: 15px;
    filter: drop-shadow(5px 5px 0 rgb(133, 133, 133));
    z-index: 1;
}
.A2-text {
    position: absolute;
    color: black;
    width: 260px;
    top: 30px;
    left: 80px;
    font-size: 14.5px;
    z-index: 2;
}

/* QA3 */
.QA3 {
    width: 450px;
    height: 670px;
    position: relative;
}
.Q3 {
    position: relative;
    width: 450px;
    height: 105px;
}
.Q3-img {
    width: 312px;
    position: absolute;
    right: 50px;
    top: 15px;
    filter: drop-shadow(5px 5px 0 rgb(133, 133, 133));
    z-index: 1;
}
.Q3-text {
    position: absolute;
    color: black;
    top: 12px;
    left: 120px;
    font-size: 17px;
    font-weight: bold;
    line-height: 22px;
    z-index: 2;
}
.A3 {
    position: relative;
    margin-top: 25px;
    width: 450px;
    height: 105px;
}
.A3-img {
    width: 312px;
    position: absolute;
    left: 50px;
    top: 15px;
    filter: drop-shadow(5px 5px 0 rgb(133, 133, 133));
    z-index: 1;
}
.A3-text {
    position: absolute;
    color: black;
    width: 260px;
    top: 30px;
    left: 80px;
    font-size: 14.5px;
    line-height: 21px;
    z-index: 2;
}

/* QA4 */
.QA4 {
    width: 450px;
    height: 600px;
    position: relative;
}
.Q4 {
    position: relative;
    width: 450px;
    height: 105px;
}
.Q4-img {
    width: 312px;
    position: absolute;
    right: 50px;
    top: 15px;
    filter: drop-shadow(5px 5px 0 rgb(133, 133, 133));
    z-index: 1;
}
.Q4-text {
    position: absolute;
    color: black;
    top: 12px;
    left: 120px;
    font-size: 17px;
    font-weight: bold;
    line-height: 22px;
    z-index: 2;
}
.A4 {
    position: relative;
    margin-top: 25px;
    width: 450px;
    height: 105px;
}
.A4-img {
    width: 312px;
    position: absolute;
    left: 50px;
    top: 15px;
    filter: drop-shadow(5px 5px 0 rgb(133, 133, 133));
    z-index: 1;
}
.A4-text {
    position: absolute;
    color: black;
    width: 260px;
    top: 35px;
    left: 80px;
    font-size: 14.5px;
    line-height: 21px;
    z-index: 2;
}
.A4-text a {
    color: black;
    text-decoration: underline solid black;
}
.A4-kaigyo {
    display: block;
    content: "";
    margin-bottom: 5px;
}

/* QA5 */
.QA5 {
    width: 450px;
    height: 1100px;
    position: relative;
}
.Q5 {
    position: relative;
    width: 450px;
    height: 105px;
}
.Q5-img {
    width: 312px;
    position: absolute;
    right: 50px;
    top: 15px;
    filter: drop-shadow(5px 5px 0 rgb(133, 133, 133));
    z-index: 1;
}
.Q5-text {
    position: absolute;
    color: black;
    top: 12px;
    left: 120px;
    font-size: 17px;
    font-weight: bold;
    line-height: 22px;
    z-index: 2;
}
.A5 {
    position: relative;
    margin-top: 25px;
    width: 450px;
    height: 105px;
}
.A5-img {
    width: 312px;
    position: absolute;
    left: 50px;
    top: 15px;
    filter: drop-shadow(5px 5px 0 rgb(133, 133, 133));
    z-index: 1;
}
.A5-text {
    position: absolute;
    color: black;
    width: 260px;
    top: 35px;
    left: 80px;
    font-size: 14.5px;
    line-height: 21px;
    z-index: 2;
}
.A5-text a {
    color: black;
    text-decoration: underline solid black;
}

#notes {
    width: 450px;
    height: auto;
    text-align: center;
    position: relative;
}
.notes-set {
    width: 450px;
    position: relative;
}
.notes-img {
    position: absolute;
    width: 450px;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    opacity: 0.5;
    z-index: -1;
}
.notestitle {
    font-family: "Lemon", serif;
    font-size: 50px;
}
.tyui {
    font-family: "Zen Maru Gothic", serif;
    font-weight: 900;
    font-size: 50px;
    font-style: normal;
}

#hituyou {
    width: 400px;
    height: auto;
    margin: 150px 0 0 auto;
    position: relative;
    visibility: hidden;
}
.hituyou-view {
    animation: hituyou-visible 1s ease-in 1 forwards;
    animation-iteration-count: 1;
}
@keyframes hituyou-visible {
    0% { opacity: 0; visibility: visible;}
    100% { opacity: 1; visibility: visible; }
}
.hituyou-title {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 900;
    font-size: 30px;
    font-style: normal;
    margin: 0 0 0 20px;
}
.hituyou-back {
    position: relative;
    width: 400px;
    height: 520px;
    background-color: #E9C1C1;
    border-radius: 10px 0 0 10px;
    text-align: left;
    box-shadow: 3px 3px 0 black;
}
.hituyou-back h3 {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-size: 17px;
    line-height: 25px;
    font-style: normal;
    position: absolute;
    top: 5px;
    left: 15px;
}
.kaigyo {
    display: block;
    content: "";
    margin-bottom: 20px;
}
.hituyou-back-img {
    position: absolute;
    width: 270px;
    bottom: 0;
    right: -10px;
    transform: scale(-1, 1);
}


#hukusayo {
    width: 400px;
    height: auto;
    margin: 200px auto 400px 0;
    position: relative;
    visibility: hidden;
    z-index: 5;
}
.hukusayo-view {
    animation: hukusayo-visible 1s ease-in 1 forwards;
    animation-iteration-count: 1;
}
@keyframes hukusayo-visible {
    0% { opacity: 0; visibility: visible;}
    100% { opacity: 1; visibility: visible; }
}
.hukusayo-title {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 900;
    font-size: 30px;
    font-style: normal;
    text-shadow:3px 3px 0 #f0f0f0, -3px -3px 0 #f0f0f0,
              -3px 3px 0 #f0f0f0, 3px -3px 0 #f0f0f0,
              0px 3px 0 #f0f0f0,  0-3px 0 #f0f0f0,
              -3px 0 0 #f0f0f0, 3px 0 0 #f0f0f0;
    margin: 0 0 0 20px;
}
.hukusayo-top-img {
    position: absolute;
    width: 200px;
    top: -140px;
    left: 0;
    transform: scale(-1, 1);
    z-index: -1;
}
.hukusayo-back {
    position: relative;
    width: 400px;
    height: 500px;
    background-color: #E9C1C1;
    border-radius: 0 10px 10px 0;
    text-align: left;
    box-shadow: 3px 3px 0 black;
}
.hukusayo-back h3 {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-size: 17px;
    line-height: 25px;
    font-style: normal;
    position: absolute;
    top: 5px;
    left: 15px;
}
.hukusayo-back h3 span {
 font-size: 20px;
}
.hukusayo-back-img {
    position: absolute;
    width: 350px;
    bottom: -285px;
    right: -100px;
    z-index: 3;
}
.hukusayo-span {
    height: 10px;
}
.kaigyo2 {
    display: block;
    content: "";
    margin-bottom: 7px;
}
.hukusayo-circle {
    position: absolute;
    right: 14.5px;
    bottom: -295px;
    width: 80px;
    height: 40px;
    border-radius: 50%;
    background-color: black;
    opacity: 0.3;
    z-index: 2;
}
