@charset "UTF-8";
/* アニメーションベンダープレフィックス込み指定 */
/* アニメーションベンダープレフィックス込み指定 */
body {
  color: #333;
  font-family: "YakuHanJP", Lato, "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "Meiryo", "メイリオ", sans-serif;
  font-size: 1.7rem;
  line-height: 1.7;
}

a {
  color: #002366;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:hover {
  color: rgb(0, 17.5, 51);
}

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

.m-0 {
  margin: 0 !important;
}

/* language
----------------------------------*/
.ja {
  font-family: "YakuHanJP", Lato, "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "Meiryo", "メイリオ", sans-serif;
}

.en {
  font-family: "YakuHanJP", "Playfair Display", serif;
  font-weight: 600;
  text-transform: uppercase;
}

.loader {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
}
.loader::after {
  -webkit-animation: loader 0.5s linear infinite;
          animation: loader 0.5s linear infinite;
  border: 1px solid #002366;
  border-radius: 50%;
  border-right: 1px solid rgba(0, 35, 102, 0.2);
  border-top: 1px solid rgba(0, 35, 102, 0.2);
  content: "";
  height: 70px;
  width: 70px;
}
.loader.off {
  display: none;
}

@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes loader {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* header
----------------------------------*/
header {
  position: relative;
  z-index: 999;
}

#header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: #fff;
  z-index: 100;
  position: relative;
}
#header::after {
  content: "";
  position: absolute;
  bottom: -70px;
  left: 0;
  width: 100%;
  height: 91px;
  background-repeat: no-repeat;
  -webkit-filter: drop-shadow(0 6px 4px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0 6px 4px rgba(0, 0, 0, 0.1));
  background-size: 100% 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 240" preserveAspectRatio="none"><path fill="%23ffffff" d="M1919.8,0L1920,128.7c0,0-112,61.3-267,88.3c-59.6,10.4-190,23-220,23c-78,0-227.6-7-411.5-77.2 C834.7,91.5,639.8,54.5,508.8,54.5c-146.9,0-274.2-3.7-508.9,71.9V0H1919.8z" /></svg>');
  pointer-events: none;
  z-index: -1;
}
@media all and (max-width: 639px) {
  #header::after {
    bottom: -35px;
    left: 0;
    width: 100%;
    height: 43px;
  }
}
#header #logo {
  width: 280px;
  margin-top: -48px;
}
#header .inner {
  max-width: 97%;
  margin: 0 auto;
  min-width: 1024px;
  padding: 60px 0 20px;
  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;
}
#header #head_left {
  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;
}
#header #head_right {
  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-top: 10px;
}
#header.static {
  position: static;
}
#header.is-fixed {
  position: fixed;
  background-color: #fff;
}
#header.is-fixed #navi li a {
  color: #333;
}
#header.is-fixed #navi li a span {
  color: #002366;
}
#header.is-fixed .mega_parents:hover .mega_menu {
  opacity: 1;
  max-height: 9999px;
  padding: 20px 0;
}
#header.is-hide {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.underlayer #header {
  background-color: #fff !important;
}
.underlayer #navi li a {
  color: #333;
}
.underlayer #navi li a span {
  color: #002366;
}

/* navi
----------------------------------*/
#navi {
  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;
  text-align: center;
}
#navi > li {
  margin-right: 15px;
  padding-right: 15px;
  z-index: 9999;
}
#navi > li a {
  color: #333;
  font-weight: 600;
  line-height: 1.2;
}
#navi > li span {
  display: block;
  font-size: 1rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#navi > li:last-child {
  margin-right: 0;
  padding-right: 0;
}
#navi > li:last-child a {
  display: block;
  padding: 5px 15px;
  border: 2px solid #87CEEB;
  border-radius: 5px;
  color: #002366;
  background: rgba(255, 255, 255, 0.8);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#navi > li:last-child a:hover {
  background-color: #87CEEB;
  color: #fff;
}
#navi > li:last-child a:hover span.en {
  color: #fff;
}

/* mega_menu
----------------------------------*/
.mega_menu {
  opacity: 0;
  overflow: hidden;
  position: absolute;
  top: 128px;
  left: 0;
  z-index: 10;
  width: 100%;
  max-height: 0;
  background: -webkit-gradient(linear, left top, right top, color-stop(20%, #002366), color-stop(80%, #87CEEB));
  background: linear-gradient(90deg, #002366 20%, #87CEEB 80%);
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.mega_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1150px;
  margin: 0 auto;
  padding-left: 20px;
}
.mega_wrap .ttl_area {
  width: 240px;
  padding-top: 40px;
  margin-right: auto;
}
.mega_wrap .ttl_area .ttl {
  font-size: 2.4rem;
  font-weight: 600;
  color: #fff;
}
.mega_wrap .ttl_area .ttl span {
  font-size: 1.2rem;
  color: #fff !important;
}
.mega_wrap .menu_list {
  width: calc(100% - 260px);
  max-width: 1024px;
  margin-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.mega_wrap .menu_list li {
  width: 25%;
  max-width: 250px;
  border-left: 2px solid #002366;
  border-bottom: 2px solid #002366;
}
.mega_wrap .menu_list li a {
  display: block;
}
.mega_wrap .menu_img {
  position: relative;
  overflow: hidden;
  height: 160px;
}
.mega_wrap .menu_img img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: middle;
}
.mega_wrap .menu_btn {
  position: relative;
  background-color: #fff;
  color: #333;
  font-size: 1.3rem;
  line-height: 1.3;
  padding: 20px 5px;
}
.mega_wrap .menu_btn:after {
  position: absolute;
  top: calc(50% - 0.5em);
  right: 10px;
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  color: #002366;
}

/* head_info
----------------------------------*/
.head_info {
  position: absolute;
  top: 0;
  right: 45px;
  z-index: 999;
  color: #002366;
  padding: 20px 10px;
  font-size: 1.3rem;
  line-height: 1.4;
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}
@media screen and (max-width: 667px) {
  .head_info {
    font-size: 1.1rem;
  }
}

/* page-top
----------------------------------*/
#page-top {
  position: fixed;
  right: -10px;
  bottom: 6em;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  z-index: 5;
}
#page-top a {
  display: block;
  position: relative;
  color: #002366;
  font-weight: 400;
}
#page-top a:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  display: inline-block;
  width: 50px;
  height: 1px;
  background-color: #002366;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#page-top a:hover:before {
  width: 100px;
}

/* footer
----------------------------------*/
#footer {
  background-color: #18a6e0;
  color: #fff;
}
#footer .inner {
  max-width: 1150px;
  margin: 0 auto;
  padding: 80px 0 100px;
}
#footer .foot_contents {
  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;
}
#footer .foot_address {
  width: 30%;
}
#footer .foot_link {
  width: 65%;
}
#footer .link_list {
  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;
}
#footer .link_list a {
  position: relative;
  color: #fff;
}
#footer .link_list a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  background-color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#footer .link_list a:hover:after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
#footer .link_list > li > a {
  font-weight: 600;
}
#footer .sub_link_list {
  margin-top: 15px;
  font-size: 1.3rem;
}
#footer .sub_link_list li {
  margin-top: 10px;
}
#footer .sub_link_list li a {
  position: relative;
  padding-left: 15px;
}
#footer .sub_link_list li a:before {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  color: #002366;
}
#footer .address {
  font-size: 1.2rem;
}
#footer .flogo {
  margin-bottom: 24px;
  width: 230px;
}
#footer .copyright {
  margin-top: 40px;
  text-align: center;
  font-size: 1rem;
}

.telephone {
  margin-bottom: 24px;
  width: 360px;
}

/* sp_navi
----------------------------------*/
#sp_navi,
.humb-menu {
  display: none;
}

/* slideshow
----------------------------------*/
#slideshow {
  position: relative;
  overflow: hidden;
}

.swiper-container {
  position: relative;
  z-index: 1; /* 他のコンテンツより前面、または適切な順序に */
  overflow: hidden;
  background-color: #fff; /* 背景を白にしておくと切り替えが安定します */
}

#catch {
  position: absolute;
  z-index: 50;
  /* --- 中央配置のための修正 --- */
  top: 40%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 90%;
  text-align: center; /* テキストを中央揃えに */
  /* -------------------------- */
  -webkit-transition: opacity 2s cubic-bezier(0.18, 0.06, 0.23, 1);
  transition: opacity 2s cubic-bezier(0.18, 0.06, 0.23, 1);
}
#catch h3 {
  font-size: 5rem;
  font-family: "YakuHanJP", Lato, "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "Meiryo", "メイリオ", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: "YakuHanJP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  letter-spacing: 0.04em;
  line-height: 1.3;
  display: inline-block;
  color: #fff;
  -webkit-filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.4));
          filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.4));
  opacity: 0;
}
#catch h3.on {
  opacity: 1;
  -webkit-transition: all 2s ease-in;
  transition: all 2s ease-in;
}
#catch {
  /* レスポンシブ部分の調整 */
}
@media all and (max-width: 1100px) {
  #catch h3 {
    font-size: 3rem;
  }
}
@media all and (max-width: 896px) {
  #catch h3 {
    font-size: 2.2rem;
  }
}
@media all and (max-width: 639px) {
  #catch h3 {
    font-size: 1.5rem;
  }
}

.js-span-text.on {
  opacity: 1;
}
.js-span-text.on span {
  display: inline-block;
  opacity: 0;
  letter-spacing: 0.1em;
}
.js-span-text.on span:nth-child(1) {
  -webkit-animation: text 1.5s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.1s forwards;
          animation: text 1.5s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.1s forwards;
}
.js-span-text.on span:nth-child(2) {
  -webkit-animation: text 1.5s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.2s forwards;
          animation: text 1.5s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.2s forwards;
}
.js-span-text.on span:nth-child(3) {
  -webkit-animation: text 1.5s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.3s forwards;
          animation: text 1.5s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.3s forwards;
}
.js-span-text.on span:nth-child(4) {
  -webkit-animation: text 1.5s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.4s forwards;
          animation: text 1.5s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.4s forwards;
}
.js-span-text.on span:nth-child(5) {
  -webkit-animation: text 1.5s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.5s forwards;
          animation: text 1.5s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.5s forwards;
}
.js-span-text.on span:nth-child(6) {
  -webkit-animation: text 1.5s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.6s forwards;
          animation: text 1.5s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.6s forwards;
}
.js-span-text.on span:nth-child(7) {
  -webkit-animation: text 1.5s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.7s forwards;
          animation: text 1.5s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.7s forwards;
}
.js-span-text.on span:nth-child(8) {
  -webkit-animation: text 1.5s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.8s forwards;
          animation: text 1.5s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.8s forwards;
}
.js-span-text.on span:nth-child(9) {
  -webkit-animation: text 1.5s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.9s forwards;
          animation: text 1.5s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.9s forwards;
}
.js-span-text.on span:nth-child(10) {
  -webkit-animation: text 1.5s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1s forwards;
          animation: text 1.5s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1s forwards;
}
.js-span-text.on span:nth-child(11) {
  -webkit-animation: text 1.5s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.1s forwards;
          animation: text 1.5s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.1s forwards;
}
.js-span-text.on span:nth-child(12) {
  -webkit-animation: text 1.5s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.2s forwards;
          animation: text 1.5s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.2s forwards;
}
.js-span-text.on span:nth-child(13) {
  -webkit-animation: text 1.5s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.3s forwards;
          animation: text 1.5s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.3s forwards;
}
.js-span-text.on span:nth-child(14) {
  -webkit-animation: text 1.5s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.4s forwards;
          animation: text 1.5s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.4s forwards;
}
.js-span-text.on span:nth-child(15) {
  -webkit-animation: text 1.5s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.5s forwards;
          animation: text 1.5s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.5s forwards;
}
.js-span-text.on span:nth-child(16) {
  -webkit-animation: text 1.5s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.6s forwards;
          animation: text 1.5s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.6s forwards;
}
.js-span-text.on span:nth-child(17) {
  -webkit-animation: text 1.5s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.7s forwards;
          animation: text 1.5s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.7s forwards;
}
.js-span-text.on span:nth-child(18) {
  -webkit-animation: text 1.5s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.8s forwards;
          animation: text 1.5s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.8s forwards;
}
.js-span-text.on span:nth-child(19) {
  -webkit-animation: text 1.5s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.9s forwards;
          animation: text 1.5s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.9s forwards;
}
.js-span-text.on span:nth-child(20) {
  -webkit-animation: text 1.5s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2s forwards;
          animation: text 1.5s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2s forwards;
}
.js-span-text.on span:nth-child(21) {
  -webkit-animation: text 1.5s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.1s forwards;
          animation: text 1.5s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.1s forwards;
}
.js-span-text.on span:nth-child(22) {
  -webkit-animation: text 1.5s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.2s forwards;
          animation: text 1.5s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.2s forwards;
}
.js-span-text.on span:nth-child(23) {
  -webkit-animation: text 1.5s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.3s forwards;
          animation: text 1.5s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.3s forwards;
}
.js-span-text.on span:nth-child(24) {
  -webkit-animation: text 1.5s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.4s forwards;
          animation: text 1.5s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.4s forwards;
}
.js-span-text.on span:nth-child(25) {
  -webkit-animation: text 1.5s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.5s forwards;
          animation: text 1.5s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.5s forwards;
}
.js-span-text.on span:nth-child(26) {
  -webkit-animation: text 1.5s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.6s forwards;
          animation: text 1.5s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.6s forwards;
}
.js-span-text.on span:nth-child(27) {
  -webkit-animation: text 1.5s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.7s forwards;
          animation: text 1.5s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.7s forwards;
}
.js-span-text.on span:nth-child(28) {
  -webkit-animation: text 1.5s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.8s forwards;
          animation: text 1.5s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.8s forwards;
}
.js-span-text.on span:nth-child(29) {
  -webkit-animation: text 1.5s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.9s forwards;
          animation: text 1.5s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.9s forwards;
}
.js-span-text.on span:nth-child(30) {
  -webkit-animation: text 1.5s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3s forwards;
          animation: text 1.5s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3s forwards;
}

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

