@charset "UTF-8";
/*//////////////////////////////////////////////////////////

Copyright (C) apricot-design All Rights Reserved.
------------------------------------------------------------
CSS information
 file name  :  reset.css
 style info :  リセットファイル
 admin info :  apricot-design

//////////////////////////////////////////////////////////*/
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
  display: block;
}

audio[controls], canvas, video {
  display: inline-block;
  *display: inline;
  zoom: 1;
}

html {
  overflow-y: scroll;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body, div, dl, dt, dd, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td, ul {
  margin: 0;
  padding: 0;
}

body, button, input, select, textarea {
  font-size: 100%;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: bold;
}

blockquote {
  margin: 1em 40px;
}

dfn {
  font-style: italic;
}

mark {
  background: #ff0;
  color: #000;
}

pre, code, kbd, samp {
  font-family: monospace, monospace;
  _font-family: "courier new", monospace;
  font-size: 1em;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

q {
  quotes: none;
}
q:before, q:after {
  content: "";
  content: none;
}

small {
  font-size: 75%;
}

sub {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

ul, ol {
  margin: 0;
  padding: 0;
}

dd {
  margin: 0px;
}

nav ul, nav ol {
  list-style: none;
}

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}

svg:not(:root) {
  overflow: hidden;
}

figure, form {
  margin: 0;
}

fieldset {
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  *margin-left: -7px;
}

button, input, select, textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
}

button, input {
  line-height: normal;
  *overflow: visible;
}

button {
  cursor: pointer;
  -webkit-appearance: button;
}

input[type=button], input[type=reset], input[type=submit] {
  cursor: pointer;
  -webkit-appearance: button;
}
input[type=checkbox], input[type=radio] {
  box-sizing: border-box;
}
input[type=search] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  font-size: 100%;
}

img, abbr, acronym, fieldset {
  border: 0;
}

li {
  list-style: none;
}

/*画像を縦に並べた時に余白が出ないように*/
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

/*box-sizingを全ブラウザに対応*/
* {
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
*:before, *:after {
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

.ie6_error, .no_script {
  background: #F66;
  padding: 100px;
  text-align: center;
  font-size: 150%;
  color: #333;
}

.flt {
  float: left;
}

.flr {
  float: right;
}

.txt_l, td.txt_l, .txt_l td {
  text-align: left;
}

.txt_r, td.txt_r, .txt_r td {
  text-align: right;
}

.txt_c, td.txt_c, .txt_c td {
  text-align: center;
}

.valign_t, td.valign_t, .valign_t td {
  vertical-align: top;
}

.valign_m, td.valign_m, .valign_m td {
  vertical-align: middle;
}

.valign_b, td.valign_b, .valign_b td {
  vertical-align: bottom;
}

.clear {
  clear: both;
}

.clearfix {
  zoom: 1;
}
.clearfix:before {
  content: "";
  display: block;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.img_bd {
  border: solid 1px #E8E8E8;
}

.c_red {
  color: #FF3425;
}

.fadeIn {
  opacity: 0;
}
.fadeIn.scrollin {
  -webkit-animation: fadeIn 0.6s ease-in-out forwards;
          animation: fadeIn 0.6s ease-in-out forwards;
}

.fadeInLeft {
  opacity: 0;
}
.fadeInLeft.scrollin {
  -webkit-animation: fadeInLeft 0.6s ease-in-out forwards;
          animation: fadeInLeft 0.6s ease-in-out forwards;
}

.fadeInRight {
  opacity: 0;
}
.fadeInRight.scrollin {
  -webkit-animation: fadeInRight 0.6s ease-in-out forwards;
          animation: fadeInRight 0.6s ease-in-out forwards;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(1em);
  }
  80% {
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(1em);
  }
  80% {
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-1em);
  }
  80% {
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-1em);
  }
  80% {
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(1em);
  }
  80% {
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(1em);
  }
  80% {
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@font-face {
  font-family: "Alata";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/alata/v7/PbytFmztEwbIoceyzqYzQ1OW7l8.woff2) format("woff2");
  unicode-range: U+0030-0039, U+0041-007A;
}
/* latin-ext */
@font-face {
  font-family: "Alata";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/alata/v7/PbytFmztEwbIocezzqYzQ1OW7l8.woff2) format("woff2");
  unicode-range: U+0030-0039, U+0041-007A;
}
/* latin */
@font-face {
  font-family: "Alata";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/alata/v7/PbytFmztEwbIoce9zqYzQ1OW.woff2) format("woff2");
  unicode-range: U+0030-0039, U+0041-007A;
}
html {
  width: 100%;
  font-size: 10px;
}

body {
  font: 400 15px/2 "Noto Sans JP", "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  color: #040000;
  text-align: left;
  letter-spacing: 1px;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
    line-height: 1.8;
  }
}

a {
  text-decoration: none;
  color: #040000;
  transition: 0.3s;
}
a:link, a:active, a:visited {
  text-decoration: none;
}

a[href*=tel] {
  pointer-events: none;
  cursor: default;
}
@media screen and (max-width: 767px) {
  a[href*=tel] {
    pointer-events: auto;
    cursor: pointer;
  }
}

.opacity {
  transition: 0.3s;
}
.opacity:hover {
  opacity: 0.5;
}

img {
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: inherit;
  }
}

#container_wrap {
  overflow: hidden;
  min-width: 1000px;
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  #container_wrap {
    min-width: 1px;
    padding-top: 60px;
  }
}

.section_wrap {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .section_wrap {
    padding: 60px 0;
  }
}
.section_wrap.bg_blue {
  background-color: #ECF2FF;
}
.section_wrap.bg_gradient {
  background: linear-gradient(to right bottom, #ECF2FF 50%, #F5F9FF 50%);
}
.section_wrap.bg_gray {
  background-color: #F5F5F5;
}
.section_wrap.bg_gray .ttl_cmn_02::before {
  color: #fff;
}

.inner {
  max-width: 1090px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.inner_lg {
  max-width: 1210px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.inner_sm {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  width: 100%;
  min-width: 1000px;
  top: 0;
  left: 0;
  background-color: #fff;
  box-shadow: 0 0 3px rgba(4, 0, 0, 0.5);
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .header {
    min-width: 1px;
  }
}
.header_ttl {
  margin-left: 5.333vw;
  width: 134px;
}
@media screen and (max-width: 1200px) {
  .header_ttl {
    width: 100px;
  }
}
.header_ttl a {
  display: block;
}
@media screen and (max-width: 767px) {
  .header_ttl a {
    width: auto;
  }
}
.header_ttl a img {
  display: block;
}

.menu-trigger {
  display: none;
}
@media screen and (max-width: 767px) {
  .menu-trigger {
    display: block;
    position: relative;
    width: 60px;
    height: 60px;
    background-color: #162789;
    z-index: 1002;
    cursor: pointer;
  }
  .menu-trigger span {
    position: absolute;
    width: 28px;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    top: calc(50% - 1px);
    left: calc(50% - 14px);
    transition: all 0.3s ease;
  }
  .menu-trigger span::before, .menu-trigger span::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    top: -10px;
    left: 0;
    transform-origin: center;
    transition: all 0.3s ease;
  }
  .menu-trigger span::after {
    top: 10px;
    left: 0;
  }
  .menu-trigger.active span {
    background-color: rgba(255, 255, 255, 0);
  }
  .menu-trigger.active span::before, .menu-trigger.active span::after {
    top: 0;
  }
  .menu-trigger.active span::before {
    transform: rotate(45deg);
  }
  .menu-trigger.active span::after {
    transform: rotate(-45deg);
  }
}

@media screen and (max-width: 767px) {
  #gnavi {
    position: fixed;
    width: 100%;
    height: auto;
    top: -100%;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    background-color: rgba(22, 39, 137, 0.9);
  }
  #gnavi.active {
    top: 60px;
    opacity: 1;
  }
}
#gnavi ul {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  #gnavi ul {
    flex-wrap: wrap;
    height: auto;
    padding: 30px 0 0;
  }
}
#gnavi ul li:not([class]) {
  position: relative;
  margin-right: 30px;
}
@media screen and (max-width: 1200px) {
  #gnavi ul li:not([class]) {
    margin-right: 15px;
  }
}
@media screen and (max-width: 767px) {
  #gnavi ul li:not([class]) {
    width: 100%;
    margin: 0;
    padding: 12px 0;
  }
}
#gnavi ul li:not([class]) a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 1.6rem;
  font-weight: 700;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}
