@charset "UTF-8";
/* @import "_vars.scss"; */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+JP:wght@500;700&display=swap");
/* font */
/* width */
/* color */
/* mixin */
/* @include circle; */
/* @include absPosition(5px, 20px, 10px, 15px); */
/*
a{
     @include linkColor(#3cf);
}
*/
/* @include bg-gradient; */
/* header */
.slicknav_menu {
  display: none;
  /*PC時は非表示*/
}

@media screen and (max-width: 1024px) {
  .slicknav_menu {
    display: block;
    /*モバイル時は表示*/
  }
  .slicknav_menu .slicknav_nav {
    padding: 20% 0;
    display: flex;
    flex-wrap: wrap;
  }
  .slicknav_menu .slicknav_nav li {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .slicknav_menu .slicknav_nav li span {
    display: block;
    font-size: 13px;
  }
  .slicknav_menu .slicknav_nav li img {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  #menu {
    display: none;
    /*モバイル時は非表示*/
  }
}

/*ハンバーガーメニューのエフェクト*/
.slicknav_icon,
.slicknav_icon span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}

.slicknav_icon {
  position: relative;
}

.slicknav_menu .slicknav_icon-bar {
  position: absolute;
  left: 0;
}

.slicknav_icon span:nth-of-type(1) {
  top: 0;
}

.slicknav_icon span:nth-of-type(2) {
  top: 4px;
}

.slicknav_icon span:nth-of-type(3) {
  bottom: 0;
}

.slicknav_nav span.back {
  display: block;
  font-size: 12px;
  color: #777;
}

.active .slicknav_icon-bar:nth-of-type(1) {
  transform: translateY(10px) rotate(-45deg);
}

.active .slicknav_icon-bar:nth-of-type(2) {
  opacity: 0;
}

.active .slicknav_icon-bar:nth-of-type(3) {
  transform: translateY(-10px) rotate(45deg);
}

header {
  width: 100%;
  min-width: 1025px;
  z-index: 1;
}

@media screen and (max-width: 1024px) {
  header {
    min-width: inherit;
  }
}

.header_area {
  width: 95%;
  position: relative;
  margin: 0 auto;
  height: 90px;
  box-sizing: border-box;
}

@media screen and (max-width: 1024px) {
  .header_area {
    width: 100%;
    height: 80px;
  }
}

@media screen and (max-width: 480px) {
  .header_area {
    padding: 0 10px;
    height: 60px;
  }
}

.header_area .logo {
  position: absolute;
  width: 240px;
  max-width: calc(100% - 730px);
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  z-index: 999;
  margin-bottom: 0;
}

@media screen and (max-width: 1024px) {
  .header_area .logo {
    max-width: inherit;
    left: 20px;
  }
}

@media screen and (max-width: 480px) {
  .header_area .logo {
    left: 10px;
    width: 160px;
  }
}

.header_area .logo a {
  color: #000;
}

.header_area .logo span {
  color: #0342a1;
  font-size: 16px;
  position: absolute;
  bottom: 0;
  right: 34px;
  font-weight: normal;
}

@media screen and (max-width: 480px) {
  .header_area .logo span {
    font-size: 14px;
    bottom: 3px;
    right: 1px;
  }
}

nav {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}

.gnav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.gnav * {
  transition: 0.3s;
}

.gnav > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.gnav > li {
  float: left;
  box-sizing: border-box;
  position: relative;
  vertical-align: middle;
  margin-right: 20px;
  /*ドロップダウンメニュー*/
  /*ドロップダウンメニュー*/
}

.gnav > li:last-child {
  margin-right: 0;
}

.gnav > li > a {
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  display: block;
  text-align: center;
  width: 100%;
  font-size: 16px;
  line-height: 1.3;
  box-sizing: border-box;
  position: relative;
  height: 100%;
  letter-spacing: .05em;
  font-weight: 700;
}

.gnav > li > a span {
  display: block;
  font-size: 11px;
  margin-top: 2px;
  color: #666;
  font-weight: 400;
  letter-spacing: .1em;
}

.gnav > li > a.active {
  border-bottom: 4px solid #0342a1;
}

.gnav > li > a:link, .gnav > li > a:visited {
  text-decoration: none;
  color: #000000;
}

.gnav > li > a:hover {
  opacity: 1;
  text-decoration: none;
  transition: .5s;
  transform: scale(0.9);
}

.gnav > li img {
  width: 60px;
  display: block;
  margin: 0 auto;
}

.gnav > li ul {
  position: absolute;
  display: none;
  width: 100%;
  text-align: center;
  z-index: 3;
}

.gnav > li ul li {
  background: rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
  padding: 5px 5px;
}

.gnav > li ul li a {
  color: #fff;
}

.header_tel {
  position: absolute;
  top: 10px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header_tel li {
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  color: #fff;
  margin-right: 20px;
  font-size: 24px;
  font-weight: 700;
}

.header_tel li:last-child {
  margin-right: 0;
}

.header_tel .mail {
  background: #0342a1;
  box-sizing: border-box;
  padding: 3px 11px;
  font-size: 14px;
}

.header_tel .mail a {
  display: block;
}

.header_tel span {
  margin-right: 2px;
  font-weight: 500;
  font-size: 15px;
}

.header_tel a {
  color: #fff;
}

.header_tel a:hover {
  text-decoration: none;
}

.header_tel i {
  margin-right: 3px;
}

@media screen and (max-width: 1025px) {
  .header_tel {
    display: none;
  }
}

/* //header */
/* slider */
.slide_box {
  position: relative;
  overflow: hidden;
}

.slide_box .slide_txt {
  position: absolute;
  left: 3%;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 1;
  width: 60%;
}

@media screen and (max-width: 1024px) {
  .slide_box .slide_txt {
    width: 80%;
  }
}

@media screen and (max-width: 480px) {
  .slide_box .slide_txt {
    width: 90%;
  }
}

.slide_box .slick-slider.main_v {
  overflow: hidden;
  position: relative;
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .slide_box .slick-slider.main_v {
    height: 100%;
  }
}

.slide_box .slick-slider.main_v .slick-slide {
  height: calc(100vh - 90px);
}

.slide_box .slick-slider.main_v .slick-slide > img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .slide_box .slick-slider.main_v .slick-slide {
    height: 60vh;
  }
  .slide_box .slick-slider.main_v .slick-slide > img {
    bottom: inherit;
  }
}

@media screen and (max-width: 480px) {
  .slide_box .slick-slider.main_v .slick-slide {
    min-height: inherit;
  }
}

.slide_box .slick-slider.main_v.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.slide_box .slick-slider.main_v .slick-dots {
  bottom: 20px;
}

@media screen and (max-width: 767px) {
  .slide_box .slick-slider.main_v .slick-dots {
    bottom: 95px;
  }
}

.slide_02 .slick-next, .slide_02 .slick-prev, .slide_03 .slick-next, .slide_03 .slick-prev {
  z-index: 1;
}

.slide_02 .slick-next:before, .slide_02 .slick-prev:before, .slide_03 .slick-next:before, .slide_03 .slick-prev:before {
  font-size: 30px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  color: #000;
  background: #fff;
}

.slide_02 .slick-next, .slide_03 .slick-next {
  right: 0;
}

.slide_02 .slick-next:before, .slide_03 .slick-next:before {
  font-family: "Font Awesome 5 Free";
  content: '\f054';
  font-weight: 900;
  right: 0;
}

.slide_02 .slick-prev, .slide_03 .slick-prev {
  left: 0;
}

.slide_02 .slick-prev:before, .slide_03 .slick-prev:before {
  font-family: "Font Awesome 5 Free";
  content: '\f053';
  font-weight: 900;
  left: 0;
}

.slide_02 .slick-track, .slide_03 .slick-track {
  margin-left: inherit;
  margin-right: inherit;
}

@media screen and (max-width: 480px) {
  .slide_03 {
    padding-bottom: 50px;
  }
  .slide_03 .slick-next, .slide_03 .slick-prev {
    top: inherit;
    bottom: 0;
    transform: translate(0, 0);
  }
  .slide_03 .slick-next:before, .slide_03 .slick-prev:before {
    font-size: 22px;
    top: inherit;
    bottom: 0;
    transform: translate(0, 0);
  }
  .slide_03 .slick-dots {
    bottom: 0;
  }
}

/* //slider */
/* title */
.ttl.ptn_01 {
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 30px;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  position: relative;
  margin-bottom: 15px;
  letter-spacing: .1em;
  padding-bottom: 17px;
}