@keyframes text {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-40px) translateY(-20px) scale(1.6);
            transform: translateX(-40px) translateY(-20px) scale(1.6);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
.swiper-slide {
  overflow: hidden;
  position: relative;
}

.slide-img {
  overflow: hidden;
  height: 95vh;
}
.slide-img:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.2);
}
.slide-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

#catch-time {
  z-index: 3;
  position: absolute;
  right: 2%;
  bottom: 0%;
  width: 480px;
  font-size: 13px;
  border-radius: 10px;
  background: rgba(0, 35, 102, 0.7);
  backdrop-filter: blur(4px);
  color: #fff;
  padding: 20px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  font-weight: 600;
}
@media all and (max-width: 1100px) {
  #catch-time {
    padding: 5px;
  }
}
#catch-time .txt {
  text-align: center;
  margin-top: 12px;
  font-size: 12px;
}
#catch-time .txt.alert {
  color: #fff;
  opacity: 0.9;
}
#catch-time table {
  width: 100%;
  border-collapse: collapse;
}
#catch-time table th,
#catch-time table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 4px;
  text-align: center;
  vertical-align: middle;
  line-height: 1.4;
  color: #fff; /* 写真の色（緑やオレンジ）は使わず白で統一 */
}
#catch-time table th {
  font-size: 13px;
}
#catch-time table th .time-label {
  font-size: 14px;
  display: block;
  margin-bottom: 2px;
}
#catch-time table th .time-detail {
  font-size: 10px;
  font-weight: normal;
  opacity: 0.8;
}
#catch-time table td {
  font-size: 11px;
  white-space: nowrap;
}
#catch-time {
  /* レスポンシブ設定は既存を維持 */
}
@media all and (max-width: 1367px) {
  #catch-time {
    width: 420px;
  }
}
@media all and (max-width: 1100px) {
  #catch-time {
    font-size: 12px;
    width: 380px;
    bottom: 8%;
  }
}
@media all and (max-width: 896px) {
  #catch-time {
    position: relative;
    width: 95%;
    background: #FFFFFF;
    text-shadow: none;
    color: #835c39;
    right: auto;
    bottom: auto;
    margin: 20px auto;
  }
  #catch-time table th, #catch-time table td {
    border-bottom: 1px solid rgba(131, 92, 57, 0.3);
    color: #835c39;
  }
  #catch-time .txt.alert {
    color: #d00;
  }
}

.page_scroll {
  display: inline-block;
  position: absolute;
  right: 2%;
  bottom: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
  padding: 10px 10px 110px;
  overflow: hidden;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}
.page_scroll::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 2;
  width: 1px;
  height: 100px;
  background: rgba(255, 255, 255, 0.4);
}
.page_scroll::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 100px;
  background: #fff;
  -webkit-animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) infinite;
          animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}

@-webkit-keyframes sdl {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50.1% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}