#gnavi ul li:not([class]) a:hover {
  color: #162789;
  border-bottom-color: #162789;
}
@media screen and (max-width: 767px) {
  #gnavi ul li:not([class]) a {
    color: #fff;
    font-size: 1.5em;
  }
}
#gnavi ul .btns {
  width: 130px;
  height: 100px;
}
@media screen and (max-width: 1200px) {
  #gnavi ul .btns {
    width: 100px;
  }
}
@media screen and (max-width: 767px) {
  #gnavi ul .btns {
    width: 50%;
    height: auto;
    margin-top: 15px;
  }
}
#gnavi ul .btns a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #040000;
  color: #fff;
  height: 100%;
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  #gnavi ul .btns a {
    padding: 15px 0 10px;
  }
}
#gnavi ul .btns a span {
  display: block;
  position: relative;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
}
#gnavi ul .btns a span::before {
  content: "";
  display: block;
  width: 35px;
  height: 35px;
  background: url(../images/icon_document.svg) no-repeat center/contain;
  margin: auto;
}
#gnavi ul .btns a:hover span {
  border-bottom: 2px solid #fff;
}
#gnavi ul .btns:last-of-type a {
  background-color: #162789;
}
#gnavi ul .btns:last-of-type a span::before {
  background-image: url(../images/icon_map.svg);
}

#overlay {
  display: none;
}

.footer {
  background-color: #F5F5F5;
  padding: 120px 0 90px;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 60px 0 40px;
  }
}
.footer .inner_lg {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footer .inner_lg .information {
    margin-bottom: 2em;
  }
}
.footer .inner_lg .information > img {
  display: block;
  margin-bottom: 18px;
  max-width: 60%;
}
@media screen and (max-width: 767px) {
  .footer .inner_lg .information > img {
    max-width: 60%;
  }
}
.footer .inner_lg .information strong {
  display: block;
  font-size: 1.333em;
  font-weight: 700;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .footer .inner_lg .information strong {
    font-size: 1.2em;
  }
}
.footer .inner_lg .information p {
  font-weight: 400;
  line-height: 2.1;
  margin-bottom: 1.5em;
}
.footer .inner_lg .information ul {
  display: flex;
  align-items: center;
}
.footer .inner_lg .information ul li {
  margin-right: 2em;
}
.footer .inner_lg .information ul li a:hover img {
  transform: translateY(-3px);
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .footer .inner_lg .list_footer {
    width: 100%;
  }
}
.footer .inner_lg .list_footer li {
  margin-bottom: 1.666em;
}
.footer .inner_lg .list_footer li:last-child {
  margin-bottom: 0;
}
.footer .inner_lg .list_footer li a {
  display: block;
  position: relative;
  font-size: 1.2em;
  font-weight: 700;
  text-align: center;
  width: 400px;
  max-width: 100%;
  height: 70px;
  line-height: 68px;
  border: 1px solid #040000;
}
@media screen and (max-width: 767px) {
  .footer .inner_lg .list_footer li a {
    height: 50px;
    line-height: 48px;
  }
}
.footer .inner_lg .list_footer li a::before {
  content: "";
  position: absolute;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  top: 5px;
  left: 5px;
  border: 1px solid #040000;
  transform: scale(0.95);
  transition: 0.3s;
  opacity: 0;
}
.footer .inner_lg .list_footer li a::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: url(../images/icon_arrow_black.svg) no-repeat center/contain;
  right: 25px;
  top: calc(50% - 5px);
  transition: 0.3s;
}
.footer .inner_lg .list_footer li a.bg_black {
  background-color: #040000;
  color: #fff;
}
.footer .inner_lg .list_footer li a.bg_black::before {
  border-color: #fff;
}
.footer .inner_lg .list_footer li a.bg_black::after {
  background-image: url(../images/icon_arrow_white.svg);
}
.footer .inner_lg .list_footer li a.bg_blue {
  border-color: #162789;
  background-color: #162789;
  color: #fff;
}
.footer .inner_lg .list_footer li a.bg_blue::before {
  border-color: #fff;
}
.footer .inner_lg .list_footer li a.bg_blue::after {
  background-image: url(../images/icon_arrow_white.svg);
}
.footer .inner_lg .list_footer li a:hover::before {
  opacity: 1;
  transform: scale(1);
}
.footer .inner_lg .list_footer li a:hover::after {
  right: 15px;
}

