@charset "UTF-8";
/* フォント読込 */
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  width: 100%;
  background-size: 100%;
  font-family: "yu-gothic-pr6n", sans-serif;
  font-weight: 400;
  position: relative;
  line-height: 1.6;
  letter-spacing: 0;
  color: #333;
}
body.no_scroll {
  overflow-y: hidden;
}
body div, body h1, body h2, body h3, body h4, body h5, body p, body ol, body ul {
  margin: 0;
  padding: 0;
}
body li {
  list-style: none;
}
body a {
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  color: #333;
}
body img {
  vertical-align: bottom;
}
@media screen and (max-width: 480px) {
  body img.img_pc {
    display: none;
  }
}
body img.img_sp {
  display: none;
}
@media screen and (max-width: 480px) {
  body img.img_sp {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  body br.br_pc {
    display: none;
  }
}
body img.img_zoom {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease; /* ゆっくり変化させる */
}
body img.img_zoom:hover {
  transform: scale(1.1); /* 拡大 */
  cursor: pointer;
}
body .grid_ctn {
  display: grid;
}
body .flex_ctn {
  display: flex;
  align-items: center;
}
body section {
  width: 100%;
}
body .base_width {
  width: 86vw;
  max-width: 1000px;
  margin: 0 auto;
}
body .il_block {
  display: inline-block;
}
body .js-animation {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: all 1s;
}
body .js-animation.delay_1 {
  transition-delay: 0.3s;
}
@media screen and (max-width: 480px) {
  body .js-animation.delay_1 {
    transition-delay: 0s;
  }
}
body .js-animation.delay_2 {
  transition-delay: 0.6s;
}
@media screen and (max-width: 768px) {
  body .js-animation.delay_2 {
    transition-delay: 0s;
  }
}
body .js-animation.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
body #top_button_icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #1e2a5a;
  position: fixed;
  bottom: 40px;
  right: 20px;
  z-index: 20;
  cursor: pointer;
  /*デフォルトで非表示にする*/
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  /*このクラスが付与されると表示する*/
}
@media screen and (max-width: 768px) {
  body #top_button_icon {
    bottom: 80px;
    right: 10px;
  }
}
body #top_button_icon div {
  margin: 40% 0 0 38%;
  padding: 0;
  width: 13px;
  height: 13px;
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  transform: rotate(-45deg);
}
body #top_button_icon:hover {
  background: rgba(30, 42, 90, 0.9);
  cursor: pointer;
}
body #top_button_icon.active {
  opacity: 1;
  visibility: visible;
}
body header {
  width: 96%;
  max-width: calc(1000px + (100vw - 1000px) / 2);
  height: 100px;
  border-bottom-right-radius: 20px;
  padding: 0 40px 0 20px;
  justify-content: space-between;
  background: #fff;
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 90;
}
@media screen and (max-width: 1150px) {
  body header {
    padding: 0 10px 0 10px;
  }
}
@media screen and (max-width: 768px) {
  body header {
    width: 100%;
    border-radius: initial;
    height: 75px;
    position: relative;
  }
}
@media screen and (max-width: 480px) {
  body header {
    height: 60px;
  }
}
body header .header_l {
  gap: 10px;
}
body header .header_l img {
  width: 200px;
}
@media screen and (max-width: 768px) {
  body header .header_l img {
    width: 150px;
  }
}
body header .header_l div:first-of-type {
  background: #1e2a5a;
  color: #fff;
  padding: 3px 15px;
  font-size: 14px;
}
@media screen and (max-width: 480px) {
  body header .header_l div:first-of-type {
    padding: 2px 15px;
  }
}
@media screen and (max-width: 350px) {
  body header .header_l div:first-of-type {
    display: none;
  }
}
body header .header_l div:last-of-type {
  color: #707070;
  font-size: 13px;
}
@media screen and (max-width: 768px) {
  body header .header_l div:last-of-type {
    display: none;
  }
}
body header .header_r nav {
  gap: 26px;
}
@media screen and (max-width: 1150px) {
  body header .header_r nav {
    display: none;
  }
}
body header .header_r nav ul {
  gap: 22px;
  color: #1e2a5a;
}
body header .header_r nav ul a {
  color: #1e2a5a;
}
body header .header_r nav ul li.now {
  border-bottom: 2px solid #1e2a5a;
}
body header .header_r nav div {
  color: #ab8f50;
  position: relative;
  padding-left: 30px;
}
body header .header_r nav div::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: block;
  content: "";
  width: 25px;
  height: 25px;
  background-image: url(../img/rsv_icon.svg);
  background-size: contain;
}
body header .header_r #hb_btn {
  display: none;
  width: 70px;
  height: 70px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
