@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;
}
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: 101;
}
#load img {
    margin-top: 30vh;
    width: 50vw;
    animation: DokuDoku 1.2s infinite ease-in-out
}
@keyframes DokuDoku {
    0% { scale: 1; }
    50% { scale: 1; }
    60% { scale: 1.2; }
    70% { scale:1; }
    80% { scale: 1.2; }
    90% { scale: 1; }
}
.load-hidden {
    visibility: hidden;
}

/* ロゴ */
.Logo {
    display: none;
}

/* タブ */
.tab {
    display: none;
}

/* main */

/* ハンバーガーメニュー */
.nav {
    visibility: hidden;
}
.nav {
    display: initial;
}

/* チェックボックスを非表示にする */
.drawer_hidden {
    display: none;
  }
  
  /* ハンバーガーアイコンの設置スペース */
  .drawer_open {
    position: fixed;
    right: 0;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    margin: 0 0 0 auto;
    z-index: 100;/* 重なり順を一番上にする */
    cursor: pointer;
  }
  
  /* ハンバーガーメニューのアイコン */
  .drawer_open span,
  .drawer_open span:before,
  .drawer_open span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background: #333;
    transition: 0.5s;
    position: absolute;
  }
  
  /* 三本線の一番上の棒の位置調整 */
  .drawer_open span:before {
    bottom: 8px;
  }
  
  /* 三本線の一番下の棒の位置調整 */
  .drawer_open span:after {
    top: 8px;
  }
  
  /* アイコンがクリックされたら真ん中の線を透明にする */
  #drawer_input:checked ~ .drawer_open span {
    background: rgba(255, 255, 255, 0);
  }
  
  /* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
  #drawer_input:checked ~ .drawer_open span::before {
    bottom: 0;
    transform: rotate(45deg);
  }
  
  #drawer_input:checked ~ .drawer_open span::after {
    top: 0;
    transform: rotate(-45deg);
}

/* メニュー */
.headnav {
    display: none;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    background-color: #f0f0f0;
    z-index: 99;
    transition: 0.5s;
}
.menu {
    height: 45vh;
    text-align: left;
    position: absolute;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
}
.menu h3 {
    font-family: "Lemon", serif;
    font-size: 32px;
    margin: 0;
    color: #432;
}
.menu2 {
    height: 30vh;
    text-align: left;
    position: absolute;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
}
.menu2 h3 {
    font-family: "Lemon", serif;
    font-size: 32px;
    margin: 0;
    color: #432;
}
.underline {
    position: absolute;
    top: calc(120px + 45vh);
    left: 50%;
    transform: translateX(-50%);
    width: 90vw;
    height: 3px;
    background-color: #432;
}
.headnav img {
    width: 70vw;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: kurakura 5s infinite ease-in-out;
}
@keyframes kurakura {
    0% { transform: translate(-50%) rotate(0);}
    40% { transform: translate(-50%) rotate(0);}
    60% { transform: translate(-50%) rotate(20deg);}
    80% { transform: translate(-50%) rotate(-20deg);}
    100% { transform: translate(-50%) rotate(0);}
}
#drawer_input:checked ~ .headnav {
    display: inline;
}

