@charset "utf-8";

/* ------------------------------------------------ Common -------------------------------------------------------- */

body {
    font-family: 'Noto Sans JP', 'Open Sans', "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    font-weight: 400;
    color: #333;
    font-size: 1rem;
    line-height: 1.85;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    word-wrap: break-word;
    counter-reset: section;
    background-color: #e69f9f;
}

@media screen and (max-width:768px) {
    body {
        font-size: 0.8rem;
    }
}

html,
body {
    height: auto;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    color: #333;
    text-decoration: none;
    outline: none;
    cursor: pointer;
}
a:hover{
    opacity: 0.7;   
    transition: all .3s ease-in-out;
}
button {
    cursor: pointer;
}
a:visited{
    opacity: 1;
}
button:hover{
    opacity: 0.7;   
    transition: all .3s ease-in-out;
}
button:visited{
    opacity: 1;
}

img {
    width: 100%;
    height: auto;
    -webkit-touch-callout:none;
    -webkit-user-select:none;
    -moz-touch-callout:none;
    -moz-user-select:none;
    user-select:none;
}

:root {
    --vh: 1vh;
}


/* ------------------------------------------------ Pre-Anime -------------------------------------------------------- */

#splash {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #e69f9f;
    z-index: 9999;
    text-align: center;
}

#splash_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#splash_logo img {
    max-width: 500px;
}

#wrapper {
    width: 100%;
    opacity: 0;
    /*はじめは透過0に*/
}

body.appear #wrapper {
    animation-name: PageAnimeAppear;
    animation-duration: .5s;
    animation-delay: .5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes PageAnimeAppear {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}



/* ------------------------------------------------ g-nav -------------------------------------------------------- */

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 200;
    display: block;
    align-items: center;
    justify-content: center;
    transition: all .3s ease-in-out;
    background-color: #e69f9f;
}

#head-logo {
    width: 15%;
    max-width: 300px; 
    position: absolute;
    top: 0;
    left: 0;
    padding: 0;
    margin: 0;
    z-index: 300;
}
#g-nav {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 auto;
    transition: all .3s ease-in-out;
}
#g-nav-list ul {
    width: 80%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 27px;
    margin-left: 130px;
}
#header .register {
    width: 200px; 
    position: absolute;
    top: 18px;
    right: 3%;
    padding: 0;
    margin: 0;
    z-index: 300;
}
#g-nav-list li a {
    color: #fff;
    padding: 0;
    margin: 0 30px;
    font-size: 1.0rem;
    font-family: 'Noto Sans JP', 'Open Sans', sans-serif;
    font-weight: 900;
    line-height: 1.0rem;
    letter-spacing: 0rem;
    transition: all .3s ease-in;
}



@media screen and (max-width:1360px) {
    #head-logo {
        width: 20%;
        max-width: 200px; 
    }
    #header .register {
        width: 150px; 
        top: 25px;
        right: 3%;
    }
    #g-nav-list ul {
        width: 80%;
        margin: 27px;
        margin-left: 100px;
    }    
    #g-nav-list li a {
        margin: 0 20px;
        font-size: 0.9rem;
        line-height: 1.0rem;
    }    
}
@media screen and (max-width:960px) {
    #header {
        height: 60px;
    }
    #head-logo {
        width: 18%;
        max-width: 200px; 
    }
    #header .register {
        width: 150px; 
        top: 15px;
        right: 3%;
    }
    #g-nav-list ul {
        width: 80%;
        margin: 15px;
        margin-left: 80px;
    }    
    #g-nav-list li a {
        margin: 0 15px;
        font-size: 0.8rem;
        line-height: 1.0rem;
    }

}

@media screen and (max-width:768px) {
    #header {
        position: relative;
        width: 100%;
        height: 80px;
        display: block;
    }    
    #head-logo {
        width: 25%;
        max-width: 200px; 
    }
    #header .register {
        width: 180px; 
        top: 20px;
        right: 5%;
    }
    #g-nav {
        display: none;
    }    
}

@media screen and (max-width:550px) {
    #header {
        height: 60px;
        display: block;
    }    
    #head-logo {
        width: 30%;
        max-width: 250px; 
    }
    #header .register {
        width: 160px; 
        top: 12px;
        right: 3%;
    }
}
@media screen and (max-width:400px) {
    #header {
        height: 50px;
        display: block;
    }    
    #head-logo {
        width: 30%;
        max-width: 250px; 
    }
    #header .register {
        width: 120px; 
        top: 12px;
        right: 3%;
    }
}


/* ------------------------------------------------ hamburger -------------------------------------------------------- */
.openbtn {
    z-index: 9999;
    cursor: pointer;
    width: 25px;
    opacity: 0;
    display: none;
    position: fixed;
    top: 45%;
    right: 20px;
    transition: all .3s ease-in-out;
}
#hg-logo {
    display: block;
    width: 100%;
    position: relative;
    text-align: center; 
    margin: 24px auto;
}
#hg-logo img {
    max-width: 180px;
}
.hg-box {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: auto;
    margin-top: 50px;
}
#nav-list-1 {
    width: 50%;
    position: relative;
    text-align: center;
    margin-bottom: 50px;
}
#nav-list-1 li {
    margin-top: 30px;
    line-height: 1.0rem;
    padding-bottom: 15px;
    border-bottom: 3px dotted rgba(184, 184, 184, .4);
}
#nav-list-1 a {
    text-align: left;
    font-size: 2.6rem;
    line-height: 1.0rem;
    letter-spacing: 0.02rem;
    color: #fff;
    font-family: 'Noto Sans JP', 'Open Sans', sans-serif;
    font-weight: 800;
    font-style: normal;
    margin-top: 10px;
}
#nav-list-2 {
    position: relative;
    margin-top: 40px;
    margin-bottom: 120px;
}
#nav-list-2 img{
    max-width: 200px;
}
#nav-list-3 {
    width: 100%;
    position: relative;
    display: block;
    text-align: center;
    list-style: none;
    padding: 0;
    margin-bottom: 50px;
}
#nav-list-3 li {
    margin-top: 10px;
}
#nav-list-3 img{
    max-width: 250px;
}

