@charset "UTF-8";

/* PC表示設定 */
@media screen and (min-width: 960px) {

/* コンテンツここから */



/* ナビ */

.top {
  padding-top: 114px;
  background-image: url(/assets/img/include/bg_pc.jpg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center 0;
}

.header {
  position: fixed;
  width: 100%;
  height: 64px;
  padding-top: 50px;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items :center;
  z-index: 99;
}

.header .header_item {
  display: flex;
  align-items :center;
  margin-right: 50px;
}

.header h1 img {
  height: 100%;
  margin-left: 50px;
}

.header nav ul {
  display: flex;
}

.header nav ul li {
  font-size: 14px;
  font-family: "Noto Sans JP";
  font-weight: 400;
  margin-right: 35px;
  position: relative;
}

.header .btn_contact {
  margin-right: 20px;
  font-size: 14px;
  font-family: "Noto Sans JP";
  font-weight: 400;
  height: 50px;
  line-height: 50px;
  white-space: nowrap;
  padding: 0px 60px 0px 30px;
  border-radius: 30px;
  border: 1px solid #131626;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.40) 100%);
  position:relative;
}
.header .btn_contact::after {
  display: inline-block;
  content: "";
  width: 30px;
  height: 50px;
  background: url(/assets/img/include/icon_contact.svg) no-repeat;
  background-size: 30px 30px;
  background-position: center;
  position: absolute;
  right: 10px;
}
.header .btn_contact:hover {
  color: #BEC5D0;
  border: 1px solid #BEC5D0;
}

.menu_hamburger .menu_hamburger_btn_open img {
  width: 50px;
  height: 50px;
}




/* ナビ（メニュー展開） */

.header_item .drop_menu_list {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 200px;
  padding: 30px;
  background-color: #fff;
  box-shadow: 5px 5px 15px 0px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.header_item .drop_menu_list li {
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-family: "Noto Sans JP";
  font-weight: 400;
}
.header_item .drop_menu_list li::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #BEC5D0;
  margin-top: 20px;
}
.header_item .drop_menu_list li:last-child::after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  background-color: #fff;
  margin: 0;
}

.js_acd .drop_menu_list_none {
  visibility: hidden;
}


/* ハンバーガーメニュー展開 */

.menu_hamburger .menu_hamburger_content {
  position: fixed;
  top: 0;
  right: 0;
  height:100%;
  min-height: 100vh;
  background: linear-gradient(180deg, #FFF 0%, #EEF3F7 100%);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.30);
  padding: 50px;
  overflow-y: scroll;
  transition: all 0.5s;
  transform: translate(1200px);
}

.menu_hamburger .menu_hamburger_content.open {
  transform: translate(0);
}

.menu_hamburger .menu_hamburger_content select {
  margin-top: 15px;
  margin-bottom: 40px;
  font-size: 14px;
  font-family: "Noto Sans JP";
  font-weight: 400;
  border-radius: 5px;
  padding: 5px 28px 5px 10px;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("/assets/img/include/selectbox_ya.svg");
  background-repeat: no-repeat;
  background-size: 12px auto;
  background-position: right 10px center;
}

.menu_hamburger .menu_hamburger_content .menu_hamburger_btn_close {
  width: 50px;
  height: 50px;
  position: fixed;
  top: 50px;
  right: 50px;
}
.menu_hamburger .menu_hamburger_content .menu_hamburger_btn_close img {
  width: 100%;
}

.menu_hamburger .menu_hamburger_content dl {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
}

.menu_hamburger .menu_hamburger_content dl dt {
  width: 160px;
  color: #BEC5D0;
  font-family: "Noto Sans JP";
  font-weight: 400;
}

.menu_hamburger .menu_hamburger_content dl dd ul li {
  width: 200px;
  font-size: 14px;
  font-family: "Noto Sans JP";
  font-weight: 400;
  margin-bottom: 15px;
}
.menu_hamburger .menu_hamburger_content dl dd ul li::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #BEC5D0;
  margin-top: 15px;
}

.menu_hamburger .menu_hamburger_content .menu_hamburger_last ul {
  padding-bottom: 60px;
}


/* コンテンツここまで */

}