@charset "UTF-8";
/*==========================================
  Common
==========================================*/
/* base
==================================*/
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
blockquote,
ul,
li,
ol,
dl,
dd,
tr {
  font-size: 16px;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1;
}

.sp {
  display: none !important;
}

a {
  color: #000;
  text-decoration: none;
  transition: 0.3s;
}
a:visited {
  color: #000;
}
a:hover {
  color: #000;
  text-decoration: none;
}
a:active {
  color: #000;
}
a.tel {
  pointer-events: none;
  cursor: default;
}

/* main
==================================*/
main {
  display: block; /*IE対策*/
}

/*　Retina対応時のCSS↓　*/
.anchor {
  position: absolute;
  top: 0px;
}

/* header
==================================*/
header {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 0;
  background-size: 100% 100%;
  background-position: top center;
}

/* footer
==================================*/
footer {
  background: #000;
  height: 290px;
  color: #fff;
  display: flex;
}
footer .text_warp {
  display: flex;
  justify-content: center;
  padding-top: 65px;
}
footer .text_warp .logo {
  display: flex;
  flex-direction: column;
  text-align: left;
  padding-right: 80px;
}
footer .text_warp .logo .logo1 {
  width: 223px;
  padding-bottom: 20px;
}
footer .text_warp .logo .logo2 {
  width: 142px;
  transition: 0.3s;
}
footer .text_warp .logo .logo2:hover {
  opacity: 0.7;
}
footer .text_warp .text table tr {
  text-align: left;
  display: flex;
  align-items: baseline;
  font-family: "Noto Sans JP", sans-serif;
}
footer .text_warp .text table tr:first-of-type {
  padding-bottom: 20px;
}
footer .text_warp .text table tr th {
  border-radius: 5px;
  border: 1px solid #fff;
  padding: 3px 8px;
  white-space: nowrap;
}
footer .text_warp .text table tr td {
  padding-left: 8px;
}
footer .copy {
  text-align: center;
  margin-top: 58px;
}
footer .copy small {
  font-size: 12px;
  font-weight: 500;
}

#pageTop {
  opacity: 0;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 888;
  transition: 0.3s;
}
#pageTop.active {
  opacity: 1;
}
#pageTop a {
  display: block;
  width: 50px;
}
#pageTop a:hover {
  opacity: 0.7;
}

/* loader
==================================*/
#loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 1001;
}

/* Animation
==================================*/
.c-anim-up {
  transform: translate(0, 30px);
  opacity: 0;
  transition: 0.3s ease;
}

.c-anim-bound1 {
  animation: up-bound 0.8s forwards;
  opacity: 0;
  transition: 0.8s ease;
}

.c-anim-bound2 {
  animation: 0.4s up-bound 1s forwards;
  opacity: 0;
  transition: 0.4s ease;
}

.c-anim-bound3 {
  animation: 0.4s up-bound 1.4s forwards;
  opacity: 0;
  transition: 0.4s ease;
}

.c-anim-bound4 {
  animation: 0.4s up-bound 1.4s forwards;
  opacity: 0;
  transition: 0.35s ease;
}