.ttl.ptn_01:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  height: 4px;
  width: 40px;
  background: #0342a1;
  border-radius: 10px;
}

.ttl.ptn_01.en {
  font-size: 40px;
  letter-spacing: initial;
  line-height: 1;
  text-transform: uppercase;
}

.ttl.ptn_01.white span {
  color: #ddd;
}

.ttl.ptn_01 span {
  display: block;
  font-size: 15px;
  letter-spacing: .1em;
  font-weight: 500;
  margin-top: 10px;
}

@media screen and (max-width: 480px) {
  .ttl.ptn_01 {
    font-size: 22px;
    margin-bottom: 20px;
    padding-bottom: 4px;
  }
  .ttl.ptn_01:before {
    bottom: -3px;
  }
  .ttl.ptn_01.en {
    font-size: 30px;
    line-height: 1.3;
  }
  .ttl.ptn_01 span {
    margin-bottom: 4px;
    margin-top: 0px;
  }
}

.ttl.ptn_02 {
  color: #fff;
  background: #0342a1;
  border: 1px solid #0342a1;
  font-size: 22px;
  font-weight: 700;
  position: relative;
  margin-bottom: 20px;
  line-height: 1.5;
  letter-spacing: .1em;
  padding: 1em;
  padding-left: 1.5em;
}

.ttl.ptn_02:before {
  background: #ffffff;
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 26px;
  height: 1px;
}

.ttl.ptn_02.en {
  letter-spacing: inherit;
}

.ttl.ptn_02 span {
  font-size: 16px;
  font-weight: normal;
  margin-left: 15px;
}

.ttl.ptn_02 .large {
  font-size: 2em;
  margin-left: 10px;
}

@media screen and (max-width: 767px) {
  .ttl.ptn_02 {
    font-size: 20px;
    padding: .6em;
    padding-left: 1.5em;
  }
  .ttl.ptn_02:before {
    width: 20px;
  }
  .ttl.ptn_02 span {
    font-size: 14px;
    margin-left: 0;
    display: block;
  }
}

.title_01 {
  letter-spacing: .1em;
  line-height: 1.5;
  margin-bottom: 20px;
}

.title_01 span {
  border-bottom: 1px solid;
  padding-bottom: 4px;
  padding-top: 5px;
  border-top: 1px solid;
  display: inline-block;
}

@media screen and (max-width: 480px) {
  .title_01 {
    font-size: 15px;
  }
}

.title_02 {
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3em;
  position: relative;
  margin-bottom: 1em;
  letter-spacing: .05em;
  border-bottom: 1px solid;
  padding-bottom: 6px;
}

.title_02 span {
  font-size: 1.3em;
  color: #0342a1;
  margin-left: 5px;
}

@media screen and (max-width: 480px) {
  .title_02 {
    font-size: 20px;
  }
  .title_02 span {
    line-height: 1.3;
    margin-left: 0;
  }
}

.title_03 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .1em;
  position: relative;
  line-height: 1.5;
  margin-bottom: 20px;
  padding-left: 21px;
  overflow: hidden;
}

.title_03:before {
  position: absolute;
  content: '';
  height: 5px;
  width: 15px;
  background: #0085cd;
  top: 11px;
  left: 0;
}

.title_04 {
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  text-align: center;
  letter-spacing: .05em;
  overflow: hidden;
  margin-bottom: 1em;
}

.title_04 > span {
  font-size: 30px;
  position: relative;
  display: inline-block;
}

.title_04 > span:before, .title_04 > span:after {
  content: '';
  position: absolute;
  top: 50%;
  height: 1px;
  width: 100px;
  border-top: 1px solid #000000;
}

.title_04 > span:before {
  left: -130px;
}

.title_04 > span:after {
  right: -130px;
}

.title_04 > span img {
  width: 180px;
  margin-right: 6px;
  vertical-align: text-bottom;
}

@media screen and (max-width: 767px) {
  .title_04 > span {
    font-size: 24px;
  }
  .title_04 > span:before, .title_04 > span:after {
    width: 50px;
  }
  .title_04 > span:before {
    left: -75px;
  }
  .title_04 > span:after {
    right: -75px;
  }
}

.title_05 {
  position: relative;
  margin-bottom: 20px;
  font-size: 20px;
  letter-spacing: 0.1em;
  font-weight: 700;
  border-bottom: 2px solid #eaeaea;
}

.title_05:after {
  position: absolute;
  bottom: -2px;
  left: 0;
  z-index: 2;
  content: '';
  width: 20%;
  height: 2px;
  background-color: #0342a1;
}

.title_05 span {
  margin-left: 15px;
  font-weight: normal !important;
  margin-bottom: .2em;
  font-size: .6em;
  font-size: 1.5rem;
  text-transform: uppercase;
}

@media screen and (max-width: 767px) {
  .title_05 {
    font-size: 18px;
  }
  .title_05 span {
    margin-left: 0;
    display: block;
  }
}

.title_06 {
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  color: #0342a1;
  font-size: 24px;
  margin-bottom: .5em;
  letter-spacing: .05em;
  font-weight: 800;
  line-height: 1.4;
  text-transform: capitalize;
}

.title_06.en {
  font-size: 46px;
  letter-spacing: initial;
}

.title_06.en span {
  margin-left: 1em;
  padding-left: 1em;
  letter-spacing: .1em;
}

.title_06 span {
  display: inline-block;
  font-size: 16px;
  color: #333;
  font-weight: 700;
  position: relative;
  margin-left: .5em;
  padding-left: .5em;
}

.title_06 span:before {
  content: "";
  width: 1px;
  height: 14px;
  background: #333;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -7px;
  transform: rotate(25deg);
}

@media screen and (max-width: 768px) {
  .title_06 {
    font-size: 22px;
    margin-bottom: .5em;
  }
  .title_06 span {
    margin-left: .7em;
    padding-left: .7em;
  }
  .title_06.en {
    font-size: 30px;
    margin-bottom: .5em;
  }
}

.title_07 {
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  color: #0342a1;
  font-size: 28px;
  margin-bottom: 1em;
  text-transform: uppercase;
}

.title_07 p {
  color: #565656;
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1;
  font-weight: 700;
}

.title_07 p span {
  display: inline-block;
  position: relative;
}

.title_07 p span:before {
  content: '';
  background-color: #000;
  position: absolute;
  top: 50%;
  height: 1px;
  right: -62px;
  width: 53px;
}

.title_07 h2 {
  line-height: 1.4;
  font-weight: 900;
  margin-bottom: 0;
}

@media screen and (max-width: 480px) {
  .title_07 {
    font-size: 25px;
    margin-bottom: 20px;
  }
  .title_07 p {
    margin-bottom: 5px;
  }
  .title_07 p span {
    display: inline-block;
    position: relative;
  }
  .title_07 p span:before {
    right: -48px;
    width: 40px;
  }
}

.title_08 {
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  color: #0342a1;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 1.5em;
  text-transform: uppercase;
}

.title_09 {
  color: #fff;
  font-size: 30px;
  margin-bottom: 0;
  letter-spacing: .05em;
}

@media screen and (max-width: 480px) {
  .title_09 {
    font-size: 20px;
    line-height: 1.4;
  }
}

.title_10 {
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 20px;
  letter-spacing: .1em;
}

.title_10 span {
  font-family: "Nunito Sans", "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  background: #0342a1;
  color: #fff;
  line-height: 30px;
  width: 30px;
  border-radius: 50%;
  padding: 6px;
  display: inline-block;
  text-align: center;
  font-size: 23px;
  margin-right: 10px;
}

.title_10.ptn_02 span {
  border-radius: 60px;
}

@media screen and (max-width: 767px) {
  .title_10.ptn_02 span {
    line-height: 1.4;
    font-size: 14px;
    padding: 4px 15px;
    margin-top: 1em;
  }
}

.title_11 {
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  color: #0342a1;
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  position: relative;
  line-height: 1.5em;
  padding: 10px 0;
  display: table;
  margin: auto;
  letter-spacing: 0.08rem;
}

.title_11.white {
  color: #fff;
  font-size: 18px;
  padding: 0;
}

.title_11.white:after, .title_11.white:before {
  content: "";
  width: 2px;
  height: 1.7em;
  background: #fff;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.title_11.black {
  color: #392214;
}

.title_11.black:after, .title_11.black:before {
  background: #392214;
}

@media screen and (max-width: 767px) {
  .title_11 {
    font-size: 18px;
  }
}

