@charset "UTF-8";
/* @import "_vars.scss"; */
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,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: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
        .slicknav_menu .slicknav_nav li {
          width: 100%;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center; }
          .slicknav_menu .slicknav_nav li span {
            display: block;
            font-size: 13px; }
          .slicknav_menu .slicknav_nav li img {
            display: none; }
      .slicknav_menu .header_sns {
        margin-left: 10px;
        margin-left: 0; }
        .slicknav_menu .header_sns > a {
          width: 40px;
          padding: 7px;
          -webkit-box-flex: 0;
          -ms-flex: 0 0 50px;
          flex: 0 0 50px; }
          .slicknav_menu .header_sns > a > img {
            vertical-align: middle; } }

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

/*ハンバーガーメニューのエフェクト*/
.slicknav_icon,
.slicknav_icon span {
  display: inline-block;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  -webkit-box-sizing: border-box;
  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) {
  -webkit-transform: translateY(10px) rotate(-45deg);
  -ms-transform: translateY(10px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg); }

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

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

header {
  position: absolute;
  z-index: 1;
  margin: 0 auto;
  width: 100%;
  /* background: #fff; */
  border-top: 7px solid #102d88; }
  @media screen and (max-width: 767px) {
    header {
      position: inherit;
      margin-top: 0; } }
  header .inner {
    width: 95%;
    min-width: 1000px;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    height: 125px; }
    @media screen and (max-width: 1024px) {
      header .inner {
        width: calc(100% - 40px);
        min-width: inherit; } }
    @media screen and (max-width: 480px) {
      header .inner {
        width: 100%; } }

.header_area {
  width: 95%;
  position: relative;
  margin: 0 auto;
  height: 125px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }
  @media screen and (max-width: 1024px) {
    .header_area {
      height: 96px; } }
  @media screen and (max-width: 767px) {
    .header_area {
      padding: 0 10px;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      width: 100%;
      height: 100%; } }
  .header_area .logo {
    position: absolute;
    width: 200px;
    top: 30px;
    z-index: 999; }
    @media screen and (max-width: 1024px) {
      .header_area .logo {
        width: 140px; } }
    @media screen and (max-width: 767px) {
      .header_area .logo {
        width: 95px;
        top: 7px; } }
    .header_area .logo a {
      color: #000; }
    .header_area .logo span {
      color: #102d88;
      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_area {
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  height: 35px; }
  @media screen and (max-width: 1024px) {
    .nav_area {
      display: none; } }

nav {
  position: absolute;
  top: 50px;
  right: 0; }

.gnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end; }
  .gnav * {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s; }
  .gnav > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
  .gnav > li {
    float: left;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    vertical-align: middle;
    /*ドロップダウンメニュー*/
    /*ドロップダウンメニュー*/ }
    .gnav > li:before {
      content: '';
      position: absolute;
      height: 16px;
      width: 1px;
      background: #fff;
      top: 50%;
      -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
      transform: translate(0, -50%); }
    .gnav > li:last-child:after {
      content: '';
      position: absolute;
      height: 30px;
      width: 1px;
      background: #fff;
      top: 50%;
      right: 0;
      -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
      transform: translate(0, -50%); }
    .gnav > li > a {
      display: block;
      text-align: center;
      width: 100%;
      font-size: 14px;
      line-height: 1.3;
      font-weight: 700;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      position: relative;
      height: 100%;
      padding: 0 15px; }
      .gnav > li > a span {
        display: block;
        font-size: 12px;
        margin-top: 4px; }
      .gnav > li > a.active {
        border-bottom: 4px solid #102d88; }
      .gnav > li > a:link, .gnav > li > a:visited {
        text-decoration: none;
        color: #fff; }
      .gnav > li > a:hover {
        opacity: 1;
        text-decoration: none;
        -webkit-transition: .5s;
        -o-transition: .5s;
        transition: .5s;
        color: #102d88; }
    .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);
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding: 5px 5px; }
        .gnav > li ul li a {
          color: #fff; }
  .gnav .header_sns {
    margin-left: 10px; }
    @media screen and (max-width: 1024px) {
      .gnav .header_sns {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center; } }
    .gnav .header_sns > a {
      width: 40px;
      padding: 7px; }
      @media screen and (max-width: 1024px) {
        .gnav .header_sns > a {
          -webkit-box-flex: 0;
          -ms-flex: 0 0 50px;
          flex: 0 0 50px; } }
      .gnav .header_sns > a:hover {
        opacity: 1;
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
        border-bottom: none;
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s; }

.tel_top a {
  background-color: #102d88;
  border: 3px solid #102d88;
  display: block;
  border-radius: 7px;
  overflow: hidden;
  font-weight: 700;
  position: absolute;
  right: 0;
  top: 10px;
  text-align: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: .6em 1em;
  letter-spacing: initial;
  color: #fff;
  line-height: 1; }
  .tel_top a:hover {
    background-color: #fff;
    color: #102d88; }

.tel_top .ttl {
  background: #102d88;
  color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 1px 10px;
  font-size: 14px; }

.tel_top .tel {
  font-size: 21px;
  font-weight: 900; }

.tel_top .mail {
  font-size: 14px;
  line-height: 1;
  margin-bottom: 8px; }

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

.tlbtn {
  margin-top: 25px;
  width: 220px;
  font-size: 1.5rem;
  font-weight: normal;
  float: left;
  margin-left: 10px;
  text-align: center;
  float: left; }
  @media screen and (max-width: 1024px) {
    .tlbtn {
      margin-top: 16px; } }
  .tlbtn a {
    text-align: center;
    border-radius: 5px;
    width: 100%;
    display: block;
    padding: 3px 0px;
    font-weight: normal;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -ms-transition: 0.2s;
    transition: 0.2s;
    background: #fff;
    border: 1px solid #102d88; }
    .tlbtn a:link {
      color: #102d88;
      text-decoration: none; }
    .tlbtn a:visited {
      color: #102d88; }
    .tlbtn a:hover {
      text-decoration: none;
      opacity: 0.3; }
    .tlbtn a:before {
      font-family: 'Font Awesome 5 Free';
      content: "\f098";
      margin-right: 5px; }

.mlbtn {
  margin-top: 25px;
  width: 220px;
  font-size: 1.5rem;
  font-weight: normal;
  float: left;
  margin-left: 10px;
  text-align: center;
  float: left;
  margin-left: 10px; }
  @media screen and (max-width: 1024px) {
    .mlbtn {
      margin-top: 16px; } }
  .mlbtn a {
    text-align: center;
    width: 100%;
    display: block;
    padding: 3px 0px;
    font-weight: normal;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -ms-transition: 0.2s;
    transition: 0.2s;
    background: #102d88;
    border: 1px solid #102d88; }
    .mlbtn a:first-child {
      margin-bottom: 5px; }
    .mlbtn a:link {
      color: #fff;
      text-decoration: none; }
    .mlbtn a:visited {
      color: #fff; }
    .mlbtn a:hover {
      text-decoration: none;
      opacity: 0.3;
      color: #fff; }

/* //header */
/* slider */
.slide_box {
  position: relative;
  overflow: hidden; }
  .slide_box .slide_txt {
    position: absolute;
    text-align: center;
    color: #fff;
    font-size: 30px;
    z-index: 1;
    top: 50%;
    left: 0;
    width: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%); }
    .slide_box .slide_txt.ptn_01 {
      right: 5%;
      left: initial;
      max-width: 600px; }
    .slide_box .slide_txt.ptn_02 {
      left: 7%;
      width: 34%;
      bottom: 3%;
      max-width: 60rem; }
    .slide_box .slide_txt.ptn_03 {
      left: 50%;
      max-width: 80rem;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }
    @media screen and (max-width: 768px) {
      .slide_box .slide_txt {
        max-width: 700px; } }
    @media screen and (max-width: 767px) {
      .slide_box .slide_txt {
        width: 90%;
        max-width: initial; }
        .slide_box .slide_txt.ptn_01 {
          left: 50%;
          max-width: 80%;
          -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); }
        .slide_box .slide_txt.ptn_02 {
          left: 2%;
          bottom: 14%;
          width: 56%;
          max-width: 30rem; } }
    .slide_box .slide_txt .txt_box {
      -webkit-box-sizing: border-box;
      box-sizing: border-box; }
    .slide_box .slide_txt .txt {
      font-size: 4.2rem;
      line-height: 1.6;
      font-weight: 700;
      color: #000;
      text-align: left;
      letter-spacing: 2px; }
      @media screen and (max-width: 767px) {
        .slide_box .slide_txt .txt {
          font-size: 20px; } }
  .slide_box .slick-slider {
    height: calc(100%);
    overflow: hidden;
    position: relative; }
    @media screen and (max-width: 1024px) {
      .slide_box .slick-slider.main_v .slick-slide {
        height: 50vh; } }
    @media screen and (max-width: 1024px) {
      .slide_box .slick-slider.main_v .slick-slide > img {
        height: inherit;
        -o-object-fit: cover;
        object-fit: cover;
        bottom: 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; } }

/* アニメーション */
.animation-slide {
  position: relative; }

.slick-active .s-scale-img {
  -webkit-animation: zoomUp 10s linear 0s 1 normal both;
  animation: zoomUp 10s linear 0s 1 normal both; }

@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  100% {
    -webkit-transform: scale(1.15);
    transform: scale(1.15); } }

@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  100% {
    -webkit-transform: scale(1.15);
    transform: scale(1.15); } }

.slick-slide .s-right-txt {
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 1; }

.slick-active .s-right-txt {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out; }

@-webkit-keyframes slideInRight {
  from {
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%); }
  to {
    opacity: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); } }

@keyframes slideInRight {
  from {
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%); }
  to {
    opacity: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); } }

.slick-slide .s-top-txt {
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 1; }

.slick-active .s-top-txt {
  -webkit-animation-name: slideInTop;
  animation-name: slideInTop;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out; }

@-webkit-keyframes slideInTop {
  from {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0); }
  to {
    opacity: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); } }