@keyframes up-bound {
  0% {
    transform: translate(0, 30px);
    opacity: 0;
  }
  70% {
    transform: translate(0, -10px);
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
.c-anim-zoom {
  transform: scale(1.1);
  transition: 1s ease-out;
}

.move {
  transform: translate(0, 0);
  opacity: 1;
}

.delay1 {
  -moz-transition-delay: 300ms;
  -webkit-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  -ms-transition-delay: 300ms;
}

.delay2 {
  -moz-transition-delay: 600ms;
  -webkit-transition-delay: 600ms;
  -o-transition-delay: 600ms;
  -ms-transition-delay: 600ms;
}

.delay3 {
  -moz-transition-delay: 900ms;
  -webkit-transition-delay: 900ms;
  -o-transition-delay: 900ms;
  -ms-transition-delay: 900ms;
}

.delay4 {
  -moz-transition-delay: 1200ms;
  -webkit-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
}

.delay5 {
  -moz-transition-delay: 1500ms;
  -webkit-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
}

.delay6 {
  -moz-transition-delay: 1800ms;
  -webkit-transition-delay: 1800ms;
  -o-transition-delay: 1800ms;
  -ms-transition-delay: 1800ms;
}

.delay7 {
  -moz-transition-delay: 2100ms;
  -webkit-transition-delay: 2100ms;
  -o-transition-delay: 2100ms;
  -ms-transition-delay: 2100ms;
}

/*==================================
  Component
==================================*/
html {
  overflow: auto;
}
html.no_move {
  overflow: hidden;
}

#AllBox {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}
img[src$=".png"], img[src$=".jpg"] {
  backface-visibility: hidden;
}

.container {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 50px;
  padding-right: 50px;
  box-sizing: border-box;
  position: relative;
}
@media (max-width: 899px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
}
.row .col {
  position: relative;
  width: 100%;
  min-height: 1px;
  box-sizing: border-box;
}
.row .col.col_4 {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
}

/*==========================================
  Layout
==========================================*/
/*==================================
  Top
==================================*/
#Top main {
  z-index: 5;
  position: relative;
  /*==================================
  	各タイトルの大きさ
  ==================================*/
  /*==================================
  	.anchor-links-button-container
  ==================================*/
  /*==================================
  	.download-content-button-container
  ==================================*/
  /*==================================
  	.kids-science-container
  ==================================*/
  /*==================================
  	.note-text-container
  ==================================*/
  /*==================================
  	.rain-logo
  ==================================*/
}
#Top main i {
  position: relative;
  display: block;
}
#Top main i::before {
  position: absolute;
  content: "";
  line-height: 1;
  mask-repeat: no-repeat;
  mask-position: center top;
  mask-size: cover;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