@media screen and (max-width:1360px) {
}
@media screen and (max-width:1040px) {
}
@media screen and (max-width:768px) {
    .openbtn{
        opacity: 1;
        display: block;
    }
    .openbtn .open {
        display: block;
    }
    .openbtn .open.active {
        display: none;
    }
    .openbtn .close {
        display: none;
    }
    .openbtn .close.active {
        display: block;    
    }    
}
@media screen and (max-width:550px) {
    .openbtn {
        width: 20px;
        top: 45%;
        right: 15px;
    }
    #hg-logo {
        margin: 10px auto;
    }
    #hg-logo img {
        max-width: 150px;
    }
    .hg-box {
        margin-top: 50px;
    }
    #nav-list-1 {
        width: 50%;
        margin-bottom: 20px;
    }
    #nav-list-1 li {
        margin-top: 25px;
        padding-bottom: 10px;
        border-bottom: 3px dotted rgba(184, 184, 184, .4);
    }
    #nav-list-1 a {
        font-size: 1.8rem;
        line-height: 1.0rem;
        letter-spacing: 0.02rem;
        margin-top: 10px;
    }
    #nav-list-2 {
        margin-top: 30px;
        margin-bottom: 100px;
    }    
    #nav-list-2 img{
        width: 180px;
    }
    #g-nav-hg-list{
        margin-top: 20px;
        margin-bottom: 20px;
    }
    #nav-list-3 {
        margin-bottom: 20px;
    }
    #nav-list-3 li {
        margin-top: 10px;
    }
    #nav-list-3 img{
        max-width: 200px;
    }

    
}
@media screen and (max-width:400px) {
    .openbtn {
        width: 20px;
        top: 45%;
        right: 11px;
    }
    #hg-logo {
        margin: 10px auto;
    }
    #hg-logo img {
        max-width: 130px;
    }
    .hg-box {
        margin-top: 50px;
    }
    #nav-list-1 {
        width: 50%;
        margin-bottom: 10px;
    }
    #nav-list-1 li {
        margin-top: 20px;
        padding-bottom: 10px;
        border-bottom: 3px dotted rgba(184, 184, 184, .4);
    }
    #nav-list-1 a {
        font-size: 1.6rem;
        line-height: 1.0rem;
        letter-spacing: 0.02rem;
        margin-top: 10px;
    }
    #nav-list-2 {
        margin-top: 30px;
        margin-bottom: 80px;
    }    
    #nav-list-2 img{
        width: 160px;
    }
    #g-nav-hg-list{
        margin-top: 20px;
        margin-bottom: 20px;
    }
    #nav-list-3 {
        margin-bottom: 10px;
    }
    #nav-list-3 li {
        margin-top: 10px;
    }
    #nav-list-3 img{
        max-width: 180px;
    }

}


/* ------------------------------------------------ side -------------------------------------------------------- */





/* ------------------------------------------------ 1st View -------------------------------------------------------- */

#first-view {
    display: block;
    width: 100%;
    padding-top: 80px;
}
#top-main {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-bottom: 100px;
}
.wrap{
    position: relative;
}
.swiper-container {
    margin: 0 8%;
}
.slide-img img{
    display: block;
}
.wrap .pc {
    display: block;
}
.wrap .sp {
    display: none !important;
}
#main-title {
    position: absolute;
    bottom: 0%;
    left: 5%;
    z-index: 120;
    width: 45%; 
    padding: 0;
    margin: 0;
}
.TextTyping{
    color: #fff;
    font-size: 5.0vw;
    line-height: 5.5vw;
    font-family: 'Noto Sans JP', 'Open Sans', sans-serif;
    font-weight: 900;
    letter-spacing: 0.05rem;
}
.TextTyping span {
	display: none;
}
.TextTyping::after {
 	content: "|";
	animation: typinganime 0.8s ease infinite;
    font-weight: normal;
    padding: 0 0 0 10px;
}
@keyframes typinganime{
	from{opacity:0}
	to{opacity:1}
}
.scroll {
}
.scroll .arrow img {
    position: absolute;
    bottom: 10px;
    right: 80px;
    width: 7px;
    z-index: 120; 
}
.scroll .circle img {
    position: absolute;
    bottom: -45px;
    right: 40px;
    width: 150px;
    z-index: 120; 
    animation-duration: 15s;
    animation-timing-function: linear;
    animation-direction: normal;
    animation-iteration-count: infinite;
    animation-name: round1
  }
 
@keyframes round1 {
    0% {
      border-width: 100px;
      transform:rotate(0deg);
      /* rotateZでZ軸(平面)の回転角度を指定 */
    }
    12.5% {
      border-width: 75px;
      transform:rotate(90deg);
      /* rotateZでZ軸(平面)の回転角度を指定 */
    }
    25% {
      border-width: 50px;
      transform:rotate(180deg);
      /* rotateZでZ軸(平面)の回転角度を指定 */
    }
    37.5% {
      border-width: 25px;
      transform:rotate(270deg);
      /* rotateZでZ軸(平面)の回転角度を指定 */
    }
    50% {
      border-width: 0px;
      transform:rotate(360deg);
      /* rotateZでZ軸(平面)の回転角度を指定 */
    }
    62.5% {
      border-width: 25px;
      transform:rotate(450deg);
      /* rotateZでZ軸(平面)の回転角度を指定 */
    }
    75% {
      border-width: 50px;
      transform:rotate(540deg);
      /* rotateZでZ軸(平面)の回転角度を指定 */
    }
    87.5% {
      border-width: 75px;
      transform:rotate(630deg);
      /* rotateZでZ軸(平面)の回転角度を指定 */
    }
    100% {
      border-width: 100px;
      transform:rotate(720deg);
      /* rotateZでZ軸(平面)の回転角度を指定 */
    }
  }


@media screen and (max-width:1360px) {
    #top-main {
        padding-bottom: 50px;
    }    
    .scroll .arrow img {
        bottom: 6px;
        right: 60px;
        width: 5px;
    }
    .scroll .circle img {
        bottom: -30px;
        right: 30px;
        width: 100px;
    }
    
}

