@charset "UTF-8";
/* アニメーションベンダープレフィックス込み指定 */
/* アニメーションベンダープレフィックス込み指定 */
body {
  color: #2b2b2b;
  font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.7rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  letter-spacing: 0.1rem;
  background-color: #fdfdfd;
  font-weight: 700;
}

a {
  color: black;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

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

.bold {
  font-weight: bold;
}

h2,
h3 {
  line-height: 1.4;
  font-weight: 900;
}
h2.en,
h2 en,
h3.en,
h3 en {
  font-weight: 400;
}

.mincho {
  font-family: "YakuHanMP", Lato, "Shippori Mincho B1", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
}

#wrapper {
  overflow: hidden;
}

/* animation
----------------------------------*/
@-webkit-keyframes view-zoomin {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes view-zoomin {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes view-slideup {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 35px);
            transform: translate(0, 35px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes view-slideup {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 35px);
            transform: translate(0, 35px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
.animation {
  opacity: 0;
}

.slideup.on {
  opacity: 1;
  -webkit-animation: view-slideup 0.65s cubic-bezier(0.2, 1, 0.2, 1);
          animation: view-slideup 0.65s cubic-bezier(0.2, 1, 0.2, 1);
}

.zoomin.on {
  opacity: 1;
  -webkit-animation: view-zoomin 0.65s cubic-bezier(0.2, 1, 0.2, 1);
          animation: view-zoomin 0.65s cubic-bezier(0.2, 1, 0.2, 1);
}

/* 角度をアニメーションさせるための設定（重要） */
@property --p {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}
/* ローダーの外枠（全画面固定） */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #ffffff;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* パイローダー本体 */
.pie-loader {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  /* --p を 0% から 100% まで動かす */
  background: conic-gradient(#880000 calc(var(--p) * 1%), #eeeeee 0);
  -webkit-animation: pie-load-smooth 1.5s linear infinite;
          animation: pie-load-smooth 1.5s linear infinite;
}

@-webkit-keyframes pie-load-smooth {
  0% {
    --p: 0;
  }
  100% {
    --p: 100;
  }
}

@keyframes pie-load-smooth {
  0% {
    --p: 0;
  }
  100% {
    --p: 100;
  }
}
/* header
----------------------------------*/
@-webkit-keyframes hd-scrolled {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes hd-scrolled {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
#l-header {
  width: 100%;
  padding-bottom: 5px;
  background: rgba(247, 250, 254, 0.9);
}
#l-header .inner {
  max-width: 97%;
  margin: 0 auto;
  padding: 0 0 5px;
  min-width: 1024px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media screen and (max-width: 1300px) {
  #l-header .inner {
    max-width: 99%;
  }
}
@media all and (max-width: 800px) {
  #l-header .inner {
    min-width: initial;
  }
}
#l-header.scrolled #logo {
  width: 320px;
}
#l-header.scrolled {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 200;
  -webkit-animation: hd-scrolled 0.65s cubic-bezier(0.2, 1, 0.2, 1);
          animation: hd-scrolled 0.65s cubic-bezier(0.2, 1, 0.2, 1);
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}
@media all and (max-width: 639px) {
  #l-header.scrolled {
    background: none;
  }
}
#l-header.scrolled .header-right_upper {
  display: none;
}

#logo {
  padding: 5px;
  max-width: 300px;
}

.header-wrap {
  position: absolute;
  z-index: 500;
  left: 0;
  top: 0;
  padding: 20px 20px 30px;
  background: #042461;
}

.header-right_upper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 5px;
  margin-left: auto;
}
.header-right_upper span {
  font-size: 90%;
}

.header-right {
  margin-left: auto;
}
@media all and (max-width: 1200px) {
  .header-right {
    display: none;
  }
}

@media all and (max-width: 800px) {
  .reserve {
    display: none;
  }
}

.header-right_contact {
  position: relative;
  margin-right: 10px;
}

.header-right_recruit {
  margin-left: 10px;
  width: 150px;
}
@media all and (max-width: 800px) {
  .header-right_recruit {
    display: none;
  }
}

.header-right_tel a,
.head-right_fax a,
.header-right_mail a,
.header-right_access a,
.header-right_reservation a {
  display: block;
  padding: 6px 0;
  line-height: 1.4;
  text-align: center;
  color: #2b2b2b;
  font-weight: 600;
  background: #ffe92d;
}
.header-right_tel a span,
.head-right_fax a span,
.header-right_mail a span,
.header-right_access a span,
.header-right_reservation a span {
  padding-right: 5px;
}
.header-right_tel a:hover,
.head-right_fax a:hover,
.header-right_mail a:hover,
.header-right_access a:hover,
.header-right_reservation a:hover {
  -webkit-transition: background-color 0.2s ease-in;
  transition: background-color 0.2s ease-in;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header-right_tel {
  margin-right: 10px;
}
.header-right_tel a {
  padding: 0;
  display: inline-block;
  color: #880000;
  background: transparent;
  font-size: 2rem;
  border: 0;
}
.header-right_tel a:before {
  font-family: "Font Awesome 5 Free";
  content: '\f098';
  font-weight: 900;
  margin-right: 5px;
  font-size: 90%;
}
.header-right_tel a:hover {
  color: #568bec;
}

.head-right_fax {
  margin-right: 10px;
}
.head-right_fax span {
  display: block;
  padding: 6px 0;
  line-height: 1.4;
  text-align: center;
  font-weight: 600;
  font-size: 2rem;
  color: #042461;
}
.head-right_fax span:before {
  font-size: 85%;
  margin-right: 5px;
  font-family: "Font Awesome 5 Free";
  content: '\f1ac';
  font-weight: 900;
}

.header-right_mail a,
.header-right_access a,
.header-right_reservation a {
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 10px;
}

.header-right_mail {
  margin-left: 10px;
}
.header-right_mail a {
  background: rgb(40.1542553191, 107.5319148936, 230.8457446809);
  color: #fff;
  border-radius: 5px;
}
.header-right_mail a:before {
  font-family: "Font Awesome 5 Free";
  content: '\f0e0';
  font-weight: 900;
  margin-right: 5px;
}
.header-right_mail a:hover {
  background: rgb(110.5, 0, 0);
}

.header-right_reservation {
  margin-right: 10px;
}
.header-right_reservation a {
  color: #fff;
  background: #042461;
}
.header-right_reservation a:before {
  font-family: "Font Awesome 5 Free";
  content: '\f073';
  font-weight: 900;
  margin-right: 5px;
}
.header-right_reservation a:hover {
  background: #880000;
}

.header-right_access a {
  color: #fff;
  background: #550000;
}
.header-right_access a:before {
  font-family: "Font Awesome 5 Free";
  content: '\f3c5';
  font-weight: 900;
  margin-right: 5px;
}
.header-right_access a:hover {
  background: #880000;
}

#header_nav {
  position: relative;
  z-index: 20;
  width: 640px;
}
#header_nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto;
}
#header_nav ul li {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  text-align: center;
}
#header_nav ul li a {
  font-weight: 900;
  display: block;
  position: relative;
  line-height: 1.4;
  font-size: 1.7rem;
  color: #2b2b2b;
  text-align: center;
  padding: 10px 0;
  letter-spacing: 0.1em;
}
#header_nav ul li a span {
  letter-spacing: 0.05em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: block;
  color: #042461;
  font-size: 1.3rem;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 600;
}
#header_nav ul li a:hover span, #header_nav ul li a.active span {
  color: rgb(110.5, 0, 0);
}
#header_nav ul li a:hover, #header_nav ul li a.active {
  /*     &:after {
   opacity: 1;
  }*/
}
#header_nav ul li.hd-none {
  display: none;
}
#header_nav .dropdown {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 120px;
  top: 52px;
  z-index: 310;
  background: #042461;
}
#header_nav .dropdown .dropdown-li {
  padding: 3px 5px;
  margin: 3px 0;
}
#header_nav .dropdown .dropdown-li a {
  font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.2rem;
}
#header_nav .dropdown .dropdown-li a mn {
  display: block;
  font-size: 12px;
}
#header_nav .dropdown .dropdown-li a {
  letter-spacing: 0;
  display: block;
  /*width: 140px;*/
  /*width: 90px;*/
  text-align: center;
  /*font-size: 1.3rem;*/
  padding: 5px 0;
  border-right: 0;
  color: #2b2b2b;
  border-radius: 5px;
  background: #fff;
}
#header_nav .dropdown .dropdown-li a:after {
  display: none;
}
#header_nav .dropdown .dropdown-li a:hover {
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  background: #880000;
  color: #fff;
}

#page {
  padding: 0;
  position: relative;
  z-index: 2;
  left: 0;
  -webkit-transition: all 400ms cubic-bezier(1, 0, 0, 1);
  transition: all 400ms cubic-bezier(1, 0, 0, 1);
  /* easeInOutExpo */
  -webkit-transition-timing-function: cubic-bezier(1, 0, 0, 1);
  transition-timing-function: cubic-bezier(1, 0, 0, 1);
  /* easeInOutExpo */
}

#drawernav {
  background: #fff;
  overflow: auto;
  position: fixed;
  top: 0;
  left: -240px;
  width: 240px;
  height: 100%;
  color: #042461;
  z-index: 9999899998;
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) -3px 0 2px 0;
          box-shadow: rgba(0, 0, 0, 0.2) -3px 0 2px 0;
  -webkit-transition: all 400ms cubic-bezier(1, 0, 0, 1);
  transition: all 400ms cubic-bezier(1, 0, 0, 1);
  /* easeInOutExpo */
  -webkit-transition-timing-function: cubic-bezier(1, 0, 0, 1);
  transition-timing-function: cubic-bezier(1, 0, 0, 1);
  /* easeInOutExpo */
}
#drawernav .drawernav_ttl {
  text-align: center;
  font-size: 1.6rem;
  height: 50px;
  background: #042461;
  color: #fff;
  line-height: 50px;
  letter-spacing: 0.2rem;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}
#drawernav ul.phone_navi:first-child {
  margin-top: 60px;
}
#drawernav ul.phone_navi {
  list-style: none;
  padding: 0;
}
#drawernav ul.phone_navi li {
  position: relative;
  border-bottom: 1px solid #042461;
}
#drawernav ul.phone_navi li a {
  color: #2b2b2b;
  font-size: 1.2rem;
  display: block;
  padding: 8px;
  text-decoration: none;
  line-height: 1.3;
  font-weight: 600;
}
#drawernav ul.phone_navi li a span {
  font-weight: 400;
  font-size: 12px;
  display: block;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #042461;
}
#drawernav ul.phone_navi li a:hover {
  color: #880000;
}
#drawernav ul.phone_navi li ul {
  display: none;
}
#drawernav ul.phone_navi li ul li:first-child {
  border-top: 1px solid black;
}
#drawernav ul.phone_navi li ul li:last-child {
  border-bottom: 0px;
}
#drawernav ul.phone_navi li ul li a:before {
  content: "・";
  margin-right: 3px;
}
#drawernav ul.phone_navi li ul li a {
  font-size: 1.1rem;
  color: #042461;
  display: block;
  padding: 8px 20px;
  text-decoration: none;
  border-top: none;
  border-bottom: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: rgb(2.9900990099, 26.9108910891, 72.5099009901);
}
#drawernav ul.phone_navi li ul img {
  display: block;
  width: 90%;
  padding: 5px 0;
  margin: 0 auto;
}
#drawernav .open_btn {
  position: absolute;
  font-weight: 900;
  font-size: 1.8rem;
  top: 0;
  right: 0;
  width: 45px;
  height: 45px;
  text-align: center;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#drawernav img {
  display: block;
  width: 90%;
  padding: 5px 0;
  margin: 0 auto;
}

.fixed-content {
  right: inherit;
  width: 100%;
  -webkit-transition: all 400ms cubic-bezier(1, 0, 0, 1);
  transition: all 400ms cubic-bezier(1, 0, 0, 1);
  /* easeInOutExpo */
  -webkit-transition-timing-function: cubic-bezier(1, 0, 0, 1);
  transition-timing-function: cubic-bezier(1, 0, 0, 1);
  /* easeInOutExpo */
}

#overlay {
  z-index: -1;
  opacity: 0;
  background: #000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  -webkit-transition: all 400ms cubic-bezier(1, 0, 0, 1);
  transition: all 400ms cubic-bezier(1, 0, 0, 1);
  /* easeInOutExpo */
  -webkit-transition-timing-function: cubic-bezier(1, 0, 0, 1);
  transition-timing-function: cubic-bezier(1, 0, 0, 1);
  /* easeInOutExpo */
}

.humberger {
  font-size: 2.2rem;
  cursor: pointer;
  color: #042461;
  text-align: center;
  line-height: 1.3;
  position: absolute;
}
.humberger span {
  font-size: 1.1rem;
  display: block;
}

header .humberger {
  position: absolute;
  top: 0px;
  left: 0px;
  background: #042461;
  color: #fff;
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.drawer-opened .humberger {
  position: absolute;
  top: 0px;
  right: 0px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.drawer-opened .close {
  padding: 10px 16px !important;
}

.drawer-opened #page {
  left: -240px;
  -webkit-box-shadow: 1px 0 2px #000;
          box-shadow: 1px 0 2px #000;
}
.drawer-opened .fixed-content {
  left: -240px;
}
.drawer-opened #drawernav {
  left: 0;
}

.drawer-opened .humberger .icon-menu {
  opacity: 0;
}

.drawer-opened .humberger .icon-menu {
  opacity: 0;
}
.drawer-opened #overlay {
  opacity: 0.5;
  right: -240px;
  position: fixed;
  z-index: 9999999;
  width: 100%;
  height: 100%;
}

/* page-top
----------------------------------*/
#page-top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 9999;
}
#page-top a {
  display: block;
  background: #880000;
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 2px 2px 2px;
          box-shadow: rgba(0, 0, 0, 0.2) 2px 2px 2px;
  color: #fff;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  font-size: 1.8rem;
  text-align: center;
}
#page-top a:hover {
  opacity: 0.6;
}
@media all and (max-width: 1200px) {
  #page-top {
    bottom: 72px;
  }
}

.btn_btm {
  position: fixed;
  bottom: 10px;
  left: 10px;
  margin: auto;
  z-index: 9999;
}
.btn_btm a {
  background: #880000;
  color: #fff;
  text-align: center;
  width: 100%;
  margin: auto;
  font-size: 90%;
  display: block;
  padding: 10px 16px;
  border: 2px solid #2b2b2b;
  font-weight: bold;
  border-radius: 35px;
}
.btn_btm a:hover {
  background: #042461;
}
@media all and (max-width: 1200px) {
  .btn_btm {
    bottom: 72px;
  }
}

/* swiper
----------------------------------*/
@-webkit-keyframes zoom-out {
  0% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes zoom-out {
  0% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.swiper-slide {
  overflow: hidden;
}

.slide-img {
  overflow: hidden;
  height: calc(100vh - 105px);
  width: 100%;
  margin: 0px auto 0;
}
.slide-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media all and (max-width: 1200px) {
  .slide-img {
    height: 55vh;
  }
  .slide-img img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media all and (max-width: 800px) {
  .slide-img {
    height: 42vh;
  }
}
@media all and (max-width: 639px) {
  .slide-img {
    height: 50vh;
  }
}

.slide_bg {
  position: relative;
  margin-bottom: 100px;
}
.slide_bg:before {
  position: absolute;
  content: "";
  width: 75%;
  height: 70%;
  bottom: -10%;
  right: 0;
  background-image: -webkit-gradient(linear, right top, left bottom, from(rgba(86, 139, 236, 0.3)), to(rgba(86, 139, 236, 0.1)));
  background-image: linear-gradient(to left bottom, rgba(86, 139, 236, 0.3) 0%, rgba(86, 139, 236, 0.1) 100%);
  z-index: -1;
}
@media all and (max-width: 639px) {
  .slide_bg {
    margin-bottom: 60px;
  }
  .slide_bg:before {
    width: 65%;
    bottom: -15%;
  }
}

#slideshow {
  position: relative;
  overflow: hidden;
}

#catch h3 {
  letter-spacing: 0.2em;
  font-size: 5rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.8;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5), 0 0 10px rgba(0, 0, 0, 0.8);
}
#catch {
  max-width: 700px;
  width: 80%;
  z-index: 10;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 45%;
}
#catch img {
  width: 240px;
}
@media all and (max-width: 1200px) {
  #catch {
    width: 70%;
  }
  #catch h3 {
    font-size: 3.8rem;
    line-height: 1.5;
  }
  #catch h3 mn {
    font-size: 1.8rem;
  }
}
@media all and (max-width: 800px) {
  #catch h3 {
    font-size: 3.3rem;
  }
}
@media all and (max-width: 639px) {
  #catch {
    width: 90%;
  }
  #catch h3 {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}

.nami {
  position: absolute;
  bottom: -10px;
  display: block;
  z-index: 1;
}

@media all and (max-width: 639px) {
  .nami {
    width: 100%;
    bottom: -20px;
  }
}
#scrolldown {
  position: absolute;
  right: 24px;
  bottom: 70px;
  color: #f2f2f2;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: italic;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3), 0 0 10px rgba(0, 0, 0, 0.6);
}
#scrolldown a {
  color: #f2f2f2;
}
#scrolldown {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  font-size: 1.4rem;
  z-index: 100;
  height: 210px;
}
#scrolldown:before, #scrolldown:after {
  position: absolute;
  content: "";
  z-index: 2;
  left: 50%;
  -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3), 0 0 10px rgba(0, 0, 0, 0.6);
          box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3), 0 0 10px rgba(0, 0, 0, 0.6);
}
#scrolldown:before {
  width: 1px;
  height: 100px;
  bottom: 0;
  background: #f2f2f2;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
#scrolldown:after {
  width: 8px;
  height: 8px;
  background: rgba(242, 242, 242, 0.9);
  border-radius: 100%;
  top: 100px;
  margin-left: -4px;
  -webkit-animation: scroll-point 2.3s ease-out infinite;
          animation: scroll-point 2.3s ease-out infinite;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
@media all and (max-width: 639px) {
  #scrolldown {
    display: none;
  }
}

@-webkit-keyframes scroll-point {
  0% {
    bottom: 0;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  50% {
    top: 180px;
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    top: 210px;
    opacity: 0;
  }
}

@keyframes scroll-point {
  0% {
    bottom: 0;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  50% {
    top: 180px;
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    top: 210px;
    opacity: 0;
  }
}
/* bg_contact
----------------------------------*/
.contact_lead {
  font-size: 1.3em;
  color: #2b2b2b;
  text-align: center;
}
@media all and (max-width: 639px) {
  .contact_lead {
    font-size: 1em;
  }
}

.contact_wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact_wrap .contact_left,
.contact_wrap .contact_right {
  width: 49%;
  padding: 20px;
}
.contact_wrap .contact_right {
  text-align: center;
}
.contact_wrap .contact_right .calendar-box {
  display: block;
}
.contact_wrap .contact_right div.calendar {
  width: 100%;
}
.contact_wrap .contact_left {
  margin-right: 2%;
  border-right: 1px solid white;
}
@media all and (max-width: 800px) {
  .contact_wrap {
    margin-top: 30px;
    width: 94%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact_wrap .contact_left,
  .contact_wrap .contact_right {
    width: 100%;
    padding: 0;
    font-size: 0.9em;
    letter-spacing: 0;
  }
  .contact_wrap .contact_left {
    margin-right: auto;
    border-right: 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #fff;
    margin-bottom: 10px;
  }
}

.contact_bnr li .bnr_tel {
  background: transparent;
  white-space: nowrap;
  color: #042461;
  padding: 0;
  font-size: 2.6rem;
  width: auto;
}
.contact_bnr li .bnr_tel:before {
  font-family: "Font Awesome 5 Free";
  content: '\f095';
  font-weight: 900;
  font-size: 90%;
}
.contact_bnr li .bnr_tel:hover {
  color: #880000;
}
@media all and (max-width: 639px) {
  .contact_bnr li .bnr_tel {
    font-size: 2.3rem;
  }
}
.contact_bnr li .bnr_mobile {
  background: #042461;
  border: 1px solid rgb(1.9801980198, 17.8217821782, 48.0198019802);
}
.contact_bnr li .bnr_mobile:before {
  font-family: "Font Awesome 5 Free";
  content: '\f3cd';
  font-weight: 900;
}
.contact_bnr li .bnr_mobile:hover {
  color: #77ddff;
}
.contact_bnr li .bnr_fax {
  background: #f6efe6;
  border: 1px solid #aaa;
  color: #333;
}
.contact_bnr li .bnr_fax:before {
  font-family: "Font Awesome 5 Free";
  content: '\f1ac';
  font-weight: 900;
}
.contact_bnr li .bnr_mail {
  font-size: 1.8rem;
  background: #880000;
  color: #fff;
}
.contact_bnr li .bnr_mail:before {
  font-family: "Font Awesome 5 Free";
  content: '\f0e0';
  font-weight: 900;
}
.contact_bnr li .bnr_mail:hover {
  background: #042461;
  color: #fff;
}
@media all and (max-width: 639px) {
  .contact_bnr li .bnr_mail {
    font-size: 1.4rem;
  }
}
.contact_bnr li .bnr_cale {
  font-size: 1.6rem;
  background: #f6efe6;
  border: 1px solid #042461;
  color: #042461;
}
.contact_bnr li .bnr_cale:before {
  font-family: "Font Awesome 5 Free";
  content: '\f073';
  font-weight: 900;
}
.contact_bnr li .bnr_cale:hover {
  background: #042461;
  color: #fff;
}
.contact_bnr li a,
.contact_bnr li span {
  display: block;
  padding: 5px 15px;
  margin: 15px auto 0;
  color: #ffffff;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  max-width: 300px;
  width: 90%;
}
.contact_bnr li a:before,
.contact_bnr li span:before {
  margin-right: 5px;
}
@media all and (max-width: 639px) {
  .contact_bnr li a,
  .contact_bnr li span {
    width: 100%;
    max-width: 280px;
    font-size: 1.5rem;
  }
}
@media all and (max-width: 800px) {
  .contact_bnr li {
    margin: 0 auto 10px;
  }
}

/* footer
----------------------------------*/
footer {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: -webkit-gradient(linear, left top, right top, from(rgba(86, 139, 236, 0.7)), to(rgba(4, 36, 97, 0.8)));
  background: linear-gradient(to right, rgba(86, 139, 236, 0.7), rgba(4, 36, 97, 0.8));
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27687/bg-footer.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 0.5;
}

#l-footer {
  position: relative;
  /*  &:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    background: $beige;
    width: 100%;
    height: 55%;
    z-index: -1;
   }*/
}
#l-footer .yoyaku-txt {
  text-align: center;
  margin-bottom: -10px;
}
#l-footer .yoyaku-txt span {
  background: #fb8312;
  color: #fefefe;
  padding: 4px 8px;
}
#l-footer .contact-ttl {
  text-align: center;
  margin-bottom: 10px;
}
#l-footer .contact-ttl span {
  background: #222;
  padding: 4px 15px;
  border-radius: 20px;
}
#l-footer .footer-box {
  border-radius: 15px;
  max-width: 1400px;
  margin: 0 auto 40px;
}
@media all and (max-width: 1200px) {
  #l-footer .footer-box {
    max-width: 900px;
  }
}
#l-footer .footer-box {
  padding: 25px 15px;
  background: url(../img/bg-foot.jpg);
  position: relative;
  z-index: 5;
  overflow: hidden;
}
#l-footer .footer-box:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: #2b2b2b;
  width: 100%;
  height: 100%;
  opacity: 0.7;
}
@media all and (max-width: 639px) {
  #l-footer {
    font-size: 1.2rem;
  }
  #l-footer .footer-box {
    padding: 30px 15px;
  }
}

.footer-txt-wrap {
  position: relative;
  z-index: 4;
  margin: 20px auto;
  font-weight: bold;
  color: #fefefe;
}

.footer-map {
  height: 250px;
  margin-bottom: 20px;
  -webkit-box-shadow: 0 0 15px rgba(43, 43, 43, 0.1);
          box-shadow: 0 0 15px rgba(43, 43, 43, 0.1);
  width: 100%;
}
@media all and (max-width: 639px) {
  .footer-map {
    height: 180px;
  }
}

.sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 10px;
}
.sns-list li:not(:last-child) {
  margin-right: 5px;
}
.sns-list li a {
  color: #fff;
  display: block;
  font-size: 1.5rem;
  text-align: center;
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  line-height: 40px;
}
.sns-list li a.fb {
  background-color: #1877f2;
}

.flogo {
  max-width: 500px;
  width: 95%;
  margin: 20px auto;
}
.flogo img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

/* footer_navi
----------------------------------*/
.footer_navi {
  padding: 0;
  margin: 15px auto;
  width: 1200px;
}
.footer_navi ul {
  margin: 0 auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer_navi li {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  text-align: center;
  margin: 0 0 4px;
  border-left: 1px solid rgb(212.5, 0, 0);
}
.footer_navi li:last-child {
  border-right: 1px solid rgb(212.5, 0, 0);
}
.footer_navi li a {
  color: #fff;
  font-size: 1.4rem;
  position: relative;
  font-weight: bold;
}
.footer_navi li a span {
  display: none;
}
.footer_navi li a:hover {
  color: #880000;
}
.footer_navi li .dropdown {
  display: none;
}

.column2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.column2.tp {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.column2.center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.column2 .child {
  width: 48%;
}
.column2 .child.column2-img {
  position: sticky;
  top: 84px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media all and (max-width: 800px) {
  .column2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .column2 .child.column2-img {
    position: static;
    margin-bottom: 30px;
  }
  .column2 .child {
    width: 100%;
  }
}

.address span {
  font-size: 100%;
}
.address {
  font-size: 90%;
  color: #fff;
  text-align: center;
}
@media all and (max-width: 639px) {
  .address {
    font-size: 11px;
  }
}

.copyright {
  padding: 15px 0;
  background: #333;
  color: #fff;
  font-size: 1.2rem;
  font-weight: normal;
}
@media all and (max-width: 1200px) {
  .copyright {
    font-size: 12px;
    padding-bottom: 80px;
  }
}

/*----------------------------------
 --top-contents--
----------------------------------*/
.greet-area {
  position: relative;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 1;
  margin-bottom: 80px;
}
.greet-area:before {
  position: absolute;
  content: "";
  width: 58%;
  height: 100%;
  top: 80px;
  right: 0;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27687/top_about.webp) no-repeat center/cover;
  z-index: -1;
}
.greet-area.type1 {
  margin-top: 120px;
}
@media all and (max-width: 800px) {
  .greet-area.type1 {
    margin-top: 5px;
  }
}
.greet-area .greet-area-box {
  position: relative;
  top: 0;
  left: 0;
  width: 55%;
  padding: 60px 50px;
  margin-right: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #f8f8f8;
  color: #2b2b2b;
  border: 1px solid #eee;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  z-index: 10;
  overflow: hidden;
}
.greet-area .greet-area-box .inner {
  position: relative;
  max-width: 650px;
  margin: auto;
}
.greet-area .greet-area-box .inner .title01 .ja,
.greet-area .greet-area-box .inner .title01 .eng {
  color: #2b2b2b;
}
.greet-area .greet-area-box .inner .greet-area-title {
  text-align: center;
  letter-spacing: 0.15em;
  margin-bottom: 35px;
  font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: #2b2b2b;
}
.greet-area .greet-area-box .inner .greet-area-title span {
  margin-top: 10px;
  display: block;
  font-size: 1.8rem;
  letter-spacing: 0.12em;
  color: #777;
}
.greet-area .greet-area-box .inner p {
  line-height: 1.8;
  color: #2b2b2b;
}
.greet-area .greet-area-box .inner p + p {
  margin-top: 20px;
}
@media all and (max-width: 800px) {
  .greet-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    max-width: calc(100% - 10px);
  }
  .greet-area:before {
    width: 100%;
    height: auto;
    top: 0;
    padding-bottom: 56.25%;
  }
  .greet-area .greet-area-box {
    position: relative;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    padding: 45px 20px;
    margin: 56.25% auto 0;
  }
  .greet-area .greet-area-box .inner p + p {
    margin-top: 15px;
  }
  .greet-area .greet-area-box .inner .greet-area-title {
    margin-bottom: 30x;
    font-size: 1.5rem;
  }
  .greet-area .greet-area-box .inner .greet-area-title span {
    margin-top: 5px;
    font-size: 1.25rem;
  }
}
@media all and (max-width: 639px) {
  .greet-area .greet-area-box {
    padding: 35px 20px;
  }
}

/* --top-intro--
----------------------------------*/
.top-col2-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1000px;
  margin: 40px auto;
}
.top-col2-wrap .top-col2-left {
  width: 15%;
}
.top-col2-wrap .top-col2-right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 70px;
}
@media all and (max-width: 800px) {
  .top-col2-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .top-col2-wrap .top-col2-left {
    width: 100%;
  }
  .top-col2-wrap .top-col2-right {
    width: 100%;
    margin: 30px 0 0;
  }
}

.top-intro {
  margin-top: 40px;
  /*margin-top: 0;*/
  position: relative;
}
.top-intro:before {
  left: 3%;
  top: 0;
  background: url(../img/bg-intro.jpg) no-repeat center right/cover;
  opacity: 1;
  position: absolute;
  content: "";
  width: 50%;
  height: 80%;
  z-index: 1;
}
@media all and (max-width: 639px) {
  .top-intro:before {
    width: 120%;
    height: 30%;
    left: 0;
  }
}

.top-lead {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  position: absolute;
  left: -15%;
  top: -8%;
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 0.3rem;
  color: #2b2b2b;
  line-height: 1.5;
  text-shadow: 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff;
}
.top-lead span {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.2rem;
  font-size: 3.8rem;
  display: block;
  color: #880000;
}
@media all and (max-width: 800px) {
  .top-lead {
    font-size: 2.2rem;
    left: -20%;
    white-space: nowrap;
  }
  .top-lead span {
    font-size: 3.2rem;
  }
}
@media all and (max-width: 639px) {
  .top-lead {
    -webkit-writing-mode: inherit;
        -ms-writing-mode: inherit;
            writing-mode: inherit;
    font-size: 1.6rem;
  }
  .top-lead span {
    font-size: 2.2rem;
  }
  .top-lead {
    left: 0;
    top: -120px;
  }
}

.top-box {
  max-width: 54%;
  background: rgba(254, 254, 254, 0.95);
  backdrop-filter: blur(3px);
  -webkit-box-shadow: 2px 2px 10px -3px rgba(43, 43, 43, 0.2);
          box-shadow: 2px 2px 10px -3px rgba(43, 43, 43, 0.2);
  padding: 40px;
  position: relative;
  z-index: 1;
  margin: 40px 0 20px auto;
  position: relative;
}
@media all and (max-width: 800px) {
  .top-box {
    max-width: 70%;
    padding: 15px;
  }
}
@media all and (max-width: 639px) {
  .top-box {
    max-width: 95%;
    background: rgba(244, 244, 244, 0.9);
    margin: 140px auto 0;
  }
}

.top-intro_txt p {
  letter-spacing: 0.1em;
}
.top-intro_txt p:not(:last-child) {
  margin-bottom: 15px;
}
@media all and (max-width: 639px) {
  .top-intro_txt {
    padding: 0;
  }
}

.top-sec2 {
  position: relative;
}
.top-sec2:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  right: auto;
  bottom: auto;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% - 60px);
  height: 70%;
  background-image: -webkit-gradient(linear, left top, right top, from(#f0f0f0), to(rgb(214.5, 214.5, 214.5)));
  background-image: linear-gradient(to right, #f0f0f0 0%, rgb(214.5, 214.5, 214.5) 100%);
  opacity: 0.7;
  z-index: -1;
}
@media all and (max-width: 639px) {
  .top-sec2:before {
    height: 90%;
    width: calc(100% - 40px);
  }
}

.top-sec3 {
  background: url(../img/bg-02.jpg) no-repeat center/cover;
}

.top-info1 {
  background: #fefefe;
  padding: 25px;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.top-info2 {
  background: #fff;
  -webkit-box-shadow: 2px 2px 10px -3px rgba(43, 43, 43, 0.2);
          box-shadow: 2px 2px 10px -3px rgba(43, 43, 43, 0.2);
  padding: 25px;
  font-size: 98%;
  font-weight: normal;
}
@media all and (max-width: 639px) {
  .top-info2 {
    padding: 15px;
    background: rgba(255, 255, 255, 0.9);
  }
}

/* --news--
----------------------------------*/
.news02 {
  border-top: 1px solid #505050;
}
.news02 .inner {
  position: relative;
  border-bottom: 1px solid #505050;
  padding: 30px 20px;
  -webkit-transition: 0.3s ease-in all;
  transition: 0.3s ease-in all;
}
.news02 .inner:hover {
  background: rgba(240, 240, 240, 0.5);
}
.news02 .inner dt {
  float: left;
  color: #2b2b2b;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
}
@media all and (max-width: 800px) {
  .news02 .inner dt {
    font-size: 1.1rem;
  }
}
@media all and (max-width: 639px) {
  .news02 .inner dt {
    font-size: 1.05rem;
  }
}
.news02 .inner dd {
  padding: 0 0 0 20px;
  color: #2b2b2b;
  overflow: hidden;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
@media all and (max-width: 800px) {
  .news02 .inner {
    padding: 20px 10px;
  }
}
@media all and (max-width: 639px) {
  .news02 .inner {
    padding: 15px 5px;
  }
  .news02 .inner dt {
    float: none;
  }
  .news02 .inner dd {
    width: 100%;
    padding: 5px 0 0 0;
    -webkit-line-clamp: 2;
  }
}

.news-box {
  position: relative;
  margin: 0 auto;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media all and (max-width: 800px) {
  .news-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.news-title {
  position: relative;
  margin-right: 60px;
}
.news-title h3 {
  text-align: center;
  line-height: 1.5;
}
.news-title h3 .eng {
  font-size: 3.2rem;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
  color: #042461;
}
.news-title h3 .ja {
  font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
}
@media all and (max-width: 800px) {
  .news-title h3 .ja {
    font-size: 1.4rem;
  }
}
@media all and (max-width: 639px) {
  .news-title h3 .ja {
    font-size: 1.25rem;
    letter-spacing: 0.15em;
  }
}
.news-title h3 .ja {
  color: #2b2b2b;
  display: block;
}
.news-title a {
  text-align: center;
  padding: 5px 15px;
  display: block;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: 500;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}
@media all and (max-width: 800px) {
  .news-title a {
    font-size: 1.05rem;
  }
}
@media all and (max-width: 639px) {
  .news-title a {
    font-size: 1rem;
  }
}
.news-title a {
  line-height: 1.5;
  text-transform: uppercase;
  border: 1px solid #042461;
  background: #042461;
  color: #ffffff;
  width: 95%;
  margin: 15px auto 0;
  border-radius: 30px;
}
.news-title a:hover {
  background: transparent;
  color: #042461;
}
@media all and (max-width: 800px) {
  .news-title {
    width: calc(100% - 10px);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;
    min-width: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .news-title h3 {
    text-align: left;
  }
  .news-title h3 .eng {
    font-size: 2.2rem;
  }
  .news-title h3 .ja {
    margin-left: 10px;
    display: inline-block;
  }
  .news-title a {
    margin: 0;
    width: auto;
  }
}

.news-right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media all and (max-width: 639px) {
  .news-right {
    width: 100%;
  }
}

/* blog
----------------------------------*/
#top-blog .pages {
  display: none;
}
#top-blog .blog-img {
  height: 140px;
}
@media all and (max-width: 1200px) {
  #top-blog .blog-img {
    height: 100px;
  }
}
@media all and (max-width: 800px) {
  #top-blog .blog-img {
    height: 200px;
  }
}
@media all and (max-width: 639px) {
  #top-blog .blog-img {
    height: 90px;
  }
}

.blog-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.blog-wrap * {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.blog-wrap > li {
  position: relative;
  background: #ffffff;
  border-radius: 5px;
  overflow: hidden;
}
.blog-wrap > li > a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}
.blog-wrap > li > a:hover ~ .blog-img img {
  opacity: 1;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
@media all and (max-width: 1200px) {
  .blog-wrap {
    gap: 10px;
  }
}
@media all and (max-width: 800px) {
  .blog-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

.blog-img {
  width: 100%;
  height: 160px;
  overflow: hidden;
}
@media all and (max-width: 800px) {
  .blog-img {
    height: 180px;
  }
}
@media all and (max-width: 639px) {
  .blog-img {
    height: 100px;
  }
}
.blog-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-family: "object-fit: cover;";
  /*IE対策*/
}
.blog-img:hover img {
  opacity: 1 !important;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.blog-detail {
  padding: 15px;
}
@media all and (max-width: 800px) {
  .blog-detail {
    padding: 10px;
  }
}
@media all and (max-width: 639px) {
  .blog-detail {
    padding: 10px;
  }
}

.blog-date2 {
  color: #2b2b2b;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
}
@media all and (max-width: 800px) {
  .blog-date2 {
    font-size: 1.1rem;
  }
}
@media all and (max-width: 639px) {
  .blog-date2 {
    font-size: 1.05rem;
  }
}
.blog-date2 {
  letter-spacing: 0.05em;
  margin-bottom: 5px;
  text-align: right;
}
.blog-date2:before {
  font-family: "Font Awesome 5 Free";
  content: '\f017';
  font-weight: 900;
  margin-right: 3px;
  color: #042461;
}

.blog-date {
  color: #2b2b2b;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
}
@media all and (max-width: 800px) {
  .blog-date {
    font-size: 1.1rem;
  }
}
@media all and (max-width: 639px) {
  .blog-date {
    font-size: 1.05rem;
  }
}
.blog-date.type1 {
  text-align: right;
}
.blog-date:before {
  font-family: "Font Awesome 5 Free";
  content: '\f017';
  font-weight: 900;
  margin-right: 3px;
  color: #042461;
}

.blog-title {
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.blog-category {
  position: absolute;
  top: 5px;
  left: 5px;
  display: inline-block;
  padding: 0 10px;
  border-radius: 5px;
  text-align: center;
  background: rgba(253, 253, 253, 0.85);
  color: rgb(2.9900990099, 26.9108910891, 72.5099009901);
  font-size: 1.3rem;
  letter-spacing: 0.08em;
}
@media all and (max-width: 800px) {
  .blog-category {
    font-size: 1.1rem;
  }
}
@media all and (max-width: 639px) {
  .blog-category {
    font-size: 1.05rem;
  }
}
.blog-category {
  z-index: 3;
  backdrop-filter: blur(5px);
}

.pages {
  text-align: center;
  margin-top: 30px;
}
.pages .page_next,
.pages .page_prev {
  display: inline-block;
  margin: 0 20px;
}
.pages .page_next a,
.pages .page_prev a {
  color: #ffffff;
  padding: 4px 5px;
  background: #042461;
  font-size: 12px;
}

.blog_topics {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.blog_topics li {
  border-top: 1px solid #505050;
  border-bottom: 1px solid #505050;
  width: 48%;
  margin: 1%;
}
.blog_topics li a {
  display: block;
  color: #2b2b2b;
  padding: 15px;
  -webkit-transition: 0.3s ease-in all;
  transition: 0.3s ease-in all;
}
.blog_topics li a:hover {
  background: rgb(229.1, 238.2903225806, 255);
}
.blog_topics li a:hover .topics_detail .imgbox img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.blog_topics li a .topics_detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.blog_topics li a .topics_detail .imgbox {
  overflow: hidden;
  width: 28%;
  height: 100px;
}
.blog_topics li a .topics_detail .imgbox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.3s ease-in all;
  transition: 0.3s ease-in all;
  overflow: hidden;
  border-radius: 5px;
}
.blog_topics li a .topics_detail .textbox {
  width: 72%;
  padding-left: 20px;
  line-height: 1.5;
}
.blog_topics li a .topics_detail .textbox h3 {
  margin: 5px 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
}
.blog_topics li a .topics_detail .textbox p {
  font-size: 1.3rem;
  letter-spacing: 0.08em;
}
@media all and (max-width: 800px) {
  .blog_topics li a .topics_detail .textbox p {
    font-size: 1.1rem;
  }
}
@media all and (max-width: 639px) {
  .blog_topics li a .topics_detail .textbox p {
    font-size: 1.05rem;
  }
}
.blog_topics li a .topics_detail .textbox p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.blog_topics li a .time_date {
  display: inline-block;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
}
@media all and (max-width: 800px) {
  .blog_topics li a .time_date {
    font-size: 1.1rem;
  }
}
@media all and (max-width: 639px) {
  .blog_topics li a .time_date {
    font-size: 1.05rem;
  }
}
.blog_topics li a .time_date {
  letter-spacing: 0.05em;
  color: #2b2b2b;
}
.blog_topics li a .time_date span {
  background: #042461;
  color: #ffffff;
  padding: 1px 5px;
  border-radius: 3px;
  margin-left: 10px;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}
@media all and (max-width: 800px) {
  .blog_topics li a .time_date span {
    font-size: 1.05rem;
  }
}
@media all and (max-width: 639px) {
  .blog_topics li a .time_date span {
    font-size: 1rem;
  }
}
.blog_topics li a .time_date:before {
  font-family: "Font Awesome 5 Free";
  content: '\f017';
  font-weight: 900;
  margin-right: 3px;
  color: #042461;
}
@media all and (max-width: 639px) {
  .blog_topics {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .blog_topics li {
    width: 100%;
    margin: 0;
  }
  .blog_topics li:not(:first-child) {
    border-top: 0px solid #505050;
  }
  .blog_topics li a {
    padding: 10px 5px;
  }
  .blog_topics li a .topics_detail .imgbox {
    width: 35%;
    height: 80px !important;
  }
  .blog_topics li a .topics_detail .textbox {
    width: 65%;
    padding-left: 10px;
    line-height: 1.5;
  }
}

.category_nav {
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #505050 !important;
}
.category_nav li:not(:last-child) {
  border-bottom: 1px solid #505050 !important;
}
.category_nav li a {
  text-align: center;
  display: block;
  padding: 8px;
  background: #fdfdfd;
  color: #2b2b2b;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
}
@media all and (max-width: 800px) {
  .category_nav li a {
    font-size: 1.1rem;
  }
}
@media all and (max-width: 639px) {
  .category_nav li a {
    font-size: 1.05rem;
  }
}
.category_nav li a:hover {
  color: #042461;
}
@media all and (max-width: 800px) {
  .category_nav {
    max-width: 200px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}

/*----------------------------------
 --others--
----------------------------------*/
.greet-txt {
  letter-spacing: 0;
  line-height: 2;
  padding: 15px;
  font-weight: normal;
}

/* --staff.php--
----------------------------------*/
.title-mini {
  color: #568bec;
  font-size: 1.15em;
  letter-spacing: 0.2rem;
}

.comment-txt {
  font-weight: normal;
  font-size: 0.9em;
}

.staff-name {
  font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #2b2b2b;
  border-bottom: 0.9px solid #ccc;
  margin-bottom: 20px;
}
.staff-name .upper {
  font-size: 1.5rem;
  color: #444;
}
.staff-name .sub {
  color: #042461;
  padding-left: 15px;
  font-size: 1.7rem;
  font-weight: 400;
}
@media all and (max-width: 639px) {
  .staff-name {
    font-size: 2.2rem;
    line-height: 1.4;
  }
  .staff-name .upper {
    font-size: 1.2rem;
  }
  .staff-name .sub {
    font-size: 1.5rem;
    display: block;
    padding-left: 0;
  }
}

.prod-name {
  font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #2b2b2b;
  border-bottom: 0.9px solid #ccc;
  margin-bottom: 20px;
  line-height: 1.4;
}
.prod-name .upper {
  font-size: 1.5rem;
  color: #444;
}
.prod-name .sub {
  color: #042461;
  font-size: 1.7rem;
  font-weight: 400;
  display: block;
}
.prod-name mns {
  font-size: 1.6rem;
}
@media all and (max-width: 639px) {
  .prod-name {
    text-align: center;
    font-size: 1.8rem;
    line-height: 1.6;
  }
  .prod-name mns {
    font-size: 1.4rem;
  }
  .prod-name .upper {
    font-size: 1.2rem;
    display: block;
  }
  .prod-name .sub {
    font-size: 1.5rem;
    display: block;
    padding-left: 0;
  }
}

.price {
  font-weight: bold;
  color: #fb8312;
  font-size: 1.8rem;
  padding-right: 5px;
}
@media all and (max-width: 639px) {
  .price {
    font-size: 1.4rem;
  }
}
.price.price2 {
  font-size: 2.5rem;
}
@media all and (max-width: 639px) {
  .price.price2 {
    font-size: 1.9rem;
  }
}

.course-title {
  text-align: center;
  font-size: 3rem;
  color: black;
  font-weight: 600;
  margin-bottom: 50px;
  position: relative;
  margin: -60px auto 50px;
}
.course-title span {
  display: block;
  line-height: 1.4;
  font-size: 1.8rem;
  color: black;
}
.course-title:before {
  position: absolute;
  content: "";
  top: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -15px;
  z-index: 1;
  background: #042461;
  width: 80px;
  height: 2px;
}
@media all and (max-width: 639px) {
  .course-title {
    font-size: 2.2rem;
    margin-top: 0;
  }
}

/* --treatment.php--
----------------------------------*/
.treat-head-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.treat-head-list > li {
  width: 16.6666666667%;
  padding: 0 5px;
  line-height: 1.5;
}
.treat-head-list > li figure {
  width: 80%;
  margin: 0 auto 5px;
}
@media all and (max-width: 800px) {
  .treat-head-list {
    max-width: 600px;
    margin: 0 auto;
  }
  .treat-head-list > li {
    width: 33.3333333333%;
    margin-bottom: 15px;
  }
}
@media all and (max-width: 639px) {
  .treat-head-list > li {
    font-size: 13px;
  }
}

.text-link {
  background: #fb8312;
  color: #fefefe;
  padding: 4px 8px;
}
.text-link:before {
  font-family: "Font Awesome 5 Free";
  content: '\f078';
  font-weight: 900;
  margin-right: 5px;
}

.treat-list2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.treat-list2 > li {
  background: #f0f0f0;
  padding: 8px;
  width: calc(33.3333333333% - 10px);
  margin: 0 15px 20px 0;
}
.treat-list2 > li:nth-child(3n) {
  margin-right: 0;
}
@media all and (max-width: 800px) {
  .treat-list2 > li {
    width: 48%;
    margin-right: 4%;
  }
  .treat-list2 > li:nth-child(3n) {
    margin-right: 4%;
  }
  .treat-list2 > li:nth-child(2n) {
    margin-right: 0;
  }
}
@media all and (max-width: 639px) {
  .treat-list2 > li {
    width: 100%;
    margin: 0 auto 15px;
  }
  .treat-list2 > li:nth-child(2n), .treat-list2 > li:nth-child(3n) {
    margin-right: auto;
  }
}

/* contents
----------------------------------*/
.single {
  max-width: 1200px;
  margin: 0 auto;
  padding: 90px 0;
  position: relative;
}
.single.phalf {
  padding: 30px 0;
}
@media all and (max-width: 1200px) {
  .single {
    width: 94%;
  }
}

.single02 {
  margin: 0 auto;
  padding: 80px 0;
  width: 94%;
}

.single03.phalf {
  padding: 30px 0;
}
.single03 {
  max-width: 1500px;
  width: 95%;
  margin: 0 auto;
  padding: 80px 0;
  position: relative;
}

.single04 {
  max-width: 1200px;
  width: 90%;
  margin: 80px auto 0;
  padding: 0;
  position: relative;
}
@media all and (max-width: 639px) {
  .single04 {
    margin: 40px auto 0;
    width: 96%;
  }
}

.single05 {
  margin: 0 auto 60px;
  padding: 80px 0;
}
@media all and (max-width: 800px) {
  .single05 {
    margin: 0 auto;
  }
}

.margin-top {
  margin-top: -80px;
}
@media all and (max-width: 639px) {
  .margin-top {
    margin-top: -30px;
  }
}

.lsingle,
.rsingle {
  width: 48.44%;
}

.lsingle {
  float: left;
}

.rsingle {
  float: right;
}

.mbox {
  background: #fefefe;
  padding: 40px 30px;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
}
.mbox.transparent {
  background: none;
}
.mbox.F8F9FD {
  background: #F8F9FD;
}
.mbox.opa6 {
  background: rgba(254, 254, 254, 0.8);
}
.mbox.bgcolor {
  background: rgba(247, 250, 254, 0.6);
}
.mbox.box-y {
  background: rgba(254, 254, 254, 0.9);
  -webkit-box-shadow: 2px 2px 10px rgba(43, 43, 43, 0.1);
          box-shadow: 2px 2px 10px rgba(43, 43, 43, 0.1);
}
.mbox.box-y a img {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.mbox.box-y a img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.mbox {
  margin-right: auto;
}
@media all and (max-width: 639px) {
  .mbox {
    padding: 20px 15px;
  }
}

.mbox2 {
  background: #fefefe;
  border-radius: 10px;
  border: 2px solid #042461;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1500px;
  padding: 30px;
}
.mbox2.round2 {
  border-radius: 15px 0 15px 0;
}
@media all and (max-width: 639px) {
  .mbox2 {
    padding: 15px;
  }
}

.container-box {
  max-width: 850px;
  margin-right: auto;
  margin-left: auto;
}

.bg-grid {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(95%, transparent), color-stop(50%, rgba(204, 204, 204, 0.2)), to(rgba(204, 204, 204, 0.2))), -webkit-gradient(linear, left bottom, left top, color-stop(95%, transparent), color-stop(50%, rgba(204, 204, 204, 0.2)), to(rgba(204, 204, 204, 0.2)));
  background-image: linear-gradient(90deg, transparent 95%, rgba(204, 204, 204, 0.2) 50%, rgba(204, 204, 204, 0.2)), linear-gradient(0deg, transparent 95%, rgba(204, 204, 204, 0.2) 50%, rgba(204, 204, 204, 0.2));
  background-size: 20px 20px;
  background-repeat: repeat;
}

.bg-map {
  background: url(../img/map.png) no-repeat right bottom;
}
@media all and (max-width: 639px) {
  .bg-map {
    background-size: auto 200px;
    background-position: right top;
  }
}

#main {
  float: left;
  width: 76%;
}
@media all and (max-width: 800px) {
  #main {
    float: none;
    width: 100%;
  }
}

#main2 {
  float: left;
  width: 76%;
}
#main2 a {
  /*text-decoration: underline;*/
}
@media all and (max-width: 800px) {
  #main2 {
    float: none;
    width: 100%;
  }
}
@media all and (max-width: 639px) {
  #main2 .mbox {
    background: #fefefe;
    padding: 5px;
  }
}

#side {
  float: right;
  position: sticky;
  right: 0;
  top: 0;
  width: 21%;
  padding-right: 10px;
}
@media all and (max-width: 800px) {
  #side {
    float: none;
    width: 100%;
    position: static;
    margin-top: 40px;
  }
}