@keyframes slideInTop {
  from {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0); }
  to {
    opacity: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); } }

.slick-slide .s-fade-txt {
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0; }

.slick-active .s-fade-txt {
  -webkit-animation: FadeAni .3s ease 1s 1 normal both;
  animation: FadeAni .3s ease 1s 1 normal both; }

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

@keyframes FadeAni {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.slick-slide .s-scale-txt {
  font-weight: bold;
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  opacity: 0; }

.slick-active .s-scale-txt {
  -webkit-animation: SlideScaleAni 1s ease .25s 1 normal both;
  animation: SlideScaleAni 1s ease .25s 1 normal both; }

@-webkit-keyframes SlideScaleAni {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%) scale(0.75);
    transform: translateX(100%) scale(0.75); }
  50% {
    opacity: 1;
    -webkit-transform: translateX(50%) scale(0.75);
    transform: translateX(50%) scale(0.75); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(50%) scale(1);
    transform: translateX(50%) scale(1); } }

@keyframes SlideScaleAni {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%) scale(0.75);
    transform: translateX(100%) scale(0.75); }
  50% {
    opacity: 1;
    -webkit-transform: translateX(50%) scale(0.75);
    transform: translateX(50%) scale(0.75); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(50%) scale(1);
    transform: translateX(50%) scale(1); } }

/* //slider */
/* title */
.ttl.ptn_01 {
  color: #555;
  font-size: 34px;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
  text-transform: uppercase; }
  .ttl.ptn_01 span {
    padding-left: 3px; }
  @media screen and (max-width: 768px) {
    .ttl.ptn_01 {
      font-size: 22px;
      margin-bottom: 20px; } }
  .ttl.ptn_01.white span {
    color: #ddd; }

.ttl.ptn_02 {
  color: #102d88;
  font-size: 30px;
  font-weight: 700;
  position: relative;
  line-height: 1.5;
  margin-bottom: 20px; }
  @media screen and (max-width: 767px) {
    .ttl.ptn_02 {
      font-size: 22px;
      letter-spacing: initial;
      text-align: center; } }
  .ttl.ptn_02.en {
    letter-spacing: inherit; }
  .ttl.ptn_02 span {
    font-size: 16px;
    color: #333;
    font-weight: normal;
    margin-left: 15px; }
  .ttl.ptn_02 .large {
    font-size: 2em;
    margin-left: 10px; }

.title_02 {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.6em;
  padding: 5px 0 5px 18px;
  position: relative; }
  @media screen and (max-width: 767px) {
    .title_02 {
      font-size: 19px; } }
  .title_02:before {
    content: "";
    position: absolute;
    display: block;
    left: 0px;
    background-color: #102d88;
    top: 8px;
    width: 5px;
    height: calc(100% - 15px);
    border-radius: 3px; }
  .title_02:after {
    content: "";
    position: absolute;
    display: block;
    left: 0px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    bottom: -4px;
    height: 4px;
    width: 100%; }

.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: #102d88;
    top: 11px;
    left: 0; }

.title_04 {
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 20px;
  padding-left: 32px;
  padding-bottom: 0px;
  border-bottom: dashed 1px #3f3f3f;
  background-image: url(../img/ttl_bg.png);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 25px; }
  .title_04 span {
    font-size: 14px;
    margin-left: 5px; }
  @media screen and (max-width: 767px) {
    .title_04 {
      font-size: 20px;
      padding-left: 27px;
      padding-bottom: 0px;
      background-size: 21px; } }