@media screen and (max-width:960px) {
    #first-view {
        padding-top: 60px;
    }
    #top-main {
        padding-bottom: 40px;
    }    
    .scroll .arrow img {
        bottom: 0px;
        right: 50px;
        width: 5px;
    }
    .scroll .circle img {
        bottom: -25px;
        right: 25px;
        width: 80px;
    }

}
@media screen and (max-width:768px) {
    #top-main {
        padding-bottom: 70px;
    }    
    #first-view {
        padding-top: 0px;
    }
    .scroll .arrow img {
        bottom: -10px;
        right: 45px;
        width: 6px;
    }
    .scroll .circle img {
        bottom: -45px;
        right: 20px;
        width: 100px;
    }
    .wrap .pc {
        display: none !important;
    }
      .wrap .sp {
        display: block !important;
    }
    #main-title {
        bottom: 0%;
        left: 5%;
        width: 50%; 
    }
    .TextTyping{
        font-size: 6.0vw;
        line-height: 6.5vw;
        letter-spacing: 0.05rem;
    }
    
}
@media screen and (max-width:550px) {
    #top-main {
        padding-bottom: 60px;
    }    
    #first-view {
        padding-top: 0px;
    }
    .scroll .arrow img {
        bottom: -10px;
        right: 35px;
        width: 5px;
    }
    .scroll .circle img {
        bottom: -35px;
        right: 15px;
        width: 80px;
    }
    #main-title {
        bottom: 0%;
        left: 5%;
        width: 55%; 
    }
    .TextTyping{
        font-size: 6.5vw;
        line-height: 7.0vw;
        letter-spacing: 0.05rem;
    }
    

}
@media screen and (max-width:400px) {
    #top-main {
        padding-bottom: 40px;
    }    
    #first-view {
        padding-top: 0px;
    }
    .scroll .arrow img {
        bottom: -10px;
        right: 35px;
        width: 5px;
    }
    .scroll .circle img {
        bottom: -35px;
        right: 15px;
        width: 80px;
    }
    #main-title {
        bottom: 0%;
        left: 5%;
        width: 60%; 
    }
    .TextTyping{
        font-size: 7.0vw;
        line-height: 7.5vw;
        letter-spacing: 0.05rem;
    }
}
 

/* ------------------------------------------------ main contents -------------------------------------------------------- */

#container {
    position: relative;
    display: block;
    width: 100%;
}
#main-area {
    position: relative;
    display: block;
    width: 100%;
}
#presec {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 auto;
    padding-top: 50px;
    padding-bottom: 100px;
}
#presec #info1 {
    display: block;
    width: 50%;
    max-width: 500px;
    margin: 0 auto;
    z-index: 17;
}
#presec #photo1 {
    position: absolute;
    top: 8%;
    left: 60%;
    width: 40%;
    max-width: 500px;
    z-index: 18;
}
#presec #photo2 {
    position: absolute;
    top: 40%;
    right: 58%;
    width: 40%;
    max-width: 500px;
    z-index: 19;
}

@media screen and (max-width:1360px) {
    #presec {
        padding-top: 10px;
        padding-bottom: 50px;
    }    
    #presec #info1 {
        width: 50%;
        max-width: 500px;
    }    
    #presec #photo1 {
        top: 28%;
        left: 60%;
        width: 40%;
        max-width: 350px;
    }
    #presec #photo2 {
        top: 40%;
        right: 60%;
        width: 40%;
        max-width: 350px;
    }
    
}
@media screen and (max-width:960px) {
    #presec {
        padding-top: 5px;
        padding-bottom: 50px;
    }    
    #presec #info1 {
        width: 50%;
        max-width: 450px;
    }    
    #presec #photo1 {
        top: 28%;
        left: 60%;
        width: 40%;
        max-width: 300px;
    }
    #presec #photo2 {
        top: 40%;
        right: 60%;
        width: 40%;
        max-width: 300px;
    }
}
@media screen and (max-width:768px) {
    #presec {
        padding-top: 10px;
        padding-bottom: 150px;
    }    
    #presec #info1 {
        width: 60%;
        max-width: 450px;
    }    
    #presec #photo1 {
        top: 40%;
        left: 58%;
        width: 40%;
        max-width: 280px;
    }
    #presec #photo2 {
        top: 47%;
        right: 48%;
        width: 50%;
        max-width: 400px;
    }
}
@media screen and (max-width:550px) {
    #presec {
        padding-top: 10px;
        padding-bottom: 60px;
    }
    #presec #info1 {
        width: 70%;
        max-width: 450px;
    }    
    #presec #photo1 {
        top: 35%;
        left: 60%;
        width: 40%;
        max-width: 250px;
    }
    #presec #photo2 {
        top: 47%;
        right: 48%;
        width: 50%;
        max-width: 400px;
    }

}
@media screen and (max-width:400px) {
    #presec {
        padding-top: 5px;
        padding-bottom: 20px;
    }
    #presec #info1 {
        width: 70%;
        max-width: 450px;
    }    
    #presec #photo1 {
        top: 38%;
        left: 58%;
        width: 40%;
        max-width: 250px;
    }
    #presec #photo2 {
        top: 50%;
        right: 53%;
        width: 50%;
        max-width: 400px;
    }

}

#message {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 auto;
    padding-top: 100px;
    padding-bottom: 80px;
}
#message #title1 {
    position: relative;
    width: 50%;
    max-width: 900px;
    margin-left: auto;
    z-index: 20;
}
#message #info2 {
    position: relative;
    display: block;
    width: 60%;
    max-width: 900px;
    margin: 0 auto;
    margin-right: 36%;
    margin-top: -150px;
    z-index: 18;
}
#message #photo3 {
    position: absolute;
    top: 30%;
    left: 92%;
    width: 50%;
    max-width: 400px;
    z-index: 17;
}
#message #shape1 {
    position: absolute;
    bottom: -70%;
    left: 85%;
    width: 120%;
    max-width: 600px;
    z-index: 10;
}