#Top main i.icon_arrow {
  width: 10px;
  height: 15px;
}
#Top main i.icon_arrow::before {
  mask-image: url(../images/icon_arrow.png);
}
#Top main .sub_block {
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 20px;
  padding: 1px 20px 80px;
  margin: 0 auto;
  border: 2px solid #000;
}
#Top main .sub_block h2 {
  margin-top: -74px;
  margin-bottom: 0;
  text-align: center;
}
#Top main .btn_area {
  padding: 40px 0 30px;
}
#Top main .btn_area a {
  display: flex;
  position: relative;
  font-weight: 900;
  text-align: center;
  height: 85px;
  align-items: center;
  justify-content: center;
  background-color: #e60012;
  border-radius: 50px;
  color: #fff;
  max-width: 617px;
  margin: 0 auto;
}
#Top main .btn_area a > span {
  display: block;
  font-size: 24px;
}
#Top main .btn_area a > span i {
  top: 50%;
  right: 27px;
  position: absolute;
  transform: translateY(-50%);
}
#Top main .btn_area a > span i::before {
  background-color: #fff;
}
#Top main .btn_area a:hover {
  opacity: 0.7;
}
#Top main .btn_area p {
  font-size: 14px;
  text-align: center;
  font-weight: 500;
  padding: 15px 0 0;
}
#Top main .main {
  position: relative;
  overflow: hidden;
}
#Top main .main h1 .bg img {
  width: 100%;
  height: auto;
}
#Top main .main h1 .txt {
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  text-align: center;
  overflow: hidden;
}
#Top main .main h1 .txt img {
  aspect-ratio: 1400/970;
  object-fit: cover;
  width: 100%;
  height: auto;
}
#Top main .menu {
  padding: 60px 0 80px;
  background-color: #d9d9d9;
}
#Top main .menu .access {
  border: 2px solid #d92525;
  text-align: center;
  padding: 45px 22px;
  max-width: 995px;
}
#Top main .menu .access h3 {
  font-size: 26px;
  color: #d92525;
  padding-bottom: 25px;
}
#Top main .menu .access h3 i {
  width: 40px;
  height: 36px;
  margin: 0 auto 10px;
}
#Top main .menu .access h3 i::before {
  mask-image: url(../images/icon_attention.png);
  background-color: #e60012;
}
#Top main .menu .access p {
  font-size: 18px;
  font-weight: 500;
  line-height: 2.133;
}
#Top main .menu .order {
  padding: 60px 0;
}
#Top main .menu .order .box {
  background-color: #fff100;
  justify-content: center;
  padding: 20px;
  border-radius: 12px;
  max-width: 995px;
  margin: 0 auto;
  box-sizing: border-box;
}
@media screen and (min-width: 1150px) {
  #Top main .menu .order .box {
    display: flex;
    justify-content: space-between;
    padding: 20px 20px 12px 20px;
  }
}
#Top main .menu .order .box .kids_area {
  width: 100%;
  margin-bottom: 32px;
}
@media screen and (min-width: 1150px) {
  #Top main .menu .order .box .kids_area {
    width: 68%;
    margin-bottom: 0;
  }
}
#Top main .menu .order .box .kids_area .item_area {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
@media screen and (min-width: 1150px) {
  #Top main .menu .order .box .kids_area .item_area {
    justify-content: left;
  }
}
#Top main .menu .order .box .kids_area .item_area .item:nth-child(1) {
  text-align: center;
  width: 100%;
  margin-bottom: 32px;
}
@media screen and (min-width: 1150px) {
  #Top main .menu .order .box .kids_area .item_area .item:nth-child(1) {
    width: 140px;
    margin-bottom: 0;
  }
}
#Top main .menu .order .box .kids_area .item_area .item:nth-child(1) img {
  position: relative;
  top: 12px;
  width: 240px;
}
@media screen and (min-width: 1150px) {
  #Top main .menu .order .box .kids_area .item_area .item:nth-child(1) img {
    width: 100%;
  }
}
#Top main .menu .order .box .kids_area .item_area .item:nth-child(2) {
  width: 208px;
  font-size: 27px;
  color: #e60012;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 900;
  letter-spacing: -0.05em;
}
#Top main .menu .order .box .kids_area .item_area .item:nth-child(3) {
  width: 220px;
  text-align: center;
}
#Top main .menu .order .box .kids_area .item_area .item:nth-child(3) .period {
  background-color: #03b8df;
  color: #fff;
  border-radius: 50px;
  display: inline-block;
  font-size: 20px;
  letter-spacing: 0.03em;
  padding: 7px 14px;
  vertical-align: 4px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 900;
  width: 100%;
  position: relative;
  top: -6px;
}
#Top main .menu .order .box .kids_area .item_area .item:nth-child(3) .period .day {
  letter-spacing: -0.1rem;
}
#Top main .menu .order .box .kids_area .item_area .item:nth-child(3) .period .week {
  font-size: 11px;
  display: inline-block;
  margin-left: 0.5rem;
  vertical-align: 3px;
  position: relative;
  z-index: 3;
  padding: 4px;
  background-color: #fff;
  color: #03b8df;
  border-radius: 999px;
  position: relative;
  top: -1px;
}
#Top main .menu .order .box .kids_area .text {
  font-size: 12px;
  text-align: center;
  padding-left: 40px;
  font-weight: 500;
}
#Top main .menu .order .box .btn_area {
  width: 100%;
  padding: 0;
}
@media screen and (min-width: 1150px) {
  #Top main .menu .order .box .btn_area {
    width: 30%;
  }
}
#Top main .menu .order .box .btn_area a {
  font-family: "M PLUS Rounded 1c", sans-serif;
  width: 360px;
  height: 56px;
}
@media screen and (min-width: 1150px) {
  #Top main .menu .order .box .btn_area a {
    width: 100%;
    position: relative;
    top: -5px;
  }
}
#Top main .menu .order .box .btn_area a > span {
  font-size: 22px;
}
#Top main .menu .link {
  padding-bottom: 20px;
}
#Top main .menu .link ul {
  display: flex;
  gap: 20px;
}
#Top main .menu .link ul li {
  width: 33.3%;
  border: 2px solid #000;
  background-color: #fff;
  overflow: hidden;
  box-sizing: border-box;
  border-radius: 50px;
}
#Top main .menu .link ul li a {
  display: flex;
  position: relative;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  height: 85px;
  align-items: center;
  justify-content: center;
}
#Top main .menu .link ul li a > span > span {
  display: block;
  font-size: 16px;
}
#Top main .menu .link ul li a > span i {
  top: 50%;
  right: 27px;
  position: absolute;
  transform: translateY(-50%) rotate(90deg);
}
#Top main .menu .link ul li a > span i::before {
  background-color: #000;
}
@media (max-width: 1009px) {
  #Top main .menu .link ul li a {
    font-size: 16px;
  }
  #Top main .menu .link ul li a > span > span {
    font-size: 14px;
  }
}
#Top main .menu .link ul li a:hover {
  opacity: 0.7;
}
#Top main .menu .link ul li.btn1 a {
  background-size: auto auto;
  background-color: rgb(41, 195, 228);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 5px, rgb(3, 184, 223) 5px, rgb(3, 184, 223) 10px);
}
#Top main .menu .link ul li.btn2 a {
  background-size: auto auto;
  background-color: rgb(185, 213, 38);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 5px, rgb(173, 206, 0) 5px, rgb(173, 206, 0) 10px);
}
#Top main .menu .link ul li.btn3 a {
  background-size: auto auto;
  background-color: rgb(243, 172, 203);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 5px, rgb(241, 158, 194) 5px, rgb(241, 158, 194) 10px);
}
#Top main .menu .pdf {
  padding-bottom: 93px;
}
#Top main .menu .pdf .btn_area a {
  border: 2px solid #000;
  background-color: rgb(187, 191, 224);
  color: #000;
}
#Top main .menu .pdf .btn_area a i.icon_arrow::before, #Top main .menu .pdf .btn_area a i.icon_pdf::before {
  background-color: #000;
}
#Top main .menu .pdf .btn_area a i.icon_pdf {
  width: 20px;
  height: 20px;
  position: unset;
  display: inline-block;
  margin-bottom: -11px;
  margin-right: 0.2rem;
}
#Top main .menu .pdf .btn_area a i.icon_pdf::before {
  mask-image: url(../images/icon_pdf.png);
}
#Top main .menu .map {
  border: unset;
}
#Top main .menu .map h2 {
  margin-bottom: 24px;
}
#Top main .menu .map p {
  font-size: 16px;
  text-align: center;
  font-weight: 500;
}
#Top main .menu .map p i {
  width: 19px;
  height: 19px;
  margin-right: 0.6rem;
  margin-bottom: -1px;
  display: inline-block;
}
#Top main .menu .map p i::before {
  mask-image: url(../images/icon_zoom.png);
  background-color: #000;
}
#Top main .menu .map figure {
  padding: 30px 30px 0;
}
#Top main .menu .map figure a {
  display: block;
  max-width: 616px;
  margin: 0 auto;
}
#Top main .content {
  padding-top: 180px;
  padding-bottom: 80px;
}
#Top main .content .sub_block {
  border-color: #fff;
}
#Top main .content .table {
  margin: auto;
  max-width: 927px;
  width: 100%;
  padding-top: 30px;
}
#Top main .content .table a {
  display: block;
  width: 100%;
}
#Top main .content .table a:last-of-type .row {
  padding: 0px;
}
#Top main .content .table .row {
  padding: 0px 0px 20px;
  align-items: center;
  justify-content: space-between;
  display: flex;
  text-align: left;
  gap: 20px;
}
#Top main .content .table .row:hover span {
  opacity: 0.8;
}
#Top main .content .table .row:hover span.number, #Top main .content .table .row:hover span.txt, #Top main .content .table .row:hover span.detail {
  opacity: 1;
}
#Top main .content .table .row > span {
  box-sizing: border-box;
  padding: 9px 0;
  font-family: "Noto Sans JP", sans-serif;
}
#Top main .content .table .row > span.number, #Top main .content .table .row > span.detail {
  border-radius: 5px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  border: 1px solid;
}
#Top main .content .table .row > span.number {
  width: 9.7087378641%;
  font-family: "Jost", "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, Verdana, "ＭＳ Ｐゴシック", "MS P Gothic", san-serif;
}
#Top main .content .table .row > span.txt {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  width: 60.0862998921%;
}
#Top main .content .table .row > span.detail {
  width: 23.1930960086%;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
