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

a {
  color: #01192f;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
a.white {
  color: #fff;
}
a.white:hover {
  opacity: 0.8;
}

#wrapper {
  overflow: hidden;
}

.contents {
  position: relative;
  z-index: 1;
}

section.fixed {
  position: sticky;
  padding: 600px 0;
}

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

.bold {
  font-weight: bold;
}

h2,
h3 {
  font-family: "YakuHanJP", "Noto Sans JP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, "Noto Sans JP";
  font-weight: 600;
  letter-spacing: 0.2em;
}

.border-line {
  display: block;
  border-top: 2px dashed #115a8d;
  margin: 35px 0;
}

.inherit {
  text-transform: inherit !important;
}

en {
  font-family: "EB Garamond", "Libre Baskerville", "Oswald", "Barlow Condensed", serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
}

.mincho {
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 600;
  letter-spacing: 0.2em;
}

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

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

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

.loader {
  align-items: center;
  background: #fdfdfd;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
}
.loader::after {
  animation: loader 0.5s linear infinite;
  border: 1px solid #012748;
  border-radius: 50%;
  border-right: 1px solid rgba(1, 39, 72, 0.2);
  border-top: 1px solid rgba(1, 39, 72, 0.2);
  content: "";
  height: 70px;
  width: 70px;
}
.loader.off {
  display: none;
}

@keyframes loader {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* header
----------------------------------*/
@keyframes hd-scrolled {
  0% {
    opacity: 0;
    transform: translate(0, -100%);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
#l-header {
  position: absolute;
  width: 100%;
  z-index: 200;
  top: 0;
  left: 0;
  transition: all 0.4s ease-in;
}
#l-header.is-fixed {
  position: fixed;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  background: #012748;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
#l-header.is-fixed .inner .head-right_contact {
  display: none;
}
#l-header.is-fixed .inner #logo {
  width: 260px;
}
#l-header.is-fixed .inner #logo img {
  filter: none;
}
#l-header.is-fixed .inner #logo .logo1 {
  display: none;
}
#l-header.is-fixed .inner #logo .logo2 {
  display: block;
}
@media all and (max-width: 896px) {
  #l-header.is-fixed .inner #logo {
    display: none;
  }
}
@media all and (max-width: 896px) {
  #l-header {
    background: transparent;
  }
}
#l-header .inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  width: 98%;
  margin: 0 auto;
  padding: 15px 0;
  align-items: center;
  justify-content: space-between;
}
@media all and (max-width: 896px) {
  #l-header .inner {
    min-width: initial;
  }
}
#l-header .inner #logo {
  transition: all 0.4s ease-in;
  width: 320px;
  z-index: 2;
}
#l-header .inner #logo img {
  filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.6));
}
#l-header .inner #logo .logo2 {
  display: none;
}
#l-header .head-right {
  margin-left: auto;
}
@media all and (max-width: 896px) {
  #l-header .head-right {
    display: none;
  }
}
#l-header .head-right_contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-left: auto;
  align-items: center;
  margin-bottom: 5px;
}
#l-header .head-right_contact p {
  margin-right: 15px;
}
#l-header .head-right_btn {
  margin-left: 15px;
}
#l-header .head-right_btn a {
  position: relative;
  padding: 2px 10px;
  display: block;
  font-size: 1.3rem;
  font-family: "YakuHanJP", "Noto Sans JP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, "Noto Sans JP";
  font-weight: 600;
  letter-spacing: 0.2em;
  background: rgba(0, 0, 0, 0.1);
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5), 0 0 8px rgba(0, 0, 0, 0.5);
  border: 1px solid #fff;
  color: #fff;
}
#l-header .head-right_btn a i {
  margin-right: 6px;
}
#l-header .head-right_btn a:hover {
  background: #1677bb;
}
#l-header .head-right_tel a,
#l-header .head-right_mail a,
#l-header .head-right_map a {
  display: block;
  padding: 2px 15px;
  transition: all 0.2s ease-in;
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  font-size: 1.4rem;
  font-family: "EB Garamond", "Libre Baskerville", "Oswald", "Barlow Condensed", serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
}
#l-header .head-right_tel a:before,
#l-header .head-right_mail a:before,
#l-header .head-right_map a:before {
  margin-right: 6px;
}
#l-header .head-right_tel a {
  padding: 0;
  border-radius: 0;
  border: 0px;
  width: auto;
  height: auto;
  font-size: 2.4rem;
  position: relative;
}
#l-header .head-right_tel a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f098";
  font-weight: 900;
}
#l-header .head-right_tel a:hover {
  opacity: 0.7;
}
#l-header .head-right_mail {
  margin-left: 10px;
}
#l-header .head-right_mail a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
}
#l-header .head-right_mail a:hover {
  background: #fefefe;
  color: #ffb033;
}
#l-header .head-right_map {
  margin-left: 10px;
}
#l-header .head-right_map a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f3c5";
  font-weight: 900;
}
#l-header .head-right_map a:hover {
  background: #fefefe;
  color: #ffb033;
}
#l-header .head-right_lower {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  margin-left: auto;
}

#head-menu {
  position: relative;
  top: 35px;
}
#head-menu ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-align: center;
  margin: 0 auto;
}
#head-menu ul li {
  position: relative;
  flex: 1 0 auto;
}
#head-menu ul li:not(:last-of-type) {
  margin-right: 20px;
}
#head-menu ul li.accent a {
  line-height: 1.5;
  background: linear-gradient(to right, #012748, #9c9d20);
  padding: 8px 20px;
}
#head-menu ul li.accent a:hover {
  opacity: 0.8;
}
#head-menu ul li a {
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  display: block;
  letter-spacing: 0.3em;
  font-size: 1.3rem;
  color: #fff;
  text-align: center;
}
#head-menu ul li a span {
  font-size: 1.2rem;
  display: block;
  font-family: "EB Garamond", "Libre Baskerville", "Oswald", "Barlow Condensed", serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
}
#head-menu ul li a i {
  transition: all 0.3s ease;
  font-size: 2.8rem;
}
#head-menu ul li a:hover i {
  color: #ffb033;
}

#header_nav {
  position: relative;
  width: 580px;
  text-align: center;
}
.is-fixed #header_nav ul li a {
  color: #fff;
  text-shadow: none;
}
.is-fixed #header_nav ul li a span {
  color: #ffb033;
}
.is-fixed #header_nav ul li a:hover:after, .is-fixed #header_nav ul li a.active:after {
  background: #ffb033;
  box-shadow: none;
}
#header_nav ul {
  display: flex;
  flex-wrap: wrap;
  padding: 0 0 10px;
  margin: 0 auto;
}
#header_nav ul li {
  position: relative;
  flex: 1 0 auto;
}
#header_nav ul li a {
  position: relative;
  display: block;
  line-height: 1.6;
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3), 0 0 8px rgba(0, 0, 0, 0.3);
}
#header_nav ul li a span {
  display: block;
  font-family: "Barlow Condensed", serif;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 1.4rem;
}
#header_nav ul li a:after {
  position: absolute;
  transition: all 0.6s ease;
  content: "";
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 100%;
  transform: translateX(-50%);
  bottom: -10px;
  left: 50%;
  opacity: 0;
}
#header_nav ul li a.active:after, #header_nav ul li a:hover:after {
  opacity: 1;
}
#header_nav .dropdown {
  display: none;
  position: absolute;
  left: 0;
  top: 30px;
  z-index: 999;
  padding-top: 30px;
}
#header_nav .dropdown .dropdown-li {
  border-right: 0;
  margin: 0;
  background: #fff8ea;
  border-bottom: 1px solid #012748;
}
#header_nav .dropdown .dropdown-li:first-child a {
  border-top: 1px solid #012748;
}
#header_nav .dropdown .dropdown-li a {
  display: block;
  width: 160px;
  padding: 8px;
  font-size: 1.4rem;
  letter-spacing: 0.05rem;
  color: #333;
  font-weight: normal;
}
#header_nav .dropdown .dropdown-li a:hover {
  background: #ffb033;
  color: #fff;
}
#header_nav .dropdown .dropdown-li a:after {
  display: none;
}

/* page-top
----------------------------------*/
#page-top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 200;
}
#page-top a {
  display: block;
  background: #fff;
  color: #222;
  border: 1px solid #222;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  font-size: 1.1rem;
  text-align: center;
}
#page-top a:hover {
  opacity: 0.6;
}
@media all and (max-width: 639px) {
  #page-top {
    bottom: 55px;
  }
  #page-top a {
    width: 34px;
    height: 34px;
    line-height: 34px;
  }
}

/* swiper
----------------------------------*/
#top_image {
  z-index: -9999;
  position: relative;
  width: 100%;
  height: 95vh;
}
#top_image img {
  animation: zoom-out 8s linear 0s 1 normal both;
}
#top_image:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(17, 17, 17, 0.4), rgba(51, 51, 51, 0.4));
}
@media all and (max-width: 896px) {
  #top_image {
    height: 65vw;
  }
}
@media all and (max-width: 639px) {
  #top_image {
    height: 70vh;
  }
}

@keyframes fade-blur {
  0% {
    filter: blur(15px);
  }
  10% {
    filter: blur(0px);
  }
}
@keyframes zoom-out {
  0% {
    filter: blur(25px);
    transform: scale(1.1);
  }
  10% {
    filter: blur(10px);
  }
  15% {
    filter: blur(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes zoom-in {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img {
  animation: zoom-out 8s linear 0s 1 normal both;
}

.swiper-slide {
  position: relative;
}
.swiper-slide:before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  right: 0;
  top: 0;
  background-position: 50%;
  background-size: cover;
  z-index: -1;
}
.swiper-slide.slide1:before {
  background-image: url(../img/1.jpg);
  background-position: 50% 50%;
}
.swiper-slide.slide2:before {
  background-image: url(../img/2.jpg);
  background-position: 50% 50%;
}
.swiper-slide.slide3:before {
  background-image: url(../img/3.jpg);
  background-position: 90% 50%;
}

.slide-img {
  overflow: hidden;
  width: 100%;
  height: 100vh;
  position: relative;
}
.slide-img:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.4;
}
.slide-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  background-position: bottom;
}
@media all and (max-width: 1100px) {
  .slide-img {
    height: 55vw;
  }
}
@media all and (max-width: 639px) {
  .slide-img {
    height: 45vh;
  }
}

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

.slide-txt {
  position: absolute;
  left: 50%;
  top: 47%;
  transform: translate(-50%, -50%);
  width: 40%;
  padding: 30px 25px;
  z-index: 20;
  background-image: linear-gradient(69deg, transparent 0%, rgba(255, 255, 255, 0.6) 20%, #fff 50%, rgba(255, 255, 255, 0.6) 80%, transparent 100%);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  text-align: center;
}
@media all and (max-width: 1100px) {
  .slide-txt {
    width: 55%;
  }
}
@media all and (max-width: 639px) {
  .slide-txt {
    padding: 20px 10px;
    width: 80%;
  }
}
.slide-txt:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 10px;
  left: 10px;
  border: 0.9px solid #fff;
  opacity: 0.7;
}
@media all and (max-width: 639px) {
  .slide-txt:before {
    top: 5px;
    left: 5px;
  }
}

.slide-fixed {
  position: absolute;
  left: 50%;
  bottom: 2%;
  transform: translateX(-50%);
  width: 500px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  z-index: 20;
}
@media all and (max-width: 896px) {
  .slide-fixed {
    width: 50%;
  }
}
.slide-fixed li {
  width: 31%;
}
@media all and (max-width: 639px) {
  .slide-fixed {
    width: 60%;
  }
}

#catch {
  z-index: 50;
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 94%;
}
#catch h2,
#catch h3,
#catch p {
  font-size: 8.5rem;
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5), 0 0 12px rgba(0, 0, 0, 0.5);
  opacity: 0;
  line-height: 1.4;
}
#catch h2.on,
#catch h3.on,
#catch p.on {
  opacity: 1;
  transition: 4s;
}
#catch h3 {
  margin-top: 15px;
  font-size: 2.8rem;
}
@media all and (max-width: 1100px) {
  #catch {
    top: 54%;
  }
  #catch h2 {
    font-size: 3rem;
  }
  #catch h3 {
    margin-top: 10px;
    font-size: 1.8rem;
    letter-spacing: 0.15em;
  }
}
@media all and (max-width: 639px) {
  #catch {
    top: 54%;
  }
  #catch h2 {
    font-size: 2.5rem;
  }
  #catch h3 {
    margin-top: 5px;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
  }
}

#scrolldown {
  position: absolute;
  right: 20px;
  bottom: 20px;
  color: #f2f2f2;
  font-family: "EB Garamond", "Libre Baskerville", "Oswald", "Barlow Condensed", serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
  text-shadow: 0 0 5px rgba(34, 34, 34, 0.5);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-feature-settings: "pkna";
  font-size: 1.2rem;
  z-index: 30;
  height: 180px;
}
#scrolldown a {
  color: #f2f2f2;
}
#scrolldown:before, #scrolldown:after {
  position: absolute;
  content: "";
  z-index: 2;
  left: 50%;
  box-shadow: 0 0 5px rgba(34, 34, 34, 0.5);
}
#scrolldown:before {
  width: 1px;
  height: 70px;
  bottom: 0;
  background: #f2f2f2;
  transform: translateX(-50%);
}
#scrolldown:after {
  width: 8px;
  height: 8px;
  background: rgba(242, 242, 242, 0.9);
  border-radius: 100%;
  top: 100px;
  margin-left: -4px;
  animation: scroll-point 2.3s ease-out infinite;
  animation-fill-mode: both;
}
@media all and (max-width: 639px) {
  #scrolldown {
    display: none;
  }
}

@keyframes scroll-point {
  0% {
    bottom: 0;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  50% {
    top: 150px;
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    top: 180px;
    opacity: 0;
  }
}
/* contact_bnr
----------------------------------*/
.contact_bnr {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.contact_bnr.type1 > li {
  width: 100%;
}
.contact_bnr.white > li a,
.contact_bnr.white > li span {
  color: #fff;
  border: 1px solid #fff;
}
.contact_bnr > li {
  width: 49%;
}
@media all and (max-width: 639px) {
  .contact_bnr > li {
    width: 90%;
    margin: 0 auto 15px;
  }
  .contact_bnr > li:last-child {
    margin: 0 auto;
  }
}
.contact_bnr > li .bnr_tel {
  white-space: nowrap;
  position: relative;
}
.contact_bnr > li .bnr_tel:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
}
.contact_bnr > li .bnr_mobile:before {
  font-family: "Font Awesome 5 Free";
  content: "\f3cd";
  font-weight: 900;
}
.contact_bnr > li .bnr_fax:before {
  font-family: "Font Awesome 5 Free";
  content: "\f1ac";
  font-weight: 900;
}
.contact_bnr > li .bnr_mail:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
}
.contact_bnr > li a,
.contact_bnr > li span {
  display: block;
  background: transparent;
  border: 1px solid #012748;
  box-sizing: border-box;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.2rem;
  padding: 20px 10px;
  transition: all 0.3s ease;
}
.contact_bnr > li a:before,
.contact_bnr > li span:before {
  margin-right: 5px;
  position: relative;
  display: inline-block;
}
@media all and (max-width: 639px) {
  .contact_bnr > li a,
  .contact_bnr > li span {
    margin: 0 auto;
    white-space: nowrap;
    padding: 10px;
    width: 100%;
    font-size: 1.5rem;
  }
  .contact_bnr > li a:before,
  .contact_bnr > li span:before {
    font-size: 1.3rem;
    transform: translateY(-2px);
  }
}
.contact_bnr > li a:hover {
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  background: rgba(255, 255, 255, 0.3);
}

.contact_bnr2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
}
.contact_bnr2 li {
  width: 49%;
}
.contact_bnr2 li .bnr_tel {
  white-space: nowrap;
  position: relative;
}
.contact_bnr2 li .bnr_tel:before {
  font-family: "Font Awesome 5 Free";
  content: "\f098";
  font-weight: 900;
}
.contact_bnr2 li .bnr_mobile:before {
  font-family: "Font Awesome 5 Free";
  content: "\f3cd";
  font-weight: 900;
}
.contact_bnr2 li span {
  font-size: 1.6rem;
  display: block;
  letter-spacing: 0.3em;
}
.contact_bnr2 li a {
  display: block;
  font-size: 2.8rem;
  transition: all 0.3s ease;
}
.contact_bnr2 li a:before {
  margin-right: 10px;
}
.contact_bnr2 li a:hover {
  opacity: 0.6;
}
@media all and (max-width: 639px) {
  .contact_bnr2 li {
    width: 100%;
    margin: 0 auto 15px;
    line-height: 1.6;
  }
  .contact_bnr2 li:last-child {
    margin: 0 auto;
  }
  .contact_bnr2 li span {
    font-size: 1.25rem;
  }
  .contact_bnr2 li a {
    font-size: 2.6rem;
  }
}

/* footer
----------------------------------*/
#l-footer {
  font-size: 1.4rem;
  position: relative;
  width: 100%;
}
#l-footer:before {
  position: absolute;
  content: "";
  z-index: -1;
  width: 100%;
  height: 100%;
  right: 0%;
  top: 0%;
  background-color: #012748;
  background-blend-mode: hard-light;
}
#l-footer .inner {
  padding: 80px 10px;
  position: relative;
  /*z-index: 3;*/
  max-width: 1000px;
  margin: 0 auto;
}
#l-footer .footer-column {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  color: #1d1d1d;
  position: relative;
  z-index: 0;
}
#l-footer .footer-column .footer-left {
  width: 370px;
}
#l-footer .footer-column .footer-right {
  width: calc(100% - 400px);
}
@media all and (max-width: 1100px) {
  #l-footer .footer-column {
    justify-content: space-around;
    max-width: 90%;
  }
  #l-footer .footer-column .footer-left {
    width: 100%;
  }
  #l-footer .footer-column .footer-right {
    width: 100%;
    margin-top: 25px;
  }
}
@media all and (max-width: 896px) {
  #l-footer .footer-column {
    max-width: 100%;
  }
}
@media all and (max-width: 639px) {
  #l-footer {
    font-size: 1.2rem;
  }
  #l-footer .inner {
    padding: 30px 10px;
  }
}

/* footer_navi
----------------------------------*/
.footer_navi {
  margin: 35px auto 0;
}
.footer_navi ul {
  margin: 0 auto;
  max-width: 600px;
  display: flex;
  flex-wrap: wrap;
}
.footer_navi ul li {
  margin-bottom: 4px;
  width: 33%;
}
.footer_navi ul li a {
  font-weight: 600;
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
  display: block;
}
.footer_navi ul li a span {
  display: none;
}
.footer_navi ul li a ja {
  display: none;
}
.footer_navi ul li a:hover {
  opacity: 0.6;
}
.footer_navi ul li .dropdown {
  display: none;
}
.footer_navi ul li .dropdown .dropdown-li {
  width: 100% !important;
}
.footer_navi ul li .dropdown .dropdown-li a {
  font-size: 1.2rem !important;
  position: relative !important;
}
.footer_navi ul li .dropdown .dropdown-li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f068";
  font-weight: 900;
  margin-right: 5px;
  color: #ffb033;
}

.logo-txt {
  text-align: center;
  margin: 10px auto 15px;
  font-family: "YakuHanJP", "Noto Sans JP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, "Noto Sans JP";
  font-weight: 600;
  letter-spacing: 0.2em;
}
.logo-txt span {
  display: block;
  font-size: 1.8rem;
}
@media all and (max-width: 639px) {
  .logo-txt span {
    display: block;
    font-size: 1.6rem;
  }
}

.flogo {
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 320px;
  width: 95%;
}
@media all and (max-width: 639px) {
  .flogo {
    width: 200px;
  }
}

.address {
  text-align: center;
  font-size: 13px;
}
.address a {
  border-bottom: 1px dashed #888;
}
@media all and (max-width: 896px) {
  .address {
    font-size: 11px;
    letter-spacing: 0.1em;
  }
}

.copyright {
  text-align: center;
  padding: 15px 0;
  font-size: 1.3rem;
  position: relative;
  background: #101010;
  color: #fff;
  font-family: "Barlow Condensed", serif;
  font-weight: 400;
  letter-spacing: 0.15em;
}
@media all and (max-width: 896px) {
  .copyright {
    font-size: 12px;
    padding: 15px 0 80px;
  }
}

