@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: M_PLUS_1p;
    src: url(../../font/M_PLUS_1p/MPLUS1p-Regular.ttf);
}

@font-face {
    font-family: Grandstander;
    src: url(../../font/Grandstander/Grandstander-Italic-VariableFont_wght.ttf);
}

@font-face {
    font-family: Kiwi_Maru;
    src: url(../../font/Kiwi_Maru/KiwiMaru-Regular.ttf);
}

@font-face {
    font-family: Shippori_Mincho;
    src: url(../../font/Shippori_Mincho/ShipporiMincho-Regular.ttf);
}

@font-face {
    font-family: Kiwi_Maru;
    src: url(../../font/Kiwi_Maru/KiwiMaru-Regular.ttf);
}

html {
    scroll-behavior: smooth;
}


body {
    width: 100%;
    position: absolute;
    font-family: M_PLUS_1p;
}



main {
    background: linear-gradient(#4db7be, #003b46);
}

  /* ハンバーガーメニューボタン */
  .toppage-nav2 {
    display: none;
  }
  
  /*ヘッダー*/
header {
    display: flex;
    padding: 1% 2%;
    font-weight: 600;
    background-color: #4db7be;
}
  
header h1 {
    width: 9%;
}
  
header h1 a img {
    width: 100%;
    vertical-align: bottom;
}
  
  /* ナビ */
nav {
    width: 74%;
    margin-top: 1%;
    margin-left: auto;
}
  
nav ul {
    display: flex;
}
  
nav ul li {
    width: 20%;
    list-style-type: none;
    border-right: 2px solid #fff;
}
  
nav ul li:last-child {
    border-right: none;
}
  
nav ul li a {
    display: block;
    text-decoration: none;
    text-align: center;
    font-size: 1.2vw;
    color: white;
}

nav ul li a img {
    display: block;
    width: 5vw;
    height: 5vw;
    margin-left: auto;
    margin-right: auto;
}

nav ul li a:hover {
    color: #EBF11D;
}
  
nav ul li a:hover img {
    animation: purun 0.8s linear 0s 1;
}
  
@keyframes purun {
    0% {
        transform: scale(1.0, 1.0) translate(0%, 0%);
    }
  
    15% {
        transform: scale(0.9, 0.9) translate(0%, 5%);
    }
  
    30% {
        transform: scale(1.3, 0.8) translate(0%, 10%);
    }
  
    50% {
        transform: scale(0.8, 1.3) translate(0%, -10%);
    }
  
    70% {
        transform: scale(1.1, 0.9) translate(0%, 5%);
    }
  
    100% {
        transform: scale(1.0, 1.0) translate(0%, 0%);
    }
}

/* 固定化ラッコ */
.character01 {
    width: 20%;
    height: 100px;
    position: fixed;
    bottom: 20%;
    left: 0;
    cursor: pointer;
    z-index: 999;
}

.character02 {
    width: 8%;
    height: 100px;
    position: fixed;
    bottom: 8%;
    right: 3%;
    cursor: pointer;
    z-index: 999;
}

.character01 img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.character02 img {
    width: 100%;
    height: auto;
}
  

.character01 :hover img {
    content: url('../../images/rakko-stick02.png');
    width: 100%;
    animation: bounce 0.6s infinite;     /* ぴょんぴょんアニメーション */
}
  
@keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-15px);
    }
}




  
/*へっだー*/
.hd {
    background-image: url(../../images/top-img/top9.jpg);
    background-color: #fff;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: 25% ;
    height: 30vw;
}

.h2-box {
    position: relative;
    margin-top: -9%;
    text-align: center;
    font-family: Grandstander;
    z-index: 0;
}
  
.h2-box h2 {
    font-size: 5.5vw;
    color: #FDFB00;
}
.h2-box p {
    font-size: 2vw;
    font-weight: 600;
    color: #ffffff;
}
  
svg {
    margin-top: -25%;
    z-index: -10;
}

.pan {
    margin-left: 10%;
    font-weight: 600;
}

.pan a {
    text-decoration: none;
    font-weight: 600;
    color: white;
}


/* 館内案内 */


.information-top p:nth-of-type(1) {
    font-family: Shippori_Mincho;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-bottom: 5%;
    margin-top: 10%;
    font-size: 3.9vw;
    color: #056e75;
}

.information-top p:nth-of-type(2) {
    font-family: Shippori_Mincho;
    line-height: 50px;
    color: #202020;
    width: 80%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    font-size: 2vw;
}