@-webkit-keyframes slide_anim {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes slide_anim {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.main_visual {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 50%;
  background: url(../images/top_bg_hero.jpg) no-repeat center top/cover;
}
@media screen and (max-width: 767px) {
  .main_visual {
    padding-top: 89%;
  }
}
.main_visual .mv_slider {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  margin: 0;
}
.main_visual .mv_slider.slick-initialized {
  display: block;
  -webkit-animation: slide_anim 0.5s ease 0.3s forwards;
          animation: slide_anim 0.5s ease 0.3s forwards;
}
.main_visual .mv_slider.slick-initialized + .mv_inner {
  -webkit-animation: slide_anim 0.5s ease 0.6s forwards;
          animation: slide_anim 0.5s ease 0.6s forwards;
}
.main_visual .mv_slider .slick-list {
  pointer-events: none;
}
.main_visual .mv_slider .slide_img figure {
  width: 100%;
  height: 0;
  padding-top: 50%;
  background: no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .main_visual .mv_slider .slide_img figure {
    padding-top: 89%;
  }
}
.main_visual .mv_slider .slick-dots {
  bottom: 40px;
}
.main_visual .mv_slider .slick-dots li {
  width: 12px;
  height: 12px;
}
.main_visual .mv_slider .slick-dots li button {
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  transition: 0.3s;
}
.main_visual .mv_slider .slick-dots li button::before {
  content: none;
}
.main_visual .mv_slider .slick-dots li.slick-active button {
  background-color: #162789;
}
.main_visual .mv_slider .slick-dots li:hover button {
  background-color: rgba(22, 39, 137, 0.7);
}
.main_visual .mv_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 40px 36px;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .main_visual .mv_inner {
    width: 100%;
    max-width: 90%;
  }
}
.main_visual .mv_inner img {
  display: block;
  margin: 0 auto 20px;
}
.main_visual .mv_inner span {
  display: block;
  font-size: 1.46em;
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .main_visual .mv_inner span {
    font-size: 1.2em;
  }
}

.section_information .inner_sm {
  position: relative;
}
.section_information .inner_sm .btn_more {
  position: absolute;
  top: 10px;
  right: 15px;
}
@media screen and (max-width: 767px) {
  .section_information .inner_sm .btn_more {
    position: relative;
    top: auto;
    right: auto;
  }
}

.section_about {
  background-color: #F5F5F5;
}
.section_about .about_wrap {
  position: relative;
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .section_about .about_wrap {
    padding: 0;
  }
}
.section_about .about_wrap .image {
  position: absolute;
  width: 56.6%;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .section_about .about_wrap .image {
    position: static;
    width: auto;
    margin: 0 -15px;
  }
}
.section_about .about_wrap .text {
  position: relative;
  background-color: #fff;
  width: 49.1%;
  margin-left: auto;
  padding: 50px 60px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .section_about .about_wrap .text {
    width: 100%;
    margin: -30px auto 0;
    padding: 30px 15px;
  }
}
.section_about .about_wrap .text h3 {
  color: #162789;
  font-size: 1.333em;
  line-height: 1.7;
  margin-bottom: 1.25em;
  font-weight: 700;
}

.section_feature ul {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
.section_feature ul li {
  width: calc(33.3333% - 33.3333333333px);
}
.section_feature ul li:nth-child(2) {
  padding-top: 40px;
}
.section_feature ul li:nth-child(3) {
  padding-top: 80px;
}
.section_feature ul li:nth-child(5) {
  padding-top: 40px;
}
.section_feature ul li:nth-child(6) {
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .section_feature ul li {
    width: auto;
    padding: 0 !important;
  }
}
.section_feature ul li img {
  display: block;
  margin-bottom: 25px;
}
.section_feature ul li h3 {
  position: relative;
  text-align: center;
  font-size: 1.333em;
  font-weight: 700;
  min-height: 70px;
  line-height: 1.7;
  padding-top: 22px;
  margin-bottom: 1em;
  z-index: 1;
}
.section_feature ul li h3::after {
  content: attr(data-num);
  position: absolute;
  font-size: 9.4rem;
  font-family: "Alata", sans-serif;
  color: #ECF2FF;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  font-weight: 400;
  line-height: 0.8;
}

.image_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  padding: 90px 0;
  background: url(../images/point_bg.jpg) no-repeat center/cover;
}
.image_wrap::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(22, 39, 137, 0.25);
  top: 0;
  left: 0;
}
.image_wrap h2 {
  position: relative;
  color: #fff;
  font-size: 1.866em;
  font-weight: 700;
  font-family: "Alata", "Noto Sans JP", "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  z-index: 1;
}
.image_wrap h2::after {
  content: "";
  position: absolute;
  width: 418px;
  height: 109px;
  background: url(../images/point_ttl.svg) no-repeat center/contain;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.image_wrap h2 span {
  display: inline-block;
  font-size: 1.6em;
  font-weight: normal;
}

.section_point ul {
  margin-bottom: 7.33em;
}
.section_point ul li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 5.3333em;
}
.section_point ul li .image {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .section_point ul li .image {
    width: 100%;
    margin-bottom: 2em;
  }
}
.section_point ul li .text {
  width: 50%;
  padding-left: 45px;
}
@media screen and (max-width: 767px) {
  .section_point ul li .text {
    width: 100%;
    padding: 0;
  }
}
.section_point ul li .text h3 {
  margin-bottom: 0.8em;
}
.section_point ul li .text h3 img {
  width: 200px;
}
.section_point ul li .text h4 {
  font-size: 1.333em;
  margin-bottom: 1.2em;
  font-weight: 700;
}
.section_point ul li .text p b {
  font-weight: 700;
}
.section_point ul li:nth-child(even) .image {
  order: 2;
}
@media screen and (max-width: 767px) {
  .section_point ul li:nth-child(even) .image {
    order: 1;
  }
}
.section_point ul li:nth-child(even) .text {
  order: 1;
  padding: 0 45px 0 0;
}
@media screen and (max-width: 767px) {
  .section_point ul li:nth-child(even) .text {
    order: 2;
    padding: 0;
  }
}

