@charset "UTF-8";
body {
  font-family: "Noto Sans JP", "Hiragino Mincho ProN", "YuMincho", "Yu Mincho", sans-serif;
  font-weight: 350;
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.2em;
  line-height: 1.7em;
  color: #333333;
  width: 100%;
  height: 100%;
  margin: 0;
}

a {
  display: inline-block;
  color: #333333;
  text-decoration: none !important;
  transition: all 0.3s;
  letter-spacing: 0.2em;
  line-height: 1;
}
a:hover, a a:focus {
  color: #183a84;
  opacity: 0.5;
  transition: all 0.3s;
}

ol, ul, li {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
}

dl, dt, dd {
  list-style: none;
  padding: 0;
  margin: 0;
}

dl {
  width: 100%;
  padding: 8% 0;
}
dl div {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  border-top: solid 1px #333333;
  padding: 5% 0;
}
dl div:last-of-type {
  border-bottom: solid 1px #333333;
}
dl div dt {
  width: 97%;
  padding: 0 0 0 3%;
  border-left: solid 1px #333333;
}
dl div dd {
  width: 100%;
  padding: 3% 0 0 0;
}
dl div dd:nth-of-type(2) {
  padding: 1% 0 0 0;
}
dl div div {
  border: none;
  border-bottom: none !important;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}

h1, h2 {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  margin: 0;
}

h2 {
  font-size: 1.8em;
  padding: 3% 0;
  letter-spacing: 0.18em;
}

h3, h4, h5, h6 {
  font-weight: 400;
  letter-spacing: 0.15em;
  margin: 0;
}

h3 {
  font-size: 1.2em;
  line-height: 1em;
  color: #183a84;
  padding: 2% 0 6% 0;
}

h4 {
  font-size: 1.1em;
  line-height: 1em;
}

h6 {
  font-size: 1em;
  font-weight: 500;
}

p {
  margin: 0;
}

.center {
  text-align: center;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
  color: inherit;
  font-size: 1.1em;
  letter-spacing: 0.2em;
}
button a {
  padding: 1.4em 1em;
  background-color: #183a84;
  border-radius: 5px;
  color: #ffffff;
  font-weight: 350;
}
button a:hover, button a :focus {
  color: #ffffff;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
main {
  width: 100%;
}

.mainVisual {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(24, 58, 132, 0.7);
  color: #fff;
  /*Scrollテキストの描写*/
  /* 丸の描写 */
  /*下からの距離が変化して丸の全体が上から下に動く*/
  /*上から下にかけて丸が透過→不透明→透過する*/
  /* 線の描写 */
}
.mainVisual::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  /*背景画像設定*/
  background-image: url(../img/img_04.jpg);
  background-size: cover;
}
.mainVisual .title {
  position: fixed;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 84%;
  padding: 0 8%;
}
.mainVisual .title h1 {
  font-size: 2.8em;
  letter-spacing: 0.1em;
  line-height: 1em;
}
.mainVisual .title h3 {
  color: #ffffff;
  padding: 7% 0 0 0;
  letter-spacing: 0.18em;
  line-height: 1.4em;
  max-width: 980px;
  display: inline-block;
  font-weight: 350;
}
.mainVisual .scrolldown2 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  bottom: 50px;
  left: 50%;
}
.mainVisual .scrolldown2 span {
  /*描画位置*/
  position: absolute;
  left: 10px;
  bottom: 5px;
  /*テキストの形状*/
  color: #eee;
  font-size: 0.9em;
  /*縦書き設定*/
  writing-mode: vertical-rl;
}
.mainVisual .scrolldown2:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: -4px;
  /*丸の形状*/
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #eee;
  /*丸の動き1.6秒かけて透過し、永遠にループ*/
  animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}
@keyframes circlemove {
  0% {
    bottom: 45px;
  }
  100% {
    bottom: -5px;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
.mainVisual .scrolldown2:after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: 0;
  /*線の形状*/
  width: 2px;
  height: 70px;
  background: #eee;
}

/*========= Loading ===============*/
#loading {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: #183a84;
  text-align: center;
  color: #ffffff;
}