@media screen and (max-width: 1150px) {
  body header .header_r #hb_btn {
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  body header .header_r #hb_btn {
    width: 50px;
    height: 50px;
  }
}
body header .header_r #hb_btn span,
body header .header_r #hb_btn span:before,
body header .header_r #hb_btn span:after {
  content: "";
  display: block;
  height: 2px;
  width: 30px;
  border-radius: 2px;
  background-color: #1e2a5a;
  position: absolute;
  transition: all 0.5s; /*アニメーション設定*/
}
body header .header_r #hb_btn span:before {
  bottom: 10px;
}
body header .header_r #hb_btn span:after {
  top: 10px;
}
body header .header_r #hb_btn.open span {
  background-color: rgba(255, 255, 255, 0); /*メニューオープン時は真ん中の線を透明にする*/
}
body header .header_r #hb_btn.open span::before {
  bottom: 0;
  transform: rotate(45deg);
}
body header .header_r #hb_btn.open span::after {
  top: 0;
  transform: rotate(-45deg);
}
body #menu_content {
  background: rgba(30, 42, 90, 0.9);
  width: 100%;
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding-top: 80px;
  opacity: 0;
  user-select: none;
  pointer-events: none;
  transition: all 0.5s; /*アニメーション設定*/
  overflow-y: scroll;
}
body #menu_content.open {
  opacity: 1;
  user-select: auto;
  pointer-events: auto;
}
body #menu_content nav ul {
  margin: 120px 0 50px;
  font-size: 18px;
}
body #menu_content nav ul a {
  color: #fff;
}
body #menu_content nav ul a li {
  text-align: center;
  margin-bottom: 20px;
}
body #menu_content nav .rsv_btn {
  border: 1px solid #ab8f50;
  background: #fff;
  width: 80%;
  max-width: 250px;
  margin: 0 auto;
  padding: 10px 0;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