.lineup_wrap {
  display: flex;
  flex-wrap: wrap;
  font-family: "Alata", "Noto Sans JP", "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  margin-bottom: 5.333em;
}
.lineup_wrap .image {
  width: 61.1%;
}
@media screen and (max-width: 767px) {
  .lineup_wrap .image {
    width: 100%;
    margin-bottom: 3em;
  }
}
.lineup_wrap .image .lineup_slider {
  display: none;
  margin-bottom: 3.666em;
}
.lineup_wrap .image .lineup_slider.slick-initialized {
  display: block;
}
.lineup_wrap .image .lineup_slider figure {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 66.6666%;
}
.lineup_wrap .image .lineup_slider figure img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
.lineup_wrap .image .lineup_slider .slick-dots {
  bottom: 20px;
}
@media screen and (max-width: 767px) {
  .lineup_wrap .image .lineup_slider .slick-dots {
    bottom: 3px;
  }
}
.lineup_wrap .image .lineup_slider .slick-dots li {
  width: 12px;
  height: 12px;
}
.lineup_wrap .image .lineup_slider .slick-dots li button {
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  transition: 0.3s;
}
.lineup_wrap .image .lineup_slider .slick-dots li button::before {
  content: none;
}
.lineup_wrap .image .lineup_slider .slick-dots li.slick-active button {
  background-color: #162789;
}
.lineup_wrap .image .lineup_slider .slick-dots li:hover button {
  background-color: rgba(22, 39, 137, 0.7);
}
.lineup_wrap .image .lineup_slider .slick-arrow {
  width: 20px;
  height: 40px;
  z-index: 1;
}
.lineup_wrap .image .lineup_slider .slick-arrow:hover::after {
  border-right-color: #162789;
}
.lineup_wrap .image .lineup_slider .slick-arrow::before {
  content: none;
}
.lineup_wrap .image .lineup_slider .slick-arrow::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border: 20px solid transparent;
  border-left: 0 none;
  border-right: 19px solid #fff;
  top: 0;
  left: 0;
  transition: 0.3s;
  filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.6));
}
.lineup_wrap .image .lineup_slider .slick-arrow.slick-prev {
  left: 20px;
}
.lineup_wrap .image .lineup_slider .slick-arrow.slick-next {
  right: 20px;
}
.lineup_wrap .image .lineup_slider .slick-arrow.slick-next::after {
  transform: rotateY(180deg);
}
.lineup_wrap .image .lineup_room {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.lineup_wrap .image .lineup_room li {
  max-width: 43.5%;
}
.lineup_wrap .image .lineup_room li p {
  width: 92px;
  line-height: 18px;
  height: 20px;
  font-family: "Alata", "Noto Sans JP", "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  text-align: center;
  background-color: #162789;
  color: #fff;
  font-size: 1.5em;
  margin-bottom: 1.5em;
}
.lineup_wrap .text {
  width: 38.9%;
  padding-left: 55px;
}
@media screen and (max-width: 767px) {
  .lineup_wrap .text {
    width: 100%;
    padding: 0;
  }
}
.lineup_wrap .text h3 {
  position: relative;
  line-height: 1;
  color: #162789;
  font-weight: 400;
  font-size: 2.33em;
  padding-left: 85px;
  margin-bottom: 0.9em;
}
.lineup_wrap .text h3::before {
  content: attr(data-num);
  position: absolute;
  font-size: 6.6rem;
  line-height: 0.7;
  font-weight: 700;
  left: 0;
  top: 0;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  letter-spacing: -3px;
}
.lineup_wrap .text h3 span {
  display: block;
  font-size: 0.38em;
  margin-top: 7px;
  font-weight: 700;
}
.lineup_wrap .text strong {
  display: block;
  margin-bottom: 1.8em;
}
.lineup_wrap .text .list_point {
  border-bottom: 1px solid #162789;
  margin-bottom: 1.333em;
}
.lineup_wrap .text .list_point li {
  border-top: 1px solid #162789;
  padding: 1.666em 0;
}
.lineup_wrap .text .list_point li dl {
  display: flex;
  flex-wrap: wrap;
}
.lineup_wrap .text .list_point li dl:first-child dt {
  font-size: 1.2em;
  color: #162789;
  font-weight: 700;
}
.lineup_wrap .text .list_point li dl.price {
  align-items: center;
}
.lineup_wrap .text .list_point li dl.price dd {
  font-size: 1.2em;
}
.lineup_wrap .text .list_point li dl.price dd b {
  font-size: 1.333em;
  font-weight: 700;
}
.lineup_wrap .text .list_point li dl dt {
  position: relative;
  width: 132px;
}
@media screen and (max-width: 767px) {
  .lineup_wrap .text .list_point li dl dt {
    width: 125px;
  }
}
.lineup_wrap .text .list_point li dl dd {
  width: calc(100% - 132px);
  text-indent: -4px;
  padding-left: 10px;
}
@media screen and (max-width: 767px) {
  .lineup_wrap .text .list_point li dl dd {
    width: calc(100% - 125px);
  }
}
.lineup_wrap .text .list_point li dl dd::before {
  content: ":";
  display: inline-block;
  margin-right: 0.2em;
}
.lineup_wrap:nth-of-type(even) .image {
  order: 2;
}
@media screen and (max-width: 767px) {
  .lineup_wrap:nth-of-type(even) .image {
    order: 1;
  }
}
.lineup_wrap:nth-of-type(even) .text {
  order: 1;
  padding: 0 55px 0 0;
}
@media screen and (max-width: 767px) {
  .lineup_wrap:nth-of-type(even) .text {
    order: 2;
    padding: 0;
  }
}

.access_wrap {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 7.3333em;
}
.access_wrap:last-child {
  margin-bottom: 0;
}
.access_wrap .image {
  width: 55.6%;
}
@media screen and (max-width: 767px) {
  .access_wrap .image {
    width: 100%;
  }
}
.access_wrap .image ul {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .access_wrap .image ul {
    gap: 10px;
  }
}
.access_wrap .image ul li {
  width: calc(33.3333% - 20px);
}
@media screen and (max-width: 767px) {
  .access_wrap .image ul li {
    width: calc(33.3333% - 6.6666666667px);
  }
}
.access_wrap .image ul li:first-child {
  width: 100%;
}
.access_wrap .text {
  width: 44.4%;
  padding: 20px 0 0 40px;
}
@media screen and (max-width: 767px) {
  .access_wrap .text {
    width: 100%;
    padding-left: 0;
  }
}
.access_wrap .text h3 {
  font-size: 1.6em;
  font-weight: 700;
  line-height: 1.66;
  margin-bottom: 1.4em;
}
@media screen and (max-width: 767px) {
  .access_wrap .text h3 {
    font-size: 1.4em;
  }
}
.access_wrap .text strong {
  display: block;
  font-weight: 700;
  margin-bottom: 2em;
}
.access_wrap .text p {
  margin-bottom: 3em;
}
@media screen and (max-width: 767px) {
  .access_wrap .text p {
    margin-bottom: 2em;
  }
}
.access_wrap .text a {
  display: block;
  text-align: center;
  border: 2px solid #162789;
  background: url(../images/icon_arrow_blue.svg) no-repeat center right 32px;
}
.access_wrap .text a:hover {
  background-position: center right 20px;
}
.access_wrap .text a span {
  display: inline-block;
  position: relative;
  padding: 0 45px;
  height: 133px;
  line-height: 131px;
  background: url(../images/icon_map_blue.svg) no-repeat center left/30px auto;
  font-size: 1.066em;
  color: #162789;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .access_wrap .text a span {
    height: 70px;
    line-height: 68px;
  }
}
.access_wrap .gmap {
  width: 100%;
  margin-top: 3.666em;
}
@media screen and (max-width: 767px) {
  .access_wrap .gmap {
    margin-top: 2.5em;
  }
}

.map {
  position: relative;
  overflow: hidden;
}
.map::before {
  content: "";
  display: block;
  height: 390px;
}
@media screen and (max-width: 767px) {
  .map::before {
    height: 250px;
  }
}
.map > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.section_reserve .ttl_cmn_02::before {
  color: #ECF2FF;
}

.privacy_box {
  width: 780px;
  max-width: 100%;
  height: 250px;
  margin: 0 auto 2em;
  border: 1px solid #040000;
  padding: 30px;
  overflow-y: scroll;
}
@media screen and (max-width: 767px) {
  .privacy_box {
    padding: 20px 15px;
  }
}
.privacy_box h3 {
  font-weight: 700;
  color: #162789;
  font-size: 1.1em;
}
.privacy_box h4 {
  border-bottom: 1px solid #162789;
  color: #162789;
  font-weight: 700;
  margin-bottom: 5px;
  padding-bottom: 5px;
}
.privacy_box p {
  font-size: 0.866em;
  margin-bottom: 1em;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background: no-repeat center/cover;
  height: 450px;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 767px) {
  .hero {
    height: 300px;
  }
}
.hero .top_ttl {
  position: relative;
  font-size: 1.866em;
  text-align: center;
  color: #fff;
  font-weight: 700;
  z-index: 1;
}
.hero .top_ttl span {
  position: absolute;
  font-size: 4.46em;
  font-family: "Alata", sans-serif;
  color: #162789;
  opacity: 0.3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  font-weight: 400;
}

#list_breadcrumb {
  width: 1310px;
  max-width: 100%;
  text-align: right;
  padding: 0 15px;
}
@media screen and (max-width: 767px) {
  #list_breadcrumb {
    font-size: 0.85em;
  }
}
#list_breadcrumb > span {
  display: inline-block;
  padding: 0 10px;
}
@media screen and (max-width: 767px) {
  #list_breadcrumb > span {
    padding: 0 5px;
  }
}
#list_breadcrumb > span:last-child {
  padding-right: 0;
}