#loadingLogo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#loadingLogo svg {
  width: 40vw;
  min-width: 460px;
}

/* SVGアニメーション */
#mask path {
  fill-opacity: 0;
  transition: fill-opacity 0.5s;
  fill: none;
  stroke: #fff;
}

#mask.done path {
  fill: #fff;
  fill-opacity: 1;
  stroke: none;
}

/* 画面遷移 */
.loadingBg {
  display: none;
}

body.appear .loadingBg {
  display: block;
  content: "";
  position: fixed;
  z-index: 99;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  transform: scaleX(0);
  background-color: #183a84;
  animation: slideAnime 1.2s ease-in-out forwards;
}

@keyframes slideAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
main {
  opacity: 0;
}

body.appear main {
  animation: appearAnime 1s 0.8s forwards;
  opacity: 0;
}

@keyframes appearAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
header {
  position: fixed; /*固定する*/
  top: 0;
  left: 0;
  width: 100%;
  height: 12vh;
  max-height: 90px;
  padding: 0 8%;
  text-align: center;
  color: #fff;
  background: white;
  box-sizing: border-box;
  transition: 0.5s;
  box-shadow: 0px 5px 5px -1px rgba(51, 51, 51, 0.1);
  z-index: 999;
}

#h_menu {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  width: auto;
  height: 60%;
  padding: 0;
  line-height: 0;
  margin: 0;
}

header h1 a {
  width: 100%;
  height: 100%;
  line-height: 0;
}
header h1 a:hover, header h1 a :focus, header h1 a :active {
  opacity: 1;
}

header h1 a img {
  width: auto;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s;
}

#global-navi {
  width: 90%;
}

#h_menu nav ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}

#h_menu nav ul li {
  width: auto;
  display: inline-block;
  padding: 0 1em;
}

#h_menu nav ul li:last-child {
  padding: 0 0 0 0.5em;
}

/*スマホ画面でハンバーガーメニューの形にする*/
@media screen and (max-width: 1199px) {
  header {
    height: 9vh;
    transition: 0.5s;
  }
  header.scroll-nav {
    background-color: transparent;
  }
  header h1 {
    padding: 0;
    width: auto;
  }
  .scroll-nav .sp {
    display: none !important;
  }
  .scroll-nav .sp_scroll {
    display: inline-block;
  }
  #h_menu nav {
    position: fixed;
    top: 0;
    right: -220px;
    width: 220px;
    height: 100%;
    padding-top: 9vh;
    background-color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    box-sizing: border-box;
    transition: all 0.5s;
    z-index: 2;
  }
  #h_menu nav.open {
    right: 0;
  }
  #h_menu nav ul {
    flex-direction: column;
    justify-content: center;
    padding: 10% 0 0 0;
    text-align: left;
  }
  #h_menu nav ul li {
    width: 80%;
    display: block;
    padding: 5% 10%;
  }
  #h_menu nav ul li:last-child {
    padding: 5% 10%;
  }
  #h_menu nav ul li a {
    text-decoration: none;
  }
  #h_menu .btn-gnavi {
    position: relative;
    cursor: pointer;
    width: 25px;
    height: 50px;
    border-radius: 5px;
    z-index: 999;
  }
  #h_menu .btn-gnavi span {
    display: inline-block;
    transition: all 0.4s; /*アニメーションの設定*/
    position: absolute;
    left: 0;
    height: 3px;
    border-radius: 1px;
    background: #333333;
  }
  #h_menu .btn-gnavi span:nth-of-type(1) {
    top: 15px;
    width: 100%;
  }
  #h_menu .btn-gnavi span:nth-of-type(2) {
    top: 23px;
    width: 80%;
  }
  #h_menu .btn-gnavi span:nth-of-type(3) {
    top: 31px;
    width: 45%;
  }
  /*activeクラスが付与されると線が回転して×になる*/
  #h_menu .btn-gnavi.open span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-135deg);
    width: 100%;
  }
  #h_menu .btn-gnavi.open span:nth-of-type(2) {
    opacity: 0;
  }
  #h_menu .btn-gnavi.open span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(135deg);
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1119px) {
  #h_menu nav {
    right: -320px;
    width: 320px;
  }
}
article {
  width: 100%;
  background-color: #ffffff;
}

