@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
}

li {
  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: Grandstander;
  src: url(../../font/Grandstander/Grandstander-VariableFont_wght.ttf);
}

body {
  margin: 0;
  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/top63.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: -5%;
  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 {
  font-weight: 600;
}

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


/* main */
main h2 img {
  vertical-align: bottom;
  display: inline-block;
  width: 15%;
  margin-right: 5%;
}

main .nav-p {
  width: 80%;
  margin: 10% auto;
  padding: 1%;
  font-size: 3.3vw;
  text-indent: 1em;
  color: #fff;
  border: 0.1vw solid #003b46;
}

/* 検索box */

.searchArea {
  width: 70%;
  height: 10vw;
  margin: 5% auto;
  padding-left: 18%;
  letter-spacing: 0.1em;
  font-weight: bold;
  line-height: 0;
}

.searchArea .searchText {
  display: block;
  float: left;
  box-sizing: border-box;
  height: 8vw;
  width: 60%;
  margin: 0;
  padding: 0 1%;
  border: 0.5vw solid #007fff;
  border-radius: 1vw 0 0 1vw;
  color: #333;
  outline: 0;
  font-size: 4vw;
}

.searchArea .searchButton {
  float: left;
  box-sizing: border-box;
  height: 8vw;
  margin: 0;
  padding: 4% 2%;
  border: none;
  border-radius: 0 1vw 1vw 0;
  background: #007fff;
  color: #fff;
  cursor: pointer;
  line-height: 1;
  font-size: 2.8vw;
}

.searchArea .searchText:focus {
  background: #cfe7ff;
}

.searchArea .searchText::-ms-clear {
  display: none;
}


/* sectionbox */

.section-flexbox {
  display: block;
  width: 90%;
  margin-top: 15%;
  margin-left: auto;
  margin-right: auto;
}

.section-flexbox .box {
  width: 80%;
  margin: 8% auto;

}

.section-flexbox .box:nth-child(2) {
  margin: 0 auto;
}

.section-flexbox .box img {
  width: 100%;
  vertical-align: bottom;
  border-radius: 1vw;
}

.indent-flexbox {
  display: block;
  width: 100%;
}

.indent-flexbox h3 {
  width: 100%;
  padding: 2% 0;
  text-align: center;
  border-radius: 1vw;
  color: #fff;
}

.indent-flexbox p {
  width: 100%;
  padding: 2% 0;
  text-align: center;
  border-radius: 1vw;
  color: #fff;
}


/*フッター*/
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;
}