/* 2column */
#col2-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
#col2-wrap #col2-main {
  width: 78%;
}
@media all and (max-width: 800px) {
  #col2-wrap #col2-main {
    width: 100%;
    margin: 0 auto;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
#col2-wrap #col2-side {
  width: 20%;
  padding: 60px 0 0;
}
@media all and (max-width: 800px) {
  #col2-wrap #col2-side {
    width: 95%;
    margin: 0 auto 20px;
    padding-top: 30px;
  }
}

/* mtitle
----------------------------------*/
.mtitle {
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 48px;
  font-size: 1.6rem;
  position: relative;
  text-align: center;
  font-weight: 900;
  letter-spacing: 0.2rem;
}
.mtitle span {
  display: block;
  font-size: 3.4rem;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: -5px;
  color: #042461;
  line-height: 1.8;
}
.mtitle.white {
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
.mtitle.white span {
  color: #fff;
}
.mtitle.center {
  text-align: center;
}
.mtitle.center:after {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.mtitle.mtitle_left {
  text-align: left;
}
.mtitle.mtitle_left:after {
  left: 0;
  -webkit-transform: inherit;
          transform: inherit;
}
@media all and (max-width: 639px) {
  .mtitle {
    font-size: 1.4rem;
    text-align: center;
  }
  .mtitle span {
    font-size: 2.8rem;
    line-height: 1.6;
    margin-bottom: 0px;
  }
}
.mtitle.af_none {
  margin-bottom: 0;
}
.mtitle.af_none span {
  color: #568bec;
}
.mtitle.af_none:after {
  content: none;
  left: 0;
  bottom: 0;
  height: 0;
  width: 0;
  background-image: none;
}

.mtitle2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  padding: 5px;
  color: #2b2b2b;
  border-bottom: 2px solid;
  -o-border-image: linear-gradient(to right, #042461, #568bec);
     border-image: -webkit-gradient(linear, left top, right top, from(#042461), to(#568bec));
     border-image: linear-gradient(to right, #042461, #568bec);
  border-image-slice: 1;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.2em;
}
.mtitle2 span {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.mtitle2 b {
  font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.mtitle2 span,
.mtitle2 b {
  letter-spacing: 0em;
  font-size: 2.4rem;
  margin-right: 15px;
  color: #042461;
}
@media all and (max-width: 639px) {
  .mtitle2 {
    font-size: 1.4rem;
  }
  .mtitle2 span,
  .mtitle2 b {
    font-size: 1.8rem;
    display: block;
  }
}

.mtitle3 {
  font-size: 1.8rem;
  font-weight: bold !important;
  color: rgb(110.5, 0, 0);
  display: block;
  border-bottom: 1px solid #042461;
  padding-bottom: 5px;
  margin-bottom: 20px;
}
.mtitle3:before {
  margin-right: 5px;
  color: #042461;
}
.mtitle3.type1:before {
  font-family: "Font Awesome 5 Free";
  content: '\f0a4';
  font-weight: 900;
}
.mtitle3.type2:before {
  font-family: "Font Awesome 5 Free";
  content: '\f5ad';
  font-weight: 900;
}
.mtitle3.type3:before {
  font-family: "Font Awesome 5 Free";
  content: '\f560';
  font-weight: 900;
}
.mtitle3 b {
  color: #2b2b2b;
  font-size: 90%;
  font-weight: normal;
}
.mtitle3 span {
  font-size: 90%;
  color: #2b2b2b;
  font-weight: normal;
  display: block;
}
@media all and (max-width: 639px) {
  .mtitle3 {
    padding: 4px;
    font-size: 1.5rem;
  }
  .mtitle3 span {
    border-bottom: 0;
    font-size: 1.4rem;
  }
}

.mtitle3plus {
  font-size: 1.8rem;
  font-weight: bold !important;
  color: #2b2b2b;
  display: block;
  border-bottom: 1px solid #042461;
  padding-bottom: 5px;
}
.mtitle3plus:before {
  content: "+";
  margin-right: 5px;
  color: #568bec;
}
.mtitle3plus.ls2 {
  letter-spacing: 0.2em;
}
.mtitle3plus {
  margin-bottom: 20px;
}
@media all and (max-width: 639px) {
  .mtitle3plus {
    padding: 4px;
    font-size: 1.5rem;
  }
}

.mtitle-bll {
  font-size: 1.8rem;
  font-weight: bold;
  border-radius: 5px 5px 0 0;
  border-bottom: 3px solid #f0f0f0;
  position: relative;
  padding: 5px;
  padding-left: 25px;
  margin-bottom: 20px;
  line-height: 1.5;
}
.mtitle-bll span {
  font-weight: normal;
  letter-spacing: 0;
}
.mtitle-bll {
  color: black;
}
.mtitle-bll:before {
  font-family: "Font Awesome 5 Free";
  content: '\f303';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #042461;
}
.mtitle-bll:after {
  position: absolute;
  content: "";
  display: block;
  bottom: -3px;
  width: 100px;
  height: 3px;
  left: 0;
  background: #042461;
}
@media all and (max-width: 639px) {
  .mtitle-bll {
    font-size: 1.4rem;
  }
}

.mtitle4 {
  text-align: center;
  font-size: 2.6rem;
  line-height: 1.5;
  letter-spacing: 0.1rem;
}
.mtitle4 span {
  position: relative;
  display: inline-block;
  min-width: 10%;
  font-weight: 600;
}
.mtitle4 span:before, .mtitle4 span:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1px;
  height: 2rem;
  background-color: #042461;
}
.mtitle4 span:before {
  left: -11px;
  -webkit-transform: rotate(-20deg);
  transform: rotate(-20deg);
}
.mtitle4 span:after {
  right: -11px;
  -webkit-transform: rotate(20deg);
  transform: rotate(20deg);
}
.mtitle4.white span:before, .mtitle4.white span:after {
  background-color: #ffe92d;
}
@media all and (max-width: 639px) {
  .mtitle4 {
    font-size: 2rem;
  }
}
@media all and (max-width: 320px) {
  .mtitle4 span:before {
    left: -3px;
  }
  .mtitle4 span:after {
    right: -3px;
  }
}

.mtitle_big {
  font-weight: bold;
  margin-bottom: 25px;
  font-size: 2.3rem;
  position: relative;
  text-align: center;
  color: #042461;
  letter-spacing: 0.2rem;
}
.mtitle_big span {
  display: block;
  font-size: 4rem;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.8;
}
.mtitle_big.white {
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
.mtitle_big.center {
  text-align: center;
}
.mtitle_big.center:after {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media all and (max-width: 639px) {
  .mtitle_big {
    font-size: 1.6rem;
    text-align: center;
    letter-spacing: 0.1rem;
    margin-bottom: 15px;
  }
  .mtitle_big span {
    font-size: 2.4rem;
  }
}

.mtitle-vertical {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  line-height: 1.4;
  font-size: 1.8rem;
  font-weight: 600;
  max-height: 25em;
}
.mtitle-vertical span {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 3rem;
  display: block;
  color: #042461;
}
@media all and (max-width: 639px) {
  .mtitle-vertical {
    -webkit-writing-mode: inherit;
        -ms-writing-mode: inherit;
            writing-mode: inherit;
    font-size: 1.3rem;
  }
  .mtitle-vertical span {
    font-size: 2rem;
  }
}

.mtitle_sub {
  padding-left: 0.5em;
  font-weight: 700;
  line-height: 1.3;
  position: relative;
  border-left: 6px solid #042461;
  margin: 15px 0;
  font-size: 2.7rem;
  color: #2b2b2b;
  padding: 5px 0 5px 0.5em;
}
.mtitle_sub:before {
  position: absolute;
  left: -6px;
  bottom: 0;
  content: "";
  width: 6px;
  height: 50%;
  background-color: #568bec;
}
@media all and (max-width: 639px) {
  .mtitle_sub {
    font-size: 1.5rem;
  }
}

.mtitle_box.small-p {
  padding: 5px 10px;
  line-height: 1.4;
  font-size: 1.8rem;
  margin-bottom: 8px;
  background: #880000;
}
@media all and (max-width: 639px) {
  .mtitle_box.small-p {
    font-size: 1.3rem;
  }
}
.mtitle_box.subc {
  background: #568bec;
}
.mtitle_box {
  background: #042461;
  color: #fff;
  font-size: 2rem;
  position: relative;
  padding: 10px;
  margin-bottom: 15px;
  font-weight: bold;
}
.mtitle_box span {
  font-weight: normal;
  font-size: 15px;
  padding-left: 10px;
}
.mtitle_box:before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: '\f30a';
  font-weight: 900;
  display: block;
  right: -1px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #fff;
}
@media all and (max-width: 639px) {
  .mtitle_box {
    font-size: 1.4rem;
  }
}

.mtitle_box2 {
  background: #042461;
  font-size: 1.8rem;
  color: #fff;
  position: relative;
  font-weight: bold;
  overflow: hidden;
  padding: 15px 10px 15px 20px;
  margin-bottom: 25px;
  letter-spacing: 0.1rem;
}
.mtitle_box2 .small-cap {
  font-weight: 700;
  font-size: 14px;
}
.mtitle_box2:before {
  background-color: rgb(7.0297029703, 63.2673267327, 170.4702970297);
  content: "";
  display: block;
  -webkit-transform: rotate(60deg);
          transform: rotate(60deg);
  position: absolute;
  bottom: -10px;
  right: -150px;
  width: 300px;
  height: 280px;
}
@media all and (max-width: 639px) {
  .mtitle_box2 {
    font-size: 14px;
    line-height: 1.5;
    padding: 10px 10px 10px 15px;
    padding-right: 60px;
  }
  .mtitle_box2 span {
    font-size: 12px;
  }
  .mtitle_box2:before {
    width: 215px;
    right: -170px;
  }
}

.mtitle_bg {
  padding: 5px 10px;
  line-height: 1.4;
  font-size: 1.6rem;
  margin-bottom: 8px;
  background: #880000;
  color: #fff;
  text-align: center;
}
.mtitle_bg.bsc {
  background: #042461;
}
@media all and (max-width: 639px) {
  .mtitle_bg {
    font-size: 1.3rem;
  }
}
.mtitle_bg {
  font-weight: bold;
}

.mtext1 {
  font-size: 2rem;
  line-height: 1.5;
  position: relative;
  color: #042461;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  cursor: pointer;
  display: inline-block;
}
.mtext1.ls2 {
  letter-spacing: 0.2em;
}
.mtext1 span {
  font-size: 1.7rem;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}
.mtext1 span.mini {
  font-size: 13px;
  line-height: 1.4;
}
.mtext1 en {
  line-height: 1.8;
  z-index: -1;
  display: block;
  font-size: 3.5rem;
  letter-spacing: 0.2em;
  color: #568bec;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  opacity: 0.3;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin: auto;
  -webkit-transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.mtext1:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: #042461;
  -webkit-transition: width 0.4s ease;
  transition: width 0.4s ease;
}
.mtext1:hover {
  color: rgb(7.0297029703, 63.2673267327, 170.4702970297);
}
.mtext1:hover en {
  opacity: 0.6;
  letter-spacing: 0.4em;
  color: rgb(40.1542553191, 107.5319148936, 230.8457446809);
}
.mtext1:hover:after {
  width: 100%;
}
@media all and (max-width: 639px) {
  .mtext1 {
    font-size: 1.4rem;
  }
  .mtext1 span {
    font-size: 1.2rem;
  }
  .mtext1 span.mini {
    font-size: 12px;
    line-height: 1.4;
  }
  .mtext1 en {
    font-size: 2rem;
    letter-spacing: 0.1em;
  }
  .mtext1:hover en {
    letter-spacing: 0.2em;
  }
}

.mtext2.ls2 {
  letter-spacing: 0.2em;
}
.mtext2 {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.6;
}
.mtext2 span {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgb(1.9801980198, 17.8217821782, 48.0198019802);
}
.mtext2 mn {
  letter-spacing: 0.1em;
  font-size: 1.6rem;
}
@media all and (max-width: 639px) {
  .mtext2 {
    font-size: 1.6rem;
  }
  .mtext2 span {
    font-size: 1.4rem;
  }
  .mtext2 mn {
    font-size: 1.2rem;
  }
}

.mtext3 {
  letter-spacing: 0.1em;
  font-size: 3.2rem;
  line-height: 1.6;
}
@media all and (max-width: 639px) {
  .mtext3 {
    font-size: 2.2rem;
  }
}

.mtitle_category {
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-weight: 700;
}
.mtitle_category:before {
  font-family: "Font Awesome 5 Free";
  content: '\f0ca';
  font-weight: 900;
  margin-right: 5px;
  color: #042461;
}

/* btn
----------------------------------*/
.btns.mauto a {
  margin: 10px auto;
}
.btns a {
  background: #f4f4f4;
  text-align: center;
  max-width: 300px;
  width: 90%;
  color: #042461;
  border: 1px solid #042461;
  display: block;
  padding: 4px 5px;
  font-weight: bold;
  font-size: 95%;
  border-radius: 5px;
}
.btns a:hover {
  background: #042461;
  color: #fff;
}
@media all and (max-width: 639px) {
  .btns a {
    margin: auto;
  }
}

.btn01 a {
  background: #fefefe;
  text-align: center;
  width: 250px;
  height: 50px;
  margin: 20px auto;
  color: #2b2b2b;
  padding: 10px 60px;
  border: 1px solid #333;
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 1.5rem;
}
.btn01 a span {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  opacity: 1;
  white-space: nowrap;
}
.btn01 a span:nth-child(2) {
  opacity: 0;
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
}
.btn01 a:hover span:nth-child(1) {
  opacity: 0;
  -webkit-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
}
.btn01 a:hover span:nth-child(2) {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.btn01.mail {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
.btn01.mail a {
  background: #ffe92d;
  margin: 15px auto 25px;
}
.btn01.mail a:before {
  font-family: "Font Awesome 5 Free";
  content: '\f0e0';
  font-weight: 900;
  margin-right: 5px;
}
@media all and (max-width: 639px) {
  .btn01 a {
    width: 95%;
    padding: 10px 5px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  .btn01 a {
    font-size: 1rem;
  }
}
.btn01.type2 a {
  margin: 0;
  margin-top: 20px;
}

.btn02 {
  max-width: 300px;
  width: 95%;
  margin: 20px auto 20px;
}
.btn02 a {
  display: block;
  position: relative;
  padding: 15px 0;
  background-color: #042461;
  line-height: 24px;
  letter-spacing: 0.1rem;
  text-align: center;
  color: #ffffff;
}
.btn02 a i {
  display: block;
  position: absolute;
  top: 50%;
  right: -10px;
  width: 50px;
  height: 1px;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn02 a:hover {
  background-color: rgb(5.0099009901, 45.0891089109, 121.4900990099);
}
.btn02 a:hover i {
  width: 34px;
}
@media all and (max-width: 639px) {
  .btn02 {
    width: 98%;
  }
}

.btn03 {
  max-width: 280px;
  width: 95%;
  margin: auto;
}
.btn03.btn-y a {
  background: #ffe92d;
}
.btn03 a {
  background: rgb(154.7686170213, 186.2021276596, 243.7313829787);
  border: 2px solid #2b2b2b;
  text-align: center;
  min-width: 180px;
  margin: 20px auto;
  color: #2b2b2b;
  display: block;
  padding: 8px 5px;
  font-weight: bold;
  border-radius: 35px;
}
.btn03 a:hover {
  background: #880000;
  color: #fff;
}
@media all and (max-width: 639px) {
  .btn03 a {
    width: 95%;
    margin: 0 auto;
  }
}

.btn04 {
  max-width: 300px;
  width: 95%;
  margin: 20px auto 20px;
}
.btn04 a {
  display: block;
  position: relative;
  padding: 15px 0;
  background-color: rgb(200.6143617021, 217.670212766, 248.8856382979);
  border: #555 solid 1px;
  line-height: 24px;
  letter-spacing: 0.1rem;
  text-align: center;
  color: #555;
}
.btn04 a i {
  display: block;
  position: absolute;
  top: 50%;
  right: -10px;
  width: 50px;
  height: 1px;
  background-color: #555;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn04 a:hover {
  background-color: rgb(154.7686170213, 186.2021276596, 243.7313829787);
}
.btn04 a:hover i {
  width: 34px;
}
@media all and (max-width: 639px) {
  .btn04 {
    width: 98%;
  }
}

.btn-blog a {
  display: block;
  max-width: 600px;
  padding: 10px;
  text-align: center;
  font-weight: 600;
  background-image: -webkit-gradient(linear, left top, right top, from(#ffe92d), to(#fb8312));
  background-image: linear-gradient(to right, #ffe92d, #fb8312);
  font-size: 1.1em;
  line-height: 1.4;
  border-radius: 25px;
  margin: 15px auto;
}
.btn-blog a:before {
  font-family: "Font Awesome 5 Free";
  content: '\f35a';
  font-weight: 900;
  margin-right: 5px;
}

/* news
----------------------------------*/
.news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.news dt {
  width: 7.5em;
  padding: 3px 5px;
  background: #568bec;
  text-align: center;
  font-weight: bold;
  color: #333;
}
.news dd {
  padding: 5px;
  background: #fff;
  width: calc(100% - 8.5em);
  margin-left: 10px;
}
.news dd a {
  color: #77ddff;
}
.news dt:not(:last-child),
.news dd:not(:last-child) {
  margin-bottom: 5px;
}

.treat-dl {
  padding: 8px;
  background: #f0f0f0;
  font-size: 0.9em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 10px;
}
.treat-dl dt {
  width: 5em;
  padding: 3px;
  color: #042461;
}
.treat-dl dd {
  width: calc(100% - 6em);
}

.news-bl0 dt {
  float: left;
  width: 6em;
  padding: 3px 5px;
  line-height: 1.3;
  background: #880000;
  border-radius: 5px;
  color: #fff;
  font-weight: 400;
  text-align: center;
}
.news-bl0 dd {
  padding: 0 0 10px 6.5em;
  line-height: 1.6;
  border-bottom: 1px dotted #cccccc;
  margin: 0 0 10px;
}
.news-bl0 dd:last-child {
  margin: 0;
  border-bottom: none;
}

.news-bl dt {
  float: left;
  width: 8.5em;
  padding: 3px 5px;
  line-height: 1.3;
  border: 1px solid #2b2b2b;
  border-radius: 15px;
  color: #2b2b2b;
  font-weight: 400;
  text-align: center;
}
.news-bl dd {
  padding: 0 0 10px 9.5em;
  line-height: 1.6;
  border-bottom: 1px dotted #dddddd;
  margin: 0 0 10px;
}
.news-bl dd a {
  color: #2b2b2b;
  background-image: -webkit-gradient(linear, right top, left top, from(rgb(9.0495049505, 81.4455445545, 219.4504950495)), to(#042461));
  background-image: linear-gradient(to left, rgb(9.0495049505, 81.4455445545, 219.4504950495), #042461);
  padding-bottom: 0.25em;
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  -webkit-transition: background-size 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: background-size 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.news-bl dd a:hover {
  background-position: 0 100%;
  background-size: 100% 1px;
}
.news-bl dd:last-child {
  margin: 0;
  border-bottom: none;
}
@media all and (max-width: 639px) {
  .news-bl dt {
    float: none;
  }
  .news-bl dd {
    padding: 5px 0 10px;
  }
}

.news-bl2 dt {
  float: left;
  width: 8.5em;
  line-height: 1.3;
  color: #2b2b2b;
  font-weight: 400;
  text-align: center;
}
.news-bl2 dt:before {
  font-family: "Font Awesome 5 Free";
  content: '\f0da';
  font-weight: 900;
  margin-right: 10px;
  color: #042461;
}
.news-bl2 dd {
  padding: 0 0 10px 9em;
  line-height: 1.6;
  border-bottom: 1px dotted #dddddd;
  margin: 0 0 10px;
}
.news-bl2 dd a {
  color: #2b2b2b;
  background-image: -webkit-gradient(linear, left top, right top, from(#042461), to(rgb(131.8457446809, 170.4680851064, 241.1542553191)));
  background-image: linear-gradient(to right, #042461, rgb(131.8457446809, 170.4680851064, 241.1542553191));
  padding-bottom: 0.25em;
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  -webkit-transition: background-size 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: background-size 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.news-bl2 dd a:hover {
  background-position: 0 100%;
  background-size: 100% 1px;
}
.news-bl2 dd:last-child {
  margin: 0;
  border-bottom: none;
}
@media all and (max-width: 639px) {
  .news-bl2 dt {
    float: none;
  }
  .news-bl2 dd {
    padding: 5px 0 10px;
  }
}

.top-blog-wrap .news-bl dd:first-of-type a {
  color: rgb(1.9801980198, 17.8217821782, 48.0198019802);
}
.top-blog-wrap .news-bl dd:first-of-type a:before {
  color: #fb8312;
  content: "New";
  margin-right: 4px;
}

/* page-title
----------------------------------*/
.page-title {
  position: relative;
  z-index: 1;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27687/page-tile.webp) no-repeat 50% 60%/cover;
  width: 100%;
  /*margin-top: 10px;*/
}
.page-title:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: rgba(0, 0, 0, 0.2);
}
.page-title .inner {
  height: 400px;
  max-width: 1200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
}
.page-title .page-lead {
  margin: 0 auto;
  color: #042461;
  border-radius: 20px 0 20px 0;
  padding: 20px 0;
  font-size: 1.6rem;
  font-weight: 800;
  text-align: center;
  color: #fefefe;
  letter-spacing: 0.1em;
}
.page-title .page-lead span {
  letter-spacing: 0.2em;
  display: block;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 800;
  font-size: 3.4rem;
}
@media all and (max-width: 800px) {
  .page-title {
    background-attachment: scroll;
  }
  .page-title .inner {
    width: 100%;
    height: 220px;
  }
  .page-title .page-lead {
    width: 70%;
    border-radius: 10px 10px 0 0;
  }
}
@media all and (max-width: 639px) {
  .page-title .inner {
    height: 200px;
  }
  .page-title .page-lead {
    padding: 8px 0;
    font-size: 1.4rem;
    width: 80%;
  }
  .page-title .page-lead span {
    font-size: 2rem;
  }
}

.bg-01 {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(4, 36, 97, 0.1)), color-stop(50%, rgba(4, 36, 97, 0.1)), color-stop(50.1%, rgba(240, 240, 240, 0.5)), to(rgba(240, 240, 240, 0.5)));
  background-image: linear-gradient(to right, rgba(4, 36, 97, 0.1) 0%, rgba(4, 36, 97, 0.1) 50%, rgba(240, 240, 240, 0.5) 50.1%, rgba(240, 240, 240, 0.5) 100%);
}
@media all and (max-width: 639px) {
  .bg-01 {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(4, 36, 97, 0.1)), color-stop(55%, rgba(4, 36, 97, 0.1)), color-stop(55.1%, rgba(240, 240, 240, 0.5)), to(rgba(240, 240, 240, 0.5)));
    background-image: linear-gradient(to bottom, rgba(4, 36, 97, 0.1) 0%, rgba(4, 36, 97, 0.1) 55%, rgba(240, 240, 240, 0.5) 55.1%, rgba(240, 240, 240, 0.5) 100%);
  }
}

.bg-02 {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27687/bg-contact.webp);
}

.bg-03 {
  margin-top: 40px;
  background: url(../img/bg-03.jpg) no-repeat center/cover;
  background-attachment: fixed;
}
@media all and (max-width: 1200px) {
  .bg-03 {
    background-attachment: scroll;
  }
}

.bg-04 {
  background: url(../img/bg-04.jpg) no-repeat center bottom/cover;
  margin: 0 auto 25px;
  max-width: calc(100% - 50px);
  margin-left: auto;
  margin-right: auto;
}
@media all and (max-width: 800px) {
  .bg-04 {
    max-width: calc(100% - 20px);
  }
}
.bg-04 {
  padding-bottom: 30px;
}

.bg-gradient {
  background-image: -webkit-gradient(linear, left top, right top, from(rgb(240.6, 229.4, 215)), to(#fcfcfc));
  background-image: linear-gradient(to right, rgb(240.6, 229.4, 215) 0%, #fcfcfc 100%);
}

.bg-contents {
  position: relative;
}
.bg-contents:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 300px;
  z-index: -1;
  background: #042461;
  opacity: 0.8;
}
@media all and (max-width: 800px) {
  .bg-contents:before {
    height: 78%;
    bottom: 2%;
  }
}

.bg-maru1.tm0 {
  margin: 0 auto 40px;
}
.bg-maru1.bg-sub {
  background: rgba(86, 139, 236, 0.05);
}
.bg-maru1 {
  background: #feffee;
  max-width: calc(100% - 50px);
  margin-left: auto;
  margin-right: auto;
}
@media all and (max-width: 800px) {
  .bg-maru1 {
    max-width: calc(100% - 20px);
  }
}
.bg-maru1 {
  margin: 40px auto;
}

.bg-maru2 {
  background: #f0f0f0;
  background-image: -webkit-gradient(linear, left top, right top, from(#f0f0f0), to(#f9f9f9));
  background-image: linear-gradient(to right, #f0f0f0 0%, #f9f9f9 100%);
  max-width: calc(100% - 50px);
  margin-left: auto;
  margin-right: auto;
}
@media all and (max-width: 800px) {
  .bg-maru2 {
    max-width: calc(100% - 20px);
  }
}
.bg-maru2 {
  margin: 40px auto;
}
.bg-maru2.opa {
  background: rgba(240, 240, 240, 0.4);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(240, 240, 240, 0.4)), to(rgba(249, 249, 249, 0.2)));
  background-image: linear-gradient(to right, rgba(240, 240, 240, 0.4) 0%, rgba(249, 249, 249, 0.2) 100%);
}
.bg-maru2.tm0 {
  margin: 0 auto 40px;
}

.bg-base {
  background: rgba(4, 36, 97, 0.1);
}
.bg-base.tm0 {
  margin: 0 auto 40px;
}

.bg-base2 {
  background: rgba(240, 240, 240, 0.1);
}

.bg-blue {
  background: #77ddff;
}

.bg-pale {
  background: #e0ebff;
}

.bg-gray.tm0 {
  margin: 0 auto 40px;
}
.bg-gray {
  position: relative;
  background: #f0f0f0;
}

.bg-beige {
  background: rgba(246, 239, 230, 0.8);
}

/* tbl
----------------------------------*/
.timetable {
  width: 100%;
  margin: 0 auto;
}
.timetable th,
.timetable td {
  text-align: center;
  font-size: 1.3rem;
  font-weight: bold;
  vertical-align: middle;
  padding: 3px 5px;
  border: 0.9px solid #880000;
}
@media all and (max-width: 639px) {
  .timetable th,
  .timetable td {
    font-size: 1.1rem;
    padding: 3px;
  }
}
.timetable td {
  color: #2b2b2b;
  background: #fff;
}
.timetable td .circle {
  color: #042461;
  font-size: 1.5rem;
  font-weight: 600;
}
@media all and (max-width: 639px) {
  .timetable td .circle {
    font-size: 10px;
  }
}
.timetable td .yasumi {
  color: #2b2b2b;
  font-size: 1.4rem;
  font-weight: 600;
}
@media all and (max-width: 639px) {
  .timetable td .yasumi {
    font-size: 10px;
  }
}
.timetable td .time-txt {
  font-size: 12px;
  line-height: 1.3;
}
.timetable .tr-01 td {
  background: rgba(4, 36, 97, 0.2);
  text-align: center;
  color: #2b2b2b;
}
.timetable th {
  color: #fff;
  background: #042461;
}

.tbl {
  width: 100%;
  border-collapse: collapse;
  border-top: 2px solid #042461;
}
.tbl th, .tbl td {
  padding: 20px 15px;
  vertical-align: middle;
  border-bottom: 1px solid #b1b1b1;
  text-align: left;
  line-height: 1.6;
}
.tbl th {
  background: #ebebeb;
  color: #333;
  font-weight: bold;
  width: 25%;
  font-size: 1.5rem;
  position: relative;
}
.tbl th.th-w {
  width: 200px;
}
.tbl td {
  background: #fff;
  color: #555;
  font-size: 1.5rem;
}
.tbl td .note {
  display: inline-block;
  margin-top: 5px;
  font-size: 1.3rem;
  color: #888;
}
.tbl td .price {
  font-weight: bold;
  color: #042461;
  font-size: 1.8rem;
}
.tbl td .sub-txt {
  font-size: 1.3rem;
  color: #777;
}
@media all and (max-width: 639px) {
  .tbl {
    border-top: none;
  }
  .tbl.rsp {
    display: block;
  }
  .tbl.rsp tbody, .tbl.rsp tr, .tbl.rsp th, .tbl.rsp td {
    display: block;
    width: 100% !important;
  }
  .tbl.rsp tr {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
  }
  .tbl.rsp th {
    padding: 10px 15px;
    background: #042461;
    color: #fff;
    border-bottom: none;
    font-size: 1.4rem;
  }
  .tbl.rsp td {
    padding: 15px;
    border-bottom: none;
    font-size: 1.4rem;
  }
}

.tbl_new {
  width: 100%;
}
@media all and (max-width: 1200px) {
  .tbl_new {
    width: 95%;
  }
}
.tbl_new tr.bg-g th {
  font-weight: 700;
  color: rgb(4.75, 4.75, 4.75);
}
.tbl_new tr.bg-g:nth-child(odd) th, .tbl_new tr.bg-g:nth-child(odd) td {
  background: #f0f0f0;
}
.tbl_new tr th,
.tbl_new tr td {
  vertical-align: middle;
  padding: 15px 10px;
}
.tbl_new tr th {
  font-weight: 700;
  color: rgb(59.5, 0, 0);
}
.tbl_new tr:nth-child(odd) th, .tbl_new tr:nth-child(odd) td {
  background: rgb(233.4, 241.5, 252.3);
}

.tbl-border2 {
  width: 100%;
}
.tbl-border2 th,
.tbl-border2 td {
  padding: 5px;
  vertical-align: middle;
  border-bottom: 0.9px dotted #ccc;
  line-height: 1.6;
}

.tbl-border {
  width: 100%;
}
.tbl-border tr:first-child th,
.tbl-border tr:first-child td {
  border-top: 0.9px solid #aaa;
}
.tbl-border th,
.tbl-border td {
  padding: 15px;
  vertical-align: middle;
  border-bottom: 0.9px solid #aaa;
  line-height: 1.6;
}
@media all and (max-width: 639px) {
  .tbl-border th,
  .tbl-border td {
    padding: 10px 5px;
  }
}
.tbl-border th {
  color: #2b2b2b;
}
@media all and (max-width: 639px) {
  .tbl-border th {
    width: 30%;
  }
}

.tbl-plain {
  width: 100%;
}
.tbl-plain th,
.tbl-plain td {
  padding: 10px 15px;
  border-top: 1px solid #555;
  border-bottom: 1px solid #555;
}
.tbl-plain th {
  color: #042461;
  width: 30%;
}
@media all and (max-width: 639px) {
  .tbl-plain th {
    width: 35%;
  }
}

.company {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 5px;
}
.company th,
.company td {
  padding: 10px;
  vertical-align: middle;
}
.company th {
  width: 15%;
  position: relative;
  background: #880000;
  color: #fff;
  font-weight: bold;
}
.company th::after {
  left: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: #f9f9f9;
  border-width: 10px;
  border-left-color: #880000;
  margin-top: -10px;
}
.company td {
  background: #f9f9f9;
  padding-left: 20px;
}

.tbl0 {
  width: 100%;
}
.tbl0 th,
.tbl0 td {
  padding: 3px 5px;
  border: 0;
  border-bottom: 1px dashed #ddd;
}
.tbl0 th {
  padding-left: 0;
  background: none;
  text-align: left;
  width: 35%;
  color: #111;
}
.tbl0 th:after, .tbl0 th:before {
  display: none;
}
@media all and (max-width: 639px) {
  .tbl0 th {
    width: 60%;
  }
}

/* ggmap
----------------------------------*/
.ggmap {
  position: relative;
  padding-bottom: 30.25%;
  height: 0;
}
@media all and (max-width: 639px) {
  .ggmap.ggmap2 {
    padding-bottom: 90%;
  }
}
@media all and (max-width: 639px) {
  .ggmap {
    padding-bottom: 46.25%;
  }
}
.ggmap {
  overflow: hidden;
}
.ggmap iframe,
.ggmap object,
.ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* list
----------------------------------*/
.service-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  width: calc(100% - 10px);
  margin-left: auto;
  margin-right: auto;
  padding: 15px 0 0;
}
.service-list li:nth-child(even) .service-title {
  background: #042461;
}
.service-list li:nth-child(even) .service-title:before {
  border-color: transparent black transparent transparent;
}
.service-list li {
  position: relative;
  display: block;
  background: #fdfdfd;
  -webkit-filter: drop-shadow(0 0 10px rgba(43, 43, 43, 0.08));
          filter: drop-shadow(0 0 10px rgba(43, 43, 43, 0.08));
}
.service-list li .service-img {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
  height: auto;
  overflow: hidden;
  background: #000;
}
.service-list li .service-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  -o-object-position: center center;
     object-position: center center;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.service-list li .service-txt {
  position: relative;
  padding: 50px 25px 30px;
}
.service-list li .service-txt p {
  color: #151515;
  line-height: 1.6;
}
.service-list li .service-title {
  position: absolute;
  top: -10px;
  left: -10px;
  display: table;
  background: #042461;
  color: #fff;
  font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
}
@media all and (max-width: 800px) {
  .service-list li .service-title {
    font-size: 1.4rem;
  }
}
@media all and (max-width: 639px) {
  .service-list li .service-title {
    font-size: 1.25rem;
    letter-spacing: 0.15em;
  }
}
.service-list li .service-title {
  letter-spacing: 0.15em;
  padding: 10px 15px;
  max-width: 95%;
}
.service-list li .service-title span {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  line-height: 1.6;
}
.service-list li .service-title:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 0;
  border-color: transparent black transparent transparent;
  position: absolute;
  left: 0;
  bottom: -10px;
}
@media all and (max-width: 1200px) {
  .service-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media all and (max-width: 800px) {
  .service-list {
    gap: 25px;
    width: calc(100% - 5px);
  }
  .service-list li a .service-txt {
    padding: 35px 10px 20px;
  }
  .service-list li a .service-title {
    top: -20px;
    padding: 5px 10px;
  }
  .service-list li a .service-title span {
    display: block;
  }
}
@media all and (max-width: 639px) {
  .service-list {
    gap: 20px;
    grid-template-columns: repeat(1, 1fr);
  }
}

.list_common.disc li:before {
  content: "・";
  margin-right: 5px;
  color: #880000;
}
.list_common li {
  padding-bottom: 5px;
  padding-left: 1rem;
  margin-bottom: 8px;
  border-bottom: 1px dashed #ccc;
}
.list_common li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.list_common li .check_num {
  width: 30px;
  height: 30px;
  background: #042461;
  color: #fff;
  border-radius: 100px;
  line-height: 30px;
  text-align: center;
  font-weight: bold;
  display: inline-block;
  margin-right: 10px;
}

.list_check {
  padding: 10px;
  background: #f4f4f4;
}
.list_check.bg-w {
  background: #fff;
}
.list_check.bg-none li {
  font-weight: normal;
}
.list_check.bg-none {
  background: none;
}
.list_check.iconr li {
  font-weight: normal;
}
.list_check.iconr li:before {
  font-family: "Font Awesome 5 Free";
  content: '\f054';
  font-weight: 900;
  margin-right: 10px;
  color: #880000;
}
.list_check li {
  padding-bottom: 5px;
  font-weight: bold;
}
.list_check li span {
  font-weight: normal;
  font-size: 90%;
  display: block;
  padding: 10px;
  background: rgba(246, 239, 230, 0.2);
  margin-top: 10px;
}
.list_check li:not(:last-child) {
  margin-bottom: 10px;
  border-bottom: 1px dashed #ccc;
}
.list_check li:last-child {
  padding-bottom: 0;
}
.list_check li:before {
  font-family: "Font Awesome 5 Free";
  content: '\f054';
  font-weight: 900;
  margin-right: 10px;
  color: rgb(5.0099009901, 45.0891089109, 121.4900990099);
}
.list_check.w49 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: none;
}
.list_check.w49 li {
  width: 49%;
  margin: 0.5%;
  padding: 5px;
  border-bottom: 0px dashed #ccc;
  background: rgba(86, 139, 236, 0.2);
}
@media all and (max-width: 639px) {
  .list_check li {
    width: 98%;
    margin: 0 auto 10px;
    font-size: 1.3rem;
  }
}

.list_check2.p2 li {
  padding: 2px;
}
.list_check2 li {
  display: inline-block;
  margin-bottom: 5px !important;
  margin-right: 1%;
  padding: 3px 10px;
  background: rgb(252.75, 251, 248.75);
  border-radius: 5px;
}
.list_check2 li:before {
  font-family: "Font Awesome 5 Free";
  content: '\f138';
  font-weight: 900;
  margin-right: 6px;
  color: #880000;
}
@media all and (max-width: 639px) {
  .list_check2 li {
    width: 100%;
    margin: 0 auto 5px;
  }
}

.list_check3.bd_none li:not(:last-child) {
  border-bottom: 0px dashed #ccc;
}
.list_check3 li {
  padding-bottom: 5px;
  /*font-weight: bold;*/
}
.list_check3 li:not(:last-child) {
  margin-bottom: 10px;
  border-bottom: 1px dashed #ccc;
}
.list_check3 li:last-child {
  padding-bottom: 0;
}
.list_check3 li:before {
  font-family: "Font Awesome 5 Free";
  content: '\f14a';
  font-weight: 900;
  margin-right: 10px;
  color: #880000;
}

.list_check4 li:before {
  font-family: "Font Awesome 5 Free";
  content: '\f0a9';
  font-weight: 900;
  margin-right: 　5px;
  color: #568bec;
}

.ol-list {
  counter-reset: number;
  /* 名前を付けたカウンターをリセット */
  list-style: none;
}
.ol-list.w50 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.ol-list.w50 li {
  width: 46%;
  margin-right: 6.5%;
}
.ol-list.w50 li:nth-child(2n) {
  margin-right: 0;
}
@media all and (max-width: 1200px) {
  .ol-list.w50 li {
    width: 100%;
    margin-right: 0;
  }
}
.ol-list > li {
  line-height: 2;
  border-bottom: 1px dashed #eee;
  margin-bottom: 10px;
  padding: 5px 0 8px;
  padding-left: 50px;
  font-weight: bold;
  position: relative;
  line-height: 1.6;
  font-weight: bold;
  font-size: 1.7rem;
}
.ol-list > li .small {
  font-weight: normal;
  display: block;
  padding: 10px;
  line-height: 1.6;
  font-size: initial;
}
.ol-list > li:before {
  counter-increment: number;
  content: counter(number);
  background: #880000;
  position: absolute;
  width: 2em;
  height: 2em;
  text-align: center;
  font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 2rem;
  line-height: 2em;
  color: #fefefe;
  left: 0;
  top: 0px;
  border-radius: 100%;
}
@media all and (max-width: 639px) {
  .ol-list > li {
    font-size: 1.3rem;
  }
  .ol-list > li span {
    font-size: 0.9em;
  }
  .ol-list > li:before {
    font-size: 1.8rem;
  }
}

.ol-list2 {
  padding-left: 0.5em;
  counter-reset: number;
  /* 名前を付けたカウンターをリセット */
  list-style: none;
  /* olが数字を付けることをキャンセル */
}
.ol-list2 > li {
  line-height: 1.4;
  border-bottom: 1px dashed #eee;
  margin-bottom: 10px;
  padding: 5px 0 8px;
  padding-left: 35px;
  font-weight: bold;
  position: relative;
  line-height: 1.4;
  font-weight: bold;
}
.ol-list2 > li:last-child {
  border-bottom: 0px dashed #eee;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.ol-list2 > li:before {
  counter-increment: number;
  content: counter(number);
  background: #880000;
  position: absolute;
  width: 1.6em;
  height: 1.6em;
  text-align: center;
  font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
  line-height: 1.6em;
  color: #fefefe;
  left: 0;
  top: 0px;
  border-radius: 100%;
}
@media all and (max-width: 639px) {
  .ol-list2 > li {
    padding-left: 25px;
  }
  .ol-list2 > li:before {
    font-size: 1.3rem;
    line-height: 1.3em;
    width: 1.3em;
    height: 1.3em;
  }
}

.ol-list3 {
  counter-reset: list;
  list-style-type: none;
}
.ol-list3.w50 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.ol-list3.w50 li {
  width: 46%;
  margin-right: 6.5%;
}
.ol-list3.w50 li:nth-child(2n) {
  margin-right: 0;
}
@media all and (max-width: 1200px) {
  .ol-list3.w50 li {
    width: 100%;
    margin-right: 0;
  }
}
.ol-list3 li {
  position: relative;
  line-height: 30px;
  margin: 7px;
  padding: 0 0 15px 10px;
}
.ol-list3 li:last-child {
  padding: 0 0 0 10px;
}
.ol-list3 li:before {
  counter-increment: list;
  content: counter(list);
  position: absolute;
  top: 0;
  left: -35px;
  width: 30px;
  height: 30px;
  text-align: center;
  color: #fff;
  line-height: 30px;
  z-index: 1;
}
.ol-list3 li:after {
  content: "";
  position: absolute;
  top: 3px;
  left: -32px;
  width: 25px;
  height: 25px;
  background: #880000;
  -webkit-box-shadow: 4px 4px 0 #568bec;
          box-shadow: 4px 4px 0 #568bec;
  color: #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.list_profile li {
  font-size: 0.9em;
  padding: 5px;
  border-bottom: 0.9px solid #dbbf9b;
}
.list_profile li:before {
  content: "＋";
  margin-right: 5px;
  color: #042461;
}

/* etc
----------------------------------*/
.cut {
  overflow: hidden;
  zoom: 1;
}

.w300 {
  width: 300px;
}

.w350 {
  width: 350px;
}

.spbr {
  display: none;
}

.br_tablet {
  display: none;
}
@media all and (max-width: 800px) {
  .br_tablet {
    display: block;
  }
}

.color1 {
  color: #042461;
}

.color2 {
  color: #ae1327;
}

.color3 {
  color: #2b2b2b;
}

.color4 {
  color: #568bec;
}

.color5 {
  color: #880000;
}

.color6 {
  color: #550000;
}

.num {
  font-weight: 600;
  color: rgb(110.5, 0, 0);
}
.num span {
  display: block;
  color: #888;
}
.num a {
  line-height: 1.3;
  color: #042461;
  font-size: 3.5rem;
  text-align: center;
  margin-left: 5px;
}
@media all and (max-width: 639px) {
  .num a {
    font-size: 2.5rem;
  }
}
.num a:hover {
  color: #880000;
}

.telbox {
  max-width: 600px;
  margin: 0 auto 40px;
  text-align: center;
}

.recruit-contact {
  text-align: center;
  padding: 40px 20px;
  color: #333;
}
.recruit-contact .contact-lead {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 25px;
  letter-spacing: 0.05em;
}
@media all and (max-width: 639px) {
  .recruit-contact .contact-lead {
    font-size: 1.4rem;
  }
}
.recruit-contact .tel-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.recruit-contact .tel-link a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  color: #042461;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.recruit-contact .tel-link a:hover {
  opacity: 0.7;
}
.recruit-contact .tel-link a i {
  background: #042461;
  color: #fff;
  padding: 8px;
  border-radius: 4px;
  font-size: 2rem;
  margin-right: 15px;
}
.recruit-contact .tel-link a .tel-num {
  font-size: 4.8rem;
  font-weight: 900;
  line-height: 1;
  font-family: "Arial Black", sans-serif;
  letter-spacing: 0.02em;
}
.recruit-contact .tel-link .tel-time {
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  color: #555;
  margin-top: 5px;
}
@media all and (max-width: 639px) {
  .recruit-contact .tel-link a .tel-num {
    font-size: 2.2rem;
  }
  .recruit-contact .tel-link a i {
    font-size: 1.6rem;
    padding: 6px;
    margin-right: 10px;
  }
  .recruit-contact .tel-link .tel-time {
    font-size: 1.2rem;
  }
}

/* breadcrumb
----------------------------------*/
.breadcrumb {
  max-width: 1200px;
  margin: 20px auto 20px;
  font-size: 1.2rem;
  font-weight: 400;
}
.breadcrumb li {
  display: inline;
  color: #333;
}
.breadcrumb li a {
  color: #042461;
}
.breadcrumb li a span {
  color: #880000;
}
.breadcrumb li + li:before {
  margin: 0 10px;
  content: ">";
}

/* form
----------------------------------*/
.form {
  margin: 0 auto;
  width: 90%;
}
.form dl dt {
  float: left;
  width: 280px;
  padding-top: 20px;
  font-weight: bold;
}
.form dl dt span {
  color: #fff;
  background: #ae1327;
  padding: 1px 5px;
  margin-right: 5px;
  font-size: 11px;
  border-radius: 10px;
  position: relative;
  top: -2px;
}
.form dl dt span.nini {
  color: #fff;
  background: #777;
  padding: 1px 5px;
  margin-right: 5px;
  font-size: 11px;
  border-radius: 10px;
  position: relative;
  top: -2px;
}
.form dl dd {
  padding-left: 280px;
  padding-bottom: 20px;
  padding-top: 23px;
  line-height: 1.5;
  border-bottom: 1px dotted #cccccc;
}
.form dl dd:last-child {
  border-bottom: none;
}
.form .textarea,
.form textarea {
  border: 1px solid #ddd;
  padding: 5px;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
}
.form .textarea {
  height: 30px;
}
.form .textarea02 {
  width: 48.5%;
  margin-right: 3%;
}
.form .textarea02:last-child {
  margin-right: 0;
}
.form .textarea03 {
  width: 20%;
  margin-right: 1%;
}
.form button {
  cursor: pointer;
  display: block;
  color: #111;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  font-family: "-apple-system", BlinkMacSystemFont, "Helvetica Neue", Roboto, "Droid Sans", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, Meiryo, sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 8px 5px;
  margin: 0 auto;
  width: 250px;
  background: #042461;
  border: 1px solid #042461;
  border-radius: 25px;
  color: #fff;
}
.form button:hover {
  background: #fff;
  color: #042461;
}
.form button:before {
  font-family: "Font Awesome 5 Free";
  content: '\f0e0';
  font-weight: 900;
  margin-right: 10px;
}
.form .select-wrap {
  position: relative;
  overflow: hidden;
  display: inline-block;
  min-width: 192px;
  min-width: 12em;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  color: #333;
}
.form .select-wrap select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  z-index: 2;
  display: block;
  width: 200%;
  width: -webkit-calc(100% + 5em);
  margin: 0;
  padding: 11px 35px 11px 11px;
  padding: 0.6875rem 2.1875rem 0.6875rem 0.6875rem;
  background: transparent;
  border: 0;
  outline: none;
  line-height: 1.5;
}
.form .entypo-down-open-mini:before {
  font-family: "FontAwesome";
  content: "\f0ab";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 12px;
  right: 0.75rem;
  margin-top: -8px;
  margin-top: -0.5rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  color: #042461;
}
.form label.radio_text {
  cursor: pointer;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
  padding-left: 20px;
  display: inline-block;
}
.form label.radio_text:before {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 1px solid #ccc;
  border-radius: 50%;
  left: 0px;
  top: 2px;
  content: "";
  z-index: 3;
}
.form label.radio_text:after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 100%;
  left: 2px;
  top: 4px;
  background-color: #042461;
  z-index: 1;
}
.form label.radio_text input[type=radio] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: 2;
  width: 20px;
  height: 20px;
  left: -23px;
  top: 0px;
  margin: 0px;
  -webkit-box-shadow: 20px -1px #fff;
          box-shadow: 20px -1px #fff;
}
.form label.radio_text input[type=radio]:checked {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.form label.radio_text input[type=radio]:focus {
  opacity: 0.2;
  -webkit-box-shadow: 20px -1px #eeebda;
          box-shadow: 20px -1px #eeebda;
}
.form label.checkbox_text {
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  margin: 0 20px 5px 0;
  overflow: hidden;
  display: inline-block;
}
.form label.checkbox_text:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0px;
  top: 0;
  border: 1px solid #ccc;
  z-index: 3;
  padding: 1px;
}
.form label.checkbox_text:after {
  content: "";
  position: absolute;
  top: 40%;
  left: 5px;
  display: block;
  margin-top: -9px;
  width: 8px;
  height: 12px;
  border-right: 3px solid #042461;
  border-bottom: 3px solid #042461;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: 1;
}
.form label.checkbox_text input[type=checkbox] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  left: -40px;
  width: 20px;
  height: 20px;
  display: block;
  -webkit-box-shadow: 41px 0px #fff;
          box-shadow: 41px 0px #fff;
  z-index: 2;
  margin: 0px;
  padding: 0px;
}
.form label.checkbox_text input[type=checkbox]:checked {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.form label.checkbox_text input[type=checkbox]:checked:focus {
  -webkit-box-shadow: 40px 0px #666;
          box-shadow: 40px 0px #666;
  opacity: 0.1;
}
.form label.checkbox_text input[type=checkbox]:focus {
  -webkit-box-shadow: 41px 0px #eee;
          box-shadow: 41px 0px #eee;
}

.fm-txt {
  font-size: 1.4rem;
  background: rgba(255, 255, 255, 0.5);
  padding: 5px;
}

.select-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.select-content .select-txt {
  padding: 0 5px;
}
@media all and (max-width: 639px) {
  .select-content {
    display: block;
    /*.select-wrap, .select-txt{
     display: inline-block;
    }*/
  }
}

.form-txt {
  font-size: 0.9em;
  margin-bottom: 5px;
}

.memo {
  border: 2px solid rgba(246, 239, 230, 0.5);
  background: url(../img/bg01.jpg);
  padding: 15px;
}

.policy {
  padding: 30px;
}

.thanks {
  padding: 40px;
  border: 3px solid #042461;
  -webkit-box-shadow: 0 0 0 8px rgba(4, 36, 97, 0.2);
          box-shadow: 0 0 0 8px rgba(4, 36, 97, 0.2);
  max-width: 700px;
  margin: 0 auto;
  background: #fefefe;
}
@media all and (max-width: 639px) {
  .thanks {
    max-width: 90%;
    padding: 30px 20px;
  }
}

.shadow {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.mtitle_small {
  position: relative;
  font-size: 1.8rem;
  color: #880000;
  margin-bottom: 20px;
  font-weight: bold;
}
.mtitle_small.ls2 {
  letter-spacing: 0.2em;
}
.mtitle_small:before {
  content: "";
  width: 30px;
  height: 1px;
  background-color: #bb0000;
  position: absolute;
  left: 0;
  bottom: -10px;
}
@media all and (max-width: 639px) {
  .mtitle_small {
    font-size: 1.5rem;
  }
}

.mtitle_small2 {
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px;
  font-weight: bold;
  color: #2b2b2b;
}
.mtitle_small2.white {
  color: #fff;
}
.mtitle_small2:not(:first-of-type) {
  margin-top: 20px;
}
.mtitle_small2:before {
  content: "";
  background-color: #042461;
  width: 10px;
  height: 4px;
  position: absolute;
  top: 0.6em;
  left: 0;
}

.mtitle_line {
  font-size: 2rem;
  padding-bottom: 8px;
  background: url(../img/bg_mtitle_line.gif) repeat-x left bottom;
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: 0.2rem;
}
@media all and (max-width: 639px) {
  .mtitle_line {
    font-size: 1.6rem;
  }
}

/* gallery(lightbox)
----------------------------------*/
.gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.gallery.mb0 {
  margin-bottom: -15px;
}
.gallery.p_none li p {
  display: none;
}
.gallery.col2 li {
  width: calc((100% - 10px) / 2);
  margin: 0 10px 15px 0;
}
.gallery.col2 li:nth-child(2n) {
  margin-right: 0;
}
.gallery.col2 li a img {
  height: 280px;
}
.gallery.col3 li h3 {
  margin: 10px 0;
  text-align: center;
  color: #880000;
  letter-spacing: 0.2em;
}
.gallery.col3 li p {
  text-align: left;
}
.gallery.col3 li {
  width: calc((100% - 20px) / 3);
  margin: 0 10px 15px 0;
}
.gallery.col3 li:nth-child(3n) {
  margin-right: 0;
}
.gallery.col3 li a img {
  height: 280px;
}
@media all and (max-width: 639px) {
  .gallery.col3 li a img {
    height: 180px;
  }
}
.gallery.col4 li h3 {
  margin: 10px 0;
  text-align: center;
  color: #880000;
  letter-spacing: 0.2em;
}
.gallery.col4 li p {
  text-align: left;
}
.gallery.col4 li {
  width: calc((100% - 30px) / 4);
  margin: 0 10px 15px 0;
}
.gallery.col4 li:nth-of-type(4n) {
  margin-right: 0;
}
.gallery.col4 li a img {
  height: 200px;
}
.gallery li a {
  /*display: block;*/
  text-align: center;
  padding: 0px;
}
.gallery li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  /*IE対策*/
}
.gallery li p {
  line-height: 1.4;
  margin-top: 5px;
  font-weight: normal;
}

@media all and (max-width: 800px) {
  .gallery.col2 li {
    width: 100%;
    margin: 0 0% 20px 0;
  }
  .gallery.col2 li:last-child {
    margin: 0 0% 0 0;
  }
  .gallery.col2 li a img {
    height: 140px;
  }
  .gallery.col3 li {
    width: 48%;
    margin: 0 4% 20px 0;
  }
  .gallery.col3 li:nth-child(2n) {
    margin-right: 0;
  }
}
@media all and (max-width: 800px) and (max-width: 639px) {
  .gallery.col3 li:nth-child(2n) {
    margin-right: auto;
  }
}
@media all and (max-width: 800px) and (max-width: 639px) {
  .gallery.col3 li {
    width: 90%;
    margin: 0 auto 20px;
  }
}
@media all and (max-width: 800px) {
  .gallery.col3 li:nth-child(3n) {
    margin: 0 4% 20px 0;
  }
}
@media all and (max-width: 800px) and (max-width: 639px) {
  .gallery.col3 li:nth-child(3n) {
    margin: 0 auto 20px;
  }
}
@media all and (max-width: 800px) {
  .gallery.col3 li a {
    height: 250px;
  }
}
@media all and (max-width: 800px) and (max-width: 639px) {
  .gallery.col3 li a {
    height: 200px;
  }
}
@media all and (max-width: 800px) {
  .gallery.col4 li {
    width: 49%;
    margin: 0 2% 2% 0;
  }
  .gallery.col4 li:nth-child(2n) {
    margin-right: 0;
  }
  .gallery.col4 li a img {
    height: 100px;
  }
}
.list2sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.list2sp li {
  width: 49%;
  margin: 0 2% 20px 0;
}
.list2sp li:nth-child(2n) {
  margin-right: 0;
}

.list2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.list2.mb0 {
  margin-bottom: -20px;
}
.list2 > li,
.list2 .child {
  width: 49%;
  margin: 0 2% 20px 0;
}
.list2 > li:nth-child(2n),
.list2 .child:nth-child(2n) {
  margin-right: 0;
}
@media all and (max-width: 639px) {
  .list2 > li:nth-child(2n),
  .list2 .child:nth-child(2n) {
    margin-right: auto;
  }
}
@media all and (max-width: 639px) {
  .list2 > li,
  .list2 .child {
    width: 100%;
    margin: 0 auto 20px;
  }
}
.list2.border li {
  border: 2px solid rgba(86, 139, 236, 0.5);
  padding: 10px;
  background: #fefefe;
}
@media all and (max-width: 639px) {
  .list2.sp40 li {
    width: 100%;
    margin: 0 auto 40px;
  }
  .list2.sp40 li:last-child {
    margin: 0 auto;
  }
}

.info-dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 400;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.info-dl dt {
  width: 80px;
  background: rgba(4, 36, 97, 0.5);
  text-align: center;
  border-radius: 15px;
}
.info-dl dd {
  width: calc(100% - 100px);
  line-height: 1.6;
}
.info-dl dt:not(last-of-type),
.info-dl dd:not(last-of-type) {
  margin-bottom: 5px;
}

.list3sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.list3sp li {
  width: 32.5%;
  margin: 0 1.25% 15px 0;
}
.list3sp li:nth-child(3n) {
  margin-right: 0;
}

.list3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.list3 li {
  width: 29%;
  margin: 0 2% 15px 0;
}
.list3 li:nth-child(3n) {
  margin-right: 0;
}
@media all and (max-width: 639px) {
  .list3 {
    width: 100%;
    margin: 0 auto;
  }
  .list3 li {
    width: 100%;
    margin: 0 auto 15px;
  }
  .list3 li:nth-child(3n) {
    margin-right: auto;
  }
}
.list3.treat li {
  padding: 0;
  margin-bottom: 5px;
}
@media all and (max-width: 800px) {
  .list3.treat li {
    margin-bottom: 25px;
    width: 90%;
    margin: 0 auto 20px;
  }
}
.list3.treat li .treat-img {
  position: relative;
}
.list3.treat li .treat-img img {
  z-index: 1;
  opacity: 1;
  -webkit-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
.list3.treat li .treat-img:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: linear-gradient(135deg, #042461 0%, #880000 100%);
}
.list3.treat li a {
  display: block;
}
.list3.treat li a:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.list3.treat li a:hover .treat-img img {
  opacity: 0.5;
}

.treat-box {
  position: relative;
  z-index: 2;
  background: rgba(253, 253, 253, 0.95);
  -webkit-box-shadow: 2px 2px 10px rgba(43, 43, 43, 0.1);
          box-shadow: 2px 2px 10px rgba(43, 43, 43, 0.1);
  /*width: 80%;*/
  width: 70%;
  /*margin: -70px auto 0;*/
  margin: -40px auto 0;
  /*padding: 10px 0;*/
  padding: 15px 0;
}

.top-feature {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 50px auto 40px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.top-feature li {
  width: 210px;
  position: relative;
  padding: 40px 0;
}
.top-feature li:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: -webkit-gradient(linear, left top, right bottom, from(#77ddff), to(rgba(43, 43, 43, 0.6)));
  background-image: linear-gradient(to right bottom, #77ddff, rgba(43, 43, 43, 0.6));
  z-index: -2;
}
.top-feature li:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/top-feature-bg01.jpg) no-repeat center/cover;
  z-index: -1;
  opacity: 0.4;
}
.top-feature li.img2:after {
  background: url(../img/top-feature-bg02.jpg) no-repeat center/cover;
}
.top-feature li.img3:after {
  background: url(../img/top-feature-bg03.jpg) no-repeat center/cover;
}
.top-feature li img {
  width: 90%;
  margin: 0 auto;
}
.top-feature li:not(:last-child) {
  margin-right: 15px;
}
@media all and (max-width: 639px) {
  .top-feature li:not(:last-child) {
    margin-right: 3.495%;
  }
}
@media all and (max-width: 639px) {
  .top-feature {
    width: 95%;
  }
  .top-feature li {
    width: 31%;
    margin: 0 3.495% 15px 0;
  }
  .top-feature li:nth-child(3n) {
    margin-right: 0;
  }
}

.list4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.list4 li {
  width: 24.25%;
  margin-right: 1%;
  margin-bottom: 1%;
}
.list4 li:nth-child(4n) {
  margin-right: 0;
}
.list4.sml4 {
  margin-bottom: -4%;
}
.list4.sml4 li {
  width: 22%;
  margin-right: 4%;
  margin-bottom: 4%;
}
.list4.sml4 li:nth-child(4n) {
  margin-right: 0;
}
@media all and (max-width: 639px) {
  .list4 {
    margin-bottom: -4% !important;
  }
  .list4.sml4 li,
  .list4 li {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 4%;
  }
  .list4.sml4 li:nth-child(2n),
  .list4 li:nth-child(2n) {
    margin-right: 0;
  }
  .list4.sp100 li {
    width: 100%;
    margin: 0 auto 10px;
  }
}
.list4.treat li {
  padding: 0;
  margin-bottom: 5px;
}
@media all and (max-width: 800px) {
  .list4.treat li {
    margin-bottom: 25px;
    width: 48%;
    margin: 0 0 20px;
  }
  .list4.treat li:nth-child(3n) {
    margin-right: 0;
  }
  .list4.treat li:nth-child(2n) {
    margin-left: 4%;
  }
}
@media all and (max-width: 639px) {
  .list4.treat li {
    width: 90%;
    margin: 0 auto 20px;
  }
  .list4.treat li:nth-child(2n), .list4.treat li:nth-child(3n) {
    margin: 0 auto 20px;
  }
}
.list4.treat li .treat-img {
  position: relative;
}
.list4.treat li .treat-img img {
  z-index: 1;
  opacity: 1;
  -webkit-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
}
.list4.treat li .treat-img:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: linear-gradient(135deg, #042461 0%, rgb(255, 243.6857142857, 147) 100%);
}
.list4.treat li a {
  display: block;
}
.list4.treat li a:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.list4.treat li a:hover .treat-img img {
  opacity: 0.5;
}
@media all and (max-width: 800px) {
  .list4.treat li {
    width: 49%;
    margin: 0 0 40px;
  }
  .list4.treat li:nth-child(2n) {
    margin-left: 2%;
  }
  .list4.treat li a .treat-box {
    width: 100%;
  }
  .list4.treat li a p {
    letter-spacing: 0;
  }
}

.list5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: -1.25%;
}
.list5 li {
  width: 19%;
  margin-right: 1.25%;
  margin-bottom: 1.25%;
}
.list5 li:nth-child(5n) {
  margin-right: 0;
}
@media all and (max-width: 639px) {
  .list5 {
    margin-bottom: -10px;
  }
  .list5 li {
    width: 90%;
    margin: 0 auto 10px;
  }
  .list5 li:nth-child(5n) {
    margin-right: auto;
  }
}
.list5.treat {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.list5.treat li {
  padding: 0;
  margin-bottom: 45px;
}
.list5.treat li a {
  display: block;
}
.list5.treat li a:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.list5.treat li a:hover .treat-box {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.list5.treat li a:hover .treat-box:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: linear-gradient(-45deg, rgba(251, 131, 18, 0.3) 0%, rgba(238, 0, 0, 0.4) 100%);
}

.list6 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.list6 li {
  width: 15%;
  margin-right: 2%;
  margin-bottom: 2%;
}
.list6 li:nth-child(6n) {
  margin-right: 0;
}
@media all and (max-width: 639px) {
  .list6 {
    margin-bottom: -4% !important;
  }
  .list6 li {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 4%;
  }
  .list6 li:nth-child(2n) {
    margin-right: 0;
  }
  .list6 li:nth-child(6n) {
    margin-right: auto;
  }
}
.list6.treat {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.list6.treat li {
  padding: 0;
  margin-bottom: 45px;
}
.list6.treat li a {
  display: block;
}
.list6.treat li a:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.list6.treat li a:hover .treat-box {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.list6.treat li a:hover .treat-box:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: linear-gradient(-45deg, rgba(136, 0, 0, 0.2) 0%, rgba(86, 139, 236, 0.2) 100%);
}

.note {
  padding: 15px;
  background: #fefefe;
  -webkit-box-shadow: 3px 3px 20px -10px rgba(43, 43, 43, 0.1);
          box-shadow: 3px 3px 20px -10px rgba(43, 43, 43, 0.1);
}
.note.transparent {
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.note.wk {
  padding: 15px;
  background: #fefefe;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #880000;
  -webkit-box-shadow: border-box;
          box-shadow: border-box;
}
.note.round {
  border-radius: 10px;
  -webkit-box-shadow: 0 0 10px rgba(4, 36, 97, 0.3);
          box-shadow: 0 0 10px rgba(4, 36, 97, 0.3);
}

.note2 {
  padding: 15px;
  background: white;
}
.note2.opa3 {
  background: rgb(247.35, 241.4, 233.75);
}
.note2.gra {
  background: #f4f4f4;
}

.note3 {
  padding: 15px;
  background: rgb(40.1542553191, 107.5319148936, 230.8457446809);
  color: #fff;
  border-radius: 10px 0 10px 0;
}
.note3:nth-child(even) {
  background: #042461;
  -webkit-animation-name: fuwafuwa2;
  -webkit-animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease;
  -moz-animation-name: fuwafuwa2;
  -moz-animation-duration: 2s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: ease;
}
@-webkit-keyframes fuwafuwa2 {
  0% {
    -webkit-transform: translate(0, -2.5px);
  }
  50% {
    -webkit-transform: translate(0, 2.5px);
  }
  100% {
    -webkit-transform: translate(0, -2.5px);
  }
}
.note3:nth-child(odd) {
  -webkit-animation-name: fuwafuwa;
  -webkit-animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease;
  -moz-animation-name: fuwafuwa;
  -moz-animation-duration: 2s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: ease;
}
@-webkit-keyframes fuwafuwa {
  0% {
    -webkit-transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, -5px);
  }
  100% {
    -webkit-transform: translate(0, 0);
  }
}
@media all and (max-width: 639px) {
  .note3:nth-child(odd) {
    -webkit-animation-name: fuwafuwa2;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease;
    -moz-animation-name: fuwafuwa2;
    -moz-animation-duration: 2s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: ease;
  }
  @-webkit-keyframes fuwafuwa2 {
    0% {
      -webkit-transform: translate(0, -2.5px);
    }
    50% {
      -webkit-transform: translate(0, 2.5px);
    }
    100% {
      -webkit-transform: translate(0, -2.5px);
    }
  }
}
.note3.round {
  border-radius: 10px 0 10px 0;
}
@media screen and (min-width: 640px) {
  .note3.lh12 {
    line-height: 1.2;
  }
  .note3.lh24 {
    line-height: 2.4;
  }
}

.flow-ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 35px 25px;
  background: rgb(218.9, 231.7096774194, 255);
  border-radius: 10px;
}
.flow-ul li a {
  color: rgb(27.7, 27.7, 27.7);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: underline;
}
.flow-ul li a:hover {
  opacity: 0.6;
}
.flow-ul li:not(:last-child) {
  margin-bottom: 20px;
}
.flow-ul li:nth-child(odd) {
  background: #042461;
  color: #ffffff;
}
.flow-ul li:nth-child(odd) a {
  color: #ffffff;
}
.flow-ul li:nth-child(odd) .child-num {
  color: #ffffff;
}
.flow-ul li:nth-child(odd) .child-txt h3 {
  color: #ffffff;
}
.flow-ul li:nth-child(odd) .child-icon {
  color: #ffffff;
}
.flow-ul li .child-num {
  width: 16%;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  line-height: 1.3;
  font-size: 2rem;
  color: #042461;
}
.flow-ul li .child-num span {
  display: block;
  font-size: 6rem;
}
.flow-ul li .child-txt {
  width: 60%;
}
.flow-ul li .child-txt h3 {
  font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
}
@media all and (max-width: 800px) {
  .flow-ul li .child-txt h3 {
    font-size: 1.85rem;
  }
}
@media all and (max-width: 639px) {
  .flow-ul li .child-txt h3 {
    font-size: 1.6rem;
  }
}
.flow-ul li .child-txt h3 {
  color: #042461;
  margin-bottom: 5px;
}
.flow-ul li .child-icon {
  width: 20%;
  text-align: center;
  color: #042461;
  font-size: 5em;
  line-height: 1;
}
@media all and (max-width: 800px) {
  .flow-ul li .child-icon {
    display: none;
  }
}

.txt1 {
  padding-left: 10px;
}

.blog-month {
  margin-bottom: 10px;
}
.blog-month ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.blog-month ul li {
  width: 90%;
  padding: 3px;
  text-align: center;
  font-size: 1.4rem;
  background: #fefefe;
  margin: 0 0 5px;
}
.blog-month ul li a {
  color: #2b2b2b;
}
@media all and (max-width: 800px) {
  .blog-month ul li {
    width: 48%;
    font-size: 1.1rem;
  }
  .blog-month ul li:nth-child(even) {
    margin-left: 1%;
  }
}

#a01, #a02, #a03, #a04, #a05, #a06, #a07, #a08, #a09, #contact {
  /* 固定ヘッダーの高さ分（例: 80px）を指定 */
  scroll-margin-top: 200px;
}

.list-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.list-center li {
  max-width: 250px;
}
.list-center li:not(:last-child) {
  margin: 0 5px 5px;
}
@media all and (max-width: 639px) {
  .list-center li {
    width: 220px;
  }
  .list-center li:not(:last-child) {
    margin: 0 0 5px;
  }
}

.faq-dl .faq-inner {
  padding: 10px;
  margin-bottom: 0;
}
.faq-dl .faq-inner:not(:last-of-type) {
  margin-bottom: 35px;
  padding-bottom: 20px;
  background: url(../img/bg-border.png) repeat-x left bottom;
}
.faq-dl dt,
.faq-dl dd {
  position: relative;
  padding: 10px 10px 10px 55px;
}
.faq-dl dt:before,
.faq-dl dd:before {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  left: 0;
  top: 0;
}
.faq-dl dt {
  color: #2b2b2b;
  font-size: 110%;
  font-weight: bold;
}
.faq-dl dt:before {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: 600;
  content: "Q";
  color: #fff;
  font-size: 2rem;
  background: #042461;
}
.faq-dl dd {
  background: #f6efe6;
}
.faq-dl dd:before {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: 600;
  content: "A";
  color: #880000;
  font-size: 2rem;
  background: rgba(255, 233, 45, 0.5);
}
.faq-dl dd:not(:last-of-type) {
  margin-bottom: 20px;
}

.fukidashi {
  margin: 0.5em auto 1em;
  padding: 5px;
  text-align: center;
  max-width: 50%;
  border-radius: 10px;
  font-size: 2.2rem;
  background: #fefefe;
  border-radius: 5px;
  position: relative;
}
.fukidashi a {
  color: #a71017;
}
.fukidashi a:hover {
  color: #ae1327;
}
.fukidashi:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #fefefe;
  z-index: 2;
}

.info-txt {
  width: 95%;
  margin: 10px auto 0;
  background: rgba(86, 139, 236, 0.3);
  padding: 10px;
  border-radius: 10px;
}

.title50.heading,
.title40.heading,
.title32.heading,
.title28.heading,
.title24.heading,
.title22.heading,
.title20.heading,
.title18.heading,
.title16.heading {
  margin-bottom: 30px;
  line-height: 1.6;
}
@media all and (max-width: 800px) {
  .title50.heading,
  .title40.heading,
  .title32.heading,
  .title28.heading,
  .title24.heading,
  .title22.heading,
  .title20.heading,
  .title18.heading,
  .title16.heading {
    margin-bottom: 25px;
    letter-spacing: 0.15em;
  }
}

.title50 {
  font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  font-size: 5rem;
}
@media all and (max-width: 800px) {
  .title50 {
    font-size: 4rem;
  }
}
@media all and (max-width: 639px) {
  .title50 {
    font-size: 3.2rem;
  }
}

.title40 {
  font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  font-size: 4rem;
}
@media all and (max-width: 800px) {
  .title40 {
    font-size: 3.2rem;
  }
}
@media all and (max-width: 639px) {
  .title40 {
    font-size: 2.4rem;
  }
}

.title32 {
  font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  font-size: 3.2rem;
}
@media all and (max-width: 800px) {
  .title32 {
    font-size: 2.6rem;
  }
}
@media all and (max-width: 639px) {
  .title32 {
    font-size: 2rem;
  }
}

.title28 {
  font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
}
@media all and (max-width: 800px) {
  .title28 {
    font-size: 2.2rem;
  }
}
@media all and (max-width: 639px) {
  .title28 {
    font-size: 1.8rem;
  }
}

.title24 {
  font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
}
@media all and (max-width: 800px) {
  .title24 {
    font-size: 2rem;
  }
}
@media all and (max-width: 639px) {
  .title24 {
    font-size: 1.7rem;
  }
}

.title22 {
  font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
}
@media all and (max-width: 800px) {
  .title22 {
    font-size: 1.85rem;
  }
}
@media all and (max-width: 639px) {
  .title22 {
    font-size: 1.6rem;
  }
}

.title20 {
  font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  font-size: 2rem;
}
@media all and (max-width: 800px) {
  .title20 {
    font-size: 1.6rem;
  }
}
@media all and (max-width: 639px) {
  .title20 {
    font-size: 1.45rem;
  }
}

.title18 {
  font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
}
@media all and (max-width: 800px) {
  .title18 {
    font-size: 1.5rem;
  }
}
@media all and (max-width: 639px) {
  .title18 {
    font-size: 1.35rem;
    letter-spacing: 0.15em;
  }
}

.title16 {
  font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
}
@media all and (max-width: 800px) {
  .title16 {
    font-size: 1.4rem;
  }
}
@media all and (max-width: 639px) {
  .title16 {
    font-size: 1.25rem;
    letter-spacing: 0.15em;
  }
}

.title-big {
  font-weight: 900;
  color: #2b2b2b;
  font-size: 1.8rem;
  line-height: 1.4;
  margin-bottom: 40px;
  letter-spacing: 0.15em;
}
.title-big span {
  display: block;
  font-size: 5rem;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  text-shadow: 0 0 2px #042461, 0 0 2px #042461, 0 0 2px #042461, 0 0 2px #042461, 0 0 2px #042461, 0 0 2px #042461, 0 0 2px #042461, 0 0 2px #042461, 0 0 2px #042461, 0 0 2px #042461, 0 0 2px #042461, 0 0 2px #042461, 0 0 2px #042461, 0 0 2px #042461, 0 0 2px #042461, 0 0 2px #042461;
}
.title-big.fnone span {
  color: #568bec;
  text-shadow: none;
}
@media all and (max-width: 800px) {
  .title-big {
    text-align: center;
  }
}
@media all and (max-width: 639px) {
  .title-big {
    font-size: 1.6rem;
  }
  .title-big span {
    font-size: 2.3rem;
  }
}

.top-sec1 {
  margin-bottom: -80px;
}

.bnr-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.bnr-list li {
  height: 55px;
}
.bnr-list li img {
  border: 1px solid #ccc;
  width: auto;
  height: 100%;
  background: #fff;
}
.bnr-list li:first-child {
  margin-right: 20px;
}
@media all and (max-width: 639px) {
  .bnr-list li:first-child {
    margin-right: 10px;
  }
}
@media all and (max-width: 800px) {
  .bnr-list li {
    height: 45px;
  }
}
@media all and (max-width: 639px) {
  .bnr-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
  .bnr-list li {
    height: 42px;
  }
  .bnr-list li img {
    max-width: initial;
  }
}
@media all and (max-width: 639px) and (max-width: 320px) {
  .bnr-list li {
    height: 37px;
  }
}

.box-column2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.box-column2 .box-container {
  width: 48.5%;
  position: relative;
}
.box-column2 .box-container.single-column {
  margin: 0 auto;
}
@media all and (max-width: 800px) {
  .box-column2 .box-container {
    width: 100%;
  }
  .box-column2 .box-container.order {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.mtitle5 {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  position: absolute;
  left: 2%;
  top: 0;
  font-size: 2.2rem;
  color: #042461;
  font-weight: 600;
  letter-spacing: 0.3rem;
  border-top: 2px solid #aaa;
  padding-top: 20px;
}
.mtitle5 span {
  font-family: "Lato", sans-serif;
  font-size: 2rem;
  display: block;
  color: #aaa;
  font-weight: 400;
  letter-spacing: 0.1rem;
}
@media all and (max-width: 639px) {
  .mtitle5 {
    font-size: 1.6rem;
    left: 0;
  }
  .mtitle5 span {
    font-size: 1.7rem;
    color: rgba(43, 43, 43, 0.5);
  }
}

.vertical-box {
  position: relative;
}
.vertical-box + .vertical-box {
  margin-top: 50px;
}

.vertical-content {
  margin-left: 20%;
}
.vertical-content.small-content {
  margin-left: 10%;
}
@media all and (max-width: 639px) {
  .vertical-content {
    margin-left: 23%;
  }
  .vertical-content.small-content {
    margin-left: 13%;
  }
  .vertical-content.ml0 {
    margin-left: 0;
  }
}

.listA {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 15px;
  background: rgba(240, 240, 240, 0.5);
}
.listA li {
  padding: 4px;
  margin-bottom: 5px;
  border-bottom: 1px dashed #ccc;
  width: 48%;
  margin: 0 4% 5px 0;
  font-weight: 600;
  color: black;
  font-size: 1.05em;
  line-height: 1.5;
}
.listA li:before {
  content: "●●";
  color: #568bec;
  letter-spacing: 0.3rem;
  margin-right: 5px;
  font-size: 14px;
}
.listA li .inner {
  font-size: 0.9em;
  padding: 8px;
  background: #fefefe;
  margin-top: 4px;
  border-radius: 4px;
  font-weight: 400;
  color: #2b2b2b;
}
.listA li:nth-child(2n) {
  margin-right: 0;
}
@media all and (max-width: 639px) {
  .listA li:nth-child(2n) {
    margin-right: auto;
  }
}
@media all and (max-width: 639px) {
  .listA {
    background: transparent;
  }
  .listA li {
    margin: 0 auto 5px;
    width: 100%;
  }
}

/* --calendar--
----------------------------------*/
.calendar_head {
  color: #fefefe;
  background: rgb(1.9801980198, 17.8217821782, 48.0198019802);
  padding: 4px;
}

.calendar-info {
  text-align: center;
  font-weight: 600;
  color: #fefefe;
}
.calendar-info span {
  color: #ffe92d;
  font-size: 1.1em;
}

.calendar-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 0.9em;
}
.calendar-box div.calendar {
  width: 48%;
}
@media all and (max-width: 639px) {
  .calendar-box div.calendar {
    width: 100%;
    margin-bottom: 10px;
  }
}
.calendar-box table {
  width: 100%;
}
.calendar-box table th,
.calendar-box table td {
  width: 14.28%;
  border: 0.9px solid #666;
  font-weight: normal;
  padding: 5px;
  height: 45px;
  font-size: 1.3rem;
  color: #2b2b2b;
}
@media all and (max-width: 639px) {
  .calendar-box table th,
  .calendar-box table td {
    height: 40px;
    font-size: 1.2rem;
  }
}
.calendar-box table th {
  background: #f6efe6;
  vertical-align: middle;
  font-weight: 600;
}
.calendar-box table td {
  background: #fefefe;
}
.calendar-box th.sun,
.calendar-box td.sun {
  color: #ae1327;
}
.calendar-box th.sat,
.calendar-box td.sat {
  color: #77ddff;
}
.calendar-box .off {
  background: #ffe92d;
}
.calendar-box .item-td {
  background: #eadc8b;
}
.calendar-box .item-td .days {
  color: #2b2b2b;
}
.calendar-box .item-td .item {
  display: none;
}

.top-gallery a {
  width: 100%;
  height: 180px;
  overflow: hidden;
  display: block;
}
.top-gallery a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

.list-title {
  text-align: center;
  color: #2b2b2b;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 1.8rem;
  position: relative;
  letter-spacing: 0.3em;
}
.list-title span {
  font-size: 1.2rem;
  display: block;
  color: #880000;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
}
.list-title:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 2px;
  background: #880000;
  left: 50%;
  bottom: -7px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media all and (max-width: 639px) {
  .list-title {
    font-size: 1.4rem;
  }
  .list-title span {
    font-size: 1.2rem;
  }
}

.list-title2 {
  text-align: center;
  color: #2b2b2b;
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: 0.3em;
}
.list-title2 span {
  font-size: 1.1rem;
  display: block;
  color: #880000;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.1em;
}
@media all and (max-width: 639px) {
  .list-title2 {
    font-size: 1.4rem;
  }
  .list-title2 span {
    font-size: 1.2rem;
  }
}

.arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: center;
  margin-bottom: 5px;
}
.arrow a {
  display: block;
  background: #fefefe;
  color: #042461;
  padding: 5px 8px;
  cursor: pointer;
}
.arrow a:first-of-type {
  margin-right: 5px;
}
.arrow a.arrow-before:before {
  font-family: "Font Awesome 5 Free";
  content: '\f0d9';
  font-weight: 900;
  margin-right: 5px;
}
.arrow a.arrow-after:after {
  font-family: "Font Awesome 5 Free";
  content: '\f0da';
  font-weight: 900;
  margin-left: 5px;
}

.top-treat-box {
  position: relative;
  z-index: 5;
  width: 80%;
  margin: -60px auto 10px;
  background: #fefefe;
}

.feature-dl .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: rgba(254, 254, 254, 0.7);
  padding: 30px 20px;
  -webkit-box-shadow: 0 0 8px rgba(86, 139, 236, 0.3);
          box-shadow: 0 0 8px rgba(86, 139, 236, 0.3);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.feature-dl .inner dt {
  font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 2.8rem;
  line-height: 50px;
  letter-spacing: 0.2rem;
  color: #fefefe;
  position: relative;
  z-index: 1;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: italic;
}
.feature-dl .inner dt:before {
  position: absolute;
  content: "";
  left: -30px;
  top: 0;
  width: 160%;
  min-width: 80px;
  height: 50px;
  background: #042461;
  z-index: -1;
  opacity: 0.9;
}
.feature-dl .inner dt span {
  color: rgb(131.8457446809, 170.4680851064, 241.1542553191);
}
.feature-dl .inner dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 6%;
}
.feature-dl .inner:not(:first-child) {
  margin-top: 40px;
}
@media all and (max-width: 639px) {
  .feature-dl .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .feature-dl .inner dt {
    font-size: 1.3rem;
    /*margin-bottom: 25px;*/
    display: none;
    margin-bottom: 0;
  }
  .feature-dl .inner dt span {
    font-size: 3rem;
  }
  .feature-dl .inner dt:before {
    /*height: 40px;*/
    display: none;
  }
  .feature-dl .inner dd {
    width: 100%;
    margin: 0;
  }
}
.feature-dl .feature-title {
  font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 2.2rem;
  color: #042461;
  line-height: 1.5;
  padding-bottom: 5px;
  border-bottom: 1px solid #568bec;
  margin-bottom: 20px;
}
.feature-dl .feature-title .upper {
  color: rgb(8.0396039604, 72.3564356436, 194.9603960396);
  display: block;
  font-size: 1.5rem;
}
.feature-dl .feature-title .upper.en {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: italic;
}
@media all and (max-width: 639px) {
  .feature-dl .feature-title {
    font-size: 1.8rem;
  }
  .feature-dl .feature-title .upper {
    font-size: 1.3rem;
  }
}

.top-covid {
  text-align: center;
  padding: 10px;
  margin-top: 40px;
}
@media all and (max-width: 639px) {
  .top-covid {
    margin-top: 20px;
  }
}

video {
  width: 100%;
  height: auto;
}

#video {
  width: 100%;
  padding-bottom: 56.25%;
  height: 0px;
  position: relative;
}
#video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bg-fix {
  background-attachment: fixed !important;
}
@media all and (max-width: 639px) {
  .bg-fix {
    background-attachment: scroll !important;
  }
}

.mini {
  font-size: 90%;
}

en,
.en {
  font-family: "Lato", sans-serif;
}

.big {
  font-size: 110%;
}

/*フォトギャラリー*/
.photo {
  width: 100%;
  margin: 10px auto 20px;
}
.photo ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: -1.25%;
}
.photo li {
  width: 32.5%;
  margin-right: 1.25%;
  margin-bottom: 1.25%;
}
@media screen and (min-width: 769px) {
  .photo li:nth-child(3n) {
    margin-right: 0;
  }
}
.photo li a {
  background: rgba(247, 247, 247, 0);
  display: block;
  text-align: center;
  vertical-align: middle;
}
.photo li a img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 220px;
  width: 100%;
}
.photo li a:hover {
  color: #888;
}
.photo li a:hover img {
  opacity: 0.7;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.photo li p {
  text-align: center;
  color: #042461 !important;
  font-weight: normal;
  font-size: 14px !important;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.photo.p_none li p {
  display: none;
}

@media screen and (max-width: 768px) {
  .photo {
    margin: 5px auto 10px;
  }
  .photo li {
    width: 100%;
    margin-bottom: 1%;
    margin-right: 0;
  }
  .photo li:last-child {
    margin-bottom: 0%;
  }
  .photo li a img {
    height: 150px;
  }
  .photo.sp_falf li {
    width: 49%;
    margin-right: 2%;
    margin-bottom: 2%;
  }
  .photo.sp_falf li:nth-child(2n) {
    margin-right: 0;
  }
  .photo.sp_falf li a img {
    height: 140px;
  }
}
.tcenter_pc {
  text-align: center;
}
@media all and (max-width: 639px) {
  .tcenter_pc {
    text-align: left;
  }
}

.reason {
  width: 100%;
  display: -webkit-box;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 90px auto -90px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media all and (max-width: 639px) {
  .reason {
    display: block;
    margin: 40px auto -30px;
  }
}
.reason li {
  width: 23.5%;
  margin-right: 2%;
  position: relative;
  margin-bottom: 70px;
}
@media all and (max-width: 639px) {
  .reason li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
}
.reason li:nth-child(4n) {
  margin-right: 0;
}
.reason li:nth-child(odd) {
  margin-top: -40px;
}
@media all and (max-width: 639px) {
  .reason li:nth-child(odd) {
    margin-top: 0;
  }
}
.reason li img {
  width: 95%;
  margin-left: auto;
  display: block;
  border-radius: 10px;
}
@media all and (max-width: 639px) {
  .reason li img {
    width: 80%;
  }
}
.reason li .nub {
  text-shadow: 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff;
  display: block;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 22px;
  margin-top: -20px;
  line-height: 1em;
  color: #568bec;
  opacity: 0.6;
}
.reason li .nub span {
  font-size: 40px;
}
.reason li .item_teext {
  display: block;
  font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: bold;
  font-size: 1.6rem;
  color: #880000;
  margin-top: 0px;
}
.reason li .item_main {
  font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: rgb(17.5, 17.5, 17.5);
  line-height: 1.7em;
  margin-top: 11px;
}
@media all and (max-width: 639px) {
  .reason li .nub {
    line-height: 0.5em;
    font-size: 22px;
  }
  .reason li .nub span {
    font-size: 36px;
  }
  .reason li .item_teext {
    font-size: 1.5rem;
  }
  .reason li .item_main {
    line-height: 1.5em;
  }
}

.w250 {
  max-width: 250px;
}
@media all and (max-width: 639px) {
  .w250 {
    width: 80%;
  }
}

.w200 {
  max-width: 200px;
}
@media all and (max-width: 639px) {
  .w200 {
    width: 80%;
  }
}

.w120 {
  max-width: 120px;
}
@media all and (max-width: 639px) {
  .w120 {
    width: 80%;
  }
}

.innerB {
  display: table;
  width: 100%;
  table-layout: fixed;
}
@media all and (max-width: 639px) {
  .innerB {
    display: block;
  }
}
.innerB .left,
.innerB .right {
  width: 48%;
  float: left;
}
@media all and (max-width: 639px) {
  .innerB .left,
  .innerB .right {
    width: 100%;
    float: none;
  }
}
.innerB .right {
  margin-left: 4%;
}
@media all and (max-width: 639px) {
  .innerB .right {
    margin-left: 0;
    margin-top: 15px;
  }
}
.innerB .left_s {
  width: 22%;
  float: left;
}
@media all and (max-width: 639px) {
  .innerB .left_s {
    width: 100%;
    float: none;
  }
}
.innerB .right_l {
  width: 75%;
  float: left;
  margin-left: 3%;
}
@media all and (max-width: 639px) {
  .innerB .right_l {
    margin-left: 0;
    margin-top: 15px;
    width: 100%;
    float: none;
  }
}

.small-box2 {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

.small-box3 {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}

.small-box4 {
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
}

.small-box {
  max-width: 950px;
  margin-right: auto;
  margin-left: auto;
}

.sp-wk {
  padding: 0 4px;
  margin: 0 2px;
  border: 0.8px solid #2b2b2b;
  border-radius: 5px;
  font-size: 92%;
}

a.anchor {
  display: block;
  padding-top: 220px;
  margin-top: -220px;
}
@media all and (max-width: 639px) {
  a.anchor {
    padding-top: 50px;
    margin-top: -50px;
  }
}

.point-title {
  font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 2.2rem;
  color: #042461;
  line-height: 1.5;
  padding-bottom: 5px;
  border-bottom: 1px solid #a0c84d;
  margin-bottom: 20px;
}
.point-title .upper {
  color: #880000;
  margin-right: 10px;
  font-size: 1.5rem;
}
.point-title .upper.en {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: italic;
}
@media all and (max-width: 639px) {
  .point-title {
    font-size: 1.8rem;
  }
  .point-title .upper {
    margin-right: 0px;
    display: block;
    font-size: 1.3rem;
  }
}

.eng {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.eng.ita {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.fb-wrap {
  text-align: center;
  min-height: 350px;
  margin: 0 auto;
}

.sectionarrow_box {
  position: relative;
  height: 70px;
}

.sectionarrow {
  display: block;
  width: 44px;
  height: 70px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
@media all and (max-width: 639px) {
  .sectionarrow {
    height: 44px;
  }
}
.sectionarrow:after {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 60px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #fff;
  -webkit-animation: topArrow 2.5s ease infinite;
          animation: topArrow 2.5s ease infinite;
}
@media all and (max-width: 639px) {
  .sectionarrow:after {
    height: 44px;
    /*   animation: none;*/
  }
}
.sectionarrow.blue:after {
  background-color: #042461;
}

@keyframes topArrow {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    max-height: 0;
  }
  30% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  70% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  100% {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    max-height: 99999px;
  }
}
@-webkit-keyframes topArrow {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  30% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  70% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  100% {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  }
}
.sentence p + p {
  margin-top: 10px;
}

.sentence2 p + p {
  margin-top: 20px;
}

.img-hv {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.img-hv:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
  -webkit-filter: drop-shadow(8px 2px 10px rgba(43, 43, 43, 0.4));
  -moz-filter: drop-shadow(8px 2px 10px rgba(43, 43, 43, 0.4));
  -ms-filter: drop-shadow(8px 2px 10px rgba(43, 43, 43, 0.4));
  filter: drop-shadow(8px 2px 10px rgba(43, 43, 43, 0.4));
}

/* fixed_list
----------------------------------*/
.fixed_list {
  position: fixed;
  right: 0;
  bottom: 70px;
  z-index: 2;
}
.fixed_list li {
  margin-bottom: 8px;
}
.fixed_list li a {
  display: block;
  background: #042461;
  background-image: -webkit-gradient(linear, left top, right top, from(#042461), to(#568bec));
  background-image: linear-gradient(to right, #042461, #568bec);
  background-position: right center;
  background-size: 130% auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.fixed_list li a:hover {
  background-position: left center;
  opacity: 0.9;
}
.fixed_list li a {
  color: #fff;
  padding: 10px 5px 10px 22px;
  border-radius: 100px 0 0 100px;
  text-align: center;
}
.fixed_list li a i {
  font-size: 1.8rem;
}
.fixed_list li a span {
  display: block;
  font-size: 1.1rem;
  font-weight: bold;
}

@media all and (max-width: 1200px) {
  .fixed_list {
    display: none;
  }
}
.top-box1 {
  max-width: 900px;
  margin: 55px auto 0;
  background: #fefefe;
  padding: 25px;
  border-radius: 10px;
  position: relative;
  border: 3px solid #042461;
}
.top-box1:before {
  position: absolute;
  content: "";
  width: 60px;
  height: 34px;
  top: -34px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../img/board-top.png) no-repeat center bottom/contain;
  /*z-index: -1;*/
}
@media all and (max-width: 639px) {
  .top-box1 {
    padding: 20px 15px;
  }
}

.mbox3 {
  padding: 25px 15px;
  -webkit-box-shadow: 0 0 0 3px #042461;
          box-shadow: 0 0 0 3px #042461;
  z-index: 2;
  position: relative;
}
.mbox3:before, .mbox3:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
}
.mbox3:before {
  background: #fefefe;
  left: 0;
  top: 0;
  z-index: -1;
}
.mbox3:after {
  bottom: -15px;
  right: -15px;
  background-image: radial-gradient(circle, #042461 15%, transparent 10%), radial-gradient(circle, #042461 15%, transparent 10%);
  background-size: 8px 8px;
  background-position: 0 0, 4px 4px;
  z-index: -2;
}
@media all and (max-width: 639px) {
  .mbox3:after {
    bottom: -12px;
    right: -12px;
  }
}
.mbox3:last-child {
  -webkit-box-shadow: 0 0 0 3px rgb(63.0771276596, 123.2659574468, 233.4228723404);
          box-shadow: 0 0 0 3px rgb(63.0771276596, 123.2659574468, 233.4228723404);
  -webkit-transform: translate3d(0, 40px, 200px);
          transform: translate3d(0, 40px, 200px);
}
.mbox3:last-child:after {
  background-image: radial-gradient(circle, #568bec 15%, transparent 10%), radial-gradient(circle, #568bec 15%, transparent 10%);
}
@media all and (max-width: 639px) {
  .mbox3:last-child {
    -webkit-transform: inherit;
            transform: inherit;
  }
}
@media all and (max-width: 800px) {
  .mbox3.bm0 {
    margin: 0 auto;
  }
  .mbox3 {
    width: 95%;
    margin: 0 auto 40px;
  }
  .mbox3:nth-child(2n) {
    margin-left: auto;
  }
}

.mbox4 {
  padding: 25px 15px;
  -webkit-box-shadow: 0 0 0 3px #880000;
          box-shadow: 0 0 0 3px #880000;
  z-index: 2;
  position: relative;
}
.mbox4.subx {
  -webkit-box-shadow: 0 0 0 3px #568bec;
          box-shadow: 0 0 0 3px #568bec;
}
.mbox4.subx:after {
  background-image: radial-gradient(circle, #568bec 15%, transparent 10%), radial-gradient(circle, #568bec 15%, transparent 10%);
}
.mbox4:before, .mbox4:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
}
.mbox4:before {
  background: #fefefe;
  left: 0;
  top: 0;
  z-index: -1;
}
.mbox4:after {
  bottom: -15px;
  right: -15px;
  background-image: radial-gradient(circle, #880000 15%, transparent 10%), radial-gradient(circle, #880000 15%, transparent 10%);
  background-size: 8px 8px;
  background-position: 0 0, 4px 4px;
  z-index: -2;
}
@media all and (max-width: 639px) {
  .mbox4:after {
    bottom: -12px;
    right: -12px;
  }
}
@media all and (max-width: 800px) {
  .mbox4 {
    width: 90% !important;
    margin: 0 auto 40px !important;
  }
}

.hv:hover {
  -webkit-animation: rotate 0.7s ease-in-out both;
          animation: rotate 0.7s ease-in-out both;
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg) translate3d(0, 0, 0);
            transform: rotate(0deg) translate3d(0, 0, 0);
  }
  25% {
    -webkit-transform: rotate(3deg) translate3d(0, 0, 0);
            transform: rotate(3deg) translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: rotate(-3deg) translate3d(0, 0, 0);
            transform: rotate(-3deg) translate3d(0, 0, 0);
  }
  75% {
    -webkit-transform: rotate(1deg) translate3d(0, 0, 0);
            transform: rotate(1deg) translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: rotate(0deg) translate3d(0, 0, 0);
            transform: rotate(0deg) translate3d(0, 0, 0);
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg) translate3d(0, 0, 0);
            transform: rotate(0deg) translate3d(0, 0, 0);
  }
  25% {
    -webkit-transform: rotate(3deg) translate3d(0, 0, 0);
            transform: rotate(3deg) translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: rotate(-3deg) translate3d(0, 0, 0);
            transform: rotate(-3deg) translate3d(0, 0, 0);
  }
  75% {
    -webkit-transform: rotate(1deg) translate3d(0, 0, 0);
            transform: rotate(1deg) translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: rotate(0deg) translate3d(0, 0, 0);
            transform: rotate(0deg) translate3d(0, 0, 0);
  }
}

.bg-half {
  position: relative;
  margin-bottom: 40px;
}
.bg-half.bm0 {
  margin-bottom: 0;
}
.bg-half.bg-half2:after {
  background: #f0f0f0;
  height: 55%;
  opacity: 0.6;
}
.bg-half.bg-half3:after {
  background: #a0c84d;
  height: 55%;
  opacity: 0.2;
}
.bg-half:after {
  position: absolute;
  content: "";
  left: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 82%;
  bottom: 0;
  background: #e0ebff;
  z-index: -2;
}
@media all and (max-width: 639px) {
  .bg-half:after {
    height: 85%;
    width: 70%;
  }
}
@media all and (max-width: 639px) {
  .bg-half.sp_none {
    margin-bottom: 0;
  }
  .bg-half.sp_none:after {
    opacity: 0;
  }
}

@media all and (max-width: 639px) {
  .w40sp {
    width: 40%;
    max-width: 150px;
    margin: auto;
  }
}

@media all and (max-width: 639px) {
  .w90sp {
    width: 90%;
    max-width: 280px;
    margin: auto;
  }
}

/* top_sub
----------------------------------*/
.top_sub {
  position: relative;
}
.top_sub:before {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  bottom: 0;
  z-index: 1;
  width: 55%;
  height: 100%;
  overflow: hidden;
}
.top_sub:after {
  content: "";
  position: absolute;
  bottom: -80px;
  z-index: -1;
  background: #f3f3f3;
  background-image: -webkit-gradient(linear, left top, right top, from(#fdfdfd), to(#f1f1f1));
  background-image: linear-gradient(to right, #fdfdfd, #f1f1f1);
  width: 66%;
  height: 90%;
}
.top_sub .top_sub_inner {
  padding: 40px 0;
}
.top_sub .sub_detail {
  position: relative;
  z-index: 2;
  background: #fff;
  -webkit-box-shadow: 0 6px 15px rgba(36, 37, 38, 0.04);
          box-shadow: 0 6px 15px rgba(36, 37, 38, 0.04);
  width: 700px;
  padding: 80px;
}
.top_sub.sub_right:before {
  left: 0;
}
.top_sub.sub_right:after {
  right: -50px;
}
.top_sub.sub_right .sub_detail {
  margin-left: auto;
}
.top_sub.sub_left:before {
  right: 0;
}
.top_sub.sub_left:after {
  left: -80px;
}
.top_sub.sub_left .sub_detail {
  margin-right: auto;
}
.top_sub.top_sub_01:before {
  background-image: url(../img/top_sub_01.jpg);
}

/* top_main
----------------------------------*/
.top_main {
  overflow: hidden;
}
.top_main .inner {
  position: relative;
  margin: 40px 0 60px;
}
.top_main .inner:before {
  content: "";
  position: absolute;
  top: -40px;
  left: 5%;
  width: 1227px;
  height: 350px;
  max-width: 100%;
  background: #f7fafe;
  background-image: -webkit-gradient(linear, right top, left top, from(#fff), to(#f7fafe));
  background-image: linear-gradient(to left, #fff, #f7fafe);
}
.top_main .inner .top_main_contents {
  position: relative;
  max-width: calc(100% - 100px);
  margin: 0 auto;
}
.top_main .inner .top_main_contents .top_main_txt {
  position: relative;
  width: 600px;
  left: 5%;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(3px);
  -webkit-box-shadow: 2px 2px 10px -3px rgba(43, 43, 43, 0.2);
          box-shadow: 2px 2px 10px -3px rgba(43, 43, 43, 0.2);
  padding: 35px 50px;
}
.top_main .inner .top_main_contents .top_main_img {
  overflow: hidden;
  position: absolute;
  left: 600px;
  top: 40px;
  width: 850px;
  max-width: 100%;
}
.top_main .inner .top_main_contents .top_main_img img {
  width: 100%;
  height: 100%;
}
@media all and (max-width: 639px) {
  .top_main .inner .top_main_contents .top_main_img {
    display: none;
  }
}
@media all and (max-width: 639px) {
  .top_main .inner:before {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#f7fafe), to(#fff));
    background-image: linear-gradient(to bottom, #f7fafe, #fff);
    left: 0%;
    height: 450px;
  }
  .top_main .inner .top_main_contents {
    max-width: 90%;
    margin: auto;
  }
  .top_main .inner .top_main_contents .top_main_txt {
    left: 0%;
    padding: 15px;
  }
}

.maparea {
  width: calc(100% - 20px);
  margin: auto;
}

/* measures
----------------------------------*/
.measures {
  display: none;
}

#inline {
  max-width: 1000px;
  width: 95%;
  margin: 0 auto;
}
#inline .inner {
  padding: 50px 30px;
}

.info_logo {
  max-width: 300px;
  width: 70%;
}

.ttl {
  font-size: 2.4rem;
  font-weight: bold;
  color: #880000;
  position: relative;
  padding: 20px 0;
  text-align: center;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  letter-spacing: 0.2em;
}
.ttl mn {
  font-size: 1.8rem;
}
.ttl span {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.15em;
  font-size: 1.4rem;
  display: block;
  font-weight: bold;
  line-height: 1em;
  padding: 0.5em;
  color: #042461;
}
@media all and (max-width: 639px) {
  .ttl {
    letter-spacing: 0.1em;
    display: block;
    font-size: 1.8rem;
  }
  .ttl mn {
    font-size: 1.5rem;
  }
  .ttl span {
    font-size: 1.3rem;
  }
}

.p-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #880000;
  line-height: 1.3;
  padding-bottom: 5px;
  border-bottom: 1px solid rgb(255, 8.5, 8.5);
  margin-bottom: 20px;
  letter-spacing: 0.2em;
}
.p-title .upper {
  letter-spacing: 0;
  opacity: 0.8;
  color: #568bec;
  display: block;
  font-size: 2rem;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: italic;
}
.p-title .upper mn {
  font-size: 1.5rem;
}
@media all and (max-width: 639px) {
  .p-title {
    font-size: 1.6rem;
  }
  .p-title .upper {
    font-size: 1.5rem;
  }
  .p-title .upper mn {
    font-size: 1.3rem;
  }
}

.ls2 {
  letter-spacing: 0.2em;
}

.deco_nami {
  -webkit-text-decoration: underline wavy #042461;
          text-decoration: underline wavy #042461;
}

.img-r2 {
  border-radius: 20px;
}

/* clip_left */
.clip_left {
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-name: clip_left;
          animation-name: clip_left;
}

@keyframes clip_left {
  0% {
    clip-path: inset(0 100% 0 0);
    background: #042461;
  }
  100% {
    clip-path: inset(0 0% 0 0);
    background: none;
  }
}
@-webkit-keyframes clip_left {
  0% {
    clip-path: inset(0 100% 0 0);
    background: #568bec;
  }
  100% {
    clip-path: inset(0 0% 0 0);
    background: none;
  }
}
/* /clip_left */
.clip_left02 {
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-name: clip_left02;
          animation-name: clip_left02;
}

@keyframes clip_left02 {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0% 0 0);
  }
}
@-webkit-keyframes clip_left02 {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0% 0 0);
  }
}
/* /clip_left */
/* Tiny Carousel */
.slider1 {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-bottom: 0px;
  background-repeat: repeat;
}
.slider1 .viewport {
  width: 100%;
  margin: 0 auto;
  height: 220px;
  position: relative;
}
.slider1 .buttons {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: block;
  position: absolute;
  top: 22%;
  left: 0;
  width: 10px;
  height: -50px;
  color: #aaa;
  text-decoration: none;
  margin: 0 5px;
  z-index: 5;
  cursor: pointer;
  font-size: 60px;
}
.slider1 .next {
  right: 10px;
  left: auto;
  top: 22%;
}
.slider1 .buttons:hover {
  opacity: 0.6;
}
.slider1 .disable {
  visibility: hidden;
}
.slider1 .overview {
  list-style: none;
  position: absolute;
  padding: 0;
  margin: 0;
  width: 180px;
  left: 0;
  top: -5px;
}
.slider1 .overview li {
  width: 250px;
  /*height: 240px;*/
  float: left;
  text-align: center;
  vertical-align: middle;
  display: table;
  z-index: 99999;
  overflow: hidden;
  font-weight: bold;
  margin: 5px;
}
.slider1 img {
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  border: 1px solid #f4f4f4;
  background: #fff;
  width: 250px;
  height: 170px;
  padding: 7px;
  vertical-align: middle;
  text-align: center;
  -o-object-fit: cover;
     object-fit: cover;
}
.slider1 li p {
  margin-top: 10px;
  height: -60px;
  text-align: center;
  color: #555 !important;
  font-weight: normal;
  font-size: 13px !important;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 90%;
  color: #2b2b2b;
  font-weight: bold;
  line-height: 1.4;
}

.title01 {
  position: relative;
  margin: 0 auto 60px;
  line-height: 1.7;
}
.title01 .eng {
  display: block;
  font-size: 4.6rem;
  color: #042461;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 800;
  text-transform: inherit;
}
.title01 .ja {
  font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #2b2b2b;
}
.title01.type1:after {
  background-image: -webkit-gradient(linear, left top, right top, from(#568bec), color-stop(50%, #568bec), color-stop(50%, rgb(141.014893617, 176.7617021277, 242.185106383)), to(rgb(141.014893617, 176.7617021277, 242.185106383)));
  background-image: linear-gradient(to right, #568bec 0%, #568bec 50%, rgb(141.014893617, 176.7617021277, 242.185106383) 50%, rgb(141.014893617, 176.7617021277, 242.185106383) 100%);
}
.title01.white span {
  color: #fefefe;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
.title01.white:after {
  color: #fefefe;
}
.title01.mtitle_left {
  text-align: left;
}
.title01.mtitle_left:after {
  left: 0;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}
@media all and (max-width: 800px) {
  .title01 {
    margin: 0 auto 50px;
  }
  .title01 .eng {
    font-size: 3.3rem;
  }
  .title01 .ja {
    font-size: 1.8rem;
  }
}
@media all and (max-width: 639px) {
  .title01 {
    margin: 0 auto 50px;
  }
  .title01 .eng {
    font-size: 2.2rem;
  }
  .title01 .ja {
    font-size: 1.6rem;
  }
}

.adv-list li {
  padding: 6px 12px;
  background: #f7fafe;
  font-weight: 600;
  border-radius: 20px;
}
.adv-list li .small {
  font-weight: normal;
  font-size: 1.4rem;
  padding: 6px;
}
@media all and (max-width: 639px) {
  .adv-list li .small {
    font-size: 12px;
  }
}
.adv-list li:before {
  font-family: "Font Awesome 5 Free";
  content: '\f00c';
  font-weight: 900;
  margin-right: 10px;
  color: #880000;
}
.adv-list li:not(:last-of-type) {
  margin-bottom: 4px;
}

.img-half-wrap {
  position: relative;
  margin: 0 auto;
  padding: 40px 0;
}
.img-half-wrap:before {
  position: absolute;
  content: "";
  width: 50%;
  height: 100%;
  top: 0;
  left: 100px;
  background: url(../img/img-half1.jpg) no-repeat 50% 50%/cover;
  z-index: -1;
}
.img-half-wrap.img1:before {
  background: url(../img/img-half1.jpg) no-repeat 50% 50%/cover;
}
.img-half-wrap.img3:before {
  background: url(../img/img-half3.jpg) no-repeat 50% 50%/cover;
}
.img-half-wrap.img5:before {
  background: url(../img/img-half5.jpg) no-repeat 50% 50%/cover;
}
.img-half-wrap.img7:before {
  background: url(../img/img-half7.jpg) no-repeat 50% 50%/cover;
}
.img-half-wrap .img-half-detail p:not(:last-child) {
  margin-bottom: 15px;
}
.img-half-wrap .img-half-detail {
  padding: 30px;
  background: rgba(255, 255, 255, 0.9);
  line-height: 2;
  width: 65%;
  margin: 0px 0px 0 auto;
  -webkit-box-shadow: 3px 3px 10px -5px rgba(0, 0, 0, 0.1);
          box-shadow: 3px 3px 10px -5px rgba(0, 0, 0, 0.1);
}
@media all and (max-width: 800px) {
  .img-half-wrap:before {
    width: 100%;
    height: 400px;
    top: 0;
    left: 0px;
  }
  .img-half-wrap .img-half-detail {
    width: 100%;
    margin-top: 200px;
    letter-spacing: 0.1em;
  }
}
@media all and (max-width: 639px) {
  .img-half-wrap:before {
    width: 100%;
    height: 220px;
    top: 0;
    left: 0px;
  }
  .img-half-wrap .img-half-detail {
    width: 100%;
    padding: 20px;
    margin-top: 120px;
  }
}

.img-half-box {
  max-width: 1200px;
  margin: 0 auto;
}
@media all and (max-width: 800px) {
  .img-half-box .img-half-box {
    width: 80%;
  }
}
@media all and (max-width: 639px) {
  .img-half-box .img-half-box {
    width: 95%;
    margin: 50px auto 0;
  }
}

.img-half-wrap2 {
  position: relative;
  margin: 0 auto;
  padding: 40px 0;
}
.img-half-wrap2:before {
  position: absolute;
  content: "";
  width: 50%;
  height: 100%;
  top: 0;
  right: 100px;
  background: url(../img/img-half2.jpg) no-repeat 50% 50%/cover;
  z-index: -1;
}
.img-half-wrap2.img2:before {
  background: url(../img/img-half2.jpg) no-repeat 50% 50%/cover;
}
.img-half-wrap2.img4:before {
  background: url(../img/img-half4.jpg) no-repeat 50% 50%/cover;
}
.img-half-wrap2.img6:before {
  background: url(../img/img-half6.jpg) no-repeat 50% 50%/cover;
}
.img-half-wrap2.img8:before {
  background: url(../img/img-half8.jpg) no-repeat 50% 50%/cover;
}
.img-half-wrap2 .img-half-detail2 p:not(:last-child) {
  margin-bottom: 15px;
}
.img-half-wrap2 .img-half-detail2 {
  padding: 30px;
  background: rgba(255, 255, 255, 0.9);
  line-height: 2;
  width: 65%;
  margin: 0px auto 0 0;
  -webkit-box-shadow: 3px 3px 10px -5px rgba(0, 0, 0, 0.1);
          box-shadow: 3px 3px 10px -5px rgba(0, 0, 0, 0.1);
}
@media all and (max-width: 800px) {
  .img-half-wrap2:before {
    width: 100%;
    height: 400px;
    top: 0;
    right: 0px;
  }
  .img-half-wrap2 .img-half-detail2 {
    width: 100%;
    margin-top: 220px;
    letter-spacing: 0.1em;
  }
}
@media all and (max-width: 639px) {
  .img-half-wrap2:before {
    width: 100%;
    height: 200px;
    top: 0;
    right: 0px;
  }
  .img-half-wrap2 .img-half-detail2 {
    width: 100%;
    padding: 20px;
    margin-top: 120px;
  }
}

.half-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.half-box.type1 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.half-box .half-img {
  width: 48%;
  position: relative;
  min-height: 400px;
}
@media all and (max-width: 639px) {
  .half-box .half-img {
    width: 100%;
    height: 300px;
  }
}
.half-box .half-img.img1 {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27687/philosophy.webp) no-repeat center/cover;
}
.half-box .half-img.img2 {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27687/service.webp) no-repeat center/cover;
}
.half-box .half-txt {
  width: 52%;
  padding: 80px 40px;
  background: #042461;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.half-box .half-txt.type2 {
  padding: 100px 15px 50px;
}
@media all and (max-width: 639px) {
  .half-box .half-txt.type2 {
    padding: 45px 15px;
  }
}
.half-box .half-txt .title {
  padding: 20px 26px;
  position: absolute;
  text-align: center;
  top: -30px;
  left: -120px;
  background-color: #fff;
  -webkit-box-shadow: 3px 3px 3px #568bec;
          box-shadow: 3px 3px 3px #568bec;
  letter-spacing: 8px;
  min-width: 250px;
  z-index: 2;
}
@media all and (max-width: 800px) {
  .half-box .half-txt .title {
    left: 0;
    right: auto;
    top: -33px;
  }
}
.half-box .half-txt .title .ja {
  font-size: 3rem;
  font-weight: 900;
  color: #042461;
  font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
}
.half-box .half-txt .title.type1 {
  right: -58px;
  left: auto;
}
@media all and (max-width: 800px) {
  .half-box .half-txt .title.type1 {
    left: 0;
    right: auto;
    top: -33px;
  }
}
.half-box .half-txt .inner p {
  font-size: 1.8rem;
  color: #fff;
  line-height: 1.8;
}
@media all and (max-width: 800px) {
  .half-box .half-txt {
    padding: 80px 12px;
  }
}
@media all and (max-width: 639px) {
  .half-box .half-txt {
    width: 100%;
    padding: 60px 20px 40px;
  }
}

.ttl_db {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  font-weight: bold;
  color: #880000;
  border-bottom: #568bec 1px solid;
  border-top: #568bec 1px solid;
  padding-top: 5px;
  padding-bottom: 5px;
  margin-bottom: 10px;
}
.ttl_db span {
  font-size: 1.6rem;
  display: block;
}
@media all and (max-width: 639px) {
  .ttl_db {
    font-size: 1.5rem;
  }
  .ttl_db span {
    font-size: 1.3rem;
  }
}

/* slide_list
----------------------------------*/
.slide_list {
  position: relative;
  padding-bottom: 40px;
  display: none;
}
.slide_list li {
  margin-right: 1%;
}
.slide_list li img {
  width: auto;
  height: 260px;
  border-radius: 15px 0 15px 0;
}
@media all and (max-width: 639px) {
  .slide_list li img {
    height: 180px;
  }
}

.gallery-title {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 6rem;
  color: #042461;
  margin-bottom: -30px;
  position: relative;
  z-index: 4;
  text-align: center;
}
.gallery-title span {
  display: inline-block;
  -webkit-transform: rotate(-10deg);
          transform: rotate(-10deg);
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
}
@media all and (max-width: 639px) {
  .gallery-title {
    font-size: 3.5rem;
  }
}

.top-interview {
  position: relative;
}
.top-interview:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: -webkit-gradient(linear, right top, left bottom, from(#042461), to(#77ddff));
  background-image: linear-gradient(to left bottom, #042461, #77ddff);
  z-index: -2;
  opacity: 0.3;
}
.top-interview .top-interview-title {
  position: relative;
  z-index: 2;
  font-size: 1.8rem;
  font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  padding-left: 30px;
  margin-top: -40px;
  margin-bottom: 25px;
}
.top-interview .top-interview-title .eng {
  line-height: 1;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
  display: block;
  font-size: 2.5rem;
  color: rgb(1.9801980198, 17.8217821782, 48.0198019802);
}
.top-interview .top-interview-title:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 80px;
  top: -20px;
  left: 0;
  background: #042461;
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
}
@media all and (max-width: 639px) {
  .top-interview .top-interview-title {
    font-size: 1.4rem;
  }
  .top-interview .top-interview-title .eng {
    font-size: 2.2rem;
  }
  .top-interview .top-interview-title:before {
    left: 10px;
    height: 50px;
  }
}
.top-interview .more {
  position: absolute;
  left: 50%;
  bottom: 10px;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.top-interview .more a {
  display: block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-align: center;
  font-weight: 700;
  line-height: 54px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 204px;
  height: 54px;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
  background: black;
  position: relative;
}
.top-interview .more a svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.top-interview .more a svg rect {
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
  stroke: #77ddff;
  stroke-width: 1;
  stroke-dasharray: 200px, 16px;
  stroke-dashoffset: 70px;
}
.top-interview .more a:hover {
  background: #111;
}
.top-interview .more a:hover svg rect {
  stroke-dashoffset: 284px;
}
.top-interview .more a span {
  color: #fff;
}

.relative {
  position: relative;
}

.interview-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1500px;
  margin-right: auto;
  margin-left: auto;
}
.interview-list .child {
  position: relative;
  padding-bottom: 80px;
  position: relative;
  width: 49%;
  margin: 0 2% 15px 0;
}
.interview-list .child:nth-child(2n) {
  margin-right: 0;
}
@media all and (max-width: 639px) {
  .interview-list .child {
    width: 100%;
    margin: 0 auto 15px;
  }
}

.interview_txt {
  font-weight: bold;
  text-align: center;
  font-size: 1.5rem;
}
@media all and (max-width: 639px) {
  .interview_txt {
    text-align: left;
    font-size: 1.3rem;
  }
}

.ttl01 {
  margin-bottom: 25px;
  letter-spacing: 0.2em;
  line-height: 1.4;
  font-size: 1.6rem;
  font-weight: bold;
}
@media all and (max-width: 639px) {
  .ttl01 {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }
}
.ttl01 i {
  margin-right: 7px;
}
.ttl01 span:nth-child(1), .ttl01 span:nth-child(9) {
  color: #ffa1a2;
}
.ttl01 span:nth-child(2), .ttl01 span:nth-child(10) {
  color: #ffd5a7;
}
.ttl01 span:nth-child(3), .ttl01 span:nth-child(11) {
  color: #f6ee73;
}
.ttl01 span:nth-child(4), .ttl01 span:nth-child(12) {
  color: #b8f5c2;
}
.ttl01 span:nth-child(5), .ttl01 span:nth-child(13) {
  color: #a7eaec;
}
.ttl01 span:nth-child(6), .ttl01 span:nth-child(14) {
  color: #8acce2;
}
.ttl01 span:nth-child(7), .ttl01 span:nth-child(15) {
  color: #dbcbef;
}
.ttl01 span:nth-child(8), .ttl01 span:nth-child(16) {
  color: #f9bdcc;
}
.ttl01 strong span {
  color: #2b2b2b !important;
}
.ttl01 em {
  display: block;
  font-size: 7rem;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: 600;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media all and (max-width: 639px) {
  .ttl01 em {
    font-size: 4rem;
  }
}

.ttl02 {
  margin-bottom: 25px;
  letter-spacing: 0.2em;
  line-height: 1.4;
  font-size: 1.8rem;
  font-weight: bold;
  color: #2b2b2b;
}
.ttl02 em {
  display: block;
  font-size: 5rem;
  letter-spacing: 0.1em;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: italic;
  color: #fff;
  text-shadow: 0.02em 0.02em 0 #880000, -0.02em 0.02em 0 #880000, 0.02em -0.02em 0 #880000, -0.02em -0.02em 0 #880000, 0.04em 0.04em 0 #042461, 0.06em 0.06em 0 #042461;
  -ms-filter: "DropShadow(color=$base_color2,offx=2,offy=2)";
}
@media all and (max-width: 639px) {
  .ttl02 {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
  .ttl02 em {
    font-size: 3rem;
  }
}

.ttl03 {
  margin-bottom: 25px;
  letter-spacing: 0.2em;
  line-height: 1.4;
  font-size: 1.6rem;
  font-weight: bold;
  color: #2b2b2b;
}
.ttl03 em {
  display: block;
  font-size: 4rem;
  letter-spacing: 0.2em;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: 600;
  line-height: 1;
  color: #fff;
  text-shadow: 0.02em 0.02em 0 #01994c, -0.02em 0.02em 0 #01994c, 0.02em -0.02em 0 #01994c, -0.02em -0.02em 0 #01994c, 0.04em 0.04em 0 #46e5a6, 0.06em 0.06em 0 #46e5a6;
  -ms-filter: "DropShadow(color=#01994c,offx=2,offy=2)";
}
@media all and (max-width: 639px) {
  .ttl03 {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }
  .ttl03 em {
    font-size: 2.5rem;
  }
}

.js-span-text span {
  display: inline-block;
  opacity: 0;
}
.js-span-text span:nth-child(1) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.1s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.1s forwards;
}
.js-span-text span:nth-child(2) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.2s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.2s forwards;
}
.js-span-text span:nth-child(3) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.3s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.3s forwards;
}
.js-span-text span:nth-child(4) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.4s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.4s forwards;
}
.js-span-text span:nth-child(5) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.5s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.5s forwards;
}
.js-span-text span:nth-child(6) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.6s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.6s forwards;
}
.js-span-text span:nth-child(7) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.7s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.7s forwards;
}
.js-span-text span:nth-child(8) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.8s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.8s forwards;
}
.js-span-text span:nth-child(9) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.9s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.9s forwards;
}
.js-span-text span:nth-child(10) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1s forwards;
}
.js-span-text span:nth-child(11) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.1s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.1s forwards;
}
.js-span-text span:nth-child(12) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.2s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.2s forwards;
}
.js-span-text span:nth-child(13) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.3s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.3s forwards;
}
.js-span-text span:nth-child(14) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.4s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.4s forwards;
}
.js-span-text span:nth-child(15) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.5s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.5s forwards;
}
.js-span-text span:nth-child(16) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.6s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.6s forwards;
}
.js-span-text span:nth-child(17) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.7s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.7s forwards;
}
.js-span-text span:nth-child(18) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.8s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.8s forwards;
}
.js-span-text span:nth-child(19) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.9s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.9s forwards;
}
.js-span-text span:nth-child(20) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2s forwards;
}
.js-span-text span:nth-child(21) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.1s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.1s forwards;
}
.js-span-text span:nth-child(22) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.2s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.2s forwards;
}
.js-span-text span:nth-child(23) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.3s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.3s forwards;
}
.js-span-text span:nth-child(24) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.4s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.4s forwards;
}
.js-span-text span:nth-child(25) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.5s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.5s forwards;
}
.js-span-text span:nth-child(26) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.6s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.6s forwards;
}
.js-span-text span:nth-child(27) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.7s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.7s forwards;
}
.js-span-text span:nth-child(28) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.8s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.8s forwards;
}
.js-span-text span:nth-child(29) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.9s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.9s forwards;
}
.js-span-text span:nth-child(30) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3s forwards;
}
.js-span-text span:nth-child(31) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.1s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.1s forwards;
}
.js-span-text span:nth-child(32) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.2s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.2s forwards;
}
.js-span-text span:nth-child(33) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.3s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.3s forwards;
}
.js-span-text span:nth-child(34) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.4s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.4s forwards;
}
.js-span-text span:nth-child(35) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.5s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.5s forwards;
}
.js-span-text span:nth-child(36) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.6s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.6s forwards;
}
.js-span-text span:nth-child(37) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.7s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.7s forwards;
}
.js-span-text span:nth-child(38) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.8s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.8s forwards;
}
.js-span-text span:nth-child(39) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.9s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.9s forwards;
}
.js-span-text span:nth-child(40) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4s forwards;
}