.title_11:after, .title_11:before {
  content: "";
  width: 2px;
  height: 1.7em;
  background: #0342a1;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.title_11:before {
  transform: skewX(-150deg);
  left: -30px;
}

@media screen and (max-width: 767px) {
  .title_11:before {
    left: -20px;
  }
}

.title_11:after {
  transform: skewX(150deg);
  right: -30px;
}

@media screen and (max-width: 767px) {
  .title_11:after {
    right: -20px;
  }
}

.ttl_check {
  line-height: 1.5;
  padding: 0.5em 0;
  font-weight: 700;
  color: #555;
}

.ttl_check:before {
  color: #0342a1;
  font-family: "Font Awesome 5 Free";
  content: "\f14a";
  font-weight: 900;
  margin-right: 5px;
}

.sec_title {
  text-align: center;
  font-weight: bold;
  font-size: 30px;
  letter-spacing: .1em;
  position: relative;
  line-height: 1em;
  padding: 20px 0;
  display: table;
  margin: 0 auto 20px;
  color: #f53131;
}

@media screen and (max-width: 767px) {
  .sec_title {
    font-size: 21px;
    margin: 0 auto;
  }
}

.sec_title:after, .sec_title:before {
  content: "";
  width: 2px;
  height: 1.7em;
  background: #333;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.sec_title:before {
  transform: skewX(-150deg);
  left: -40px;
}

@media screen and (max-width: 767px) {
  .sec_title:before {
    left: -20px;
  }
}

.sec_title:after {
  transform: skewX(150deg);
  right: -40px;
}

@media screen and (max-width: 767px) {
  .sec_title:after {
    right: -20px;
  }
}

.balloon2 {
  background: #0342a1;
  position: relative;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  margin-bottom: 20px;
  font-size: 20px;
}

@media screen and (max-width: 767px) {
  .balloon2 {
    padding: 0px 10px;
    display: block;
  }
}

.balloon2:before, .balloon2:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.balloon2:before {
  border-color: rgba(136, 183, 213, 0);
  border-top-color: #0342a1;
  border-width: 20px;
  margin-left: -20px;
}

.balloon2:after {
  border-color: rgba(136, 183, 213, 0);
  border-top-color: #0342a1;
  border-width: 15px;
  margin-left: -15px;
}

.balloon2 span {
  margin: 0;
  padding: 0;
}

.balloon2-top {
  background: #0342a1;
  position: relative;
  text-align: center;
  margin: 0 0 0.3em;
  padding: 30px 20px;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  box-sizing: border-box;
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .balloon2-top {
    font-size: 22px;
    padding: 10px;
  }
}

.balloon2-top:before {
  content: "";
  border: 32px solid transparent;
  border-top: 32px solid #0342a1;
  position: absolute;
  bottom: -64px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .balloon2-top:before {
    border: 20px solid transparent;
    border-top: 20px solid #0342a1;
    bottom: -40px;
  }
}

.balloon2-top.purple {
  background: #0085cd;
}

.balloon2-top.purple:before {
  border-top: 32px solid #0085cd;
}

@media screen and (max-width: 767px) {
  .balloon2-top.purple:before {
    border: 20px solid transparent;
    border-top: 20px solid #0085cd;
    bottom: -40px;
  }
}

.box_brackets {
  position: relative;
  padding: 15px 20px;
  box-sizing: border-box;
  display: inline-block;
}

.box_brackets:before, .box_brackets:after {
  position: absolute;
  top: 0;
  content: '';
  width: 20px;
  height: 100%;
  border-top: 3px solid #000;
  border-bottom: 3px solid #000;
  box-sizing: border-box;
}

.box_brackets:before {
  left: 0;
  border-left: 3px solid #000;
}

.box_brackets:after {
  right: 0;
  border-right: 3px solid #000;
}

@media screen and (max-width: 767px) {
  .box_brackets:before, .box_brackets:after {
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
  }
  .box_brackets:before {
    left: 0;
    border-left: 3px solid #000;
  }
  .box_brackets:after {
    right: 0;
    border-right: 3px solid #000;
  }
}

/* //title */
/* form */
.fm-text {
  border: 1px solid;
  box-sizing: border-box;
  padding: 10px;
}

.table_style03 {
  width: 100%;
  margin: 0 auto 30px;
  border-width: 0;
  width: 100%;
  font-variant-ligatures: no-common-ligatures;
}

.table_style03 td,
.table_style03 th {
  border: 1px solid #eee;
  border-width: 1px 0;
  font-size: 1.4rem;
  background-color: transparent;
  word-break: break-all;
  vertical-align: top;
  padding-right: 0;
}

.table_style03 th {
  width: 23.5%;
  padding: 1em;
  padding-left: 0;
  text-align: left;
  white-space: nowrap;
  font-weight: 600;
  letter-spacing: .2em;
  position: relative;
}

.table_style03 td {
  padding: 1em;
  padding-left: 0;
  text-align: left;
}

.table_style03 td.form_memo {
  padding-left: 1em;
  font-weight: 700;
}

@media screen and (max-width: 480px) {
  .table_style03 tr,
  .table_style03 th {
    width: 100%;
    display: block;
    box-sizing: border-box;
  }
  .table_style03 td {
    border: none;
    padding: 10px 0;
  }
  .table_style03 th {
    width: 100%;
    border-bottom: none;
    padding: 0.8em 0.5em 0;
  }
  .table_style03 th:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f0d7";
    color: #a28d5a;
    margin-right: 0.5em;
  }
}

form table th span {
  color: #e9411e;
  font-weight: 800;
}

input[type="text"] {
  border: 1px solid #ccc;
  padding: 5px;
  box-sizing: border-box;
  border-radius: 0px;
  font-size: 1.2em;
}

input[type="text"].maxlength {
  width: 100%;
  max-width: 320px;
  height: 32px;
}

textarea {
  border: 1px solid #ccc;
  padding: 5px;
  box-sizing: border-box;
  border-radius: 0px;
  font-size: 1.2em;
}

textarea.maxlength {
  width: 100% !important;
}

textarea {
  min-height: 200px;
}

input[type="date"] {
  max-width: 150px !important;
  border: 1px solid #5d5a59;
  padding: 5px;
  box-sizing: border-box;
  background-color: #fff;
}

input[type="password"] {
  border: 1px solid #5d5a59;
  padding: 5px;
  box-sizing: border-box;
}

input[type="submit"],
.content_box .form-pattern-1 .submit-btn {
  color: #fff;
  position: relative;
  z-index: 2;
  background-color: #0342a1;
  border: 2px solid #0342a1;
  font-size: 16px;
  display: block;
  width: 265px;
  text-align: center;
  font-weight: bold;
  padding: 5px 0;
  margin: 0 auto;
  box-sizing: border-box;
  transition: all .3s;
}

input[type="submit"]:link, input[type="submit"]:visited {
  color: #fff;
  text-decoration: none;
}

input[type="submit"]:hover {
  color: #fff;
  text-decoration: none;
  color: #fff;
  background-color: #fff;
  border-color: #0342a1;
  color: #0342a1 !important;
}

input[type="submit"]:hover::before, input[type="submit"]:hover::after {
  width: 0;
  background-color: #0342a1;
}

input[type="submit"]::before, input[type="submit"]::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
  top: 0;
  width: 50%;
  height: 100%;
  background-color: #0342a1;
  box-sizing: border-box;
  transition: all .3s;
}

input[type="submit"]::before {
  right: 0;
}

input[type="submit"]::after {
  left: 0;
}

select.form_select {
  overflow: hidden;
  margin-bottom: 10px;
  text-align: center;
  font-size: 1em;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
}

select.form_select::-ms-expand {
  display: none;
}

.form_select.cp_sl01 {
  position: relative;
  border: 1px solid #ccc;
  background: #ffffff;
  padding: 5px;
  color: #333;
}

.form_select.cp_sl01::before {
  position: absolute;
  top: 0.8em;
  right: 0.9em;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #666666;
  pointer-events: none;
}

/* //form */
.privacy_policy {
  font-size: 14px;
  padding: 50px;
}

.privacy_policy .item {
  font-size: 13px;
  letter-spacing: .1em;
  width: 95%;
  margin: 15px auto 15px;
  line-height: 1.5em;
}

.privacy_policy .item span {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
}

.privacy_policy .item span:before {
  content: "■";
  margin-right: 3px;
}

.content_box {
  max-width: 1200px;
  width: 90%;
  margin: auto;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  padding: 70px 0;
}