@keyframes sdl {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50.1% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}
@-webkit-keyframes sdb {
  0% {
    -webkit-transform: rotateY(0) rotateZ(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: rotateY(720deg) rotateZ(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}
/* contact_btn
----------------------------------*/
.contact_btn li a,
.contact_btn li button {
  display: block;
  position: relative;
  overflow: hidden;
  padding: 0.5em 3em;
  border-radius: 5em;
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
}
.contact_btn li a span,
.contact_btn li button span {
  position: relative;
}
.contact_btn li a:before,
.contact_btn li button:before {
  display: block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
}
.contact_btn li a:after,
.contact_btn li button:after {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.contact_btn li a:hover:before,
.contact_btn li button:hover:before {
  width: 100%;
}
.contact_btn li .contact_other {
  background-color: #87CEEB;
  color: #fff;
}
.contact_btn li .contact_other:before {
  background-color: rgb(113.1428571429, 197.075, 231.3571428571);
}
.contact_btn li .contact_mail {
  background: -webkit-gradient(linear, left top, right top, color-stop(20%, #002366), color-stop(80%, #b99877));
  background: linear-gradient(90deg, #002366 20%, #b99877 80%);
  color: #fff;
}
.contact_btn li .contact_mail:before {
  background-color: #002366;
}
.contact_btn li .contact_shop {
  background-color: #fff;
  border: 1px solid #002366;
  color: #002366;
}
.contact_btn li .contact_shop:before {
  background-color: #002366;
}
.contact_btn li .contact_shop:hover {
  color: #fff;
}
.contact_btn li .contact_w_01 {
  max-width: 340px;
  padding: 1em 3em;
}
.contact_btn li .contact_w_02 {
  margin: 30px auto 0;
}

/* contents
----------------------------------*/
.single_01 {
  margin: 0 auto;
  max-width: 1150px;
  padding: 80px 0;
}
.single_01.type1 {
  padding: 80px 0 0;
}

.single_02 {
  margin: 0 auto;
  max-width: 1024px;
  padding-bottom: 80px;
}

.single_03 {
  margin: 0 auto;
  max-width: calc(100% - 100px);
  padding-bottom: 80px;
}

.single_04 {
  margin: 0 auto;
  max-width: 768px;
  padding-bottom: 80px;
}

.single_05 {
  margin: 0 auto;
  max-width: 1150px;
}

.single_06 {
  margin: 0 auto;
  max-width: 1024px;
}

.single_07 {
  margin: 0 auto;
  max-width: calc(100% - 100px);
}

.single_08 {
  margin: 0 auto;
  max-width: 768px;
}

.single_09 {
  padding-bottom: 80px;
}

/* bg
----------------------------------*/
.bg_common {
  padding-top: 80px;
}

.bg_b {
  margin-bottom: 80px;
}

.bg_01 {
  position: relative;
  z-index: 0;
}
.bg_01:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ebf2ff;
  z-index: -1;
}

.bg_02 {
  position: relative;
}
.bg_02::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 65%;
  height: 100%;
  background-color: #FFFFFF;
}

.bg_03 {
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.bg_03::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/28023/bg_03.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
  -webkit-transition: -webkit-filter 1s ease-out;
  transition: -webkit-filter 1s ease-out;
  transition: filter 1s ease-out;
  transition: filter 1s ease-out, -webkit-filter 1s ease-out;
}
.bg_03::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(32, 122, 158, 0.3);
  z-index: -1;
}
.bg_03 .inner {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  text-align: center;
}

.bg-on::before {
  -webkit-animation: bg-onanime 1.5s ease-out 0.3s forwards;
          animation: bg-onanime 1.5s ease-out 0.3s forwards;
}

@-webkit-keyframes bg-onanime {
  0% {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

@keyframes bg-onanime {
  0% {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.bg_04 {
  position: relative;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(25%, #fff), color-stop(25%, #faf8f6), color-stop(50%, #faf8f6), color-stop(50%, #fff), color-stop(75%, #fff), color-stop(75%, #faf8f6), to(#faf8f6));
  background-image: linear-gradient(90deg, #fff 25%, #faf8f6 25%, #faf8f6 50%, #fff 50%, #fff 75%, #faf8f6 75%, #faf8f6);
  background-size: 100px 100px;
}

.bg_05 {
  background-color: #f3f3f3;
}

/* column
----------------------------------*/
.half {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.half > .child {
  width: 50%;
}

.triple {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.triple .child {
  width: 33.3%;
}

.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: center;
      -ms-flex-align: center;
          align-items: center;
}
.column2.center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.column2.tp {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.column2 .child {
  width: 48%;
}
.column2 .child01 {
  width: 40%;
}
.column2 .child02 {
  width: 56%;
}
.column2 .child2 {
  width: 55%;
}
.column2 .child3 {
  width: 42%;
}
.column2 .child4 {
  width: 44%;
}
.column2 .child5 {
  width: 34%;
}
.column2 .child6 {
  width: 60%;
}
.column2 .column2-img img {
  width: 100%;
  height: 380px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media all and (max-width: 896px) {
  .column2 .column2-img img {
    height: 220px;
  }
}
@media all and (max-width: 639px) {
  .column2 .column2-img img {
    height: 180px;
  }
}
@media all and (max-width: 896px) {
  .column2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .column2 .child,
  .column2 .child01,
  .column2 .child02,
  .column2 .child2,
  .column2 .child3,
  .column2 .child4,
  .column2 .child5,
  .column2 .child6 {
    width: 100%;
  }
  .column2 .child.column2-img,
  .column2 .child01.column2-img,
  .column2 .child02.column2-img,
  .column2 .child2.column2-img,
  .column2 .child3.column2-img,
  .column2 .child4.column2-img,
  .column2 .child5.column2-img,
  .column2 .child6.column2-img {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-bottom: 30px;
  }
  .column2 .child.bm20,
  .column2 .child01.bm20,
  .column2 .child02.bm20,
  .column2 .child2.bm20,
  .column2 .child3.bm20,
  .column2 .child4.bm20,
  .column2 .child5.bm20,
  .column2 .child6.bm20 {
    margin-bottom: 20px;
  }
  .column2 .child.bm10,
  .column2 .child01.bm10,
  .column2 .child02.bm10,
  .column2 .child2.bm10,
  .column2 .child3.bm10,
  .column2 .child4.bm10,
  .column2 .child5.bm10,
  .column2 .child6.bm10 {
    margin-bottom: 10px;
  }
  .column2 .child.column2-img2,
  .column2 .child01.column2-img2,
  .column2 .child02.column2-img2,
  .column2 .child2.column2-img2,
  .column2 .child3.column2-img2,
  .column2 .child4.column2-img2,
  .column2 .child5.column2-img2,
  .column2 .child6.column2-img2 {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-bottom: 20px;
  }
}

.column3 {
  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;
  margin-bottom: -3%;
}
.column3 > .child {
  width: 31.3%;
  margin: 0 3% 3% 0;
}
.column3 > .child:nth-child(3n) {
  margin: 0 0 3% 0;
}

.column4 {
  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;
  margin-bottom: -3%;
}
.column4 > .child {
  width: 22.7%;
  margin: 0 3% 3% 0;
}
.column4 > .child:nth-child(4n) {
  margin: 0 0 3% 0;
}

.column5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: -2%;
}
.column5 > .child {
  width: 18.4%;
  margin: 0 2% 2% 0;
}
.column5 > .child:nth-child(5n) {
  margin: 0 0 2% 0;
}

.align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* mtitle
----------------------------------*/
.mtitle_page {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 3.2rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.1em;
}
.mtitle_page span {
  display: block;
  font-size: 1.5rem;
  letter-spacing: 0em;
}

.mtitle_big {
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 10px;
  font-size: 3.2rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
}
.mtitle_big::after {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid #002366;
  margin: 0 auto;
  width: 100px;
}
.mtitle_big span {
  display: block;
  color: #002366;
  font-size: 1.4rem;
}
.mtitle_big.white span {
  color: #fff;
}
.mtitle_big.white::after {
  border-bottom: 1px solid #fff;
}

.mtitle_middle {
  position: relative;
  border-bottom: 2px solid #ccc;
  margin-bottom: 20px;
  padding-bottom: 5px;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4;
}
.mtitle_middle:after {
  position: absolute;
  bottom: -2px;
  left: 0;
  z-index: 2;
  content: "";
  width: 20%;
  height: 2px;
  background-color: #002366;
}
.mtitle_middle span {
  margin-left: 1em;
  color: #002366;
  font-size: 1.2rem;
}

.mtitle_small {
  position: relative;
  background-color: #fff;
  border: 1px solid #ddd;
  font-size: 2rem;
  padding: 15px 30px;
  margin-bottom: 20px;
}
.mtitle_small:before {
  position: absolute;
  top: 15%;
  left: 8px;
  width: 6px;
  height: 70%;
  content: "";
  background: #002366;
}
.mtitle_small span {
  font-size: 0.8em;
}

.mtitle_small3 {
  padding: 10px 0;
  border-top: 1px solid #002366;
  border-bottom: 1px solid #002366;
  font-family: "YakuHanJP", Lato, "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "Meiryo", "メイリオ", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 1.8rem;
}
@media all and (max-width: 896px) {
  .mtitle_small3 {
    font-size: 1.5rem;
  }
}
@media all and (max-width: 639px) {
  .mtitle_small3 {
    font-size: 1.35rem;
    letter-spacing: 0.15em;
  }
}
.mtitle_small3 {
  margin-bottom: 20px;
}
.mtitle_small3:before {
  content: "―";
  margin-right: 8px;
  color: #002366;
}
.mtitle_small3.type1 {
  border-top: 1px solid #87CEEB;
  border-bottom: 1px solid #87CEEB;
}
.mtitle_small3.type1:before {
  color: #87CEEB;
}
.mtitle_small3.brown {
  border-top: 1px solid #462f1b;
  border-bottom: 1px solid #462f1b;
}
.mtitle_small3.brown:before {
  color: #462f1b;
}
@media all and (max-width: 639px) {
  .mtitle_small3 {
    margin-bottom: 15px;
    padding: 8px 0;
  }
}

.mtitle {
  position: relative;
  margin-bottom: 24px;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.4;
}

.mtitle3 {
  font-family: "YakuHanJP", Lato, "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "Meiryo", "メイリオ", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 2.8rem;
}
@media all and (max-width: 896px) {
  .mtitle3 {
    font-size: 2.2rem;
  }
}
@media all and (max-width: 639px) {
  .mtitle3 {
    font-size: 1.8rem;
  }
}
.mtitle3 {
  line-height: 1.3;
  margin-bottom: 20px;
  color: #462f1b;
  text-align: center;
}
.mtitle3 .eng {
  font-family: "YakuHanJP", "Playfair Display", serif;
  font-weight: 700;
  line-height: 1;
}
.mtitle3 span {
  position: relative;
  display: inline-block;
  min-width: 10%;
  padding: 0 15px;
}
.mtitle3 span:before, .mtitle3 span:after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -2px;
  margin: auto;
  width: 2px;
  height: 85%;
  background-color: rgb(125.206185567, 84.0670103093, 48.293814433);
}
.mtitle3 span:before {
  left: -8px;
  -webkit-transform: rotate(-25deg);
  transform: rotate(-25deg);
}
.mtitle3 span:after {
  right: -8px;
  -webkit-transform: rotate(25deg);
  transform: rotate(25deg);
}
.mtitle3.white {
  color: #ffffff;
}
.mtitle3.white span:before, .mtitle3.white span:after {
  background-color: #ffffff;
}
@media all and (max-width: 896px) {
  .mtitle3 {
    margin-bottom: 15px;
  }
  .mtitle3 span {
    padding: 0 10px;
  }
}
@media all and (max-width: 639px) {
  .mtitle3 span:before, .mtitle3 span:after {
    bottom: -5px;
  }
}

.mtitle4 {
  font-family: "YakuHanJP", Lato, "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "Meiryo", "メイリオ", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 2.8rem;
}
@media all and (max-width: 896px) {
  .mtitle4 {
    font-size: 2.2rem;
  }
}
@media all and (max-width: 639px) {
  .mtitle4 {
    font-size: 1.8rem;
  }
}
.mtitle4 {
  line-height: 1.3;
  margin-bottom: 20px;
  color: #462f1b;
  text-align: center;
}
.mtitle4 .eng {
  font-family: "YakuHanJP", "Playfair Display", serif;
  font-weight: 700;
  line-height: 1;
}
.mtitle4 span {
  position: relative;
  display: inline-block;
  min-width: 10%;
  padding: 0 15px;
}
.mtitle4 span:before, .mtitle4 span:after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -2px;
  margin: auto;
  width: 2px;
  height: 85%;
  background-color: rgb(125.206185567, 84.0670103093, 48.293814433);
}
.mtitle4 span:before {
  left: -8px;
  -webkit-transform: rotate(-25deg);
  transform: rotate(-25deg);
}
.mtitle4 span:after {
  right: -8px;
  -webkit-transform: rotate(25deg);
  transform: rotate(25deg);
}
.mtitle4.white {
  color: #ffffff;
}
.mtitle4.white span:before, .mtitle4.white span:after {
  background-color: #ffffff;
}
@media all and (max-width: 896px) {
  .mtitle4 {
    margin-bottom: 15px;
  }
  .mtitle4 span {
    padding: 0 10px;
  }
}
@media all and (max-width: 639px) {
  .mtitle4 span:before, .mtitle4 span:after {
    bottom: -5px;
  }
}

.mtitle_top {
  position: relative;
  margin: 16px 0;
  padding-bottom: 8px;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}
.mtitle_top::after {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid #fff;
  margin: 0 auto;
  width: 100px;
}

.mtitle_sub {
  margin-bottom: 10px;
  font-weight: 600;
}

.mtitle_news {
  margin-bottom: 5px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.mtitle_ribon {
  position: absolute;
  top: -25px;
  left: -10px;
  width: 100%;
}
.mtitle_ribon span {
  display: inline-block;
  background: #002366;
  color: #fff;
  font-size: 1.8rem;
  padding: 10px 30px;
}
.mtitle_ribon: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;
}

.mtitle_greeting {
  margin-bottom: 30px;
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
}
.mtitle_greeting span {
  display: block;
  position: relative;
  color: #002366;
  font-size: 1.2rem;
}

.mtitle_list {
  position: relative;
  z-index: 1;
  background-color: #fff;
  padding: 15px 0 22px;
  font-size: 2.4rem;
  text-align: center;
}
.mtitle_list span {
  display: block;
  color: #002366;
  font-size: 1.2rem;
}
.mtitle_list:before, .mtitle_list:after {
  content: "";
  display: block;
  position: absolute;
  background-color: #fff;
  width: 24px;
  height: 28px;
  bottom: -6px;
}
.mtitle_list:before {
  right: 50%;
  -webkit-transform: skewY(30deg);
  transform: skewY(30deg);
}
.mtitle_list:after {
  left: 50%;
  -webkit-transform: skewY(-30deg);
  transform: skewY(-30deg);
}

.mtitle_balloon {
  font-size: 3.5rem;
  margin-bottom: 30px;
}
.mtitle_balloon span {
  position: relative;
  display: inline-block;
  padding-bottom: 24px;
  line-height: 1em;
  overflow: hidden;
  font-weight: 600;
}
.mtitle_balloon span:before, .mtitle_balloon span:after {
  content: "";
  display: block;
  border-bottom: 3px solid #333;
  position: absolute;
  width: 50%;
  bottom: 6px;
}
.mtitle_balloon span:before {
  left: -5px;
}
.mtitle_balloon span:after {
  right: -5px;
}
.mtitle_balloon span i {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 3px solid #333;
  border-right: 3px solid #333;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  position: absolute;
  left: 50%;
  margin-left: -5px;
  bottom: 2px;
}

.mtitle_point {
  position: relative;
  margin: 24px 0 16px;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4;
}

.mtitle_medical {
  position: relative;
  margin: 16px 0;
  padding-bottom: 8px;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}
.mtitle_medical::after {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid #002366;
  margin: 0 auto;
  width: 100px;
}

/* btn
----------------------------------*/
.btn_common {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  margin: 40px auto 0;
  padding: 1em 2em;
  max-width: 270px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: 600;
}
.btn_common::before {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: -2em;
  -webkit-transform: translateY(calc(-50% - 2px)) rotate(30deg);
          transform: translateY(calc(-50% - 2px)) rotate(30deg);
  width: 12px;
  height: 2px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn_common::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -2em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 70px;
  height: 2px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn_common:hover::before, .btn_common:hover::after {
  right: -2.5em;
}

.a_btn {
  background-color: #fff;
  border: 1px solid #002366;
  color: #002366;
}
.a_btn::before {
  background-color: #002366;
}
.a_btn::after {
  background-color: #002366;
}
.a_btn:hover {
  color: #002366;
}

.b_btn {
  background-color: #fff;
  border: 1px solid #b99877;
  color: #b99877;
}
.b_btn::before {
  background-color: #b99877;
}
.b_btn::after {
  background-color: #b99877;
}
.b_btn:hover {
  color: #b99877;
}

.c_btn {
  background-color: #fff;
  border: 1px solid #54565e;
  color: #54565e;
}
.c_btn::before {
  background-color: #54565e;
}
.c_btn::after {
  background-color: #54565e;
}
.c_btn:hover {
  color: #54565e;
}

.d_btn {
  background-color: #fff;
  border: 1px solid #232531;
  color: #232531;
}
.d_btn::before {
  background-color: #232531;
}
.d_btn::after {
  background-color: #232531;
}
.d_btn:hover {
  color: #232531;
}

.e_btn {
  margin: 40px 0 0 0;
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.e_btn::before {
  background-color: #fff;
}
.e_btn::after {
  background-color: #fff;
}
.e_btn:hover {
  background-color: #fff;
  color: #333;
}
.e_btn:hover::before {
  background-color: #333;
}
.e_btn:hover::after {
  background-color: #333;
}

/* news
----------------------------------*/
.news-bl dt {
  float: left;
  width: 7em;
  margin-bottom: 10px;
  border: 1px solid #002366;
  color: #002366;
  text-align: center;
}
.news-bl dd {
  padding: 0 0 10px 9em;
  border-bottom: 1px dotted #ccc;
  margin: 0 0 10px;
}
.news-bl dd:last-child {
  margin: 0;
  border-bottom: none;
}

.news_box {
  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;
}
.news_box .news_title {
  width: 20%;
}
.news_box .news_list {
  width: 80%;
}
.news_box .accordion_area {
  width: 80%;
}

.news_list li {
  border-bottom: 1px solid #ccc;
}
.news_list li:first-child {
  border-top: 1px solid #ccc;
}
.news_list li a,
.news_list li .news_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
  color: #333;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.news_list li a:hover,
.news_list li .news_link:hover {
  background-color: #fff;
}
.news_list li .news_date {
  margin-right: 20px;
  font-size: 1.2rem;
}
.news_list li .news_category {
  background: #fff;
  border: 1px solid #002366;
  color: #002366;
  padding: 5px;
  margin-right: 30px;
  min-width: 140px;
  text-align: center;
}

/* tbl
----------------------------------*/
.job {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 12px;
}
.job th,
.job td {
  padding: 16px;
  vertical-align: middle;
}
.job th {
  width: 25%;
  background: white;
  color: #002366;
  font-weight: 700;
  text-align: center;
  position: relative;
  border: 2px solid #87CEEB;
}
.job td {
  background: #fff;
  padding-left: 30px;
  color: #462f1b;
  border-bottom: 2px dotted #eee;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media all and (max-width: 639px) {
  .job {
    border-spacing: 0 8px;
  }
  .job th, .job td {
    padding: 12px;
    display: block;
    width: 100% !important;
  }
  .job th {
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    text-align: left;
  }
  .job th::after {
    display: none;
  }
  .job td {
    border: 2px solid rgb(61.2, 127.7, 255);
    border-top: none;
    border-radius: 0 0 8px 8px;
    padding-left: 12px;
  }
}

.tbl {
  width: 100%;
  background-color: #fff;
  color: #333;
}
.tbl th,
.tbl td {
  vertical-align: middle;
  padding: 15px;
  border: 1px solid #ccc;
}
.tbl th {
  background-color: #FFFFFF;
  font-weight: 600;
}

.tbl_new {
  width: 100%;
  border-top: 1px dotted #ccc;
}
.tbl_new th,
.tbl_new td {
  vertical-align: middle;
  padding: 10px;
  border-bottom: 1px dotted #ccc;
}
.tbl_new th {
  text-align: left;
  font-weight: 500;
}

.tbl-border {
  width: 100%;
}
.tbl-border.type1 {
  border-top: 1px solid #eee;
}
.tbl-border th,
.tbl-border td {
  padding: 15px 10px;
  border-bottom: 1px solid #eee;
  vertical-align: middle;
  font-weight: 500;
}
.tbl-border th a,
.tbl-border td a {
  color: rgb(51.5979381443, 34.6443298969, 19.9020618557);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tbl-border th a:after,
.tbl-border td a:after {
  font-family: "Font Awesome 5 Free";
  content: "\f35d";
  font-weight: 900;
  color: #002366;
  margin-left: 5px;
}
.tbl-border th a.map:after,
.tbl-border td a.map:after {
  font-family: "Font Awesome 5 Free";
  content: "\f3c5";
  font-weight: 900;
}
.tbl-border th a:hover,
.tbl-border td a:hover {
  opacity: 0.6;
}
.tbl-border th span,
.tbl-border td span {
  font-size: 85%;
}
@media all and (max-width: 639px) {
  .tbl-border th,
  .tbl-border td {
    padding: 10px;
  }
}

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

.tbl_company {
  width: 100%;
  font-size: 1.4rem;
}
.tbl_company th,
.tbl_company td {
  padding: 16px;
  vertical-align: middle;
}
.tbl_company th {
  border-bottom: 1px solid #002366;
  font-weight: 500;
  text-align: left;
}
.tbl_company td {
  border-bottom: 1px solid #dcdcdc;
  line-height: 1.8em;
}

.tbl_simple {
  width: 100%;
  background-color: #fff;
  text-align: center;
  font-size: 1.3rem;
}
.tbl_simple th,
.tbl_simple td {
  vertical-align: middle;
  padding: 10px;
  border: 1px solid #ccc;
}
.tbl_simple th {
  background-color: #002366;
  color: #fff;
  font-weight: 500;
}

.mark {
  color: #002366;
}

.ready {
  color: #87CEEB;
}

.cell_01 {
  width: 25%;
}

.cell_02 {
  width: 33%;
}

.cell_03 {
  width: 20%;
}

/* roscal */
#roscal .calendar_head {
  margin-bottom: 12px 8px;
}
#roscal table {
  width: 100%;
  background-color: #fff;
  font-size: 1.2rem;
}
#roscal table th,
#roscal table td {
  vertical-align: middle;
  padding: 8px;
  border: 1px solid #ccc;
}
#roscal table th {
  background-color: #87CEEB;
  color: #fff;
  font-weight: 500;
  width: 14%;
}
#roscal table .off {
  color: #ff0000;
}
#roscal table .yotei1::after {
  content: "午前休診";
  color: #ff0000;
  font-size: 1rem;
}
#roscal table .yotei2::after {
  content: "午後休診";
  color: #ff0000;
  font-size: 1rem;
}

/* list
----------------------------------*/
.list_common li {
  padding-bottom: 10px;
  padding-left: 1rem;
  margin-bottom: 10px;
  border-bottom: 1px dotted #ddd;
}

.list_half {
  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;
}
.list_half li {
  width: 50%;
}

.list_check li {
  position: relative;
  padding: 0 0 5px 1.5em;
}
.list_check li:before {
  position: absolute;
  top: 0;
  left: 1.5em;
  font-family: "Font Awesome 5 Free";
  content: "\f058";
  font-weight: 900;
  content: "\f14a";
  margin: 0 5px 0 -1.5em;
  padding: 1px;
}

.list_note li {
  margin-bottom: 5px;
  padding-left: 1.5em;
}
.list_note li:last-child {
  margin-bottom: 0;
}
.list_note li:before {
  content: "※";
  margin: 0 5px 0 -1.5em;
  color: #ff0000;
}

.list_disc li {
  position: relative;
  padding-left: 1.2em;
}
.list_disc li:before {
  content: "・";
  color: #002366;
  position: absolute;
  left: 0;
  top: 0.2em;
  line-height: 1;
}

.list_line li {
  position: relative;
  display: inline-block;
  padding-right: 10px;
}
.list_line li:after {
  position: absolute;
  right: 0;
  content: "/";
}
.list_line li:last-child:after {
  display: none;
}

.list_macker {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 30px;
  text-align: center;
  font-size: 1.1em;
  font-weight: bold;
}
.list_macker li {
  width: 18.4%;
  margin: 0 2% 1% 0;
}
.list_macker li:nth-child(5n) {
  margin: 0 0 1% 0;
}

.rounded-list {
  counter-reset: li;
  padding-left: 1em;
  list-style: none;
}
.rounded-list li {
  position: relative;
  padding: 0.4em 0.4em 0.4em 2em;
  margin: 0.5em 0;
  background: #fafafa;
  border-radius: 0.3em;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.rounded-list li:before {
  content: counter(li);
  counter-increment: li;
  position: absolute;
  left: -1.3em;
  top: 50%;
  margin-top: -1.3em;
  background: #002366;
  color: #fff;
  height: 3em;
  width: 3em;
  line-height: 2.4em;
  border: 0.3em solid #fff;
  text-align: center;
  font-weight: bold;
  border-radius: 2em;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.drop_down {
  position: relative;
  cursor: pointer;
  padding-left: 15px;
}
.drop_down:before {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  color: #002366;
}

.list_child {
  display: none;
  margin-bottom: 15px;
}
.list_child li:before {
  content: "・";
  margin: 0 5px 0 -1em;
  color: #002366;
}

/* ggmap
----------------------------------*/
.ggmap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.ggmap iframe,
.ggmap object,
.ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ggmap.ggmap_02 {
  padding-bottom: 20.25%;
}

.ggcalendar {
  position: relative;
  padding-bottom: 76.25%;
  height: 0;
  overflow: hidden;
}
.ggcalendar iframe,
.ggcalendar object,
.ggcalendar embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.fb_iframe_widget,
.fb_iframe_widget span,
.fb_iframe_widget iframe[style] {
  width: 100% !important;
}

/* article
----------------------------------*/
.article {
  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;
  background-image: url(../img/bg_02.jpg);
  background-repeat: no-repeat;
  background-position: bottom right;
  color: #fff;
}
.article .article_image {
  width: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.article .article_detail {
  width: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 80px 0;
}
.article .article_detail .inner {
  margin: 0 auto;
  width: 70%;
}
.article.article_b {
  margin-bottom: 60px;
}
.article.article_white {
  background-image: none;
  background-color: #fff;
}
.article.article_01 .article_image {
  background-image: url(../img/system_04.jpg);
}
.article.article_02 .article_image {
  background-image: url(../img/drone_01.jpg);
}
.article.article_03 .article_image {
  background-image: url(../img/system_06.jpg);
}
.article.article_04 .article_image {
  background-image: url(../img/article_04.jpg);
}
.article.article_05 .article_image {
  background-image: url(../img/article_05.jpg);
}
.article.article_06 .article_image {
  background-image: url(../img/article_06.jpg);
}
.article.article_07 .article_image {
  background-image: url(../img/article_07.jpg);
}
.article.article_08 .article_image {
  background-image: url(../img/article_08.jpg);
}
.article.article_09 .article_image {
  background-image: url(../img/article_09.jpg);
}
.article.article_10 .article_image {
  background-image: url(../img/article_10.jpg);
}
.article.article_11 .article_image {
  background-image: url(../img/article_11.jpg);
}

/* gallery
----------------------------------*/
.gallery_ul {
  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;
}
.gallery_ul a {
  display: none;
  position: relative;
  overflow: hidden;
  height: 250px;
}
.gallery_ul a img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: middle;
}
.ie .gallery_ul a img {
  position: absolute;
  width: auto;
  height: auto;
  margin: 0 auto;
  top: 50%;
  left: 50%;
  min-height: 100%;
  min-width: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.gallery_ul a:first-child {
  display: block;
}
.gallery_ul span {
  display: block;
  margin-top: 5px;
  text-align: center;
}
.gallery_ul.gallery_ul_01 li {
  width: 31.3%;
  margin: 0 3% 3% 0;
}
.gallery_ul.gallery_ul_01 li:nth-child(3n) {
  margin: 0 0 3% 0;
}
.gallery_ul.gallery_ul_02 li {
  width: 22.7%;
  margin: 0 3% 3% 0;
}
.gallery_ul.gallery_ul_02 li:nth-child(4n) {
  margin: 0 0 3% 0;
}
.gallery_ul.gallery_ul_03 li {
  width: 48.5%;
  margin: 0 3% 3% 0;
}
.gallery_ul.gallery_ul_03 li:nth-child(2n) {
  margin: 0 0 3% 0;
}

/* sns_list
----------------------------------*/
.sns_list {
  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;
  margin-top: 30px;
}
.sns_list li {
  width: 24%;
  margin-right: 1.2%;
}
.sns_list li:last-child {
  margin: 0;
}

.sns_btn {
  overflow: hidden;
  color: #fff;
  position: relative;
  display: block;
  border-radius: 100px;
  height: 60px;
  text-align: center;
  line-height: 60px;
}
.sns_btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.sns_btn i {
  font-size: 2rem;
  position: relative;
  top: 3px;
  margin-right: 10px;
}
.sns_btn span {
  display: inline-block;
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.sns_btn:hover {
  color: #fff;
}
.sns_btn:hover span {
  -webkit-transform: rotateX(360deg);
  transform: rotateX(360deg);
}

.facebook_btn {
  background: #4267b2;
}

.insta_btn {
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
}
.insta_btn:before {
  background: linear-gradient(15deg, #ffdb2c, #f9764c 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
}

.line_btn {
  background: #00b82b;
}

.twitter_btn {
  background: #55acee;
}

/* top_news
----------------------------------*/
.top_news {
  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;
}

/* thumb_list
----------------------------------*/
.thumb_list {
  display: block;
  color: #333;
  font-size: 1.4rem;
}
.thumb_list .thumb_image {
  position: relative;
  margin-bottom: 5px;
  overflow: hidden;
  background: #f5f8f5;
}
.thumb_list .thumb_image img {
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit: contain;";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.thumb_list .thumb_image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.thumb_list .thumb_image:after {
  display: block;
  content: "";
  padding-top: 75%;
}
.thumb_list .thumb_image .detail_btn {
  opacity: 0;
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 3;
  text-align: center;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  background: #fff;
  padding: 3px 10px;
  font-size: 1.2rem;
}
.thumb_list .thumb_image .detail_btn:before {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  color: #002366;
  margin-right: 5px;
}
.thumb_list .thumb_title {
  margin-bottom: 5px;
  font-size: 1.6rem;
  font-weight: bold;
}
.thumb_list:hover {
  color: #333;
}
.thumb_list:hover .thumb_image img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
.thumb_list:hover .thumb_image .detail_btn {
  opacity: 1;
}
.thumb_list:hover .thumb_image:before {
  opacity: 1;
}

/* page_bnr
----------------------------------*/
.page_bnr {
  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;
  margin-bottom: -2%;
}
.page_bnr li {
  margin: 0 2% 2% 0;
}
.page_bnr li a {
  display: block;
  color: #333;
  border: 1px solid #ddd;
  background-color: #fff;
  padding: 10px;
}
.page_bnr li a:hover {
  color: #002366;
}
.page_bnr li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  margin-right: 10px;
  color: #002366;
}
.page_bnr.page_bnr_01 li {
  width: 49%;
}
.page_bnr.page_bnr_01 li:nth-child(2n) {
  margin: 0 0 2% 0;
}
.page_bnr.page_bnr_02 li {
  width: 32%;
}
.page_bnr.page_bnr_02 li:nth-child(3n) {
  margin: 0 0 2% 0;
}

/* news
----------------------------------*/
.news {
  font-size: 1.3rem;
}
.news .child {
  border-top: 1px solid #ddd;
  padding-top: 30px;
}
.news a {
  color: #333;
}
.news a:hover {
  color: #333;
}

/* top_main
----------------------------------*/
.top_main {
  position: relative;
  padding: 8% 0;
}
.top_main:before {
  content: "";
  display: block;
  width: 55%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  margin: auto;
  background-image: url(../img/top_main_image.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.top_main .inner {
  width: 42%;
  text-align: center;
  line-height: 2.4;
}

/* 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: 119%;
  overflow: hidden;
}
.top_sub:after {
  content: "";
  position: absolute;
  bottom: -60px;
  z-index: -1;
  background-color: #FFFFFF;
  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: 50%;
  padding: 90px 70px;
}
.top_sub.sub_right:before {
  left: 0;
}
.top_sub.sub_right:after {
  right: -60px;
}
.top_sub.sub_right .sub_detail {
  margin-left: auto;
}
.top_sub.sub_left:before {
  right: 0;
}
.top_sub.sub_left:after {
  left: -60px;
}
.top_sub.sub_left .sub_detail {
  margin-right: auto;
}
.top_sub.top_sub_01:before {
  background-image: url(../img/top_sub_01.jpg);
}
.top_sub.top_sub_02:before {
  background-image: url(../img/top_sub_02.jpg);
}
.top_sub.top_sub_03:before {
  background-image: url(../img/top_sub_03.jpg);
}

/* flex_type
----------------------------------*/
.flex_type {
  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;
}

.flex_type_01 .flex_image {
  width: 35%;
}
.flex_type_01 .flex_detail {
  width: 60%;
}

.flex_type_02 .flex_image {
  width: 28%;
}
.flex_type_02 .flex_detail {
  width: 69%;
}

.order {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

/* mbox
----------------------------------*/
.mbox {
  background: #fefefe;
  padding: 35px 30px;
  position: relative;
  z-index: 3;
  max-width: 1150px;
  margin-right: auto;
  margin-left: auto;
}
.mbox.transparent {
  background: transparent;
}
.mbox.wk {
  border: 1px solid #ddd;
}
.mbox.sd {
  -webkit-box-shadow: 0 0 8px rgba(70, 47, 27, 0.1);
          box-shadow: 0 0 8px rgba(70, 47, 27, 0.1);
}
.mbox.width_type1 {
  max-width: 1200px;
}
@media all and (max-width: 639px) {
  .mbox {
    padding: 20px 15px;
  }
}

.sbox {
  background-color: #fff;
  padding: 60px;
}

/* faq
----------------------------------*/
.faq dt {
  position: relative;
  margin-bottom: 20px;
  background: #002366;
  color: #fff;
  padding: 8px 16px 8px 36px;
  cursor: pointer;
}
.faq dt:before {
  content: "＋";
  position: absolute;
  top: -6px;
  left: -6px;
  font-size: 2rem;
  line-height: 35px;
  color: #fff;
  background: black;
  width: 35px;
  height: 35px;
  text-align: center;
}
.faq dt:hover {
  background: black;
}
.faq dd {
  position: relative;
  display: none;
  position: relative;
  margin-bottom: 24px;
  background: #fff;
  padding: 2em;
}
.faq dd:before {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 2rem;
  line-height: 35px;
  color: #fff;
  background: #FFFFFF;
  width: 35px;
  height: 35px;
  text-align: cente;
}

.voice_faq {
  padding-top: 20px;
}
.voice_faq dl dt {
  position: relative;
  border-top: solid 1px #ddd;
  padding: 10px 0 25px 72px;
  font-size: 1.8rem;
  font-weight: 600;
}
.voice_faq dl dt span {
  position: absolute;
  left: 0;
  top: -20px;
  display: block;
  width: 56px;
  line-height: 56px;
  text-align: center;
  color: #fff;
  font-size: 2rem;
  background: #002366;
  font-weight: 100;
  letter-spacing: 0.05rem;
}
.voice_faq dl dd {
  position: relative;
  padding: 0 40px 45px 72px;
}
.voice_faq dl dd span {
  position: absolute;
  left: 15px;
  top: -10px;
  display: block;
  color: #FF0000;
  font-size: 2rem;
  font-weight: 100;
  letter-spacing: 0.05rem;
}

/* flow
----------------------------------*/
.flow {
  padding-left: 120px;
  position: relative;
}
.flow::before {
  content: "";
  width: 15px;
  height: 100%;
  background: #efefef;
  margin-left: -8px;
  display: block;
  position: absolute;
  top: 0;
  left: 120px;
}
.flow > li {
  position: relative;
}
.flow > li:not(:last-child) {
  margin-bottom: 5vh;
}
.flow > li .icon {
  font-size: 12px;
  color: #fff;
  background-color: #002366;
  padding: 8px 20px;
  display: block;
  position: absolute;
  top: 0;
  left: -120px;
  z-index: 2;
}
.flow > li .icon::after {
  content: "";
  border-style: solid;
  border-width: 5px 0 5px 10px;
  border-color: transparent transparent transparent #002366;
  position: absolute;
  top: 50%;
  left: 100%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.flow > li dl {
  padding-left: 70px;
  position: relative;
}
.flow > li dl::before, .flow > li dl::after {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
}
.flow > li dl::before {
  width: 7px;
  height: 7px;
  margin-top: -3px;
  background: #002366;
  border-radius: 50%;
  left: -4px;
}
.flow > li dl::after {
  width: 50px;
  border-bottom: 1px dashed #999;
  position: absolute;
  left: 5px;
}
.flow > li dl dt {
  font-size: 1.8rem;
  font-weight: 600;
  color: #002366;
  margin-bottom: 1vh;
}

/* medical_link
----------------------------------*/
.medical_link {
  color: #333;
}
.medical_link:hover {
  color: #333;
}

/* belongs
----------------------------------*/
.belongs {
  position: relative;
  background: #fff;
  padding: 20px;
  -webkit-box-shadow: 0 6px 15px rgba(36, 37, 38, 0.04);
          box-shadow: 0 6px 15px rgba(36, 37, 38, 0.04);
  width: 90%;
  margin: -30px auto 0;
}
.belongs a {
  color: #333;
}

/* vertical_image
----------------------------------*/
.vertical_image {
  position: relative;
  overflow: hidden;
}
.vertical_image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: middle;
  -o-object-position: 50% 41%;
     object-position: 50% 41%;
}

.top_image {
  position: relative;
  overflow: hidden;
  height: 280px;
}
.top_image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: middle;
}

.medical_image {
  margin: 0 auto 24px;
  width: 72px;
}

.frame {
  display: inline-block;
  position: relative;
}
.frame::after {
  position: absolute;
  content: "";
  -webkit-box-shadow: 0 15px 10px rgba(0, 0, 0, 0.5);
          box-shadow: 0 15px 10px rgba(0, 0, 0, 0.5);
  -webkit-transform: rotate(3deg);
          transform: rotate(3deg);
  right: 5px;
  left: auto;
  top: auto;
  bottom: 15px;
  z-index: -1;
  width: 50%;
  height: 20%;
}

/* index_contents
----------------------------------*/
.index_contents {
  overflow: hidden;
  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;
}
.index_contents > div {
  width: 50%;
}
.index_contents .index_image {
  overflow: hidden;
}
.index_contents .index_image .animation-txt {
  overflow: hidden;
  height: 550px;
}
.index_contents .index_image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: middle;
}
.index_contents .index_detail {
  background-image: url(../img/bg_index_detail.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #fff;
  padding: 60px 3%;
  height: 550px;
}

/* about_box
----------------------------------*/
.about_wrap {
  padding-top: 40px;
}

.about_box {
  position: relative;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  background-color: #fff;
  -webkit-box-shadow: 0 6px 15px rgba(36, 37, 38, 0.04);
          box-shadow: 0 6px 15px rgba(36, 37, 38, 0.04);
}
.about_box .inner {
  position: relative;
  padding: 48px 24px 72px;
  font-size: 1.4rem;
  color: #333;
}

.about_num {
  display: block;
  position: absolute;
  top: -40px;
  right: 5px;
  z-index: 2;
  color: #002366;
  font-size: 7rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1;
}

/* greeting_contents
----------------------------------*/
.greeting_contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.greeting_contents .image {
  width: 59.72222%;
}
.greeting_contents .image img {
  display: block;
  width: 100%;
  height: 400px;
  font-family: "object-fit: cover; object-position: center;";
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.greeting_contents .detail {
  position: relative;
  margin-left: -35px;
  width: 35%;
}
.greeting_contents .title {
  margin-bottom: 30px;
  color: #002366;
  font-size: 3rem;
  font-weight: 600;
  line-height: 2;
}
.greeting_contents .txt {
  margin-bottom: 40px;
  line-height: 2;
}

/* new_bnr
----------------------------------*/
.new_bnr {
  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;
}
.new_bnr li {
  position: relative;
  overflow: hidden;
  width: 33.33333%;
  height: 320px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.new_bnr li .bg {
  position: absolute;
  z-index: 1;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 320px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-transition: all 3s ease-out;
  transition: all 3s ease-out;
  -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
          transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  will-change: transform;
}
.new_bnr li .bg.bg_new_01 {
  background-image: url(../img/bg_new_01.jpg);
}
.new_bnr li .bg.bg_new_02 {
  background-image: url(../img/bg_new_02.jpg);
}
.new_bnr li .bg.bg_new_03 {
  background-image: url(../img/bg_new_03.jpg);
}
.new_bnr li .bg.bg_new_04 {
  background-image: url(../img/bg_new_04.jpg);
}
.new_bnr li a {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: block;
}
.new_bnr li .text {
  position: absolute;
  z-index: 3;
  bottom: 50px;
  left: 50px;
  color: #fff;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.2;
}
.new_bnr li .text span {
  display: block;
  font-size: 1.2rem;
}
.new_bnr li .btn {
  position: absolute;
  bottom: 58px;
  right: 50px;
  z-index: 1;
  display: block;
  width: 58px;
  height: 58px;
  border: 1px solid #fff;
  border-radius: 50%;
  -webkit-transition: all 0.12s ease-in 0s;
  transition: all 0.12s ease-in 0s;
}
.new_bnr li .btn:before {
  position: absolute;
  z-index: 2;
  display: block;
  content: "";
  top: 25px;
  left: 24px;
  width: 6.5px;
  height: 6.5px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.12s ease-in 0s;
  transition: all 0.12s ease-in 0s;
}
.new_bnr li:hover .bg {
  -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0.95);
          transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0.95);
}
.new_bnr li:hover .btn {
  opacity: 1;
  -moz-opacity: 1;
  filter: alpha(opacity=100);
  background-color: #002366;
  border: 1px solid #002366;
}
.new_bnr li:hover .btn:before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.img_shadow {
  position: relative;
  -webkit-transition: all 0.5s ease-in 0s;
  transition: all 0.5s ease-in 0s;
}
.img_shadow:after {
  position: absolute;
  z-index: 2;
  content: "";
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(40%, rgba(0, 0, 0, 0)), to(black));
  background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 40%, black 100%);
  opacity: 0.65;
  -webkit-transition: all 0.5s ease-in 0s;
  transition: all 0.5s ease-in 0s;
}
.img_shadow:hover :after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(40%, rgba(0, 0, 0, 0)), to(black));
  background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 40%, black 100%);
  opacity: 0.85;
}

/* top_business
----------------------------------*/
.top_business {
  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;
}
.top_business .explanation {
  width: 30%;
}
.top_business .detail {
  width: 66%;
}

/* list_top
----------------------------------*/
.list_top li {
  position: relative;
  padding: 20px 15px 20px 25px;
  background-color: #87CEEB;
  color: #fff;
}
.list_top li:before {
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
}
.list_top li:nth-child(even) {
  background-color: rgb(108.7714285714, 195.29, 230.6285714286);
}

/* trouble
----------------------------------*/
.trouble {
  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;
}
.trouble li {
  position: relative;
  padding-bottom: 15px;
  padding-left: 3rem;
  margin-bottom: 15px;
  border-bottom: 1px dotted #bbb;
  width: 50%;
}
.trouble li:before {
  content: "";
  display: block;
  position: absolute;
  top: 10%;
  left: 0;
  width: 20px;
  height: 20px;
  background-image: url(../img/icon_trouble.png);
  background-repeat: no-repeat;
  background-position: center left;
  background-size: cover;
}

/* p_idx_works_item
----------------------------------*/
.p_idx_works_item {
  position: relative;
  display: block;
}
.p_idx_works_item a > .hover::before {
  opacity: 0.4;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.p_idx_works_item a:hover > .hover::before {
  opacity: 1;
  pointer-events: auto;
}
.p_idx_works_item .hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.6em;
  color: #fff;
  line-height: 1.3;
  letter-spacing: 0.1rem;
}
.p_idx_works_item .hover:before {
  background-color: #002366;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  mix-blend-mode: multiply;
}
.p_idx_works_item .hover:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -0.8em;
  width: 4.6em;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(#fff), color-stop(50%, #fff), color-stop(50%, #000), to(#000));
  background: linear-gradient(90deg, #fff 0%, #fff 50%, #000 50%, #000 100%);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.p_idx_works_item .title {
  position: relative;
  font-size: 1.6rem;
  font-weight: 600;
}
.p_idx_works_item .title span {
  display: block;
  font-size: 1rem;
}

.c-img_full {
  position: relative;
  overflow: hidden;
  height: 175px;
}
.c-img_full img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* top_contents
----------------------------------*/
.top_contents {
  background-image: url(../img/bg_top_contents.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  padding: 80px 0;
}
.top_contents .top_parent {
  overflow: hidden;
}
.top_contents .top_parent .top_detail {
  float: right;
  width: 50%;
}
.top_contents .top_parent .top_detail .inner {
  padding: 80px 56px;
  background: rgba(255, 255, 255, 0.8);
}

/* top_bnr
----------------------------------*/
.top_bnr {
  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;
  margin-bottom: -3%;
}
.top_bnr .child {
  width: 48.5%;
  margin: 0 3% 3% 0;
  background-color: #ffffff;
  text-align: center;
  -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
}
.top_bnr .child:nth-child(2n) {
  margin: 0 0 3% 0;
}
.top_bnr .child a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 3px 0px;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 3px 0px;
  overflow: hidden;
  color: #111111;
}
.top_bnr .child a .top_bnr_image {
  width: 50%;
  max-height: 250px;
  position: relative;
}
.top_bnr .child a .top_bnr_image img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
}
.top_bnr .child a .top_bnr_detail {
  width: 50%;
  padding: 30px 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.top_bnr .child a .top_bnr_detail .top_bnr_ttl {
  margin-bottom: 10px;
  font-size: 1.8rem;
}
.top_bnr .child a .top_bnr_detail .top_bnr_ttl span {
  display: block;
  color: #002366;
  font-size: 1.2rem;
  font-weight: 500;
}
.top_bnr .child a .top_bnr_detail .top_bnr_btn {
  display: inline-block;
  width: 100px;
  padding: 6px 0;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  background-color: #002366;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 5em;
}
.top_bnr .child a:hover .top_bnr_btn {
  background-color: rgb(0, 52.5, 153);
}

/* transparent_box
----------------------------------*/
.transparent_box {
  position: relative;
  z-index: 1;
  border: 3px solid #fff;
  padding: 60px 40px 100px 60px;
  color: #fff;
}
.transparent_box .inner {
  width: 60%;
  margin-left: auto;
}

/* img_contents
----------------------------------*/
.img_contents {
  overflow: hidden;
  position: relative;
  padding-top: 80px;
  margin-bottom: 80px;
}
.img_contents .img_area {
  position: absolute;
  top: 20px;
  left: 50%;
  margin-left: -270px;
  z-index: 1;
}
.img_contents .img_container {
  position: relative;
  z-index: 2;
}
.img_contents .img_container .txt_01 {
  line-height: 2.4;
}

/* service
----------------------------------*/
.service {
  position: relative;
  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;
}
.service::before {
  content: "";
  position: absolute;
  top: -22%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -1;
  width: 768px;
  height: 100%;
  background-image: url(../img/bg_service.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}

.service_list {
  width: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.service_list .service_contents {
  position: relative;
  padding: 120px 40px 80px;
}

.service_list_01 {
  background-image: url(../img/service_list_01.jpg);
}
.service_list_01 .service_head {
  background-color: #002366;
}

.service_list_02 {
  background-image: url(../img/service_list_02.jpg);
}
.service_list_02 .service_head {
  background-color: #b99877;
}

.service_list_03 {
  background-image: url(../img/service_list_03.jpg);
}
.service_list_03 .service_head {
  background-color: #54565e;
}

.service_list_04 {
  background-image: url(../img/service_list_04.jpg);
}
.service_list_04 .service_head {
  background-color: #232531;
}

.service_head {
  padding: 32px 0 64px 0;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
}

.service_item {
  position: absolute;
  top: -15%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
  width: 100%;
  text-align: center;
}
.service_item img {
  height: 140px;
  width: auto;
}

/* recruit
----------------------------------*/
.recruit {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  color: #fff;
  padding-bottom: 80px;
}
.recruit::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 500px;
  height: 362px;
  background-image: url(../img/recruit_staff.png);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: contain;
}
.recruit .inner {
  width: 57%;
}

/* gallery
----------------------------------*/
.gallery {
  position: relative;
  overflow: hidden;
}
.gallery::after {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  content: "";
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  -webkit-animation: MoveGrad 8s ease infinite;
  animation: MoveGrad 8s ease infinite;
  background: -webkit-gradient(linear, left top, right top, color-stop(20%, #002366), color-stop(80%, #b99877));
  background: linear-gradient(90deg, #002366 20%, #b99877 80%);
  border-radius: 50%;
  bottom: -200px;
  height: 325px;
  left: inherit;
  right: calc(11% - 325px);
  width: 325px;
  z-index: -1;
}

.slide_list {
  position: relative;
}
.slide_list li img {
  width: auto;
  height: 300px;
}
.slide_list li span {
  display: block;
  margin-top: 10px;
  text-align: center;
}

/* contact_v2
----------------------------------*/
.contact_box_v2 {
  position: relative;
}
.contact_box_v2::before {
  content: "";
  position: absolute;
  top: -22%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 768px;
  height: 100%;
  background-image: url(../img/bg_contact.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}

.contact_v2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.contact_v2 .telephone,
.contact_v2 .mail_v2 {
  width: 48.5%;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact_v2 .telephone .title,
.contact_v2 .mail_v2 .title {
  width: 24%;
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
}
.contact_v2 .telephone .title span,
.contact_v2 .mail_v2 .title span {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.4;
}
.contact_v2 .telephone .content,
.contact_v2 .mail_v2 .content {
  width: 74%;
  padding-left: 7%;
  border-left: 2px solid #87CEEB;
}
.contact_v2 .phone a {
  color: #333;
  font-size: 4rem;
  font-weight: 600;
}
.contact_v2 .auxiliary {
  font-size: 1.3rem;
}
.contact_v2 .mail_btn_v2 a {
  position: relative;
  display: block;
  background-color: #fff;
  padding: 2em 3em;
  color: #333;
  font-size: 1.6rem;
  font-weight: 600;
}
.contact_v2 .mail_btn_v2 a::after {
  position: absolute;
  top: 50%;
  left: 5%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
}
.contact_v2 .mail_btn_v2 a:hover {
  background-color: #87CEEB;
  color: #fff;
}

/* top_main_v2
----------------------------------*/
.top_main_v2 {
  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;
}
.top_main_v2 .image {
  width: 40%;
}
.top_main_v2 .detail {
  width: 56%;
}

.dismembered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.dismembered .dismembered_list {
  width: 48.5%;
}
.dismembered .dismembered_list:last-child {
  margin-top: 50px;
}

.top_main_catch {
  margin-bottom: 40px;
}

.top_main_txt {
  line-height: 2.4;
}

/* greeting_v2
----------------------------------*/
.greeting_v2 {
  padding: 80px 0;
}
.greeting_v2 .txt {
  text-align: center;
  line-height: 2.4;
}

/* about
----------------------------------*/
.about {
  position: relative;
}
.about::before {
  content: "";
  position: absolute;
  top: -22%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 768px;
  height: 100%;
  background-image: url(../img/bg_about.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}

/* story_list
----------------------------------*/
.story_list {
  list-style: none;
  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;
}
.story_list li {
  position: relative;
  width: 22.7%;
  margin-right: 3%;
  overflow: hidden;
  line-height: 1;
}
.story_list li:last-child {
  margin-right: 0;
}
.story_list li:before {
  content: "";
  display: block;
  padding-top: 91%;
}
.story_list li p {
  display: none;
}
.story_list li a {
  display: block;
  color: #fff;
  text-decoration: none;
  height: 100%;
}
.story_list li a:hover .num i:after {
  left: 100%;
}
.story_list li a:hover .num i:before {
  left: 0;
}
.story_list li a:hover .img span {
  width: 100%;
}
.story_list li a:hover .profile {
  right: 0;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transition: all 250ms 250ms ease-in;
  transition: all 250ms 250ms ease-in;
}
.story_list .num {
  position: absolute;
  z-index: 5;
  left: 0;
  top: 17px;
  width: 16.7%;
  font-size: 1.8rem;
}
.story_list .num span {
  position: relative;
  left: 0;
  color: #002366;
}
.story_list .num i {
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  top: 20px;
  overflow: hidden;
}
.story_list .num i:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background: #002366;
  left: -100%;
  top: 0;
  -webkit-transition: all 0.2s ease 0.3s;
  transition: all 0.2s ease 0.3s;
}
.story_list .num i:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background: #002366;
  left: 0;
  top: 0;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
.story_list .list,
.story_list .pr {
  height: 100%;
}
.story_list .img {
  width: 91%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  top: 0;
  right: 0;
  z-index: 2;
}
.story_list .img span {
  width: 0%;
  height: 100%;
  display: block;
  position: relative;
  -webkit-transition: all 300ms 0s ease-in;
  transition: all 300ms 0s ease-in;
}
.story_list .img span:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 150ms 0s ease-in;
  transition: all 150ms 0s ease-in;
  background: -webkit-gradient(linear, left top, right top, color-stop(20%, #002366), color-stop(80%, #b99877));
  background: linear-gradient(90deg, #002366 20%, #b99877 80%);
  opacity: 0.8;
  filter: alpha(opacity=80);
  background-size: cover;
}
.story_list .profile {
  position: absolute;
  bottom: 45%;
  width: 91%;
  text-align: center;
  -webkit-transition: all 200ms 0ms ease-in;
  transition: all 200ms 0ms ease-in;
  opacity: 0;
  filter: alpha(opacity=0);
  right: 0;
  z-index: 2;
}
.story_list .profile .name {
  font-size: 2.4rem;
}

.story_list_01 .img {
  background-image: url(https://placehold.jp/640x480.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.story_list_02 .img {
  background-image: url(https://placehold.jp/640x480.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.story_list_03 .img {
  background-image: url(../img/recruit_06.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.story_list_04 .img {
  background-image: url(https://placehold.jp/640x480.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* flow_v2
----------------------------------*/
.flow_v2 {
  padding-left: 0;
}
.flow_v2 li {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding-bottom: 120px;
  background-image: url(../img/flow_arrow.png);
  background-repeat: no-repeat;
  background-position: center bottom 40px;
}
.flow_v2 li:last-child {
  background: none;
}
.flow_v2 figure {
  position: absolute;
  left: 52%;
  top: 44px;
  width: 550px;
}

.process {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  width: 58%;
  height: 448px;
}
.process .box {
  max-width: 500px;
  margin-right: 20%;
  margin: 2em auto;
}

.application {
  display: block;
  margin-bottom: 20px;
  text-align: center;
}

.application_title {
  margin-bottom: 8px;
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
}

/* description
----------------------------------*/
.description {
  position: relative;
}
.description::before {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  content: "";
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  -webkit-animation: MoveGrad 8s ease infinite;
  animation: MoveGrad 8s ease infinite;
  background: -webkit-gradient(linear, left top, right top, color-stop(20%, #002366), color-stop(80%, #b99877));
  background: linear-gradient(90deg, #002366 20%, #b99877 80%);
  background-size: 200% 200%;
  border-radius: 50%;
  height: 650px;
  left: calc(19% - 632px);
  top: -275px;
  width: 650px;
  z-index: -1;
}

/* subject
----------------------------------*/
.subject {
  position: relative;
  overflow: hidden;
}
.subject::after {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  content: "";
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  -webkit-animation: MoveGrad 8s ease infinite;
  animation: MoveGrad 8s ease infinite;
  background: -webkit-gradient(linear, left top, right top, color-stop(20%, #002366), color-stop(80%, #b99877));
  background: linear-gradient(90deg, #002366 20%, #b99877 80%);
  border-radius: 50%;
  bottom: -200px;
  height: 325px;
  left: inherit;
  right: calc(11% - 325px);
  width: 325px;
}

/* accordion
----------------------------------*/
.accordion_area li {
  padding: 1em 0;
  border-bottom: 1px dotted #ccc;
}
.accordion_area dt {
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.accordion_area dt::before, .accordion_area dt::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #87CEEB;
}
.accordion_area dt::before {
  top: 48%;
  right: 15px;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.accordion_area dt::after {
  top: 48%;
  right: 15px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.accordion_area dt.close::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.accordion_area dt.close::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.accordion_area dd {
  display: none;
  padding-top: 30px;
  font-size: 1.3rem;
}

/* is-animated
----------------------------------*/
.bgextend {
  -webkit-animation-name: bgextendAnimeBase;
          animation-name: bgextendAnimeBase;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  overflow: hidden;
  position: relative;
  opacity: 0;
}

@-webkit-keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.bgLRextend::before {
  -webkit-animation-name: bgLRextendAnime;
          animation-name: bgLRextendAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #002366;
}

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

@keyframes bgLRextendAnime {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
.zoomIn {
  -webkit-animation-name: zoomInAnime;
          animation-name: zoomInAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes zoomInAnime {
  from {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomInAnime {
  from {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes zoomOutAnime {
  from {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@keyframes zoomOutAnime {
  from {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
.zoomInTrigger,
.zoomOutTrigger {
  opacity: 0;
}

.eachTextAnime span {
  opacity: 0;
}

.eachTextAnime.appeartext span {
  -webkit-animation: text_anime_on 1s ease-out forwards;
          animation: text_anime_on 1s ease-out forwards;
}

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

@keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* etc
----------------------------------*/
.stand {
  color: #ff0000;
  font-weight: 600;
}

.decoration {
  position: relative;
}
.decoration:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border-image-source: repeating-linear-gradient(45deg, #fff, #fff 3px, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 6px);
  border-image-slice: 20;
  border-image-repeat: round;
  border-style: solid;
  border-width: 20px;
}

.font_ss {
  font-size: 1rem;
}

.font_s {
  font-size: 1.2rem;
}

.font_m {
  font-size: 1.4rem;
}

.font_l {
  font-size: 1.6rem;
}

.num {
  color: #87CEEB;
  font-size: 1.5em;
  margin: 0 5px;
}

.aesthetic {
  margin: 0 auto 20px;
  width: 70%;
}

.macker {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, transparent), color-stop(50%, #fbff00));
  background-image: linear-gradient(left, transparent 50%, #fbff00 50%);
  background-repeat: repeat-x;
  background-size: 200% 0.3em;
  background-position: 0 1em;
  -webkit-transition: all 3.5s ease;
  transition: all 3.5s ease;
  font-style: normal;
  font-weight: bold;
  padding: 0 5px;
}
.macker.active {
  background-position: -100% 0.8em;
}

.cut {
  overflow: hidden;
  zoom: 1;
}

/* animation
----------------------------------*/
.txt_animation {
  clip-path: inset(0 100% 0 0);
  -webkit-transition: 1.4s cubic-bezier(0.37, 0, 0.63, 1);
  transition: 1.4s cubic-bezier(0.37, 0, 0.63, 1);
  -webkit-transition-property: clip-path;
  transition-property: clip-path;
}
.txt_animation.is-animated {
  clip-path: inset(0);
}

.zoomin {
  opacity: 0;
}
.zoomin.is-animated {
  -webkit-animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
          animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}

@-webkit-keyframes zoomIn {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes zoomIn {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.fadeup {
  opacity: 0;
}
.fadeup:nth-child(odd).is-animated {
  -webkit-animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
          animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}
.fadeup:nth-child(even).is-animated {
  -webkit-animation: fadebottom 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
          animation: fadebottom 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}

@-webkit-keyframes fadeup {
  0% {
    -webkit-transform: translateY(60px);
            transform: translateY(60px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeup {
  0% {
    -webkit-transform: translateY(60px);
            transform: translateY(60px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadebottom {
  0% {
    -webkit-transform: translateY(-60px);
            transform: translateY(-60px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadebottom {
  0% {
    -webkit-transform: translateY(-60px);
            transform: translateY(-60px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.img_big {
  margin-top: 100px;
  margin-bottom: 100px;
  margin-left: calc(50% - 50vw);
}
.img_big .inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
}
.img_big .inner:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #FFFFFF;
  width: 690px;
  height: calc(100% + 100px);
  margin-left: 30px;
}
.img_big .inner div {
  position: relative;
  z-index: 1;
  max-width: 1035px;
  margin-right: 30px;
  margin-bottom: 60px;
  margin-left: auto;
}
.img_big .inner div img {
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

@-webkit-keyframes flash {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}
@keyframes flash {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes animation-bar {
  0% {
    left: 0;
    right: auto;
    width: 0;
  }
  50% {
    left: 0;
    right: auto;
    width: 100%;
  }
  51% {
    left: auto;
    right: 0;
    width: 100%;
  }
  100% {
    left: auto;
    right: 0;
    width: 101%;
  }
}
@keyframes animation-bar {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 101%;
    width: 0;
  }
}
@-webkit-keyframes animation-txt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes animation-txt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.animation.move .animation-bar:before {
  -webkit-animation: animation-bar 1s ease 0s 1 normal forwards;
  animation: animation-bar 1s ease 0s 1 normal forwards;
}
.animation.move .animation-txt {
  -webkit-animation: animation-txt 0s ease 0.5s 1 normal forwards;
  animation: animation-txt 0s ease 0.5s 1 normal forwards;
}
.animation .animation-box {
  display: block;
  text-align: center;
}
.animation .animation-bar {
  position: relative;
  display: inline-block;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.animation .animation-bar:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: #87CEEB;
}
.animation .animation-txt {
  opacity: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.effect_fade {
  opacity: 0;
  -webkit-transform: translate(0, 45px);
          transform: translate(0, 45px);
  -webkit-transition: all 2s;
  transition: all 2s;
}
.effect_fade.effect_scroll {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/* page_title_box
----------------------------------*/
.page_title_box {
  position: relative;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28023/page-title.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.page_title_box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
.page_title_box .inner {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  width: 1150px;
  padding: 180px 0 100px;
}

/* breadcrumb_box
----------------------------------*/
.breadcrumb_box {
  padding: 10px 0;
}
.breadcrumb_box .breadcrumb {
  width: 1150px;
  margin: 0 auto;
  padding-left: 0;
  font-size: 1.3rem;
}
.breadcrumb_box .breadcrumb li {
  display: inline;
}
.breadcrumb_box .breadcrumb li + li:before {
  margin: 0 10px;
  content: ">";
}
.breadcrumb_box .breadcrumb li .home:before {
  font-family: "Font Awesome 5 Free";
  content: "\f015";
  font-weight: 900;
}

/* form
----------------------------------*/
.form_dl {
  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;
  border-bottom: 1px dotted #ccc;
  padding: 2% 1%;
}
.form_dl dt {
  width: 30%;
  background-color: #FFFFFF;
  padding: 1% 2% 1.5%;
}
.form_dl dd {
  width: 65%;
}

.form .required {
  position: relative;
  top: -1px;
  background: #002366;
  color: #fff;
  padding: 0 5px;
  margin-right: 5px;
  font-size: 1.1rem;
}
.form .textarea,
.form textarea {
  border: none;
  background-color: #fff;
  border: 1px solid #eee;
  padding: 5px;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.form .textarea {
  height: 40px;
}
.form .textarea_02 {
  width: 48.5%;
  margin-right: 3%;
}
.form .textarea_02:last-child {
  margin-right: 0;
}
.form .textarea_03 {
  width: 20%;
  margin: 0 1%;
}
.form .selectarea {
  border-radius: 0;
  background-color: #fff;
  border: 1px solid #eee;
  padding: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 40px;
}
.form button {
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  font-family: "YakuHanJP", Lato, "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "Meiryo", "メイリオ", sans-serif;
  font-size: 1.5rem;
  background-color: transparent;
  border: none;
}
.form label.radio_text {
  cursor: pointer;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
  padding: 0 0 3px 20px;
  display: inline-block;
  line-height: 1.2;
}
.form label.radio_text:before {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 1px solid #ccc;
  border-radius: 50%;
  left: 1px;
  top: 3px;
  content: "";
  z-index: 3;
}
.form label.radio_text:after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 100%;
  left: 3px;
  top: 5px;
  background-color: #002366;
  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: 0 0 3px 25px;
  margin-right: 20px;
  overflow: hidden;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1.2;
}
.form label.checkbox_text:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0px;
  top: 0;
  border: 1px solid #ccc;
  z-index: 3;
}
.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 #002366;
  border-bottom: 3px solid #002366;
  -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;
}

#ui-datepicker-div {
  z-index: 3 !important;
}

/* --news--
----------------------------------*/
.news02 {
  border-top: 1px solid #eee;
}
.news02 a {
  position: relative;
  display: block;
  border-bottom: 1px solid #eee;
  padding: 30px 30px 30px 20px;
  -webkit-transition: 0.3s ease-in all;
  transition: 0.3s ease-in all;
}
.news02 a:after {
  position: absolute;
  top: 50%;
  right: 10px;
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  color: rgb(230.35, 230.35, 230.35);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
.news02 a:hover {
  background: rgb(173.2624, 196.2224, 221.9376);
}
.news02 a:hover:after {
  right: 7px;
}
.news02 a dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  float: left;
  text-align: center;
  color: #151515;
  font-family: "YakuHanJP", Lato, "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "Meiryo", "メイリオ", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 1.8rem;
}
@media all and (max-width: 896px) {
  .news02 a dt {
    font-size: 1.5rem;
  }
}
@media all and (max-width: 639px) {
  .news02 a dt {
    font-size: 1.35rem;
    letter-spacing: 0.15em;
  }
}
.news02 a dt {
  -webkit-transition: 0.3s ease-in all;
  transition: 0.3s ease-in all;
}
.news02 a dt span {
  display: table;
  width: 7em;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}
@media all and (max-width: 896px) {
  .news02 a dt span {
    font-size: 1.05rem;
  }
}
@media all and (max-width: 639px) {
  .news02 a dt span {
    font-size: 1rem;
  }
}
.news02 a dt span {
  background: #151515;
  color: #002366;
  margin-right: 15px;
}
.news02 a dd {
  padding: 0 0 0 25px;
  color: #151515;
  overflow: hidden;
  line-height: 1.6;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
@media all and (max-width: 896px) {
  .news02 a {
    padding: 20px 10px;
  }
  .news02 a:hover:after {
    right: 3px;
  }
}
@media all and (max-width: 639px) {
  .news02 a {
    padding: 15px 5px;
  }
  .news02 a dt {
    float: none;
  }
  .news02 a 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: 896px) {
  .news-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.news-title {
  position: relative;
  margin-right: 60px;
  text-align: center;
  min-width: 125px;
}
.news-title .eng {
  font-size: 3.6rem;
  font-family: "YakuHanJP", "Playfair Display", serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1 !important;
  color: #002366;
}
.news-title .ja {
  font-family: "YakuHanJP", Lato, "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "Meiryo", "メイリオ", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 2rem;
}
@media all and (max-width: 896px) {
  .news-title .ja {
    font-size: 1.6rem;
  }
}
@media all and (max-width: 639px) {
  .news-title .ja {
    font-size: 1.45rem;
  }
}
.news-title .ja {
  display: block;
  color: #462f1b;
}
.news-title a {
  padding: 5px 15px;
  max-width: 90%;
  display: block;
  font-family: "YakuHanJP", "Playfair Display", serif;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid #002366;
  background: #002366;
  color: #ffffff;
  margin: 15px auto 0;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}
@media all and (max-width: 896px) {
  .news-title a {
    font-size: 1.05rem;
  }
}
@media all and (max-width: 639px) {
  .news-title a {
    font-size: 1rem;
  }
}
.news-title a:hover {
  background: #ffffff;
  color: #002366;
}
@media all and (max-width: 896px) {
  .news-title {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
    min-width: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .news-title span {
    position: relative;
  }
  .news-title .eng {
    font-size: 2.4rem;
  }
  .news-title .ja {
    margin-left: 10px;
  }
  .news-title a {
    position: absolute;
    top: 0;
    right: 0;
    padding: 2px 15px;
    margin: 0;
  }
}
@media all and (max-width: 639px) {
  .news-title .eng {
    font-size: 2.2rem;
  }
}

.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;
}

.blog-wrap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.blog-wrap li a {
  position: relative;
  display: block;
  padding: 15px;
  border-style: solid;
  border-width: 1px;
  border-color: #eee;
  background: #fff;
  color: #462f1b;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.blog-wrap li a .blog-img {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  overflow: hidden;
  margin-bottom: 15px;
}
.blog-wrap li a .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-wrap li a .blog-detail {
  padding: 0 5px;
}
.blog-wrap li a .blog-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-family: "YakuHanJP", Lato, "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "Meiryo", "メイリオ", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 1.6rem;
}
@media all and (max-width: 896px) {
  .blog-wrap li a .blog-title {
    font-size: 1.4rem;
  }
}
@media all and (max-width: 639px) {
  .blog-wrap li a .blog-title {
    font-size: 1.25rem;
    letter-spacing: 0.15em;
  }
}
.blog-wrap li a .blog-title {
  color: #462f1b;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 8px;
}
.blog-wrap li a p {
  font-size: 1.3rem;
  letter-spacing: 0.08em;
}
@media all and (max-width: 896px) {
  .blog-wrap li a p {
    font-size: 1.1rem;
  }
}
@media all and (max-width: 639px) {
  .blog-wrap li a p {
    font-size: 1.05rem;
  }
}
.blog-wrap li a p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 1.5;
}
.blog-wrap li a:hover {
  border-color: #002366;
}
.blog-wrap li a:hover .blog-img img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
@media all and (max-width: 1100px) {
  .blog-wrap {
    gap: 15px;
  }
}
@media all and (max-width: 896px) {
  .blog-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .blog-wrap li a {
    padding: 10px;
  }
  .blog-wrap li a .blog-img {
    margin-bottom: 10px;
  }
  .blog-wrap li a .blog-title {
    margin-bottom: 5px;
  }
}
@media all and (max-width: 639px) {
  .blog-wrap {
    grid-template-columns: repeat(1, 1fr);
    gap: 5px;
  }
  .blog-wrap li a {
    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: 5px;
  }
  .blog-wrap li a .blog-img {
    margin-bottom: 0;
    width: 35%;
    aspect-ratio: 1.3/1;
  }
  .blog-wrap li a .blog-detail {
    text-align: left;
    width: calc(65% - 5px);
  }
  .blog-wrap li a .blog-title {
    margin-bottom: 3px;
    text-align: left;
  }
}

.blog-date {
  color: #462f1b;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
}
@media all and (max-width: 896px) {
  .blog-date {
    font-size: 1.1rem;
  }
}
@media all and (max-width: 639px) {
  .blog-date {
    font-size: 1.05rem;
  }
}
.blog-date {
  font-family: "YakuHanJP", "Playfair Display", serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.blog-date.type1 {
  text-align: right;
}
.blog-date:before {
  font-family: "Font Awesome 5 Free";
  content: "\f017";
  font-weight: 900;
  margin-right: 3px;
  color: #002366;
}

.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: #565656;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}
@media all and (max-width: 896px) {
  .pages .page_next a,
  .pages .page_prev a {
    font-size: 1.05rem;
  }
}
@media all and (max-width: 639px) {
  .pages .page_next a,
  .pages .page_prev a {
    font-size: 1rem;
  }
}
.pages .page_next a,
.pages .page_prev a {
  line-height: 1;
}
.pages .page_next a:hover,
.pages .page_prev a:hover {
  opacity: 0.6;
}

.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 #eee;
  border-bottom: 1px solid #eee;
  width: 48%;
  margin: 1%;
}
.blog_topics li a {
  display: block;
  color: #462f1b;
  padding: 15px;
  -webkit-transition: 0.3s ease-in all;
  transition: 0.3s ease-in all;
}
.blog_topics li a:hover {
  background: rgb(173.2624, 196.2224, 221.9376);
}
.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: 23%;
  height: auto;
  aspect-ratio: 1/1;
}
.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;
}
.blog_topics li a .topics_detail .textbox {
  width: 77%;
  padding-left: 20px;
}
.blog_topics li a .topics_detail .textbox h3 {
  font-family: "YakuHanJP", Lato, "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "Meiryo", "メイリオ", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 1.6rem;
}
@media all and (max-width: 896px) {
  .blog_topics li a .topics_detail .textbox h3 {
    font-size: 1.4rem;
  }
}
@media all and (max-width: 639px) {
  .blog_topics li a .topics_detail .textbox h3 {
    font-size: 1.25rem;
    letter-spacing: 0.15em;
  }
}
.blog_topics li a .topics_detail .textbox h3 {
  margin: 10px 0 5px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.blog_topics li a .topics_detail .textbox p {
  font-size: 1.3rem;
  letter-spacing: 0.08em;
}
@media all and (max-width: 896px) {
  .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 .topics_detail .textbox {
  line-height: 1.4;
}
.blog_topics li a .time_date {
  display: inline-block;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
}
@media all and (max-width: 896px) {
  .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 {
  font-family: "YakuHanJP", "Playfair Display", serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #462f1b;
}
.blog_topics li a .time_date span {
  color: #002366;
  background: rgb(147.844, 177.944, 211.656);
  font-family: "YakuHanJP", "Playfair Display", serif;
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}
@media all and (max-width: 896px) {
  .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 span {
  margin-left: 0.75em;
  padding: 2px 6px;
}
.blog_topics li a .time_date:before {
  font-family: "Font Awesome 5 Free";
  content: "\f017";
  font-weight: 900;
  margin-right: 3px;
  color: #87CEEB;
}
@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 #eee;
  }
  .blog_topics li a {
    padding: 10px 5px;
  }
  .blog_topics li a .topics_detail .imgbox {
    width: 28%;
    aspect-ratio: 1/1 !important;
  }
  .blog_topics li a .topics_detail .textbox {
    width: 72%;
    padding-left: 10px;
    line-height: 1.5;
  }
  .blog_topics li a .topics_detail .textbox h3 {
    margin: 5px 0 2px;
  }
}

.category_nav {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #eee;
}
.category_nav li {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.category_nav li:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.category_nav li a {
  text-align: center;
  display: block;
  padding: 8px;
  background: transparent;
  color: #462f1b;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
}
@media all and (max-width: 896px) {
  .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 {
  background: #f7f7f7;
}
@media all and (max-width: 896px) {
  .category_nav {
    max-width: 200px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}

#main {
  float: left;
  width: 76%;
}
#main .mbox {
  min-height: 300px;
}
@media all and (max-width: 896px) {
  #main .mbox {
    min-height: initial;
  }
}
@media all and (max-width: 896px) {
  #main {
    float: none;
    width: 100%;
  }
}

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

/* blog
----------------------------------*/
#main {
  float: left;
  width: 72%;
}
#main .blog_topics {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#main .blog_topics li {
  width: 100%;
  margin: 0;
}
#main .blog_topics li a .topics_detail .imgbox {
  aspect-ratio: 5/3;
}
#main .blog_topics li:not(:first-child) {
  border-top: 0px solid #eee;
}
#main .mbox,
#main .mbox2,
#main .mbox3 {
  min-height: 450px;
}
@media all and (max-width: 896px) {
  #main .mbox,
  #main .mbox2,
  #main .mbox3 {
    min-height: initial;
  }
}
@media all and (max-width: 896px) {
  #main {
    float: none;
    width: 100%;
  }
}

#side {
  float: right;
  position: sticky;
  right: 0;
  top: 80px;
  width: 26%;
}
@media all and (max-width: 896px) {
  #side {
    float: none;
    width: calc(100% - 10px);
    position: static;
    margin: 30px auto 0;
  }
}

.mtitle_category {
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-family: "YakuHanJP", "Playfair Display", serif;
  font-weight: 700;
}
.mtitle_category:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0ca";
  font-weight: 900;
  margin-right: 5px;
  color: #002366;
}

.blog-month {
  margin-bottom: 10px;
}
.blog-month ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.blog-month ul li {
  width: 49%;
  padding: 5px 0;
  margin-bottom: 5px;
  text-align: center;
  letter-spacing: 0;
}
.blog-month ul li:nth-child(2n) {
  margin-left: 2%;
}
.blog-month ul li a {
  color: #002366;
  font-weight: 600;
  border-bottom: 1px solid #002366;
  font-size: 12px;
}
.blog-month ul li a:hover {
  color: #FF0000;
}

.feature-list {
  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;
  gap: 3% 0;
}
.feature-list .child {
  display: block;
  width: 48.44%;
  text-decoration: none;
  color: inherit;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border: 1px solid transparent;
  padding: 15px;
  border-radius: 12px;
}
.feature-list .child:hover .vertical_image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.feature-list .child.em {
  background-color: #f4f8ff;
  border: 1px solid #d1e2ff;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.feature-list .child.em .mtitle_point {
  color: #002366;
}
.feature-list .child.em:hover {
  background-color: #e5efff;
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  -webkit-box-shadow: 0 12px 25px rgba(176, 138, 93, 0.15);
          box-shadow: 0 12px 25px rgba(176, 138, 93, 0.15);
}
.feature-list .child .vertical_image {
  margin: 0 0 15px 0;
  overflow: hidden;
  border-radius: 8px;
}
.feature-list .child .vertical_image img {
  width: 100%;
  height: 400px;
  vertical-align: bottom;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}
@media all and (max-width: 639px) {
  .feature-list .child .vertical_image img {
    height: 100px;
  }
}

@media all and (max-width: 639px) {
  .feature-list .child.em {
    margin: 10px 0 0;
  }
}
.sentence {
  line-height: 2.6rem;
  letter-spacing: 0.2rem;
}

.sentence2 {
  letter-spacing: 0.2rem;
}

.chosei {
  margin-bottom: 120px;
}
@media all and (max-width: 896px) {
  .chosei {
    margin-bottom: 60px;
  }
}

.chosei2 {
  margin-bottom: 60px;
}
@media all and (max-width: 896px) {
  .chosei2 {
    margin-bottom: 40px;
  }
}

.chosei3 {
  margin-bottom: 40px;
}
@media all and (max-width: 896px) {
  .chosei3 {
    margin-bottom: 30px;
  }
}

.chosei4 {
  margin-bottom: 25px;
}
@media all and (max-width: 896px) {
  .chosei4 {
    margin-bottom: 15px;
  }
}

.gallary {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gallary li a {
  background: #f7f7f7;
  display: block;
  text-align: center;
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 10px;
}
.gallary li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  -o-object-position: center;
     object-position: center;
  overflow: hidden;
}
.gallary li a:hover {
  opacity: 0.6;
}
.gallary li p {
  text-align: center;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
}
@media all and (max-width: 896px) {
  .gallary li p {
    font-size: 1.1rem;
  }
}
@media all and (max-width: 639px) {
  .gallary li p {
    font-size: 1.05rem;
  }
}
.gallary li p {
  margin-top: 2px;
}
@media all and (max-width: 1100px) {
  .gallary {
    gap: 10px;
  }
}
@media all and (max-width: 896px) {
  .gallary {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallary li a {
    border-radius: 5px;
  }
}
@media all and (max-width: 639px) {
  .gallary {
    grid-template-columns: repeat(2, 1fr);
  }
}

@-webkit-keyframes phone-shake {
  0%, 100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  10%, 30%, 50% {
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
  }
  20%, 40%, 60% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
  70% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}

@keyframes phone-shake {
  0%, 100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  10%, 30%, 50% {
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
  }
  20%, 40%, 60% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
  70% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
.telbnr {
  max-width: 500px;
  margin: 40px auto 10px;
  width: 100%;
}
.telbnr li {
  background-color: #002366;
  padding: 20px 30px;
  text-align: center;
  border-radius: 40px;
  width: 100%;
  -webkit-box-shadow: 0 4px 15px rgba(0, 35, 102, 0.3);
          box-shadow: 0 4px 15px rgba(0, 35, 102, 0.3);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 2px solid #002366;
}
.telbnr li .telbnr-ttl {
  margin-bottom: 5px;
}
.telbnr li .telbnr-ttl span {
  font-size: 1.4rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.telbnr li a {
  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;
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  margin-bottom: 15px;
}
.telbnr li a i {
  margin-right: 12px;
  font-size: 0.8em;
  color: #FF0000;
  -webkit-animation: phone-shake 3s infinite;
          animation: phone-shake 3s infinite;
}
.telbnr li a:hover {
  opacity: 0.9;
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}
.telbnr li .telbnr-info {
  border-top: 1px dotted rgba(255, 255, 255, 0.5);
  padding-top: 15px;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.6;
}
.telbnr li .telbnr-info dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -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;
  margin-bottom: 5px;
}
.telbnr li .telbnr-info dl dt {
  font-weight: 700;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.telbnr li .telbnr-info dl dd {
  text-align: left;
}
.telbnr li .telbnr-info .holiday {
  font-weight: 700;
  margin-top: 5px;
}
.telbnr li:hover {
  background-color: #fff;
}
.telbnr li:hover .telbnr-ttl span,
.telbnr li:hover a,
.telbnr li:hover .telbnr-info,
.telbnr li:hover .telbnr-info dl dt {
  color: #002366;
}
.telbnr li:hover .telbnr-info {
  border-top: 1px dotted rgba(0, 35, 102, 0.5);
}
@media all and (max-width: 639px) {
  .telbnr {
    max-width: 95%;
  }
  .telbnr li {
    padding: 15px 20px;
  }
  .telbnr li a {
    font-size: 2.2rem;
  }
  .telbnr li .telbnr-info {
    font-size: 1.2rem;
  }
  .telbnr li .telbnr-info dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .telbnr li .telbnr-info dl dt {
    margin-bottom: 2px;
  }
}

.recruit-logo {
  position: relative;
  display: table;
  margin: 0 auto;
  line-height: 1;
}
.recruit-logo .text-main {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 80px;
  font-weight: 700;
  letter-spacing: -2px;
  text-transform: uppercase;
  background: -webkit-gradient(linear, left top, left bottom, from(#87CEEB), to(#002366));
  background: linear-gradient(to bottom, #87CEEB, #002366);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.recruit-logo .text-sub {
  position: absolute;
  right: -63px;
  bottom: -32px;
  font-family: "Great Vibes", cursive;
  font-size: 6rem;
  color: #87CEEB;
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
  white-space: nowrap;
}
@media all and (max-width: 896px) {
  .recruit-logo .text-sub {
    font-size: 4rem;
    right: -32px;
    bottom: -14px;
  }
}

.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(#A6BFDB));
  background: linear-gradient(to bottom, transparent, #A6BFDB);
  z-index: -2;
}

.posi-fig {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}
.posi-fig:before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 14%;
  width: 30%;
  height: 100%;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28023/inchou.webp) no-repeat center bottom/contain;
  -webkit-filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.3));
          filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.3));
}
.posi-fig .message-box {
  position: relative;
  width: 60%;
  margin-left: auto;
}
.posi-fig .message-box .name-img {
  width: 50%;
  max-width: 150px;
  margin: 20px 0 0 auto;
}
@media all and (max-width: 1100px) {
  .posi-fig:before {
    left: 0;
    width: 40%;
  }
}
@media all and (max-width: 896px) {
  .posi-fig::before {
    left: 0;
    width: 100%;
    height: 200px;
    background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28023/inchou.webp) no-repeat center bottom/contain;
    -webkit-filter: drop-shadow(5px 5px 8px rgba(0, 0, 0, 0.3));
            filter: drop-shadow(5px 5px 8px rgba(0, 0, 0, 0.3));
  }
  .posi-fig .message-box {
    width: 100%;
    padding: 0 5px;
    margin-bottom: 160px;
  }
  .posi-fig .name-img {
    display: none;
  }
}

.title01 {
  font-weight: 600;
  font-size: 2.8rem;
  margin: 0;
  letter-spacing: 0.1rem;
  padding-bottom: 3rem;
  color: #002366;
}
.title01.sbc {
  color: #87CEEB;
}
@media all and (max-width: 639px) {
  .title01 {
    font-size: 2rem;
    padding-bottom: 1rem;
  }
}

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

.title50 {
  font-family: "YakuHanJP", Lato, "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "Meiryo", "メイリオ", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 5rem;
}
@media all and (max-width: 896px) {
  .title50 {
    font-size: 4rem;
  }
}
@media all and (max-width: 639px) {
  .title50 {
    font-size: 3.2rem;
  }
}

.title40 {
  font-family: "YakuHanJP", Lato, "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "Meiryo", "メイリオ", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 4rem;
}
@media all and (max-width: 896px) {
  .title40 {
    font-size: 3.2rem;
  }
}
@media all and (max-width: 639px) {
  .title40 {
    font-size: 2.4rem;
  }
}

.title38 {
  font-family: "YakuHanJP", Lato, "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "Meiryo", "メイリオ", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 3.8rem;
}
@media all and (max-width: 896px) {
  .title38 {
    font-size: 3rem;
  }
}
@media all and (max-width: 639px) {
  .title38 {
    font-size: 2.4rem;
  }
}

.title36 {
  font-family: "YakuHanJP", Lato, "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "Meiryo", "メイリオ", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 3.6rem;
}
@media all and (max-width: 896px) {
  .title36 {
    font-size: 2.8rem;
  }
}
@media all and (max-width: 639px) {
  .title36 {
    font-size: 2.2rem;
  }
}

.title34 {
  font-family: "YakuHanJP", Lato, "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "Meiryo", "メイリオ", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 3.4rem;
}
@media all and (max-width: 896px) {
  .title34 {
    font-size: 2.7rem;
  }
}
@media all and (max-width: 639px) {
  .title34 {
    font-size: 2.1rem;
  }
}

.title32 {
  font-family: "YakuHanJP", Lato, "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "Meiryo", "メイリオ", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 3.4rem;
}
@media all and (max-width: 896px) {
  .title32 {
    font-size: 2.7rem;
  }
}
@media all and (max-width: 639px) {
  .title32 {
    font-size: 2.1rem;
  }
}

.title28 {
  font-family: "YakuHanJP", Lato, "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "Meiryo", "メイリオ", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 2.8rem;
}
@media all and (max-width: 896px) {
  .title28 {
    font-size: 2.2rem;
  }
}
@media all and (max-width: 639px) {
  .title28 {
    font-size: 1.8rem;
  }
}

.title24 {
  font-family: "YakuHanJP", Lato, "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "Meiryo", "メイリオ", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 2.4rem;
}
@media all and (max-width: 896px) {
  .title24 {
    font-size: 2rem;
  }
}
@media all and (max-width: 639px) {
  .title24 {
    font-size: 1.7rem;
  }
}

.title22 {
  font-family: "YakuHanJP", Lato, "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "Meiryo", "メイリオ", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 2.2rem;
}
@media all and (max-width: 896px) {
  .title22 {
    font-size: 1.85rem;
  }
}
@media all and (max-width: 639px) {
  .title22 {
    font-size: 1.6rem;
  }
}

.title20 {
  font-family: "YakuHanJP", Lato, "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "Meiryo", "メイリオ", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 2rem;
}
@media all and (max-width: 896px) {
  .title20 {
    font-size: 1.6rem;
  }
}
@media all and (max-width: 639px) {
  .title20 {
    font-size: 1.45rem;
  }
}

.title18 {
  font-family: "YakuHanJP", Lato, "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "Meiryo", "メイリオ", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 1.8rem;
}
@media all and (max-width: 896px) {
  .title18 {
    font-size: 1.5rem;
  }
}
@media all and (max-width: 639px) {
  .title18 {
    font-size: 1.35rem;
    letter-spacing: 0.15em;
  }
}

.title16 {
  font-family: "YakuHanJP", Lato, "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "Meiryo", "メイリオ", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 1.6rem;
}
@media all and (max-width: 896px) {
  .title16 {
    font-size: 1.4rem;
  }
}
@media all and (max-width: 639px) {
  .title16 {
    font-size: 1.25rem;
    letter-spacing: 0.15em;
  }
}

.title14 {
  font-family: "YakuHanJP", Lato, "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "Meiryo", "メイリオ", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 1.4rem;
}
@media all and (max-width: 896px) {
  .title14 {
    font-size: 1.3rem;
  }
}
@media all and (max-width: 639px) {
  .title14 {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
  }
}

.title12 {
  font-family: "YakuHanJP", Lato, "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "Meiryo", "メイリオ", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 1.2rem;
}
@media all and (max-width: 896px) {
  .title12 {
    font-size: 1.1rem;
  }
}
@media all and (max-width: 639px) {
  .title12 {
    font-size: 1rem;
    letter-spacing: 0.1em;
  }
}

.top-list2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin: 0 auto;
}
@media all and (max-width: 639px) {
  .top-list2 {
    max-width: 400px;
    width: 95%;
  }
}
.top-list2 li {
  position: relative;
  text-align: center;
  width: 23%;
  margin: 30px 1% 0;
  padding: 0;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  background: #002366;
  background: linear-gradient(135deg, #002366 0%, #002366 72%, rgb(0, 52.5, 153) 72.1%, rgb(0, 52.5, 153) 100%);
}
.top-list2 li a {
  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;
  text-decoration: none;
  padding: 50px 15px;
  height: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.top-list2 li a:hover {
  background-color: rgba(135, 206, 235, 0.1);
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.top-list2 li .num {
  display: block;
  font-family: "Arial", sans-serif;
  font-weight: bold;
  font-size: 2.2rem;
  color: #87CEEB;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.top-list2 li img {
  display: block;
  width: 100px;
  margin: 0 auto 15px;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.top-list2 li .txt {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  line-height: 1.4;
  line-height: 4rem;
  margin: 30px 0;
}
.top-list2 li .sub-txt {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: auto;
}
@media all and (max-width: 896px) {
  .top-list2 li {
    width: 48%;
  }
}
@media all and (max-width: 639px) {
  .top-list2 li {
    width: 100%;
    margin: 20px 0 0;
  }
  .top-list2 li .txt {
    font-size: 1.5rem;
  }
}

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

.bg_img {
  position: relative;
  z-index: 0;
}
.bg_img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url("https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28023/bg_recruit.webp");
  background-size: cover;
  background-position: 50% 84%;
  background-repeat: no-repeat;
  background-color: #ffffff;
  opacity: 0.7;
}

.w300 {
  width: 300px;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
@media all and (max-width: 639px) {
  .w300 {
    width: 180px;
    height: 130px;
  }
}

.btn_circle_more.btn_tel {
  position: relative;
  display: block;
  cursor: pointer;
  outline: none;
  border: 0;
  margin-bottom: 10px;
  background: #ffbd4f;
  padding: 0;
  width: 22rem;
  height: 5rem;
  border-radius: 2.5rem;
  overflow: hidden;
  text-decoration: none;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .btn_circle_more.btn_tel {
    display: none;
  }
}
.btn_circle_more.btn_tel a {
  text-decoration: none;
  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;
  height: 100%;
  width: 100%;
}
.btn_circle_more.btn_tel:hover {
  background: #e67e22;
}
.btn_circle_more.btn_tel:hover .circle {
  background: #fff;
}
.btn_circle_more.btn_tel:hover .circle .icon-phone {
  color: #e67e22;
  -webkit-transform: scale(1.2) rotate(10deg);
          transform: scale(1.2) rotate(10deg);
}
.btn_circle_more.btn_tel:hover .text {
  color: #fff;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.btn_circle_more.btn_tel .circle {
  -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  left: 0.5rem;
  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;
  width: 4rem;
  height: 4rem;
  background: #fff;
  border-radius: 50%;
  z-index: 1;
}
.btn_circle_more.btn_tel .circle .icon-phone {
  -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  color: #f39800;
  font-size: 1.8rem;
}
.btn_circle_more.btn_tel .text {
  -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  padding-left: 2.5rem;
  margin: 0;
  color: #fff;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  font-size: 2.2rem;
  letter-spacing: 1px;
  z-index: 2;
}

.bnr_access {
  background-color: #87CEEB !important;
}
.bnr_access:hover {
  background: #27a1d1 !important;
}
.bnr_access:hover .circle {
  background: #fff;
}
.bnr_access:hover .circle .icon-access {
  color: #27a1d1;
  -webkit-transform: scale(1.2) rotate(10deg);
          transform: scale(1.2) rotate(10deg);
}
.bnr_access:hover .text {
  color: #fff;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.bnr_access .circle .icon-access {
  -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  color: #5ab9df;
  font-size: 1.8rem;
}