section {
  position: relative;
  z-index: 1;
  width: 84%;
  max-width: 1150px;
  padding: 12% 8%;
  margin: 0 auto;
  background-color: #ffffff;
}
section .title {
  width: 100%;
  text-align: center;
}
section .title p {
  padding: 5% 0;
}
section .con_980 {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

article:nth-child(even) section {
  background-color: #183a84;
  color: #ffffff;
}
article:nth-child(even) section h3 {
  color: #ffffff;
}
article:nth-child(even) section dl div {
  border-top: solid 1px #ffffff;
}
article:nth-child(even) section dl div:last-of-type {
  border-bottom: solid 1px #ffffff;
}
article:nth-child(even) section dl div dt {
  border-left: solid 1px #ffffff;
}
article:nth-of-type(2) section {
  width: 100%;
  padding: 12% 0;
}
article:nth-of-type(2) section .title {
  width: 84%;
  padding: 0 8%;
}
article:nth-of-type(4) section {
  background: url(../img/img_05.jpg) center center/cover no-repeat;
}
article:nth-of-type(4) section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(24, 58, 132, 0.85);
  width: 100%;
  height: 100%;
  z-index: -1;
}

.about_ex {
  padding: 6% 0;
}

.slider {
  padding: 8% 0;
}

.slider .slick-slide {
  height: 50vw;
  max-height: 250px;
  margin: 0 10px; /*スライド左右の余白調整*/
}

.slider img {
  width: 100%; /*スライダー内の画像を横幅100%に*/
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#map div {
  width: 100%;
}
#map div p {
  padding: 3% 0;
}
#map div p span {
  font-size: 1em;
  color: #333333;
  padding: 0 0.4em 0 0;
}
#map iframe {
  width: 100%;
  height: 90%;
  padding: 5% 0;
}

#call_wrap {
  width: 90%;
  color: #ffffff;
  background-color: #183a84;
  border-radius: 5px;
  text-align: center;
  padding: 8% 5%;
}
#call_wrap a {
  font-size: 2em;
  font-weight: 700;
  color: #ffffff;
  margin: 5% 0;
}

input,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #ededed;
  border: none;
  border-radius: 0;
  outline: none;
  font-size: 16px;
  width: 94%;
  padding: 4% 3%;
}

textarea {
  height: 20vh;
}

form {
  width: 100%;
}
form #error {
  color: #e60012;
  display: inline-block;
  padding: 5% 0 0 0;
}
form dt span {
  color: #e60012;
  font-size: 10px;
  padding: 0 0.5em 0 0;
}
form .ag_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: none !important;
  padding: 8% 0;
}
form .ag_wrap #agree {
  width: auto;
  -webkit-appearance: auto;
  -moz-appearance: auto;
       appearance: auto;
  margin: 0 0.5em 0 0;
}

/* 送信ボタン */
.submit-btn {
  /* buttonタグのリセットCSS */
  background-color: #183a84;
  border: none;
  border-radius: 5px;
  color: #ffffff;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: flex;
  justify-content: center;
  min-width: 180px;
  padding: 1.4em 1em;
  margin: 0 auto;
  letter-spacing: 0.35em;
  transition: all 0.3s;
}
.submit-btn:hover, .submit-btn :focus {
  transition: all 0.3s;
  opacity: 0.5;
}

