@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
/* box-sizing: border-box;を設定 */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* フォントサイズの拡大を防ぐ */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  word-break: break-word;
}

/* リストのスタイルを削除、これはデフォルトのスタイルが削除されることを示唆します */
ul,
ol {
  list-style: none;
}

/* 見出しやインタラクティブ要素のline-heightを設定 */
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: inherit;
}

/* 見出しのテキスト折り返しをbalanceに設定 */
/* 画像の扱いを簡単にする */
img,
picture {
  max-width: 100%;
  display: block;
  height: auto;
}

/* inputやbuttonなどのfontは継承 */
input,
button,
textarea,
select {
  font: inherit;
}

table {
  border-collapse: collapse;
}

body,
button,
input,
textarea {
  font-family: "Noto Sans JP", sans-serif;
}

html,
body {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  min-height: 100vh;
}

html {
  font-size: 62.5%;
  scroll-padding-top: 120px;
  overflow-y: scroll;
}

body {
  font-size: 16px;
  line-height: 1.6875;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
}

body.no-scroll {
  overflow: hidden;
  max-height: 100vh;
}

:where(body, button, input, textarea, select) {
  color: #333;
  font-size: inherit;
  line-height: inherit;
}

label,
select,
input[type=checkbox],
input[type=radio],
button {
  cursor: pointer;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb35 {
  margin-bottom: 35px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb45 {
  margin-bottom: 45px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb55 {
  margin-bottom: 55px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb65 {
  margin-bottom: 65px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb75 {
  margin-bottom: 75px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb85 {
  margin-bottom: 85px;
}

.mb90 {
  margin-bottom: 90px;
}

.mb95 {
  margin-bottom: 95px;
}

.mb100 {
  margin-bottom: 100px;
}

.mb110 {
  margin-bottom: 110px;
}

.mb120 {
  margin-bottom: 120px;
}

.mb125 {
  margin-bottom: 125px;
}

.mb130 {
  margin-bottom: 130px;
}

.mb140 {
  margin-bottom: 140px;
}

.mb150 {
  margin-bottom: 150px;
}

.mb160 {
  margin-bottom: 160px;
}

.mb170 {
  margin-bottom: 170px;
}

.mb180 {
  margin-bottom: 180px;
}

.mb190 {
  margin-bottom: 190px;
}

.mb200 {
  margin-bottom: 200px;
}

.centerBox {
  max-width: 1082px;
  margin-inline: auto;
  padding-inline: 25px;
}

html::-webkit-scrollbar {
  width: 12px;
}

html::-webkit-scrollbar-track {
  width: 12px;
  background-color: #eee;
}

html::-webkit-scrollbar-thumb {
  background-color: #ccc;
}
/*.main{
  max-width: 1492px;
  margin: 0 auto;
}*/
img {
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/*-------------------------
        common_fv
--------------------------*/
.fv_common {
  width: 100%;
  height: 320px;
  background-image: url(../images/fv_common.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.fv_entitle {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  font-weight: bold;
  padding-left: 12px;
  margin-bottom: 5px;
  position: relative;
}
.fv_entitle::before {
  position: absolute;
  content: "";
  top: calc(50% - 3px);
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 4px;
  background-color: #fff;
}

.fv_title {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding: 5px 18px;
  background-color: #fff;
  color: #333;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 35px;
  font-weight: bold;
}

/*-------------------------
        common_btn
--------------------------*/
.common_btn {
  display: block;
  position: relative;
  transform: translate(-8px, -8px);
}
.common_btn p, .common_btn button {
  width: 100%;
  height: 100%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: center;
  border: solid 1px #333;
  background-color: #fff;
  border-radius: 30px;
  transition: background-color 0.3s;
  position: relative;
  z-index: 1;
}
.common_btn:hover p, .common_btn:hover button {
  background-color: #e7e7e7;
}
.common_btn.btn1 {
  width: 244px;
  height: 54px;
  line-height: 54px;
  border-radius: 27px;
}
.common_btn.btn2 {
  width: 244px;
  height: 54px;
  line-height: 54px;
  border-radius: 27px;
}
.common_btn::before {
  position: absolute;
  content: "";
  top: calc(50% - 5px);
  right: 26px;
  width: 6px;
  aspect-ratio: 5.12/10.25;
  background-image: url(../images/common_btn_arrow.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 2;
}
.common_btn::after {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  content: "";
  top: 8px;
  left: 8px;
  background: linear-gradient(to right, #284A8C 0%, #F5DA45 100%);
}

/*-------------------------
        inquiry_link
--------------------------*/
.inquiry_link {
  width: 100%;
  background-color: #F5DA45;
  padding: 0 50px;
}

.inquiry_link_inner {
  max-width: 1392px;
  padding: 80px 0 100px;
  margin-left: auto;
  margin-right: auto;
  background-image: url(../images/footer_inquiry_icon.png);
  background-position: bottom right;
  background-size: 400px auto;
  background-repeat: no-repeat;
}

.inquiry_link_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  font-weight: bold;
  color: #685340;
  padding-left: 16px;
  position: relative;
  margin-bottom: 20px;
}
.inquiry_link_title::before {
  position: absolute;
  content: "";
  width: 7px;
  aspect-ratio: 1/1;
  top: calc(50% - 4px);
  left: 0;
  border-radius: 4px;
  background-color: #685340;
}

.inquiry_link_btn {
  display: block;
  width: 490px;
  height: 105px;
  border-radius: 55px;
  background-color: #fff;
  line-height: 105px;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 32px;
  font-weight: bold;
  color: #685340;
  transition: background-color 0.3s;
}
.inquiry_link_btn:hover {
  background-color: #f0e6de;
}

/*-------------------------
        other items
--------------------------*/
.sp {
  display: none;
}

.tb {
  display: none;
}

.spn {
  display: block;
}

.spin {
  display: inline;
}

.tbn {
  display: block;
}

.center {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.text_center {
  text-align: center;
}

.url_link {
  color: #30519D;
  border-bottom: solid 1px #30519D;
  word-break: break-all;
  overflow-wrap: break-word;
}
.url_link:hover {
  border: inherit;
}

/*
.font{
  font-family: "Josefin Sans", serif;
  font-family: "Montserrat", sans-serif;
  font-family: 'BIZ UDPGothic', sans-serif;
  font-family: "Yu Gothic", sans-serif;
  font-family: 'DINBEK', sans-serif;
  font-family: 'Noto Sans JP', sans-serif;
  font-family: 'Zen Kurenaido', sans-serif;
}
*/
.header_height {
  width: 100%;
  height: 107px;
}
.header_height.top {
  height: 0;
}

.header {
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 107px;
  padding: 0 50px;
  background-color: rgba(255, 255, 255, 0.5882352941);
}
.header.top {
  background: linear-gradient(to bottom, #333333 0%, rgba(37, 37, 37, 0.61) 55%, rgba(16, 16, 16, 0) 100%);
}

.header_inner {
  max-width: 1392px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header_logo {
  width: fit-content;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.header_logo_img {
  width: 77px;
  position: relative;
  z-index: 9999;
}

.header_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: bold;
  line-height: 1.4;
}
.header_text.top {
  color: #fff;
}

.header_nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 63px;
}

.header_nav_li {
  width: fit-content;
  padding-left: 12px;
  position: relative;
}
.header_nav_li::before {
  position: absolute;
  content: "";
  top: calc(50% - 2px);
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 2px;
  background-color: #333;
}
.header_nav_li.top {
  color: #fff;
}
.header_nav_li.top::before {
  background-color: #fff;
}

#hamburger_area * {
  display: none;
}

/* Toggle Button */
.hamburger_menu {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 24px;
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 999;
  cursor: pointer;
}

.hamburger_menu span {
  position: absolute;
  width: 100%;
  height: 3px;
  transition: 0.3s;
}
.hamburger_menu span:first-of-type {
  top: 0;
}
.hamburger_menu span:nth-of-type(2) {
  top: 50%;
}
.hamburger_menu span:last-of-type {
  top: 100%;
}

.hamburger_menu.active span:first-of-type {
  top: 50%;
  transform: rotate(225deg);
}
.hamburger_menu.active span:nth-of-type(2) {
  opacity: 0;
}
.hamburger_menu.active span:last-of-type {
  top: 50%;
  transform: rotate(-225deg);
}

#bar_color.hamburger_menu span {
  background-color: #333;
}

#bar_color.hamburger_menu.active span {
  background-color: #fff;
}
#bar_color.hamburger_menu.active .hbg_menu_text {
  color: #fff;
}

#bar_color.hamburger_menu.top span {
  background-color: #fff;
}

#bar_color.hamburger_menu.top.active span {
  background-color: #fff;
}

.hbg_menu_text {
  font-size: 12px;
  color: #4D5878;
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.hbg_menu_text.top {
  color: #fff;
}

/* Slide Menu */
.slide_menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #4D5878;
  transition: right 0.3s ease-in-out;
  z-index: 99;
  transform: translateX(100%);
  transition: 0.3s;
}
.slide_menu .hbg_ul {
  list-style: none;
  height: fit-content;
  margin-top: 160px;
}
.slide_menu a {
  display: block;
  width: fit-content;
  text-decoration: none;
  color: #FFF9F3;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  margin-left: 50px;
  margin-bottom: 38px;
  position: relative;
}
.slide_menu a::before {
  position: absolute;
  content: "";
  width: 10px;
  aspect-ratio: 1/1;
  top: calc(50% - 5px);
  left: -19px;
  background-color: #FFF9F3;
  border-radius: 5px;
}

.slide_menu.active {
  transform: translateX(0);
  box-shadow: -2px 0 2px rgba(0, 0, 0, 0.2);
}

.footer {
  width: 100%;
  background-color: #30519D;
  padding: 60px 50px 45px;
}

.footer_inner {
  max-width: 1392px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer_main {
  display: flex;
  justify-content: left;
  align-items: flex-start;
  gap: 48px;
}

.footer_logo {
  width: 280px;
  flex-shrink: 0;
}
.footer_logo img {
  display: flex;
  width: 100%;
}

.footer_text_block {
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.footer_title {
  font-size: 20px;
  font-weight: bold;
}

.footer_subtitle {
  font-size: 14px;
}

small {
  font-size: 14px;
}

@media (max-width: 1200px){
  .inquiry_link_inner {
    background-size: 360px auto;
  }
  .inquiry_link_btn {
    width: 400px;
    height: 90px;
    line-height: 90px;
    font-size: 28px;
  }
  .header_nav {
    gap: 40px;
  }
}

@media (max-width: 960px){
  .mb25 {
    margin-bottom: 15px;
  }
  .mb30 {
    margin-bottom: 20px;
  }
  .mb35 {
    margin-bottom: 25px;
  }
  .mb40 {
    margin-bottom: 25px;
  }
  .mb45 {
    margin-bottom: 35px;
  }
  .mb50 {
    margin-bottom: 30px;
  }
  .mb55 {
    margin-bottom: 30px;
  }
  .mb60 {
    margin-bottom: 30px;
  }
  .mb65 {
    margin-bottom: 35px;
  }
  .mb70 {
    margin-bottom: 35px;
  }
  .mb75 {
    margin-bottom: 35px;
  }
  .mb80 {
    margin-bottom: 40px;
  }
  .mb85 {
    margin-bottom: 40px;
  }
  .mb90 {
    margin-bottom: 45px;
  }
  .mb95 {
    margin-bottom: 50px;
  }
  .mb100 {
    margin-bottom: 50px;
  }
  .mb110 {
    margin-bottom: 55px;
  }
  .mb120 {
    margin-bottom: 60px;
  }
  .mb125 {
    margin-bottom: 65px;
  }
  .mb130 {
    margin-bottom: 60px;
  }
  .mb140 {
    margin-bottom: 60px;
  }
  .mb150 {
    margin-bottom: 60px;
  }
  .mb160 {
    margin-bottom: 70px;
  }
  .mb170 {
    margin-bottom: 70px;
  }
  .mb180 {
    margin-bottom: 70px;
  }
  .mb190 {
    margin-bottom: 70px;
  }
  .mb200 {
    margin-bottom: 70px;
  }
  .fv_common {
    height: 260px;
  }
  .fv_title {
    font-size: 32px;
  }
  .common_btn.btn1 {
    width: 220px;
    height: 48px;
    line-height: 48px;
  }
  .common_btn.btn2 {
    width: 220px;
    height: 48px;
    line-height: 48px;
  }
  .inquiry_link_inner {
    background-size: 300px auto;
    padding: 60px 0 80px;
  }
  .inquiry_link_title {
    font-size: 18px;
  }
  .inquiry_link_btn {
    width: 320px;
    height: 80px;
    line-height: 80px;
    font-size: 24px;
  }
  .tb {
    display: block;
  }
  .tbn {
    display: none;
  }
  .header_height {
    height: 80px;
  }
  .header {
    padding: 0 30px;
    height: 80px;
  }
  .header_logo_img {
    width: 60px;
  }
  .header_nav {
    display: none;
  }
  #hamburger_area * {
    display: block;
  }
  .footer_logo {
    width: 240px;
  }
}

@media (max-width: 767px){
  body {
    font-size: 14px;
    text-align: justify;
  }
  .fv_common {
    height: 200px;
  }
  .fv_entitle {
    font-size: 18px;
  }
  .fv_title {
    font-size: 28px;
  }
  .common_btn.btn1 {
    margin-top: 40px;
  }
  .inquiry_link {
    padding: 0 20px;
  }
  .inquiry_link_inner {
    background-position: bottom center;
    background-size: 210px auto;
    padding: 60px 0 180px;
  }
  .inquiry_link_title {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .inquiry_link_btn {
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  .sp {
    display: block;
  }
  .spn {
    display: none;
  }
  .spin {
    display: none;
  }
  .header {
    padding: 0 20px;
  }
  .header_logo {
    gap: 10px;
  }
  .header_logo_img {
    width: 52px;
  }
  .hamburger_menu {
    top: 20px;
    right: 22px;
  }
  .footer {
    padding: 45px 20px 45px;
  }
  .footer_inner {
    justify-content: center;
    align-items: center;
  }
  .footer_main {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .footer_logo {
    width: 180px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer_text_block {
    text-align: center;
  }
  .footer_title {
    font-size: 18px;
  }
  .footer_subtitle {
    font-size: 13px;
  }
  small {
    font-size: 13px;
  }
}

@media print{
  body {
    width: 960px;
    margin: 0 auto;
  }
}