/*----------------------------------
 top-contents
----------------------------------*/
.top-gray-box {
  position: relative;
}
.top-gray-box:before {
  position: absolute;
  content: "";
  z-index: -2;
  width: 80%;
  height: 95%;
  transform: translateY(-50%);
  top: 50%;
  left: 0;
  background-image: linear-gradient(to right, #012748, #fffef3);
  opacity: 0.1;
}
.top-gray-box2 {
  position: relative;
  overflow: hidden;
}
.top-gray-box2:before {
  position: absolute;
  content: "";
  z-index: -2;
  transform: skew(-12deg);
  width: 30%;
  height: 100%;
  top: 0;
  right: 10%;
  background: #eaf5f7;
}

.top-gray-box3 {
  position: relative;
  overflow: hidden;
}
.top-gray-box3:before {
  position: absolute;
  content: "";
  z-index: -2;
  transform: skew(12deg);
  width: 30%;
  height: 100%;
  top: 0;
  right: 10%;
  background: #eaf5f7;
}

.top-gray-box4 {
  position: relative;
  overflow: hidden;
}
.top-gray-box4:before, .top-gray-box4:after {
  position: absolute;
  content: "";
  z-index: -2;
  transform: skew(-12deg);
}
.top-gray-box4:before {
  width: 45%;
  height: 100%;
  top: 0;
  right: -10%;
  background: #efefef;
}
.top-gray-box4:after {
  width: 45%;
  height: 45%;
  bottom: 0;
  left: -10%;
  background: #efefef;
}

.title-big {
  position: relative;
  margin: 32px 0 64px;
  line-height: 1.4;
  font-size: 3rem;
  text-align: center;
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 600;
  letter-spacing: 0.2em;
}
.title-big span {
  position: absolute;
  top: -44px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  font-size: 12rem;
  line-height: 1;
  opacity: 0.1;
  color: #012748;
}
.title-big.white {
  color: #fff;
}
.title-big.white span {
  color: #fff;
}
@media all and (max-width: 639px) {
  .title-big {
    font-size: 1.8rem;
  }
  .title-big span {
    font-size: 5rem;
    top: -24px;
  }
}

.title-big2 {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}
.title-big2 span {
  display: block;
  line-height: 1.2;
}
.title-big2 .eng {
  font-size: 5rem;
  color: #000c16;
  font-family: "EB Garamond", "Libre Baskerville", "Oswald", "Barlow Condensed", serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
}
.title-big2 .ja {
  font-size: 2rem;
  color: #222;
  font-weight: 600;
}
@media all and (max-width: 639px) {
  .title-big2 .eng {
    font-size: 4rem;
  }
  .title-big2 .ja {
    font-size: 1.5rem;
  }
}
.title-big2.white .eng {
  color: #fff;
}
.title-big2.white .ja {
  color: #fff;
}

.title-big3 {
  margin: 0 0 35px;
  position: relative;
  z-index: 3;
}
.title-big3 span {
  display: block;
  line-height: 1.5;
}
.title-big3 .eng {
  font-family: "EB Garamond", "Libre Baskerville", "Oswald", "Barlow Condensed", serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
  letter-spacing: 0.05em;
  font-size: 6rem;
  color: #012748;
  display: inline-block;
  background: #012748;
  background: linear-gradient(to right, #012748, #ffce80);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.title-big3 .ja {
  font-size: 2.2rem;
  position: relative;
  font-family: "YakuHanJP", "Noto Sans JP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, "Noto Sans JP";
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #1d1d1d;
}
@media all and (max-width: 896px) {
  .title-big3 {
    margin-bottom: 25px;
  }
  .title-big3 .eng {
    font-size: 3.2rem;
  }
  .title-big3 .ja {
    font-size: 1.6rem;
  }
}

.title-big4 {
  text-align: center;
  position: relative;
  max-width: 90%;
  margin: 0 auto 30px;
}
.title-big4 .inner {
  position: relative;
  display: inline-block;
}
.title-big4 .inner:before, .title-big4 .inner:after {
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  content: "”";
  display: inline-block;
  position: absolute;
  top: 25%;
  bottom: 0;
  font-size: 6rem;
  color: #ffb033;
}
.title-big4 .inner:before {
  content: "“";
  left: -30px;
}
.title-big4 .inner:after {
  right: -30px;
}
@media all and (max-width: 639px) {
  .title-big4 .inner:before, .title-big4 .inner:after {
    font-size: 3rem;
  }
  .title-big4 .inner:before {
    left: -16px;
  }
  .title-big4 .inner:after {
    right: -16px;
  }
}
.title-big4 .txt {
  display: inline-block;
  font-size: 2rem;
  font-weight: 500;
  font-family: "YakuHanJP", "Noto Sans JP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, "Noto Sans JP";
  font-weight: 600;
  letter-spacing: 0.2em;
}
.title-big4 .txt .eng {
  font-style: normal;
  font-family: "EB Garamond", "Libre Baskerville", "Oswald", "Barlow Condensed", serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
  font-size: 6rem;
  line-height: 1.2;
  color: #012748;
}
@media all and (max-width: 639px) {
  .title-big4 .txt {
    font-size: 1.4rem;
  }
  .title-big4 .txt .eng {
    font-size: 2.8rem;
  }
}

.greet-block {
  position: relative;
}
.greet-block .greet-img {
  position: absolute;
  width: 52%;
  height: 100%;
  overflow: hidden;
}
.greet-block .greet-img img {
  width: 100%;
  height: 100%;
  /*opacity: 0.8;*/
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  -o-object-position: center;
     object-position: center;
}
@media all and (max-width: 639px) {
  .greet-block .greet-img {
    width: 100%;
    height: 180px;
    top: -200px;
  }
}
.greet-block .greet-txt {
  width: 58%;
  padding: 80px 20px;
  margin-left: auto;
  position: relative;
  z-index: 3;
}
.greet-block .greet-txt .inner {
  /*max-width: 680px;*/
  line-height: 2;
}
.greet-block .greet-txt .inner.type1 {
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
@media all and (max-width: 639px) {
  .greet-block .greet-txt {
    width: 100%;
    padding: 0 10px;
    /*padding: 0 20px 20px;*/
    margin-top: 200px;
    /*background: #fff;*/
  }
}

.top-concern-list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-top: 50px;
  margin-bottom: 40px;
}
.top-concern-list li {
  width: 23%;
  margin-right: 1%;
  margin-bottom: 15px;
  background-image: linear-gradient(to right, #012748, #1677bb);
  color: #fff;
  font-size: 1.8rem;
  font-family: "YakuHanJP", "Noto Sans JP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, "Noto Sans JP";
  font-weight: 600;
  letter-spacing: 0.2em;
  position: relative;
}
.top-concern-list li figure {
  width: 100%;
  height: 200px;
  filter: brightness(0.5);
  opacity: 0.8;
}
.top-concern-list li figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-concern-list li .top-concern-ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.6rem;
  text-align: center;
}
.top-concern-list li .top-concern-ttl span {
  display: block;
}
.top-concern-list li:nth-child(2n) {
  transform: translateY(30px);
}
.top-concern-list li:last-child {
  margin-right: 0;
}
@media all and (max-width: 639px) {
  .top-concern-list li {
    width: 49%;
    font-size: 1.3rem;
    margin: 0 auto 10px;
  }
  .top-concern-list li figure {
    height: 150px;
  }
  .top-concern-list li .top-concern-ttl {
    font-size: 1.2rem;
  }
  .top-concern-list li:nth-child(2n) {
    margin-right: 0;
    transform: none;
  }
}

.top-icon {
  position: relative;
}
.top-icon:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/bg-top-icon.jpg) no-repeat center/cover;
  z-index: -2;
  opacity: 0.7;
}

.top-btn a {
  display: block;
  margin: 0 auto;
  width: 350px;
  padding: 15px 20px;
  font-weight: 600;
  background: #222;
  color: #fffef3;
  border-top: 2px solid #e2ceaf;
  border-bottom: 2px solid #e2ceaf;
  position: relative;
}
.top-btn a i {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
}

.topic-list {
  display: flex;
  flex-wrap: wrap;
  padding-top: 80px;
}
.topic-list > li {
  width: 44%;
  margin-bottom: 70px;
  position: relative;
  margin-right: 4%;
}
.topic-list > li:nth-child(even) {
  transform: translateY(-70px);
  margin-right: 0;
}
@media all and (max-width: 639px) {
  .topic-list > li:nth-child(even) {
    margin-right: 0;
    transform: none;
  }
}
.topic-list > li:nth-child(3n-1) .topic-inner {
  background: #01192f;
}
.topic-list > li:nth-child(3n) .topic-inner {
  background: #222;
}
.topic-list > li:nth-child(3), .topic-list > li:nth-child(4) {
  margin-left: 2%;
}
.topic-list > li:nth-child(5), .topic-list > li:nth-child(6) {
  margin-left: 4%;
}
@media all and (max-width: 896px) {
  .topic-list > li {
    margin-bottom: 40px;
  }
}
@media all and (max-width: 639px) {
  .topic-list > li {
    width: 90%;
    margin-right: 0;
  }
  .topic-list > li:nth-child(3), .topic-list > li:nth-child(4) {
    margin-left: 0;
  }
  .topic-list > li:nth-child(5), .topic-list > li:nth-child(6) {
    margin-left: 0;
  }
  .topic-list > li:nth-child(even) {
    margin-right: 0;
    transform: none;
    margin-left: auto;
  }
}
.topic-list > li .topic-inner {
  width: 100%;
  height: 100%;
  background: #ffb033;
  position: relative;
}
.topic-list > li figure {
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  height: 100%;
  width: 50%;
}
.topic-list > li figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  opacity: 0.6;
}
@media all and (max-width: 896px) {
  .topic-list > li figure {
    width: 100%;
    height: 100%;
  }
}
.topic-list > li .topic-num {
  display: block;
  position: absolute;
  font-family: "EB Garamond", "Libre Baskerville", "Oswald", "Barlow Condensed", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-size: 7rem;
  line-height: 1;
  color: #fff;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}
.topic-list > li .topic-num:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 55px;
  bottom: 0;
  right: -10px;
  background: #fff;
  transform: rotate(30deg);
}
@media all and (max-width: 639px) {
  .topic-list > li .topic-num:before {
    height: 35px;
  }
}
@media all and (max-width: 896px) {
  .topic-list > li .topic-num {
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
  }
}
@media all and (max-width: 639px) {
  .topic-list > li .topic-num {
    font-size: 4rem;
    top: 30px;
  }
}
.topic-list > li .topic-txt {
  position: relative;
  padding: 50px 30px 50px 40%;
  color: #fff;
}
@media all and (max-width: 896px) {
  .topic-list > li .topic-txt {
    padding: 100px 20px 20px;
  }
}
@media all and (max-width: 639px) {
  .topic-list > li .topic-txt {
    padding: 80px 15px 25px;
  }
}
.topic-list > li .topic-title {
  font-weight: 600;
  color: #fff;
  font-size: 2rem;
}
@media all and (max-width: 639px) {
  .topic-list > li .topic-title {
    font-size: 1.4rem;
  }
}
@media all and (max-width: 639px) {
  .topic-list {
    padding: 0 10px;
  }
}

.icon-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 30px auto 0;
}
@media all and (max-width: 639px) {
  .icon-list {
    max-width: 90%;
    margin-top: -40px;
  }
}
.icon-list.type1 {
  margin-top: 0;
}
.icon-list li {
  width: 23%;
  margin-bottom: 30px;
  margin-right: 2.6666666667%;
}
.icon-list li:nth-child(4n) {
  margin-right: 0;
}
.icon-list li a {
  display: block;
  text-align: center;
  font-weight: 600;
  line-height: 1.4;
  height: 100%;
  transition: all 0.2s cubic-bezier(0.26, 0.06, 0, 1);
  position: relative;
  padding: 25px 0;
  transition: transform 0.2s cubic-bezier(0.26, 0.06, 0, 1);
}
@media all and (max-width: 639px) {
  .icon-list li a {
    padding: 18px 0;
  }
}
.icon-list li a figure {
  margin: 0 auto 10px;
  width: 70px;
}
@media all and (max-width: 639px) {
  .icon-list li a figure {
    width: 60px;
    margin-bottom: 10px;
  }
}
.icon-list li a .icon-title {
  color: #222;
  position: relative;
  z-index: 2;
  transition: all 0.2s cubic-bezier(0.26, 0.06, 0, 1);
}
@media all and (max-width: 639px) {
  .icon-list li a .icon-title {
    padding: 12px 5px;
  }
}
.icon-list li a:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-image: linear-gradient(to right bottom, #fffef3, #fffac0);
  transition: transform 0.2s cubic-bezier(0.26, 0.06, 0, 1);
  z-index: -1;
}
.icon-list li a:hover {
  z-index: 2;
}
.icon-list li a:hover:before {
  transform: translate(-50%, -50%) scale(1.07, 1.02);
  opacity: 1;
}
.icon-list li a:hover .icon-title {
  color: #012748;
}
@media all and (max-width: 639px) {
  .icon-list li {
    width: 48%;
    margin-bottom: 15px;
    margin-right: 4%;
  }
  .icon-list li:nth-child(2n) {
    margin-right: 0;
  }
}

.title01 {
  line-height: 1.4;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #1677bb;
}
.title01 span {
  display: block;
  font-size: 2.2rem;
  font-weight: 600;
  color: #012748;
  font-family: "EB Garamond", "Libre Baskerville", "Oswald", "Barlow Condensed", serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
}
@media all and (max-width: 639px) {
  .title01 {
    font-size: 1.4rem;
  }
  .title01 span {
    font-size: 1.4rem;
  }
}
.title01.white {
  color: #fcfcfc;
}
.title01.white span {
  color: #fff;
}

.title02 {
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.2em;
  font-family: "YakuHanJP", "Noto Sans JP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, "Noto Sans JP";
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #1d1d1d;
  line-height: 2;
}
.title02 span {
  font-size: 1.2rem;
  background: rgba(255, 176, 51, 0.8);
  padding: 4px 18px;
  color: #012748;
}
@media all and (max-width: 639px) {
  .title02 {
    font-size: 1.2rem;
  }
}
.title02.type1 span {
  background: #1677bb;
}

.map-big {
  width: 100%;
  height: 350px;
  position: relative;
  z-index: 3;
}
@media all and (max-width: 896px) {
  .map-big {
    height: 250px;
  }
}

/* --news--
----------------------------------*/
.news-box {
  margin: 0 auto;
  max-width: 1100px;
  position: relative;
  z-index: 10;
  display: flex;
}
@media all and (max-width: 896px) {
  .news-box {
    margin-top: 0;
  }
}
@media all and (max-width: 639px) {
  .news-box {
    flex-direction: column;
    /*padding: 20px 10px;*/
  }
}

.news-title {
  text-align: center;
  margin-right: 30px;
  text-align: center;
  position: relative;
}
.news-title span {
  display: block;
}
.news-title .eng {
  font-family: "EB Garamond", "Libre Baskerville", "Oswald", "Barlow Condensed", serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
  color: #1677bb;
  position: relative;
  font-size: 2.6rem;
  line-height: 1.4;
}
.news-title .ja {
  color: #1d1d1d;
  font-family: "YakuHanJP", "Noto Sans JP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, "Noto Sans JP";
  font-weight: 600;
  letter-spacing: 0.2em;
  font-size: 1.6rem;
  position: relative;
  margin: 0 auto;
}
@media all and (max-width: 639px) {
  .news-title {
    margin-bottom: 15px;
    margin-right: 0;
  }
  .news-title .eng {
    font-size: 2rem;
  }
  .news-title .ja {
    font-size: 1.4rem;
  }
}

.news-right {
  flex: 1;
}
@media all and (max-width: 639px) {
  .news-right {
    width: 100%;
    /*margin: 10px 0 0;*/
    margin: 0 auto;
  }
}

.topic-dl .topic-inner {
  display: flex;
  border-bottom: 1px dotted #ccc;
  position: relative;
  padding: 10px 0;
}
.topic-dl .topic-inner:before {
  width: 40px;
  border-bottom: 1px solid #ffb033;
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
}
.topic-dl .topic-inner dt {
  width: 7em;
  font-size: 1.4rem;
  font-weight: 700;
  color: #222;
}
@media all and (max-width: 639px) {
  .topic-dl .topic-inner dt {
    font-size: 12px;
  }
}
.topic-dl .topic-inner dd {
  padding-left: 20px;
}
.topic-dl .topic-inner dd a {
  font-weight: 600;
}
.topic-dl .topic-inner dd a:hover {
  color: #012748;
}
@media all and (max-width: 639px) {
  .topic-dl {
    padding-bottom: 40px;
  }
}

.top-bg {
  background: url(../img/top-bg01.jpg) no-repeat center/cover;
  background-attachment: fixed;
  height: 400px;
}
@media all and (max-width: 1100px) {
  .top-bg {
    background-attachment: scroll;
  }
}

/* --top-bnr-list--
----------------------------------*/
.top-bnr-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 50px;
  padding: 0 10px;
}
@media all and (max-width: 896px) {
  .top-bnr-list {
    grid-template-columns: 1fr;
    gap: 50px 0;
    padding: 0 5px;
    max-width: 550px;
    margin: auto;
  }
}
.top-bnr-list .top-bnr-wrap {
  display: block;
  height: 100%;
  position: relative;
}
.top-bnr-list .top-bnr-wrap:hover figure img {
  transform: scale(1.1);
  opacity: 0.8;
}
.top-bnr-list .top-bnr-wrap:hover .morebtn {
  background: #ffb033;
  color: #fff;
}
.top-bnr-list .top-bnr-title {
  position: absolute;
  left: 10px;
  top: 15px;
  z-index: 2;
}
.top-bnr-list .top-bnr-title span {
  font-family: "YakuHanJP", "Noto Sans JP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, "Noto Sans JP";
  font-weight: 600;
  letter-spacing: 0.2em;
  background: #fff;
  padding: 8px;
  font-size: 1.6rem;
  color: #222;
  border-left: 3px solid #ffb033;
}
@media all and (max-width: 1100px) {
  .top-bnr-list .top-bnr-title span {
    font-size: 1.45rem;
  }
}
@media all and (max-width: 896px) {
  .top-bnr-list .top-bnr-title span {
    font-size: 1.3rem;
  }
}
.top-bnr-list figure {
  width: 100%;
  height: 260px;
  background: #111;
  overflow: hidden;
}
.top-bnr-list figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.8s ease;
  opacity: 1;
}
@media all and (max-width: 1100px) {
  .top-bnr-list figure {
    height: 200px;
  }
}
@media all and (max-width: 896px) {
  .top-bnr-list figure {
    height: 240px;
  }
}
@media all and (max-width: 639px) {
  .top-bnr-list figure {
    height: 180px;
  }
}
.top-bnr-list .top-bnr-txt {
  max-width: 100%;
  padding: 20px;
  background: #fff;
  position: relative;
  margin: 0 auto;
  color: #222;
  text-align: center;
}
@media all and (max-width: 896px) {
  .top-bnr-list .top-bnr-txt {
    padding: 15px 10px;
    text-align: left;
  }
}
.top-bnr-list .morebtn {
  text-align: center;
  width: 180px;
  background: #fff;
  border: 1px solid #ffb033;
  color: #ffb033;
  border-radius: 40px;
  position: relative;
  z-index: 2;
  padding: 5px 0;
  margin: 0 auto;
  font-size: 90%;
  transition: 0.2s ease-in all;
}

.map-link {
  font-weight: 700;
  color: #012748;
  border-bottom: 1px solid #012748;
}
.map-link:before {
  font-family: "Font Awesome 5 Free";
  content: "\f3c5";
  font-weight: 900;
  margin-right: 5px;
}

/*s-product
----------------------------------*/
.s-product {
  position: relative;
  margin: 40px auto 0;
}
@media all and (max-width: 639px) {
  .s-product {
    padding-bottom: 6rem;
  }
}
.s-product > .swiper-wrapper {
  display: flex;
  flex-wrap: wrap;
}
@media all and (max-width: 639px) {
  .s-product > .swiper-wrapper {
    flex-wrap: nowrap;
    justify-content: initial;
  }
}
.s-product > .swiper-wrapper > .swiper-slide {
  width: 32.3333333333%;
  margin: 0 1% 40px 0;
  padding: 20px 2%;
  background: #fff;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  min-height: 260px;
}
.s-product > .swiper-wrapper > .swiper-slide:nth-child(3n) {
  margin-right: 0;
}
@media all and (max-width: 639px) {
  .s-product > .swiper-wrapper > .swiper-slide {
    width: 100%;
    margin: 0 auto;
    padding: 10px;
    min-height: 220px;
  }
  .s-product > .swiper-wrapper > .swiper-slide:nth-child(3n), .s-product > .swiper-wrapper > .swiper-slide:nth-child(2n) {
    margin-right: auto;
  }
}
.s-product > .swiper-wrapper > .swiper-slide .img-area {
  position: relative;
  width: 100%;
  height: 180px;
  margin: 0 auto 20px;
  overflow: hidden;
}
.s-product > .swiper-wrapper > .swiper-slide .img-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
@media all and (max-width: 639px) {
  .s-product > .swiper-wrapper > .swiper-slide .img-area {
    height: 200px;
  }
}
.s-product > .swiper-wrapper > .swiper-slide .cate {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.s-product > .swiper-wrapper > .swiper-slide .cate .nmb {
  width: 20%;
  display: block;
  color: #012748;
  font-family: "EB Garamond", "Libre Baskerville", "Oswald", "Barlow Condensed", serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
  font-weight: 200;
  font-size: 5rem;
  text-align: center;
  margin-bottom: 15px;
}
.s-product > .swiper-wrapper > .swiper-slide .cate .nmb span {
  font-size: 1.3rem;
  display: block;
  margin-bottom: -1rem;
}
@media all and (max-width: 896px) {
  .s-product > .swiper-wrapper > .swiper-slide .cate .nmb {
    font-size: 3rem;
  }
  .s-product > .swiper-wrapper > .swiper-slide .cate .nmb span {
    font-size: 1rem;
    letter-spacing: 0.2em;
  }
}
@media all and (max-width: 639px) {
  .s-product > .swiper-wrapper > .swiper-slide .cate .nmb {
    font-size: 4rem;
  }
  .s-product > .swiper-wrapper > .swiper-slide .cate .nmb span {
    font-size: 1.2rem;
  }
}
.s-product > .swiper-wrapper > .swiper-slide .cate .ttl {
  width: 75%;
  font-size: 2rem;
  font-family: "YakuHanJP", "Noto Sans JP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, "Noto Sans JP";
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #012748;
}
@media all and (max-width: 1100px) {
  .s-product > .swiper-wrapper > .swiper-slide .cate .ttl {
    letter-spacing: 0;
    font-size: 1.8rem;
  }
}
@media all and (max-width: 896px) {
  .s-product > .swiper-wrapper > .swiper-slide .cate .ttl {
    font-size: 1.3rem;
  }
}
@media all and (max-width: 639px) {
  .s-product > .swiper-wrapper > .swiper-slide .cate .ttl {
    font-size: 1.5rem;
  }
}
.s-product > .swiper-wrapper > .swiper-slide .txt {
  color: #333;
}
.s-product > .swiper-wrapper > .swiper-slide .btn {
  font-size: 1.2rem;
  margin-top: 10px;
  position: relative;
  text-align: right;
}
.s-product > .swiper-wrapper > .swiper-slide .btn::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  background: #ffb033;
  opacity: 0.5;
  z-index: -2;
  border-radius: 30px;
}
.s-product > .swiper-wrapper > .swiper-slide:hover {
  transition: all 0.3s ease;
}
.s-product > .swiper-wrapper > .swiper-slide:hover .img-area img {
  transition: all 0.3s ease;
}
.s-product > .swiper-wrapper > .swiper-slide:hover .btn::after {
  transition: all 0.3s ease;
  width: 30px;
  height: 30px;
}
.s-product .swiper-controller {
  display: none;
}
@media all and (max-width: 639px) {
  .s-product .swiper-controller {
    display: flex;
    gap: 2.6rem;
    align-items: center;
    justify-content: flex-end;
    margin-top: 3.2rem;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
.s-product .swiper-button-prev,
.s-product .swiper-button-next {
  position: relative;
  margin: 0;
  display: grid;
  place-content: center;
  width: 6.4rem;
  height: 6.4rem;
  cursor: pointer;
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  background-image: none;
  border-radius: 50%;
  background: #012748;
}
@media all and (max-width: 896px) {
  .s-product .swiper-button-prev,
  .s-product .swiper-button-next {
    width: 4rem;
    height: 4rem;
  }
}
.s-product .swiper-button-prev::before,
.s-product .swiper-button-next::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  border-radius: 50%;
}
.s-product .swiper-button-prev::after,
.s-product .swiper-button-next::after {
  width: 1.2rem;
  height: 1.2rem;
  content: "";
  border: solid #fefefe;
  border-width: 2px 2px 0 0;
}
.s-product .swiper-button-prev:hover::before,
.s-product .swiper-button-next:hover::before {
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  transform: scale(1.2);
}
.s-product .swiper-button-prev::after {
  margin-left: 0.4rem;
  transform: rotate(-135deg);
}
.s-product .swiper-button-next::after {
  margin-right: 0.4rem;
  transform: rotate(45deg);
}
.s-product .swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}

