@charset "UTF-8";
/* CSS Document */
body {
  font-family: "Arial", "Hiragino Sans", "ヒラギノ角ゴシック", "BIZ UDGothic", YuGothic, "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  font-size: 100%;
  line-height: 1.5;
  color: #444;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-all;
}
h2 {
  position: relative;
  width: auto;
  display: block;
  padding-bottom: 8px;
  margin: 40px 0px 24px 0px;
}
h2:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 70px;
  height: inherit;
  border-bottom: 3px solid #3874CA;
}
h2::first-letter {
  color: #3874CA;
}
h3 {
  margin: 32px 0px 24px 0px;
  border-left: 3px solid #d46657;
  padding: 4px 12px;
}
h4 {
  margin: 24px 0px 16px 0px;
  border-left: 2px solid #ddd;
  padding: 4px 12px;
}
p {
  margin-bottom: 16px;
  line-height: 160%;
}
strong {
  color: #5EAB51;
}
hr {
  margin: 72px 0 24px 0;
  border: dotted 1px #cccccc
}


@media (max-width: 575.98px) {
    
    span.sub-t{
            font-size: 0.8rem;
    }
    
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 1.8rem;
  }
  h2::first-letter {
    font-size: 2.0rem;
  }
  h3 {
    font-size: 1.6rem;
  }
  h4 {
    font-size: 1.4rem;
  }
    p {
    font-size: 1.3rem;
}
    
}
/* 小デバイス（横向きモバイル, 576px 以上）*/
@media (min-width: 576px) and (max-width: 767.98px) {
    
    
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 1.8rem;
  }
  h2::first-letter {
    font-size: 2.0rem;
  }
  h3 {
    font-size: 1.6rem;
  }
  h4 {
    font-size: 1.4rem;
  }
    p {
    font-size: 1.3rem;
}
    
    
}
/* 中デバイス（タブレット, 768px 以上）*/
@media (min-width: 768px) and (max-width: 991.98px) {
    
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 1.8rem;
  }
  h2::first-letter {
    font-size: 2.0rem;
  }
  h3 {
    font-size: 1.6rem;
  }
  h4 {
    font-size: 1.4rem;
  }
    p {
    font-size: 1.3rem;
}
    
}
/* 大デバイス（デスクトップ, 992px 以上）*/
@media (min-width: 992px) and (max-width: 1199.98px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 1.8rem;
  }
  h2::first-letter {
    font-size: 2.0rem;
  }
  h3 {
    font-size: 1.6rem;
  }
  h4 {
    font-size: 1.4rem;
  }
    p {
    font-size: 1.3rem;
}
}
/* 特大デバイス（ワイド・デスクトップ, 1200px 以上）*/
@media (min-width: 1200px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 1.8rem;
  }
  h2::first-letter {
    font-size: 2.0rem;
  }
  h3 {
    font-size: 1.6rem;
  }
  h4 {
    font-size: 1.4rem;
  }
    p {
    font-size: 1.3rem;
}
}



ul {
  margin-bottom: 24px;
}
ol {
  margin-bottom: 24px;
}
div.dotbox {
  border: dotted 2px #efc44a;
  padding: 0px 16px 2px 16px;
  margin-bottom: 24px;
}
div.linebox {
  border: solid 3px #558779;
  padding: 0px 16px 2px 16px;
  margin-bottom: 24px;
}
/*テーブルレスポンシブ対応*/
.scroll {
  overflow: auto;
  margin-bottom: 24px;
}
.scroll::-webkit-scrollbar {
  height: 10px;
} /*バーの太さ*/
.scroll::-webkit-scrollbar-track {
  background: #dddddd;
} /*バーの背景色*/
.scroll::-webkit-scrollbar-thumb {
  background: #2cc2e4;
} /*バーの色*/
.scroll table {
  width: 100%;
  white-space: nowrap;
}
/* フェードインのセレクタ */
.fadeInUp {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: appearfade;
  animation-name: appearfade;
}
@-webkit-keyframes appearfade {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes appearfade {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
/* フェードアウトのセレクタ */
.fadeOutDown {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: leavefade;
  animation-name: leavefade;
}
@-webkit-keyframes leavefade {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
}
@keyframes leavefade {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
  }
}
.datetimeicon {
  font-size: 0.8rem;
  color: #ffffff;
  background-color: #558779;
  padding: 2px 8px;
}
span.underline_pink {
  background: linear-gradient(transparent 65%, rgba(255, 0, 0, 0.2) 0%);
}
.btn_wellaway {
  color: white;
  background-color: #3874CA;
}
.btn_wellaway:hover {
  color: white;
  background-color: #5187D5;
}
img.head-logo {
  width: 240px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  img.head-logo {
    width: 200px;
  }
}
img.info-logo {
  width: 320px;
}
@media (max-width: 991.98px) {
  li.nav-item {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
  }
  .inquiry-btn {
    margin-top: 16px;
  }
  .navbar {
    margin: 0px;
    padding: 0px;
  }
  img.head-logo {
    width: 200px;
  }
  img.foot-logo {
    margin-bottom: 24px;
  }
}
span.sub-t::before {
  content: "- "
}
span.sub-t::after {
  content: " -"
}
@media (max-width: 575.98px) {}
/* 小デバイス（横向きモバイル, 576px 以上）*/
@media (min-width: 576px) and (max-width: 767.98px) {}
/* 中デバイス（タブレット, 768px 以上）*/
@media (min-width: 768px) and (max-width: 991.98px) {}
/* 大デバイス（デスクトップ, 992px 以上）*/
@media (min-width: 992px) and (max-width: 1199.98px) {
  img.head-logo {
    width: 200px;
  }
}
/* 特大デバイス（ワイド・デスクトップ, 1200px 以上）*/
@media (min-width: 1200px) {}