@media screen and (max-width: 767px) {
  .content_box {
    padding: 30px 0;
    width: 90%;
  }
}

.content_boxL {
  max-width: 1400px;
  width: 90%;
  margin: auto;
  box-sizing: border-box;
  position: relative;
  padding: 70px 0;
}

@media screen and (max-width: 768px) {
  .content_boxL {
    padding: 40px 0;
  }
}

@media screen and (max-width: 767px) {
  .content_boxL {
    padding: 30px 0;
  }
}

.white_box {
  position: relative;
  background: white;
  box-sizing: border-box;
  padding: 2em 1.5em 1.5em;
  overflow: hidden;
  color: #000;
}

@media screen and (max-width: 767px) {
  .white_box {
    padding: 1.5em;
  }
}

.note_block {
  box-sizing: border-box;
  padding: 20px;
  background: #fef5e5;
  border-radius: 3px;
  font-size: 14px;
}

.note_block2 {
  box-sizing: border-box;
  padding: 1em;
  border: 1px solid #aaaaaa;
  background: rgba(255, 255, 255, 0.7);
}

.box_styleB {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  justify-content: space-between;
}

.box_styleB .txt {
  width: 67%;
  text-align: justify;
}

.box_styleB .img {
  width: 30%;
}

.box_styleB .img img {
  max-width: 480px;
  width: 100%;
}

.box_styleB.ptn_02 {
  flex-direction: initial;
}

@media screen and (max-width: 768px) {
  .box_styleB {
    display: block;
  }
  .box_styleB .txt {
    width: 100%;
  }
  .box_styleB .img {
    width: 100%;
    text-align: center;
    margin: 0 auto 1em;
  }
}

.flex_box {
  display: flex;
  flex-wrap: wrap;
}

.flex_box.aline_c {
  align-items: center;
}

.flex_box.ptn_02 {
  flex-flow: row-reverse;
}

@media screen and (max-width: 768px) {
  .flex_box.ptn_02 {
    flex-flow: column;
  }
}

.flex_box.ptn_02.col_2 > li {
  margin-right: 0;
  margin-left: 4%;
}

@media screen and (max-width: 768px) {
  .flex_box.ptn_02.col_2 > li {
    margin-left: 0;
  }
}

.flex_box.ptn_02.col_2 > li:nth-child(2n) {
  margin-left: 0;
}

.flex_box.ptn_02.col_2 > div {
  margin-right: 0;
  margin-left: 4%;
}

@media screen and (max-width: 768px) {
  .flex_box.ptn_02.col_2 > div {
    margin-left: 0;
  }
}

.flex_box.ptn_02.col_2 > div:nth-child(2n) {
  margin-left: 0;
}

.col_2 > li {
  width: 48%;
  margin-right: 4%;
}

.col_2 > li:nth-child(2n) {
  margin-right: 0;
}

.col_2 > div {
  width: 48%;
  margin-right: 4%;
}

.col_2 > div:nth-child(2n) {
  margin-right: 0;
}

@media screen and (max-width: 768px) {
  .col_2 > div {
    width: 100%;
    margin-right: 0;
    margin-bottom: 2em;
  }
  .col_2 > div:nth-child(2n) {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .col_2 > li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 3em;
  }
  .col_2 > li:last-child {
    margin-bottom: 0;
  }
}

.col_3 > li {
  width: 31.333%;
  margin-right: 3%;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .col_3 > li {
    width: 100%;
    margin-right: auto;
  }
  .col_3 > li img {
    display: block;
    margin: 0 auto 20px;
  }
}

.col_3 > li:nth-child(3n) {
  margin-right: 0;
}

.col_3 > div {
  width: 31.333%;
  margin-right: 3%;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .col_3 > div {
    width: 100%;
    margin: 0 auto 20px;
  }
  .col_3 > div img {
    display: block;
    margin: 0 auto;
  }
}

.col_3 > div:nth-child(3n) {
  margin-right: 0;
}

.col_4 > li {
  width: 22.333%;
  margin-right: 3%;
  margin-bottom: 20px;
}

.col_4 > li:nth-child(4n) {
  margin-right: 0;
}

@media screen and (max-width: 768px) {
  .col_4 > li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 2em;
  }
  .col_4 > li:last-child {
    margin-bottom: 0;
  }
  .col_4 > li img {
    display: block;
    margin: 0 auto;
  }
}

.aline_c {
  align-items: center;
}

.bg_01 {
  position: relative;
}

.bg_01:before {
  background-color: #0342a1;
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 92.59259vw;
  height: 40.37037vw;
  z-index: -1;
}

/*
アニメーションボタン*/
.snip1445 {
  position: relative;
  overflow: hidden;
  min-width: 230px;
  max-width: 100%;
  height: 300px;
  width: 100%;
  text-align: center;
  font-size: 1.3rem;
  color: #FFFFFF;
  background-color: #111;
}

@media screen and (max-width: 480px) {
  .snip1445 {
    height: 160px;
  }
  .snip1445 figcaption {
    bottom: 10px;
    right: 10px;
  }
}

.snip1445 * {
  box-sizing: border-box;
  transition: all 0.55s ease;
}

.snip1445 *:before, .snip1445 *:after {
  box-sizing: border-box;
  transition: all 0.55s ease;
}

.snip1445:hover img,
.snip1445.hover img {
  zoom: 1;
  filter: alpha(opacity=50);
  -webkit-opacity: .6;
  opacity: .6;
}

.snip1445:hover figcaption:before,
.snip1445.hover figcaption:before,
.snip1445:hover figcaption:after,
.snip1445.hover figcaption:after,
.snip1445:hover figcaption div:before,
.snip1445.hover figcaption div:before,
.snip1445:hover figcaption div:after,
.snip1445.hover figcaption div:after {
  transform: translate(0, 0);
}

.snip1445:hover figcaption:before,
.snip1445.hover figcaption:before,
.snip1445:hover figcaption:after,
.snip1445.hover figcaption:after {
  transition-delay: 0.15s;
}

.snip1445 img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  backface-visibility: hidden;
  vertical-align: top;
  opacity: .9;
}

.snip1445 figcaption {
  position: absolute;
  bottom: 25px;
  right: 25px;
  padding: 10px;
}

@media screen and (max-width: 480px) {
  .snip1445 figcaption {
    bottom: 10px;
    right: 10px;
  }
}

.snip1445 figcaption:before, .snip1445 figcaption:after {
  height: 1px;
  width: 100%;
  position: absolute;
  content: '';
  background-color: #FFFFFF;
}

.snip1445 figcaption:before {
  top: 0;
  left: 0;
  transform: translateX(200%);
}

.snip1445 figcaption:after {
  bottom: 0;
  right: 0;
  transform: translateX(-300%);
}

.snip1445 figcaption div:before, .snip1445 figcaption div:after {
  width: 1px;
  height: 300px;
  position: absolute;
  content: '';
  background-color: #ffffff;
}

.snip1445 figcaption div:before {
  top: 0;
  left: 0;
  transform: translateY(200%);
}

.snip1445 figcaption div:after {
  bottom: 0;
  right: 0;
  transform: translateY(-300%);
}

.snip1445 h2,
.snip1445 h4 {
  width: 200px;
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
  color: #0342a1;
}

.snip1445 h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0;
}

.snip1445 .click {
  display: block;
  font-weight: 500;
  width: 200px;
  margin-left: auto;
  background-color: #0342a1;
  padding: 3px 10px;
  color: #fff;
  text-shadow: #fff 0 0 0;
}

.snip1445 a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.animated {
  animation-duration: 3s;
  animation-fill-mode: both;
}

@keyframes sdb {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    background: #fff;
  }
  to {
    background: none;
  }
}

.fadeIn {
  animation-name: fadeIn;
  animation-delay: 1s;
}

.fadeIn2 {
  animation-name: fadeIn;
  animation-delay: 4s;
}

.fadeOut {
  animation-name: fadeOut;
  animation-delay: 6s;
}

.btnl_s {
  max-width: 265px;
  margin: 0 auto;
  position: relative;
}

.btnl_s:before {
  content: "";
  position: absolute;
  top: 47%;
  right: 20px;
  width: 8px;
  height: 8px;
  transform: rotate(45deg) translate(0, -50%);
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  z-index: 2;
}

.btnl_s:hover:before {
  border-top: 1px solid #0085cd;
  border-right: 1px solid #0085cd;
}