/* contents
----------------------------------*/
.single {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0;
  position: relative;
}
@media all and (max-width: 1100px) {
  .single {
    padding: 80px 10px;
  }
}

.single02 {
  margin: 0 auto;
  padding: 80px 0;
}
.single02.type1 {
  padding: 80px 0 0;
}
@media all and (max-width: 1100px) {
  .single02 {
    width: 100%;
    padding: 80px 10px;
  }
  .single02.type1 {
    padding: 80px 10px 0;
  }
}

.single03 {
  max-width: 1500px;
  width: 95%;
  margin: 0 auto;
  padding: 80px 0;
  position: relative;
}
@media all and (max-width: 1100px) {
  .single03 {
    padding: 80px 10px;
  }
}

.single04 {
  position: relative;
  margin: 0 auto;
  padding: 40px 0;
  max-width: calc(100% - 80px);
}
.single04.inner {
  z-index: 2;
}
@media all and (max-width: 896px) {
  .single04 {
    max-width: calc(100% - 20px);
    padding: 20px 0;
  }
}

.single.phalf,
.single02.phalf,
.single03.phalf {
  padding: 40px 0;
}
@media all and (max-width: 1100px) {
  .single.phalf,
  .single02.phalf,
  .single03.phalf {
    padding: 20px 0;
  }
}

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

.margin-top2 {
  margin-top: -40px;
}
@media all and (max-width: 639px) {
  .margin-top2 {
    margin-top: -20px;
  }
}

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

.lsingle {
  float: left;
}

.rsingle {
  float: right;
}

.sbox {
  background: transparent;
  padding: 20px;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}
.sbox.type1 {
  background: #fefefe;
}
@media all and (max-width: 639px) {
  .sbox {
    padding: 10px;
  }
}

.sbox2 {
  background: transparent;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}
@media all and (max-width: 639px) {
  .sbox2 {
    padding: 10px;
  }
}

.vertical-box {
  position: relative;
}
.vertical-box .vertical-content {
  margin-left: 120px;
}
@media all and (max-width: 639px) {
  .vertical-box .vertical-content {
    margin: 20px 0 0;
  }
}

.mbox {
  background: #fefefe;
  padding: 30px;
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}
.mbox.transparent {
  background: transparent;
}
.mbox.wk {
  border: 1px solid #ccc;
}
.mbox.sd {
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  box-shadow: 2px 2px 10px -3px rgba(34, 34, 34, 0.2);
}
@media all and (max-width: 639px) {
  .mbox {
    padding: 15px;
  }
}

.mbox2 {
  background: #fff;
  padding: 30px;
  border: 1px solid #ffb033;
}
@media all and (max-width: 639px) {
  .mbox2 {
    padding: 15px;
  }
}

.mbox3 {
  background: #fefefe;
  border-radius: 2px;
  box-shadow: 5px 5px #ccc;
  padding: 30px;
  border: 1px solid #888;
  margin-right: auto;
  margin-left: auto;
}
@media all and (max-width: 639px) {
  .mbox3 {
    width: calc(100% - 10px);
    padding: 15px;
    box-shadow: 3px 3px #ccc;
    border-radius: 2px;
  }
}

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

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

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

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

.bg-gradation {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #012748, rgba(1, 39, 72, 0.9));
  background-size: 200%;
}

.bg-grid {
  background: rgba(255, 255, 255, 0.9);
  /* border-top: 1px solid #555;
  border-bottom: 1px solid #555;*/
  background-image: linear-gradient(90deg, transparent 95%, rgba(204, 204, 204, 0.2) 50%, rgba(204, 204, 204, 0.2)), linear-gradient(0deg, transparent 95%, rgba(204, 204, 204, 0.2) 50%, rgba(204, 204, 204, 0.2));
  background-size: 20px 20px;
  background-repeat: repeat;
}

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

#main {
  float: left;
  width: 76%;
}
#main .mbox {
  min-height: 400px;
}
@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;
  }
}

/* mtitle
----------------------------------*/
.mtitle_maru {
  position: relative;
  padding-top: 55px;
  text-align: center;
  margin-bottom: 40px;
}
.mtitle_maru::before {
  content: " ";
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 95px;
  background: #333;
}
.mtitle_maru::after {
  font-family: "Font Awesome 5 Free";
  content: "\f192";
  font-weight: 900;
  position: absolute;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: #012748;
  letter-spacing: 0;
}
.mtitle_maru .ja {
  font-size: 2.5rem;
  font-weight: 600;
}
.mtitle_maru .eng {
  display: block;
  margin-top: 5px;
  font-family: "EB Garamond", "Libre Baskerville", "Oswald", "Barlow Condensed", serif;
  font-size: 3rem;
  font-weight: 400;
  color: #012748;
  letter-spacing: 0.15em;
}
@media all and (max-width: 639px) {
  .mtitle_maru .ja {
    font-size: 1.6rem;
  }
  .mtitle_maru .eng {
    font-size: 1rem;
  }
}

.mtitle {
  margin: 0 auto 30px;
  position: relative;
  text-align: center;
  line-height: 1.3;
}
.mtitle .eng {
  font-size: 2rem;
  color: #012748;
  z-index: 2;
  display: block;
  font-family: "EB Garamond", "Libre Baskerville", "Oswald", "Barlow Condensed", serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
}
.mtitle .ja {
  z-index: 2;
  font-size: 3rem;
  color: #1d1d1d;
  letter-spacing: 0.2em;
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
}
.mtitle.white {
  color: #fff;
}
.mtitle.white span {
  color: #fff;
}
.mtitle.white span:after {
  background-color: #eee;
}
.mtitle.gray {
  line-height: 1.4;
}
.mtitle.gray .eng {
  color: #555;
}
.mtitle.sbc {
  line-height: 1.4;
}
.mtitle.sbc .eng {
  color: #ffb033;
}
.mtitle.mtitle_left {
  text-align: left;
  margin: 0 auto 15px;
}
.mtitle.mtitle_left:before {
  left: 2%;
  transform: translate(0, -50%);
}
.mtitle.mtitle_left span:after {
  left: 0;
  transform: none;
}
@media all and (max-width: 639px) {
  .mtitle {
    text-align: center;
    margin: 0 auto 25px;
  }
  .mtitle .eng {
    font-size: 2rem;
  }
  .mtitle .ja {
    font-size: 2rem;
    letter-spacing: 0.15em;
  }
}

.mtitle2 {
  width: 100%;
  position: relative;
  margin-bottom: 30px;
}
.mtitle2.type2 .eng {
  color: #777;
}
.mtitle2 .ja {
  font-size: 1.8rem;
  color: #1d1d1d;
}
.mtitle2 .eng {
  font-size: 3.2rem;
  color: #ffb033;
  margin-right: 10px;
  font-family: "EB Garamond", "Libre Baskerville", "Oswald", "Barlow Condensed", serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
  letter-spacing: 0.05em;
}
.mtitle2.white .ja,
.mtitle2.white .eng {
  color: #fff;
}
@media all and (max-width: 639px) {
  .mtitle2 {
    margin-bottom: 20px;
  }
  .mtitle2 .eng {
    font-size: 2.6rem;
  }
  .mtitle2 .ja {
    font-size: 1.4rem;
  }
}

.mtitle3 {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-feature-settings: "pkna";
  position: absolute;
  min-height: 100px;
  top: 10px;
  left: 20px;
  padding-top: 40px;
  line-height: 1.4;
}
.mtitle3:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 30px;
  top: 0;
  left: 50%;
  background: #ffb033;
}
.mtitle3 .ja {
  display: block;
  font-size: 1.8rem;
  line-height: 1.3;
  font-family: "YakuHanJP", "Noto Sans JP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, "Noto Sans JP";
  font-weight: 600;
  letter-spacing: 0.2em;
  letter-spacing: 0.3em;
  color: #222;
}
.mtitle3 .eng {
  display: block;
  font-family: "EB Garamond", "Libre Baskerville", "Oswald", "Barlow Condensed", serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
  letter-spacing: 0.15em;
  font-size: 2.2rem;
  color: #012748;
}
.mtitle3.white:before {
  background: #fff;
}
.mtitle3.white .ja,
.mtitle3.white .eng {
  text-shadow: 1px 1px 0px #1677bb, -1px 1px 0px #1677bb, 1px -1px 0px #1677bb, -1px -1px 0px #1677bb, 1px 0px 0px #1677bb, 0px 1px 0px #1677bb, -1px 0px 0px #1677bb, 0px -1px 0px #1677bb;
  color: #fff;
}
@media all and (max-width: 639px) {
  .mtitle3 {
    position: relative;
    top: 0;
    left: 0;
    writing-mode: inherit;
    padding: 0 0 0 30px;
    min-height: auto;
    min-height: inherit;
    margin-bottom: 15px;
  }
  .mtitle3:before {
    width: 20px;
    height: 1px;
    top: 50%;
    left: 0;
  }
  .mtitle3 .ja {
    font-size: 1.4rem;
  }
  .mtitle3 .eng {
    font-size: 1.8rem;
  }
}

.mtitle_line {
  font-size: 1.8rem;
  padding-bottom: 20px;
  position: relative;
  font-weight: 600;
  margin-bottom: 30px;
  color: #1d1d1d;
  border-top: 2px solid #012748;
  font-family: "YakuHanJP", "Noto Sans JP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, "Noto Sans JP";
  font-weight: 600;
  letter-spacing: 0.2em;
  padding: 8px 10px 14px;
}
.mtitle_line span {
  font-size: 2.4rem;
  color: rgba(255, 176, 51, 0.8);
  font-family: "EB Garamond", "Libre Baskerville", "Oswald", "Barlow Condensed", serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
  margin-right: 5px;
}
.mtitle_line.white {
  color: #fff;
  border-top: 2px solid #fff;
}
.mtitle_line.white:after {
  opacity: 1;
  background-image: repeating-linear-gradient(-45deg, #fff, #fff 1px, transparent 2px, transparent 5px);
}
.mtitle_line:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  content: "";
  opacity: 0.5;
  background-image: repeating-linear-gradient(-45deg, #012748, #012748 1px, transparent 2px, transparent 5px);
  background-size: 7px 7px;
  backface-visibility: hidden;
}
@media all and (max-width: 639px) {
  .mtitle_line {
    font-size: 1.4rem;
  }
  .mtitle_line span {
    font-size: 1.8rem;
  }
}

.balloon {
  position: relative;
  margin: auto;
  display: table;
  padding: 8px 20px;
  left: 0;
  right: 0;
  min-width: 120px;
  max-width: 100%;
  color: #fff;
  font-size: 1.8rem;
  background: #edf5f8;
  font-weight: 600;
  letter-spacing: 0.2em;
  border-radius: 30px;
}
.balloon:before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% - 5px);
  margin-top: -10px;
  border: 10px solid transparent;
  border-left: 22px solid #edf5f8;
}
@media all and (max-width: 639px) {
  .balloon {
    margin: 10px auto;
    font-size: 1.4rem;
  }
  .balloon:before {
    top: 100%;
    left: 50%;
    margin-left: -15px;
    border: 15px solid transparent;
    border-top: 15px solid #edf5f8;
  }
}

.mtitle_balloon {
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 700;
}
.mtitle_balloon span {
  position: relative;
  display: inline-block;
  padding: 0 8px 16px;
  line-height: 1.3em;
  overflow: hidden;
}
.mtitle_balloon span.eng {
  font-family: "EB Garamond", "Libre Baskerville", "Oswald", "Barlow Condensed", serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
  font-size: 3.4rem;
}
.mtitle_balloon span:before, .mtitle_balloon span:after {
  content: "";
  display: block;
  border-bottom: 2px 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: 9px;
  height: 9px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transform: rotate(135deg);
  position: absolute;
  left: 50%;
  margin-left: -5px;
  bottom: 2px;
}
.mtitle_balloon.white span:before, .mtitle_balloon.white span:after {
  border-bottom-color: #fefefe;
}
.mtitle_balloon.white span i {
  border-color: #fefefe;
}
@media all and (max-width: 639px) {
  .mtitle_balloon {
    font-size: 1.6rem;
  }
  .mtitle_balloon span.eng {
    font-size: 2rem;
  }
}

.mtitle-bll {
  font-size: 1.6rem;
  font-weight: 700;
  border-bottom: 2px solid #eeeeee;
  position: relative;
  margin-bottom: 15px;
  line-height: 1.5;
  padding-bottom: 8px;
}
.mtitle-bll b {
  color: #ffb033;
}
.mtitle-bll:after {
  position: absolute;
  content: "";
  display: block;
  bottom: -2px;
  width: 100px;
  height: 2px;
  background: #ffb033;
}
@media all and (max-width: 639px) {
  .mtitle-bll {
    font-size: 1.3rem;
  }
}

.mtitle4 {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.5;
  font-family: "YakuHanJP", "Noto Sans JP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, "Noto Sans JP";
  font-weight: 600;
  letter-spacing: 0.2em;
  letter-spacing: 0.15em;
}
.mtitle4 span {
  position: relative;
  display: inline-block;
  min-width: 10%;
  padding: 0 5px;
  color: #1d1d1d;
}
.mtitle4 span:before, .mtitle4 span:after {
  content: "";
  display: inline-block;
  position: absolute;
  /*top: 0;*/
  bottom: 0;
  margin: auto;
  width: 2px;
  height: 1.6rem;
  background-color: #ffb033;
}
.mtitle4 span:before {
  left: -11px;
  transform: rotate(-20deg);
}
.mtitle4 span:after {
  right: -11px;
  transform: rotate(20deg);
}
.mtitle4.white span:before, .mtitle4.white span:after {
  background-color: #fff;
}
@media all and (max-width: 639px) {
  .mtitle4 {
    font-size: 1.3rem;
  }
}
@media all and (max-width: 320px) {
  .mtitle4 span:before {
    left: -3px;
  }
  .mtitle4 span:after {
    right: -3px;
  }
}

.mtitle_sub {
  padding-left: 0.5em;
  font-weight: 600;
  position: relative;
  border-left: 6px solid #012748;
  margin: 8px 0 15px;
  line-height: 1.4;
  text-align: left;
}
.mtitle_sub:before {
  position: absolute;
  left: -6px;
  bottom: 0;
  content: "";
  width: 6px;
  height: 50%;
  background-color: #ffc466;
}

.mtitle_sub2 {
  position: relative;
  margin-bottom: 60px;
  padding-left: 16px;
  border-left: 3px solid #ffb033;
}
.mtitle_sub2::before {
  content: attr(data-title);
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  color: rgba(255, 176, 51, 0.7);
  font-family: "EB Garamond", "Libre Baskerville", "Oswald", "Barlow Condensed", serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 3rem;
}
@media all and (max-width: 639px) {
  .mtitle_sub2::before {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}
.mtitle_sub2 .ja {
  font-weight: 600;
  font-size: 1.4em;
  text-align: left;
}
.mtitle_sub2.white {
  border-left: 3px solid #fefefe;
}
.mtitle_sub2.white::before {
  color: #fefefe;
}
.mtitle_sub2.white .ja {
  color: #fefefe;
}

.mtitle_box {
  background: #3272a4;
  color: #fff;
  font-size: 1.8rem;
  position: relative;
  padding: 10px 20px 10px 10px;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.4;
  display: flex;
  align-items: center;
}
.mtitle_box:before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f30a";
  font-weight: 900;
  display: block;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
}
@media all and (max-width: 639px) {
  .mtitle_box {
    font-size: 1.4rem;
    display: block;
  }
}

.mtitle_box2 {
  background: #012748;
  font-size: 2rem;
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 15px 10px 15px 20px;
  margin-bottom: 25px;
  font-family: "YakuHanJP", "Noto Sans JP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, "Noto Sans JP";
  font-weight: 600;
  letter-spacing: 0.2em;
}
.mtitle_box2:before {
  background-color: #ffb033;
  content: "";
  display: block;
  transform: rotate(60deg);
  position: absolute;
  bottom: -10px;
  right: -150px;
  width: 300px;
  height: 280px;
}
@media all and (max-width: 639px) {
  .mtitle_box2 {
    font-size: 15px;
    line-height: 1.5;
    padding: 10px 10px 10px 15px;
    padding-right: 40px;
  }
  .mtitle_box2:before {
    width: 215px;
    right: -170px;
  }
}

.mtitle_box3 {
  background: #1677bb;
  margin-bottom: 15px;
  font-size: 1.6rem;
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 10px 5px 10px 20px;
  font-family: "YakuHanJP", "Noto Sans JP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, "Noto Sans JP";
  font-weight: 600;
  letter-spacing: 0.2em;
}
.mtitle_box3:before {
  background-color: #012748;
  content: "";
  display: block;
  transform: rotate(60deg);
  position: absolute;
  bottom: -10px;
  right: -150px;
  width: 300px;
  height: 280px;
}
@media all and (max-width: 639px) {
  .mtitle_box3 {
    font-size: 1.3rem;
    line-height: 1.5;
    padding-right: 40px;
  }
  .mtitle_box3:before {
    width: 215px;
    right: -170px;
  }
}

.big {
  font-size: 105%;
}

.mtext0 {
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.2em;
}
.mtext0 .big {
  font-size: 1.8rem;
  font-family: "YakuHanJP", "Noto Sans JP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, "Noto Sans JP";
  font-weight: 600;
  letter-spacing: 0.2em;
  letter-spacing: 0.15em;
}
.mtext0 img {
  margin-bottom: 10px;
}
@media all and (max-width: 639px) {
  .mtext0 {
    font-size: 1.25rem;
    letter-spacing: 0.15em;
  }
  .mtext0 .big {
    font-size: 1.3rem;
    letter-spacing: 0.1em;
  }
}

.mtext1 {
  font-size: 2rem;
  line-height: 1.6;
}
@media all and (max-width: 639px) {
  .mtext1 {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}

.mtext2 {
  font-size: 2.5rem;
  line-height: 1.5;
}
.mtext2.type1 {
  font-size: 2.8rem;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 15px;
  font-family: "Shippori Mincho", "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 900;
}
@media all and (max-width: 639px) {
  .mtext2 {
    font-size: 1.5rem;
    line-height: 1.8;
  }
  .mtext2.type1 {
    letter-spacing: 0.15rem;
    font-size: 1.8rem;
  }
}

.mtext3 {
  font-size: 3.5rem;
}
@media all and (max-width: 639px) {
  .mtext3 {
    font-size: 2.2rem;
  }
}

.title-rec {
  font-family: "YakuHanJP", "Noto Sans JP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, "Noto Sans JP";
  font-weight: 600;
  letter-spacing: 0.2em;
  text-shadow: 1px 1px 0px #fff, -1px 1px 0px #fff, 1px -1px 0px #fff, -1px -1px 0px #fff, 1px 0px 0px #fff, 0px 1px 0px #fff, -1px 0px 0px #fff, 0px -1px 0px #fff;
  color: #012748;
  font-size: 3.6rem;
  margin-bottom: 30px;
  line-height: 1.4;
}
@media all and (max-width: 639px) {
  .title-rec {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}

.txt-rec {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 40px;
  font-family: "YakuHanJP", "Noto Sans JP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, "Noto Sans JP";
  font-weight: 600;
  letter-spacing: 0.2em;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}
@media all and (max-width: 639px) {
  .txt-rec {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 30px;
  }
}

.mtitle_category {
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-family: "YakuHanJP", "Noto Sans JP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, "Noto Sans JP";
  font-weight: 600;
  letter-spacing: 0.2em;
}
.mtitle_category:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0ca";
  font-weight: 900;
  margin-right: 5px;
  color: #02427a;
}
@media all and (max-width: 639px) {
  .mtitle_category {
    font-size: 1.4rem;
  }
}

#particle-bg {
  width: 100%;
  height: 100%;
  top: 0;
  position: absolute;
  z-index: 1;
}