@-webkit-keyframes text {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px) translateY(-10px) scale(1.3);
            transform: translateX(-20px) translateY(-10px) scale(1.3);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes text {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px) translateY(-10px) scale(1.3);
            transform: translateX(-20px) translateY(-10px) scale(1.3);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
.img-half-bg {
  position: relative;
}
.img-half-bg.bm50 {
  margin-bottom: 50px;
}
.img-half-bg:before {
  position: absolute;
  content: "";
  width: 65%;
  height: 70%;
  right: 0;
  bottom: 0;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#880000), to(#fdfdfd));
  background-image: linear-gradient(to top, #880000, #fdfdfd);
  opacity: 0.1;
  z-index: -2;
}
@media all and (max-width: 1200px) {
  .img-half-bg:before {
    right: 40px;
  }
}
@media all and (max-width: 800px) {
  .img-half-bg:before {
    width: 100%;
    right: 0;
  }
}
@media all and (max-width: 639px) {
  .img-half-bg:before {
    height: 80%;
  }
}

.mtitles {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  position: absolute;
  min-height: 100px;
  top: 0;
  left: 0;
}
.mtitles .ja {
  display: block;
  font-size: 2.8rem;
  color: #111;
  letter-spacing: 0.2em;
  padding-right: 5px;
  font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  line-height: 2;
}
.mtitles .eng {
  display: block;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2rem;
  color: #042461;
}
@media all and (max-width: 639px) {
  .mtitles {
    -webkit-writing-mode: inherit;
        -ms-writing-mode: inherit;
            writing-mode: inherit;
    position: static;
    margin-bottom: 20px;
    min-height: initial;
    min-height: auto;
  }
  .mtitles .ja {
    font-size: 1.6rem;
  }
  .mtitles .eng {
    font-size: 1.4rem;
  }
}

.recruit-lead {
  position: relative;
  z-index: 2;
  margin: -300px 0 120px;
  line-height: 2.5;
}
.recruit-lead span {
  letter-spacing: 0.2em;
  padding: 5px;
  color: #ea2227;
  font-size: 4.4rem;
  margin-bottom: 5px;
}
.recruit-lead .big {
  font-size: 4rem;
  color: #fff;
  background: #042461;
}
@media all and (max-width: 800px) {
  .recruit-lead {
    margin: -200px 0 90px;
  }
  .recruit-lead span {
    font-size: 2.5rem;
  }
  .recruit-lead .big {
    font-size: 1.8rem;
  }
}
@media all and (max-width: 639px) {
  .recruit-lead {
    margin: -130px 0 30px;
  }
  .recruit-lead span {
    letter-spacing: 0.12em;
    font-size: 2rem;
  }
  .recruit-lead .big {
    font-size: 1.4rem;
  }
}

.bg-05 {
  position: relative;
  max-width: calc(100% - 50px);
  margin-left: auto;
  margin-right: auto;
}
@media all and (max-width: 800px) {
  .bg-05 {
    max-width: calc(100% - 20px);
  }
}
.bg-05 {
  margin: 40px auto;
}
.bg-05.bg-05r:before {
  background-image: -webkit-gradient(linear, left top, right top, from(#042461), to(#ffe92d));
  background-image: linear-gradient(to right, #042461, #ffe92d);
}
.bg-05:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: -webkit-gradient(linear, right top, left top, from(#042461), to(#ffe92d));
  background-image: linear-gradient(to left, #042461, #ffe92d);
  z-index: -2;
  opacity: 0.2;
}
@media all and (max-width: 800px) {
  .bg-05 {
    max-width: calc(100% - 10px);
    margin: 10px auto;
  }
}

.bg-wrap {
  position: relative;
}
.bg-wrap:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 200px;
  top: 50%;
  left: 0;
  background-image: linear-gradient(-45deg, rgb(131.8457446809, 170.4680851064, 241.1542553191), #880000);
  z-index: -1;
  margin-top: -100px;
  opacity: 0.6;
}
@media all and (max-width: 800px) {
  .bg-wrap:before {
    height: 160px;
    margin-top: -80px;
  }
}
@media all and (max-width: 639px) {
  .bg-wrap:before {
    height: 120px;
    margin-top: -60px;
  }
}

spc {
  padding: 5px;
}

/* slick
----------------------------------*/
.thumb-item li {
  width: 100%;
}

.thumb-item-nav li {
  overflow: hidden;
  height: 100px;
}
.thumb-item-nav li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
@media all and (max-width: 639px) {
  .thumb-item-nav li {
    height: 30px;
  }
}

.accbox {
  margin: 0em auto;
  padding: 0;
  width: 100%; /*最大幅*/
}
@media all and (max-width: 639px) {
  .accbox {
    width: 95%;
  }
}

/*ラベル*/
.accbox label {
  display: block;
  margin: 15px 0 0;
  padding: 0 0;
  font-size: 18px;
  background: #fff;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.accbox label p {
  color: #555;
  padding: 11px 11px 11px 70px;
  position: relative;
  background: #eee;
  font-size: 19px;
}
@media all and (max-width: 639px) {
  .accbox label p {
    padding-left: 50px;
    font-size: 16px;
  }
}
.accbox label p:before {
  content: "Q";
  width: 2em;
  height: 100%;
  background: #042461;
  color: #fff;
  font-size: 27px;
  display: block;
  position: absolute;
  text-align: center;
  left: 0;
  top: 0;
}
@media all and (max-width: 639px) {
  .accbox label p:before {
    font-size: 20px;
    line-height: 2.4em;
  }
}

/*ラベルホバー時*/
.accbox label:hover {
  background: rgba(255, 255, 255, 0.7);
}

/*チェックは隠す*/
.accbox input {
  display: none;
}

/*中身を非表示にしておく*/
.accbox .accshow {
  height: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: 0.8s;
  transition: 0.8s;
  position: relative;
}
.accbox .accshow:before {
  content: "A";
  width: 2em;
  height: 100%;
  background: #880000;
  color: #fff;
  font-size: 27px;
  display: block;
  position: absolute;
  text-align: center;
  left: 0;
  top: 0;
}
@media all and (max-width: 639px) {
  .accbox .accshow:before {
    font-size: 20px;
    line-height: 2.4em;
  }
}
/*クリックで中身表示*/
.cssacc:checked + .accshow {
  height: auto;
  background: #f4f4f4;
  opacity: 1;
  padding: 11px 11px 11px 70px;
  color: #555;
}
@media all and (max-width: 639px) {
  .cssacc:checked + .accshow {
    padding-left: 50px;
  }
}

/* accordion
----------------------------------*/
.accordion dt,
.accordion dd {
  position: relative;
  padding: 1em;
}
.accordion dt {
  background: #ffffff;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: 600;
  border-bottom: 1px dotted #ccc;
}
.accordion dt:after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: '\f067';
  font-weight: 900;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 1.7rem;
}
.accordion dt.on:after {
  font-family: "Font Awesome 5 Free";
  content: '\f068';
  font-weight: 900;
}
.accordion dd {
  display: none;
  padding: 15px;
  background: rgba(255, 255, 255, 0.9);
}

.list_shikaku.white li:not(:last-of-type):after {
  color: #fff;
}
@media all and (max-width: 639px) {
  .list_shikaku.white li:before {
    color: #fff;
  }
}
.list_shikaku li {
  display: inline-block;
  padding: 3px;
}
.list_shikaku li:not(:last-of-type):after {
  content: "/";
  margin: 0 5px;
  color: #880000;
  font-weight: normal;
}
@media all and (max-width: 639px) {
  .list_shikaku li {
    display: block;
    padding: 0;
  }
  .list_shikaku li:before {
    content: "-";
    color: #042461;
  }
  .list_shikaku li:not(:last-of-type):after {
    display: none;
  }
}

.top-merit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.top-merit li {
  width: 48%;
  position: relative;
  margin: 0 0 45px 0;
}
.top-merit li:nth-child(2), .top-merit li:nth-child(5) {
  -webkit-transform: translateY(45px);
          transform: translateY(45px);
}
.top-merit li .merit-num {
  display: block;
  position: absolute;
  text-align: center;
  font-size: 5rem;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  text-shadow: 1px 1px 0px #042461, -1px 1px 0px #042461, 1px -1px 0px #042461, -1px -1px 0px #042461, 1px 0px 0px #042461, 0px 1px 0px #042461, -1px 0px 0px #042461, 0px -1px 0px #042461;
  left: 20px;
  top: -26px;
  z-index: 3;
}
.top-merit li figure img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-merit li h3 {
  margin: 15px auto 10px;
  font-size: 1.8rem;
  text-align: center;
  line-height: 1.4;
  font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  color: #550000;
}
@media all and (max-width: 1200px) {
  .top-merit li {
    width: 48%;
  }
  .top-merit li .merit-num {
    font-size: 5rem;
  }
  .top-merit li h3 {
    font-size: 1.6rem;
  }
}
@media all and (max-width: 800px) {
  .top-merit {
    margin: 0 auto;
    max-width: 600px;
    width: 95%;
  }
  .top-merit li {
    width: 100%;
    margin: 0 auto 20px;
  }
  .top-merit li:nth-child(2n), .top-merit li:nth-child(5) {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  .top-merit li:last-child {
    margin: 0 auto;
  }
  .top-merit li .merit-num {
    font-size: 3.5rem;
    top: 0px;
  }
  .top-merit li h3 {
    font-size: 1.3rem;
    letter-spacing: 0.15em;
  }
}

.content-list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.content-list li {
  position: relative;
  width: 47%;
  margin-bottom: 5%;
}
.content-list li a {
  background: #fff;
  display: block;
  padding: 25px 25px 50px;
}
.content-list li a .title-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
}
.content-list li a .title-box .in-title {
  width: 100%;
}
.content-list li a .title-box .in-title .eng {
  display: block;
  color: #9d9d9d;
}
.content-list li a .title-box .in-title .ja {
  font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 1.8rem;
  color: #463c2f;
}
.content-list li a figure {
  margin-bottom: 20px;
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.content-list li a figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.content-list li a .txt {
  color: #463c2f;
}
.content-list li a .in-btn {
  position: absolute;
  bottom: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #042461;
  padding: 15px 30px;
  border-radius: 50px;
  text-align: center;
  color: #fff;
  width: 70%;
  max-width: 500px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.content-list li a:hover figure img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.content-list li a:hover .in-btn {
  background: #042461;
}
@media all and (max-width: 1200px) {
  .content-list li {
    width: 49%;
    margin-bottom: 80px;
  }
}
@media all and (max-width: 639px) {
  .content-list li {
    width: 100%;
  }
  .content-list li a {
    padding: 30px 30px 80px;
  }
  .content-list li a .title-box .in-title .ja {
    font-size: 1.5rem;
  }
}

.flex-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 60px;
}
.flex-layout .title01.is-vertical {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-align: left;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 0;
}
.flex-layout .list3.treat {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  margin: 0;
}

@media all and (max-width: 1200px) {
  .flex-layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .flex-layout .title01.is-vertical {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    text-align: center;
    margin-bottom: 40px;
  }
}
.bg-greet {
  position: relative;
}
.bg-greet:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#e0ebff));
  background: linear-gradient(to bottom, transparent, #e0ebff);
  z-index: -2;
}

.business-box .column2 {
  margin-bottom: 40px;
}
@media all and (max-width: 639px) {
  .business-box .column2 {
    margin-bottom: 20px;
  }
}
.business-box .contents-wrapper {
  margin: 0 auto;
  background: #fefefe;
  padding: 40px;
  width: 100%;
}
.business-box .contents-wrapper:not(:last-child) {
  margin-bottom: 60px;
}
@media all and (max-width: 639px) {
  .business-box .contents-wrapper {
    width: 100%;
    padding: 15px;
  }
}
.business-box .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media all and (max-width: 800px) {
  .business-box .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media all and (max-width: 639px) {
  .business-box .inner {
    width: 100%;
    padding: 0;
    gap: 20px;
  }
}
.business-box .inner .ttl {
  width: 30%;
}
@media all and (max-width: 800px) {
  .business-box .inner .ttl {
    width: 40%;
  }
}
@media all and (max-width: 639px) {
  .business-box .inner .ttl {
    width: 60%;
  }
}
.business-box .inner .ttl.top {
  margin-top: -60px;
}
@media all and (max-width: 1200px) {
  .business-box .inner .ttl .mtitle3 {
    -webkit-writing-mode: initial;
        -ms-writing-mode: initial;
            writing-mode: initial;
  }
}
@media all and (max-width: 1200px) and (max-width: 639px) {
  .business-box .inner .ttl .mtitle3 {
    margin-bottom: 0;
  }
}
.business-box .inner .img {
  margin-bottom: 15px;
  width: 70px;
}
@media all and (max-width: 639px) {
  .business-box .inner .img {
    margin-bottom: 0;
  }
}
.business-box .inner .child-txt {
  width: 66%;
}
@media all and (max-width: 800px) {
  .business-box .inner .child-txt {
    width: 100%;
  }
}
@media all and (max-width: 639px) {
  .business-box .inner .child-txt p {
    font-size: 1.4rem;
  }
}
@media all and (max-width: 639px) {
  .business-box .inner .child-txt p.mtext2 {
    font-size: 1.6rem;
  }
}
.business-box .inner2 {
  background: #fefefe;
  width: 90%;
  margin: 0 auto;
}
@media all and (max-width: 639px) {
  .business-box .inner2 {
    width: 100%;
  }
}
.business-box .inner2 .mtitle_line {
  width: 90%;
  margin: 0 auto 25px;
}
.business-box .child-img > div img {
  height: 280px;
  width: 335px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media all and (max-width: 1200px) {
  .business-box .child-img > div {
    width: 100%;
  }
}
@media all and (max-width: 639px) {
  .business-box .child-img > div img {
    height: 235px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.business-box .sub-txt {
  padding: 20px;
  border: 2px solid rgba(11, 54, 101, 0.5);
  border-radius: 5px;
  background: #fefefe;
}

grid {
  position: relative;
  margin: 0 0 30px !important;
  padding: 0 !important;
  width: 100% !important;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.grid-item .gallery {
  background: #f2f2f2;
  width: 100%;
  height: 200px;
  text-align: center;
  vertical-align: middle;
  overflow: hidden;
  margin-bottom: 10px;
}
.grid-item {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  width: 32.5%;
  font-size: 12px;
  background: #fff;
  padding: 10px 10px 10px;
  margin-right: 1.25%;
  margin-bottom: 15px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 1px 1px 3px 0;
          box-shadow: rgba(0, 0, 0, 0.1) 1px 1px 3px 0;
}
.grid-item:nth-child(3n) {
  margin-right: 0px;
}
.grid-item a {
  display: block;
  text-align: center;
  width: 100%;
  height: 200px;
  margin-bottom: 10px;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0 0 1px 1px;
          box-shadow: rgba(0, 0, 0, 0.4) 0 0 1px 1px;
}
.grid-item * {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.grid-item h5 {
  font-size: 1.3rem;
  text-align: center;
  color: #042461;
}
.grid-item dt {
  float: left;
  width: 7em;
  background: #042461;
  padding: 5px 0px;
  line-height: 1.3;
  color: #fff;
  text-align: center;
  margin: 2px 0 0;
  font-weight: bold;
  border-radius: 5px;
}
.grid-item dd {
  padding-left: 8em;
  padding-top: 5px;
  padding-bottom: 10px;
  line-height: 1.6;
  border-bottom: dotted 1px #aaa;
  margin: 5px 0;
}
.grid-item dd:last-child {
  border-bottom: 0px;
}
.grid-item p {
  line-height: 1.6em;
  font-size: 13px;
}
.grid-item img {
  vertical-align: middle;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.grid-item a:hover img {
  opacity: 0.7;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.grid-item {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.grid-item:hover {
  -webkit-transform: scale(1.01);
          transform: scale(1.01);
  -webkit-filter: drop-shadow(8px 2px 10px rgba(43, 43, 43, 0.2));
  -moz-filter: drop-shadow(8px 2px 10px rgba(43, 43, 43, 0.2));
  -ms-filter: drop-shadow(8px 2px 10px rgba(43, 43, 43, 0.2));
  filter: drop-shadow(8px 2px 10px rgba(43, 43, 43, 0.2));
}

@media all and (max-width: 639px) {
  .grid-item {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    width: calc(100% - 0px) !important;
    font-size: 12px;
    background: #fff;
    padding: 10px 10px 10px;
    margin-right: 0;
    -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0 0 0px 1px;
            box-shadow: rgba(0, 0, 0, 0.3) 0 0 0px 1px;
  }
}
.form-pattern-1 dl dt:not(.pattern-exclusion) span.required::before {
  background-color: #880000 !important;
}

/* slick
----------------------------------*/
#slick_box .thumb-item {
  margin-bottom: 0px;
}
#slick_box .thumb-item .items a {
  width: 100%;
  height: 520px;
  overflow: hidden;
  display: block;
  padding: 0 5px;
  border: 1px solid #ffffff;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  padding: 1em;
}
#slick_box .thumb-item .items a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
#slick_box .thumb-item .items a img:hover {
  opacity: 0.8;
}
@media all and (max-width: 1200px) {
  #slick_box .thumb-item .items a {
    height: 400px;
  }
}
@media all and (max-width: 800px) {
  #slick_box .thumb-item .items a {
    height: 280px;
  }
}
@media all and (max-width: 639px) {
  #slick_box .thumb-item .items a {
    height: 200px;
  }
}

.thumb-item-nav .items {
  overflow: hidden;
  height: 180px;
  margin: 0 5px;
  width: auto;
}
.thumb-item-nav .items img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
@media all and (max-width: 1200px) {
  .thumb-item-nav .items {
    height: 140px;
  }
}
@media all and (max-width: 800px) {
  .thumb-item-nav .items {
    height: 120px;
  }
}
@media all and (max-width: 639px) {
  .thumb-item-nav .items {
    height: 100px;
  }
}

.slider-wrap .thumb-item-nav .slick-prev,
.slider-wrap .thumb-item-nav .slick-next {
  display: none !important;
}

.slick-dots li button:before {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.slider-item {
  width: 100%;
  max-width: 700px;
  border: 2px solid #568bec;
  padding: 25px;
  background: #ffffff;
}

.slide-arrow {
  position: absolute;
  top: 50%;
  z-index: 200;
  width: 20px;
  height: 20px;
  top: 50%;
  margin-top: -10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  cursor: pointer;
}
@media all and (max-width: 639px) {
  .slide-arrow {
    width: 15px;
    height: 15px;
    margin-top: -7px;
  }
}
.slide-arrow.prev-arrow {
  left: 50%;
  margin-left: -370px;
  border-bottom: solid 2px;
  border-left: solid 2px;
  border-color: #042461;
}
@media all and (max-width: 1200px) {
  .slide-arrow.prev-arrow {
    left: 10px;
    margin-left: 0;
  }
}
@media all and (max-width: 639px) {
  .slide-arrow.prev-arrow {
    border-color: #568bec;
  }
}
.slide-arrow.next-arrow {
  right: 50%;
  margin-right: -370px;
  border-top: solid 2px;
  border-right: solid 2px;
  border-color: #042461;
}
@media all and (max-width: 1200px) {
  .slide-arrow.next-arrow {
    right: 10px;
    margin-right: 0;
  }
}
@media all and (max-width: 639px) {
  .slide-arrow.next-arrow {
    border-color: #568bec;
  }
}