.sprit {
  display: flex;
  flex-wrap: wrap;
}
.sprit_menu {
  width: 125px;
}
@media screen and (max-width: 767px) {
  .sprit_menu {
    order: 2;
    width: 100%;
  }
}
.sprit_content {
  width: calc(100% - 125px);
  padding: 0 60px;
}
@media screen and (max-width: 767px) {
  .sprit_content {
    order: 1;
    width: 100%;
    padding: 0;
  }
}

.archive-pagenavi {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.archive-pagenavi .wp-pagenavi {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.archive-pagenavi .wp-pagenavi a, .archive-pagenavi .wp-pagenavi span {
  display: block;
  margin: 0;
  padding: 0;
  border: 1px solid #162789;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  font-family: "Alata", sans-serif;
  font-size: 1.2em;
  color: #162789;
}
.archive-pagenavi .wp-pagenavi a.current, .archive-pagenavi .wp-pagenavi a.page:hover, .archive-pagenavi .wp-pagenavi span.current, .archive-pagenavi .wp-pagenavi span.page:hover {
  background-color: #162789;
  color: #fff;
}
.archive-pagenavi .wp-pagenavi a.previouspostslink, .archive-pagenavi .wp-pagenavi a.nextpostslink, .archive-pagenavi .wp-pagenavi span.previouspostslink, .archive-pagenavi .wp-pagenavi span.nextpostslink {
  position: relative;
  border: 0 none;
  overflow: hidden;
  text-indent: 110%;
  white-space: nowrap;
  text-align: left;
}
.archive-pagenavi .wp-pagenavi a.previouspostslink::before, .archive-pagenavi .wp-pagenavi a.nextpostslink::before, .archive-pagenavi .wp-pagenavi span.previouspostslink::before, .archive-pagenavi .wp-pagenavi span.nextpostslink::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: url(../images/icon_arrow_blue.svg) no-repeat center/contain;
  top: calc(50% - 6px);
  left: calc(50% - 6px);
}
.archive-pagenavi .wp-pagenavi a.previouspostslink::before, .archive-pagenavi .wp-pagenavi span.previouspostslink::before {
  transform: rotateY(180deg);
}

.single_information {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-family: "Alata", "Noto Sans JP", "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
}
.single_information .cate {
  font-size: 0.8666em;
  padding: 0 8px;
  border: 1px solid #162789;
  color: #162789;
  height: 21px;
  line-height: 19px;
  margin-left: 10px;
}
.single_information h2 {
  width: 100%;
  font-size: 1.8666em;
  margin: 1em 0;
  line-height: 1.7;
}

.single_text {
  margin-bottom: 2.2em;
}
.single_text p {
  margin-bottom: 1em;
}

.ttl_cmn_01 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  color: #162789;
  font-size: 2.33em;
  padding-bottom: 25px;
  margin-bottom: 2.33em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .ttl_cmn_01 {
    font-size: 2em;
  }
}
.ttl_cmn_01::after {
  content: "";
  position: absolute;
  width: 35px;
  height: 3px;
  background-color: #162789;
  left: 0;
  bottom: 0;
}
.ttl_cmn_01 span {
  display: inline-block;
  margin-left: 25px;
  color: #040000;
  font-size: 0.457em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .ttl_cmn_01 span {
    font-size: 0.6em;
  }
}

.ttl_cmn_02 {
  display: block;
  position: relative;
  text-align: center;
  font-size: 1.866em;
  font-weight: 700;
  line-height: 1.5;
  padding: 70px 0 30px;
  margin-bottom: 1.6em;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .ttl_cmn_02 {
    padding-top: 35px;
  }
}
.ttl_cmn_02::before {
  content: attr(data-title);
  z-index: -1;
  position: absolute;
  font-size: 12.5rem;
  color: #F7F8F8;
  text-align: center;
  line-height: 0.8;
  font-weight: 400;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .ttl_cmn_02::before {
    font-size: 3em;
  }
}
.ttl_cmn_02::after {
  content: "";
  position: absolute;
  width: 35px;
  height: 3px;
  background-color: #162789;
  left: calc(50% - 17.5px);
  bottom: 0;
}
.ttl_cmn_02__image {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.333em;
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .ttl_cmn_02__image {
    padding-top: 50px;
  }
}
.ttl_cmn_02__image img {
  display: inline-block;
  margin-right: 5px;
}
.ttl_cmn_02__image::before {
  content: "";
  width: 472px;
  height: 126px;
  background: url(../images/logo_white.svg) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .ttl_cmn_02__image::before {
    width: 300px;
    height: 81px;
  }
}

.ttl_cmn_03 {
  text-align: center;
  position: relative;
  font-size: 1.86em;
  padding-bottom: 25px;
  margin-bottom: 1.4em;
  line-height: 1.5;
  font-family: "Alata", "Noto Sans JP", "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  font-weight: 700;
}
.ttl_cmn_03::after {
  content: "";
  position: absolute;
  width: 35px;
  height: 3px;
  background-color: #162789;
  left: 50%;
  bottom: 0;
  transform: translateY(-50%);
}
.ttl_cmn_03 b {
  display: inline-block;
  color: #162789;
  font-size: 1.6em;
  font-weight: normal;
}

.ttl_cmn_04 {
  text-align: center;
  font-family: "Alata", "Noto Sans JP", "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  font-size: 1.8666em;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 1.2em;
}
.ttl_cmn_04 span {
  display: block;
  font-size: 0.78em;
  color: #162789;
}

.ttl_side {
  display: block;
  font-family: "Alata", "Noto Sans JP", "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  font-size: 1.3333em;
  font-weight: 400;
  margin-bottom: 1.3em;
  color: #162789;
}

.ttl_border {
  display: block;
  font-size: 1.73333em;
  font-weight: 700;
  padding-bottom: 1em;
  margin-bottom: 1.3em;
  line-height: 1.5;
  border-bottom: 1px solid #040000;
}

.list_info {
  margin-bottom: 4em;
}
.list_info:last-child {
  margin-bottom: 0;
}
.list_info li {
  margin-bottom: 2.66em;
}
@media screen and (max-width: 767px) {
  .list_info li {
    padding-bottom: 1em;
    margin-bottom: 1.5em;
    border-bottom: 1px solid #040000;
  }
}
.list_info li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .list_info li:last-child {
    border-bottom: 0 none;
  }
}
.list_info li a {
  display: flex;
  flex-wrap: wrap;
}
.list_info li a:hover figure::after {
  opacity: 1;
}
.list_info li a:hover figure img {
  transform: scale(1.05);
}
.list_info li a:hover .text .title {
  color: #162789;
  text-decoration: underline;
}
.list_info li .image {
  width: 21%;
}
@media screen and (max-width: 767px) {
  .list_info li .image {
    width: 100%;
    margin-bottom: 1.5em;
  }
}
.list_info li .image figure {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 66.666%;
  overflow: hidden;
}
.list_info li .image figure::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(22, 39, 137, 0.5);
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.3s;
}
.list_info li .image figure img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
.list_info li .text {
  width: calc(79% - 40px);
  padding-left: 35px;
  margin-left: 40px;
  border-left: 1px solid #040000;
}
@media screen and (max-width: 767px) {
  .list_info li .text {
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0 none;
  }
}
.list_info li .text .date {
  display: inline-block;
}
.list_info li .text .cate {
  display: inline-block;
  padding: 0 10px;
  border: 1px solid #162789;
  font-size: 0.8em;
  height: 21px;
  line-height: 19px;
  color: #162789;
  font-weight: 700;
  margin-left: 15px;
}
.list_info li .text .title {
  display: block;
  font-size: 1.333em;
  font-weight: 700;
  margin: 5px 0;
  transition: 0.3s;
}