#main {
    width: 100vw;
    background-color: white;
    margin: auto;
    justify-content: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.heart {
    width: 70vw;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    cursor: pointer;
    z-index: 1;
}
.heart-bigger {
    cursor: pointer;
}
.heart-bigger:hover {
    width: 72vw;
}
.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: 100vw;
    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: 350px;
    height: 350px;
    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: 350px;
    height: 350px;
    position: fixed;
    visibility: hidden;
    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: 223px;
    left: 47px;
    font-family: "Zen Kurenaido", sans-serif;
    font-size: 15px;
    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: 350px;
    height: 350px;
    position: fixed;
    visibility: hidden;
    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: 32px;
    right: 24px;
    font-family: "Zen Kurenaido", sans-serif;
    font-size: 15px;
    z-index: 2;
}
.bikkuri {
    position: absolute;
    bottom: 3px;
    left: 22px;
    font-family: "Zen Kurenaido", sans-serif;
    font-size: 15px;
    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: 350px;
    height: 350px;
    position: fixed;
    visibility: hidden;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.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: 320px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.koma4-img2 {
    width: 300px;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
}
.kenketuka {
    position: absolute;
    top: 10px;
    left: 45px;
    font-family: "Zen Kurenaido", sans-serif;
    font-size: 15px;
    z-index: 3;
}
.eltu {
    position: absolute;
    bottom: 22px;
    left: 115px;
    font-family: "Zen Kurenaido", sans-serif;
    font-size: 15px;
    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: 350px;
    height: 350px;
    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: 54px;
    right: 30px;
    font-family: "Zen Kurenaido", sans-serif;
    font-size: 15px;
    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;
}


/* 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: 350px;
    height: 350px;
    margin: 30px auto;
    position: relative;
    visibility: hidden;
    background-color: #F9F9F9;
    border: solid 4.5px rgb(90, 90, 90);
    z-index: 1;
}
.Jk1-view {
    animation: Jk1-visible 1s ease-in 1 forwards;
    animation-iteration-count: 1;
}
@keyframes Jk1-visible {
    0% { transform: translateY(20px); opacity: 0; visibility: visible; }
    100% { opacity: 1; visibility: visible; }
}
.j-koma1 h2 {
    position: absolute;
    bottom: 32px;
    left: 52px;
    font-size: 17px;
    text-align: left;
    font-family: "Zen Kurenaido", sans-serif;
}
.j-koma2 {
    width: 300px;
    height: 300px;
    margin: -50px 0 0 auto;
    visibility: hidden;
    background-color: blue;
    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(20px); opacity: 0; }
    100% { opacity: 1; visibility: visible; }
}
.j-koma2 h2 {
    position: absolute;
    top: 8px;
    left: 42px;
    font-size: 17px;
    font-family: "Zen Kurenaido", sans-serif;
}
.j-koma3 {
    width: 320px;
    height: 320px;
    margin: -30px auto 50px 0;
    visibility: hidden;
    background-color: #F9F9F9;
    border: solid 4.5px rgb(90, 90, 90);
    border-left: none;
    position: relative;
    z-index: 1;
}
.j-koma3 h2 {
    position: absolute;
    bottom: -47px;
    left: 120px;
    font-size: 17px;
    line-height: 1.3;
    font-family: "Zen Kurenaido", sans-serif;
    z-index: 3;
    white-space: nowrap;
}
.Jk3-view {
    animation: Jk3-visible 1s ease-in 1 forwards;
    animation-iteration-count: 1;
}
@keyframes Jk3-visible {
    0% { transform: translateX(-20px); opacity: 0; }
    100% { opacity: 1; visibility: visible; }
}
.ganwo {
    width: 300px;
    position: absolute;
    bottom: -45px;
    left: 70px;
    z-index: 2;
}

/* グラフ */
#graph {
    width: 100%;
    height: 650px;
    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;
}
.grabikkuri-F {
    width: 370px;
    position: absolute;
}
#graph h2 {
    position: absolute;
    top: 10px;
    left: 32px;
    font-size: 17px;
    line-height: 1.4;
    font-family: "Zen Kurenaido", sans-serif;
}
.bar-graph {
    width: 350px;
    position: absolute;
    top: 250px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}
.bar-graph h3 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.bar-graph-wrap {
    width: 300px;
    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%; }
}
.graph-view {
    animation: graphAnim02 3s forwards;
}
@keyframes graphAnim02 {
    0% {
      transform: translateY(100%);
    }
    100% {
      transform: translateY(0);
    }
}
.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: 330px;
    height: 420px;
    margin: -20px 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 {
    width: 300px;
    position: absolute;
    top: -30px;
    left: 20px;
}
.mother h2 {
    position: absolute;
    top: 12px;
    left: 35px;
    font-size: 17px;
    font-family: "Zen Kurenaido", sans-serif;
    z-index: 3;
}

.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: 14px;
    left: 28px;
    font-size: 17px;
    font-family: "Zen Kurenaido", sans-serif;
    z-index: 3;
}