/* btn
----------------------------------*/
.btn-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-wrap p:first-of-type {
  margin-right: 25px;
}
@media all and (max-width: 639px) {
  .btn-wrap p:first-of-type {
    margin: 0 auto;
  }
}
@media all and (max-width: 639px) {
  .btn-wrap {
    display: block;
  }
}

.btns a {
  background: #fff;
  text-align: center;
  max-width: 200px;
  width: 90%;
  font-size: 90%;
  margin: auto;
  color: #222;
  display: block;
  padding: 5px;
  font-weight: 500;
  border: 1px solid #222;
  border-radius: 35px;
}
.btns a:hover {
  background: #ffb033;
  color: #fefefe;
}

.btn01 a {
  background: #fff;
  text-align: center;
  width: 300px;
  margin: 5px auto;
  color: #222;
  display: block;
  padding: 10px 5px;
  font-weight: 700;
  border: 2px solid #222;
  border-radius: 35px;
}
.btn01 a:hover {
  background: #ffb033;
  color: #fefefe;
}
.btn01.type1 a:hover {
  background: #012748;
}
.btn01.mail {
  flex-basis: 100%;
}
.btn01.mail a {
  background: #ffcc33;
  margin: 15px auto 25px;
}
.btn01.mail a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 5px;
}
.btn01.left a {
  margin: 15px 0;
}
@media all and (max-width: 639px) {
  .btn01 a {
    width: 95%;
  }
}

.btn02 {
  max-width: 280px;
  width: 95%;
  margin: 20px auto 0;
}
.btn02 a {
  display: block;
  position: relative;
  padding: 15px 0;
  background-color: #edf5f8;
  border: 1px solid #222;
  line-height: 24px;
  letter-spacing: 0.1rem;
  font-size: 1.6rem;
  text-align: center;
  color: #222;
}
.btn02 a i {
  display: block;
  position: absolute;
  top: 50%;
  right: -10px;
  width: 50px;
  height: 1px;
  background-color: #222;
  transition: all 0.3s ease;
}
.btn02 a:hover i {
  width: 34px;
}

.btn03 {
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media all and (max-width: 639px) {
  .btn03.type1 {
    margin: 0 auto 0;
    max-width: 260px;
  }
}
.btn03 a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  vertical-align: middle;
  padding: 15px 10px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #012748;
  backface-visibility: hidden;
  background: rgba(254, 254, 254, 0.3);
  transition: all 0.3s ease;
  overflow: visible;
  color: #1d1d1d;
  max-width: 320px;
  width: 96%;
  letter-spacing: 0.15rem;
  line-height: 1.4;
  font-weight: 600;
}
.btn03 a:focus {
  outline: none;
}
.btn03 a:active {
  transform: scale(0.95);
  background: none;
}
.btn03 a:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-color: #ffb033;
  background-image: linear-gradient(to right, #ffb033 0%, #ffd966 100%);
  z-index: -1;
  box-shadow: 0 0 0 0 #ffce80;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.2s linear;
}
.btn03 a:hover {
  background: none;
  color: #fff;
}
.btn03 a:hover::after {
  box-shadow: 0 0 0 24px transparent;
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.2s linear, box-shadow 0.5s ease-out 0.2s;
}
.btn03.en a {
  font-family: "EB Garamond", "Libre Baskerville", "Oswald", "Barlow Condensed", serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
  letter-spacing: 0.2rem;
  font-size: 2rem;
}
.btn03.white a {
  background: transparent;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  border: 1px solid #fff;
  color: #fff;
}

/* news
----------------------------------*/
.news .news-inner {
  display: flex;
  flex-wrap: wrap;
  padding: 18px 6px;
  border-top: 1px solid #ccc;
}
.news .news-inner:last-of-type {
  border-bottom: 1px solid #ccc;
}
@media all and (max-width: 639px) {
  .news .news-inner {
    padding: 12px 4px;
  }
}
.news dt {
  font-family: "Barlow Condensed", serif;
  font-weight: 600;
  width: 7em;
}
@media all and (max-width: 639px) {
  .news dt {
    width: 6em;
  }
}
.news dd a {
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #222;
}
.news dd a:hover {
  opacity: 0.7;
}

.news-bl {
  overflow: hidden;
}
.news-bl dt {
  float: left;
  width: 8.5em;
  padding: 5px;
  line-height: 1.3;
  color: #222;
  text-align: center;
  border: 1px solid #222;
  border-radius: 30px;
  background: #edf5f8;
  font-size: 1.3rem;
}
@media all and (max-width: 639px) {
  .news-bl dt {
    font-size: 1.2rem;
  }
}
.news-bl dd {
  padding: 0 0 12px 9em;
  line-height: 1.6;
  border-bottom: 1px dotted #dddddd;
  margin: 0 0 10px;
}
.news-bl dd a {
  color: #222;
  background-image: linear-gradient(to right, #012748, #edf5f8);
  padding-bottom: 0.25em;
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  transition: background-size 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-weight: 700;
}
.news-bl dd a:hover {
  background-position: 0 100%;
  background-size: 100% 1px;
}
.news-bl dd:last-child {
  margin: 0;
  border-bottom: none;
}
@media all and (max-width: 639px) {
  .news-bl dt {
    float: none;
  }
  .news-bl dd {
    padding: 8px 5px;
  }
}

/* page-title
----------------------------------*/
.page-title {
  margin: 0 auto 0;
  position: relative;
  z-index: 1;
  background: url(../img/page-title.jpg) no-repeat 50%/cover;
  overflow: hidden;
}
.page-title:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #000;
  opacity: 0.6;
}
.page-title .inner {
  margin: 0 auto;
  padding: 180px 0 90px;
  max-width: 1200px;
}
.page-title .page-lead {
  text-align: center;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3), 0 0 10px rgba(0, 0, 0, 0.1);
  color: #fff;
  line-height: 1.6;
}
.page-title .page-lead span {
  display: block;
}
.page-title .page-lead .ja {
  font-size: 1.8rem;
  letter-spacing: 0.3em;
}
.page-title .page-lead .eng {
  font-size: 3rem;
  font-family: "EB Garamond", "Libre Baskerville", "Oswald", "Barlow Condensed", serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
  letter-spacing: 0.05em;
}
@media all and (max-width: 896px) {
  .page-title .inner {
    width: 100%;
    padding: 100px 0 50px;
  }
  .page-title .page-lead .ja {
    font-size: 1.4rem;
  }
  .page-title .page-lead .eng {
    font-size: 2rem;
  }
}

.bg-gradient {
  position: relative;
  position: relative;
}
.bg-gradient:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(to right, #012748, #012748, #ffb033);
  z-index: -2;
  opacity: 0.3;
}

.bg-fixed {
  width: 100%;
  height: 300px;
  background: url(../img/bg-fixed.jpg);
  background-position: center 80%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
@media all and (max-width: 1100px) {
  .bg-fixed {
    height: 200px;
    background-attachment: scroll;
    background-position: center bottom;
  }
}

.bg-fixed2 {
  width: 100%;
  height: 450px;
  background: url(../img/bg-fixed2.jpg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
@media all and (max-width: 1100px) {
  .bg-fixed2 {
    height: 200px;
    background-attachment: scroll;
    background-position: center bottom;
  }
}
@media all and (max-width: 639px) {
  .bg-fixed2 {
    height: 140px;
  }
}

.bg-01 {
  z-index: 0;
  position: relative;
  background-image: linear-gradient(16deg, rgba(116, 116, 116, 0.02) 0%, rgba(116, 116, 116, 0.02) 25%, transparent 25%, transparent 96%, rgba(177, 177, 177, 0.02) 96%, rgba(177, 177, 177, 0.02) 100%), linear-gradient(236deg, rgba(148, 148, 148, 0.02) 0%, rgba(148, 148, 148, 0.02) 53%, transparent 53%, transparent 59%, rgba(56, 56, 56, 0.02) 59%, rgba(56, 56, 56, 0.02) 100%), linear-gradient(284deg, rgba(16, 16, 16, 0.02) 0%, rgba(16, 16, 16, 0.02) 46%, transparent 46%, transparent 71%, rgba(181, 181, 181, 0.02) 71%, rgba(181, 181, 181, 0.02) 100%), linear-gradient(316deg, rgba(197, 197, 197, 0.02) 0%, rgba(197, 197, 197, 0.02) 26%, transparent 26%, transparent 49%, rgba(58, 58, 58, 0.02) 49%, rgba(58, 58, 58, 0.02) 100%), linear-gradient(90deg, rgb(255, 255, 255), rgb(255, 255, 255));
}

.bg-02 {
  position: relative;
}
.bg-02:before {
  position: absolute;
  content: "";
  z-index: -1;
  width: 100%;
  height: 100%;
  right: 0%;
  top: 0%;
  background: url(../img/01.jpg) no-repeat right top/cover;
  filter: blur(4px);
  opacity: 0.5;
}
@media all and (max-width: 896px) {
  .bg-02:before {
    width: 85%;
    height: 95%;
  }
}

.bg-03 {
  position: relative;
}
.bg-03:before {
  position: absolute;
  content: "";
  width: 80%;
  height: 100%;
  left: 0;
  top: 0;
  background-image: linear-gradient(to right bottom, #042054, #006494);
  opacity: 0.8;
}
.bg-03:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 80%;
  height: 100%;
  background: url(../img/05.jpg) right center/cover;
  z-index: -1;
}
@media all and (max-width: 896px) {
  .bg-03:before, .bg-03:after {
    width: 100%;
    height: 100%;
  }
}

.bg-base {
  background: linear-gradient(90deg, #1677bb 0%, #1677bb 70%, #012748 70%, #012748 100%);
}

.bg-gray {
  position: relative;
}
.bg-gray.type1:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #f4f4f4;
}
.bg-gray.type2:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #f4f4f4;
  z-index: -3;
  opacity: 0.8;
}
.bg-gray:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(to bottom, #f4f4f4, #fbfbfb);
}
.bg-gray.bg-half {
  background: transparent;
  background-image: linear-gradient(to bottom, transparent 0%, transparent 50%, #f4f4f4 50.1%, #f4f4f4 100%);
}

.bg-gray2 {
  position: relative;
  margin: 40px auto;
}
.bg-gray2:before {
  position: absolute;
  content: "";
  width: calc(100% - 80px);
  height: 100%;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  background: #f4f4f4;
}
@media all and (max-width: 896px) {
  .bg-gray2 {
    margin: 0 auto;
  }
  .bg-gray2:before {
    width: 100%;
  }
}

.bg-beige {
  position: relative;
  background: #fffef3;
}
.bg-beige.type1 {
  background: transparent;
}
.bg-beige.type1:before {
  position: absolute;
  content: "";
  width: calc(100% - 80px);
  height: 100%;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  background: #fffef3;
  z-index: -1;
}
@media all and (max-width: 639px) {
  .bg-beige.type1:before {
    width: calc(100% - 10px);
  }
}

.bg-beige2 {
  background: #f6f1ea;
}

/* tbl
----------------------------------*/
.tbl {
  width: 100%;
  border-top: 1px solid #ccc;
}
.tbl.tbl-price th {
  background: #edf5f8;
  color: #222;
}
.tbl.tbl-price th span {
  display: block;
  font-size: 13px;
  letter-spacing: 0;
  line-height: 1.4;
}
.tbl th,
.tbl td {
  padding: 15px;
  vertical-align: middle;
  border-bottom: 1px solid #ccc;
  font-size: 1.4rem;
}
.tbl th {
  background: #f9f9f9;
  font-weight: 600;
  width: 30%;
}
.tbl thead th {
  background: #ffb033;
  color: #fff;
}
.tbl td {
  background: #fff;
}
.tbl .th-1 {
  width: 25%;
}
.tbl .th-2 {
  width: 45%;
}
.tbl.type1 td {
  text-align: left;
}
@media all and (max-width: 639px) {
  .tbl th,
  .tbl td {
    padding: 10px;
    font-size: 12px;
  }
  .tbl th span,
  .tbl td span {
    font-size: 12px;
  }
}

.tbl2 {
  width: 100%;
}
.tbl2 th,
.tbl2 td {
  padding: 15px;
  vertical-align: middle;
  border: 1px solid #ccc;
  font-size: 1.4rem;
}
.tbl2 th {
  background: #f9f9f9;
  font-weight: 600;
}
@media all and (max-width: 639px) {
  .tbl2 th,
  .tbl2 td {
    padding: 8px 5px;
    font-size: 1rem;
    letter-spacing: 0.1em;
  }
}

.tbl_new {
  width: 100%;
}
.tbl_new tr th,
.tbl_new tr td {
  vertical-align: middle;
  padding: 15px 10px;
}
.tbl_new tr th {
  font-weight: 700;
  width: 25%;
  text-align: left;
  padding-left: 30px;
  letter-spacing: 0;
}
@media all and (max-width: 639px) {
  .tbl_new tr th {
    width: 40%;
  }
}
.tbl_new tr:nth-child(odd) th, .tbl_new tr:nth-child(odd) td {
  background: #edf5f8;
}

.company {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 5px;
}
.company th,
.company td {
  padding: 10px;
  vertical-align: middle;
}
.company th {
  position: relative;
  background: #012748;
  color: #fff;
  font-weight: 600;
  width: 15%;
}
@media all and (max-width: 639px) {
  .company th {
    width: 22%;
  }
}
.company td {
  background: #fff;
  padding-left: 20px;
}

.tbl-border0 {
  width: 100%;
  margin: auto;
}
.tbl-border0 th,
.tbl-border0 td {
  text-align: left;
  padding: 5px 0;
  vertical-align: middle;
}

.tbl-border {
  width: 100%;
}
.tbl-border th,
.tbl-border td {
  padding: 15px 10px;
  border-bottom: 1px solid #ddd;
  vertical-align: middle;
}
@media all and (max-width: 639px) {
  .tbl-border th,
  .tbl-border td {
    padding: 10px;
    font-size: 1.2rem;
  }
}
.tbl-border th {
  width: 20%;
  color: #222;
  text-align: left;
}
.tbl-border th.th-1 {
  width: 45%;
}
@media all and (max-width: 639px) {
  .tbl-border th {
    width: 30%;
  }
}

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

.ggmap2 {
  position: relative;
  padding-bottom: 65%;
  height: 0;
  overflow: hidden;
}
.ggmap2 iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* list
----------------------------------*/
.list_common.type1 li {
  border-bottom: 1px dotted #cccccc;
}
.list_common.type1 li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.list_common li {
  padding-bottom: 4px;
  margin-bottom: 4px;
  border-bottom: 1px dashed #bbb;
}
.list_common li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.list_check.type1 {
  display: flex;
  flex-wrap: wrap;
}
.list_check.type1 li {
  background: #fefefe;
  padding: 12px 8px;
  width: 48%;
}
.list_check.type1 li:nth-child(2n) {
  margin-left: 4%;
}
@media all and (max-width: 639px) {
  .list_check.type1 li {
    width: 95%;
    margin: 0 auto 5px;
  }
  .list_check.type1 li:nth-child(2n) {
    margin-left: auto;
  }
}
.list_check li {
  padding: 8px;
  font-weight: 700;
  background: #fefefe;
  margin-bottom: 5px;
}
.list_check li span {
  font-weight: normal;
  font-size: 0.9em;
  display: block;
  padding: 10px;
  background: rgba(255, 254, 243, 0.2);
  margin-top: 10px;
}
.list_check li a {
  color: #012748;
  border-bottom: 1px dotted #012748;
}
.list_check li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: 900;
  margin-right: 10px;
  color: #012748;
}
@media all and (max-width: 639px) {
  .list_check li {
    width: 98%;
    margin: 0 auto 10px;
    font-size: 1.2rem;
  }
}

.list_check2.type1 {
  display: flex;
  flex-wrap: wrap;
}
.list_check2.type1 li {
  width: 48%;
}
.list_check2.type1 li:nth-child(2n) {
  margin-left: 4%;
}
@media all and (max-width: 639px) {
  .list_check2.type1 li {
    width: 95%;
    margin: 0 auto 5px;
  }
  .list_check2.type1 li:nth-child(2n) {
    margin-left: auto;
  }
}
.list_check2 li {
  padding: 4px 4px 4px 30px;
  color: #222;
  font-weight: 700;
  position: relative;
}
.list_check2 li .num {
  color: #012748;
  margin: 0 4px;
  font-family: "EB Garamond", "Libre Baskerville", "Oswald", "Barlow Condensed", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.list_check2 li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 8px;
  color: #012748;
}
.list_check2 li:not(:last-child) {
  margin-bottom: 4px;
}
@media all and (max-width: 639px) {
  .list_check2 li {
    padding: 3px 0px 3px 20px;
  }
}

.list_check3 {
  display: flex;
  flex-wrap: wrap;
}
.list_check3 li {
  width: 32%;
  margin-bottom: 8px;
  margin-right: 2%;
  border-bottom: none;
}
.list_check3 li:nth-child(3n) {
  margin-right: 0;
}
.list_check3 li.bnone:before {
  content: none;
  margin-right: 0;
}
.list_check3 li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f138";
  font-weight: 900;
  margin-right: 8px;
}
@media all and (max-width: 896px) {
  .list_check3 li {
    width: 49%;
    margin-right: 2%;
    letter-spacing: 0.1em;
  }
  .list_check3 li:nth-child(2n) {
    margin-right: 0;
  }
  .list_check3 li:nth-child(3n) {
    margin-right: auto;
  }
  .list_check3 li:before {
    font-family: "Font Awesome 5 Free";
    content: "\f138";
    font-weight: 900;
    margin-right: 4px;
  }
}

.list-inline2 {
  text-align: center;
}
.list-inline2 li {
  margin: 5px;
  display: inline-block;
  padding: 4px 15px;
  background: #fffef3;
  border: 1px solid #1d1d1d;
  font-weight: 700;
  border-radius: 30px;
}

.list-inline li {
  display: inline-block;
}
.list-inline li:not(:last-of-type):after {
  content: " / ";
  color: #012748;
}
@media all and (max-width: 639px) {
  .list-inline li {
    display: block;
  }
  .list-inline li:before {
    content: "・";
    color: #ffb033;
  }
  .list-inline li:not(:last-of-type):after {
    display: none;
  }
}

.list_num li {
  position: relative;
  padding: 6px 4px 6px 50px;
  font-size: 2rem;
  margin-bottom: 5px;
  color: #222;
}
.list_num li span {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3.5rem;
  color: #1677bb;
}
@media all and (max-width: 639px) {
  .list_num li {
    font-size: 1.3rem;
  }
  .list_num li span {
    font-size: 2.8rem;
  }
}

.ol-list {
  counter-reset: number;
  list-style: none;
  padding: 0;
}
.ol-list.type1 {
  display: flex;
  flex-wrap: wrap;
}
.ol-list.type1 > li {
  width: 48%;
}
.ol-list.type1 > li:nth-child(2n) {
  margin-left: 4%;
}
.ol-list li {
  line-height: 2;
  padding-top: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ccc;
  position: relative;
  padding-left: 40px;
  padding-bottom: 10px;
  font-size: 1.8rem;
  font-family: "YakuHanJP", "Noto Sans JP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, "Noto Sans JP";
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #012748;
}
.ol-list li .inner {
  /*font-weight: normal;*/
  font-family: "YakuHanJP", "Noto Sans JP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #222;
  display: block;
  padding: 10px;
  line-height: 1.6;
  font-size: 1.4rem;
}
.ol-list li:before {
  counter-increment: number;
  content: counter(number);
  display: inline-block;
  font-family: "EB Garamond", "Libre Baskerville", "Oswald", "Barlow Condensed", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  left: 0;
  top: 15px;
  position: absolute;
  font-size: 3.5rem;
  color: #012748;
  margin-right: 10px;
  line-height: 1;
}
@media all and (max-width: 639px) {
  .ol-list li {
    font-size: 1.4rem;
  }
  .ol-list li .inner {
    font-size: 0.9em;
  }
  .ol-list li:before {
    font-size: 3rem;
  }
}

.ol-list2 {
  counter-reset: number;
  list-style: none;
  padding: 5px;
}
.ol-list2.type1 {
  display: flex;
  flex-wrap: wrap;
}
.ol-list2.type1 > li {
  width: 49%;
}
.ol-list2.type1 > li:nth-child(2n) {
  margin-left: 2%;
}
@media all and (max-width: 896px) {
  .ol-list2.type1 > li {
    width: 100%;
  }
  .ol-list2.type1 > li:nth-child(2n) {
    margin-left: 0;
  }
}
.ol-list2 li {
  line-height: 1.8;
  font-weight: 600;
  margin: 8px auto;
  font-size: 1.6rem;
}
.ol-list2 li:last-child {
  margin-bottom: 0;
}
.ol-list2 li span {
  font-size: 1.4rem;
  font-weight: normal;
  display: block;
  padding: 10px;
  line-height: 1.6;
}
.ol-list2 li:before {
  counter-increment: number;
  content: counter(number);
  background: #ffb033;
  display: inline-block;
  width: 1.8em;
  height: 1.8em;
  text-align: center;
  font-size: 1.8rem;
  color: #fff;
  border-radius: 100%;
  font-family: "EB Garamond", "Libre Baskerville", "Oswald", "Barlow Condensed", serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
}
@media all and (max-width: 896px) {
  .ol-list2 li {
    font-size: 1.3rem;
  }
  .ol-list2 li span {
    font-size: 1.2rem;
  }
  .ol-list2 li:before {
    font-size: 1.4rem;
  }
}

.list_disc li {
  padding: 5px 0 5px 20px;
  position: relative;
}
.list_disc li:not(:last-of-type) {
  margin-bottom: 5px;
}
.list_disc li:before {
  content: "●";
  position: absolute;
  left: 0;
  top: 8px;
  color: #012748;
  font-size: 80%;
}
@media all and (max-width: 639px) {
  .list_disc li {
    font-size: 12px;
  }
}

.list-btn {
  display: flex;
  flex-wrap: wrap;
}
.list-btn.btn-col2 {
  justify-content: space-between;
}
.list-btn.btn-col2 li {
  width: 48%;
  margin: auto;
  margin-bottom: 20px;
}
.list-btn.btn-col2 li a {
  font-size: 2rem;
  padding: 20px 5px;
}
@media all and (max-width: 639px) {
  .list-btn.btn-col2 li {
    width: 100%;
    margin: 0 auto 20px;
  }
  .list-btn.btn-col2 li a {
    font-size: 1.5rem;
  }
}
.list-btn li {
  width: 32%;
  margin: 0 1.995% 10px 0;
}
.list-btn li a {
  border: 1px solid #012748;
  box-sizing: border-box;
  display: block;
  background: rgba(255, 255, 255, 0.9);
  color: #222;
  font-weight: 700;
  padding: 10px 3px;
  text-align: center;
  width: 100%;
  height: 100%;
  line-height: 1.6;
  letter-spacing: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 4px 4px rgba(1, 39, 72, 0.4);
}
.list-btn li a:before {
  position: absolute;
  content: "";
  width: 70px;
  height: 70px;
  border-bottom: 0.2em solid #ffb033;
  border-right: 0.2em solid #ffb033;
  right: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
.list-btn li a .small {
  font-family: "EB Garamond", "Libre Baskerville", "Oswald", "Barlow Condensed", serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
  color: #000c16;
  display: block;
  font-size: 1.8rem;
}
.list-btn li a span {
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  position: relative;
  z-index: 2;
}
.list-btn li a span mn {
  font-weight: 500;
  letter-spacing: 0.1em;
  font-size: 90%;
}
.list-btn li a:hover {
  background: #012748;
}
.list-btn li a:hover span {
  color: #fff;
}
.list-btn li:nth-child(3n) {
  margin-right: 0;
}
@media all and (max-width: 639px) {
  .list-btn li {
    width: 90%;
    margin: 0 auto 10px;
  }
  .list-btn li a .small {
    font-size: 1.6rem;
  }
  .list-btn li a span {
    font-size: 1.4rem;
  }
  .list-btn li a span mn {
    display: block;
  }
  .list-btn li:nth-child(3n) {
    margin-right: auto;
  }
}
.list-btn.type1 {
  max-width: 1000px;
  margin: 0 auto 20px;
  justify-content: center;
}
.list-btn.type1 li a {
  background: #012748;
  border: 1px solid #000c16;
}
.list-btn.type1 li a:hover {
  background: #02427a;
}
.list-btn.type1 li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f13a";
  font-weight: 900;
  margin-right: 5px;
}

/* top_blog
----------------------------------*/
.tiple-item {
  margin: auto;
}
.tiple-item .top_blog_box {
  position: relative;
  background: #fff;
  color: #222;
  margin: 10px;
  height: 100%;
  box-shadow: 0 0 10px rgba(51, 51, 51, 0.1);
}
.tiple-item .top_blog_box figure {
  height: 250px;
  width: 100%;
  overflow: hidden;
}
@media all and (max-width: 1100px) {
  .tiple-item .top_blog_box figure {
    height: 220px;
  }
}
@media all and (max-width: 896px) {
  .tiple-item .top_blog_box figure {
    height: 200px;
  }
}
.tiple-item .top_blog_box figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  transition: 0.4s all ease-in;
}
.tiple-item .top_blog_box:hover figure img {
  opacity: 0.8;
  transform: scale(1.3);
}
.tiple-item .top_blog_box:hover .top_blog .inner:after {
  transform: scaleX(1);
}
.tiple-item .top_blog_box .top_blog {
  display: block;
  position: relative;
  color: #222;
}
.tiple-item .top_blog_box .top_blog .inner {
  padding: 20px;
  position: relative;
}
.tiple-item .top_blog_box .top_blog .inner:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  background: #ffb033;
  transition: all 0.4s ease;
}
.tiple-item .top_blog_box .top_blog .inner .date {
  display: inline-block;
  margin-bottom: 5px;
  font-size: 1.2rem;
}
.tiple-item .top_blog_box .top_blog .inner .top_blog_title {
  position: relative;
  padding-left: 15px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.tiple-item .top_blog_box .top_blog .inner .top_blog_title:before {
  content: "";
  background: #ffb033;
  width: 8px;
  height: 2px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* blog
----------------------------------*/
.top-blog .pages {
  display: none;
}

#main .blog-wrap > li {
  width: 32%;
}
@media all and (max-width: 1100px) {
  #main .blog-wrap > li {
    width: 49%;
    margin: 0 0.5% 20px 0.5%;
  }
}
@media all and (max-width: 639px) {
  #main .blog-wrap > li {
    width: 90%;
    margin: 0 auto 10px;
  }
}