body #menu_content nav .rsv_btn p {
  color: #ab8f50;
  text-align: center;
  position: relative;
  padding-left: 35px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.9;
}
body #menu_content nav .rsv_btn p::before {
  position: absolute;
  top: 3px;
  left: 0;
  display: block;
  content: "";
  width: 28px;
  height: 28px;
  background-image: url(../img/rsv_icon.svg);
  background-size: contain;
}
body main #p_title {
  background: #f9fbfd;
  padding-bottom: 60px;
  position: relative;
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  body main #p_title {
    padding-top: 0;
  }
}
body main #p_title div h1 {
  padding-top: 50px;
  color: #1e2a5a;
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  body main #p_title div h1 {
    padding-top: 40px;
  }
}
body main #p_title div p {
  font-family: "futura-pt", sans-serif;
  font-weight: bold;
  color: #ab8f50;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  body main #p_title div p {
    padding-bottom: 20px;
  }
}
body main #p_title nav ol {
  justify-content: end;
  flex-wrap: wrap;
}
body main #p_title nav ol a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #666;
}
@media screen and (max-width: 480px) {
  body main #p_title nav ol a {
    gap: 5px;
  }
}
body main #p_title nav ol a::after {
  display: block;
  content: "";
  width: 18px;
  border-bottom: 1px solid #707070;
}
@media screen and (max-width: 480px) {
  body main #p_title nav ol a::after {
    width: 13px;
  }
}
body main #p_title nav ol li {
  padding-left: 10px;
}
body main #p_title nav ol li.now {
  color: #1e2a5a;
}
@media screen and (max-width: 480px) {
  body main #p_title nav ol li {
    font-size: 14px;
    padding-left: 5px;
  }
}
body main #p_title .p_top_img_ctn {
  width: 96%;
  max-width: calc(1000px + (100vw - 1000px) / 2);
  height: 250px;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  body main #p_title .p_top_img_ctn {
    height: 200px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 480px) {
  body main #p_title .p_top_img_ctn {
    height: 170px;
  }
}
body main #p_title img {
  width: 100%;
  height: 100%;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  object-fit: cover;
  object-position: center center;
}
body main #kuchikomi_sct .link {
  width: 500px;
  max-width: 90vw;
  margin: auto;
}
body main #kuchikomi_sct .link a img {
  width: 100%;
}
body footer {
  background: #1e2a5a;
}
@media screen and (max-width: 768px) {
  body footer {
    margin-bottom: 60px;
  }
}
body footer .base_width {
  padding: 50px 0 20px;
  color: #fff;
}
body footer .base_width .footer_t {
  grid-template-columns: 250px 1fr 260px;
  border-bottom: 1px solid #fff;
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
  body footer .base_width .footer_t {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}
body footer .base_width .footer_t .logo_ctn {
  margin-right: 50px;
}
@media screen and (max-width: 768px) {
  body footer .base_width .footer_t .logo_ctn {
    margin-right: 0;
  }
}
body footer .base_width .footer_t .logo_ctn img {
  width: 100%;
  max-width: 200px;
}
body footer .base_width .footer_t .logo_ctn p {
  padding-top: 10px;
  font-size: 13px;
  line-height: 1.3;
}
@media screen and (max-width: 480px) {
  body footer .base_width .footer_t .logo_ctn p {
    padding-top: 20px;
  }
}
body footer .base_width .footer_t .logo_ctn p:last-child {
  padding-top: 5px;
}
@media screen and (max-width: 480px) {
  body footer .base_width .footer_t .logo_ctn p:last-child {
    padding-top: 10px;
  }
}
@media screen and (max-width: 1080px) {
  body footer .base_width .footer_t nav ul {
    display: block;
  }
}
body footer .base_width .footer_t nav ul a {
  color: #fff;
}
body footer .base_width .footer_t nav ul li {
  margin-right: 20px;
  margin-bottom: 5px;
}
body footer .base_width .footer_t .buttons .rsv_btn {
  background: #fff;
  border: 1px solid #ab8f50;
  width: 260px;
  height: 50px;
  padding: 0;
  margin: 0 0 1em;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  body footer .base_width .footer_t .buttons .rsv_btn {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 70px;
    border: none;
    background: #ab8f50;
    margin: 0;
  }
}
body footer .base_width .footer_t .buttons .rsv_btn p {
  color: #ab8f50;
  font-weight: bold;
  text-align: center;
  position: relative;
  padding-left: 30px;
  line-height: 1.9;
}
@media screen and (max-width: 768px) {
  body footer .base_width .footer_t .buttons .rsv_btn p {
    font-size: 20px;
    color: #fff;
  }
}
body footer .base_width .footer_t .buttons .rsv_btn p::before {
  position: absolute;
  top: 4px;
  left: 0;
  display: block;
  content: "";
  width: 25px;
  height: 25px;
  background-image: url(../img/rsv_icon.svg);
  background-size: contain;
}
@media screen and (max-width: 768px) {
  body footer .base_width .footer_t .buttons .rsv_btn p::before {
    top: 6px;
    background-image: url(../img/rsv_icon_white.svg);
  }
}
body footer .base_width .footer_t .buttons .line_btn {
  background: #fff;
  border: 1px solid #06C755;
  width: 260px;
  height: 50px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
body footer .base_width .footer_t .buttons .line_btn .icon {
  position: relative;
  width: 2.5em;
  padding: 6px 5px 0 0;
}
body footer .base_width .footer_t .buttons .line_btn .icon .st0 {
  fill: #06C755;
}
@media screen and (max-width: 768px) {
  body footer .base_width .footer_t .buttons .line_btn {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 70px;
    border: none;
    background: #06C755;
  }
  body footer .base_width .footer_t .buttons .line_btn .icon {
    position: relative;
    width: 2.5em;
    padding: 6px 5px 0 0;
  }
  body footer .base_width .footer_t .buttons .line_btn .icon .st0 {
    fill: #FFFFFF;
  }
}
body footer .base_width .footer_t .buttons .line_btn p {
  color: #06C755;
  font-weight: bold;
  text-align: center;
  position: relative;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  body footer .base_width .footer_t .buttons .line_btn p {
    font-size: 18px;
    color: #fff;
  }
}
body footer .base_width .footer_b {
  padding-top: 20px;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  body footer .base_width .footer_b {
    display: block;
  }
}
body footer .base_width .footer_b a {
  margin-right: 30px;
  color: #fff;
  font-size: 13px;
  line-height: 15px;
}
body footer .base_width .footer_b p {
  color: #fff;
  font-size: 10px;
}
@media screen and (max-width: 768px) {
  body footer .base_width .footer_b p {
    margin-top: 10px;
  }
}
body footer .base_width .footer_b .license {
  margin-right: 30px;
  color: #fff;
  font-size: 13px;
  line-height: 15px;
}/*# sourceMappingURL=common.css.map */