@media screen and (max-width:1360px) {
    #message {
        padding-top: 80px;
        padding-bottom: 50px;
    }
    #message #title1 {
        width: 50%;
        max-width: 900px;
    }
    #message #info2 {
        width: 55%;
        max-width: 850px;
        margin-right: 40%;
        margin-top: -130px;
    }
    #message #photo3 {
        top: 30%;
        left: 92%;
        width: 50%;
        max-width: 400px;
    }
    #message #shape1 {
        bottom: -70%;
        left: 95%;
        width: 100%;
        max-width: 450px;
        transform: rotate(45deg);
    }    
}
@media screen and (max-width:960px) {
    #message {
        padding-top: 70px;
        padding-bottom: 50px;
    }
    #message #title1 {
        width: 50%;
        max-width: 900px;
    }
    #message #info2 {
        width: 55%;
        max-width: 850px;
        margin-right: 40%;
        margin-top: -110px;
    }
    #message #photo3 {
        top: 30%;
        left: 92%;
        width: 50%;
        max-width: 400px;
    }
    #message #shape1 {
        bottom: -70%;
        left: 95%;
        width: 100%;
        max-width: 350px;
        transform: rotate(45deg);
    }

}
@media screen and (max-width:768px) {
    #message {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    #message #title1 {
        width: 60%;
        max-width: 500px;
    }
    #message #info2 {
        width: 80%;
        max-width: 600px;
        margin-right: 15%;
        margin-top: -80px;
    }
    #message #photo3 {
        top: auto;
        bottom: -30%;
        left: 80%;
        width: 32%;
        max-width: 350px;
    }
    #message #shape1 {
        bottom: -64%;
        left: 60%;
        width: 80%;
        max-width: 300px;
        transform: rotate(45deg);
    }
}
@media screen and (max-width:620px) {
    #message #shape1 {
        bottom: -64%;
        left: 65%;
        width: 80%;
        max-width: 250px;
        transform: rotate(90deg);
    }

}

@media screen and (max-width:550px) {
    #message {
        padding-top: 50px;
        padding-bottom: 20px;
    }
    #message #title1 {
        width: 60%;
        max-width: 500px;
    }
    #message #info2 {
        width: 90%;
        max-width: 600px;
        margin: 0 auto;
        margin-top: -60px;
    }
    #message #photo3 {
        top: auto;
        bottom: -30%;
        left: 70%;
        width: 30%;
        max-width: 350px;
    }
    #message #shape1 {
        bottom: -64%;
        left: 50%;
        width: 80%;
        max-width: 200px;
        transform: rotate(90deg);
    }


}
@media screen and (max-width:400px) {
    #message {
        padding-top: 40px;
        padding-bottom: 20px;
    }
    #message #title1 {
        width: 65%;
        max-width: 500px;
    }
    #message #info2 {
        width: 90%;
        max-width: 600px;
        margin: 0 auto;
        margin-top: -40px;
    }
    #message #photo3 {
        top: auto;
        bottom: -45%;
        left: 72%;
        width: 40%;
        max-width: 320px;
    }
    #message #shape1 {
        bottom: -64%;
        left: 50%;
        width: 80%;
        max-width: 150px;
        transform: rotate(90deg);
    }

}




#details {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 auto;
    padding-top: 40px;
    padding-bottom: 100px;
}
#details #title2 {
    position: relative;
    width: 45%;
    max-width: 800px;
    margin-right: auto;
    z-index: 20;
}
#details #info3 {
    position: relative;
    display: block;
    width: 40%;
    max-width: 500px;
    margin: 0 auto;
    margin-right: 55%;
    margin-top: 80px;
    z-index: 19;
}
#details #shape4 {
    display: none;
}

#details #photo4 {
    position: absolute;
    top: -40%;
    left: 92%;
    width: 220%;
    max-width: 650px;
    z-index: 19;
}
#details #btn1 {
    position: absolute;
    bottom: 10%;
    left: 28%;
    right: 50%;
    width: 80%;
    max-width: 220px;
    z-index: 19;
}
#details .switch {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 auto;
}
#details .switch .toggle {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 auto;
    z-index: 17;
}
#details .switch .toggle #sunny {
    position: relative;
    display: block;
    width: 60%;
    max-width: 800px;
    z-index: 19;
    margin: 0 auto;
    margin-left: 38%;
    margin-top: 50px;
}
#details .switch .toggle #sunny #btn2 {
    position: absolute;
    display: block;
    bottom: 28%;
    right: 12%;
    width: 20%;
    max-width: 150px;
    cursor: pointer;
}
#details .switch .toggle #rain {
    display: none;
}
#details .switch .toggle #sunny #btn3 {
    display: none;
}
#details .switch .toggle #sunny.active {
    display: none;
}
#details .switch .toggle #btn2.active {
    display: none;
}
#details .switch .toggle #rain.active {
    display: block;
    position: relative;
    width: 60%;
    max-width: 800px;
    z-index: 19;
    margin: 0 auto;
    margin-left: 38%;
    margin-top: 50px;
}
#details .switch .toggle #btn3.active {
    display: block;
    position: absolute;
    bottom: 28%;
    right: 12%;
    width: 20%;
    max-width: 150px;
    cursor: pointer;
}
#details #photo5 {
    position: absolute;
    top: -10%;
    right: 55%;
    width: 40%;
    max-width: 500px;
    z-index: 18;
}
#details #photo6 {
    position: absolute;
    bottom: -25%;
    right: 56%;
    width: 45%;
    max-width: 500px;
    z-index: 18;
}