.blog-wrap {
  display: flex;
  flex-wrap: wrap;
}
.blog-wrap * {
  transition: 0.3s;
}
.blog-wrap > li {
  width: 24%;
  margin: 0 0.5% 20px;
  position: relative;
  background: #fff;
  padding: 10px;
  border: 1px solid #ddd;
  box-sizing: border-box;
}
@media all and (max-width: 1100px) {
  .blog-wrap > li {
    width: 49%;
  }
}
.blog-wrap > li > a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}
.blog-wrap > li > a:hover ~ .blog-img img {
  opacity: 1;
  transform: scale(1.2);
}
@media all and (max-width: 639px) {
  .blog-wrap > li {
    width: 49%;
    padding: 5px;
  }
}

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

.blog-detail-upper {
  position: relative;
  z-index: 2;
  margin: 10px 0 0;
  /*margin: -31px 0 0;*/
  color: #fff;
  font-size: 12px;
}

.blog-category {
  display: inline-block;
  padding: 5px;
  line-height: 1.3;
  text-align: center;
  background: #111;
}

.blog-date {
  background: #012748;
  width: 100px;
  padding: 5px;
  line-height: 1.3;
  text-align: center;
  display: inline-block;
  color: #fff;
  font-size: 12px;
}

.blog-date2 {
  color: #012748;
  font-size: 0.9em;
  margin-bottom: 5px;
  margin-right: 5px;
}
.blog-date2:before {
  font-family: "Font Awesome 5 Free";
  content: "\f017";
  font-weight: 900;
  margin-right: 5px;
}

.blog-title {
  font-weight: 600;
  line-height: 1.4;
  margin: 10px 0 0;
  color: #222;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 90%;
}

.more {
  position: absolute;
  font-size: 1.8rem;
  border: 0.9px solid #ccc;
  color: #ccc;
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 30px;
  display: block;
  right: 0;
  bottom: -10px;
  font-weight: 700;
  border-radius: 0 0 20px 0;
  transition: all 0.2s ease-in;
}

.blogtxt {
  line-height: 1.5;
  color: #333;
  font-size: 13px;
}

.blogtitle {
  color: #012748;
  margin-bottom: 5px;
  font-size: 1.4rem;
  line-height: 1.4;
}
@media all and (max-width: 639px) {
  .blogtitle {
    font-size: 1.2rem;
  }
}

.blog-info {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  border-top: 1px solid #eee;
  padding: 8px;
  text-align: right;
  font-size: 1.4rem;
}

.blog-category {
  background: #012748;
  color: #fff;
  padding: 2px 4px;
  margin-right: 8px;
}

.blogtime {
  font-family: "EB Garamond", "Libre Baskerville", "Oswald", "Barlow Condensed", serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
  color: #ffb033;
}
@media all and (max-width: 639px) {
  .blogtime {
    font-size: 12px;
  }
}

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

.poly {
  -webkit-clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);
          clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);
}

.poly-img {
  border-radius: 31% 69% 70% 30%/30% 43% 57% 70%;
}

.img-round {
  border-radius: 15px 0 15px 0;
}

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

.img-hv2 {
  transition: all 0.3s ease;
}
.img-hv2:hover {
  opacity: 0.7;
}

.w300 {
  width: 300px;
}

.img-rec {
  width: 310px;
}
@media all and (max-width: 639px) {
  .img-rec {
    max-width: 260px;
    width: 80%;
  }
}

.spbr {
  display: none;
}

.color1 {
  color: #012748;
}

.color2 {
  color: #ffb033;
}

.color3 {
  color: #1d1d1d;
}

.relative {
  position: relative;
}
.relative.type1 {
  z-index: 5;
}

.bigger {
  font-size: 1.15em;
}

.smaller {
  font-size: 0.95em;
  letter-spacing: 0;
}

.num {
  font-weight: 700;
}
.num a {
  color: #012748;
  font-size: 2.8rem;
  text-align: center;
  margin-left: 5px;
}
@media all and (max-width: 639px) {
  .num a {
    font-size: 2rem;
  }
}
.num a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
}
.num a:hover {
  color: #012748;
}

.telbox {
  max-width: 600px;
  margin: 0 auto 20px;
  padding: 20px;
  background: #333;
  text-align: center;
}
.telbox .inner {
  background: #fff;
  padding: 10px;
}

.txt-link {
  font-weight: 700;
  text-decoration: underline;
}
.txt-link:after {
  font-family: "Font Awesome 5 Free";
  content: "\f101";
  font-weight: 900;
  padding-left: 5px;
}
.txt-link:hover {
  text-decoration: none;
}

.telbnr {
  max-width: 500px;
  margin: 0 auto 5px;
  padding-top: 25px;
}
.telbnr li {
  border: 3px solid #012748;
  padding: 15px;
  text-align: center;
  border-radius: 50px;
  line-height: 1.4;
}
.telbnr li mn {
  font-size: 90%;
  font-weight: 600;
  color: #222;
}
.telbnr li a {
  margin-top: 10px;
  display: block;
  font-size: 3rem;
  font-family: "EB Garamond", "Libre Baskerville", "Oswald", "Barlow Condensed", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #012748;
}
.telbnr li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  font-size: 85%;
  margin-right: 5px;
}
.telbnr li a:hover {
  color: #1d1d1d;
}
@media all and (max-width: 639px) {
  .telbnr {
    max-width: 90%;
  }
  .telbnr li {
    width: 100%;
    margin: 0 auto 30px;
  }
  .telbnr li:last-of-type {
    margin-left: auto;
  }
  .telbnr li a {
    font-size: 2rem;
  }
}

.telbnr-ttl {
  font-weight: 500;
  font-size: 1.8rem;
  color: #012748;
  margin-top: -30px;
}
.telbnr-ttl span {
  font-family: "YakuHanJP", "Noto Sans JP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, "Noto Sans JP";
  font-weight: 600;
  letter-spacing: 0.2em;
  background: #f4f4f4;
  color: #012748;
  padding: 2px 15px;
  font-family: "YakuHanJP", "Noto Sans JP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, "Noto Sans JP";
  font-weight: 600;
  letter-spacing: 0.2em;
  border-radius: 20px;
}
@media all and (max-width: 639px) {
  .telbnr-ttl {
    font-size: 1.4rem;
  }
}

/* breadcrumb
----------------------------------*/
.breadcrumb {
  max-width: 1200px;
  margin: 20px auto 20px;
  font-size: 1.2rem;
}
.breadcrumb li {
  display: inline;
  color: #aaa;
}
.breadcrumb li a {
  color: #012748;
}
.breadcrumb li + li:before {
  margin: 0 10px;
  content: ">";
}
@media all and (max-width: 639px) {
  .breadcrumb {
    font-size: 12px;
  }
}

/* form
----------------------------------*/
.form {
  margin: 0 auto;
  width: 90%;
}
.form dl dt {
  float: left;
  width: 280px;
  padding-top: 20px;
  font-weight: 700;
}
.form dl dt span {
  color: #fff;
  background: #012748;
  padding: 5px 8px;
  margin-right: 5px;
  font-size: 11px;
  border-radius: 20px;
  position: relative;
  top: -2px;
}
.form dl dt span.nini {
  background: #ffb033;
}
.form dl dd {
  padding-left: 280px;
  padding-bottom: 20px;
  padding-top: 23px;
  line-height: 1.5;
  border-bottom: 1px dotted #cccccc;
}
.form dl dd:last-child {
  border-bottom: none;
}
.form .textarea,
.form textarea {
  border: 0;
  padding: 20px 15px;
  width: 100%;
  background: #f5f5f5;
  border-radius: 0;
  -webkit-appearance: none;
}
.form .textarea {
  height: 30px;
}
.form .textarea02 {
  width: 48.5%;
  margin-right: 3%;
}
.form .textarea02:last-child {
  margin-right: 0;
}
.form .textarea03 {
  width: 20%;
  margin-right: 1%;
}
.form button {
  cursor: pointer;
  display: block;
  color: #fff;
  text-align: center;
  transition: all 0.2s ease-in-out 0s;
  border: 1px solid #012748;
  font-weight: 700;
  padding: 12px 5px;
  margin: 0 auto;
  width: 250px;
  background: #012748;
  border-radius: 25px;
  font-family: "YakuHanJP", "Noto Sans JP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, "Noto Sans JP";
  font-weight: 600;
  letter-spacing: 0.2em;
}
.form button:hover {
  background: #fff;
  color: #012748;
}
.form button:before {
  font-weight: normal;
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 10px;
}
.form .select-wrap {
  position: relative;
  overflow: hidden;
  display: inline-block;
  min-width: 192px;
  min-width: 12em;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  color: #333;
}
.form .select-wrap select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  z-index: 2;
  display: block;
  width: 200%;
  width: -webkit-calc(100% + 5em);
  margin: 0;
  padding: 11px 35px 11px 11px;
  padding: 0.6875rem 2.1875rem 0.6875rem 0.6875rem;
  background: transparent;
  border: 0;
  outline: none;
  line-height: 1.5;
}
.form .entypo-down-open-mini:before {
  font-family: "FontAwesome";
  content: "\f0ab";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 12px;
  right: 0.75rem;
  margin-top: -8px;
  margin-top: -0.5rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  color: #012748;
}
.form label.radio_text {
  cursor: pointer;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
  padding-left: 20px;
  display: inline-block;
}
.form label.radio_text:before {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 1px solid #ccc;
  border-radius: 50%;
  left: 0px;
  top: 2px;
  content: "";
  z-index: 3;
}
.form label.radio_text:after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 100%;
  left: 2px;
  top: 4px;
  background-color: #012748;
  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;
  box-shadow: 20px -1px #fff;
}
.form label.radio_text input[type=radio]:checked {
  box-shadow: none;
}
.form label.radio_text input[type=radio]:focus {
  opacity: 0.2;
  box-shadow: 20px -1px #eeebda;
}
.form label.checkbox_text {
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  margin: 0 20px 5px 0;
  overflow: hidden;
  display: inline-block;
}
.form label.checkbox_text:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0px;
  top: 0;
  border: 1px solid #ccc;
  z-index: 3;
  padding: 1px;
}
.form label.checkbox_text:after {
  content: "";
  position: absolute;
  top: 40%;
  left: 5px;
  display: block;
  margin-top: -9px;
  width: 8px;
  height: 12px;
  border-right: 3px solid #012748;
  border-bottom: 3px solid #012748;
  transform: rotate(45deg);
  z-index: 1;
}
@media all and (max-width: 639px) {
  .form label.checkbox_text:after {
    margin-top: -18px;
  }
}
.form label.checkbox_text input[type=checkbox] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  left: -40px;
  width: 20px;
  height: 20px;
  display: block;
  box-shadow: 41px 0px #fff;
  z-index: 2;
  margin: 0px;
  padding: 0px;
}
.form label.checkbox_text input[type=checkbox]:checked {
  box-shadow: none;
}
.form label.checkbox_text input[type=checkbox]:checked:focus {
  box-shadow: 40px 0px #666;
  opacity: 0.1;
}
.form label.checkbox_text input[type=checkbox]:focus {
  box-shadow: 41px 0px #eee;
}
.form input[type=text],
.form textarea {
  font-size: 16px;
}
@media all and (max-width: 639px) {
  .form input[type=text],
  .form textarea {
    transform: scale(0.9);
    margin-left: -5px;
  }
}

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

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

.shadow {
  box-shadow: 0 0 10px rgba(34, 34, 34, 0.05);
}

/* accordion
----------------------------------*/
.accordion {
  border: 1px solid #ddd;
  margin-top: 50px;
}
.accordion dt,
.accordion dd {
  position: relative;
  padding: 1em;
}
.accordion dt {
  background: #fff;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 600;
  border-bottom: 1px dotted #ddd;
}
.accordion dt:after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f067";
  font-weight: 900;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
}
.accordion dt.on:after {
  font-family: "Font Awesome 5 Free";
  content: "\f068";
  font-weight: 900;
}
.accordion dd {
  display: none;
  padding: 20px;
  background: #fff;
}
@media all and (max-width: 639px) {
  .accordion {
    margin-top: 30px;
  }
  .accordion dt,
  .accordion dd {
    padding: 0.8em 0.6em;
  }
  .accordion dt {
    font-size: 1.2rem;
    letter-spacing: 0.05em;
  }
  .accordion dt:after {
    font-size: 0.9rem;
    right: 8px;
  }
}

.policy {
  padding: 0;
  background: #f4f4f4;
  box-sizing: border-box;
  border: 1px solid #ccc;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

.mtitle_small {
  padding: 4px 0;
  font-size: 110%;
  border-top: 1px solid #012748;
  border-bottom: 1px solid #012748;
  font-family: "YakuHanJP", "Noto Sans JP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, "Noto Sans JP";
  font-weight: 600;
  letter-spacing: 0.2em;
  margin-bottom: 15px;
}
.mtitle_small:before {
  content: "―";
  margin-right: 8px;
  color: #012748;
}
.mtitle_small.type1 {
  border-top: 1px solid #ffb033;
  border-bottom: 1px solid #ffb033;
}
.mtitle_small.type1:before {
  color: #ffb033;
}
.mtitle_small.type2 {
  border-top: 1px solid #777;
  border-bottom: 1px solid #777;
}
.mtitle_small.type2:before {
  color: #777;
}
@media all and (max-width: 639px) {
  .mtitle_small {
    padding: 4px;
    font-size: 1.3rem;
  }
}

.mtitle_small2 {
  position: relative;
  margin-bottom: 5px;
  padding-left: 20px;
}
.mtitle_small2:before {
  content: "";
  background-color: #012748;
  width: 10px;
  height: 4px;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  left: 0;
}
.mtitle_small2.type1 {
  margin-bottom: 10px;
}
.mtitle_small2.type1:before {
  background-color: #ffb033;
}

.mtitle_small3 {
  padding-bottom: 4px;
  position: relative;
  margin-bottom: 20px;
  font-family: "YakuHanJP", "Noto Sans JP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, "Noto Sans JP";
  font-weight: 600;
  letter-spacing: 0.2em;
  font-size: 1.8rem;
  color: #222;
}
.mtitle_small3:first-letter {
  font-size: 2.2rem;
  color: #012748;
}
.mtitle_small3:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: #012748;
  opacity: 0.8;
}
@media all and (max-width: 639px) {
  .mtitle_small3 {
    font-size: 1.4rem;
  }
  .mtitle_small3:first-letter {
    font-size: 1.6rem;
  }
  .mtitle_small3:before {
    width: 35px;
  }
}

.mtitle_small4 {
  position: relative;
  background: #fefefe;
  border: 1px solid #ddd;
  font-size: 2rem;
  padding: 15px 15px 15px 30px;
  margin-bottom: 20px;
  font-family: "YakuHanJP", "Noto Sans JP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, "Noto Sans JP";
  font-weight: 600;
  letter-spacing: 0.2em;
}
.mtitle_small4:before {
  position: absolute;
  top: 15%;
  left: 8px;
  width: 6px;
  height: 70%;
  content: "";
  background: #012748;
}
@media all and (max-width: 639px) {
  .mtitle_small4 {
    font-size: 1.5rem;
    padding: 12px 12px 12px 24px;
  }
}

/*photoギャラリー*/
.gallery {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.gallery li {
  width: 23.5%;
  margin-right: 2%;
  margin-bottom: 10px;
}
.gallery li:nth-child(4n) {
  margin-right: 0;
}
.gallery li a {
  background: rgba(255, 254, 243, 0.2);
  display: block;
  text-align: center;
  padding: 0px;
  height: 180px;
}
.gallery li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  /*IE対策*/
}
.gallery li p {
  font-size: 14px;
  margin: 3px 0 10px;
}

@media all and (max-width: 896px) {
  .gallery li {
    width: 48%;
    margin: 0 1% 10px;
  }
  .gallery li:nth-child(2n) {
    margin-right: 0;
  }
  .gallery li a {
    height: 120px;
  }
  .gallery li p {
    font-size: 12px;
  }
}
.list2 {
  display: flex;
  flex-wrap: wrap;
  max-width: 1500px;
  margin-right: auto;
  margin-left: auto;
  margin-top: -50px;
}
@media all and (max-width: 639px) {
  .list2 {
    margin-top: -20px;
  }
}
.list2.interview-list .child {
  position: relative;
  padding-bottom: 80px;
}
.list2.type1 > li,
.list2.type1 .child {
  background: #fefefe;
  padding: 20px;
}
.list2 > li,
.list2 .child {
  width: 48%;
  margin-top: 50px;
  position: relative;
}
.list2 > li:nth-child(2n),
.list2 .child:nth-child(2n) {
  margin-left: 4%;
}
@media all and (max-width: 639px) {
  .list2 > li:nth-child(2n),
  .list2 .child:nth-child(2n) {
    margin-left: auto;
  }
}
@media all and (max-width: 639px) {
  .list2 > li,
  .list2 .child {
    width: 100%;
    margin: 20px auto 0;
  }
}