.information-top p:nth-of-type(2) span {
    display: block;
}



/*ボタン*/

.floor-1F-2F {
    text-decoration: none;
}

.flex-btn {
    margin: 5% 5% ;
}

.information-btn {
    justify-content: space-around;
    margin-bottom: 5%;
    display: flex;
    transition: 0.2s;
}

.information-btn a:hover {
    transform: translateY(7px);
    cursor: pointer;
}

.information-btn a {
    width: 25%;
    padding: 4% 2%;
    text-decoration: none;
    background-color: white;
}

.information-btn figure {
    text-align: center;

}

.information-btn img {
    width: 40px;
}

.information-btn figcaption {
    color: #003b46;
    font-size: 1.4vw;
}

.information-btn a {
    border: 3px solid #003b46;
    border-radius: 6px;
    position: relative;
}

.information-btn a::after {
    content: "▽";

    font-size: 1vw;
    width: 100%;
    text-align: center;
    position: absolute;
    padding: 2% 0 ;
    bottom: 0;
    left: 0;
    color: white;
    background-color: #003b46;
}


.information-btn2 {
    margin-left: 21%;
    margin-bottom: 5%;
    display: flex;
    transition: 0.2s;
}
.information-btn2 a:nth-of-type(2) {
    margin-left: 15%;
}

.information-btn2 a:hover {
    transform: translateY(7px);
    cursor: pointer;
}

.information-btn2 a {
    display: block;
    width: 25%;
    padding: 4% 2%;
    text-decoration: none;
    background-color: white;
}

.information-btn2 figure {
    text-align: center;

}

.information-btn2 img {
    width: 40px;
}

.information-btn2 figcaption {
    color: #003b46;
    font-size: 1.4vw;
}

.information-btn2 a {
    border: 3px solid #003b46;
    border-radius: 6px;
    position: relative;
}

.information-btn2 a::after {
    content: "▽";

    font-size: 1vw;
    width: 100%;
    text-align: center;
    position: absolute;
    padding: 2% 0 ;
    bottom: 0;
    left: 0;
    color: white;
    background-color: #003b46;
}


.floormap {
    text-align: center;
    font-size: 3vw;
    color: white;
    margin: 10% 0 5% 0;
}


/*一階部分*/
.floor-1F-2F {
    width: 80%;
    margin-left: auto;margin-right: auto;
    padding-bottom: 10%;
    display: flex;
}

.floor-1F-2F a {
    text-decoration: none;
}

.font-zone h2 {
    font-size: 4vw;
    margin-right: 1em;
    margin-left: 1em;
    font-family: Shippori_Mincho;
}

.font-zone {
    display: flex;
    color: white;
}

.floor-1Fbtn {
    position: relative;
    
}

.floor-1Fbtn img {
    position: relative;
    margin-left: 10%;
    width: 90%;
}


/* 1Fのボタンと吹き出し */

.floor1 {
    position: absolute;
    top: 35%;
    left: 45%;
    width: 40px;
    height: 40px;
    font-size: 2vw;
    background-color: #92d638;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    box-sizing: border-box;
    z-index: 1;
}

.balloonoya1:hover .balloon1 {
    display: inline;
}

.balloon1 {
    position: absolute;
    top: 27%;
    left: 45%;
    display: none;
    padding: 10px;
    background-color: #085492;
    border-radius: 10px;
    color: #f3f3f3;
    width: 130px;
    text-align: center;
    font-size: 1.3vw;                       /* 文字サイズ */
    z-index: 1;
}


.floor2 {
    position: absolute;
    top: 25%;
    left: 28%;
    width: 40px;
    height: 40px;
    font-size: 2vw;
    background-color: #92d638;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    box-sizing: border-box;
    z-index: 1;
}

.balloonoya2:hover .balloon2 {
    display: inline;
}

.balloon2 {
    position: absolute;
    top: 17%;
    left: 28%;
    display: none;
    padding: 10px;
    background-color: #085492;
    border-radius: 10px;
    color: #f3f3f3;
    width: 100px;
    text-align: center;

    font-size: 1.3vw;
    z-index: 1;
}

.floor3 {
    position: absolute;
    top: 43%;
    left: 28%;
    width: 40px;
    height: 40px;
    font-size: 2vw;
    background-color: #92d638;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    box-sizing: border-box;
    z-index: 1;
}

.balloonoya3:hover .balloon3 {
    display: inline;
}