.btnl_s:hover a {
  color: #fff;
  text-decoration: none;
  color: #fff;
  background-color: #fff;
  border-color: #0085cd;
  color: #0085cd !important;
}

.btnl_s:hover a::before, .btnl_s:hover a::after {
  width: 0;
  background-color: #0085cd;
}

.btnl_s a {
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  position: relative;
  background-color: #0085cd;
  border: 2px solid #0085cd;
  font-size: 14px;
  display: block;
  text-align: center;
  font-weight: bold;
  padding: 5px 0;
  box-sizing: border-box;
  transition: all .3s;
}

.btnl_s a:link, .btnl_s a:visited {
  color: #fff;
  text-decoration: none;
}

.btnl_s a::before, .btnl_s a::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
  top: 0;
  width: 50%;
  height: 100%;
  background-color: #0085cd;
  box-sizing: border-box;
  transition: all .3s;
}

.btnl_s a::before {
  right: 0;
}

.btnl_s a::after {
  left: 0;
}

.btn_round {
  position: relative;
  left: 50%;
  transform: translate(-50%, 0);
  border: 1px solid;
  text-align: center;
  display: inline-block;
  min-width: 200px;
  padding: .8em 2em .8em 1.5em;
  border-radius: 60px;
  font-weight: 700;
  box-sizing: border-box;
}

.btn_round:after {
  font-family: "Font Awesome 5 Free";
  content: '\f054';
  font-weight: 900;
  font-size: 14px;
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translate(0, -50%);
  color: #ccc;
}

.sp_contact {
  display: none;
}

@media screen and (max-width: 480px) {
  .sp_contact {
    display: block;
    height: 40px;
    display: block;
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.2) 0 0px 3px;
    background: rgba(255, 255, 255, 0.8);
    z-index: 99999;
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 0;
    backdrop-filter: blur(7px);
  }
  .sp_contact li {
    font-family: "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", monospace;
    width: 50%;
    height: 100%;
    float: left;
    padding: 0;
    margin: 0;
    display: inline;
    text-align: center;
    cursor: pointer;
    vertical-align: middle;
    line-height: 1;
  }
  .sp_contact li a {
    box-sizing: border-box;
    height: 100%;
    display: block;
    padding: 18px 0;
    font-weight: 700;
    color: #333;
    padding: 14px 0;
    font-size: 14px;
    border-left: 1px solid #ccc;
  }
  .sp_contact li:first-child a {
    border-left: none;
  }
  .sp_contact li i.fas {
    margin-right: 10px;
  }
}

.contact_area {
  background-color: #dbdbdb !important;
  text-align: center;
  box-sizing: border-box;
  padding: 2em;
}

.contact_area .wraper {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

.contact_area .wraper:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 50%;
  background-image: url(../img/contact_bg2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.contact_area .content_box {
  width: 50%;
  margin: 0;
  padding: 50px 1em;
  background: #fff;
  height: 100%;
  box-sizing: border-box;
}

.contact_area .tel {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  text-align: center;
}

.contact_area .tel span {
  font-size: 13px;
  display: block;
  font-weight: 400;
  color: #333;
}

.contact_area .info_area {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.contact_area .info_area li {
  box-sizing: border-box;
  margin-right: 20px;
  line-height: 1.2;
}

.contact_area .info_area li:last-child {
  margin-right: 0;
}

.contact_area .memo {
  font-size: 13px;
}

@media screen and (max-width: 768px) {
  .contact_area {
    padding: 1em;
  }
  .contact_area .wraper {
    padding-top: 57vw;
  }
  .contact_area .wraper:before {
    bottom: inherit;
    height: 57vw;
    width: 100%;
  }
  .contact_area .content_box {
    width: 100%;
    padding: 30px 10px;
    overflow: visible;
  }
  .contact_area .tel {
    font-size: 26px;
  }
  .contact_area .memo {
    font-size: 13px;
  }
  .contact_area .info_area {
    display: inline-block;
  }
  .contact_area .info_area li {
    font-size: 24px;
    margin-right: 0;
  }
  .contact_area .info_area li:first-child {
    margin-bottom: 10px;
  }
}

.faq_box dt {
  font-size: 18px;
  background: rgba(0, 133, 205, 0.8);
  color: #fff;
  font-weight: 700;
  box-sizing: border-box;
  padding: 1em;
  margin-top: 10px;
}

.faq_box dt:after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 10px;
  color: #fff;
}

.faq_box dt:hover {
  background: #0085cd;
}

.faq_box dd {
  display: none;
  box-sizing: border-box;
  padding: 1em;
  background: #f4f4f4;
  margin-bottom: 1em;
}

.tbl_style02 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 5px;
}

.tbl_style02 th,
.tbl_style02 td {
  padding: 10px;
  vertical-align: middle;
}

.tbl_style02 th {
  background: #0342a1;
  color: #FFFFFF;
  text-align: left;
  width: 20%;
  position: relative;
  font-weight: bold;
}

.tbl_style02 th:after {
  left: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: #fafafa;
  border-width: 10px;
  border-left-color: #0342a1;
  margin-top: -10px;
}

.tbl_style02 td {
  background: #fafafa;
  padding-left: 20px;
}

@media screen and (max-width: 767px) {
  .tbl_style02 {
    font-size: 14px;
  }
  .tbl_style02 th {
    width: 29%;
  }
}

.day_table {
  font-size: 13px;
}

.day_table li {
  position: relative;
  padding-bottom: 10px;
}

.day_table li:before {
  height: 100%;
  width: 2px;
  content: "";
  background: #dadada;
  display: block;
  position: absolute;
  left: 48px;
}

.day_table li:after {
  content: "";
  clear: both;
  display: block;
}

.day_table li.last {
  padding-bottom: 0;
}

.day_table li.last:before {
  position: inherit;
}

.day_table li .time {
  width: 100px;
  background: #dadada;
  text-align: center;
  padding: 3px 0;
  border-radius: 60px;
  display: block;
  line-height: 1.3;
  letter-spacing: initial;
  float: left;
  position: relative;
  margin-right: 5px;
}

.day_table li .time > span {
  display: block;
  font-size: 12px;
}

.day_table li .item .read {
  line-height: 1.5em;
  padding-left: 105px;
}

.day_table li .item .main_text {
  font-size: 14px;
  font-weight: 400;
}

.charge_tbl {
  width: 100%;
  height: 100%;
  border: 1px solid;
  text-align: center;
  vertical-align: middle;
  font-size: 14px;
}

.charge_tbl tr:first-child td {
  background: #f0f0f0;
}

.charge_tbl th,
.charge_tbl td {
  vertical-align: middle;
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
}

.charge_tbl th {
  background-color: #0342a1;
  line-height: 1.5;
  color: #fff;
  font-weight: 700;
  border-top: 1px solid #0342a1;
  border-left: 1px solid #0342a1;
  width: calc(100% / 7);
}

.charge_tbl th.em {
  background: #0085cd;
  border-top: #0085cd 1px solid;
  border-right: #ddd 1px solid !important;
}

.charge_tbl th:first-child {
  border-left: 1px solid #0342a1;
}

.charge_tbl th:last-child {
  border-right: 1px solid #0342a1;
}

.charge_tbl td {
  background: #fff;
}

.charge_tbl .small {
  font-size: .8em;
}

@media screen and (max-width: 768px) {
  .charge_tbl th,
  .charge_tbl td {
    padding: 5px;
  }
}

@media screen and (max-width: 480px) {
  .charge_tbl {
    font-size: 3.3vw;
  }
}

@media screen and (max-width: 768px) {
  .table_scroll {
    overflow: auto;
  }
  .table_scroll .charge_tbl {
    min-width: 770px;
  }
}

.schedule_table_wrap {
  background: #f5f5f5;
  border-radius: 6px;
  overflow: hidden;
  box-sizing: border-box;
  padding: 0 7px;
  margin-bottom: 5px;
}

.schedule_table {
  text-align: center;
  vertical-align: middle;
  font-size: 13px;
}

.schedule_table tr:nth-child(1) th {
  border: none;
}

.schedule_table th {
  line-height: 1.5;
  color: #0085cd;
  font-weight: 700;
}

.schedule_table td {
  font-size: 1.2em;
  line-height: 1.2;
}

.schedule_table td span {
  display: block;
  font-size: 12px;
  line-height: 1;
}

.schedule_table th, .schedule_table td {
  vertical-align: middle;
  border-top: 1px solid #a7a7a7;
  height: 55px;
}

.news-lb {
  line-height: 1.5;
  border-bottom: 1px solid #666;
}

.news-lb dt {
  float: left;
  width: 8em;
  padding: 10px 0;
  font-weight: bold;
}

.news-lb dd {
  padding-left: 9em;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #666;
}

.news-lb dd:last-child {
  border-bottom: 0px;
}

@media screen and (max-width: 480px) {
  .news-lb dt {
    width: 5em;
  }
  .news-lb dd {
    padding-left: 5em;
  }
}

.prof_tbl {
  width: 100%;
}

.prof_tbl tr {
  border-top: solid 1px #ccc;
  border-bottom: solid 1px #ccc;
}

.prof_tbl th {
  text-align: left;
  vertical-align: top;
  padding: 15px 0;
  padding-left: 1em;
  width: 10em;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .prof_tbl th {
    padding: 10px 0;
    padding-left: 0;
    width: 4.3em;
  }
}

.prof_tbl th span {
  font-size: 12px;
  font-weight: normal;
}

@media screen and (max-width: 767px) {
  .prof_tbl th span {
    display: block;
  }
}

.prof_tbl td {
  padding: 15px 0;
}

@media screen and (max-width: 767px) {
  .prof_tbl td {
    padding: 10px 0;
    padding-left: 1em;
  }
}

.prof_tbl .news-lb {
  margin: 0;
  border: none;
  font-size: 14px;
}

.prof_tbl .news-lb dt {
  width: 9em;
  padding: 0;
}

@media screen and (max-width: 767px) {
  .prof_tbl .news-lb dt {
    float: none;
    width: 100%;
  }
}

.prof_tbl .news-lb dd {
  padding-left: 9em;
  padding-top: 0;
  border: none;
}

@media screen and (max-width: 767px) {
  .prof_tbl .news-lb dd {
    padding: 0 0 .5em;
  }
}

.prof_tbl .news-lb dd:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.histry_tbl {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

.histry_tbl tr:nth-child(odd) {
  background-color: #EDF4F8;
}

.histry_tbl th,
.histry_tbl td {
  padding: 1em 1em;
  width: 7em;
}

.histry_tbl th {
  font-weight: 700;
  text-align: left;
}

.histry_tbl td {
  width: auto;
}

@media screen and (max-width: 767px) {
  .histry_tbl th,
  .histry_tbl td {
    padding: 0;
    display: block;
    width: 100%;
  }
  .histry_tbl tr {
    padding: 10px;
    display: block;
  }
}

.tel_contact {
  background: #f0fcfc;
  box-sizing: border-box;
  padding: 15px;
}

.news_bg {
  background: #0085cd;
  position: relative;
}

.news_box {
  overflow: auto;
  max-height: 380px;
  box-sizing: border-box;
}

.news_box a {
  color: #333;
}

.news_box dt {
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  color: #0342a1;
  float: left;
  margin-right: 10px;
  font-style: normal;
  font-weight: 800;
  box-sizing: border-box;
}

.news_box dt span {
  background: #0342a1;
  color: #fff;
  border-radius: 60px;
  margin-left: 7px;
  font-size: 11px;
  display: inline-block;
  padding: 1px 10px;
  min-width: 50px;
  text-align: center;
}

.news_box dd {
  margin-bottom: 10px;
  border-bottom: 1px solid #ddd;
  padding-left: 172px;
  padding-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .news_box dt {
    width: 100%;
    float: none;
    margin-bottom: 5px;
  }
  .news_box dd {
    padding-left: 0;
  }
}

.bg_contact {
  position: relative;
  background: #333;
}

.bg_contact .wrap {
  display: flex;
  flex-wrap: wrap;
}

.bg_contact .inner {
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.9);
}

.bg_contact .inner .tel {
  font-weight: 700;
  font-size: 20px;
}

.bg_contact .inner .tel a {
  color: #fff;
}

.concept-wrap {
  position: relative;
  padding: 50px 0;
}

@media screen and (max-width: 768px) {
  .concept-wrap {
    padding: 0;
  }
}

.concept-wrap .bg-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .concept-wrap .bg-back {
    margin: 0 auto !important;
  }
}