.list3 {
  display: flex;
  flex-wrap: wrap;
}
.list3.type1 {
  justify-content: center;
}
.list3.type1 li {
  width: 31%;
  margin: 1%;
  text-align: center;
  font-family: "YakuHanJP", "Noto Sans JP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, "Noto Sans JP";
  font-weight: 600;
  letter-spacing: 0.2em;
  font-size: 1.6rem;
  background: #fff;
  padding: 10px 15px;
  border-radius: 5px;
  border: 1px solid #012748;
  box-shadow: 0 0 0 4px rgba(1, 39, 72, 0.2);
}
.list3.type1 li span {
  font-family: "Barlow Condensed", serif;
  font-weight: 600;
  letter-spacing: 0.15em;
  font-size: 2.6rem;
  color: #012748;
  margin-right: 10px;
}
@media all and (max-width: 896px) {
  .list3.type1 li {
    width: 94%;
    margin: 0 auto 20px;
    text-align: left;
    font-size: 1.3rem;
    padding: 5px 10px;
    letter-spacing: 0.15em;
  }
  .list3.type1 li span {
    font-size: 2rem;
    margin-right: 5px;
  }
  .list3.type1 li:last-child {
    margin: 0 auto;
  }
}
.list3 > li {
  width: 31%;
  position: relative;
  margin: 0 3.495% 20px 0;
}
.list3 > li:nth-child(3n) {
  margin-right: 0;
}
@media all and (max-width: 639px) {
  .list3 > li {
    width: 95%;
    margin: 0 auto 30px;
  }
  .list3 > li:nth-child(3n) {
    margin-right: auto;
  }
}

.list4 {
  display: flex;
  flex-wrap: wrap;
  margin-left: -2%;
  margin-top: -30px;
}
.list4.type1 {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  justify-content: center;
}
.list4.type1 li {
  padding: 15px;
  background: rgba(22, 119, 187, 0.2);
  border-radius: 10px;
  display: block;
  transition: all 0.2s ease-in;
}
.list4.type1 li a {
  display: block;
}
.list4.type1 li a:hover {
  position: relative;
  transform: translate(0, 10px);
}
.list4.type1 li img {
  width: 60px;
  margin: 0 auto 10px;
}
@media all and (max-width: 639px) {
  .list4.type1 > li {
    width: 48%;
  }
  .list4.type1 > li img {
    width: 50px;
  }
}
.list4 li {
  margin-left: 2%;
  margin-top: 30px;
  width: 23%;
}
@media all and (max-width: 1100px) {
  .list4 li {
    width: 31.33%;
  }
}
@media all and (max-width: 639px) {
  .list4 {
    margin-left: auto;
  }
  .list4 li {
    width: 90%;
    margin: 25px auto 0;
  }
}

.prv dt {
  color: #012748;
  border-bottom: 1px solid #ccc;
  margin: 10px 0;
}

.box-arrow {
  position: relative;
}
.box-arrow:after {
  position: absolute;
  content: "";
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 0 30px 30px;
  border-color: transparent transparent transparent #ffcc33;
  z-index: 3;
}
@media all and (max-width: 639px) {
  .box-arrow:after {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    top: auto;
    bottom: -15px;
    border-width: 15px 20px 0 20px;
    border-color: #ffcc33 transparent transparent transparent;
  }
}

.caution {
  color: #012748;
  letter-spacing: 0;
  font-size: 1.4rem;
}
@media all and (max-width: 639px) {
  .caution {
    font-size: 1.1rem;
  }
}

.note {
  padding: 15px;
  background: #ffb033;
  border-radius: 5px;
}
@media all and (max-width: 639px) {
  .note {
    padding: 10px;
  }
}
.note.type1 {
  background: #fefefe;
  border: #012748 1px solid;
}
.note.type2 {
  background: #fff;
}

.note2 {
  padding: 15px;
  background: rgba(255, 176, 51, 0.1);
}
@media all and (max-width: 639px) {
  .note2 {
    padding: 10px;
  }
}

.flow-dl {
  display: flex;
  flex-wrap: wrap;
}
.flow-dl .flow-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  margin-bottom: 25px;
  padding: 10px;
  background: #f4f4f4;
}
@media all and (max-width: 639px) {
  .flow-dl .flow-inner {
    width: 100%;
    margin: 0 auto 25px;
  }
}
.flow-dl dt {
  color: #012748;
  width: 60px;
  text-align: center;
  margin-right: 20px;
  font-family: "EB Garamond", "Libre Baskerville", "Oswald", "Barlow Condensed", serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
  padding-top: 8px;
}
.flow-dl dt span {
  font-size: 3.5rem;
  display: block;
  line-height: 1;
  color: #012748;
  font-family: "EB Garamond", "Libre Baskerville", "Oswald", "Barlow Condensed", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.flow-dl dd {
  width: calc(100% - 80px);
}
.flow-dl dt:not(:last-child),
.flow-dl dd:not(:last-child) {
  margin-bottom: 20px;
}
@media all and (max-width: 639px) {
  .flow-dl dt {
    font-size: 1.3rem;
  }
  .flow-dl dt span {
    font-size: 2.2rem;
  }
}

.number {
  font-family: "EB Garamond", "Libre Baskerville", "Oswald", "Barlow Condensed", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-size: 4.5rem;
  color: #012748;
  line-height: 1;
  top: 0;
  left: 0;
  position: absolute;
}
@media all and (max-width: 639px) {
  .number {
    font-size: 2.8rem;
    top: 10px;
  }
}

.txt1 {
  font-weight: 600;
  line-height: 1.3;
}
.txt1 span {
  font-size: 4rem;
  color: #d36c70;
  font-weight: 900;
  margin-left: 15px;
  font-family: "EB Garamond", "Libre Baskerville", "Oswald", "Barlow Condensed", serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
}
.txt1 span mn {
  font-family: "YakuHanJP", "Noto Sans JP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, "Noto Sans JP";
  font-weight: 600;
  letter-spacing: 0.2em;
  margin-left: 3px;
  font-size: 2.2rem;
}
@media all and (max-width: 639px) {
  .txt1 span {
    font-size: 2.6rem;
    margin-left: 10px;
  }
  .txt1 span mn {
    font-size: 1.6rem;
  }
}

.blog-month {
  margin-bottom: 10px;
}
.blog-month ul {
  display: flex;
  flex-wrap: wrap;
}
.blog-month ul li {
  width: 49%;
  padding: 5px 0;
  margin-bottom: 5px;
  text-align: center;
  letter-spacing: 0;
  background: #333;
}
.blog-month ul li:nth-child(2n) {
  margin-left: 2%;
}
.blog-month ul li a {
  color: #fff;
  font-size: 12px;
}

#a01,
#a02,
#a03,
#a04,
#a05,
#a06,
#a07,
#a08,
#contact,
.anchor {
  display: block;
  padding-top: 100px;
  margin-top: -100px;
}

.list-center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.list-center li {
  width: 50%;
}
@media all and (max-width: 639px) {
  .list-center {
    flex-direction: column;
  }
  .list-center li {
    width: 100%;
  }
}

.faq-dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.faq-dl .faq-inner {
  margin-bottom: 20px;
  width: 48%;
  background: #fff;
}
@media all and (max-width: 639px) {
  .faq-dl .faq-inner {
    width: 90%;
    margin: 0 auto 20px;
  }
}
.faq-dl .faq-inner dt,
.faq-dl .faq-inner dd {
  position: relative;
}
.faq-dl .faq-inner dt:before,
.faq-dl .faq-inner dd:before {
  position: absolute;
  content: "";
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  left: 0;
  top: 0;
  font-family: "EB Garamond", "Libre Baskerville", "Oswald", "Barlow Condensed", serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
}
.faq-dl .faq-inner dt {
  background-image: linear-gradient(to right, #012748, #ffb033);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  padding: 10px 10px 10px 55px;
}
.faq-dl .faq-inner dt:before {
  content: "Q";
  color: #ffcc33;
  font-size: 3rem;
}
.faq-dl .faq-inner dd {
  padding: 20px 20px 20px 55px;
}
.faq-dl .faq-inner dd:before {
  content: "A";
  color: #ffcc33;
  font-size: 3rem;
}

.sns-list {
  display: flex;
}
.sns-list.center {
  justify-content: center;
  margin: 15px 0;
}
.sns-list li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 15px;
  color: #012748;
  display: block;
  background: #fefefe;
  border-radius: 100%;
  text-align: center;
  transition: all 0.2s ease-in;
  position: relative;
}
.sns-list li a:hover {
  opacity: 0.7;
}
.sns-list li a.btn-facebook {
  background: #1877f2;
}
.sns-list li a.btn-twitter {
  background: #1da1f2;
}
.sns-list li a.btn-instagram {
  overflow: hidden;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
}
.sns-list li a.btn-instagram i {
  position: relative;
  z-index: 2;
}
.sns-list li a.btn-instagram:before {
  content: "";
  position: absolute;
  /*絶対配置*/
  top: 18px;
  /*ずらす*/
  left: -10px;
  /*ずらす*/
  width: 50px;
  /*グラデーションカバーの幅*/
  height: 50px;
  /*グラデーションカバーの高さ*/
  background: radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);
  /*グラデーション②*/
}
.sns-list li:not(:last-child) {
  margin-right: 10px;
}
@media all and (max-width: 896px) {
  .sns-list li:not(:last-child) {
    margin-right: 5px;
    margin-bottom: 0;
  }
}

.name {
  width: 200px;
  margin: -20px auto 20px;
  position: relative;
  z-index: 2;
  background: #fefefe;
  color: #222;
  font-weight: 600;
  text-align: center;
  padding: 8px 6px;
  /*box-shadow: 0 0 8px rgba($brown, 0.05);*/
  line-height: 1.6;
  font-size: 1.6rem;
}
.name span {
  font-size: 1.4rem;
}
.name en {
  font-family: "EB Garamond", "Libre Baskerville", "Oswald", "Barlow Condensed", serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
  color: #ffb033;
  font-size: 1.2rem;
}

.greet {
  font-weight: 600;
  letter-spacing: 0;
  line-height: 2;
  color: #222;
}

.vertical-content {
  margin-left: 100px;
}
.vertical-content.type1 {
  margin-left: 180px;
  z-index: 2;
}
@media all and (max-width: 639px) {
  .vertical-content.type1 {
    margin-left: 0;
  }
}
@media all and (max-width: 639px) {
  .vertical-content {
    margin-left: 0;
  }
}

.box1 {
  max-width: 1000px;
  background: #fff;
  box-shadow: 8px 8px #012748;
  padding: 30px;
  margin-right: auto;
  margin-left: auto;
}
.box1.type1 {
  position: relative;
  background: #fff;
  border: 1px solid #ffb033;
}
.box1.type1:before {
  position: absolute;
  content: "";
  left: 50%;
  top: -80px;
  width: 1px;
  height: 80px;
  z-index: 2;
  background: #ffb033;
}
@media all and (max-width: 639px) {
  .box1.type1:before {
    top: -40px;
    height: 40px;
  }
}
.box1.type2 {
  max-width: 1200px;
}
.box1.type3 {
  max-width: 1200px;
  background: transparent;
  box-shadow: none;
  padding: 0 10px;
}
.box1.type3:before {
  position: absolute;
  content: "";
  left: 50%;
  top: -80px;
  width: 1px;
  height: 80px;
  z-index: 2;
  background: #012748;
}
@media all and (max-width: 639px) {
  .box1.type3:before {
    top: -40px;
    height: 40px;
  }
}
@media all and (max-width: 639px) {
  .box1 {
    box-shadow: 5px 5px #edf5f8;
    padding: 15px 12px;
    width: calc(100% - 10px);
  }
}

.pickup {
  font-family: "EB Garamond", "Libre Baskerville", "Oswald", "Barlow Condensed", serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
  color: #012748;
}

.flow-list {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.flow-list.type1 {
  display: block;
}
.flow-list.type1 > li {
  width: 100%;
}
.flow-list.type1 > li .flow-title {
  margin-bottom: 10px;
}
.flow-list > li {
  width: 48%;
  margin-right: 4%;
  margin-bottom: 35px;
  align-items: center;
  padding: 25px;
  display: flex;
  flex-wrap: wrap;
  background: #fefefe;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(34, 34, 34, 0.05);
}
.flow-list > li.type100 {
  flex-basis: 100%;
  margin-right: 0;
}
.flow-list > li:nth-child(2n) {
  margin-right: 0;
}
@media all and (max-width: 639px) {
  .flow-list > li {
    width: 90%;
    margin: 0 auto 30px;
  }
  .flow-list > li:nth-child(2n) {
    margin-right: auto;
  }
}
.flow-list > li .flow-num {
  color: #012748;
  font-size: 3.4rem;
  align-self: center;
  line-height: 1.2;
  font-family: "EB Garamond", "Libre Baskerville", "Oswald", "Barlow Condensed", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.flow-list > li .flow-num span {
  font-size: 1.4rem;
  display: block;
  text-align: center;
}
.flow-list > li .txt {
  flex: 1;
  margin-left: 35px;
}
.flow-list > li .flow-title {
  color: #222;
  padding: 5px;
  border-bottom: solid #012748 1px;
  border-top: solid #012748 1px;
  font-family: "YakuHanJP", "Noto Sans JP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, "Noto Sans JP";
  font-weight: 600;
  letter-spacing: 0.2em;
  margin-bottom: 15px;
  font-size: 1.6rem;
}
@media all and (max-width: 639px) {
  .flow-list > li {
    flex-direction: column;
  }
  .flow-list > li .flow-num {
    font-size: 2.2rem;
    text-align: center;
  }
  .flow-list > li .flow-num span {
    display: inline;
    margin-right: 5px;
  }
  .flow-list > li .flow-title {
    font-size: 1.4rem;
  }
  .flow-list > li .txt {
    margin: 20px auto 0;
  }
}

.price-dl dt {
  background: #fffcda;
  padding: 14px 20px;
  color: #222;
  border-top: 1px solid #ffb033;
  border-bottom: 1px solid #ffb033;
}
.price-dl dd {
  padding: 20px;
  margin-bottom: 25px;
}

.kiritori {
  height: 1px;
  border-top: 1px dashed #aaa;
  margin: 20px auto 30px;
  width: 100%;
  display: block;
}

.column2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.column2.tp {
  align-items: flex-start;
}
.column2 .child0 {
  width: 49.5%;
}
.column2 .child {
  width: 48%;
}
.column2 .child2 {
  width: 45%;
}
.column2 .child3 {
  width: 52%;
}
.column2 .child4 {
  width: 32%;
}
.column2 .child4 .inner {
  padding: 10px 5px;
}
.column2 .child5 {
  width: 64%;
}
@media all and (max-width: 639px) {
  .column2 {
    flex-direction: column;
  }
  .column2 .child0,
  .column2 .child,
  .column2 .child2,
  .column2 .child3,
  .column2 .child4,
  .column2 .child5 {
    width: 100%;
  }
  .column2 .child0.column2-img,
  .column2 .child.column2-img,
  .column2 .child2.column2-img,
  .column2 .child3.column2-img,
  .column2 .child4.column2-img,
  .column2 .child5.column2-img {
    order: -1;
    margin-bottom: 30px;
  }
  .column2 .child0.rec-bnr,
  .column2 .child.rec-bnr,
  .column2 .child2.rec-bnr,
  .column2 .child3.rec-bnr,
  .column2 .child4.rec-bnr,
  .column2 .child5.rec-bnr {
    margin-top: 10px;
  }
  .column2 .child0.rec-bnr .inner,
  .column2 .child.rec-bnr .inner,
  .column2 .child2.rec-bnr .inner,
  .column2 .child3.rec-bnr .inner,
  .column2 .child4.rec-bnr .inner,
  .column2 .child5.rec-bnr .inner {
    padding: 25px 15px;
  }
  .column2 .child0.bm20,
  .column2 .child.bm20,
  .column2 .child2.bm20,
  .column2 .child3.bm20,
  .column2 .child4.bm20,
  .column2 .child5.bm20 {
    margin-bottom: 20px;
  }
  .column2 .child0.bm30,
  .column2 .child.bm30,
  .column2 .child2.bm30,
  .column2 .child3.bm30,
  .column2 .child4.bm30,
  .column2 .child5.bm30 {
    margin-bottom: 30px;
  }
}

.column3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.column3 .child {
  width: 33%;
}
.column3 .child.text-box {
  padding: 30px 20px;
}
@media all and (max-width: 639px) {
  .column3 {
    flex-direction: column;
  }
  .column3 .child {
    width: 100%;
  }
  .column3 .child.text-box {
    padding: 20px 10px;
  }
}

.top-column2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.top-column2 .child {
  width: 45%;
  padding: 20px;
  table-layout: fixed;
  word-wrap: break-word;
}
.top-column2 .child-img {
  width: 52%;
  position: relative;
}
@media all and (max-width: 639px) {
  .top-column2 {
    flex-direction: column;
  }
  .top-column2 .child {
    width: 100%;
    padding: 5px;
  }
  .top-column2 .child-img {
    width: 100%;
    order: -1;
    margin-bottom: 20px;
  }
}

/* slick
----------------------------------*/
.thumb-item {
  margin-bottom: 30px;
}
.thumb-item .items a {
  width: 100%;
  height: 320px;
  overflow: hidden;
  display: block;
  padding: 0 5px;
}
.thumb-item .items a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  transition: transform 0.3s ease-in;
}
.thumb-item .items a img:hover {
  transform: scale(1.1);
}
@media all and (max-width: 639px) {
  .thumb-item .items a {
    height: 220px;
  }
}

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

.slick-prev,
.slick-next {
  background: rgba(255, 255, 255, 0.8) !important;
  width: 35px !important;
  height: 35px !important;
  z-index: 20 !important;
  border-radius: 50% !important;
  border: 1px solid #aaa !important;
  top: 40%;
  transition: all 0.2s ease-in;
}
.slick-prev:before,
.slick-next:before {
  color: #333 !important;
}
.slick-prev:hover,
.slick-next:hover {
  background: #f4f4f4;
}

.slick-prev {
  left: 0 !important;
}

.slick-next {
  right: 0 !important;
}

.slider-item {
  width: 100%;
  max-width: 700px;
  border: 2px solid #ffb033;
  padding: 25px !important;
  background: #fff;
}

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

.gallery-block {
  position: relative;
}
.gallery-block .gallery-name {
  position: absolute;
  left: 30px;
  top: -30px;
  z-index: 2;
}
.gallery-block .gallery-name .eng {
  color: #ffb033;
}

.slide_list {
  position: relative;
  display: none;
  margin: 0 auto;
}
.slide_list.p_none li p {
  display: none;
}
.slide_list li {
  margin-right: 1%;
}
.slide_list li img {
  width: auto;
  height: 280px;
  transition: filter 0.2s ease-in;
}
.slide_list li p {
  font-size: 12px;
  text-align: center;
}
.slide_list li:hover img {
  filter: grayscale(0);
}
@media all and (max-width: 639px) {
  .slide_list li {
    margin-right: 2%;
  }
  .slide_list li img {
    height: 140px;
  }
}

.top-box {
  max-width: 1200px;
  margin: auto;
  padding-top: 50px;
  margin-bottom: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.top-box li {
  line-height: 1.5;
  padding: 25px 20px;
  position: relative;
  text-align: center;
  font-size: 1.7rem;
  letter-spacing: 0.3rem;
  width: 31%;
  background: #fff;
  box-sizing: border-box;
  border: 1px solid #ffb033;
  box-shadow: 8px 8px rgba(255, 176, 51, 0.3);
  border-radius: 5px;
}
.top-box li.lh2 {
  line-height: 3;
}
@media all and (max-width: 639px) {
  .top-box {
    max-width: initial;
    width: 90%;
    padding-top: 30px;
    margin-bottom: 30px;
  }
  .top-box li {
    width: 100%;
    margin-bottom: 15px;
    font-size: 1.3rem;
    padding: 15px 10px;
    box-shadow: 5px 5px rgba(255, 176, 51, 0.3);
  }
  .top-box li.lh2 {
    line-height: 1.5;
  }
  .top-box li:last-child {
    margin-bottom: 0;
  }
}

.top-list li {
  padding: 8px;
  font-weight: 600;
}
.top-list li:not(:last-child) {
  margin-bottom: 10px;
  border-bottom: 1px solid #222;
}
.top-list li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: 900;
  margin-right: 5px;
  color: #ffb033;
}
.top-list.type1 li:before {
  color: #1677bb;
}

.sinryou-list {
  font-size: 12px;
  letter-spacing: 0;
}

.name-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  flex-direction: row-reverse;
  font-weight: 600;
  margin: 10px auto 40px;
}
.name-box p {
  color: #000c16;
}
.name-box p span {
  display: block;
  font-size: 1.3rem;
  color: #222;
}
@media all and (max-width: 639px) {
  .name-box p span {
    font-size: 12px;
  }
}
.name-box p:first-child {
  margin-left: 30px;
}

.about-txt {
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 70px;
       column-gap: 70px;
}
@media all and (max-width: 639px) {
  .about-txt {
    -moz-column-count: inherit;
         column-count: inherit;
  }
}

.txt {
  font-size: 1.4rem;
}
@media all and (max-width: 639px) {
  .txt {
    font-size: 1.2rem;
  }
}

.top-anchor {
  display: flex;
  max-width: 800px;
  margin: 30px auto 0;
  flex-wrap: wrap;
  justify-content: space-between;
}
.top-anchor li {
  width: 31%;
}
.top-anchor li a {
  display: block;
  width: 100%;
  text-align: center;
}
.top-anchor li img {
  max-width: 80%;
  margin: 0 auto;
}
.top-anchor li .anchor-title {
  position: relative;
  margin-top: 20px;
}
.top-anchor li .anchor-title span {
  padding: 10px 0;
  font-family: "YakuHanJP", "Noto Sans JP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, "Noto Sans JP";
  font-weight: 600;
  letter-spacing: 0.2em;
  border-top: 0.9px solid #012748;
  border-bottom: 0.9px solid #012748;
  letter-spacing: 0.15em;
}
@media all and (max-width: 639px) {
  .top-anchor li .anchor-title span {
    display: block;
    font-size: 1.2rem;
    line-height: 1.3;
    padding: 6px 0;
  }
}
.top-anchor li .anchor-title:after {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  bottom: -30px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 12.5px 0 12.5px;
  border-color: #ffb033 transparent transparent transparent;
}