.list_works > li {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 5.3333em;
}
.list_works > li .image {
  position: relative;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .list_works > li .image {
    width: 100%;
    margin-bottom: 2.5em;
  }
}
.list_works > li .image::after {
  content: "";
  position: absolute;
  width: 56px;
  height: 56px;
  background: url(../images/works_arrow.svg) no-repeat center/contain;
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
}
@media screen and (max-width: 767px) {
  .list_works > li .image::after {
    width: 40px;
    height: 40px;
    top: calc(100% - 20px);
    right: auto;
    left: calc(50% - 20px);
    transform: rotate(90deg);
  }
}
.list_works > li .image .works_slider {
  margin: 0;
}
.list_works > li .image .works_slider figure {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 66.6666%;
}
.list_works > li .image .works_slider figure img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
.list_works > li .text {
  width: 50%;
  padding-left: 70px;
}
@media screen and (max-width: 767px) {
  .list_works > li .text {
    width: 100%;
    padding: 0;
  }
}
.list_works > li .text .works_slider_pgn {
  margin-bottom: 2em;
}
.list_works > li .text .works_slider_pgn .slick-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  position: static;
}
@media screen and (max-width: 767px) {
  .list_works > li .text .works_slider_pgn .slick-dots {
    gap: 8px;
  }
}
.list_works > li .text .works_slider_pgn .slick-dots li {
  position: relative;
  width: calc(20% - 12px);
  height: 0;
  padding-top: calc(20% - 12px);
  margin: 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .list_works > li .text .works_slider_pgn .slick-dots li {
    width: calc(25% - 6px);
    padding-top: calc(25% - 6px);
  }
}
.list_works > li .text .works_slider_pgn .slick-dots li::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  left: 0;
  top: 0;
  transform: 0.3s;
}
.list_works > li .text .works_slider_pgn .slick-dots li.slick-active::after {
  border-color: #162789;
}
.list_works > li .text .works_slider_pgn .slick-dots li img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
}
.list_works > li .text .cate {
  display: inline-block;
  padding: 0 5px;
  border: 1px solid #162789;
  color: #162789;
  font-family: "Alata", sans-serif;
  height: 28px;
  line-height: 26px;
}
.list_works > li .text .city {
  display: inline-block;
  margin-left: 10px;
}
.list_works > li .text p {
  margin-top: 1.666em;
}

.list_sidenav {
  margin-bottom: 4em;
}
.list_sidenav li {
  margin-bottom: 1em;
}
.list_sidenav li:last-child {
  margin-bottom: 0;
}
.list_sidenav li a {
  display: block;
  font-family: "Alata", sans-serif;
  font-size: 1.0666em;
  padding-left: 30px;
  background: url(../images/icon_arrow_menu.svg) no-repeat center left;
}
.list_sidenav li a:hover {
  color: #162789;
  background-position: center left 10px;
}

.list_pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: 1px solid #040000;
  border-bottom: 1px solid #040000;
  gap: 20px;
  padding: 1.333em 0;
  margin-bottom: 6.666em;
}
.list_pagination.noprev {
  justify-content: flex-end;
}
.list_pagination li {
  max-width: calc(50% - 10px);
}
.list_pagination li a {
  display: block;
  position: relative;
  padding-left: 25px;
}
.list_pagination li a::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-left: 1px solid #040000;
  border-bottom: 1px solid #040000;
  left: 3px;
  top: calc(50% - 5px);
  transform: rotate(45deg);
}
.list_pagination li a:hover {
  text-decoration: underline;
}
.list_pagination li.next a {
  padding: 0 25px 0 0;
}
.list_pagination li.next a::before {
  left: auto;
  right: 3px;
  transform: rotate(-135deg);
}

.dlist_faq {
  margin-bottom: 2.666em;
}
.dlist_faq:last-child {
  margin-bottom: 0;
}
.dlist_faq dt {
  display: flex;
  cursor: pointer;
}
.dlist_faq dt::before {
  content: "Q";
  display: block;
  width: 80px;
  height: 80px;
  font-family: "Alata", sans-serif;
  text-align: center;
  line-height: 78px;
  font-size: 2em;
  color: #fff;
  background-color: #162789;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .dlist_faq dt::before {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: auto;
    line-height: normal;
    font-size: 1.5em;
  }
}
.dlist_faq dt p {
  position: relative;
  font-size: 1.3333em;
  font-weight: 700;
  padding: 20px 75px 20px 25px;
  background-color: #F5F5F5;
  width: 100%;
  transition: background-color 0.3s;
}
@media screen and (max-width: 767px) {
  .dlist_faq dt p {
    padding: 10px 35px 10px 15px;
    font-size: 1.1em;
  }
}
.dlist_faq dt p::before, .dlist_faq dt p::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 3px;
  background-color: #162789;
  right: 30px;
  top: 38px;
}
@media screen and (max-width: 767px) {
  .dlist_faq dt p::before, .dlist_faq dt p::after {
    right: 10px;
    top: 23px;
  }
}
.dlist_faq dt p::after {
  transform: rotate(90deg);
  transform: 0.3s;
}
.dlist_faq dt.is_open p {
  background-color: #fff;
}
.dlist_faq dt.is_open p::after {
  transform: rotate(180deg);
}
.dlist_faq dd {
  display: none;
  padding: 20px 75px 20px 20px;
  background-color: #F5F5F5;
  margin-left: 80px;
}
@media screen and (max-width: 767px) {
  .dlist_faq dd {
    margin-left: 0;
    padding: 0;
  }
}
.dlist_faq dd p {
  position: relative;
  display: flex;
}
@media screen and (max-width: 767px) {
  .dlist_faq dd p {
    padding: 15px 15px 15px 0;
  }
}
.dlist_faq dd p::before {
  content: "A";
  display: block;
  width: 60px;
  height: 60px;
  font-family: "Alata", sans-serif;
  text-align: center;
  line-height: 58px;
  font-size: 1.466em;
  background-color: #fff;
  flex-shrink: 0;
  margin-right: 15px;
}
@media screen and (max-width: 767px) {
  .dlist_faq dd p::before {
    width: 40px;
    height: auto;
    line-height: 50px;
    margin-top: -15px;
    margin-bottom: -15px;
  }
}