.balloon3 {
    position: absolute;
    top: 34%;
    left: 28%;
    display: none;
    padding: 10px;
    background-color: #085492;
    border-radius: 10px;
    color: #f3f3f3;
    width: 100px;
    text-align: center;
    font-size: 1.3vw;                       /* 文字サイズ */
    z-index: 1;
}

.floor4 {
    position: absolute;
    top: 47%;
    left: 18%;
    width: 40px;
    height: 40px;
    font-size: 2vw;
    background-color: #92d638;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    box-sizing: border-box;
    z-index: 1;
}

.balloonoya4:hover .balloon4 {
    display: inline;
}

.balloon4 {
    position: absolute;
    top: 39%;
    left: 18%;
    display: none;
    padding: 10px;
    background-color: #085492;
    border-radius: 10px;
    color: #f3f3f3;
    width: 100px;
    text-align: center;
    font-size: 1.3vw;                       /* 文字サイズ */
    z-index: 1;
}

.floor5 {
    position: absolute;
    top: 50%;
    left: 39%;
    width: 40px;
    height: 40px;
    font-size: 2vw;
    background-color: #92d638;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    box-sizing: border-box;
    z-index: 1;
}

.balloonoya5:hover .balloon5 {
    display: inline;
}

.balloon5 {
    position: absolute;
    top: 57%;
    left: 39%;
    display: none;
    padding: 10px;
    background-color: #085492;
    border-radius: 10px;
    color: #f3f3f3;
    width: 130px;
    text-align: center;
    font-size: 1.3vw;                       /* 文字サイズ */
    z-index: 1;
}

.floor6 {
    position: absolute;
    top: 43%;
    left: 55%;
    width: 40px;
    height: 40px;
    font-size: 2vw;
    background-color: #92d638;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    box-sizing: border-box;
    z-index: 1;
}

.balloonoya6:hover .balloon6 {
    display: inline;
}

.balloon6 {
    position: absolute;
    top: 50%;
    left: 55%;
    display: none;
    padding: 10px;
    background-color: #085492;
    border-radius: 10px;
    color: #f3f3f3;
    width: 130px;
    text-align: center;
    font-size: 1.3vw;                       /* 文字サイズ */
    z-index: 1;
}

.floor7 {
    position: absolute;
    bottom: 18%;
    left: 55%;
    width: 40px;
    height: 40px;
    font-size: 2vw;
    background-color: #92d638;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    box-sizing: border-box;
    z-index: 1;
}

.balloonoya7:hover .balloon7 {
    display: inline;
}

.balloon7 {
    position: absolute;
    bottom: 25%;
    left: 55%;
    display: none;
    padding: 10px;
    background-color: #085492;
    border-radius: 10px;
    color: #f3f3f3;
    width: 130px;
    text-align: center;
    font-size: 1.3vw;                       /* 文字サイズ */
    z-index: 1;
}

.floor8 {
    position: absolute;
    bottom: 9%;
    left: 65%;
    width: 40px;
    height: 40px;
    font-size: 2vw;
    background-color: #92d638;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    box-sizing: border-box;
    z-index: 1;
}

.balloonoya8:hover .balloon8 {
    display: inline;
}

.balloon8 {
    position: absolute;
    bottom: 1%;
    left: 65%;
    display: none;
    padding: 10px;
    background-color: #085492;
    border-radius: 10px;
    color: #f3f3f3;
    width: 130px;
    font-size: 1.3vw;                       /* 文字サイズ */
    z-index: 1;
}



/* 2F */

/*一階部分*/
.floor-1F-2F {
    display: flex;
}

.font-zone2 h2 {
    font-size: 4vw;
    margin-right: 1em;
    margin-left: 2em;
    font-family: Shippori_Mincho;
}

.font-zone2 {
    display: flex;
    color: white;
}

.floor-2Fbtn {
    position: relative;

}

.floor-2Fbtn img {
    position: relative;
    margin-left: 10%;
    width: 90%;
}


/* 2Fのボタンと吹き出し */

.floor1-2F {
    position: absolute;
    top: 43%;
    right: 28%;
    width: 40px;
    height: 40px;
    font-size: 2vw;
    background-color: #085492;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    box-sizing: border-box;
    z-index: 1;
}

.balloonoya1-2F:hover .balloon1-2F {
    display: inline;
}