.hug {
    width: 100vw;
    height: 700px;
    margin-top: 300px;
    visibility: visible;
    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: 20px;
    font-family: "Zen Kurenaido", sans-serif;
    z-index: 3;
}
.anata {
    width: 350px;
    height: 130px;
    border-radius: 40%;
    background-color: #ffbebe;
    position: absolute;
    top: 375px;
    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: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    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 {
    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: 100px;
    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: 85%;
    height: 30px;
    position: relative;
    background-color: #E9C1C1;
    margin: 30px 0 30px;
    display: flex;
}
.gakutika-text h1 {
    font-family: "Zen Maru Gothic", serif;
    font-weight: 450;
    font-style: normal;
    font-size: 50px;
    margin: -55px 30px 0 15px;
}
.gakutika-text h2 {
    font-family: "Zen Maru Gothic", serif;
    font-weight: 1000;
    font-size: 35px;
    white-space: nowrap;
    margin-top: -25px;
}
.gakutika-text h3 {
    width: 30px;
    height: 40px;
    position: absolute;
    top: -70px;
    left: 65px;
    font-size: 40px;
    font-weight: 40;
}
.gakuimg {
    width: 100%;
    height: 500px;
    position: relative;
}
.suit {
    position: absolute;
    width: 350px;
    left: 0;
    transform: translate(-50px);
}
.gaku-shadow {
    position: absolute;
    top: 315px;
    left: 111px;
    width: 70px;
    height: 40px;
    border-radius: 50%;
    background-color: black;
    opacity: 0.3;
}
.niko {
    position: absolute;
    width: 300px;
    right: 0;
    bottom: -30px;
}
.niko-F {
    position: absolute;
    width: 270px;
    right: 30px;
    bottom: -150px;
}
.gakutika-girlcome {
    position: absolute;
    bottom: -49px;
    right: 63px;
    font-size: 17px;
    z-index: 3;
}

.okashi {
    position: relative;
    margin-top: 100px;
    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: 85%;
    height: 30px;
    position: relative;
    background-color: #E9C1C1;
    margin: 30px 0 30px;
    display: flex;
    text-align: left;
}
.okashi-text h1 {
    font-family: "Zen Maru Gothic", serif;
    font-weight: 450;
    font-style: normal;
    font-size: 50px;
    margin: -55px 30px 0 15px;
}
.okashi-text h2 {
    font-family: "Zen Maru Gothic", serif;
    font-weight: 1000;
    font-size: 25px;
    line-height: 1.3;
    white-space: nowrap;
    margin-top: -20px;
}
.okashi-text h3 {
    width: 30px;
    height: 40px;
    position: absolute;
    top: -70px;
    left: 65px;
    font-size: 40px;
    font-weight: 40;
}
.okashimg {
    width: 100%;
    height: 500px;
    position: relative;
}
.benefits {
    position: absolute;
    width: 300px;
    left: 30px;
    transform: translate(-50px);
}
.hoshi {
    position: absolute;
    width: 350px;
    right: 0;
    bottom: -30px;
}
.hoshi-F {
    position: absolute;
    width: 270px;
    right: 30px;
    bottom: -150px;
}
.okashi-girlcome {
    position: absolute;
    bottom: -48px;
    right: 72px;
    font-size: 17px;
    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: 85%;
    height: 30px;
    position: relative;
    background-color: #E9C1C1;
    margin: 30px 0 30px;
    display: flex;
    text-align: left;
}
.health-text h1 {
    font-family: "Zen Maru Gothic", serif;
    font-weight: 450;
    font-style: normal;
    font-size: 50px;
    margin: -55px 30px 0 15px;
}
.health-text h2 {
    font-family: "Zen Maru Gothic", serif;
    font-weight: 1000;
    font-size: 25px;
    line-height: 1.3;
    white-space: nowrap;
    margin-top: -20px;
}
.health-text h3 {
    width: 30px;
    height: 40px;
    position: absolute;
    top: -70px;
    left: 65px;
    font-size: 40px;
    font-weight: 40;
}
.healthimg {
    width: 100%;
    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: 270px;
    right: 30px;
    bottom: -150px;
}
.health-girlcome {
    position: absolute;
    bottom: -48px;
    right: 63px;
    font-size: 17px;
    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;
    padding: 3px;
    margin-top: 200px;
    width: 100%;
    height: 300px;
    background-color: #E9C1C1;
    text-align: center;
}
footer::before, footer::after {
    content: "";
    display: block;
    position: absolute;
}
footer::before {
    width: 125vw;
    height: 70%;
    background-color: #FFFFFF;
    right: -50%;
    bottom: 170px;
    border-radius: 50% 100%;
    transform: rotate(16.5deg);
}
footer::after {
    width: 82vw;
    height: 60%;
    background-color: #E9C1C1;
    left: -22%;
    bottom: 160px;
    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: 100vw;
    background-color: rgb(240, 240, 240);
    justify-content: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}


/* Detail */
#Detail {
    width: 100vw;
    height: 250px;
    text-align: center;
}
.De-back {
    width: 100%;
    height: 500px;
    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: 25vw;
    height: 20%;
    background-color: rgb(240, 240, 240);
    left: -5%;
    bottom: -12%;
    border-radius: 50% 60%;
}
.De-back::before {
    width: 33vw;
    height: 25%;
    background-color: #E9C1C1;
    left: 18%;
    bottom: -8.2%;
    border-radius: 50% 60%;
}
.Despan1{
    width: 45vw;
    height: 25%;
    background-color: rgb(240, 240, 240);
    right: 7%;
    bottom: -19%;
    border-radius: 50% 60%;
}
.Despan2{
    width: 20vw;
    height: 20%;
    background-color: #E9C1C1;
    right: -6.5%;
    bottom: -4.5%;
    border-radius: 50% 60%;
}
.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 {
    width: 100vw;
    height: 500px;
    position: relative;
}
.Q1 {
    position: relative;
    width: 100vw;
    height: 105px;
}
.Q1-img {
    width: 312px;
    position: absolute;
    right: 20px;
    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: 0 305px 0 auto;
    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;
    right: 45px;
    font-size: 17px;
    font-weight: bold;
    z-index: 2;
}
.A1 {
    position: relative;
    margin-top: 25px;
    width: 100vw;
    height: 105px;
}
.A1-img {
    width: 312px;
    position: absolute;
    left: 20px;
    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: 310px;
    z-index: 2;
}
.card {
    position: absolute;
    top: 80px;
    left: 33px;
    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: 50px;
    font-size: 14.5px;
    z-index: 2;
}