@media screen and (max-width:1360px) {
    #details {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    #details #title2 {
        width: 45%;
        max-width: 800px;
    }
    #details #info3 {
        width: 40%;
        max-width: 500px;
        margin-right: 45%;
        margin-top: 100px;
    }
    #details #photo4 {
        top: -38%;
        left: 80%;
        width: 200%;
        max-width: 500px;
    }
    #details #btn1 {
        bottom: 12%;
        left: 25%;
        right: 50%;
        width: 80%;
        max-width: 200px;
    }
    #details .switch .toggle #sunny {
        width: 60%;
        max-width: 800px;
        margin-left: 35%;
        margin-top: 50px;
    }
    #details .switch .toggle #sunny #btn2 {
        bottom: 28%;
        right: 12%;
        width: 20%;
        max-width: 130px;
    }
    #details .switch .toggle #rain.active {
        width: 60%;
        max-width: 800px;
        margin-left: 35%;
        margin-top: 50px;
    }
    #details .switch .toggle #btn3.active {
        bottom: 28%;
        right: 12%;
        width: 20%;
        max-width: 130px;
    }
    #details #photo5 {
        top: -16%;
        right: 55%;
        width: 40%;
        max-width: 500px;
        transform: rotate(5deg);
    }
    #details #photo6 {
        bottom: -25%;
        right: 56%;
        width: 40%;
        max-width: 450px;
    }
    
}
@media screen and (max-width:960px) {
    #details {
        padding-top: 40px;
        padding-bottom: 50px;
    }
    #details #title2 {
        width: 45%;
        max-width: 800px;
    }
    #details #info3 {
        width: 40%;
        max-width: 500px;
        margin-right: 50%;
        margin-top: 30px;
    }
    #details #photo4 {
        top: -30%;
        left: 85%;
        width: 200%;
        max-width: 400px;
    }
    #details #btn1 {
        bottom: 12%;
        left: 25%;
        right: 45%;
        width: 80%;
        max-width: 150px;
    }
    #details .switch .toggle #sunny {
        width: 60%;
        max-width: 800px;
        margin-left: 35%;
        margin-top: 50px;
    }
    #details .switch .toggle #sunny #btn2 {
        bottom: 28%;
        right: 12%;
        width: 20%;
        max-width: 130px;
    }
    #details .switch .toggle #rain.active {
        width: 60%;
        max-width: 800px;
        margin-left: 35%;
        margin-top: 50px;
    }
    #details .switch .toggle #btn3.active {
        bottom: 28%;
        right: 12%;
        width: 20%;
        max-width: 130px;
    }
    #details #photo5 {
        top: -16%;
        right: 55%;
        width: 40%;
        max-width: 500px;
        transform: rotate(5deg);
    }
    #details #photo6 {
        bottom: -25%;
        right: 56%;
        width: 38%;
        max-width: 400px;
    }

}
@media screen and (max-width:768px) {
    #details {
        padding-top: 20px;
        padding-bottom: 160px;
    }
    #details #title2 {
        width: 55%;
        max-width: 500px;
    }
    #details #info3 {
        width: 60%;
        max-width: 500px;
        margin-right: 30%;
        margin-top: 230px;
    }
    #details #shape4 {
        position: absolute;
        top: 35%;
        left: 50%;
        width: 30%;
        display: block;
        transform: rotate(80deg);
    }    
    #details #photo4 {
        top: -60%;
        left: 40%;
        width: 200%;
        max-width: 350px;
    }
    #details #btn1 {
        bottom: 12%;
        left: 25%;
        right: 45%;
        width: 80%;
        max-width: 180px;
    }
    #details .switch .toggle #sunny {
        width: 70%;
        max-width: 800px;
        margin-left: 25%;
        margin-top: 80px;
    }
    #details .switch .toggle #sunny #btn2 {
        bottom: 28%;
        right: 12%;
        width: 20%;
        max-width: 100px;
    }
    #details .switch .toggle #rain.active {
        width: 70%;
        max-width: 800px;
        margin-left: 25%;
        margin-top: 80px;
    }
    #details .switch .toggle #btn3.active {
        bottom: 28%;
        right: 12%;
        width: 20%;
        max-width: 100px;
    }
    #details #photo5 {
        top: -24%;
        right: 55%;
        width: 40%;
        max-width: 500px;
        transform: rotate(5deg);
    }
    #details #photo6 {
        bottom: -35%;
        right: 50%;
        width: 38%;
        max-width: 400px;
    }

}
@media screen and (max-width:620px) {
    #details {
        padding-top: 20px;
        padding-bottom: 160px;
    }
    #details #title2 {
        width: 55%;
        max-width: 500px;
    }
    #details #info3 {
        width: 60%;
        max-width: 500px;
        margin-right: 30%;
        margin-top: 180px;
    }
    #details #shape4 {
        top: 35%;
        left: 50%;
        width: 35%;
    }    
    #details #photo4 {
        top: -55%;
        left: 50%;
        width: 200%;
        max-width: 300px;
    }
    #details #btn1 {
        bottom: 12%;
        left: 25%;
        right: 45%;
        width: 80%;
        max-width: 180px;
    }
    #details .switch .toggle #sunny {
        width: 70%;
        max-width: 800px;
        margin-left: 25%;
        margin-top: 80px;
    }
    #details .switch .toggle #sunny #btn2 {
        bottom: 28%;
        right: 12%;
        width: 20%;
        max-width: 100px;
    }
    #details .switch .toggle #rain.active {
        width: 70%;
        max-width: 800px;
        margin-left: 25%;
        margin-top: 80px;
    }
    #details .switch .toggle #btn3.active {
        bottom: 28%;
        right: 12%;
        width: 20%;
        max-width: 100px;
    }
    #details #photo5 {
        top: -24%;
        right: 55%;
        width: 40%;
        max-width: 500px;
        transform: rotate(5deg);
    }
    #details #photo6 {
        bottom: -35%;
        right: 50%;
        width: 38%;
        max-width: 400px;
    }

}