.btn_cmn_01 {
  display: block;
  position: relative;
  font-size: 1.2em;
  font-weight: 700;
  text-align: center;
  width: 400px;
  max-width: 100%;
  background-color: #162789;
  color: #fff;
  margin: 0 auto 2em;
}
.btn_cmn_01:last-child {
  margin-bottom: 0;
}
.btn_cmn_01::before {
  content: "";
  position: absolute;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border: 1px solid #fff;
  top: 5px;
  left: 5px;
  opacity: 0;
  transform: scale(0.95);
  transition: 0.3s;
}
.btn_cmn_01::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: url(../images/icon_arrow_white.svg) no-repeat center/contain;
  right: 25px;
  top: calc(50% - 5px);
  transition: 0.3s;
}
.btn_cmn_01 span {
  display: inline-block;
  height: 70px;
  line-height: 68px;
  padding-left: 40px;
  background: url(../images/icon_map.svg) no-repeat center left;
}
@media screen and (max-width: 767px) {
  .btn_cmn_01 span {
    height: 60px;
    line-height: 58px;
  }
}
.btn_cmn_01 span.no_icon {
  padding: 0;
  background: none;
}
.btn_cmn_01:hover::before {
  opacity: 1;
  transform: scale(1);
}
.btn_cmn_01:hover::after {
  right: 15px;
}

.btn_more {
  display: inline-block;
  font-size: 1.2em;
  color: #162789;
  font-family: "Alata", "Noto Sans JP", "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  line-height: 1.5;
  padding-right: 25px;
  background: url(../images/icon_arrow_black.svg) no-repeat center right/12px auto;
  border-bottom: 2px solid transparent;
}
.btn_more:hover {
  border-bottom: 2px solid #162789;
}

input[type=submit].btn_submit {
  -webkit-appearance: none;
  border-radius: 0;
  outline: none;
  border-radius: 0;
  border: 0 none;
  cursor: pointer;
  display: block;
  width: 400px;
  max-width: 100%;
  height: 80px;
  line-height: 78px;
  color: #fff;
  background-color: #162789;
  border: 1px solid #162789;
  margin: auto;
  font-size: 1.2em;
  letter-spacing: 1px;
  font-weight: 700;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  input[type=submit].btn_submit {
    height: 60px;
    line-height: 58px;
  }
}
input[type=submit].btn_submit:hover {
  background-color: #fff;
  color: #162789;
}

.table_form {
  width: 100%;
  margin-bottom: 3em;
}
@media screen and (max-width: 767px) {
  .table_form {
    display: block;
  }
  .table_form thead, .table_form tbody, .table_form tr, .table_form th, .table_form td {
    display: block;
    width: 100%;
  }
}
.table_form th {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 250px;
  font-size: 1.2em;
  padding: 20px 0;
}
@media screen and (max-width: 767px) {
  .table_form th {
    font-size: 1.1em;
    width: 100%;
    padding: 15px 0 0;
    display: block;
  }
}
.table_form th.req::after {
  content: "必須";
  display: inline-block;
  width: 64px;
  height: 23px;
  line-height: 21px;
  text-align: center;
  color: #fff;
  background-color: #040000;
  font-size: 0.9em;
}
@media screen and (max-width: 767px) {
  .table_form th.req::after {
    margin-left: 15px;
  }
}
.table_form td {
  padding: 12px 0 12px 7%;
}
@media screen and (max-width: 767px) {
  .table_form td {
    padding-left: 0;
  }
}

.table_form input[type=text],
.table_form input[type=email],
.table_form input[type=tel],
.table_form select,
.table_form textarea {
  -webkit-appearance: none;
  outline: none;
  border: 0 none;
  border-radius: 0;
  box-shadow: 0 0 0 transparent;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  margin: 0;
  padding: 15px;
  border: 1px solid #040000;
  width: 100%;
}
.table_form input[type=date] {
  border: 1px solid #040000;
  border-radius: 0;
  font-size: 1.6rem;
  font-family: "Alata", "Noto Sans JP", "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  padding: 15px;
}
.table_form select {
  width: auto;
  padding-right: 50px;
  font-family: "Alata", "Noto Sans JP", "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  background: url(../images/icon_select.svg) no-repeat center right 10px;
}
.table_form .your-name-first,
.table_form .your-name-last,
.table_form .your-furigana-first,
.table_form .your-furigana-last {
  display: inline-block;
  max-width: 300px;
}
@media screen and (max-width: 767px) {
  .table_form .your-name-first,
.table_form .your-name-last,
.table_form .your-furigana-first,
.table_form .your-furigana-last {
    width: 45%;
  }
}
.table_form .your-name-first,
.table_form .your-furigana-first {
  margin-right: 40px;
}
@media screen and (max-width: 767px) {
  .table_form .your-name-first,
.table_form .your-furigana-first {
    margin-right: 5%;
  }
}
.table_form .tel01,
.table_form .tel02,
.table_form .tel03 {
  display: inline-block;
  max-width: 26%;
  margin: 0 10px;
}
@media screen and (max-width: 767px) {
  .table_form .tel01,
.table_form .tel02,
.table_form .tel03 {
    width: 30%;
    margin: 0 5px;
  }
}
.table_form .tel01:first-child,
.table_form .tel02:first-child,
.table_form .tel03:first-child {
  margin-left: 0;
}
.table_form .tel01:last-child,
.table_form .tel02:last-child,
.table_form .tel03:last-child {
  margin-right: 0;
}
.table_form .date {
  display: block;
  width: 50%;
  margin-bottom: 1em;
}
.table_form .zip {
  display: inline-block;
  width: 200px;
  margin-left: 10px;
}
.table_form .pref {
  display: block;
  width: 200px;
  margin-top: 1em;
}
.table_form .pref select {
  width: 100%;
}
.table_form .city,
.table_form .addr {
  display: block;
  margin-top: 1em;
}
.table_form .schedule,
.table_form .showroom,
.table_form .season {
  display: block;
  padding: 15px 0;
}
.table_form .schedule .wpcf7-list-item,
.table_form .showroom .wpcf7-list-item,
.table_form .season .wpcf7-list-item {
  display: block;
  margin: 0 0 0.5em;
}
.table_form .schedule .wpcf7-list-item.last,
.table_form .showroom .wpcf7-list-item.last,
.table_form .season .wpcf7-list-item.last {
  margin: 0;
}
.table_form .schedule label,
.table_form .showroom label,
.table_form .season label {
  display: inline-block;
  cursor: pointer;
}
.table_form .schedule label input,
.table_form .showroom label input,
.table_form .season label input {
  display: none;
}
.table_form .schedule label input:checked + span::after,
.table_form .showroom label input:checked + span::after,
.table_form .season label input:checked + span::after {
  transform: scale(1);
}
.table_form .schedule label span,
.table_form .showroom label span,
.table_form .season label span {
  display: block;
  position: relative;
  padding-left: 40px;
}
.table_form .schedule label span::before,
.table_form .showroom label span::before,
.table_form .season label span::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border: 1px solid #040000;
  border-radius: 50%;
  left: 0;
  top: calc(50% - 11px);
  transition: 0.3s;
}
.table_form .schedule label span::after,
.table_form .showroom label span::after,
.table_form .season label span::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: #040000;
  border-radius: 50%;
  transform: scale(0);
  left: 5px;
  top: calc(50% - 6px);
  transition: 0.3s;
}

.checks {
  text-align: center;
  margin-bottom: 5em;
}
.checks p {
  margin-bottom: 1.5em;
}
.checks small {
  display: block;
  font-size: 0.93em;
}