.QA2 {
    width: 100vw;
    height: 420px;
    position: relative;
}
.Q2 {
    position: relative;
    width: 100vw;
    height: 105px;
}
.Q2-img {
    width: 312px;
    position: absolute;
    right: 20px;
    top: 15px;
    filter: drop-shadow(5px 5px 0 rgb(133, 133, 133));
    z-index: 1;
}
.Q2-text {
    position: absolute;
    color: black;
    top: 12px;
    right: 45px;
    font-size: 17px;
    font-weight: bold;
    line-height: 22px;
    z-index: 2;
}
.A2 {
    position: relative;
    margin-top: 25px;
    width: 100vw;
    height: 105px;
}
.A2-img {
    width: 312px;
    position: absolute;
    left: 20px;
    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: 50px;
    font-size: 14.5px;
    z-index: 2;
}

/* QA3 */
.QA3 {
    width: 100vw;
    height: 670px;
    position: relative;
}
.Q3 {
    position: relative;
    width: 100vw;
    height: 105px;
}
.Q3-img {
    width: 312px;
    position: absolute;
    right: 20px;
    top: 15px;
    filter: drop-shadow(5px 5px 0 rgb(133, 133, 133));
    z-index: 1;
}
.Q3-text {
    position: absolute;
    color: black;
    top: 12px;
    right: 60px;
    font-size: 17px;
    font-weight: bold;
    line-height: 22px;
    z-index: 2;
}
.A3 {
    position: relative;
    margin-top: 25px;
    width: 100vw;
    height: 105px;
}
.A3-img {
    width: 312px;
    position: absolute;
    left: 20px;
    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: 50px;
    font-size: 14.5px;
    line-height: 20px;
    z-index: 2;
}