.balloon1-2F {
    position: absolute;
    top: 35%;
    right: 18%;
    display: none;
    padding: 10px;
    background-color: #07be11;
    border-radius: 10px;
    color: #f3f3f3;
    width: 130px;
    text-align: center;
    font-size: 1.3vw;                       /* 文字サイズ */
    z-index: 1;
}


.floor2-2F {
    position: absolute;
    top: 38%;
    left: 42%;
    width: 40px;
    height: 40px;
    font-size: 2vw;
    background-color:#085492;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    box-sizing: border-box;
    z-index: 1;
}

.balloonoya2-2F:hover .balloon2-2F {
    display: inline;
}

.balloon2-2F {
    position: absolute;
    top: 30%;
    left: 42%;
    display: none;
    padding: 10px;
    background-color: #07be11;
    border-radius: 10px;
    color: #f3f3f3;
    width: 130px;
    text-align: center;
    font-size: 1.3vw;
    z-index: 1;
}

.floor3-2F {
    position: absolute;
    top: 48%;
    left: 16%;
    width: 40px;
    height: 40px;
    font-size: 2vw;
    background-color: #085492;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    box-sizing: border-box;
    z-index: 1;
}

.balloonoya3-2F:hover .balloon3-2F {
    display: inline;
}

.balloon3-2F {
    position: absolute;
    top: 40%;
    left: 16%;
    display: none;
    padding: 10px;
    background-color: #07be11;
    border-radius: 10px;
    color: #f3f3f3;
    width: 130px;
    text-align: center;
    font-size: 1.3vw;                       /* 文字サイズ */
    z-index: 1;
}

.floor4-2F {
    position: absolute;
    bottom: 25%;
    left: 50%;
    width: 40px;
    height: 40px;
    font-size: 2vw;
    background-color: #085492;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    box-sizing: border-box;
    z-index: 1;
}

.balloonoya4-2F:hover .balloon4-2F {
    display: inline;
}

.balloon4-2F {
    position: absolute;
    bottom: 32%;
    left: 50%;
    display: none;
    padding: 10px;
    background-color: #07be11;
    border-radius: 10px;
    color: #f3f3f3;
    width: 130px;
    text-align: center;
    font-size: 1.3vw;                       /* 文字サイズ */
    z-index: 1;
}

.floor5-2F {
    position: absolute;
    bottom: 25%;
    right: 20%;
    width: 40px;
    height: 40px;
    font-size: 2vw;
    background-color: #085492;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    box-sizing: border-box;
    z-index: 1;
}

.balloonoya5-2F:hover .balloon5-2F {
    display: inline;
}

.balloon5-2F {
    position: absolute;
    bottom: 32%;
    right: 5%;
    display: none;
    padding: 10px;
    background-color: #07be11;
    border-radius: 10px;
    color: #f3f3f3;
    width: 130px;
    text-align: center;
    font-size: 1.3vw;                       /* 文字サイズ */
    z-index: 1;
}

.floor6-2F {
    position: absolute;
    top: 20%;
    right: 38%;
    width: 40px;
    height: 40px;
    font-size: 2vw;
    background-color: #085492;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    box-sizing: border-box;
    z-index: 1;
}

.balloonoya6-2F:hover .balloon6-2F {
    display: inline;
}

.balloon6-2F {
    position: absolute;
    top: 12%;
    right: 38%;
    display: none;
    padding: 10px;
    background-color: #07be11;
    border-radius: 10px;
    color: #f3f3f3;
    width: 130px;
    text-align: center;
    font-size: 1.3vw;                       /* 文字サイズ */
    z-index: 1;
}

.floor7-2F {
    position: absolute;
    top: 29%;
    left: 19%;
    width: 40px;
    height: 40px;
    font-size: 2vw;
    background-color: #085492;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    box-sizing: border-box;
    z-index: 1;
}

.balloonoya7-2F:hover .balloon7-2F {
    display: inline;
}

.balloon7-2F {
    position: absolute;
    top: 20%;
    left: 19%;
    display: none;
    padding: 10px;
    background-color: #07be11;
    border-radius: 10px;
    color: #f3f3f3;
    width: 130px;
    text-align: center;
    font-size: 1.3vw;                       /* 文字サイズ */
    z-index: 1;
}


.explanation1 {
    width: 100%;
    height: 100vh;
    color: white;
    background-color: rgb(49, 95, 180);
}

.explanation1 h3 {
    padding-top: 3%;
    padding-bottom: 3%;
    text-align: center;

}

.explanation1 p {
    line-height: 2.4;
    text-align: center;
    margin-right: auto;
    margin-left: auto;
    width: 80%;
}