/* top_main
----------------------------------*/
.top_main {
  overflow: hidden;
}
.top_main .inner {
  position: relative;
  margin: 40px 0 60px;
}
.top_main .inner.type1 {
  margin: 0 auto;
}
.top_main .inner .top_main_contents {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}
.top_main .inner .top_main_contents .top_main_txt {
  position: relative;
  width: 680px;
  left: 0%;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  box-shadow: 2px 2px 10px -3px rgba(34, 34, 34, 0.2);
  padding: 35px 50px;
}
.top_main .inner .top_main_contents .top_main_img {
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 40px;
  width: 700px;
  max-width: 100%;
}
.top_main .inner .top_main_contents .top_main_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
@media all and (max-width: 896px) {
  .top_main .inner .top_main_contents .top_main_img {
    display: none;
  }
}
.top_main .inner .top_main_contents .top_main_img_small {
  display: none;
}
@media all and (max-width: 896px) {
  .top_main .inner .top_main_contents .top_main_img_small {
    display: block;
    margin-bottom: 30px;
  }
}
@media all and (max-width: 896px) {
  .top_main .inner .top_main_contents {
    max-width: 90%;
    margin: auto;
  }
  .top_main .inner .top_main_contents .top_main_txt {
    left: 0%;
    padding: 15px;
  }
}
@media all and (max-width: 639px) {
  .top_main .inner .top_main_contents {
    max-width: 95%;
  }
}

.clinic-list li {
  margin-bottom: 30px;
}
.clinic-list li a {
  display: block;
  width: 100%;
  height: 280px;
  overflow: hidden;
}
.clinic-list li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit: contain;";
}
.clinic-list li p {
  font-size: 1.4rem;
  padding: 5px;
  line-height: 1.5;
}
@media all and (max-width: 639px) {
  .clinic-list li a {
    height: 200px;
  }
  .clinic-list li a img {
    -o-object-fit: cover;
       object-fit: cover;
    font-family: "object-fit: cover;";
  }
  .clinic-list li p {
    font-size: 13px;
  }
}

.fuchi {
  text-shadow: 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff;
}

.mini {
  font-size: 90%;
  line-height: 1.5;
}

.en {
  font-family: "EB Garamond", "Libre Baskerville", "Oswald", "Barlow Condensed", serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
}

.normal {
  font-weight: normal;
}

.medical1 {
  display: flex;
  flex-wrap: wrap;
  background: #fefefe;
  position: relative;
}
.medical1:before {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background: url(../img/top-medical01.jpg) no-repeat center/cover;
}
.medical1.type1:before {
  background: url(../img/top-medical02.jpg) no-repeat center/cover;
}
.medical1.type2:before {
  background: url(../img/top-medical03.jpg) no-repeat center/cover;
}
.medical1 .left {
  padding: 80px 40px;
  width: 50%;
  align-self: center;
  position: relative;
}
.medical1 .left .inner {
  max-width: 550px;
  margin: 0 auto;
}
@media all and (max-width: 639px) {
  .medical1:before {
    width: 100%;
    height: 200px;
  }
  .medical1 .left {
    width: 100%;
    margin-top: 200px;
    padding: 30px 15px;
  }
}

.medical2-wrap {
  display: flex;
  flex-wrap: wrap;
}
.medical2-wrap .medical1 {
  width: 50%;
  background: #fff;
}
.medical2-wrap .medical1 .left {
  width: 60%;
  background: #fff;
  padding: 60px 20px;
}
@media all and (max-width: 896px) {
  .medical2-wrap .medical1:before {
    width: 100%;
    height: 240px;
  }
  .medical2-wrap .medical1 .left {
    width: 100%;
    margin-top: 240px;
    padding: 30px 15px;
  }
}
@media all and (max-width: 639px) {
  .medical2-wrap .medical1 {
    width: 100%;
  }
  .medical2-wrap .medical1:before {
    height: 180px;
  }
  .medical2-wrap .medical1 .left {
    margin-top: 180px;
    padding: 20px 15px;
  }
}

.medical3 {
  display: flex;
  flex-wrap: wrap;
}
.medical3 .child {
  width: 25%;
  background: #fffef3;
}
.medical3 .child img {
  width: 100%;
}
.medical3 .child .inner {
  position: relative;
  padding: 25px;
}
@media all and (max-width: 896px) {
  .medical3 .child {
    width: 50%;
  }
}
@media all and (max-width: 639px) {
  .medical3 {
    max-width: 90%;
    margin: 0 auto 40px;
  }
  .medical3 .child {
    width: 100%;
  }
  .medical3 .child .inner {
    padding: 20px;
  }
}

.ita {
  font-family: "EB Garamond", "Libre Baskerville", "Oswald", "Barlow Condensed", serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
  font-style: italic !important;
  text-transform: inherit !important;
  letter-spacing: 0.05em !important;
}

.tcenter_pc {
  text-align: center;
}
@media all and (max-width: 639px) {
  .tcenter_pc {
    text-align: left;
  }
}

.bg-common {
  position: relative;
}
.bg-common:before {
  position: absolute;
  content: "";
  width: 60%;
  height: 60%;
  top: 0%;
  left: 0;
  background: url(../img/bg-common1.jpg) no-repeat center top/cover;
  opacity: 0.6;
}
@media all and (max-width: 896px) {
  .bg-common:before {
    width: 80%;
    height: 40%;
  }
}
@media all and (max-width: 639px) {
  .bg-common:before {
    width: 80%;
    height: 200px;
    opacity: 0.1;
  }
}

.eng,
eng {
  font-family: "EB Garamond", "Libre Baskerville", "Oswald", "Barlow Condensed", serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
}

.TextTyping span {
  display: none;
}
.TextTyping::after {
  content: "|";
  font-weight: 100;
  animation: typinganime 0.8s ease infinite;
}
.TextTyping.af_none::after {
  display: none;
}

@keyframes typinganime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.glowAnime span {
  opacity: 0;
}

.glowAnime.glow span {
  animation: glow_anime_on 1s ease-out forwards;
}

@keyframes glow_anime_on {
  0% {
    opacity: 0;
    text-shadow: 0 0 0 #fff, 0 0 0 #fff;
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 10px #fff, 0 0 15px #fff;
  }
  99% {
    opacity: 1;
    text-shadow: 0 0 0 #fff, 0 0 0 #fff;
  }
  100% {
    opacity: 1;
    text-shadow: none;
  }
}
.js-span-text.on {
  opacity: 1;
}
.js-span-text.on span {
  display: inline-block;
  opacity: 0;
}
.js-span-text.on span:nth-child(1) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.1s forwards;
}
.js-span-text.on span:nth-child(2) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.2s forwards;
}
.js-span-text.on span:nth-child(3) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.3s forwards;
}
.js-span-text.on span:nth-child(4) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.4s forwards;
}
.js-span-text.on span:nth-child(5) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.5s forwards;
}
.js-span-text.on span:nth-child(6) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.6s forwards;
}
.js-span-text.on span:nth-child(7) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.7s forwards;
}
.js-span-text.on span:nth-child(8) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.8s forwards;
}
.js-span-text.on span:nth-child(9) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.9s forwards;
}
.js-span-text.on span:nth-child(10) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1s forwards;
}
.js-span-text.on span:nth-child(11) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.1s forwards;
}
.js-span-text.on span:nth-child(12) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.2s forwards;
}
.js-span-text.on span:nth-child(13) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.3s forwards;
}
.js-span-text.on span:nth-child(14) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.4s forwards;
}
.js-span-text.on span:nth-child(15) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.5s forwards;
}
.js-span-text.on span:nth-child(16) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.6s forwards;
}
.js-span-text.on span:nth-child(17) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.7s forwards;
}
.js-span-text.on span:nth-child(18) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.8s forwards;
}
.js-span-text.on span:nth-child(19) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.9s forwards;
}
.js-span-text.on span:nth-child(20) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2s forwards;
}
.js-span-text.on span:nth-child(21) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.1s forwards;
}
.js-span-text.on span:nth-child(22) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.2s forwards;
}
.js-span-text.on span:nth-child(23) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.3s forwards;
}
.js-span-text.on span:nth-child(24) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.4s forwards;
}
.js-span-text.on span:nth-child(25) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.5s forwards;
}
.js-span-text.on span:nth-child(26) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.6s forwards;
}
.js-span-text.on span:nth-child(27) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.7s forwards;
}
.js-span-text.on span:nth-child(28) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.8s forwards;
}
.js-span-text.on span:nth-child(29) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.9s forwards;
}
.js-span-text.on span:nth-child(30) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3s forwards;
}
.js-span-text.on span:nth-child(31) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.1s forwards;
}
.js-span-text.on span:nth-child(32) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.2s forwards;
}
.js-span-text.on span:nth-child(33) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.3s forwards;
}
.js-span-text.on span:nth-child(34) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.4s forwards;
}
.js-span-text.on span:nth-child(35) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.5s forwards;
}
.js-span-text.on span:nth-child(36) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.6s forwards;
}
.js-span-text.on span:nth-child(37) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.7s forwards;
}
.js-span-text.on span:nth-child(38) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.8s forwards;
}
.js-span-text.on span:nth-child(39) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.9s forwards;
}
.js-span-text.on span:nth-child(40) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4s forwards;
}
.js-span-text.on span:nth-child(41) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4.1s forwards;
}
.js-span-text.on span:nth-child(42) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4.2s forwards;
}
.js-span-text.on span:nth-child(43) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4.3s forwards;
}
.js-span-text.on span:nth-child(44) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4.4s forwards;
}
.js-span-text.on span:nth-child(45) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4.5s forwards;
}
.js-span-text.on span:nth-child(46) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4.6s forwards;
}
.js-span-text.on span:nth-child(47) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4.7s forwards;
}
.js-span-text.on span:nth-child(48) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4.8s forwards;
}
.js-span-text.on span:nth-child(49) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4.9s forwards;
}
.js-span-text.on span:nth-child(50) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 5s forwards;
}
.js-span-text.on span:nth-child(51) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 5.1s forwards;
}
.js-span-text.on span:nth-child(52) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 5.2s forwards;
}
.js-span-text.on span:nth-child(53) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 5.3s forwards;
}
.js-span-text.on span:nth-child(54) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 5.4s forwards;
}
.js-span-text.on span:nth-child(55) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 5.5s forwards;
}
.js-span-text.on span:nth-child(56) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 5.6s forwards;
}
.js-span-text.on span:nth-child(57) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 5.7s forwards;
}
.js-span-text.on span:nth-child(58) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 5.8s forwards;
}
.js-span-text.on span:nth-child(59) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 5.9s forwards;
}
.js-span-text.on span:nth-child(60) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 6s forwards;
}

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

spc2 {
  padding: 0.1em;
}

#btn_square {
  position: fixed;
  right: 0;
  top: 25%;
  z-index: 30;
}
#btn_square p {
  position: relative;
  text-align: center;
}
#btn_square p span {
  display: block;
  font-family: "EB Garamond", "Libre Baskerville", "Oswald", "Barlow Condensed", serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
  font-size: 1.5rem;
  color: #ffcc33;
  text-shadow: 1px 1px 0px #000, -1px 1px 0px #000, 1px -1px 0px #000, -1px -1px 0px #000, 1px 0px 0px #000, 0px 1px 0px #000, -1px 0px 0px #000, 0px -1px 0px #000;
  animation: bounce-anm 2s ease infinite;
}
#btn_square p a {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-feature-settings: "pkna";
  display: block;
  padding: 12px;
  height: 160px;
  display: block;
  border-radius: 5px 0 0 5px;
  border: 1px solid #222;
  background: #ffcc33;
  color: #222;
  text-align: center;
  font-family: "YakuHanJP", "Noto Sans JP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, "Noto Sans JP";
  font-weight: 900;
  letter-spacing: 0.2em;
  font-size: 1.8rem;
  transition: all 0.4s ease;
}
#btn_square p a i {
  margin-bottom: 5px;
  font-size: 2.2rem;
}
#btn_square p a:hover {
  background: #ffb033;
}
#btn_square p a:hover i {
  transition: all 1s;
  transform: rotate(360deg);
}
@media all and (max-width: 896px) {
  #btn_square {
    display: flex;
    width: 100%;
    top: auto;
    right: auto;
    left: 10px;
    bottom: 10px;
  }
  #btn_square p a {
    writing-mode: inherit;
    font-size: 1.4rem;
    height: auto;
    border-radius: 5px;
    padding: 10px 15px;
  }
  #btn_square p a i {
    margin-bottom: 0;
    margin-right: 5px;
    font-size: 1.8rem;
  }
}

#fixed-btn a {
  display: none;
}
@media all and (max-width: 896px) {
  #fixed-btn {
    position: fixed;
    display: flex;
    width: 100%;
    z-index: 200;
    left: 0;
    bottom: 0;
  }
  #fixed-btn a {
    position: relative;
    flex: 1 0 auto;
    display: block;
    color: #fff;
    font-size: 12px;
    font-family: "YakuHanJP", "Noto Sans JP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    letter-spacing: 0.2em;
    line-height: 1.2;
    padding: 12px 6px;
    background: linear-gradient(to right, #013561, #9c9d20);
    transition: background 0.2s ease-in;
    text-align: center;
    width: 50%;
  }
  #fixed-btn a i {
    margin-right: 5px;
  }
  #fixed-btn a:hover {
    background: #222;
  }
}

.covid-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.covid-box .left {
  width: 35%;
}
.covid-box .right {
  width: 60%;
}
@media all and (max-width: 639px) {
  .covid-box .left,
  .covid-box .right {
    width: 94%;
    margin: auto;
  }
  .covid-box .right {
    margin-top: 20px;
  }
}

.mtitles {
  margin: 0 auto 30px;
  text-align: center;
  line-height: 1.6;
  font-size: 1.7rem;
  color: #1d1d1d;
  font-family: "YakuHanJP", "Noto Sans JP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, "Noto Sans JP";
  font-weight: 700;
  letter-spacing: 0.2em;
}
.mtitles .eng {
  font-size: 2.4rem;
  display: block;
  color: #012748;
  font-family: "EB Garamond", "Libre Baskerville", "Oswald", "Barlow Condensed", serif;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.1em;
  letter-spacing: 0.05em;
}
.mtitles.sbc .eng {
  color: #ffb033;
}
@media all and (max-width: 639px) {
  .mtitles {
    margin: 0 auto 20px;
    font-size: 1.35rem;
  }
  .mtitles .eng {
    font-size: 2rem;
  }
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.feature-list > li {
  width: 49%;
  margin-bottom: 40px;
  position: relative;
}
.feature-list > li:nth-child(even) {
  transform: translateY(50px);
}
@media all and (max-width: 639px) {
  .feature-list > li:nth-child(even) {
    transform: inherit;
  }
}
.feature-list > li:nth-child(even) .feature-inner {
  background: #000c16;
}
@media all and (max-width: 896px) {
  .feature-list > li {
    margin-bottom: 40px;
  }
}
@media all and (max-width: 639px) {
  .feature-list > li {
    width: 95%;
    margin: 0 auto 25px;
  }
}
.feature-list > li .feature-inner {
  width: 100%;
  height: 100%;
  background: #012748;
  position: relative;
}
.feature-list > li figure {
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  height: 100%;
  width: 50%;
}
.feature-list > li figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  opacity: 0.4;
}
@media all and (max-width: 896px) {
  .feature-list > li figure {
    width: 100%;
    height: 100%;
  }
}
.feature-list > li .feature-list-num {
  display: block;
  position: absolute;
  font-family: "EB Garamond", "Libre Baskerville", "Oswald", "Barlow Condensed", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-size: 4.8rem;
  line-height: 1;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4), 0 0 10px rgba(0, 0, 0, 0.3);
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}
.feature-list > li .feature-list-num:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 55px;
  bottom: 0;
  right: -10px;
  background: #fff;
  transform: rotate(30deg);
}
@media all and (max-width: 639px) {
  .feature-list > li .feature-list-num:before {
    display: none;
  }
}
@media all and (max-width: 896px) {
  .feature-list > li .feature-list-num {
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
  }
}
@media all and (max-width: 639px) {
  .feature-list > li .feature-list-num {
    font-size: 2.8rem;
    top: 30px;
  }
}
.feature-list > li .feature-list-txt {
  position: relative;
  padding: 40px 25px 40px 25%;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4), 0 0 10px rgba(0, 0, 0, 0.3);
}
@media all and (max-width: 896px) {
  .feature-list > li .feature-list-txt {
    padding: 100px 20px 20px;
  }
}
@media all and (max-width: 639px) {
  .feature-list > li .feature-list-txt {
    padding: 80px 15px 20px;
  }
}
.feature-list > li .feature-list-title {
  font-family: "YakuHanJP", "Noto Sans JP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, "Noto Sans JP";
  font-weight: 600;
  letter-spacing: 0.2em;
  font-weight: 900;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4), 0 0 10px rgba(0, 0, 0, 0.3);
  font-size: 1.7rem;
  border-bottom: 1px solid #fff;
  padding-bottom: 5px;
  margin-bottom: 10px;
}
@media all and (max-width: 639px) {
  .feature-list > li .feature-list-title {
    font-size: 1.4rem;
  }
}
@media all and (max-width: 639px) {
  .feature-list {
    padding: 0 10px;
  }
}

.treat-box {
  position: relative;
  z-index: 2;
  background: rgba(254, 254, 254, 0.9);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  margin: auto;
  padding: 16px 0;
}

.mlist4 {
  width: 95%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.mlist4 li {
  width: 24%;
  margin-bottom: 40px;
}
.mlist4 li a {
  display: block;
}
.mlist4 li a:hover {
  transform: translateY(-10px);
}
.mlist4 li a:hover .treat-box {
  transition: all 0.3s ease;
}
.mlist4 li a:hover .treat-box:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: linear-gradient(135deg, #ffcc33, #012748);
  opacity: 0.2;
}
@media all and (max-width: 639px) {
  .mlist4 {
    width: 100%;
  }
  .mlist4 li {
    width: 49%;
  }
}

.list-title {
  text-align: center;
  color: #222;
  letter-spacing: 0.2em;
}
.list-title span {
  font-family: "YakuHanJP", "Noto Sans JP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, "Noto Sans JP";
  font-weight: 600;
  letter-spacing: 0.2em;
  font-size: 1.7rem;
  display: block;
}
.list-title.ls {
  letter-spacing: 0;
}
.list-title img {
  width: 70px;
  margin-bottom: 10px;
}
@media all and (max-width: 639px) {
  .list-title span {
    font-size: 1.35rem;
  }
}

.about-area {
  width: 100%;
  margin: 0 auto;
  background: url(../img/about.jpg) no-repeat top center/cover;
  height: 400px;
  position: relative;
  z-index: -1;
}
.about-area:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
}
@media all and (max-width: 639px) {
  .about-area {
    height: 200px;
  }
}

.about-box {
  max-width: 650px;
  width: 90%;
  position: relative;
  z-index: 2;
  margin: -350px auto 0;
  background: rgba(254, 254, 254, 0.8);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  padding: 40px 35px;
}
@media all and (max-width: 639px) {
  .about-box {
    margin-top: -160px;
    padding: 25px 20px;
  }
}

.deco {
  position: relative;
}
.deco:before, .deco:after {
  position: absolute;
  content: "";
  width: 50px;
  height: 100%;
  top: 0;
  opacity: 0.8;
}
@media all and (max-width: 639px) {
  .deco:before, .deco:after {
    width: 25px;
    opacity: 0.4;
  }
}
.deco:before {
  left: 0px;
  background: url(../img/deco-left.png) repeat-y center left/contain;
}
.deco:after {
  right: 0px;
  background: url(../img/deco-right.png) repeat-y center right/contain;
}
.deco .inner {
  width: calc(100% - 100px);
  margin: auto;
}
@media all and (max-width: 639px) {
  .deco .inner {
    width: calc(100% - 50px);
  }
}

.deco2 {
  position: relative;
}
.deco2:before, .deco2:after {
  content: "";
  position: absolute;
  width: 50%;
  height: 300px;
  opacity: 1;
}
@media all and (max-width: 639px) {
  .deco2:before, .deco2:after {
    width: 70%;
  }
}
.deco2:before {
  left: 0;
  top: 0;
  background: url(../img/deco01.png) no-repeat left top/contain;
}
.deco2:after {
  right: 0;
  bottom: 0;
  background: url(../img/deco02.png) no-repeat right bottom/contain;
}
.deco2 .inner {
  position: relative;
  z-index: 2;
}

.lh2 {
  line-height: 2.2;
}
@media all and (max-width: 639px) {
  .lh2 {
    line-height: 2;
  }
}

.bg-ttl {
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  font-weight: 600;
}
.bg-ttl span {
  background: #012748;
  color: #fff;
  padding: 4px 12px;
  border-radius: 5px;
}
@media all and (max-width: 639px) {
  .bg-ttl {
    font-size: 1.3rem;
  }
}

.top-greet-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
@media all and (max-width: 896px) {
  .top-greet-wrap {
    flex-direction: column;
    margin: 0;
  }
}
@media all and (max-width: 639px) {
  .top-greet-wrap {
    justify-content: center;
  }
}