.concept-wrap .concept-inner {
  position: relative;
  display: table;
  margin: 0 auto;
  width: 100%;
  max-width: 1100px;
}

@media screen and (max-width: 768px) {
  .concept-wrap .concept-inner {
    width: 100%;
  }
}

.concept-wrap .figure {
  position: absolute;
  top: 0;
  right: 0;
  display: table-cell;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
  width: 74%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .concept-wrap .figure {
    width: 100%;
    position: initial;
    display: block;
    height: 0;
    padding-top: 60%;
  }
}

.concept-wrap .fig01 {
  background-image: url(../img/bg_01.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.concept-wrap .fig02 {
  background-image: url(../img/bg_02.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.concept-wrap .fig03 {
  background-image: url(../img/bg_04.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.concept-wrap .in-wrap {
  position: relative;
  float: left;
  width: 50%;
  padding: 12% 0;
}

@media screen and (max-width: 768px) {
  .concept-wrap .in-wrap {
    float: none;
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }
}

.concept-wrap .in-wrap .concept-box {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 30px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .concept-wrap .in-wrap .concept-box {
    width: 100%;
    padding: 5%;
    margin: auto;
    box-sizing: border-box;
    text-align: justify;
  }
}

.concept-wrap .in-wrap .concept-box .ttl {
  color: #0342a1;
  font-weight: 700;
  font-size: 26px;
  text-align: center;
}

.concept-wrap .read {
  font-weight: 700;
  font-size: 1.4em;
}

@media screen and (max-width: 768px) {
  .concept-wrap .read {
    font-size: 1em;
  }
}

.concept-wrap.ptn_02 .bg-back {
  left: initial;
  right: 0;
}

@media screen and (max-width: 768px) {
  .concept-wrap.ptn_02 .bg-back {
    margin: 0 auto !important;
  }
}

.concept-wrap.ptn_02 .figure {
  right: initial;
  left: 0;
}

@media screen and (max-width: 768px) {
  .concept-wrap.ptn_02 .figure {
    width: 100%;
    position: initial;
    display: block;
    height: 0;
    padding-top: 60%;
  }
}

.concept-wrap.ptn_02 .in-wrap {
  float: right;
}

@media screen and (max-width: 768px) {
  .concept-wrap.ptn_02 .in-wrap {
    float: none;
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }
}

/*
ブログページのメイン　*/
.info > .main {
  float: left;
  width: calc(100% - 300px);
  box-sizing: border-box;
  margin-right: 20px;
  background: #fff;
}

@media screen and (max-width: 768px) {
  .info > .main {
    float: none;
    width: 100%;
    padding-right: 0;
  }
}

.blog_mttl {
  font-size: 20px;
  background: #0342a1;
  box-sizing: border-box;
  padding: 10px 15px;
  line-height: 1.4;
  color: #fff;
}

.blog_box {
  width: 100%;
  position: relative;
  margin-bottom: 30px;
  box-sizing: border-box;
  padding: 0 15px;
}

.blog_box img {
  margin-bottom: 10px;
}

.blog_time:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f017";
  margin-right: 5px;
  font-weight: normal;
}

.page_links {
  padding: 0 30px;
  margin-bottom: 30px;
}

.page_links .pages {
  border-top: 1px solid #ddd;
  padding-top: 30px;
  display: table;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .page_links .pages {
    padding-top: 10px;
  }
}

.page_links .pages .page_prev a,
.page_links .pages .page_next a {
  border: 1px solid #0342a1;
  border-radius: 5px;
  padding: .5em .8em;
  background: #0342a1;
  color: #fff;
}

.page_links .pages .page_prev a:hover,
.page_links .pages .page_next a:hover {
  background: #0085cd;
  transition: .4s;
}

@media screen and (max-width: 768px) {
  .page_links .pages .page_prev a,
  .page_links .pages .page_next a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }
}

.page_links .pages .page_prev {
  float: right;
}

@media screen and (max-width: 768px) {
  .page_links .pages .page_prev {
    float: none;
    margin-bottom: 10px;
  }
}

.page_links .pages .page_next {
  float: left;
}

@media screen and (max-width: 768px) {
  .page_links .pages .page_next {
    float: none;
    margin-bottom: 10px;
  }
}

/*
ブログページのサイド　*/
.info > .side {
  float: right;
  width: 280px;
}

@media screen and (max-width: 768px) {
  .info > .side {
    float: none;
    width: 100%;
  }
}

.info > .side .blog_archive {
  box-sizing: border-box;
  padding: 10px;
  background: rgba(255, 255, 255, 0.9);
}

.info > .side .blog_archive a {
  color: #333;
}

.blog_side_list {
  position: relative;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.blog_side_list .blog_bx {
  transition: .3s ease-in-out;
  /*width: calc(100% - 0px) !important;*/
  font-size: 12px;
  margin-bottom: 10px;
  border: 1px solid rgba(0, 0, 0, 0.4);
  position: relative;
  padding: 10px 10px 10px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.9);
  color: #0342a1;
}

.blog_side_list .blog_bx a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.blog_side_list .blog_bx * {
  transition: 0.3s;
}

.blog_side_list .blog_bx .blog_bx_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.blog_side_list .blog_bx .blog_bx_flex div {
  width: calc(100% - 110px);
}

.blog_side_list .blog_bx figcaption {
  display: block;
  text-align: center;
  width: 100px;
  height: 100px;
  overflow: hidden;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  float: left;
}

.blog_side_list .blog_bx img {
  vertical-align: middle;
  height: 100px;
  width: 100%;
  object-fit: cover;
}

.blog_side_list .blog_bx .ttl {
  font-weight: bold;
  font-size: 12px;
  color: #fff;
  float: left;
  background: #C80261;
  padding: 0 15px;
  margin-bottom: 5px;
}

.blog_side_list .blog_bx p {
  line-height: 1.6em;
  font-size: 13px;
}

.blog_side_list .blog_bx .ttm {
  /*float: right;*/
  margin-bottom: 0px;
  font-size: 13px;
  font-weight: normal;
  margin-bottom: 3px;
}

.blog_side_list .blog_bx .ttm span {
  background: #0342a1;
  padding: .3em .8em;
  color: #fff;
}

.blog_side_list .blog_bx .ttm span:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f017";
  margin-right: 5px;
  font-weight: normal;
}

.blog_side_list .blog_bx .blog_ttl {
  clear: both;
  font-weight: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  color: #333;
}

/*
TOPページのブログ一覧　*/
.blog_side_list._ptn02 {
  height: inherit;
}

.blog_side_list._ptn02.slick-slider {
  overflow: inherit;
}

.blog_side_list._ptn02 .slick-track {
  margin-left: inherit;
  margin-right: inherit;
}

.blog_side_list._ptn02 .blog_bx {
  margin: 0 20px;
  padding: 0;
  border: none;
  background: none;
  color: #333;
}

.blog_side_list._ptn02 .blog_bx figcaption {
  display: block;
  width: 100%;
  height: inherit;
  float: none;
  margin-bottom: 10px;
}

.blog_side_list._ptn02 .blog_bx img {
  height: 160px;
  width: 100%;
}

.blog_side_list._ptn02 .blog_bx .blog_bx_flex div {
  width: 100%;
}

.blog_side_list .blog_bx.slick-slide {
  height: auto;
}

.blog_cms {
  display: flex;
  flex-wrap: wrap;
}

.blog_cms li {
  width: 31.333%;
  margin-bottom: 2em;
  margin-right: 3%;
}

.blog_cms li:nth-child(3n) {
  margin-right: 0;
}

.blog_cms a {
  color: #000;
  display: block;
}

.blog_cms a:hover .img img {
  transform: translate(-50%, -50%) rotate(3deg) scale(1.1);
  cursor: pointer;
  opacity: 1 !important;
  transition: .6s;
}

.blog_cms a .img_area {
  position: relative;
  overflow: hidden;
  margin-bottom: .5em;
}

.blog_cms a .img {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-top: 66.888%;
  background: #eee;
}

.blog_cms a .img img {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: .4s;
}

.blog_cms .data_area {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.2);
}

.blog_cms .day {
  position: absolute;
  right: 10px;
  bottom: 1px;
  color: #333;
}

.blog_cms .cat span {
  background: #0342a1;
  color: #fff;
  padding: 2px 9px;
  display: inline-block;
}

.blog_cms .txt_area {
  position: relative;
}

.blog_cms .ttl {
  font-weight: 700;
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .blog_cms {
    display: block;
  }
  .blog_cms li {
    width: 95%;
    margin: 0 auto 2em;
  }
  .blog_cms li:nth-child(3n) {
    margin-right: auto;
  }
}

.blog_cms3 li {
  margin: 0 15px;
}

.blog_cms3 a {
  color: #000;
  display: block;
}

.blog_cms3 a:hover .img img {
  transform: translate(-50%, -50%) rotate(3deg) scale(1.1);
  cursor: pointer;
  opacity: 1 !important;
  transition: .6s;
}

.blog_cms3 a .img_area {
  position: relative;
  overflow: hidden;
  margin-bottom: .5em;
}

.blog_cms3 a .img {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-top: 66.888%;
  background: #eee;
}

.blog_cms3 a .img img {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: .4s;
}

.blog_cms3 .data_area {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.2);
}

.blog_cms3 .day {
  position: absolute;
  right: 10px;
  bottom: 1px;
  color: #333;
}

.blog_cms3 .cat span {
  background: #0342a1;
  color: #fff;
  padding: 2px 9px;
  display: inline-block;
}

.blog_cms3 .txt_area {
  position: relative;
}

.blog_cms3 .ttl {
  font-weight: 700;
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .blog_cms3 {
    display: block;
  }
  .blog_cms3 li {
    width: 95%;
    margin: 0 auto 2em;
  }
  .blog_cms3 li:nth-child(3n) {
    margin-right: auto;
  }
}

.blog_cms2 {
  border-top: 1px solid #d4d4d4;
  overflow: auto;
  max-height: 380px;
}

.blog_cms2 li {
  width: 100%;
  border-bottom: 1px solid #d4d4d4;
  padding: 2em 0;
}

.blog_cms2 a {
  color: #000;
  display: block;
}

.blog_cms2 a:hover .img img {
  transform: translate(-50%, -50%) rotate(3deg) scale(1.1);
  cursor: pointer;
  opacity: 1 !important;
  transition: .6s;
}

.blog_cms2 a .img_area {
  position: relative;
  overflow: hidden;
  width: 17%;
  margin-right: 3%;
}

.blog_cms2 a .img {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-top: 54.888%;
  background: #eee;
}

.blog_cms2 a .img img {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: .4s;
}

.blog_cms2 .inner {
  display: flex;
  flex-wrap: wrap;
}

.blog_cms2 .data_area {
  font-size: 13px;
  margin-bottom: 1em;
}

.blog_cms2 .day {
  position: absolute;
  right: 10px;
  bottom: 1px;
  color: #333;
}

.blog_cms2 .cat span {
  background: #0342a1;
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  color: #fff;
  padding: 2px 9px;
  display: inline-block;
  font-weight: 400;
}

.blog_cms2 .txt_area {
  position: relative;
  width: 80%;
}

.blog_cms2 .ttl {
  font-weight: 700;
  line-height: 1.4;
}

@media screen and (max-width: 480px) {
  .blog_cms2 li {
    padding: 1em 0;
  }
  .blog_cms2 a .img_area {
    width: 47%;
    margin-right: 3%;
  }
  .blog_cms2 a .img {
    padding-top: 66.888%;
  }
  .blog_cms2 .txt_area {
    width: 50%;
  }
  .blog_cms2 .data_area {
    font-size: 13px;
    margin-bottom: .5em;
  }
  .blog_cms2 .ttl {
    font-size: 12px;
  }
}

.anc_btn {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.anc_btn li {
  background: #0342a1;
  vertical-align: top;
  width: 30%;
  margin-right: 2%;
  box-sizing: border-box;
  border-radius: 4px;
  margin-bottom: 1em;
}

.anc_btn li:nth-child(3n), .anc_btn li:last-child {
  margin-right: 0;
}

.anc_btn li a {
  color: #fff;
  font-weight: 900;
  display: block;
  text-align: center;
  font-size: inherit;
  letter-spacing: .06em;
  padding: 20px 0 25px;
  box-sizing: border-box;
  position: relative;
  line-height: 1.5;
}

.anc_btn li a:after {
  content: '\f107';
  position: absolute;
  font-family: "Font Awesome 5 Free";
  bottom: 5px;
  left: 50%;
  margin-left: -6px;
}

.anc_btn li a span {
  display: block;
  font-size: 0.7em;
  font-weight: normal;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .anc_btn li {
    width: 49%;
    margin-right: 2%;
    box-sizing: border-box;
    margin-bottom: 1em;
    font-size: 13px;
  }
  .anc_btn li:nth-child(3n) {
    margin-right: 2%;
  }
  .anc_btn li:nth-child(2n) {
    margin-right: 0;
  }
}

.circle {
  width: 100%;
  display: block;
  border-radius: 50%;
}

.border_top {
  border-top: 2px solid #eaeaea;
}

.top_gallery li {
  overflow: hidden;
  margin: 0 5px;
}

.top_gallery li a {
  display: block;
  position: relative;
  padding-bottom: 77.25%;
  height: 0;
  overflow: hidden;
  background: #fff;
}

.top_gallery li img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  height: 100%;
}

.top_gallery li p {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -1px;
}

.facility_photo li {
  position: relative;
  box-sizing: border-box;
  margin: 0 10px;
  text-align: center;
}

.facility_photo a {
  display: block;
  padding-bottom: 80.25%;
  height: 0;
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}

.facility_photo img {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  min-width: 100%;
  height: 100%;
  object-fit: cover;
}

.facility_photo p {
  text-align: center;
  line-height: 1.5;
  color: #0342a1;
  font-weight: 700;
  letter-spacing: .1em;
}

.facility_photo2 {
  display: flex;
  flex-wrap: wrap;
}

.facility_photo2 li {
  width: calc(92%/4);
  box-sizing: border-box;
  margin: 1%;
  text-align: center;
}

.facility_photo2 a {
  display: block;
  padding-bottom: 80.25%;
  height: 0;
  position: relative;
  overflow: hidden;
}

.facility_photo2 img {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  min-width: 100%;
  height: 100%;
  object-fit: cover;
}

.facility_photo2 p {
  text-align: center;
  line-height: 1.5;
  color: #0342a1;
  font-weight: 700;
  letter-spacing: .1em;
}

@media screen and (max-width: 767px) {
  .facility_photo2 li {
    width: calc(92%/2);
    margin: 2%;
  }
}

.check_box {
  display: flex;
  flex-wrap: wrap;
}

.check_box li {
  background: #0085cd;
  margin-bottom: 1%;
  padding: .2em .5em;
  margin-right: 1%;
  box-sizing: border-box;
  position: relative;
  color: #fff;
  letter-spacing: .1em;
  border-radius: 2px;
}

@media screen and (max-width: 480px) {
  .check_box li {
    padding: 4px 8px;
    font-size: 13px;
    text-align: center;
    font-weight: 700;
  }
}

.faq_list dt {
  position: relative;
  padding-left: 3em;
  padding-top: 5px;
  min-height: 35px;
  font-size: 17px;
  margin-bottom: .5em;
  font-weight: 700;
}

.faq_list dt:before {
  content: 'Q';
  position: absolute;
  left: 0;
  top: 0;
  background: #db1126;
  color: #fff;
  display: inline-block;
  width: 37px;
  line-height: 37px;
  text-align: center;
}

.faq_list dd {
  position: relative;
  padding-left: 3.6em;
  padding-top: 5px;
  min-height: 35px;
  padding-bottom: 1em;
  margin-bottom: 1em;
  border-bottom: 1px solid #ccc;
}

.faq_list dd:before {
  content: 'A';
  position: absolute;
  left: 0;
  top: 0;
  background: #ddd;
  display: inline-block;
  text-align: center;
  width: 37px;
  line-height: 37px;
}

.lead_txt {
  letter-spacing: .1em;
  line-height: 2;
}

.lead_txt2 {
  letter-spacing: .1em;
  line-height: 2;
}

@media screen and (max-width: 480px) {
  .lead_txt2 {
    letter-spacing: .05em;
    line-height: 1.7;
  }
}

.serif {
  font-family: serif;
}

.white_box2 {
  position: relative;
  background: #fff;
  box-sizing: border-box;
  padding: 5em;
  box-shadow: 0 8px 20px rgba(44, 76, 81, 0.3);
}

@media screen and (max-width: 768px) {
  .white_box2 {
    padding: 3em;
  }
}

@media screen and (max-width: 480px) {
  .white_box2 {
    padding: 1.5em;
  }
}

.map_box {
  position: relative;
  height: 0;
  padding-top: 30vw;
}

.map_box iframe {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

@media screen and (max-width: 480px) {
  .map_box {
    padding-top: 85%;
  }
}

.gallery_cont {
  margin: auto;
  padding-top: 1.5em;
  position: relative;
}

.gallery_cont .title_06 {
  position: absolute;
  z-index: 2;
  top: 0;
  background: rgba(3, 66, 161, 0.8);
  color: #fff;
  box-sizing: border-box;
  padding: 1px 5px;
}

@media screen and (max-width: 480px) {
  .gallery_cont {
    padding-top: 2.5em;
  }
}

.service_box {
  background: #fff;
  width: 90%;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 3em;
}

.service_box > li {
  padding-bottom: 2em;
  margin-bottom: 2em;
  border-bottom: 2px solid #eaeef1;
}

.service_box > li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

@media screen and (max-width: 768px) {
  .service_box {
    padding: 1em;
  }
  .service_box > li {
    padding-bottom: 1em;
    margin-bottom: 1em;
  }
}

.bg_top1 {
  position: relative;
  background-color: rgba(255, 255, 255, 0.2);
}

.bg_top1:before {
  background-image: url(../img/top_bg1.jpg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

.bg_top1 .inner {
  background: rgba(255, 255, 255, 0.8);
  box-sizing: border-box;
  padding: 5em;
  width: 50%;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .bg_top1 {
    padding-top: 23em;
  }
  .bg_top1 .inner {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .bg_top1 {
    margin-top: 0;
    padding-top: 50vw;
  }
  .bg_top1:before {
    height: 70vw;
  }
  .bg_top1:after {
    position: absolute;
    content: '';
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    background-color: #e8eef1;
    z-index: -2;
  }
  .bg_top1 .inner {
    padding: 6vw;
  }
}

.item_boxA {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.item_boxA li {
  width: 31.33%;
  position: relative;
  margin-right: 3%;
  margin-bottom: 3%;
  box-sizing: border-box;
  padding: 0;
  overflow: hidden;
  background: #fff;
}

.item_boxA li:nth-child(3n), .item_boxA li:last-child {
  margin-right: 0;
}

.item_boxA li:hover .img_area > img {
  transform: translate(-50%, -50%) scale(1.1);
}

.item_boxA li:hover:after {
  background: #0085cd;
}

.item_boxA .img_area {
  width: 100%;
  height: 0;
  padding-top: 64%;
  position: relative;
  overflow: hidden;
}

.item_boxA .img_area img {
  object-fit: cover;
  height: 100%;
  object-position: bottom;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: .8s;
}

.item_boxA .txt_area {
  width: 100%;
  padding: 1.5em;
  box-sizing: border-box;
}

.item_boxA .ttl {
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  color: #0342a1;
  font-size: 18px;
  font-weight: 800;
  border-bottom: 1px solid;
  padding-bottom: 5px;
}

.item_boxA .txt {
  font-size: 14px;
  letter-spacing: .1em;
}

.item_boxA a {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
}

@media screen and (max-width: 480px) {
  .item_boxA li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 1em;
  }
  .item_boxA .txt_area {
    padding: 1em;
    padding-right: 1.5em;
  }
  .item_boxA .txt {
    letter-spacing: inherit;
    line-height: 1.5;
  }
}

.intro_ttl {
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  color: #0342a1;
  font-size: 30px;
  letter-spacing: .05em;
  line-height: 1.7;
  margin-bottom: 1em;
}

@media screen and (max-width: 480px) {
  .intro_ttl {
    font-size: 6.5vw;
  }
}

.box_styleA .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 40px 10px;
}

.box_styleA .txt, .box_styleA .img {
  width: 46%;
}

.box_styleA .txt {
  box-sizing: border-box;
  padding: 6em 0 0;
}

.box_styleA .txt p {
  letter-spacing: .05em;
  line-height: 2;
  text-align: justify;
}

.box_styleA .img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .box_styleA .inner {
    display: block;
  }
  .box_styleA .txt, .box_styleA .img {
    width: 100%;
  }
  .box_styleA .txt {
    padding: 0 0 2em;
  }
  .box_styleA .txt p {
    line-height: 1.8;
  }
  .box_styleA br.pc {
    display: none !important;
  }
}

@media screen and (max-width: 480px) {
  .box_styleA .inner {
    padding: 10px 0;
  }
}
/*# sourceMappingURL=contents.css.map */