#Top main .content .table .row > span.detail .icon_pdf {
  width: 16px;
  height: 16px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
#Top main .content .table .row > span.detail .icon_pdf::before {
  transition: 0.3s;
  mask-image: url(../images/icon_pdf.png);
}
#Top main .content.laboratory {
  background-color: #a5defa;
}
#Top main .content.laboratory .sub_block h2 {
  margin-top: -64px;
}
#Top main .content.laboratory .table .row > span.number, #Top main .content.laboratory .table .row > span.detail {
  border-color: #03b8df;
  color: #03b8df;
}
#Top main .content.laboratory .table .row > span.detail .icon_pdf::before {
  background-color: #03b8df;
}
#Top main .content.laboratory .table a:hover .row > span.detail {
  color: #fff;
  background-color: #03b8df;
}
#Top main .content.laboratory .table a:hover .row > span.detail .icon_pdf::before {
  background-color: #fff;
}
#Top main .content.kids {
  background-color: #f3f78c;
}
#Top main .content.kids .table .row > span.number, #Top main .content.kids .table .row > span.detail {
  border-color: #ffc000;
  color: #ffc000;
}
#Top main .content.kids .table .row > span.detail .icon_pdf::before {
  background-color: #ffc000;
}
#Top main .content.kids .table a:hover .row > span.detail {
  color: #fff;
  background-color: #ffc000;
}
#Top main .content.kids .table a:hover .row > span.detail .icon_pdf::before {
  background-color: #fff;
}
#Top main .content.experiment {
  background-color: #8eddb3;
}
#Top main .content.experiment .sub_block h2 {
  margin-top: -70px;
}
#Top main .content.experiment .table .row > span.number, #Top main .content.experiment .table .row > span.detail {
  border-color: #6ec831;
  color: #6ec831;
}
#Top main .content.experiment .table .row > span.detail .icon_pdf::before {
  background-color: #6ec831;
}
#Top main .content.experiment .table a:hover .row > span.detail {
  color: #fff;
  background-color: #6ec831;
}
#Top main .content.experiment .table a:hover .row > span.detail .icon_pdf::before {
  background-color: #fff;
}
#Top main .content.experiment .table.table2 .row > span.number, #Top main .content.experiment .table.table2 .row > span.detail {
  border-color: #1fb5a2;
  color: #1fb5a2;
}
#Top main .content.experiment .table.table2 .row > span.detail .icon_pdf::before {
  background-color: #1fb5a2;
}
#Top main .content.experiment .table.table2 a:hover .row > span.detail {
  color: #fff;
  background-color: #1fb5a2;
}
#Top main .content.experiment .table.table2 a:hover .row > span.detail .icon_pdf::before {
  background-color: #fff;
}
#Top main .content.experiment .sub_title {
  max-width: 940px;
  width: 100%;
  margin: 0 auto;
}
#Top main .content.experiment .sub_title span {
  box-sizing: border-box;
  display: block;
  padding: 22px 0px;
  color: #fff;
  font-size: 26px;
  font-weight: 900;
  position: relative;
  line-height: 1;
  padding-left: 63px;
  text-align: left;
  z-index: 1;
  margin: 40px auto 0 33px;
  border: solid 4px #fff;
}
#Top main .content.experiment .sub_title span::before {
  content: "";
  position: absolute;
  background-color: #fff;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  font-size: 26px;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  display: flex;
  top: -2px;
  left: -36px;
  border: 4px solid #fff;
  color: #fff;
}
#Top main .content.experiment .sub_title.sub_title1 span {
  background-size: auto auto;
  background-color: rgb(125, 206, 70);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 5px, rgb(110, 200, 49) 5px, rgb(110, 200, 49) 10px);
}
#Top main .content.experiment .sub_title.sub_title1 span::before {
  content: "01";
  background-color: #6ec831;
}
#Top main .content.experiment .sub_title.sub_title2 {
  margin-top: 40px;
}
#Top main .content.experiment .sub_title.sub_title2 span {
  background-size: auto auto;
  background-color: rgb(54, 189, 171);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 5px, rgb(31, 181, 162) 5px, rgb(31, 181, 162) 10px);
}
#Top main .content.experiment .sub_title.sub_title2 span::before {
  content: "02";
  background-color: #1fb5a2;
}
#Top main .content.stage {
  background-color: #f6afce;
}
#Top main .content.stage .sub_block h2 {
  margin-top: -86px;
  margin-bottom: -8px;
}
#Top main .content.stage .table .row > span.number, #Top main .content.stage .table .row > span.detail {
  border-color: #f19ec2;
  color: #f19ec2;
}
#Top main .content.stage .table .row > span.detail .icon_pdf::before {
  background-color: #f19ec2;
}
#Top main .content.stage .table a:hover .row > span.detail {
  color: #fff;
  background-color: #f19ec2;
}
#Top main .content.stage .table a:hover .row > span.detail .icon_pdf::before {
  background-color: #fff;
}
#Top main .content.enquete .sub_block {
  border-color: #000;
  position: relative;
}
#Top main .content.enquete .sub_block h2 {
  margin-top: -56px;
  margin-bottom: 42px;
}
#Top main .content.enquete .sub_block p {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  margin: 0 auto;
}
#Top main .content.enquete .sub_block p.txt {
  padding-bottom: 5px;
}
#Top main .content.enquete .sub_block p.period {
  width: fit-content;
  background-color: #e5e5e5;
  padding: 5px 13px 2px;
  margin-top: 5px;
}
#Top main .content.enquete .sub_block .btn_area {
  padding-top: 30px;
}
#Top main .content.enquete .sub_block .btn_area a {
  max-width: 315px;
  height: 70px;
}
#Top main .content.enquete .sub_block .btn_area a > span {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0rem;
}
#Top main .content.enquete .point_img {
  position: absolute;
  max-width: 180px;
  bottom: -6.8306010929%;
  left: 11.6666666667%;
  z-index: 3;
}
#Top main .ms {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
#Top main .ms a {
  position: absolute;
  width: 84px;
  right: 0;
  bottom: -75px;
  transition: 0.2s;
}
#Top main .ms a:hover {
  opacity: 1;
  bottom: -80px;
}
#Top main .ms a:active {
  bottom: -90px;
}
#Top main .ttl_map img {
  max-width: 647px;
}
#Top main .ttl_laboratory img {
  max-width: 581px;
}
#Top main .ttl_omoshiro img {
  max-width: 581px;
}
#Top main .ttl_kids img {
  max-width: 611px;
}
#Top main .ttl_stage img {
  max-width: 581px;
}
#Top main .ttl_enquete img {
  max-width: 581px;
}
#Top main .anchor-links-button-container {
  margin-bottom: 40px;
}
#Top main .anchor-links-button-container .anchor-links-button {
  display: flex;
  gap: 22px;
}
#Top main .anchor-links-button-container .anchor-links-button .item {
  width: 385px;
  transition: all 0.3s ease;
}
#Top main .anchor-links-button-container .anchor-links-button .item:hover {
  opacity: 0.7;
}
#Top main .download-content-button-container {
  text-align: center;
  margin-bottom: 160px;
}
#Top main .download-content-button-container .download-content-button {
  display: block;
  margin: 0 auto;
  max-width: 487px;
}
#Top main .kids-science-container {
  margin-top: 42px;
  margin-bottom: 42px;
}
#Top main .kids-science-container .kids-science {
  background-color: #fff100;
  padding: 28px;
  border-radius: 8px;
  max-width: 995px;
  margin: 0 auto;
  box-sizing: border-box;
}
@media screen and (min-width: 1100px) {
  #Top main .kids-science-container .kids-science {
    display: flex;
  }
}
#Top main .kids-science-container .kids-science .area-one {
  text-align: center;
  margin-bottom: 32px;
}
@media screen and (min-width: 1100px) {
  #Top main .kids-science-container .kids-science .area-one {
    width: 370px;
    margin-bottom: 0;
  }
}
#Top main .kids-science-container .kids-science .area-one .title {
  font-size: 52px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 900;
  letter-spacing: -0.15em;
  color: #00aeeb;
  line-height: 1;
  margin-bottom: 12px;
  text-align: center;
}
#Top main .kids-science-container .kids-science .area-one .banner-button {
  height: 54px;
}
#Top main .kids-science-container .kids-science .area-one .banner-button img {
  height: 54px;
}
#Top main .kids-science-container .kids-science .area-two {
  box-sizing: border-box;
}
@media screen and (min-width: 1100px) {
  #Top main .kids-science-container .kids-science .area-two {
    width: calc(100% - 370px);
    padding-left: 12px;
  }
}
#Top main .kids-science-container .kids-science .area-two .apply-area {
  display: flex;
  justify-content: space-between;
  gap: 2%;
  margin-bottom: 12px;
}
#Top main .kids-science-container .kids-science .area-two .apply-area .apply-region {
  width: 49%;
}
#Top main .kids-science-container .kids-science .area-two .apply-area .apply-region .period {
  text-align: center;
  background-color: #03b8df;
  color: #fff;
  border-radius: 50px;
  display: inline-block;
  font-size: 22px;
  letter-spacing: 0.03em;
  vertical-align: 4px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 900;
  width: 100%;
  padding: 16px 0;
}
#Top main .kids-science-container .kids-science .area-two .apply-area .apply-region .period .day {
  letter-spacing: -0.1rem;
}
#Top main .kids-science-container .kids-science .area-two .apply-area .apply-region .period .week {
  font-size: 11px;
  display: inline-block;
  margin-left: 0.5rem;
  vertical-align: 3px;
  position: relative;
  z-index: 3;
  padding: 4px;
  background-color: #fff;
  color: #03b8df;
  border-radius: 999px;
  position: relative;
  top: -1px;
}
#Top main .kids-science-container .kids-science .area-two .apply-area .button-region {
  width: 49%;
}
#Top main .kids-science-container .kids-science .area-two .apply-area .button-region .button {
  display: flex;
  position: relative;
  font-weight: 900;
  text-align: center;
  align-items: center;
  justify-content: center;
  background-color: #e60012;
  border-radius: 50px;
  color: #fff;
  padding: 16px 0;
  font-family: "M PLUS Rounded 1c", sans-serif;
}
#Top main .kids-science-container .kids-science .area-two .apply-area .button-region .button span {
  display: block;
  font-size: 22px;
}
#Top main .kids-science-container .kids-science .area-two .apply-area .button-region .button span i {
  top: 50%;
  right: 16px;
  position: absolute;
  transform: translateY(-50%);
}
#Top main .kids-science-container .kids-science .area-two .apply-area .button-region .button span i::before {
  background-color: #fff;
}
#Top main .kids-science-container .kids-science .area-two .apply-area .button-region .button:hover {
  opacity: 0.7;
}
#Top main .kids-science-container .kids-science .area-two .apply-area .button-region p {
  font-size: 14px;
  text-align: center;
  font-weight: 500;
  padding: 15px 0 0;
}
#Top main .kids-science-container .kids-science .area-two .text-area {
  text-align: center;
}
@media screen and (min-width: 1100px) {
  #Top main .kids-science-container .kids-science .area-two .text-area {
    text-align: left;
  }
}
#Top main .kids-science-container .kids-science .area-two .text-area .text {
  font-size: 14px;
  font-weight: 600;
}
@media screen and (min-width: 1100px) {
  #Top main .kids-science-container .kids-science .area-two .text-area .text {
    position: relative;
    top: 16px;
    padding-left: 8px;
  }
}
#Top main .note-text-container {
  text-align: center;
  padding-top: 90px;
  padding-bottom: 60px;
}
#Top main .note-text-container .note-text {
  font-size: 18px;
  font-weight: 600;
  border: solid 1px #e60012;
  color: #e60012;
  padding: 12px 48px;
  background-color: #fff;
  border-radius: 6px;
  display: inline-block;
}
#Top main .logo-pos .rain-logo {
  width: 98px;
  display: inline-block;
}
#Top main .logo-pos .rain-logo img {
  width: 100%;
}