@media screen and (max-width:550px) {
    #details {
        padding-top: 20px;
        padding-bottom: 80px;
    }
    #details #title2 {
        width: 55%;
        max-width: 500px;
    }
    #details #info3 {
        width: 80%;
        max-width: 500px;
        margin-right: 15%;
        margin-top: 180px;
    }
    #details #shape4 {
        top: 40%;
        left: 60%;
        width: 35%;
    }    
    #details #photo4 {
        top: -45%;
        left: 35%;
        width: 100%;
        max-width: 260px;
    }
    #details #btn1 {
        bottom: 12%;
        left: 26%;
        right: 45%;
        width: 80%;
        max-width: 180px;
    }
    #details .switch .toggle #sunny {
        width: 80%;
        max-width: 400px;
        margin-left: 15%;
        margin-top: 50px;
    }
    #details .switch .toggle #sunny #btn2 {
        bottom: 28%;
        right: 12%;
        width: 20%;
        max-width: 100px;
    }
    #details .switch .toggle #rain.active {
        width: 80%;
        max-width: 400px;
        margin-left: 15%;
        margin-top: 50px;
    }
    #details .switch .toggle #btn3.active {
        bottom: 28%;
        right: 12%;
        width: 20%;
        max-width: 100px;
    }
    #details #photo5 {
        top: -24%;
        right: 60%;
        width: 40%;
        max-width: 500px;
        transform: rotate(-5deg);
    }
    #details #photo6 {
        bottom: -40%;
        right: 50%;
        width: 45%;
        max-width: 450px;
    }

}
@media screen and (max-width:460px) {
    #details #photo4 {
        top: -50%;
        left: 30%;
        width: 100%;
        max-width: 260px;
    }

}
@media screen and (max-width:400px) {
    #details {
        padding-top: 20px;
        padding-bottom: 50px;
    }
    #details #title2 {
        width: 60%;
        max-width: 500px;
    }
    #details #info3 {
        width: 80%;
        max-width: 500px;
        margin-right: 15%;
        margin-top: 180px;
    }
    #details #photo4 {
        top: -56%;
        left: 20%;
        width: 100%;
        max-width: 230px;
    }
    #details #btn1 {
        bottom: 10%;
        left: 26%;
        right: 45%;
        width: 60%;
        max-width: 130px;
    }
    #details .switch .toggle #sunny {
        width: 90%;
        max-width: 400px;
        margin-left: 10%;
        margin-top: 50px;
    }
    #details .switch .toggle #sunny #btn2 {
        bottom: 28%;
        right: 12%;
        width: 20%;
        max-width: 100px;
    }
    #details .switch .toggle #rain.active {
        width: 90%;
        max-width: 400px;
        margin-left: 10%;
        margin-top: 50px;
    }
    #details .switch .toggle #btn3.active {
        bottom: 28%;
        right: 12%;
        width: 20%;
        max-width: 100px;
    }
    #details #photo5 {
        top: -26%;
        right: 60%;
        width: 45%;
        max-width: 500px;
        transform: rotate(-5deg);
    }
    #details #photo6 {
        bottom: -35%;
        right: 50%;
        width: 45%;
        max-width: 450px;
    }

}


#profile {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 auto;
    padding-top: 50px;
    padding-bottom: 100px;
}
#profile #title3 {
    position: relative;
    width: 45%;
    max-width: 800px;
    margin-left: auto;
    z-index: 20;
}
#profile #shape2 {
    position: absolute;
    top: 0%;
    right: 55%;
    width: 30%;
    max-width: 500px;
    z-index: 10;
}
#profile #info4 {
    position: relative;
    display: block;
    width: 60%;
    max-width: 900px;
    margin: 0 auto;
    margin-left: 50%;
    margin-top: 100px;
    z-index: 19;
}
#profile #photo7 {
    position: absolute;
    top: -15%;
    right: 92%;
    width: 60%;
    max-width: 500px;
    z-index: 18;
}
#profile #info5 {
    position: relative;
    display: block;
    width: 55%;
    max-width: 780px;
    margin: 0 auto;
    margin-right: 50%;
    margin-top: -50px;
    z-index: 18;
}
#profile #photo8 {
    position: absolute;
    top: -5%;
    left: 92%;
    width: 100%;
    max-width: 600px;
}
#profile #photo9 {
    position: absolute;
    bottom: -10%;
    left: 43%;
    width: 40%;
    max-width: 600px;
    z-index: 18;
}

@media screen and (max-width:1360px) {
    #profile {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    #profile #title3 {
        width: 45%;
        max-width: 800px;
    }
    #profile #shape2 {
        top: 0%;
        right: 55%;
        width: 35%;
        max-width: 450px;
    }
    #profile #info4 {
        width: 60%;
        max-width: 900px;
        margin-left: 40%;
        margin-top: 100px;
    }
    #profile #photo7 {
        top: -8%;
        right: 90%;
        width: 55%;
        max-width: 380px;
    }
    #profile #info5 {
        width: 55%;
        max-width: 700px;
        margin-right: 42%;
        margin-top: -50px;
    }
    #profile #photo8 {
        top: -8%;
        left: 92%;
        width: 100%;
        max-width: 450px;
    }
    #profile #photo9 {
        bottom: -5%;
        left: 48%;
        width: 40%;
        max-width: 400px;
    }
    
}
@media screen and (max-width:960px) {
    #profile {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    #profile #title3 {
        width: 45%;
        max-width: 800px;
    }
    #profile #shape2 {
        top: 0%;
        right: 55%;
        width: 35%;
        max-width: 450px;
    }
    #profile #info4 {
        width: 60%;
        max-width: 900px;
        margin-left: 40%;
        margin-top: 50px;
    }
    #profile #photo7 {
        top: -10%;
        right: 90%;
        width: 50%;
        max-width: 350px;
    }
    #profile #info5 {
        width: 55%;
        max-width: 700px;
        margin-right: 42%;
        margin-top: -50px;
    }
    #profile #photo8 {
        top: -8%;
        left: 92%;
        width: 80%;
        max-width: 380px;
    }
    #profile #photo9 {
        bottom: -7%;
        left: 50%;
        width: 40%;
        max-width: 400px;
    }

}
@media screen and (max-width:768px) {
    #profile {
        padding-top: 20px;
        padding-bottom: 50px;
    }
    #profile #title3 {
        width: 55%;
        max-width: 500px;
    }
    #profile #shape2 {
        top: 0%;
        right: 55%;
        width: 40%;
        max-width: 450px;
    }
    #profile #info4 {
        width: 80%;
        max-width: 600px;
        margin-left: 20%;
        margin-top: 30px;
    }
    #profile #photo7 {
        top: 70%;
        right: 90%;
        width: 50%;
        max-width: 150px;
    }
    #profile #info5 {
        width: 70%;
        max-width: 550px;
        margin-right: 20%;
        margin-top: 70px;
    }
    #profile #photo8 {
        top: auto;
        bottom: -42%;
        left: 50%;
        width: 100%;
        max-width: 400px;
    }
    #profile #photo9 {
        top: 45%;
        bottom: auto;
        left: 55%;
        width: 40%;
        max-width: 400px;
        z-index: 15;
    }

}
@media screen and (max-width:620px) {
    #profile {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    #profile #title3 {
        width: 55%;
        max-width: 500px;
    }
    #profile #shape2 {
        top: 0%;
        right: 55%;
        width: 40%;
        max-width: 450px;
        transform: rotate(-115deg);
    }
    #profile #info4 {
        width: 80%;
        max-width: 600px;
        margin-left: 20%;
        margin-top: 30px;
    }
    #profile #photo7 {
        top: 70%;
        right: 85%;
        width: 50%;
        max-width: 150px;
    }
    #profile #info5 {
        width: 70%;
        max-width: 550px;
        margin-right: 20%;
        margin-top: 70px;
    }
    #profile #photo8 {
        top: auto;
        bottom: -42%;
        left: 50%;
        width: 100%;
        max-width: 330px;
    }
    #profile #photo9 {
        top: 45%;
        bottom: auto;
        left: 55%;
        width: 40%;
        max-width: 400px;
        z-index: 15;
    }

}

