@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
}


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

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


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


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



header h1,
h1+nav {
  display: none;
}


.toppage-nav2 {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 10;
  background-color: #4db7be;
}

.drawer img {
  width: 21%;
  margin-top: 1%;
}

.drawer {
  display: flex;
  padding: 0 1em;

}

/*ハンバーガーの中身*/
.menu {
  width: 70%;
  position: absolute;
  right: 0;
  background: linear-gradient(#4db7be, #01313a);
  transition: .5s ease;
  /*滑らかに表示*/
  transform: translateX(150%);
}

.menu ul li {
  margin: 1%;
  border-bottom: 2px double #CCC;
}

.menu ul li:last-child {
  border: none;
}


.menu ul li a {
  display: block;
  display: flex;
  color: white;
  font-size: 3.2vw;
}


.menu img {
  width: 60px;
}

.menu ul li a span {
  display: block;
  margin-top: 0.9em;
}

/*OPEN時の動き*/
.menu.open {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  /*右にスライド*/
}

/*ハンバーガーが✖になるやつ*/
.Toggle {
  display: block;
  width: 42px;
  height: 42px;
  margin-left: auto;
  margin-right: 3%;
  cursor: pointer;
}

.Toggle span {
  width: 50px;
  display: block;
  margin-top: 3%;
  position: absolute;
  border-radius: 3vw;
  border-bottom: solid 6px #fbff00;
  -webkit-transition: .35s ease-in-out;
  /*変化の速度を指定*/
  -moz-transition: .35s ease-in-out;
  /*変化の速度を指定*/
  transition: .35s ease-in-out;
  /*変化の速度を指定*/

}

.Toggle span:nth-child(1) {
  top: 5px;
}

.Toggle span:nth-child(2) {
  top: 18px;
}

.Toggle span:nth-child(3) {
  top: 32px;
}

/* 1番目のspanを-45度にした */
.Toggle.active span:nth-child(1) {
  top: 18px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* 2番目と3番目のspanを45度にした */
.Toggle.active span:nth-child(2),
.Toggle.active span:nth-child(3) {
  top: 18px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* めいんびじゅ */

.hd {
  background-image: url(../../../images/top-img/top71.jpg);
  background-color: #fff;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: 25%;
  height: 50vw;
}

.h2-box {
  position: relative;
  margin-top: -20%;
  text-align: center;
  font-family: Grandstander;
  z-index: 0;
}

.h2-box h2 {
  font-size: 10vw;
  color: #FDFB00;
}

.h2-box p {
  font-size: 2.5vw;
  color: #ffffff;
}

svg {
  margin-top: -25%;
  color: #54ABB2;
  z-index: -10;
}

/* ぱんくず */
.pan {
  width: fit-content;
  margin-left: 10%;
}

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

/* main */
main h2 {
  width: 90%;
  margin: 10% auto;
  font-size: 3vw;
  color: #fff;
}

main h2 img {
  width: 100%;
  vertical-align: bottom;
  border-radius: 2vw;
}

.picture-flexbox {
  display: block;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2%;
}

.picture-box {
  width: 80%;
  height: 60vw;
  margin: 5% auto;
  padding: 1%;
  text-align: center;
  border-radius: 2vw;
  filter: drop-shadow(0 10px 10px rgb(0, 0, 0));
  background-color: #54ABB2;
}

.picture-box img {
  width: 80%;
  vertical-align: bottom;
  border-radius: 2vw;
}

.picture-box h3 {
  font-size: 4vw;
  color: #fff;
}

.picture-box p {
  display: none;
  width: 95%;
  margin: 0 auto;
  font-size: 1vw;
  color: #fff;
}

/* ページボタン */
.button-flexbox {
  display: flex;
  justify-content: center;
  width: 65vw;
  gap: 3%;
  margin: 7% auto 7% auto;
}

.button-flexbox a {
  text-decoration: none;
  display: inline-block;
  line-height: 2.5;
}

.button-flexbox>div:nth-child(1) {
  width: 10vw;
  height: 10vw;
  border-radius: 50%;
  line-height: 2.5;
  text-align: center;
  font-size: 4vw;
  color: #fff;
  background-color: #05428b;
}

.button-flexbox a div {
  width: 10vw;
  height: 10vw;
  border-radius: 50%;
  text-align: center;
  font-size: 4vw;
  color: #2196f3;
  background-color: #fff;
}

.dot {
  vertical-align: top;
  width: 8%;
  color: #fff;
  font-size: 6.3vw;
}

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

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

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

}

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

.menu-col {
  margin-top: 10%;
  font-size: 3vw;
  margin-left: 5%;
}

.menu-col a {
  color: white;
}

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

footer address {
  font-size: 2.5vw;
  font-style: normal;
}

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

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

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

footer ul li {
  line-height: 2.8;
}

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