.lead-box {
  padding: 30px;
  letter-spacing: 0.15em;
  line-height: 2.2;
  border: 5px solid rgba(1, 39, 72, 0.3);
  position: relative;
}
.lead-box:before, .lead-box:after {
  position: absolute;
  content: "";
  width: 60px;
  height: 1px;
  background: #333;
  transform: rotate(-45deg);
}
.lead-box:before {
  top: 15px;
  left: -33px;
}
.lead-box:after {
  bottom: 15px;
  right: -33px;
}

.top-greet-img1 {
  width: 40%;
  position: relative;
}
.top-greet-img1 img {
  width: 100%;
}
@media all and (max-width: 1100px) {
  .top-greet-img1 {
    width: 90%;
    margin: 0 auto 20px;
  }
}
@media all and (max-width: 639px) {
  .top-greet-img1 {
    width: calc(100% - 20px);
  }
}

.top-greet-lead {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-feature-settings: "pkna";
  position: absolute;
  left: 30px;
  top: 30px;
  font-family: "Barlow Condensed", serif;
  font-weight: 200;
  letter-spacing: 0.15em;
  text-transform: inherit;
  z-index: 2;
  letter-spacing: 0.1em;
  font-size: 3.6rem;
  color: #fff;
  line-height: 1;
}
@media all and (max-width: 639px) {
  .top-greet-lead {
    left: 15px;
    top: 15px;
    font-size: 1.8rem;
  }
}

.top-greet-box {
  width: 56%;
  position: relative;
}
.top-greet-box p {
  letter-spacing: 0.2em;
}
@media all and (max-width: 1100px) {
  .top-greet-box {
    width: 42%;
  }
}
@media all and (max-width: 896px) {
  .top-greet-box {
    width: 500px;
    margin: 0 auto;
    text-align: center;
  }
  .top-greet-box p {
    letter-spacing: 0.1em;
  }
}
@media all and (max-width: 639px) {
  .top-greet-box {
    padding: 0 10px;
    width: 100%;
  }
}

.greet-title {
  font-family: "EB Garamond", "Libre Baskerville", "Oswald", "Barlow Condensed", serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
  text-align: center;
  font-size: 5rem;
  letter-spacing: 0.2em;
  line-height: 1;
  margin-bottom: 30px;
  color: #012748;
}
.greet-title span {
  font-family: "YakuHanJP", "Noto Sans JP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, "Noto Sans JP";
  font-weight: 600;
  letter-spacing: 0.2em;
  font-size: 1.8rem;
  color: #1d1d1d;
}
@media all and (max-width: 639px) {
  .greet-title {
    font-size: 2.4rem;
  }
  .greet-title span {
    font-family: "YakuHanJP", "Noto Sans JP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, "Noto Sans JP";
    font-weight: 600;
    letter-spacing: 0.2em;
    font-size: 1.6rem;
  }
}

.top-greet-txt {
  width: 100%;
  margin: auto;
}
@media all and (max-width: 639px) {
  .top-greet-txt {
    width: calc(100% - 5px);
  }
}

.top-greet-img-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1500px;
  margin: 0 auto;
  padding-bottom: 50px;
  position: relative;
  z-index: 2;
}
.top-greet-img-box .img-box1 {
  width: 48%;
}
.top-greet-img-box .img-box2 {
  width: 45%;
  margin-bottom: 30px;
}
@media all and (max-width: 639px) {
  .top-greet-img-box {
    padding-bottom: 30px;
  }
}

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

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

@keyframes clip_left02 {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
  }
  100% {
    -webkit-clip-path: inset(0 0% 0 0);
    clip-path: inset(0 0% 0 0);
  }
}
/* /clip_left */
[data-aos=slidein] {
  opacity: 0;
}
[data-aos=slidein].aos-animate {
  animation-name: play;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  position: relative;
  opacity: 1 !important;
}
[data-aos=slidein].aos-animate:before {
  animation-name: maskOut;
  animation-duration: 0.5s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(109.6deg, #012748 11.2%, #012748 91.1%);
}

@keyframes play {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes maskOut {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}
.slidein_box {
  width: 100%;
  overflow: hidden;
}

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

.plant {
  width: 100px;
  margin: 0 auto 15px;
  text-align: center;
}
@media all and (max-width: 639px) {
  .plant {
    width: 80px;
  }
}

.img-wk {
  position: relative;
  width: calc(100% - 20px);
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
}
.img-wk:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 10px;
  top: 10px;
  border: 1px solid #ccc;
}
@media all and (max-width: 639px) {
  .img-wk {
    width: calc(100% - 10px);
    margin-left: 0;
    margin-right: auto;
  }
}

.btn_wk.type2 a {
  max-width: 280px;
  width: 88%;
}
.btn_wk.type-left a {
  margin-left: 0;
}
@media all and (max-width: 639px) {
  .btn_wk.type-left a {
    margin-left: auto;
  }
}
.btn_wk a {
  text-align: center;
  position: relative;
  color: #333;
  background: #fff;
  border: 1px solid #333;
  padding: 10px;
  max-width: 200px;
  width: 80%;
  margin-top: 35px;
  font-size: 95%;
  margin-bottom: 6px;
  margin-left: auto;
  margin-right: auto;
  display: table;
  transition: all 0.3s ease-in-out;
  line-height: 1.4;
}
.btn_wk a span {
  font-family: "EB Garamond", "Libre Baskerville", "Oswald", "Barlow Condensed", serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
  letter-spacing: 0.4em;
}
.btn_wk a:before, .btn_wk a:after {
  content: "";
  position: absolute;
  border: solid #333;
  width: 10px;
  height: 10px;
  transition: all 0.3s ease-in-out;
}
.btn_wk a:before {
  top: -6px;
  left: -6px;
  border-width: 1px 0 0 1px;
}
.btn_wk a:after {
  bottom: -6px;
  right: -6px;
  border-width: 0 1px 1px 0;
}
.btn_wk a:hover {
  color: #fff;
  background: #012748;
  border-color: transparent;
}
.btn_wk a:hover:before, .btn_wk a:hover:after {
  width: calc(100% + 11px);
  height: calc(100% + 11px);
  border-color: #012748;
}
.btn_wk.type1 a:hover {
  color: #fff;
  background: #ffb033;
}
.btn_wk.type1 a:hover:before, .btn_wk.type1 a:hover:after {
  border-color: #ffb033;
}
.btn_wk.btn-r a {
  margin-right: 0;
}

.btn_wk2 a {
  text-align: center;
  position: relative;
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
  padding: 10px;
  max-width: 200px;
  width: 80%;
  margin-top: 35px;
  font-size: 95%;
  margin-bottom: 6px;
  margin-left: auto;
  margin-right: auto;
  display: table;
  transition: all 0.3s ease-in-out;
  line-height: 1.4;
}
.btn_wk2 a span {
  font-family: "EB Garamond", "Libre Baskerville", "Oswald", "Barlow Condensed", serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
  letter-spacing: 0.4em;
}
.btn_wk2 a:before, .btn_wk2 a:after {
  content: "";
  position: absolute;
  border: solid #fff;
  width: 10px;
  height: 10px;
  transition: all 0.3s ease-in-out;
}
.btn_wk2 a:before {
  top: -6px;
  left: -6px;
  border-width: 1px 0 0 1px;
}
.btn_wk2 a:after {
  bottom: -6px;
  right: -6px;
  border-width: 0 1px 1px 0;
}
.btn_wk2 a:hover {
  color: #333;
  background: #fff;
  border-color: transparent;
}
.btn_wk2 a:hover:before, .btn_wk2 a:hover:after {
  width: calc(100% + 11px);
  height: calc(100% + 11px);
  border-color: #fff;
}
.btn_wk2.btn-r a {
  margin-right: 0;
}

.icon {
  margin: 0 auto 10px;
  text-align: center;
}
@media all and (max-width: 639px) {
  .icon {
    margin: 0 auto 6px;
    width: 60px;
  }
}

.map-ttl {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.map-pin {
  font-size: 1rem;
  line-height: 1.4;
  color: #012748;
  text-align: center;
  display: inline-block;
  width: 38px;
  height: 38px;
  padding: 5px;
  background-color: #d8d9d9;
  border-radius: 5px;
  margin-left: 7px;
}
.map-pin i {
  font-size: 1.6rem;
}
@media all and (max-width: 896px) {
  .map-pin i {
    font-size: 1.4rem;
  }
}

.top-merit {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.top-merit li {
  width: 32%;
  position: relative;
  margin: 0 0 40px 0;
}
.top-merit li:nth-child(odd) {
  transform: translateY(40px);
}
.top-merit li .merit-num {
  line-height: 1;
  display: block;
  position: absolute;
  text-align: center;
  font-size: 4.5rem;
  font-family: "EB Garamond", "Libre Baskerville", "Oswald", "Barlow Condensed", serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
  color: #fff;
  text-shadow: 1px 1px 0px #ffb033, -1px 1px 0px #ffb033, 1px -1px 0px #ffb033, -1px -1px 0px #ffb033, 1px 0px 0px #ffb033, 0px 1px 0px #ffb033, -1px 0px 0px #ffb033, 0px -1px 0px #ffb033;
  left: 10px;
  top: -10px;
  z-index: 3;
}
.top-merit li h2 {
  margin: 10px auto 0;
  font-size: 2.4rem;
  text-align: center;
  line-height: 1.4;
  font-family: "YakuHanJP", "Noto Sans JP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, "Noto Sans JP";
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #1677bb;
}
.top-merit li h3 {
  margin: 15px auto 10px;
  font-size: 1.8rem;
  text-align: center;
  line-height: 1.4;
  font-family: "YakuHanJP", "Noto Sans JP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, "Noto Sans JP";
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #ffa61a;
}
@media all and (max-width: 896px) {
  .top-merit {
    margin: 0 auto;
    max-width: 500px;
    width: 85%;
  }
  .top-merit li {
    width: 100%;
    margin: 0 auto 20px;
  }
  .top-merit li:nth-child(odd) {
    transform: translateY(0px);
  }
  .top-merit li:last-child {
    margin: 0 auto;
  }
  .top-merit li .merit-num {
    font-size: 3.2rem;
    top: 0px;
  }
  .top-merit li h2 {
    font-size: 1.8rem;
  }
  .top-merit li h3 {
    font-size: 1.3rem;
    letter-spacing: 0.15em;
  }
}

.marker-c2 {
  background: linear-gradient(transparent 60%, #d7e5ea 0%);
  z-index: 0;
}

.list-btn2 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.list-btn2 li {
  width: 32%;
  margin: 0 1.995% 10px 0;
  position: relative;
  box-sizing: border-box;
  display: block;
  background: rgba(22, 119, 187, 0.8);
  color: #fff;
  padding: 25px 5px;
  text-align: center;
  line-height: 1.6;
  font-size: 1.6rem;
  font-family: "YakuHanJP", "Noto Sans JP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, "Noto Sans JP";
  font-weight: 600;
  letter-spacing: 0.2em;
  overflow: hidden;
}
.list-btn2 li:nth-child(3n) {
  margin-right: 0;
}
@media all and (max-width: 639px) {
  .list-btn2 li {
    width: 90%;
    margin: 0 auto 10px;
    padding: 15px 5px;
    font-size: 1.3rem;
  }
  .list-btn2 li:last-child {
    margin: 0 auto;
  }
  .list-btn2 li:nth-child(3n) {
    margin-right: auto;
  }
}

.mask {
  position: relative;
  -webkit-clip-path: circle(1%);
          clip-path: circle(1%);
  transition: 0.6s ease-in all;
}
.mask.on {
  -webkit-clip-path: circle(120%);
          clip-path: circle(120%);
}

.title06 {
  text-align: center;
  font-size: 1.6rem;
  font-family: "YakuHanJP", "Noto Sans JP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, "Noto Sans JP";
  font-weight: 600;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}
.title06 span {
  display: block;
  max-width: 350px;
  width: 100%;
  color: #fff;
  background: #012748;
  padding: 5px 20px;
  border-radius: 20px;
  margin: auto;
}
.title06.type1 span {
  background: #ffb033;
}
@media all and (max-width: 639px) {
  .title06 {
    font-size: 1.3rem;
  }
}

/*reason-list
-----------------------------*/
.reason-list {
  display: flex;
  flex-wrap: wrap;
}
.reason-list li,
.reason-list .child {
  position: relative;
  width: 31%;
  margin: 0 3.495% 20px 0;
  background: #f2f4f7;
  padding: 20px;
  height: 100%;
  min-height: 370px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  border-radius: 5px;
}
.reason-list li:nth-child(3n),
.reason-list .child:nth-child(3n) {
  margin-right: 0;
}
.reason-list li .icon,
.reason-list .child .icon {
  margin: 0px auto 20px;
  width: 185px;
  height: 150px;
}
.reason-list li .icon.type1,
.reason-list .child .icon.type1 {
  margin: 0 auto 0;
}
.reason-list li .icon img,
.reason-list .child .icon img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.reason-list li .ttl,
.reason-list .child .ttl {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
}
.reason-list li .ttl span,
.reason-list .child .ttl span {
  font-size: 1.8rem;
  color: #012748;
}
.reason-list li .nmb,
.reason-list .child .nmb {
  position: absolute;
  top: 18px;
  left: 9px;
  font-size: 6rem;
  font-weight: 600;
  color: #ffffff;
  opacity: 0.2;
  line-height: 1;
  z-index: 7;
}
@media all and (max-width: 896px) {
  .reason-list li,
  .reason-list .child {
    width: 45%;
    margin: 0 auto 20px;
    min-height: 340px;
  }
  .reason-list li:nth-child(2n),
  .reason-list .child:nth-child(2n) {
    margin-right: 0;
  }
  .reason-list li:nth-child(3n),
  .reason-list .child:nth-child(3n) {
    margin-right: auto;
  }
  .reason-list li:nth-child(2n+2),
  .reason-list .child:nth-child(2n+2) {
    margin-right: 0;
  }
}
@media all and (max-width: 639px) {
  .reason-list li,
  .reason-list .child {
    width: 100%;
    margin: 0 auto 20px;
    min-height: auto;
  }
  .reason-list li:nth-child(2n),
  .reason-list .child:nth-child(2n) {
    margin-right: auto;
  }
  .reason-list li .icon,
  .reason-list .child .icon {
    width: 165px;
    height: 120px;
  }
}
.reason-list li.first,
.reason-list .child.first {
  box-shadow: none;
  background-color: transparent;
}

/*===作業の流れページ==============================*/
.flow_list {
  position: relative;
  z-index: 1;
}
.flow_list::before {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #ccc;
  z-index: -1;
}
.flow_list .box {
  width: 50%;
  padding: 30px;
}
.flow_list .box:last-child {
  margin-bottom: 0;
}
.flow_list .box:not(.right) {
  padding-left: 0;
}
.flow_list .box.right {
  margin-left: auto;
  padding-right: 0;
}
.flow_list .box h3 {
  position: relative;
  font-family: "YakuHanJP", "Noto Sans JP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, "Noto Sans JP";
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #222;
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 15px;
}
.flow_list .box h3 b {
  font-size: 1.6rem;
}
.flow_list .box h3 span {
  margin-right: 15px;
  font-family: "EB Garamond", "Libre Baskerville", "Oswald", "Barlow Condensed", serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #012748;
  font-size: 3rem;
}
.flow_list .box h3::before {
  position: absolute;
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #012748;
  transform: translate(50%, -50%);
  top: 50%;
  right: -30px;
}
.flow_list .box.right h3::before {
  right: auto;
  left: -30px;
  transform: translate(-50%, -50%);
}
.flow_list .box .text {
  margin-bottom: 20px;
}

@media all and (max-width: 896px) {
  .flow_list {
    margin: auto;
    width: 90%;
  }
  .flow_list::before {
    left: 0;
    transform: none;
  }
  .flow_list .box {
    width: 100%;
  }
  .flow_list .box:not(.right), .flow_list .box.right {
    padding: 20px;
    padding-right: 0;
  }
  .flow_list .box h3 {
    font-size: 1.4rem;
  }
  .flow_list .box h3 b {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
  }
  .flow_list .box h3 span {
    margin-right: 10px;
    font-size: 1.8rem;
  }
  .flow_list .box h3::before {
    width: 10px;
    height: 10px;
    transform: translate(-50%, -50%);
    left: -20px;
  }
  .flow_list .box.right h3::before {
    width: 10px;
    height: 10px;
    transform: translate(-50%, -50%);
    left: -20px;
  }
}
/*recruit-box*/
.recruit-box {
  width: 90%;
  max-width: 1200px;
  background-color: #fff;
  padding: 30px;
  margin: -100px auto 80px;
}
@media all and (max-width: 639px) {
  .recruit-box {
    margin: -80px auto 60px;
  }
}

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

.arrow {
  display: flex;
  justify-content: space-between;
}
.arrow a {
  padding: 5px;
  border: 1px solid #c7c7c7;
}
.arrow a.arrow-before, .arrow a.arrow-after {
  background: #012748;
  color: #fff;
}

.calendar-box {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
  justify-content: center;
}

.calendar {
  width: 100%;
  background: #f5f5f5;
  padding: 15px;
}
@media all and (max-width: 639px) {
  .calendar {
    width: 100%;
    padding: 5px;
  }
}
.calendar table {
  margin: 10px 0;
  line-height: 2.6;
  width: 100%;
}
.calendar table th {
  text-align: center;
  vertical-align: middle;
  background-color: #fffef3;
  padding: 5px 2px;
  font-weight: normal;
  line-height: 1.5;
  border: #4f5a3f 1px solid;
  width: 14%;
}
.calendar table th.sun {
  color: #ffb033;
}
.calendar table th.sat {
  color: #207CF2;
}
.calendar table td {
  padding-left: 2px;
  padding-right: 2px;
  background-color: #FFF;
  height: 75px;
  border: #4f5a3f 1px solid;
  width: 14%;
  line-height: 2;
  vertical-align: top;
  font-size: 12px;
}
.calendar table td .item {
  color: rgb(219, 46, 36);
  text-align: center;
}
.calendar table td.today {
  position: relative;
}
.calendar table td.today:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0px;
  left: 0%;
  z-index: 0;
  background-color: rgba(1, 39, 72, 0.1);
}
.calendar td.off {
  background: #ffeeee;
}

#calendar div.calendar:nth-child(1), #calendar div.calendar:nth-child(2) {
  float: left;
  width: 50%;
  padding: 0;
  margin: 0;
}

.calendar_head {
  padding: 0px 10px 0 10px;
  font-size: 16px;
  font-weight: bold;
  color: #555;
}

.calendar_body {
  padding: 0px 10px 10px 10px;
}
@media all and (max-width: 639px) {
  .calendar_body {
    padding: 0px 5px 10px 5px;
  }
}

/* スマホ */
@media all and (max-width: 639px) {
  #calendar div.calendar:nth-child(1), #calendar div.calendar:nth-child(2) {
    float: none;
    width: auto;
  }
  .calendar_area {
    background: #012748;
  }
  .calendar table td {
    height: 50px;
  }
  .calendar table td .item {
    font-size: 1rem;
  }
}
.calendar-off {
  color: #edc3c3;
}

/* category_tab
----------------------------------*/
.innerB {
  width: 100%;
  margin: auto;
  background: #fff;
  padding: 50px 50px;
  box-shadow: 0 6px 15px rgba(36, 37, 38, 0.04);
  box-sizing: border-box;
  border: 1px solid #eee;
}
.innerB.innerB_news {
  border-top: none;
}
.innerB.innerB_news .category_contents::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 5, 56, 0.3);
  border-radius: 10px;
  background-color: #F5F5F5;
}
.innerB.innerB_news .category_contents::-webkit-scrollbar {
  width: 6px;
  background-color: #F5F5F5;
}
.innerB.innerB_news .category_contents::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 5, 56, 0.3);
  background-color: #012748;
}
@media all and (max-width: 639px) {
  .innerB {
    padding: 30px 20px;
  }
}

.category_tab {
  position: relative;
  display: flex;
  justify-content: center;
  text-align: center;
  /*margin-bottom: 30px;*/
}
.category_tab:before {
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  content: "";
  background: #012748;
}
.category_tab li {
  position: relative;
  width: 20%;
  box-sizing: border-box;
  background: #012748;
  border-top: 3px solid #012748;
  border-right: 3px solid #012748;
  border-left: 3px solid #012748;
  color: #FFFFFF;
  padding: 20px 10px;
  cursor: pointer;
  margin-left: 20px;
  border-radius: 8px 8px 0 0;
}
.category_tab li:last-child {
  margin-right: 20px;
}
.category_tab li.active {
  background: #FFFFFF;
  color: #555;
}
.category_tab li.active:before {
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  content: "";
  background: #FFFFFF;
}
@media all and (max-width: 639px) {
  .category_tab li {
    margin-left: 2px;
    width: 24%;
    padding: 10px;
    font-size: 10px;
  }
  .category_tab li:last-child {
    margin-right: 0px;
  }
}

.panel {
  display: none;
}

/* overlay
----------------------------------*/
.overlay_image {
  position: relative;
  overflow: hidden;
  height: 400px;
  margin-bottom: 40px;
}
.overlay_image .overlay {
  position: absolute;
  overflow: hidden;
}
.overlay_image .overlay_01 {
  left: 0;
  width: 50%;
  height: 85%;
}
.overlay_image .overlay_01.type_center img {
 object-fit: cover;
 object-position: center 70%;
 width: 100%;
 height: 100%;
}
.overlay_image .overlay_02 {
  top: 15%;
  right: 0;
  width: 55%;
  height: 100%;
}
.overlay_image .overlay_02 img {
 object-fit: cover;
 object-position: center center;
 width: 100%;
 height: 100%;
}
.overlay_image .overlay_03 {
  top: 15%;
  right: 0;
  width: 55%;
  height: 100%;
}
@media all and (max-width: 896px) {
  .overlay_image {
    height: 230px;
  }
}
@media all and (max-width: 639px) {
  .overlay_image {
    height: 180px;
  }
}