@media screen and (max-width:550px) {
    #profile {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    #profile #title3 {
        width: 55%;
        max-width: 500px;
    }
    #profile #shape2 {
        top: 5%;
        right: 55%;
        width: 40%;
        max-width: 450px;
        transform: rotate(-115deg);
    }
    #profile #info4 {
        width: 80%;
        max-width: 600px;
        margin-left: 20%;
        margin-top: 30px;
    }
    #profile #photo7 {
        top: 70%;
        right: 85%;
        width: 50%;
        max-width: 150px;
    }
    #profile #info5 {
        width: 70%;
        max-width: 550px;
        margin-right: 20%;
        margin-top: 70px;
    }
    #profile #photo8 {
        top: auto;
        bottom: -40%;
        left: 55%;
        width: 100%;
        max-width: 230px;
    }
    #profile #photo9 {
        top: 45%;
        bottom: auto;
        left: 55%;
        width: 40%;
        max-width: 400px;
        z-index: 15;
        transform: rotate(15deg);
    }

}
@media screen and (max-width:480px) {
    #profile #photo8 {
        bottom: -42%;
        left: 55%;
        width: 100%;
        max-width: 250px;
    }
}

@media screen and (max-width:400px) {
    #profile {
        padding-top: 20px;
        padding-bottom: 50px;
    }
    #profile #title3 {
        width: 60%;
        max-width: 500px;
    }
    #profile #shape2 {
        top: 5%;
        right: 55%;
        width: 40%;
        max-width: 450px;
        transform: rotate(-115deg);
    }
    #profile #info4 {
        width: 90%;
        max-width: 600px;
        margin-left: 15%;
        margin-top: 10px;
    }
    #profile #photo7 {
        top: 70%;
        right: 85%;
        width: 50%;
        max-width: 100px;
    }
    #profile #info5 {
        width: 80%;
        max-width: 550px;
        margin-right: 15%;
        margin-top: 40px;
    }
    #profile #photo8 {
        top: auto;
        bottom: -49%;
        left: 55%;
        width: 100%;
        max-width: 250px;
    }
    #profile #photo9 {
        top: 42%;
        bottom: auto;
        left: 55%;
        width: 40%;
        max-width: 300px;
        z-index: 15;
        transform: rotate(15deg);
    }

}



#memory #title4 {
    position: relative;
    width: 45%;
    max-width: 800px;
    margin-right: auto;
    z-index: 20;
}
#memory #shape3 {
    position: relative;
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    margin-top: -50px;
    margin-bottom: 100px;
    z-index: 16;
}
#memory #shape3 .pc {
    display: block;
}
#memory #shape3 .sp {
    display: none;
}

#memory #photo10 {
    position: absolute;
    top: 12%;
    left: 50%;
    width: 40%;
    max-width: 440px;
}
#memory #photo11 {
    position: absolute;
    top: 25%;
    right: 55%;
    width: 40%;
    max-width: 440px;
}
#memory #photo12 {
    position: absolute;
    bottom: 10%;
    right: 50%;
    width: 40%;
    max-width: 440px;
}
#memory #photo13 {
    position: absolute;
    bottom: 13%;
    left: 56%;
    width: 40%;
    max-width: 440px;
}

@media screen and (max-width:1360px) {
    #memory #title4 {
        width: 45%;
        max-width: 800px;
    }
    #memory #shape3 {
        width: 90%;
        max-width: 1400px;
        margin-top: -110px;
        margin-bottom: 50px;
    }
    #memory #photo10 {
        top: 12%;
        left: 50%;
        width: 33%;
        max-width: 400px;
    }
    #memory #photo11 {
        top: 25%;
        right: 55%;
        width: 35%;
        max-width: 400px;
    }
    #memory #photo12 {
        bottom: 8%;
        right: 50%;
        width: 35%;
        max-width: 400px;
    }
    #memory #photo13 {
        bottom: 16%;
        left: 57%;
        width: 35%;
        max-width: 400px;
    }
}
@media screen and (max-width:960px) {
    #memory #title4 {
        width: 45%;
        max-width: 800px;
    }
    #memory #shape3 {
        width: 90%;
        max-width: 1400px;
        margin-top: -80px;
        margin-bottom: 50px;
    }
    #memory #photo10 {
        top: 12%;
        left: 50%;
        width: 33%;
        max-width: 400px;
    }
    #memory #photo11 {
        top: 25%;
        right: 55%;
        width: 35%;
        max-width: 400px;
    }
    #memory #photo12 {
        bottom: 8%;
        right: 50%;
        width: 35%;
        max-width: 400px;
    }
    #memory #photo13 {
        bottom: 14%;
        left: 57%;
        width: 35%;
        max-width: 400px;
    }

}
@media screen and (max-width:768px) {
    #memory #title4 {
        width: 55%;
        max-width: 500px;
    }
    #memory #shape3 {
        width: 90%;
        max-width: 1400px;
        margin-top: 30px;
        margin-bottom: 50px;
    }
    #memory #photo10 {
        top: 12%;
        left: 50%;
        width: 33%;
        max-width: 400px;
    }
    #memory #photo11 {
        top: 25%;
        right: 55%;
        width: 35%;
        max-width: 400px;
    }
    #memory #photo12 {
        bottom: 8%;
        right: 50%;
        width: 35%;
        max-width: 400px;
    }
    #memory #photo13 {
        bottom: 14%;
        left: 57%;
        width: 35%;
        max-width: 400px;
    }

}
@media screen and (max-width:550px) {
    #memory #title4 {
        width: 55%;
        max-width: 500px;
    }
    #memory #shape3 {
        width: 90%;
        max-width: 1400px;
        margin-top: 10px;
        margin-bottom: 50px;
    }
    #memory #photo10 {
        top: 12%;
        left: 50%;
        width: 33%;
        max-width: 400px;
    }
    #memory #photo11 {
        top: 25%;
        right: 55%;
        width: 35%;
        max-width: 400px;
    }
    #memory #photo12 {
        bottom: 8%;
        right: 50%;
        width: 35%;
        max-width: 400px;
    }
    #memory #photo13 {
        bottom: 14%;
        left: 57%;
        width: 35%;
        max-width: 400px;
    }
}