.doui,
.trigger {
  display: block;
  text-align: center;
  margin-bottom: 2em;
}
.doui label,
.trigger label {
  display: block;
  cursor: pointer;
}
.doui label input,
.trigger label input {
  display: none;
}
.doui label input:checked + span::before,
.trigger label input:checked + span::before {
  background-color: #162789;
}
.doui label input:checked + span::after,
.trigger label input:checked + span::after {
  transform: rotate(-45deg) scale(1);
}
.doui label span,
.trigger label span {
  display: block;
  position: relative;
  padding-left: 40px;
}
.doui label span::before,
.trigger label span::before {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  border: 1px solid #040000;
  left: 0;
  top: calc(50% - 13px);
  transition: 0.3s;
}
.doui label span::after,
.trigger label span::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 8px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid white;
  transform: scale(0);
  left: 5px;
  top: calc(50% - 6px);
  transition: 0.3s;
}

.trigger {
  text-align: left;
}
.trigger .wpcf7-list-item {
  display: block;
  margin: 0 0 0.5em;
}
.trigger .wpcf7-list-item.last {
  margin: 0;
}
.trigger .wpcf7-list-item label {
  display: inline-block;
}

.m0 {
  margin-bottom: 0;
}

.read {
  text-align: center;
  margin-bottom: 2.5em;
  line-height: 2.5;
}

.flex_cmn {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  margin: -15px 40px;
  gap: 60px 0;
}
@media screen and (max-width: 767px) {
  .flex_cmn {
    margin: -8px 40px;
    gap: 40px 0;
  }
}
.flex_cmn.ai_center {
  align-items: center;
}
.flex_cmn.jc_center {
  justify-content: center;
}
.flex_cmn.between {
  gap: 30px 0;
}
.flex_cmn .col {
  box-sizing: border-box;
  position: relative;
  padding: 0 15px;
}
.flex_cmn .col.col_l_2 {
  width: 16.6666%;
}
.flex_cmn .col.col-l_20p {
  width: 20%;
}
.flex_cmn .col.col_l_3 {
  width: 25%;
}
.flex_cmn .col.col_l_4 {
  width: 33.33333%;
}
.flex_cmn .col.col_l_5 {
  width: 41.66666%;
}
.flex_cmn .col.col_l_6 {
  width: 50%;
}
.flex_cmn .col.col_l_7 {
  width: 58.33333%;
}
.flex_cmn .col.col_l_8 {
  width: 66.66666%;
}
.flex_cmn .col.col_l_9 {
  width: 75%;
}
.flex_cmn .col.col_l_10 {
  width: 83.33333%;
}
.flex_cmn .col.col_l_12 {
  width: 100%;
}
.flex_cmn .col.order_l_1 {
  order: 1;
}
.flex_cmn .col.order_l_2 {
  order: 2;
}
.flex_cmn .col.order_l_3 {
  order: 3;
}
.flex_cmn .col.order_l_4 {
  order: 4;
}
.flex_cmn .col.order_l_5 {
  order: 5;
}
.flex_cmn .col.order_l_6 {
  order: 6;
}
@media screen and (max-width: 1200px) {
  .flex_cmn .col.col_m_2 {
    width: 16.6666%;
  }
  .flex_cmn .col.col_m_20p {
    width: 20%;
  }
  .flex_cmn .col.col_m_3 {
    width: 25%;
  }
  .flex_cmn .col.col_m_4 {
    width: 33.33333%;
  }
  .flex_cmn .col.col_m_5 {
    width: 41.66666%;
  }
  .flex_cmn .col.col_m_6 {
    width: 50%;
  }
  .flex_cmn .col.col_m_7 {
    width: 58.33333%;
  }
  .flex_cmn .col.col_m_8 {
    width: 66.66666%;
  }
  .flex_cmn .col.col_m_9 {
    width: 75%;
  }
  .flex_cmn .col.col_m_10 {
    width: 83.33333%;
  }
  .flex_cmn .col.col_m_12 {
    width: 100%;
  }
  .flex_cmn .col.order_m_1 {
    order: 1;
  }
  .flex_cmn .col.order_m_2 {
    order: 2;
  }
  .flex_cmn .col.order_m_3 {
    order: 3;
  }
  .flex_cmn .col.order_m_4 {
    order: 4;
  }
  .flex_cmn .col.order_m_5 {
    order: 5;
  }
  .flex_cmn .col.order_m_6 {
    order: 6;
  }
}
@media screen and (max-width: 767px) {
  .flex_cmn .col {
    padding: 8px 0;
  }
  .flex_cmn .col.col_s_12 {
    width: 100%;
  }
  .flex_cmn .col.col_s_10 {
    width: 83.33333%;
  }
  .flex_cmn .col.col_s_9 {
    width: 75%;
  }
  .flex_cmn .col.col_s_8 {
    width: 66.66666%;
  }
  .flex_cmn .col.col_s_7 {
    width: 58.33333%;
  }
  .flex_cmn .col.col_s_6 {
    width: 50%;
  }
  .flex_cmn .col.col_s_5 {
    width: 41.66666%;
  }
  .flex_cmn .col.col_s_4 {
    width: 33.33333%;
  }
  .flex_cmn .col.col_s_3 {
    width: 25%;
  }
  .flex_cmn .col.col_s_20p {
    width: 20%;
  }
  .flex_cmn .col.col_s_2 {
    width: 16.6666%;
  }
  .flex_cmn .col.order_s_1 {
    order: 1;
  }
  .flex_cmn .col.order_s_2 {
    order: 2;
  }
  .flex_cmn .col.order_s_3 {
    order: 3;
  }
  .flex_cmn .col.order_s_4 {
    order: 4;
  }
  .flex_cmn .col.order_s_5 {
    order: 5;
  }
  .flex_cmn .col.order_s_6 {
    order: 6;
  }
}

.object_fit,
.object_fit_abs,
.object_fit_contain,
.object_fit_abs_contain {
  display: block;
  overflow: hidden;
}
.object_fit .ofi,
.object_fit_abs .ofi,
.object_fit_contain .ofi,
.object_fit_abs_contain .ofi {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s ease;
}

.object_fit_contain .ofi,
.object_fit_abs_contain .ofi {
  -o-object-fit: contain;
     object-fit: contain;
}

.object_fit_abs,
.object_fit_abs_contain {
  position: relative;
  height: 0;
}
.object_fit_abs .ofi,
.object_fit_abs_contain .ofi {
  position: absolute;
  top: 0;
  left: 0;
}

.obj_fit,
.obj_fit_abs,
.obj_fit_contain,
.obj_fit_abs_contain {
  display: block;
  overflow: hidden;
}
.obj_fit .ofi,
.obj_fit_abs .ofi,
.obj_fit_contain .ofi,
.obj_fit_abs_contain .ofi {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s ease;
}
.obj_fit:hover .ofi,
.obj_fit_abs:hover .ofi,
.obj_fit_contain:hover .ofi,
.obj_fit_abs_contain:hover .ofi {
  transform: scale(1.06);
}

.obj_fit_contain .ofi,
.obj_fit_abs_contain .ofi {
  -o-object-fit: contain;
     object-fit: contain;
}

.obj_fit_abs,
.obj_fit_abs_contain {
  position: relative;
  height: 0;
}
.obj_fit_abs .ofi,
.obj_fit_abs_contain .ofi {
  position: absolute;
  top: 0;
  left: 0;
}