.explanation1 p span {
    display: block;
}


.explanation2 h3 {
    text-align: center;
    margin-top: 10%;
    margin-bottom: 3%;
    color: white;
}

.explanation2 p {
    width: 80%;
    margin: 5% auto ;
    text-align: left;
    color: white;
}



.question-btn {
    margin-bottom: 5%;
}

.question-btn a {
    background:#ffe600;
    border-radius: 3px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 280px;
    padding: 10px 25px;
    color: #313131;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}
.question-btn a:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 2rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.question-btn a:hover {
  background: #6bb6ff;
  color: #FFF;
}
.question-btn a:hover:after {
  right: 1.4rem;
}

.explanation2-1 {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    background-color: rgb(9, 141, 153,1);
    color: #e2e2e2;
    border-radius :8px;
    box-shadow :0px 0px 5px silver;
    padding: 0.5em 0.5em 2em 2em;
}

.explanation2-1 p {
    width: fit-content;
    padding-top: 2%;
    color: #d9ff00;
    font-weight: 600;
    letter-spacing: 1em;
    font-size: 1.5vw;
}

.explanation2 p {
    margin-top: -1%;
    line-height: 2;
}

.explanation2 p span {
    width: fit-content;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wappa-ul {
    width: 89%;
    margin-left: auto;
    margin-right: auto;
    margin-top: -3%;
    padding-bottom: 2%;
    border: 2px double #dfdfdf;
}

.wappa-ul li {
    width: 55%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2%;
    line-height: 1.2;
    font-size: 1.1vw;
    line-height: 1.5;
    padding: 0.5em 0;
}

.wappa-ul li span {
    display: block;
}


.staf-froom h2 {
    margin-top: 20%;
    color: #d9ff00;
    text-align: center;
}

.staf-froom h2 img {
    vertical-align: bottom;
    padding-left: 1%;
    padding-right: 1%;
}

.staffflex {
    font-family: Kiwi_Maru;
}

.staff-name {
    width: 80%;
    margin: 5% auto 0 auto;
    display: flex;
}

.staff-name img {
    border-radius: 100px;
    width: 30%;
    margin-left: 1%;
    vertical-align: bottom;
}

.staff {
    width: 60%;
    margin: 5% auto ;
    padding-bottom: 2%;
    border-radius: 20px;
    color: wheat;
    background-color:rgb(28, 114, 126);
}

.staff p:nth-of-type(1) {
    font-size: 2.2vw;
    margin-left: 4%;
    margin-top: 4%;
}

.staff p:nth-of-type(2) {
    text-align: right;
    margin-right: 5%;
    font-size: 2.3vw;
    color: #ffee00;
}

.staff p:nth-of-type(3) {
    width: 76%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 3%;
    padding-bottom: 2%;
    font-size: 1.5vw;
}

.staff p {
    line-height: 1.9;
}

.staff p span {
    display: block;
}

.staff img {
    width: 45px;
}




/*フッター*/
footer {
    padding: 5% 7% 1%;
    background-image: url(../../images/bg_footer.webp);
    background-color: #003b46;
    background-size: cover;
    color: #fff;
    font-size: 1.2vw;
}

.menu-area {
    display: flex;
}

.info-images {
    text-align: center;
}

.info-images h2 {
    font-family: Shippori_Mincho;
    font-size: 2vw;
    font-weight: 100;

}

.info-images img {
    margin: 2% 0 ;
    width: 30%;
    margin-bottom: 10%;
}

.menu-col {
    width: 30%;
    margin-left: 5%;
}

.menu-col a {
    color: white;
}

.menu-list a {
    color: #a7bddd;
}

.menu-title a {
    text-decoration: none;
}



address {
    font-size: 1.4vw;
    margin-top: 10%;
    line-height: 2;
    font-style: normal; /* 斜体をまっすぐにするやつ */
}

footer ul:nth-of-type(1) {
    margin-left: auto;
    margin-right: 5%;
}

footer ul:nth-of-type(2) {
    margin-right: 5%;
}

footer ul:nth-of-type(1) li::before {
    content: "-";
    margin-right: 0.5em;
}

footer ul { 
   margin-top: 10%;
}

footer ul li {
    list-style-type: none;
    line-height: 2.8;
}

footer ul li a {
    text-decoration: none;
}

.copyright {
    margin-top: 3%;
    text-align: center;
    font-size: 12px;
}