.title_05 {
  position: relative;
  border-bottom: 3px solid #ccc;
  margin-bottom: 20px;
  font-size: 24px;
  letter-spacing: 0.02rem;
  font-weight: 700; }
  @media screen and (max-width: 767px) {
    .title_05 {
      font-size: 18px; } }
  .title_05:after {
    position: absolute;
    bottom: -3px;
    left: 0;
    z-index: 2;
    content: '';
    width: 20%;
    height: 3px;
    background-color: #102d88; }
  .title_05 span {
    margin-left: 15px;
    font-family: "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: normal !important;
    margin-bottom: .2em;
    color: #666;
    font-size: .6em;
    font-size: 1.5rem;
    text-transform: uppercase; }

.title_06 {
  position: relative;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
  padding-left: 20px;
  border-bottom: dotted 1px #cccccc; }
  .title_06:before {
    margin-right: 5px;
    position: absolute;
    content: '';
    height: 5px;
    width: 15px;
    background: #102d88;
    top: 13px;
    left: 0; }

.title_07 {
  color: #102d88;
  font-size: 30px;
  margin-bottom: 20px;
  line-height: 1.5;
  font-weight: 700; }
  .title_07 span {
    font-size: 14px;
    color: #555;
    margin-left: 10px; }
  .title_07.ptn_02 {
    margin-top: 2em;
    position: relative; }
    .title_07.ptn_02:before {
      bottom: -7px;
      position: absolute;
      content: '';
      width: 130%;
      height: 1px;
      background: #000;
      right: -90px; }
  @media screen and (max-width: 767px) {
    .title_07 {
      font-size: 20px;
      margin-bottom: 20px; }
      .title_07.ptn_02 {
        margin-top: 0; } }

.title_08 {
  background: #102d88;
  position: relative;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
  padding: 5px 15px;
  color: #fff; }
  .title_08 span {
    color: #102d88;
    background: #fff;
    margin-right: 10px;
    font-size: 0.9em;
    border-radius: 2px;
    padding: 0.1em 0.6em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    border-top: 1px solid rgba(255, 255, 255, 0.7); }
  .title_08.bg-black {
    border-radius: 0; }

.title_09 {
  color: #102d88;
  text-align: center;
  margin-bottom: 30px;
  border-top: 2px solid;
  border-bottom: 2px solid;
  font-size: 28px;
  font-weight: 700;
  padding: 10px;
  letter-spacing: .1em; }
  @media screen and (max-width: 767px) {
    .title_09 {
      margin-bottom: 20px;
      font-size: 20px;
      padding: 5px; } }

.title_10 {
  font-family: "M PLUS Rounded 1c", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #102d88;
  text-align: center;
  margin-bottom: 10px;
  border-top: 1px solid;
  border-bottom: 1px solid;
  font-size: 20px;
  font-weight: 700;
  padding: 5px 10px;
  letter-spacing: .1em; }
  @media screen and (max-width: 767px) {
    .title_10 {
      font-size: 18px; } }

.title_11 {
  color: #555;
  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; }
  @media screen and (max-width: 767px) {
    .title_11 {
      font-size: 18px; } }
  .title_11:after, .title_11:before {
    content: "";
    width: 2px;
    height: 1.7em;
    background: #102d88;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto; }
  .title_11:before {
    -webkit-transform: skewX(-150deg);
    -ms-transform: skewX(-150deg);
    transform: skewX(-150deg);
    left: -30px; }
    @media screen and (max-width: 767px) {
      .title_11:before {
        left: -20px; } }
  .title_11:after {
    -webkit-transform: skewX(150deg);
    -ms-transform: skewX(150deg);
    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: #102d88;
    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 {
    -webkit-transform: skewX(-150deg);
    -ms-transform: skewX(-150deg);
    transform: skewX(-150deg);
    left: -40px; }
    @media screen and (max-width: 767px) {
      .sec_title:before {
        left: -20px; } }
  .sec_title:after {
    -webkit-transform: skewX(150deg);
    -ms-transform: skewX(150deg);
    transform: skewX(150deg);
    right: -40px; }
    @media screen and (max-width: 767px) {
      .sec_title:after {
        right: -20px; } }

.balloon2 {
  background: #102d88;
  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: #102d88;
    border-width: 20px;
    margin-left: -20px; }
  .balloon2:after {
    border-color: rgba(136, 183, 213, 0);
    border-top-color: #102d88;
    border-width: 15px;
    margin-left: -15px; }
  .balloon2 span {
    margin: 0;
    padding: 0; }

.balloon2-top {
  background: #102d88;
  position: relative;
  text-align: center;
  margin: 0 0 0.3em;
  padding: 30px 20px;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  -webkit-box-sizing: border-box;
  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 #102d88;
    position: absolute;
    bottom: -64px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    z-index: 2; }
    @media screen and (max-width: 767px) {
      .balloon2-top:before {
        border: 20px solid transparent;
        border-top: 20px solid #102d88;
        bottom: -40px; } }
  .balloon2-top.purple {
    background: #102d88; }
    .balloon2-top.purple:before {
      border-top: 32px solid #102d88; }
      @media screen and (max-width: 767px) {
        .balloon2-top.purple:before {
          border: 20px solid transparent;
          border-top: 20px solid #102d88;
          bottom: -40px; } }

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

.table_style03 {
  width: 100%;
  margin: 0 auto 30px;
  border-width: 0;
  width: 100%;
  -webkit-font-variant-ligatures: no-common-ligatures;
  font-variant-ligatures: no-common-ligatures;
  /*background: #fff;*/ }
  .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: 1em;
    text-align: left;
    white-space: nowrap;
    font-weight: 600;
    letter-spacing: .2em;
    position: relative; }
  .table_style03 td {
    padding: 1rem;
    padding-left: 4rem;
    text-align: left; }
  @media screen and (max-width: 480px) {
    .table_style03 tr,
    .table_style03 th {
      width: 100%;
      display: block;
      -webkit-box-sizing: border-box;
      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 {
  padding: 20px; }

form table th span {
  font-size: 10px;
  background-color: #ee0505;
  padding: 1px 2px 3px 5px;
  text-align: center;
  border-radius: 2px;
  color: #fff;
  margin-right: 5px; }

input[type="text"],
textarea {
  border: 1px solid #ccc;
  padding: 5px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 3px;
  font-size: 1.2em; }
  input[type="text"].maxlength,
  textarea.maxlength {
    width: 100% !important; }

textarea {
  min-height: 200px; }

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

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

input[type="submit"] {
  color: #fff;
  position: relative;
  z-index: 2;
  background-color: #102d88;
  border: 2px solid #102d88;
  font-size: 16px;
  display: block;
  width: 265px;
  text-align: center;
  font-weight: bold;
  padding: 5px 0;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  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: #102d88;
    color: #102d88 !important; }
    input[type="submit"]:hover::before, input[type="submit"]:hover::after {
      width: 0;
      background-color: #102d88; }
  input[type="submit"]::before, input[type="submit"]::after {
    position: absolute;
    z-index: -1;
    display: block;
    content: '';
    top: 0;
    width: 50%;
    height: 100%;
    background-color: #102d88;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    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;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  -webkit-box-shadow: 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: 85%;
    margin: 15px auto 15px;
    line-height: 1.5em; }
    .privacy_policy .item span {
      display: block;
      color: #102d88;
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 10px; }
      .privacy_policy .item span:before {
        content: "■";
        margin-right: 3px; }

.content_box {
  max-width: 1080px;
  width: 95%;
  margin: 50px auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden; }
  @media screen and (max-width: 768px) {
    .content_box {
      margin: 30px auto; } }

.bg_ptn01 .content_box {
  margin: 0 auto;
  padding: 70px 0;
  position: relative; }
  @media screen and (max-width: 768px) {
    .bg_ptn01 .content_box {
      margin: 10px auto;
      padding: 10px 10px; } }
  .bg_ptn01 .content_box:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 78.125%;
    margin: 0 auto;
    background-color: #f9f9f9;
    z-index: -1; }
    @media screen and (max-width: 480px) {
      .bg_ptn01 .content_box:before {
        width: 100%; } }

.line_bg {
  position: relative;
  margin-top: 10px; }
  .line_bg:before, .line_bg:after {
    content: '';
    width: 1px;
    height: 85px;
    position: absolute;
    background: #777;
    top: 0;
    z-index: 3;
    display: block; }
  .line_bg:before {
    left: calc(50% - 10px); }
  .line_bg:after {
    left: calc(50% + 10px); }
  .line_bg.bg_ptn01 .content_box {
    padding: 80px 0; }
  @media screen and (max-width: 768px) {
    .line_bg .content_box {
      margin: 50px auto 20px; }
    .line_bg:before, .line_bg:after {
      height: 55px; }
    .line_bg:before {
      left: calc(50% - 7px); }
    .line_bg:after {
      left: calc(50% + 7px); }
    .line_bg.bg_ptn01 .content_box {
      padding: 50px 10px 30px;
      width: 100%;
      margin: 0 auto; } }

.white_box {
  position: relative;
  background: white;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 2em 1.5em 1.5em;
  overflow: hidden;
  color: #000; }
  @media screen and (max-width: 767px) {
    .white_box {
      padding: 20px 10px 20px; } }

.flex_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .flex_box.aline_c {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
  .flex_box.ptn_02 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-flow: row-reverse;
    flex-flow: row-reverse; }
    @media screen and (max-width: 768px) {
      .flex_box.ptn_02 {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column;
        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%;
  margin-bottom: 30px; }
  @media screen and (max-width: 768px) {
    .col_2 > li {
      width: 100%;
      margin-right: 0; } }
  .col_2 > li:nth-child(2n) {
    margin-right: 0; }

.col_2 > div {
  width: 49%;
  margin-right: 2%; }
  @media screen and (max-width: 768px) {
    .col_2 > div {
      width: 100%;
      margin-right: 0;
      margin-bottom: 20px; } }
  .col_2 > div:nth-child(2n) {
    margin-right: 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: 0 auto 20px; }
      .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: 48%; }
      .col_4 > li img {
        display: block;
        margin: 0 auto; }
      .col_4 > li:nth-child(2n) {
        margin-right: 0; } }

.bg_01 {
  position: relative; }
  .bg_01:before {
    background-image: url(../img/bg_01.jpg);
    background-size: cover;
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1; }
  @media screen and (max-width: 768px) {
    .bg_01 {
      padding-bottom: 4%; } }

.bg_02 {
  position: relative; }
  .bg_02:before {
    background-image: url(../img/bg_02.png);
    /* background-attachment: fixed; */
    background-position: center bottom;
    background-size: 70px;
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1; }
  @media screen and (max-width: 768px) {
    .bg_02 {
      padding-bottom: 4%; } }

.bg_03 {
  position: relative; }
  .bg_03:before {
    background-image: url(../img/intro_bg.png);
    background-repeat: repeat-x;
    background-position: bottom;
    background-size: 430px;
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0; }

.bg_05 {
  background-image: url(../img/bg_05.png);
  background-size: cover; }

.bg_half {
  background: -webkit-gradient(linear, left top, right top, from(#7a7a7a), color-stop(50%, #7a7a7a), color-stop(50%, #b2b2b2), to(#b2b2b2));
  background: -webkit-linear-gradient(left, #7a7a7a 0%, #7a7a7a 50%, #b2b2b2 50%, #b2b2b2 100%);
  background: -o-linear-gradient(left, #7a7a7a 0%, #7a7a7a 50%, #b2b2b2 50%, #b2b2b2 100%);
  background: linear-gradient(90deg, #7a7a7a 0%, #7a7a7a 50%, #b2b2b2 50%, #b2b2b2 100%); }

.btnl_s a {
  position: relative;
  background-color: #102d88;
  border: 2px solid #102d88;
  font-size: 16px;
  display: block;
  width: 265px;
  text-align: center;
  font-weight: bold;
  padding: 5px 0;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  background-image: url(../img/arrow02.png);
  background-repeat: no-repeat;
  background-position: 95% center; }
  .btnl_s a:link, .btnl_s a:visited {
    color: #fff;
    text-decoration: none; }
  .btnl_s a:hover {
    color: #fff;
    text-decoration: none;
    color: #fff;
    background-color: #fff;
    border-color: #102d88;
    color: #102d88 !important;
    background-image: url(../img/arrow01.png); }
    .btnl_s a:hover::before, .btnl_s a:hover::after {
      width: 0;
      background-color: #102d88; }
  .btnl_s a::before, .btnl_s a::after {
    position: absolute;
    z-index: -1;
    display: block;
    content: '';
    top: 0;
    width: 50%;
    height: 100%;
    background-color: #102d88;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s; }
  .btnl_s a::before {
    right: 0; }
  .btnl_s a::after {
    left: 0; }

.btnl_s a.ptn_02 {
  position: relative;
  background-color: #333;
  border: 2px solid #333;
  font-size: 16px;
  display: block;
  width: 265px;
  text-align: center;
  font-weight: bold;
  padding: 5px 0;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  background-image: url(../img/arrow02.png);
  background-repeat: no-repeat;
  background-position: 95% center; }
  .btnl_s a.ptn_02:link, .btnl_s a.ptn_02:visited {
    color: #fff;
    text-decoration: none; }
  .btnl_s a.ptn_02:hover {
    color: #fff;
    text-decoration: none;
    color: #fff;
    background-color: #fff;
    border-color: #333;
    color: #333 !important;
    background-image: url(../img/arrow01.png); }
    .btnl_s a.ptn_02:hover::before, .btnl_s a.ptn_02:hover::after {
      width: 0;
      background-color: #333; }
  .btnl_s a.ptn_02::before, .btnl_s a.ptn_02::after {
    position: absolute;
    z-index: -1;
    display: block;
    content: '';
    top: 0;
    width: 50%;
    height: 100%;
    background-color: #333;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s; }
  .btnl_s a.ptn_02::before {
    right: 0; }
  .btnl_s a.ptn_02::after {
    left: 0; }

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

.sp_contact {
  display: none; }
  @media screen and (max-width: 480px) {
    .sp_contact {
      display: block;
      height: 40px;
      display: block;
      width: 100%;
      -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0 0px 3px;
      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;
      -webkit-backdrop-filter: blur(7px);
      backdrop-filter: blur(7px); }
      .sp_contact li {
        font-family: "Source Sans Pro", sans-serif, "Noto Sans JP", 　sans-serif;
        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 {
          -webkit-box-sizing: border-box;
          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 {
  overflow: hidden;
  position: relative;
  background-color: rgba(216, 231, 240, 0.7); }
  .contact_area .wraper {
    text-align: center; }
    .contact_area .wraper:before {
      position: absolute;
      background-repeat: no-repeat;
      background-size: cover;
      content: '';
      top: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      z-index: -1; }
  .contact_area .inner {
    background: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 2em 1em;
    border-radius: 7px; }
  .contact_area .info_area {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
    .contact_area .info_area li {
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      padding: 0 .3em; }
  .contact_area .fax,
  .contact_area .mail {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
    color: #102d88; }
  .contact_area .btnl_s a {
    font-size: 20px; }
  .contact_area > .ttl {
    margin-bottom: 40px; }
  @media screen and (max-width: 767px) {
    .contact_area .inner {
      background: #fff;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      padding: 2em 0; }
    .contact_area .info_area .R {
      border: none; }
    .contact_area .info_area li {
      width: 100%;
      padding: 0; }
    .contact_area .fax,
    .contact_area .mail {
      margin-bottom: 0; }
    .contact_area > .ttl {
      margin-bottom: 40px; } }
  .contact_area .img {
    position: relative;
    height: 0;
    width: 80%;
    padding-top: 40%;
    overflow: hidden;
    margin: 0 auto 10px; }
    .contact_area .img img {
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }

.tel_dec {
  font-size: 31px;
  font-weight: 700;
  font-style: italic;
  position: relative;
  padding-left: 50px;
  line-height: 1.3; }
  .tel_dec:before {
    content: '';
    background: url(../img/free1.gif) no-repeat left bottom;
    background-size: 50px;
    width: 51px;
    height: 30px;
    position: absolute;
    left: 0;
    top: 5px; }
  .tel_dec.ptn_02 {
    padding-left: 30px; }
    .tel_dec.ptn_02:before {
      content: "\f3cd";
      font-size: 1.1em;
      font-family: "Font Awesome 5 Free";
      font-weight: 900;
      background: none;
      top: -2px;
      left: 0px;
      width: initial;
      height: initial; }
  .tel_dec.ptn_03 {
    padding-left: 40px; }
    .tel_dec.ptn_03:before {
      content: "\f1ac";
      font-size: 1.1em;
      font-family: "Font Awesome 5 Free";
      font-weight: 900;
      background: none;
      top: -9px;
      left: 0px;
      width: initial;
      height: initial; }
  .tel_dec.ptn_04 {
    padding-left: 35px; }
    .tel_dec.ptn_04:before {
      content: "\f095";
      font-size: 0.9em;
      font-family: "Font Awesome 5 Free";
      font-weight: 900;
      background: none;
      top: 1px;
      left: 0px;
      width: initial;
      height: initial; }

.about_box li {
  width: calc(96%/3);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: 2%;
  background: #d5f6fc;
  border-radius: 3px;
  padding: 10px; }
  @media screen and (max-width: 768px) {
    .about_box li {
      width: 100%;
      margin: 0 auto 20px; } }
  .about_box li:last-child {
    margin-right: 0; }

.about_box img {
  width: 150px;
  margin: 0 auto 10px;
  display: block; }

.about_box .ttl {
  text-align: center;
  font-weight: 700;
  font-size: 1.2em; }

.faq_box {
  padding-left: 5em;
  background: #eee;
  padding: 0px 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 4px;
  margin-top: 5px; }
  .faq_box .q_txt {
    color: #102d88;
    display: table;
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0; }
    @media screen and (max-width: 767px) {
      .faq_box .q_txt {
        font-size: 16px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box; } }
    .faq_box .q_txt dt {
      float: left; }
      .faq_box .q_txt dt span {
        background: #102d88;
        display: inline-block;
        padding: 7px;
        width: 25px;
        height: 25px;
        line-height: 1;
        text-align: center;
        border-radius: 50%;
        color: #fff;
        margin-right: 6px;
        font-size: 14px; }
    .faq_box .q_txt dd {
      line-height: 1.3;
      display: table-cell;
      vertical-align: middle;
      font-weight: 500;
      font-size: 15px;
      font-family: "M PLUS Rounded 1c", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
      color: #102d88; }
  .faq_box .txt {
    text-align: justify; }

.bg_item {
  background: url(../img/bg_item01.jpg) no-repeat center;
  background-size: cover;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }
  .bg_item .in {
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.7);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 60px 20px; }

.charge_tbl {
  width: 100%;
  border: 1px solid;
  text-align: center;
  vertical-align: middle; }
  .charge_tbl th,
  .charge_tbl td {
    vertical-align: middle;
    border: 1px solid #ddd;
    padding: 10px 10px;
    text-align: center; }
  .charge_tbl th {
    background-color: #102d88;
    line-height: 1.5;
    color: #fff;
    font-weight: 700;
    border-top: 1px solid #102d88;
    border-left: 1px solid #102d88; }
    .charge_tbl th.em {
      background: #d88733;
      border-top: #d88733 1px solid;
      border-right: #d88733 1px solid !important; }
    .charge_tbl th:first-child {
      border-left: 1px solid #102d88; }
    .charge_tbl th:last-child {
      border-right: 1px solid #102d88; }
  .charge_tbl td {
    text-align: left;
    background: #fff; }
  .charge_tbl .em2 {
    font-weight: 700;
    background: #ffe7e7; }
  .charge_tbl .em3 {
    background: #f6f6f6; }

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

.price_ttl {
  font-size: 1.2em;
  font-weight: 700; }
  .price_ttl span {
    float: right;
    font-size: 0.8em;
    line-height: 2.3;
    font-weight: normal; }

.reason {
  background: #fff7f9;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 1em; }
  .reason .ttl {
    font-weight: 700;
    font-size: 1.5em;
    color: #f098b6; }
  .reason .list {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 15px; }
    @media screen and (max-width: 768px) {
      .reason .list {
        padding: 0; } }
  .reason li {
    font-size: 1.2em;
    line-height: 1.6; }
  .reason .nam {
    font-size: 2em;
    margin-right: .4em;
    font-style: italic;
    color: #66c3c8; }
  .reason .blue {
    font-weight: 700; }

.news-lb {
  margin: 15px 0;
  line-height: 1.8;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc; }
  .news-lb dt {
    float: left;
    width: 8em;
    padding: 15px 10px;
    color: #555;
    font-weight: bold; }
    @media screen and (max-width: 767px) {
      .news-lb dt {
        float: none;
        width: 100%;
        border-right: none;
        padding: 10px 10px 0;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        text-align: left;
        font-weight: bold; } }
  .news-lb dd {
    padding-left: 11em;
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ccc; }
    @media screen and (max-width: 767px) {
      .news-lb dd {
        padding: 10px 10px 10px; } }
    .news-lb dd:last-child {
      border-bottom: 0px; }

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

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

.news_bg {
  background: #f5f5f5;
  position: relative; }
  .news_bg .content_box {
    margin: 30px auto; }
    @media screen and (max-width: 767px) {
      .news_bg .content_box {
        margin: 20px auto; } }

.news_box {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }
  .news_box a {
    color: #333; }
  .news_box dt {
    float: left;
    margin-right: 10px;
    font-style: normal;
    font-weight: 700;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
    @media screen and (max-width: 767px) {
      .news_box dt {
        width: 100%;
        float: none;
        margin-bottom: 5px; } }
  .news_box dd {
    margin-bottom: 10px;
    border-bottom: 1px dashed #ddd;
    padding-left: 110px;
    padding-bottom: 5px; }
    @media screen and (max-width: 767px) {
      .news_box dd {
        padding-left: 0; } }
  .news_box .pin {
    padding: 0 10px 5px;
    border-bottom: 1px dashed #ddd;
    margin-bottom: 5px; }
    .news_box .pin:before {
      font-size: 1.1em;
      font-family: "Font Awesome 5 Free";
      font-weight: 900;
      content: "\f08d";
      margin-right: 5px;
      -webkit-transform: rotate(30deg);
      -ms-transform: rotate(30deg);
      transform: rotate(30deg);
      display: inline-block;
      line-height: 1; }
    .news_box .pin:after {
      font-size: 1em;
      font-family: "Font Awesome 5 Free";
      font-weight: 900;
      content: "\f105";
      margin-left: 10px;
      display: inline-block;
      line-height: 1; }
    @media screen and (max-width: 767px) {
      .news_box .pin {
        padding: 0 0 5px;
        margin-bottom: 5px;
        font-size: 14px;
        letter-spacing: initial; }
        .news_box .pin:before {
          margin-right: 0px; }
        .news_box .pin:after {
          margin-left: 5px; } }

/*
アニメーションボタン*/
.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 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.55s ease;
    -o-transition: all 0.55s ease;
    transition: all 0.55s ease; }
    .snip1445 *:before, .snip1445 *:after {
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      -webkit-transition: all 0.55s ease;
      -o-transition: all 0.55s ease;
      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 {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0); }
  .snip1445:hover figcaption:before,
  .snip1445.hover figcaption:before,
  .snip1445:hover figcaption:after,
  .snip1445.hover figcaption:after {
    -webkit-transition-delay: 0.15s;
    -o-transition-delay: 0.15s;
    transition-delay: 0.15s; }
  .snip1445 img {
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
    width: 100%;
    -webkit-backface-visibility: hidden;
    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;
      -webkit-transform: translateX(200%);
      -ms-transform: translateX(200%);
      transform: translateX(200%); }
    .snip1445 figcaption:after {
      bottom: 0;
      right: 0;
      -webkit-transform: translateX(-300%);
      -ms-transform: translateX(-300%);
      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;
      -webkit-transform: translateY(200%);
      -ms-transform: translateY(200%);
      transform: translateY(200%); }
    .snip1445 figcaption div:after {
      bottom: 0;
      right: 0;
      -webkit-transform: translateY(-300%);
      -ms-transform: translateY(-300%);
      transform: translateY(-300%); }
  .snip1445 h2,
  .snip1445 h4 {
    width: 200px;
    background: rgba(255, 255, 255, 0.8);
    text-align: center;
    color: #102d88; }
  .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: #102d88;
    padding: 3px 10px;
    color: #fff;
    text-shadow: #fff 0 0 0; }
  .snip1445 a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0; }

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

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

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

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

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

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

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

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

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

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

.bg_contact {
  position: relative;
  background: #333; }
  .bg_contact .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .bg_contact .inner {
    width: 100%;
    -webkit-box-sizing: border-box;
    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;
          -webkit-box-sizing: border-box;
          box-sizing: border-box;
          text-align: justify; } }
      .concept-wrap .in-wrap .concept-box .ttl {
        color: #102d88;
        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; } }

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

.flow_box {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }
  .flow_box li {
    width: calc(94%/6);
    border: 2px solid #060e6d;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px;
    margin: 0.5%;
    border-radius: 7px;
    min-width: 169px; }
    @media screen and (max-width: 767px) {
      .flow_box li {
        width: calc(96%/2);
        margin: 1%;
        min-width: initial; } }
  .flow_box img {
    display: block;
    width: 90px;
    margin: 10px auto 10px; }
  .flow_box .sub {
    color: #f05615;
    border-bottom: 1px dotted;
    margin-bottom: 4px;
    font-weight: 700; }

.stepList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .stepList > li {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px;
    background: #f6f6f6;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
    @media screen and (max-width: 768px) {
      .stepList > li {
        padding: 15px; } }
    .stepList > li:nth-child(odd) {
      background: #fff9f1; }
    .stepList > li > .container {
      margin: 0 auto;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
    .stepList > li .num {
      display: inline-block;
      -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
      flex: 0 0 auto;
      width: 156px;
      font-weight: 700;
      font-family: "Rubik", sans-serif;
      font-size: 62px;
      text-align: center;
      color: #102d88; }
      @media screen and (max-width: 768px) {
        .stepList > li .num {
          display: none; } }
      .stepList > li .num .small {
        display: block;
        font-size: 22px; }
        @media screen and (max-width: 768px) {
          .stepList > li .num .small {
            display: inline-block; } }
    .stepList > li .txt_box {
      display: inline-block;
      width: auto; }
      .stepList > li .txt_box h3 {
        font-size: 26px;
        letter-spacing: 1.87px;
        color: #102d88; }
        @media screen and (max-width: 768px) {
          .stepList > li .txt_box h3 {
            display: inline;
            font-size: 20px;
            letter-spacing: 1.44px;
            vertical-align: 2px; } }
        .stepList > li .txt_box h3 span {
          font-size: 16px;
          letter-spacing: 2.29px; }
          .stepList > li .txt_box h3 span.num {
            display: none; }
            @media screen and (max-width: 768px) {
              .stepList > li .txt_box h3 span.num {
                display: inline;
                padding-left: 0;
                width: auto;
                line-height: 1;
                font-weight: bold;
                font-family: "Rubik", sans-serif;
                font-size: 30px;
                text-align: center;
                letter-spacing: 1.46px;
                margin-right: 10px;
                vertical-align: bottom; } }
      .stepList > li .txt_box .txt {
        float: left; }
        @media screen and (max-width: 768px) {
          .stepList > li .txt_box .txt {
            float: none;
            width: 100%;
            margin-bottom: 20px; } }
      .stepList > li .txt_box .img {
        width: 30%;
        float: right; }
        @media screen and (max-width: 768px) {
          .stepList > li .txt_box .img {
            float: none;
            width: 100%; } }

.recruit_box {
  background: #f8f9ff;
  border-top: 5px solid #102d88;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }
  .recruit_box img {
    width: 360px; }
  .recruit_box .txt {
    padding: 15px;
    overflow: hidden; }

.note {
  padding: 10px;
  background: #eee;
  overflow: hidden; }

.top_about img,
.business_about img {
  margin-bottom: 20px !important; }

.top_about .ttl,
.business_about .ttl {
  color: #102d88;
  text-align: center;
  font-weight: 700;
  font-size: 1.2em;
  margin-bottom: 20px;
  line-height: 1.5; }
  @media screen and (max-width: 767px) {
    .top_about .ttl,
    .business_about .ttl {
      margin-bottom: 10px; } }

.top_about .txt,
.business_about .txt {
  text-align: justify; }
  @media screen and (max-width: 767px) {
    .top_about .txt,
    .business_about .txt {
      padding: 0 10px; } }

.staff_box li {
  border-top: 4px solid #102d88;
  text-align: center;
  width: calc(96%/4);
  margin-right: 1%;
  background: #e8f9f1;
  margin-bottom: 1%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 15px;
  border-radius: 3px; }
  @media screen and (max-width: 767px) {
    .staff_box li {
      width: 100%;
      margin: 0 auto 20px; } }

.staff_box img {
  border-radius: 50%;
  display: block;
  margin: 0 auto 10px; }

.staff_box .name {
  color: #102d88;
  font-size: 1.2em;
  font-weight: 700;
  border-bottom: 1px dotted;
  margin-bottom: 2px; }

.item_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 10px; }
  .item_list li {
    width: calc(95%/3);
    margin-right: 1%; }
    @media screen and (max-width: 767px) {
      .item_list li {
        width: 100%;
        margin-right: 0; } }

.flow_list {
  margin-bottom: 20px; }
  .flow_list img {
    width: 300px; }

.flow_check span {
  border-bottom: 1px solid #999; }

.top_recruit {
  position: relative; }
  .top_recruit .txt {
    position: absolute;
    bottom: 0;
    padding: 15px 15px;
    background: rgba(0, 0, 0, 0.4);
    font-weight: 700; }
    @media screen and (max-width: 767px) {
      .top_recruit .txt {
        position: initial;
        font-weight: normal; } }

.recruit_data {
  margin-bottom: 30px; }
  .recruit_data dt {
    float: left;
    background: #bc1628;
    color: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 1px 10px;
    font-weight: 700; }
  .recruit_data dd {
    padding-left: 65px;
    border-bottom: 1px dotted;
    margin-bottom: 10px;
    padding-bottom: 5px; }

/*
ブログページのメイン　*/
.info > .main {
  float: left;
  width: calc(100% - 300px);
  -webkit-box-sizing: border-box;
  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: #102d88;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px 15px;
  line-height: 1.4;
  color: #fff; }

.blog_box {
  width: 100%;
  position: relative;
  margin-bottom: 30px;
  -webkit-box-sizing: border-box;
  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 #102d88;
      border-radius: 5px;
      padding: .5em .8em;
      background: #102d88;
      color: #fff; }
      .page_links .pages .page_prev a:hover,
      .page_links .pages .page_next a:hover {
        background: #102d88;
        -webkit-transition: .4s;
        -o-transition: .4s;
        transition: .4s; }
      @media screen and (max-width: 768px) {
        .page_links .pages .page_prev a,
        .page_links .pages .page_next a {
          display: block;
          width: 100%;
          -webkit-box-sizing: border-box;
          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 {
    -webkit-box-sizing: border-box;
    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 {
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    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;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.9);
    color: #102d88; }
    .blog_side_list .blog_bx a {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      z-index: 1; }
    .blog_side_list .blog_bx * {
      -webkit-transition: 0.3s;
      -o-transition: 0.3s;
      transition: 0.3s; }
    .blog_side_list .blog_bx .blog_bx_flex {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between; }
      .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%;
      -o-object-fit: cover;
      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: #102d88;
        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;
      -o-text-overflow: ellipsis;
      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; }

.top_ttl {
  color: #102d88;
  font-size: 69px;
  line-height: 1.2;
  font-weight: 700;
  position: relative;
  margin-bottom: 40px; }
  @media screen and (max-width: 767px) {
    .top_ttl {
      font-size: 30px;
      margin-bottom: 30px; } }
  .top_ttl span {
    color: #000;
    display: block;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1; }

.personal,
.personal_02 {
  overflow: hidden;
  position: relative;
  padding: 20% 0 10px;
  background-color: #f5f5f5; }
  @media screen and (max-width: 767px) {
    .personal,
    .personal_02 {
      padding: 225px 0 30px; } }
  .personal:before,
  .personal_02:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    max-width: 1080px;
    width: 100%;
    height: 70%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0); }
    @media screen and (max-width: 767px) {
      .personal:before,
      .personal_02:before {
        height: 300px; } }
  .personal .in,
  .personal_02 .in {
    font-family: "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    padding: 20px 10px;
    background-color: #fff;
    text-align: center;
    z-index: 10; }
    @media screen and (max-width: 767px) {
      .personal .in,
      .personal_02 .in {
        padding: 30px 10px 30px; } }

.personal:before {
  background: url(../img/shimada_img01.jpg) no-repeat center/cover; }

.personal_02:before {
  background: url(../img/koushin_img01.jpg) no-repeat center/cover; }

.anc_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .anc_btn li {
    background: #102d88;
    vertical-align: top;
    min-width: 150px;
    width: 30%;
    margin-right: 2%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 7px; }
    .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;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      position: relative;
      line-height: 1em; }
      .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: 90%;
      margin: 0 auto 10px; }
      .anc_btn li:last-child {
        margin-right: auto; } }

.works_tbl {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0; }
  .works_tbl th {
    font-weight: 700;
    text-align: left; }
  .works_tbl td {
    text-align: right; }
  .works_tbl th,
  .works_tbl td {
    padding: 10px 20px;
    width: 50%; }
  .works_tbl tr:nth-child(odd) {
    background-color: #EDF4F8; }
  @media screen and (max-width: 767px) {
    .works_tbl th,
    .works_tbl td {
      padding: 0;
      display: block;
      width: 100%; }
    .works_tbl tr {
      padding: 10px;
      display: block; } }

.price_list .in {
  border-bottom: 1px solid #b1b1b1;
  margin-bottom: 10px;
  padding: 0px 0 10px; }

.price_list .menu {
  position: relative;
  font-weight: 700; }

.price_list .price {
  position: absolute;
  right: 0;
  bottom: 0;
  color: #102d88; }

.price_list .memo {
  margin-left: 10px;
  font-size: 0.8em; }

.price_list .txt {
  font-size: 0.9em;
  color: #666; }

.price_box {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }
  .price_box li {
    max-width: 50%;
    width: 300px;
    height: 200px;
    text-align: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px;
    border-radius: 3px;
    display: table;
    border: 3px solid;
    background: #eee; }
    @media screen and (max-width: 767px) {
      .price_box li {
        max-width: 100%;
        height: 180px; } }
    .price_box li:first-child {
      margin-right: 20px; }
      @media screen and (max-width: 767px) {
        .price_box li:first-child {
          margin-right: 0;
          margin-bottom: 20px; } }
    .price_box li.bg1 {
      color: #d8e7f0; }
    .price_box li.bg2 {
      color: #102d88; }
  .price_box .in {
    display: table-cell;
    vertical-align: middle; }
  .price_box .ttl {
    font-size: 2em;
    font-weight: 700; }
    .price_box .ttl span {
      font-size: 15px;
      margin-left: 5px; }
  .price_box .price {
    font-size: 1.5em;
    font-weight: 700; }
    .price_box .price span {
      font-size: 12px; }

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

.data_list dt {
  float: left;
  background: #102d88;
  color: #fff;
  font-weight: 700;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 3px 10px;
  min-width: 115px;
  text-align: center; }
  @media screen and (max-width: 767px) {
    .data_list dt {
      float: none; } }

.data_list dd {
  padding: 3px 10px 10px 125px;
  margin-bottom: 10px;
  border-bottom: 1px dotted #555; }
  @media screen and (max-width: 767px) {
    .data_list dd {
      padding: 10px 10px 10px 0; } }

.menu_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s; }
  .menu_list li {
    border: 1px solid #dddd;
    width: 25%;
    overflow: hidden;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 230px; }
    @media screen and (max-width: 767px) {
      .menu_list li {
        width: 100%;
        margin: 0 auto; } }
    .menu_list li:last-child {
      margin-right: 0; }
    .menu_list li > a {
      display: block; }
      .menu_list li > a:hover > img {
        -webkit-transform: translate(-50%, -50%) scale(1.1);
        -ms-transform: translate(-50%, -50%) scale(1.1);
        transform: translate(-50%, -50%) scale(1.1);
        cursor: pointer;
        opacity: 1 !important;
        -webkit-transition: .4s;
        -o-transition: .4s;
        transition: .4s; }
      .menu_list li > a img {
        width: 100%;
        -webkit-transition: .4s;
        -o-transition: .4s;
        transition: .4s;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        top: 50%;
        left: 50%;
        position: absolute; }
  .menu_list .txt_area {
    background: rgba(16, 45, 136, 0.7);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px 10px;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100% !important;
    height: 43%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center; }
    @media screen and (max-width: 768px) {
      .menu_list .txt_area {
        height: 100%; } }
    .menu_list .txt_area .ttl {
      text-align: center;
      font-size: 19px;
      color: #fff;
      line-height: 1.4;
      font-weight: 700;
      margin-bottom: 0; }
      .menu_list .txt_area .ttl span {
        display: block;
        font-size: 14px;
        font-weight: 700; }
    .menu_list .txt_area .txt {
      color: #fff;
      line-height: 1.3em;
      margin-bottom: 10px;
      font-size: 14px; }
  .menu_list .btn {
    color: #fff;
    background: #d8e7f0;
    display: inline-block;
    font-weight: 700;
    width: 30px;
    line-height: 30px;
    font-size: 14px;
    position: absolute;
    bottom: 0;
    right: 0; }

.reserv_btn li {
  display: inline-block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-width: 300px;
  color: #fff;
  border-radius: 3px;
  font-weight: 700; }
  .reserv_btn li:first-child {
    margin-bottom: 10px; }
  .reserv_btn li .ttl {
    font-size: 20px;
    margin-bottom: 5px; }
  .reserv_btn li a {
    color: #fff;
    display: block; }
    .reserv_btn li a:hover {
      opacity: 0.8; }

.bnr_box2 {
  position: relative; }
  .bnr_box2 .inner {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 auto 20px; }
    @media screen and (max-width: 480px) {
      .bnr_box2 .inner {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between; } }
    .bnr_box2 .inner:before {
      position: absolute;
      background-image: url(../img/bg_bnr_box.jpg);
      background-repeat: no-repeat;
      background-size: cover;
      content: '';
      top: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      z-index: -1; }
  .bnr_box2 .L,
  .bnr_box2 .R {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%; }
    @media screen and (max-width: 480px) {
      .bnr_box2 .L,
      .bnr_box2 .R {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 48%;
        flex: 0 0 48%;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2; } }
  .bnr_box2 .M {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%; }
    @media screen and (max-width: 480px) {
      .bnr_box2 .M {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        margin-bottom: 1em; } }
  .bnr_box2 img {
    border-radius: 50%; }
  .bnr_box2 .txt {
    padding: 0 1.5em; }

.ttl_lead {
  font-size: 26px;
  margin-bottom: 20px;
  font-weight: 700; }
  @media screen and (max-width: 767px) {
    .ttl_lead {
      font-size: 19px;
      margin-bottom: 10px; } }

.top_gallery li {
  margin-right: 10px; }
  .top_gallery li a {
    display: block;
    position: relative;
    padding-bottom: 66.25%;
    height: 0;
    overflow: hidden;
    background: #fff;
    border: 4px solid #ddd;
    border-radius: 7px; }
  .top_gallery li img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%; }
  .top_gallery li p {
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -1px; }

.facility_photo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .facility_photo li {
    width: calc(96%/4);
    position: relative;
    border: 1px solid #ccc;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px;
    margin-right: 1%;
    margin-bottom: 1%;
    text-align: center;
    background-color: #fff; }
    @media screen and (max-width: 767px) {
      .facility_photo li {
        width: calc(99%/2);
        padding: 5px; }
        .facility_photo li:nth-child(2n) {
          margin-right: 0; } }
  .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%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: auto;
    min-width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover; }
  .facility_photo p {
    text-align: center; }
    @media screen and (max-width: 767px) {
      .facility_photo p {
        font-size: 12px;
        line-height: 1;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding: 5px 0; } }

.boder_top {
  border-top: 7px solid #102d88; }

.content_area {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 2em 2em;
  background: #f9f9f9;
  -webkit-box-shadow: 0px -1px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0px -1px 5px rgba(0, 0, 0, 0.1);
  position: relative; }

.tab_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  overflow: hidden;
  width: 98%;
  margin: 0 auto; }

.tab_area li {
  /*Tabの装飾*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 33.333%;
  height: 50px;
  color: #555;
  background: #eee;
  border-left: 4px solid #ffffff;
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
  letter-spacing: .06em;
  line-height: 1em;
  position: relative;
  cursor: default;
  font-size: 17px; }

.tab_area li.select {
  /*アクティブタブの装飾*/
  background: #102d88;
  color: #fff;
  font-weight: 700;
  font-size: 21px;
  height: 55px; }

.hide {
  display: none; }

@media screen and (max-width: 768px) {
  .tab_area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
  .tab_area li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 33.333%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
    .tab_area li:last-child, .tab_area li:nth-child(3) {
      border-right: 1px solid #777; }
    .tab_area li:nth-child(4), .tab_area li:nth-child(5) {
      border-top: none;
      width: 50%; } }

.plof_data {
  background: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }
  .plof_data dt {
    float: left;
    background: #102d88;
    color: #fff;
    font-weight: 700;
    border-radius: 60px;
    width: 100px;
    text-align: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 10px; }
  .plof_data dd {
    padding-left: 110px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
    padding-bottom: 5px; }

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

.calc_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center; }
  .calc_box li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 33.333%;
    height: 120px;
    margin-right: 1px;
    background: #333;
    color: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    line-height: 1.4;
    font-weight: 700; }
    .calc_box li:nth-child(1) {
      background-color: #102d88; }
    .calc_box li:nth-child(2) {
      background-color: #edc80e;
      position: relative; }
      .calc_box li:nth-child(2):before, .calc_box li:nth-child(2):after {
        content: '＋';
        position: absolute;
        display: block;
        background: #fff;
        color: #333;
        font-weight: normal;
        border-radius: 50%;
        width: 25px;
        line-height: 25px;
        -webkit-box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3), -1px -1px 5px rgba(0, 0, 0, 0.3);
        box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3), -1px -1px 5px rgba(0, 0, 0, 0.3); }
      .calc_box li:nth-child(2):before {
        left: -13px; }
      .calc_box li:nth-child(2):after {
        right: -13px; }
    .calc_box li:nth-child(3) {
      background-color: #db1126;
      margin-right: 0; }
    .calc_box li span {
      display: block;
      font-size: 20px; }
  @media screen and (max-width: 767px) {
    .calc_box li span {
      font-size: 14px; } }

.safety li {
  font-weight: 700; }

.safety span {
  font-size: 24px;
  font-weight: 700;
  color: #102d88;
  margin-right: 5px; }

.features_box {
  background-color: #d8e7f0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 2em;
  border-radius: .5em; }
  .features_box .features_list li {
    background-color: #fff;
    margin-bottom: 1%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 1em 1.3em;
    border-radius: 4px; }
  .features_box .features_list .ttl {
    color: #102d88;
    font-size: 24px;
    margin-bottom: 0; }
  @media screen and (max-width: 767px) {
    .features_box {
      padding: 1em; }
      .features_box .features_list li {
        margin-bottom: 5%;
        padding: 1em; }
      .features_box .features_list .ttl {
        font-size: 20px;
        margin-bottom: 10px;
        line-height: 1.4; } }

.top_boxA {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .top_boxA .img {
    width: 50%;
    position: relative; }
    .top_boxA .img img {
      position: absolute;
      -o-object-fit: cover;
      object-fit: cover;
      height: 100%;
      width: 100%; }
  .top_boxA .txt_area {
    background-color: #fff;
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
    .top_boxA .txt_area .inner {
      padding: 5em 5em;
      line-height: 2;
      text-align: justify;
      max-width: 470px; }
  @media screen and (max-width: 768px) {
    .top_boxA {
      display: block; }
      .top_boxA .img {
        width: 100%; }
        .top_boxA .img img {
          position: relative;
          height: 60vw; }
      .top_boxA .txt_area {
        width: 100%;
        display: block; }
        .top_boxA .txt_area .inner {
          padding: 1.5em;
          line-height: 1.7;
          font-weight: normal;
          max-width: 100%; } }

.shiroari .img {
  position: relative;
  width: 100%; }
  .shiroari .img .L, .shiroari .img .R {
    position: absolute;
    width: 30%; }
  .shiroari .img .L {
    left: 0; }
  .shiroari .img .R {
    right: 0; }

.shiroari .txt_area {
  width: 45%;
  margin: 0 auto;
  position: relative; }

.shiroari .lead {
  margin-bottom: 10px;
  font-weight: 700;
  color: #555;
  font-size: 16px;
  border: 1px solid #ccc;
  background: #ffec0b;
  display: inline-block;
  padding: 0 5px; }

@media screen and (max-width: 767px) {
  .shiroari .img .L, .shiroari .img .R {
    width: 35%; }
  .shiroari .txt_area {
    width: 100%;
    padding-top: 15%; } }

.intro_ttl {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 700; }
  @media screen and (max-width: 768px) {
    .intro_ttl {
      font-size: 16px; } }

.box_imgdeco {
  position: relative;
  padding: 7% 10% 4%; }
  .box_imgdeco .txt {
    text-align: center; }
  .box_imgdeco .ttl {
    font-size: 28px;
    line-height: 2;
    color: #102d88; }
  .box_imgdeco .lead {
    margin-bottom: 10px;
    font-weight: 700;
    color: #555;
    font-size: 16px;
    border: 1px solid #ccc;
    background: #ffec0b;
    display: inline-block;
    padding: 0 5px; }
  .box_imgdeco .img01, .box_imgdeco .img02, .box_imgdeco .img03, .box_imgdeco .img04 {
    position: absolute; }
  .box_imgdeco .img01, .box_imgdeco .img03 {
    width: 148px;
    top: 0;
    z-index: 2; }
  .box_imgdeco .img02, .box_imgdeco .img04 {
    width: 200px;
    bottom: 13px;
    z-index: 1; }
  .box_imgdeco .img01 {
    left: 15%; }
  .box_imgdeco .img02 {
    left: 0%; }
  .box_imgdeco .img03 {
    right: 15%; }
  .box_imgdeco .img04 {
    right: 0; }
  @media screen and (max-width: 1023px) {
    .box_imgdeco {
      padding: 0; }
      .box_imgdeco .txt {
        padding: 0;
        position: relative;
        z-index: 1; }
      .box_imgdeco .ttl {
        font-size: 20px;
        line-height: inherit; }
      .box_imgdeco .img_box {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin: 2em 0; }
      .box_imgdeco .img01, .box_imgdeco .img03 {
        display: none; }
      .box_imgdeco .img02, .box_imgdeco .img04 {
        position: relative;
        width: 42%;
        max-width: 200px;
        bottom: 0;
        z-index: 0; }
      .box_imgdeco .img02 {
        left: 0; }
      .box_imgdeco .img04 {
        right: 0; } }

.area_box {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  .area_box .img {
    width: 28%;
    margin-right: 5%; }

.support_img {
  max-width: 420px;
  width: 80%; }

.cal_box img {
  margin-bottom: 20px; }

.cal_box .ttl {
  background: #d8e7f0;
  color: #4b4b4b;
  text-align: center;
  border-radius: 6px; }

.map_img {
  height: 350px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%; }
  @media screen and (max-width: 767px) {
    .map_img {
      height: inherit; } }

.works_btn a {
  display: block;
  color: #102d88;
  text-align: center;
  margin-bottom: 30px;
  border: 2px solid;
  font-size: 28px;
  font-weight: 700;
  padding: 10px;
  letter-spacing: .1em;
  background-color: #f0e90e; }
  .works_btn a:hover {
    background-color: #102d88;
    color: #fff; }

@media screen and (max-width: 767px) {
  .works_btn a {
    font-size: 20px; } }