/* QA4 */
.QA4 {
    width: 100vw;
    height: 600px;
    position: relative;
}
.Q4 {
    position: relative;
    width: 100vw;
    height: 105px;
}
.Q4-img {
    width: 312px;
    position: absolute;
    right: 20px;
    top: 15px;
    filter: drop-shadow(5px 5px 0 rgb(133, 133, 133));
    z-index: 1;
}
.Q4-text {
    position: absolute;
    color: black;
    top: 12px;
    right: 45px;
    font-size: 17px;
    font-weight: bold;
    line-height: 22px;
    z-index: 2;
}
.A4 {
    position: relative;
    margin-top: 25px;
    width: 100vw;
    height: 105px;
}
.A4-img {
    width: 312px;
    position: absolute;
    left: 20px;
    top: 15px;
    filter: drop-shadow(5px 5px 0 rgb(133, 133, 133));
    z-index: 1;
}
.A4-text {
    position: absolute;
    color: black;
    width: 260px;
    top: 30px;
    left: 50px;
    font-size: 14.5px;
    line-height: 20px;
    z-index: 2;
}
.A4-text a {
    color: black;
    text-decoration: underline solid black;
}
.A4-kaigyo {
    display: block;
    content: "";
    margin-bottom: 7px;
}

/* QA5 */
.QA5 {
    width: 100vw;
    height: 1000px;
    position: relative;
}
.Q5 {
    position: relative;
    width: 100vw;
    height: 105px;
}
.Q5-img {
    width: 312px;
    position: absolute;
    right: 20px;
    top: 15px;
    filter: drop-shadow(5px 5px 0 rgb(133, 133, 133));
    z-index: 1;
}
.Q5-text {
    position: absolute;
    color: black;
    top: 12px;
    right: 45px;
    font-size: 17px;
    font-weight: bold;
    line-height: 22px;
    z-index: 2;
}
.A5 {
    position: relative;
    margin-top: 25px;
    width: 100vw;
    height: 105px;
}
.A5-img {
    width: 312px;
    position: absolute;
    left: 20px;
    top: 15px;
    filter: drop-shadow(5px 5px 0 rgb(133, 133, 133));
    z-index: 1;
}
.A5-text {
    position: absolute;
    color: black;
    width: 260px;
    top: 50px;
    left: 50px;
    font-size: 14.5px;
    line-height: 20px;
    z-index: 2;
}
.A5-text a {
    color: black;
    text-decoration: underline solid black;
}


#notes {
    width: 100vw;
    height: 200px;
    text-align: center;
    position: relative;
}
.notes-set {
    width: 100vw;
    position: relative;
}
.notes-img {
    position: absolute;
    width: 100vw;
    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;
    margin-block-start: 0;
    margin-block-end: 0;
}

#hituyou {
    width: 350px;
    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: 27px;
    font-style: normal;
    margin: 0 0 0 20px;
}
.hituyou-back {
    position: relative;
    width: 100%;
    height: 520px;
    background-color: #E9C1C1;
    border-radius: 10px 0 0 10px;
    text-align: left;
}
.hituyou-back h3 {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-size: 16px;
    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: 240px;
    bottom: 0;
    right: -10px;
    transform: scale(-1, 1);
}

#hukusayo {
    width: 350px;
    height: 700px;
    margin: 200px auto 0 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: 27px;
    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: 350px;
    height: 520px;
    background-color: #E9C1C1;
    border-radius: 0 10px 10px 0;
    text-align: left;
}
.hukusayo-back h3 {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 25px;
    font-style: normal;
    position: absolute;
    top: 5px;
    left: 15px;
}
.hukusayo-back h3 span {
    font-size: 18px;
}
.hukusayo-back-img {
    position: absolute;
    width: 350px;
    bottom: -275px;
    right: -100px;
    z-index: 3;
}
.hukusayo-span {
    height: 10px;
}
.kaigyo2 {
    display: block;
    content: "";
    margin-bottom: 7px;
}
.hukusayo-circle {
    position: absolute;
    right: 14.5px;
    bottom: -285px;
    width: 80px;
    height: 40px;
    border-radius: 50%;
    background-color: black;
    opacity: 0.3;
    z-index: 2;
}

.kari {
    position: relative;
    width: 450px;
    height: 500px;
}