@media screen and (max-width:400px) {
    #memory #title4 {
        width: 60%;
        max-width: 500px;
    }
    #memory #shape3 {
        width: 90%;
        max-width: 1400px;
        margin-top: 10px;
        margin-bottom: 50px;
    }
    #memory #shape3 .pc {
        display: none !important;
    }
    #memory #shape3 .sp {
        display: block !important;
    }

    #memory #photo10 {
        top: 8%;
        left: 25%;
        width: 55%;
        max-width: 300px;
    }
    #memory #photo11 {
        top: 31%;
        right: 25%;
        width: 55%;
        max-width: 300px;
    }
    #memory #photo12 {
        bottom: 30%;
        right: 15%;
        width: 55%;
        max-width: 300px;
    }
    #memory #photo13 {
        bottom: 6%;
        left: 25%;
        width: 55%;
        max-width: 300px;
    }

}



/* ------------------------------------------------ footer -------------------------------------------------------- */

#footer {
    width: 100%;
    z-index: 200;
    position: relative;
    padding: 10px;
}

#footer-area {
    width: 100%;
    background-color: #e69f9f;
    position: relative;
    display: block;
    margin: 0 auto;
    margin-bottom: 50px;
}
#page-top img{
    position: absolute;
    bottom: 20%;
    right: 10%;
    width: 12%;
    max-width: 220px;
    cursor: pointer;
}
#footer-logo {
    width: 60%;
    max-width: 300px;
    position: relative;
    margin: 0 auto;
}
#illust img{
    position: absolute;
    bottom: 20%;
    left: 10%;
    width: 10%;
    max-width: 180px;
}

#copy-area {
    width: 100%;
    position: relative;
    background-color: #e69f9f;
    padding: 5px;
}

#copy-area p {
    text-align: center;
    font-family: itc-avant-garde-gothic-pro, 'M PLUS 1', 'Noto Sans JP', 'Open Sans', sans-serif;
    letter-spacing: 0.02rem;
    font-size: 0.9rem;
    line-height: 0.6rem;
    margin: 0 10px;
    color: #fff;
}

@media screen and (max-width:1360px) {
    #footer {
        padding: 10px;
    }   
    #footer-area {
        margin-bottom: 50px;
    }
    #page-top img{
        bottom: 20%;
        right: 10%;
        width: 12%;
        max-width: 220px;
    }
    #footer-logo {
        width: 60%;
        max-width: 250px;
    }
    #illust img{
        bottom: 20%;
        left: 10%;
        width: 10%;
        max-width: 180px;
    }    
    #copy-area {
        padding: 5px;
    }    
    #copy-area p {
        letter-spacing: 0.02rem;
        font-size: 0.9rem;
        line-height: 0.6rem;
        margin: 0 10px;
    }
    
}
@media screen and (max-width:960px) {
    #footer {
        padding: 8px;
    }   
    #footer-area {
        margin-bottom: 30px;
    }
    #page-top img{
        bottom: 20%;
        right: 10%;
        width: 12%;
        max-width: 220px;
    }
    #footer-logo {
        width: 60%;
        max-width: 200px;
    }
    #illust img{
        bottom: 20%;
        left: 10%;
        width: 10%;
        max-width: 180px;
    }    
    #copy-area {
        padding: 5px;
    }    
    #copy-area p {
        letter-spacing: 0.02rem;
        font-size: 0.7rem;
        line-height: 0.6rem;
        margin: 0 5px;
    }

}
@media screen and (max-width:768px) {
    #footer {
        padding: 8px;
    }   
    #footer-area {
        margin-bottom: 30px;
    }
    #page-top img{
        bottom: 20%;
        right: 5%;
        width: 20%;
        max-width: 220px;
    }
    #footer-logo {
        width: 60%;
        max-width: 200px;
    }
    #illust img{
        bottom: 20%;
        left: 5%;
        width: 20%;
        max-width: 180px;
    }    
    #copy-area {
        padding: 5px;
    }    
    #copy-area p {
        letter-spacing: 0.02rem;
        font-size: 0.7rem;
        line-height: 0.6rem;
        margin: 0 5px;
    }

}
@media screen and (max-width:550px) {
    #footer {
        padding: 8px;
    }   
    #footer-area {
        padding-top: 180px;
        margin-bottom: 10px;
    }
    #page-top img{
        bottom: 60%;
        right: 25%;
        width: 20%;
        max-width: 200px;
    }
    #footer-logo {
        width: 60%;
        max-width: 150px;
    }
    #illust img{
        bottom: 60%;
        left: 25%;
        width: 18%;
        max-width: 120px;
    }    
    #copy-area {
        padding: 5px;
    }    
    #copy-area p {
        letter-spacing: 0.02rem;
        font-size: 0.7rem;
        line-height: 0.6rem;
        margin: 0 5px;
    }

}

@media screen and (max-width:400px) {
    #footer {
        padding: 5px;
    }   
    #footer-area {
        padding-top: 150px;
        margin-bottom: 5px;
    }
    #page-top img{
        bottom: 60%;
        right: 25%;
        width: 20%;
        max-width: 200px;
    }
    #footer-logo {
        width: 60%;
        max-width: 180px;
    }
    #illust img{
        bottom: 60%;
        left: 25%;
        width: 18%;
        max-width: 120px;
    }    
    #copy-area {
        padding: 5px;
    }    
    #copy-area p {
        letter-spacing: 0.02rem;
        font-size: 0.6rem;
        line-height: 0.6rem;
        margin: 0 5px;
    }

}