.submit-btn[disabled] {
  background-color: #ededed;
  color: #333333;
  cursor: not-allowed; /* クリック不可のカーソルを表示 */
  transition: all 0.3s;
}
.submit-btn[disabled]:hover, .submit-btn[disabled] :focus {
  opacity: 1;
}

.thanks {
  color: #183a84;
  padding: 15% 0 1em 0;
  font-family: "Noto Serif JP", serif;
  font-size: 1.6em;
  letter-spacing: 0.18em;
  line-height: 1.4em;
  display: inline-block;
}

footer {
  width: 84%;
  text-align: center;
  font-size: 0.8em;
  line-height: 1.5em;
  background-color: #ffffff;
  padding: 5% 8%;
}

#pp {
  width: 100%;
}
#pp h6 {
  padding: 8% 0 0 0;
}
#pp p {
  padding: 2% 0 0 0;
}
#pp a {
  color: #ffffff;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
@media screen and (min-width: 768px) {
  body {
    font-size: 13.5px;
  }
  dl {
    padding: 5% 0;
  }
  dl div {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 1% 0;
  }
  dl div dt {
    width: 27%;
    padding: 2% 3% 2% 0;
    border-left: none;
  }
  dl div dd {
    width: 66%;
    padding: 2% 0 2% 3%;
    border-left: solid 1px #333333;
  }
  dl div dd:nth-of-type(2) {
    padding: 0;
  }
  dl div div {
    width: 66%;
    padding: 2% 0 2% 3%;
    border-left: solid 1px #333333;
  }
  dl div div dd {
    width: 100%;
    padding: 0;
    border-left: none !important;
  }
  h2 {
    font-size: 2em;
  }
  h3 {
    padding: 0 0 6% 0;
  }
  section .title p {
    padding: 3% 0;
  }
  article:nth-child(even) section dl div {
    border-top: solid 1px #ffffff;
  }
  article:nth-child(even) section dl div:last-of-type {
    border-bottom: solid 1px #ffffff;
  }
  article:nth-child(even) section dl div dt {
    border-left: none;
  }
  article:nth-child(even) section dl div dd {
    border-left: solid 1px #ffffff;
  }
  header h1 a:hover, header h1 a :focus, header h1 a :active {
    opacity: 0.5;
  }
  .mainVisual .title h1 {
    font-size: 4em;
    letter-spacing: 0.18em;
  }
  .mainVisual .title h3 {
    padding: 4% 0 0 0;
    line-height: 1.5em;
  }
  .slider {
    padding: 4% 0;
  }
  .slider .slick-slide {
    height: 28vw;
  }
  #call_wrap {
    padding: 5% 5%;
    margin: 5% 0 0 0;
  }
  #call_wrap a {
    font-size: 2.6em;
    margin: 3% 0;
  }
  form dt span {
    font-size: 13px;
  }
  form .ag_wrap {
    padding: 8% 0 4% 0;
  }
  #map div {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  #map div p {
    padding: 0 0 0 2%;
  }
  #map iframe {
    height: 50vw;
  }
  #pp h6 {
    padding: 5% 0 0 0;
  }
  #pp p {
    padding: 1% 0 0 0;
  }
  footer {
    padding: 8% 8%;
  }
}
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
@media screen and (min-width: 1200px) {
  body {
    font-size: 15px;
  }
  section {
    width: 100%;
    padding: 10% 0;
  }
  article:nth-child(even) section {
    padding: 8% 0;
  }
  article:nth-of-type(2) section {
    padding: 8% 0 5% 0;
  }
  article:nth-of-type(2) section .title {
    width: 100%;
    padding: 0;
  }
  article:nth-of-type(4) section {
    background: url(../img/img_05.jpg) center center/cover no-repeat fixed;
  }
  .mainVisual .title h1 {
    font-size: 4.2em;
    letter-spacing: 0.18em;
  }
  .about_ex {
    padding: 3% 0;
  }
  #map iframe {
    height: 35vw;
    max-height: 500px;
  }
}/*# sourceMappingURL=common.css.map */