@charset "UTF-8";
/** media queryを定義 **/
html {
  font-size: 18px;
}

@media screen and (max-width: 1400px) {
  html {
    font-size: 17px;
  }
}

@media screen and (max-width: 1024px) {
  html {
    font-size: 16px;
  }
}

@media screen and (max-width: 800px) {
  html {
    font-size: 16px;
  }
}

@media screen and (max-width: 600px) {
  html {
    font-size: 15px;
  }
}

/** Colorの定義**/
/** 文字の定義**/
/** コンテンツのmargin定義**/
/* ==============================

	共通

============================== */
body {
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  color: #333;
  overflow-x: hidden;
  letter-spacing: 0.5px;
}

.mincho {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
}

th,
td {
  letter-spacing: 1px;
  line-height: 160%;
}

a {
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.bold {
  font-weight: bold;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 600px) {
  .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.flex .col {
  width: 50%;
}

@media screen and (max-width: 600px) {
  .flex .col {
    width: 100%;
  }
}

.cols-2 {
  font-size: 0;
}

.cols-2 .col {
  display: inline-block;
  vertical-align: top;
  width: 50%;
}

.cols-3 {
  font-size: 0;
}

.cols-3 .col {
  font-size: 14px;
  display: inline-block;
  vertical-align: top;
  width: 33.33333%;
}

.cols-4 {
  font-size: 0;
}

.cols-4 .col {
  font-size: 14px;
  display: inline-block;
  vertical-align: top;
  width: 25%;
}

@media screen and (max-width: 500px) {
  .cols-2 .col,
  .cols-3 .col,
  .cols-4 .col {
    display: block;
    width: 100%;
  }
}

#back-top {
  position: fixed;
  bottom: 10px;
  right: 40px;
  z-index: 9999;
  background-color: #000f83;
  color: #fff;
  font-size: 20px;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 100%;
  -webkit-box-shadow: 0 0 3px #333;
          box-shadow: 0 0 3px #333;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  visibility: hidden;
  opacity: 0;
  border: solid 1px rgba(255, 255, 255, 0.4);
}

#back-top.on {
  bottom: 30px;
  visibility: visible;
  opacity: 1;
}

@media only screen and (max-width: 500px) {
  #back-top {
    bottom: 50px;
    right: -10px;
    z-index: 9999;
    background-color: #000f83;
    color: #fff;
    font-size: 14px;
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 100%;
    -webkit-box-shadow: 0 0 3px #333;
            box-shadow: 0 0 3px #333;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    visibility: hidden;
    opacity: 0;
  }
  #back-top.on {
    bottom: 50px;
    right: 10px;
  }
}

.inner {
  width: 96%;
  margin: 0 auto;
  max-width: 1920px;
}

.block {
  padding-bottom: 50px;
}

/* PC/SP切り分け */
.sp_disp {
  display: none;
}

@media screen and (max-width: 800px) {
  .sp_disp {
    display: block;
  }
}

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

.shadow {
  -webkit-filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.4));
          filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.4));
}

/** Loader **/
#loader-bg {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0px;
  left: 0px;
  background: #fff;
  z-index: 9998;
  text-align: center;
  -webkit-transition: all 0.4s ease-in-out 1.2s;
  transition: all 0.4s ease-in-out 1.2s;
}

#loader-bg.loaded {
  top: -100vh;
  opacity: 0;
  visibility: hidden;
}

#loader {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 240px;
  height: 200px;
  margin-top: -100px;
  margin-left: -120px;
  text-align: center;
  z-index: 9999;
  /*
  .loading-bar {
    width: 150px;
    height: 1px;
    background-color: #ccc;
    margin: 30px auto;
    overflow: hidden;
    position: relative;
    &::after {
      content: "";
      display: block;
      width: 150px;
      height: 1px;
      background-color: $color-01;
      position: absolute;
      top: 0;
      left: -150px;
      transition: all 0.8s ease-in;
    }
  }
  .loading-bar.on {
    &::after {
      left: 0px;
    }

  }*/
}

#loader .img-loader {
  display: block;
  margin: 20px auto;
  max-width: 100px;
}

#loader p {
  font-size: 12px;
  margin-top: 30px;
  letter-spacing: 1.5px;
}

#loader .num1 {
  -webkit-animation: flash1 1s 0s infinite;
          animation: flash1 1s 0s infinite;
}

#loader .num2 {
  -webkit-animation: flash2 1s 0s infinite;
          animation: flash2 1s 0s infinite;
}

#loader .num3 {
  -webkit-animation: flash3 1s 0s infinite;
          animation: flash3 1s 0s infinite;
}

#loader-logo {
  margin: 0 auto;
  width: 100%;
  -webkit-transition: all 0.4s cubic-bezier(0.56, 0.1, 0.36, 0.98) 0.2s;
  transition: all 0.4s cubic-bezier(0.56, 0.1, 0.36, 0.98) 0.2s;
  opacity: 0;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
}

#loader-logo.on {
  opacity: 1;
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}

/* ==============================

	ファイル読み込み

============================== */
/* CSS Remedy */
*, ::after, ::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  line-sizing: normal;
}

body {
  margin: 0;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.17rem;
}

h4 {
  font-size: 1rem;
}

h5 {
  font-size: .83rem;
}

h6 {
  font-size: .67rem;
}

h1 {
  margin: .67em 0;
}

pre {
  white-space: pre-wrap;
}

hr {
  border-style: solid;
  border-width: 1px 0 0;
  color: inherit;
  height: 0;
  overflow: visible;
}

audio, canvas, embed, iframe, img, object, svg, video {
  display: block;
  vertical-align: middle;
  max-width: 100%;
}

canvas, img, svg, video {
  height: auto;
}

audio {
  width: 100%;
}

img {
  border-style: none;
}

svg {
  overflow: hidden;
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

[type=checkbox], [type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

a, p, div, ul, li, h1, h2, h3, h4, h5 {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

ul {
  list-style-type: none;
}

/* ==============================

ヘッダー

============================== */
.header_info {
  padding: 20px 0;
}

header .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

@media screen and (max-width: 800px) {
  .header_L {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 auto;
  }
}

@media screen and (max-width: 800px) {
  .header_L p {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 2;
    order: 2;
  }
}

.header_logo img {
  width: 220px;
}

@media screen and (max-width: 800px) {
  .header_logo img {
    width: 180px;
  }
}

.header_L h1 {
  font-weight: normal;
  font-size: 0.777rem;
  margin-left: 20px;
  margin-right: 20px;
}

@media screen and (max-width: 800px) {
  .header_L h1 {
    margin-bottom: 10px;
    width: 100%;
    line-height: 1.4;
    display: none;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 1;
    order: 1;
  }
}

@media screen and (max-width: 1400px) {
  .header_L h1 .sp_disp {
    display: block;
  }
}

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

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

.header_R .header_tel {
  text-align: center;
  font-size: 12px;
  margin-right: 30px;
}

.header_R .header_tel img {
  width: 280px;
}

.header_tel_top {
  font-weight: bold;
  margin-bottom: 4px;
}

.emergency_btn a {
  text-align: center;
  display: block;
  color: #fff;
  font-size: 0.875rem;
  font-weight: bold;
  width: 280px;
  height: 70px;
  line-height: 70px;
  background: #ba0000;
  border-radius: 4px;
  border: solid 1px #000f83;
  letter-spacing: 1px;
  position: relative;
}

@media screen and (max-width: 1024px) {
  .emergency_btn a {
    width: 240px;
    height: 60px;
    line-height: 60px;
  }
}

.emergency_btn a::after {
  content: "";
  display: block;
  opacity: 0.8;
  position: absolute;
  top: -5px;
  left: -5px;
  width: 288px;
  height: 78px;
  z-index: -1;
  border-radius: 4px;
  background: #ccc;
}

@media screen and (max-width: 1024px) {
  .emergency_btn a::after {
    width: 248px;
    height: 68px;
  }
}

.emergency_btn a i {
  margin-right: 10px;
}

.emergency_btn a:hover {
  padding-left: 8px;
}

/* g-nav */
.g-nav {
  width: 100%;
  background-color: #000f83;
}

@media screen and (max-width: 800px) {
  .g-nav {
    padding: 0;
  }
}

.g-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 0;
}

.g-nav li {
  padding: 0 5px;
  border-right: 1px solid #f2f3f9;
}

.g-nav li:nth-of-type(1) {
  border-left: 1px solid #f2f3f9;
}

.g-nav a {
  color: #f2f3f9;
  font-size: 0.875rem;
  font-weight: bold;
  display: block;
  padding: 0 20px;
  letter-spacing: 1px;
}

@media screen and (max-width: 1024px) {
  .g-nav a {
    padding: 0 14px;
  }
}

.g-nav a:hover,
.g-nav .on {
  color: #ffeb00;
}

@media only screen and (max-width: 800px) {
  #g-nav_wrapper nav {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    overflow: auto;
    padding-top: 0px;
    background: #000f83;
    font-size: 1rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    z-index: 8888;
  }
  #g-nav_wrapper .g-nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 0;
  }
  #g-nav_wrapper nav ul li {
    display: block;
    padding: 15px 10px;
    border: none;
    border-bottom: 1px solid #fff;
  }
  #g-nav_wrapper nav ul li:last-of-type {
    border-bottom: none;
  }
  .sp-menu_info {
    text-align: center;
  }
  .sp-menu_emergency {
    background-color: #fff;
    border-radius: 20px;
    color: #000f83;
    font-weight: bold;
    width: 80%;
    margin: 20px auto;
    font-size: 14px;
  }
  .g-nav .sp-menu_tel {
    margin: 10px 0;
  }
  .sp-menu_time {
    color: #fff;
    font-size: 12px;
  }
  .g-nav .sp-menu_sns {
    margin-top: 20px;
  }
  .g-nav .sp-menu_sns a {
    display: inline-block;
    padding: 0 5px;
  }
  .btn-gnavi {
    background-color: #000f83;
    position: fixed;
    top: 30px;
    right: 20px;
    width: 50px;
    height: 40px;
    z-index: 9999;
    border-radius: 3px;
    -webkit-box-shadow: 0 0 3px #666;
            box-shadow: 0 0 3px #666;
  }
}

@media only screen and (max-width: 800px) and (max-width: 600px) {
  .btn-gnavi {
    background-color: #000f83;
    position: fixed;
    top: 30px;
    right: 10px;
    width: 40px;
  }
}

@media only screen and (max-width: 800px) {
  .btn-gnavi span {
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: absolute;
    width: 25px;
    height: 2px;
    left: 12.5px;
    background-color: #fff;
    border-radius: 4px;
  }
}

@media only screen and (max-width: 800px) and (max-width: 600px) {
  .btn-gnavi span {
    left: 7.5px;
  }
}

@media only screen and (max-width: 800px) {
  .btn-gnavi span:nth-of-type(1) {
    top: 10px;
  }
  .btn-gnavi span:nth-of-type(2) {
    top: 19px;
  }
  .btn-gnavi span:nth-of-type(3) {
    bottom: 10px;
  }
  .btn-gnavi.open span:nth-of-type(1) {
    -webkit-transform: translateY(20px) rotate(-45deg);
    transform: translateY(0px) rotate(-45deg);
    top: 19px;
  }
  .btn-gnavi.open span:nth-of-type(2) {
    opacity: 0;
  }
  .btn-gnavi.open span:nth-of-type(3) {
    -webkit-transform: translateY(-20px) rotate(45deg);
    transform: translateY(0px) rotate(45deg);
    bottom: 19px;
  }
  #g-nav_wrapper .contents section p {
    position: absolute;
    top: 50%;
    width: 30%;
    line-height: 1.4;
    font-size: 20px;
    color: #fff;
    text-shadow: 0 0 6px #666;
  }
  #g-nav_wrapper .contents section:nth-child(odd) p {
    left: 10%;
  }
  #g-nav_wrapper .contents section:nth-child(even) p {
    right: 10%;
  }
}

/* お知らせ */
.header_topics {
  background-color: #ffeb00;
  color: #000f83;
  font-weight: bold;
  padding: 10px 0;
}

.header_topics dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.777rem;
}

.header_topics dt {
  padding: 0px 10px;
  font-size: 0.777rem;
}

.header_topics dd {
  letter-spacing: 1px;
}

.header_topics a {
  color: #000f83;
  text-decoration: underline;
}

/* ==============================

お問い合わせ

============================== */
/* お問い合わせ */
.top_contact {
  border-top: 1px solid #f3f3f3;
  background: url("../images/top_contact_bg.svg") no-repeat left top -10px;
  padding-top: 60px;
  margin-bottom: 60px;
}

@media screen and (max-width: 800px) {
  .top_contact {
    background: url("../images/top_contact_bg.svg") no-repeat center top 0px/contain;
  }
}

.top_contact_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 90%;
  margin: 0 auto;
}

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

@media screen and (max-width: 600px) {
  .top_contact_inner {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/* 左カラム */
.top_contact_ttl {
  width: 30%;
  text-align: center;
  color: #ba0000;
}

@media screen and (max-width: 1024px) {
  .top_contact_ttl {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 600px) {
  .top_contact_ttl {
    width: 100%;
    margin: 0 auto;
  }
}

.top_contact_ttl h2 span {
  border-bottom: 4px solid #ba0000;
  padding-bottom: 5px;
}

/* 右カラム */
.top_contact_content {
  width: 70%;
  padding-top: 60px;
}

@media screen and (max-width: 1024px) {
  .top_contact_content {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 600px) {
  .top_contact_content {
    margin: 0 auto;
  }
}

@media screen and (max-width: 600px) {
  .top_contact_content li {
    width: 100%;
    margin: 0 auto;
  }
}

/* 問い合わせ情報 */
.top_contact_info {
  background-color: #000f83;
  text-align: center;
  color: #fff;
  padding: 35px 20px;
  -webkit-box-shadow: 0 0 3px #666;
          box-shadow: 0 0 3px #666;
  border-radius: 3px;
}

@media screen and (max-width: 600px) {
  .top_contact_info {
    -webkit-box-shadow: none;
            box-shadow: none;
    border-radius: 0px;
  }
}

.top_contact_info h3 {
  font-size: 1rem;
  font-weight: normal;
  margin-bottom: 25px;
}

.top_contact_info h3 a {
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  border-bottom: 1px solid #fff;
}

.top_contact_info_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

@media screen and (max-width: 600px) {
  .top_contact_info_inner {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.top_contact_info_inner h4 {
  background-color: #fff;
  border-radius: 100px;
  color: #000f83;
  font-size: 1rem;
  width: 80%;
  margin: 0 auto;
  margin-bottom: 20px;
  padding: 2px 20px;
  margin-bottom: 15px;
}

@media screen and (max-width: 800px) {
  .top_contact_info_inner h4 {
    width: 96%;
  }
}

.top_contact_tel {
  width: 46%;
  margin: 0 auto;
}

@media screen and (max-width: 600px) {
  .top_contact_tel {
    width: 96%;
    margin: 0 auto;
    margin-bottom: 10px;
  }
}

.top_contact_mail {
  width: 46%;
}

@media screen and (max-width: 600px) {
  .top_contact_mail {
    width: 96%;
    margin: 0 auto;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 600px) {
  .top_contact_tel img {
    width: 80%;
    margin: 0 auto;
  }
}

.top_contact_info_tel {
  width: 100%;
  max-width: 400px;
  margin: 0 auto 15px;
  padding-top: 10px;
}

.top_contact_info_time {
  font-size: 0.875rem;
  line-height: 1.8;
  font-weight: bold;
}

/* ご依頼までの流れ */
.top_contact_flow {
  margin: 60px auto 0;
  max-width: 900px;
}

.top_contact_flow h3 {
  background-color: #000f83;
  display: inline-block;
  font-size: 0.777rem;
  color: #fff;
  border-radius: 20px;
  padding: 5px 20px;
  margin-left: 20px;
  letter-spacing: 1px;
}

@media screen and (max-width: 600px) {
  .top_contact_flow h3 {
    font-size: 14px;
  }
}

.top_contact_flow_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  border: 2px solid #000f83;
  padding: 40px 20px 20px 20px;
  border-radius: 3px;
  margin-top: -20px;
}

@media screen and (max-width: 600px) {
  .top_contact_flow_inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 96%;
    margin-left: auto;
    margin-right: auto;
    padding: 40px 20px 10px 20px;
  }
}

.top_contact_flow_inner li {
  width: 10%;
  text-align: center;
  color: #000f83;
}

@media screen and (max-width: 600px) {
  .top_contact_flow_inner li {
    width: 20%;
    margin-bottom: 20px;
  }
}

.top_contact_flow_inner img {
  margin: 0 auto;
  max-height: 50px;
  width: auto;
}

@media screen and (max-width: 600px) {
  .top_contact_flow_inner img {
    max-height: 40px;
  }
}

.top_contact_flow_inner li h4 {
  font-size: 0.777rem;
  margin-top: 15px;
}

@media screen and (max-width: 600px) {
  .top_contact_flow_inner li h4 {
    margin-top: 10px;
  }
}

.top_contact_flow_inner li:first-of-type {
  width: 20%;
}

.top_contact_flow_inner li .arrow {
  -webkit-animation: arrow 1300ms ease-in-out infinite;
          animation: arrow 1300ms ease-in-out infinite;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}

@media screen and (max-width: 600px) {
  .top_contact_flow_inner li .arrow {
    width: 25px;
  }
}

@-webkit-keyframes arrow {
  0% {
    margin-left: 10px;
    opacity: 0;
  }
  40% {
    margin-left: 20px;
    opacity: 1;
  }
  60% {
    margin-left: 20px;
    opacity: 1;
  }
  90% {
    margin-left: 30px;
    opacity: 0;
  }
  100% {
    margin-left: 30px;
    opacity: 0;
  }
}

@keyframes arrow {
  0% {
    margin-left: 10px;
    opacity: 0;
  }
  40% {
    margin-left: 20px;
    opacity: 1;
  }
  60% {
    margin-left: 20px;
    opacity: 1;
  }
  90% {
    margin-left: 30px;
    opacity: 0;
  }
  100% {
    margin-left: 30px;
    opacity: 0;
  }
}

/* トピックス */
.top_topics {
  background: url("../images/top_topics_bg.svg") no-repeat left top -10px;
  background-color: #f2f3f9;
  padding-top: 60px;
  padding-bottom: 60px;
  overflow: visible;
}

@media screen and (max-width: 800px) {
  .top_topics {
    background: url("../images/top_topics_bg.svg") no-repeat center top 0px/contain;
    padding-bottom: 0;
  }
}

.top_topics_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 90%;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .top_topics_inner {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/* 左カラム */
.top_topics_ttl {
  width: 30%;
  text-align: center;
  color: #000f83;
}

@media screen and (max-width: 600px) {
  .top_topics_ttl {
    width: 100%;
    margin: 0 auto 40px;
  }
}

.top_topics_ttl_en {
  font-size: 12px;
  font-weight: normal;
  letter-spacing: 1px;
}

.top_topics_ttl h2 {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 30px;
}

.top_topics_ttl h2 span {
  border-bottom: 4px solid #000f83;
  padding-bottom: 5px;
}

.top_topics_ttl_txt {
  color: #000;
}

.top_topics_ttl_btn a {
  background-color: #ba0000;
  color: #fff;
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 0.875rem;
}

.top_topics_ttl_btn a:hover {
  opacity: 0.7;
}

/* 右カラム */
.top_topics_content {
  width: 70%;
}

@media screen and (max-width: 1024px) {
  .top_topics_content {
    width: 100%;
    margin-top: 60px;
    padding: 20px;
  }
}

@media screen and (max-width: 600px) {
  .top_topics_content {
    width: 96%;
    margin: 0 auto;
    margin-bottom: 40px;
  }
}

.top_topics_content .top_topic-list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.top_topics_content .top_topic-list li {
  padding: 20px;
  width: calc(100% / 3);
}

@media screen and (max-width: 800px) {
  .top_topics_content .top_topic-list li {
    width: 50%;
  }
}

@media screen and (max-width: 600px) {
  .top_topics_content .top_topic-list li {
    width: 100%;
  }
}

.top_topics_content .top_topic-list li a {
  color: #333;
  display: block;
}

.top_topics_content .top_topic-list li a:hover {
  opacity: 0.8;
}

.top_topics_content .top_topic-list .wrap-img {
  margin-bottom: 10px;
}

.top_topics_content .top_topic-list .wrap-img img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 1400px) {
  .top_topics_content .top_topic-list .wrap-img img {
    height: 180px;
  }
}

@media screen and (max-width: 800px) {
  .top_topics_content .top_topic-list .wrap-img img {
    height: 200px;
  }
}

@media screen and (max-width: 600px) {
  .top_topics_content .top_topic-list .wrap-img img {
    height: auto;
  }
}

.top_topics_content .top_topic-list h3 {
  font-size: 0.875rem;
  margin-bottom: 10px;
}

.top_topics_content .top_topic-list .desc {
  font-size: 0.777rem;
}

/*
.top_topics_content ul {
  display: flex;
  flex-wrap: wrap;
  @include mq-sp {
    width: 100%;
    flex-direction: column;
  }
}

.top_topics_content li {
  width: 28%;
  display: flex;
  margin-right: 5%;
  margin-bottom: 30px;
  @include mq-1400 {
    width: 45%;
  }
  @include mq-1024 {
    width: 50%;
    margin-bottom: 40px;
    margin-right: 0;
  }
  @include mq-sp {
    width: 100%;
    margin: 0 auto 10px;
  }


.top_topics_img {
  width: 35%;
  margin-right: 5%;
  @include mq-1024 {
    width: 25%;
  }
}

.top_topics_img img {
  width: 100%;
}

.top_topics_txt {
  width: 60%;
  color: $color-01;

h3 {
  font-size: $font_size-16;
  font-weight: bold;
  margin-bottom: 10px;
}

a {
  color: $color-01;
}

p {
  font-size:$font-size-14;
}

}

}

@media only screen and (max-width: 768px) {
  .top_topics_content li:nth-of-type(1n) {
    padding-right: 10px;
  }
  .top_topics_content li:nth-of-type(2n) {
    padding-left: 10px;
  }
}
@media only screen and (max-width: 500px) {
  .top_topics_content li:nth-child(2) {
    margin: 0;
    margin-bottom: 10px;
  }

  .top_topics_content li h3 {
    width: 100%;
    font-size: 16px;
    margin-bottom: 10px;
  }
  .top_topics_content li img {
    width: 90%;
    margin: 0 auto 20px;
    border-radius: 3px;
    display: block;
  }
  .top_topics_content li:nth-of-type(1n) {
    padding-right: 0px;
  }
  .top_topics_content li:nth-of-type(2n) {
    padding-left: 0px;
  }
}
*/
/** フッター採用情報 **/
.bn-recruit {
  background-color: #000f83;
  color: #fff;
}

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

@media screen and (max-width: 600px) {
  .bn-recruit .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.bn-recruit .col {
  width: 50%;
}

@media screen and (max-width: 600px) {
  .bn-recruit .col {
    width: 100% !important;
  }
}

.bn-recruit .col-1 {
  background-size: cover;
  background-position: center;
  height: 300px;
  background-image: url(../images/bn-recruit2.jpg);
}

@media only screen and (-webkit-min-device-pixel-ratio: 2) {
  .bn-recruit .col-1 {
    background-image: url(../images/bn-recruit3@2x.jpg);
  }
}

@media screen and (max-width: 600px) {
  .bn-recruit .col-1 {
    height: 200px;
  }
}

.bn-recruit .col-2 {
  text-align: center;
  padding: 50px;
  cursor: pointer;
}

@media screen and (max-width: 600px) {
  .bn-recruit .col-2 {
    padding: 30px 10px;
  }
}

.bn-recruit h3 {
  font-size: 1.6rem;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.bn-recruit p {
  font-size: 1rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
  line-height: 180%;
}

.bn-recruit .bt-circle {
  background-color: #ffeb00;
  border-radius: 100px;
  color: #000f83;
  font-weight: bold;
  padding: 5px 10px 3px;
  max-width: 150px;
  display: block;
  margin: auto;
  font-size: 0.875rem;
}

/* ==============================

フッター

============================== */
/* フッターナビゲーション */
.f-nav {
  background-color: #000f83;
  border-top: solid 1px rgba(255, 255, 255, 0.4);
  border-bottom: solid 1px rgba(255, 255, 255, 0.4);
}

.f-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 15px 0;
}

.f-nav ul li {
  padding: 0 5px;
}

.f-nav ul a {
  color: #fff;
  font-size: 0.777rem;
  display: block;
  padding: 0 10px;
}

/* フッター */
footer {
  color: #fff;
  text-align: center;
  background: url("../images/souko.jpg") no-repeat center center/cover;
  position: relative;
}

footer::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

footer .in {
  position: relative;
  z-index: 3;
  padding: 100px 0 0;
}

.footer_name {
  font-size: 0.777rem;
  width: 220px;
  margin: 0 auto;
  margin-bottom: 40px;
}

.footer_name p {
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.footer_address {
  margin: 0 auto;
  margin-bottom: 20px;
  font-size: 0.875rem;
  display: inline-block;
  letter-spacing: 1px;
}

.footer_address dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0px;
}

@media screen and (max-width: 800px) {
  .footer_address dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    margin-bottom: 10px;
  }
}

.footer_address dt {
  display: inline-block;
  text-align-last: justify;
  text-justify: inter-ideograph;
  width: 120px;
}

@media screen and (max-width: 800px) {
  .footer_address dt {
    margin: 0 auto;
    font-weight: bold;
  }
}

.footer_address dd {
  margin-left: 0;
}

@media screen and (max-width: 800px) {
  .footer_address dd {
    margin: 0 auto;
  }
}

.footer_tel {
  margin-bottom: 40px;
}

@media screen and (max-width: 600px) {
  .footer_tel {
    margin-bottom: 30px;
  }
}

.footer_tel p {
  letter-spacing: 1px;
}

.footer_tel a {
  color: #fff;
}

.footer_sns {
  margin-bottom: 60px;
}

.footer_sns img {
  display: inline-block;
  margin: 0 8px;
}

@media screen and (max-width: 600px) {
  .footer_sns img {
    width: 35px;
  }
}

.copyright {
  background-color: #000f83;
  padding: 5px 0 10px 0;
  margin-top: 100px;
}

.copyright small {
  font-size: 10px;
  letter-spacing: 2px;
  color: #ddd;
  padding: 0;
}

.fix_bottom {
  display: none;
}

@media only screen and (max-width: 500px) {
  /* フッターフロートボタン */
  .fix_bottom {
    display: block;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 999;
    border-top: solid 1px rgba(255, 255, 255, 0.2);
  }
  .fix_bottom ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .fix_bottom_tel,
  .fix_bottom_mail {
    display: block;
    background-color: #000f83;
    width: 25%;
    text-align: center;
    height: 40px;
    line-height: 40px;
    border-right: solid 1px rgba(255, 255, 255, 0.2);
  }
  .fix_bottom_emergency {
    width: 50%;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    background-color: #ba0606;
    height: 40px;
    line-height: 40px;
  }
  .fix_bottom_tel a,
  .fix_bottom_mail a,
  .fix_bottom_emergency a {
    color: #fff;
    text-align: center;
    display: block;
  }
}

/* bodyにis-menu-openクラスが付いたら#contentをぼかしフィルター付与 */
body.is-menu-open .header_info,
body.is-menu-open section,
body.is-menu-open footer {
  pointer-events: none;
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
  -webkit-filter: blur(8px);
  -moz-filter: blur(8px);
  -ms-filter: blur(8px);
  filter: blur(8px);
}

/* ==================================

上下左右にフェードイン

================================== */
/* 左から右へ速く */
.fade-right-fast {
  opacity: 0;
  -webkit-transform: translate(-100px, 0);
          transform: translate(-100px, 0);
  -webkit-transition: all 500ms;
  transition: all 500ms;
}

.scroll-right-fast {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/* 右から左へ速く */
.fade-left-fast {
  opacity: 0;
  -webkit-transform: translate(100px, 0);
          transform: translate(100px, 0);
  -webkit-transition: all 500ms;
  transition: all 500ms;
}

.scroll-left-fast {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/* 上から下へ速く */
.fade-bottom-fast {
  opacity: 0;
  -webkit-transform: translate(0, -100px);
          transform: translate(0, -100px);
  -webkit-transition: all 500ms;
  transition: all 500ms;
}

.scroll-bottom-fast {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/* 下から上へ速く */
.fade-top-fast {
  opacity: 0;
  -webkit-transform: translate(0, 100px);
          transform: translate(0, 100px);
  -webkit-transition: all 500ms;
  transition: all 500ms;
}

.scroll-top-fast {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/* 左から右へ遅く */
.fade-right-slow {
  opacity: 0;
  -webkit-transform: translate(-100px, 0);
          transform: translate(-100px, 0);
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.scroll-right-slow {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/* 右から左へ遅く */
.fade-left-slow {
  opacity: 0;
  -webkit-transform: translate(100px, 0);
          transform: translate(100px, 0);
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.scroll-left-slow {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/* 上から下へ遅く */
.fade-bottom-slow {
  opacity: 0;
  -webkit-transform: translate(0, -100px);
          transform: translate(0, -100px);
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.scroll-bottom-slow {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/* 下から上へ遅く */
.fade-top-slow {
  opacity: 0;
  -webkit-transform: translate(0, 100px);
          transform: translate(0, 100px);
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.scroll-top-slow {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/* Scroll Trigger */
.trigger {
  -webkit-transition: opacity 1.0s ease, -webkit-transform 1.0s ease;
  transition: opacity 1.0s ease, -webkit-transform 1.0s ease;
  transition: transform 1.0s ease, opacity 1.0s ease;
  transition: transform 1.0s ease, opacity 1.0s ease, -webkit-transform 1.0s ease;
}

.trigger-1 {
  -webkit-transition: opacity 1.0s ease .1s, -webkit-transform 1.0s ease .1s;
  transition: opacity 1.0s ease .1s, -webkit-transform 1.0s ease .1s;
  transition: transform 1.0s ease .1s, opacity 1.0s ease .1s;
  transition: transform 1.0s ease .1s, opacity 1.0s ease .1s, -webkit-transform 1.0s ease .1s;
}

.trigger-2 {
  -webkit-transition: opacity 1.0s ease .2s, -webkit-transform 1.0s ease .2s;
  transition: opacity 1.0s ease .2s, -webkit-transform 1.0s ease .2s;
  transition: transform 1.0s ease .2s, opacity 1.0s ease .2s;
  transition: transform 1.0s ease .2s, opacity 1.0s ease .2s, -webkit-transform 1.0s ease .2s;
}

.trigger-3 {
  -webkit-transition: opacity 1.0s ease .3s, -webkit-transform 1.0s ease .3s;
  transition: opacity 1.0s ease .3s, -webkit-transform 1.0s ease .3s;
  transition: transform 1.0s ease .3s, opacity 1.0s ease .3s;
  transition: transform 1.0s ease .3s, opacity 1.0s ease .3s, -webkit-transform 1.0s ease .3s;
}

.trigger-4 {
  -webkit-transition: opacity 1.0s ease .4s, -webkit-transform 1.0s ease .4s;
  transition: opacity 1.0s ease .4s, -webkit-transform 1.0s ease .4s;
  transition: transform 1.0s ease .4s, opacity 1.0s ease .4s;
  transition: transform 1.0s ease .4s, opacity 1.0s ease .4s, -webkit-transform 1.0s ease .4s;
}

.trigger-5 {
  -webkit-transition: opacity 1.0s ease .5s, -webkit-transform 1.0s ease .5s;
  transition: opacity 1.0s ease .5s, -webkit-transform 1.0s ease .5s;
  transition: transform 1.0s ease .5s, opacity 1.0s ease .5s;
  transition: transform 1.0s ease .5s, opacity 1.0s ease .5s, -webkit-transform 1.0s ease .5s;
}

.trigger-6 {
  -webkit-transition: opacity 1.0s ease .6s, -webkit-transform 1.0s ease .6s;
  transition: opacity 1.0s ease .6s, -webkit-transform 1.0s ease .6s;
  transition: transform 1.0s ease .6s, opacity 1.0s ease .6s;
  transition: transform 1.0s ease .6s, opacity 1.0s ease .6s, -webkit-transform 1.0s ease .6s;
}

.trigger-7 {
  -webkit-transition: opacity 1.0s ease .7s, -webkit-transform 1.0s ease .7s;
  transition: opacity 1.0s ease .7s, -webkit-transform 1.0s ease .7s;
  transition: transform 1.0s ease .7s, opacity 1.0s ease .7s;
  transition: transform 1.0s ease .7s, opacity 1.0s ease .7s, -webkit-transform 1.0s ease .7s;
}

.trigger-8 {
  -webkit-transition: opacity 1.0s ease .8s, -webkit-transform 1.0s ease .8s;
  transition: opacity 1.0s ease .8s, -webkit-transform 1.0s ease .8s;
  transition: transform 1.0s ease .8s, opacity 1.0s ease .8s;
  transition: transform 1.0s ease .8s, opacity 1.0s ease .8s, -webkit-transform 1.0s ease .8s;
}

.trigger-9 {
  -webkit-transition: opacity 1.0s ease .9s, -webkit-transform 1.0s ease .9s;
  transition: opacity 1.0s ease .9s, -webkit-transform 1.0s ease .9s;
  transition: transform 1.0s ease .9s, opacity 1.0s ease .9s;
  transition: transform 1.0s ease .9s, opacity 1.0s ease .9s, -webkit-transform 1.0s ease .9s;
}

.trigger-10 {
  -webkit-transition: opacity 1.0s ease 1s, -webkit-transform 1.0s ease 1s;
  transition: opacity 1.0s ease 1s, -webkit-transform 1.0s ease 1s;
  transition: transform 1.0s ease 1s, opacity 1.0s ease 1s;
  transition: transform 1.0s ease 1s, opacity 1.0s ease 1s, -webkit-transform 1.0s ease 1s;
}

.trigger-11 {
  -webkit-transition: opacity 2s ease 1.2s, -webkit-transform 2s ease 1.2s;
  transition: opacity 2s ease 1.2s, -webkit-transform 2s ease 1.2s;
  transition: transform 2s ease 1.2s, opacity 2s ease 1.2s;
  transition: transform 2s ease 1.2s, opacity 2s ease 1.2s, -webkit-transform 2s ease 1.2s;
}

.invisible {
  opacity: 0.0;
}

.visible {
  opacity: 1.0;
}

.fromTopIn {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1.0;
}

.fromTopOut {
  -webkit-transform: translate(0, -20px);
          transform: translate(0, -20px);
  opacity: 0.0;
}

.fromBottomIn {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1.0;
}

.fromBottomOut {
  -webkit-transform: translate(0, 20px);
          transform: translate(0, 20px);
  opacity: 0.0;
}

.fromLeftIn {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1.0;
}

.fromLeftOut {
  -webkit-transform: translate(-20px, 0);
          transform: translate(-20px, 0);
  opacity: 0.0;
}

.fromRightIn {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1.0;
}

.fromRightOut {
  -webkit-transform: translate(20px, 0);
          transform: translate(20px, 0);
  opacity: 0.0;
}

.scaleUpIn {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  opacity: 1.0;
}

.scaleUpOut {
  -webkit-transform: scale(1.2, 1.2);
          transform: scale(1.2, 1.2);
  opacity: 0.0;
}

.scaleDownIn {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  opacity: 1.0;
}

.scaleDownOut {
  -webkit-transform: scale(0.7, 0.7);
          transform: scale(0.7, 0.7);
  opacity: 0.0;
}

.rotateIn {
  -webkit-transform: rotate(0deg) scale(1);
          transform: rotate(0deg) scale(1);
  opacity: 1.0;
}

.rotateOut {
  -webkit-transform: rotate(30deg) scale(0.9);
          transform: rotate(30deg) scale(0.9);
  opacity: 0.0;
}

.txt-slide {
  position: relative;
}

.txt-slide::before {
  content: '';
  position: absolute;
  right: 0;
  width: 105%;
  height: 105%;
  background-color: #f2f3f9;
}

.img {
  position: relative;
}

.img img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

.img:before {
  content: '';
  position: absolute;
  right: 0;
  width: 110%;
  height: 110%;
  background-color: #f2f3f9;
}

.slidein.on::before {
  -webkit-animation: slidein 0.4s cubic-bezier(0.72, 0, 0.58, 1) 0.2s forwards;
          animation: slidein 0.4s cubic-bezier(0.72, 0, 0.58, 1) 0.2s forwards;
}

@-webkit-keyframes slidein {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}

@keyframes slidein {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}

/* ==============================

	ボタン

============================== */
/* 黄色 大 */
.btn_a a {
  position: relative;
  padding: 15px 0;
  display: block;
  text-align: center;
  background-color: #ffeb00;
  color: #000f83;
  font-weight: bold;
  width: 100%;
  max-width: 280px;
  border-radius: 3px;
  font-size: 0.875rem;
  -webkit-box-shadow: 0 0 3px #666;
          box-shadow: 0 0 3px #666;
}

@media screen and (max-width: 600px) {
  .btn_a a {
    padding: 8px 0;
    border-radius: 2px;
  }
}

.btn_a a::before {
  position: absolute;
  top: 50%;
  display: block;
  content: "";
  width: 20px;
  height: 1px;
  background-color: #000f83;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

@media screen and (max-width: 600px) {
  .btn_a a::before {
    width: 20px;
  }
}

.btn_a a:hover::before {
  width: 30px;
}

@media screen and (max-width: 600px) {
  .btn_a a:hover::before {
    width: 20px;
  }
}

/* 紺色 大 */
.btn_b a {
  position: relative;
  padding: 20px 0;
  display: block;
  text-align: center;
  background-color: #000f83;
  color: #fff;
  font-weight: bold;
  width: 280px;
  border-radius: 4px;
  font-size: 16px;
  -webkit-box-shadow: 0 0 3px #666;
          box-shadow: 0 0 3px #666;
}

.btn_b a:before {
  position: absolute;
  top: 50%;
  display: block;
  content: "";
  width: 20px;
  height: 1px;
  background-color: #fff;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.btn_b a:hover {
  opacity: 0.7;
}

.btn_b a:hover:before {
  width: 30px;
}

/* 黄色 小 */
.btn_c a {
  position: relative;
  padding: 10px 0;
  display: block;
  text-align: center;
  background-color: #ffeb00;
  color: #000f83;
  font-weight: bold;
  width: 160px;
  border-radius: 3px;
  font-size: 13px;
  -webkit-box-shadow: 0 0 3px #666;
          box-shadow: 0 0 3px #666;
}

.btn_c a:before {
  position: absolute;
  top: 50%;
  display: block;
  content: "";
  width: 20px;
  height: 1px;
  background-color: #000f83;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.btn_c a:hover {
  color: #000f83;
  opacity: 0.7;
}

.btn_c a:hover:before {
  width: 20px;
  background-color: #000f83;
}

/* 紺色 特大 */
.btn_d a {
  position: relative;
  padding: 30px 0;
  display: block;
  text-align: center;
  background-color: #000f83;
  color: #fff;
  font-weight: bold;
  max-width: 500px;
  border-radius: 4px;
  letter-spacing: 1px;
}

@media screen and (max-width: 600px) {
  .btn_d a {
    padding: 20px 0;
  }
}

.btn_d a:before {
  position: absolute;
  top: 50%;
  display: block;
  content: "";
  width: 20px;
  height: 1px;
  background-color: #fff;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.btn_d a:hover {
  opacity: 0.7;
}

.btn_d a:hover:before {
  width: 40px;
}

/* 黄色 contact */
.btn_e a {
  position: relative;
  padding: 20px 0;
  display: block;
  text-align: center;
  background-color: #ffeb00;
  color: #000f83;
  font-size: 20px;
  font-weight: bold;
  width: 100%;
  max-width: 360px;
  border-radius: 4px;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

@media screen and (max-width: 800px) {
  .btn_e a {
    max-width: 90%;
    font-size: 16px;
    margin: 0 auto;
  }
}

.btn_e a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  margin-right: 10px;
}

.btn_e a:hover {
  background-color: #fff;
  color: #000f83;
}

/* 黄色 エントリー */
.btn-entry a {
  margin: 0 0 0 auto;
  display: block;
  background-color: #ffeb00;
  color: #000f83;
  font-weight: bold;
  font-size: 16px;
  width: 260px;
  height: auto;
  padding: 20px 10px;
  text-align: center;
  border-radius: 3px;
  border: solid 1px #000f83;
  -webkit-box-shadow: 0 0 3px #000f83;
  box-shadow: 0 0 3px #000f83;
}

/* 送信ボタン　赤 */
.bt-submit {
  margin: 0 auto;
  display: block;
  background-color: #ba0000;
  color: #fff;
  border: none;
  font-weight: bold;
  font-size: 0.777rem;
  letter-spacing: 1px;
  width: 260px;
  height: auto;
  padding: 20px 10px;
  text-align: center;
  border-radius: 3px;
  cursor: pointer;
  -webkit-box-shadow: 0 0 3px #333;
  box-shadow: 0 0 3px #333;
}

/* サービス申し込み用ボタン */
.bt-sv {
  display: block;
  color: #ba0000;
  border: solid 1px #ba0000;
  font-size: 1rem;
  padding: 10px;
  max-width: 250px;
  text-align: center;
  border-radius: 100px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  font-weight: bold;
  position: relative;
  overflow: hidden;
}

.bt-sv::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #ba0000;
  position: absolute;
  top: 0;
  left: -100%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  z-index: -1;
}

.bt-sv:hover {
  color: #fff;
}

.bt-sv:hover::before {
  left: 0;
}

/* もっと見る用ボタン */
.bt-more {
  display: block;
  color: #000f83;
  border: solid 1px #000f83;
  font-size: 0.875rem;
  padding: 10px;
  max-width: 200px;
  text-align: center;
  border-radius: 100px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  font-weight: bold;
  position: relative;
  overflow: hidden;
  margin: 30px auto;
}

.bt-more::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000f83;
  position: absolute;
  top: 0;
  left: -100%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  z-index: 0;
}

.bt-more:hover {
  color: #fff;
}

.bt-more:hover::before {
  left: 0;
}

/* ==============================

	メイン画像

============================== */
/* メイン画像 */
.mv {
  position: relative;
  background-image: url("../images/mv_bg-02.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  height: 800px;
  overflow: hidden;
}

@media screen and (max-width: 1400px) {
  .mv {
    height: 500px;
  }
}

@media screen and (max-width: 800px) {
  .mv {
    height: 400px;
  }
}

@media screen and (max-width: 600px) {
  .mv {
    height: 300px;
  }
}

.mv::after {
  content: "";
  display: block;
  width: 100%;
  height: 800px;
  background-color: rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 1400px) {
  .mv::after {
    height: 500px;
  }
}

@media screen and (max-width: 800px) {
  .mv::after {
    height: 400px;
  }
}

@media screen and (max-width: 600px) {
  .mv::after {
    height: 300px;
  }
}

.mv_copy {
  position: absolute;
  right: 150px;
  bottom: 24%;
  z-index: 15;
  max-width: 700px;
  -webkit-transition: all .6s ease-in-out 1.4s;
  transition: all .6s ease-in-out 1.4s;
  opacity: 0;
  -webkit-transform: scale(2);
          transform: scale(2);
}

@media screen and (max-width: 1400px) {
  .mv_copy {
    right: 250px;
    bottom: 60px;
    max-width: 500px;
  }
}

@media screen and (max-width: 1024px) {
  .mv_copy {
    right: 0;
    bottom: 0px;
    max-width: 700px;
    top: 80px;
    left: 40px;
  }
}

@media screen and (max-width: 800px) {
  .mv_copy {
    right: 0;
    bottom: 0px;
    top: 30px;
    left: 0px;
  }
}

@media screen and (max-width: 600px) {
  .mv_copy {
    top: 40px;
    width: 100%;
  }
}

.mv_copy.on {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.mv_copy .txt-img-pc {
  display: block;
}

@media screen and (max-width: 1024px) {
  .mv_copy .txt-img-pc {
    display: none;
  }
}

.mv_copy .txt-img-sp {
  display: none;
}

@media screen and (max-width: 1024px) {
  .mv_copy .txt-img-sp {
    display: block;
    width: 100%;
  }
}

.mv_layer {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 860px;
  height: 570px;
  z-index: 20;
}

@media screen and (max-width: 1400px) {
  .mv_layer {
    width: 400px;
    height: 200px;
  }
}

@media screen and (max-width: 1024px) {
  .mv_layer {
    height: 500px;
  }
}

@media screen and (max-width: 800px) {
  .mv_layer {
    width: 400px;
    height: 200px;
  }
}

@media screen and (max-width: 600px) {
  .mv_layer {
    width: 200px;
  }
}

.mv_layer_inner {
  position: absolute;
  right: 50px;
  bottom: 130px;
  text-align: center;
  color: #fff;
  font-weight: bold;
}

@media screen and (max-width: 1400px) {
  .mv_layer_inner {
    right: 30px;
    bottom: 60px;
  }
}

@media screen and (max-width: 800px) {
  .mv_layer_inner {
    right: 20px;
    bottom: 20px;
  }
}

@media screen and (max-width: 600px) {
  .mv_layer_inner {
    right: 10px;
    bottom: 10px;
  }
}

/*
.mv_layer .btn_a a {
	margin: 0 auto;
	@include mq-1400{
		padding: 15px 0;
		width: 100%;
		font-size: 14px;
	}
}
*/
.mv_layer_en {
  font-size: 12px;
  font-weight: normal;
  letter-spacing: 1px;
  color: #ddd;
}

@media screen and (max-width: 1400px) {
  .mv_layer_en {
    font-size: 10px;
  }
}

.mv_layer_jp {
  font-size: 1.6rem;
  margin: 10px 0 30px;
  letter-spacing: 2px;
}

@media screen and (max-width: 800px) {
  .mv_layer_jp {
    margin: 2px 0 10px;
  }
}

@media screen and (max-width: 600px) {
  .mv_layer_jp {
    font-size: 14px;
  }
}

.mv_layer_bg {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 10;
}

@media screen and (max-width: 1400px) {
  .mv_layer_bg {
    right: -200px;
  }
}

@media screen and (max-width: 1024px) {
  .mv_layer_bg {
    right: -280px;
  }
}

@media screen and (max-width: 800px) {
  .mv_layer_bg {
    right: 0px;
    width: 60%;
    max-height: 300px;
  }
}

@media screen and (max-width: 600px) {
  .mv_layer_bg {
    width: 80%;
  }
}

@media only screen and (max-width: 768px) {
  .mv_copy img {
    width: 100%;
  }
  .mv_layer_bg img {
    width: 500px;
  }
}

@media only screen and (max-width: 767px) {
  .header_topics {
    font-size: 14px;
  }
  .header_topics dd {
    margin-left: 10px;
  }
}

/* ==============================

イントロダクション

============================== */
/* イントロダクション */
.top_intro {
  background-color: #f2f3f9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.top_intro_txt {
  width: 58%;
  font-size: 1rem;
  padding: 5%;
  line-height: 2.5;
  letter-spacing: 1px;
  background: url("../images/top_intro_bg.svg") no-repeat right top;
  background-size: 400px;
}

@media screen and (max-width: 1024px) {
  .top_intro_txt {
    line-height: 1.8;
  }
}

@media screen and (max-width: 600px) {
  .top_intro_txt {
    width: 96%;
    margin: 0 auto;
    line-height: 2;
    font-size: 14px;
    background: none;
    padding: 8%;
  }
}

.top_intro_txt .btn_b a {
  margin: 0 auto;
  margin-top: 40px;
}

.top_intro_img {
  width: 42%;
  margin-top: -50px;
  z-index: 50;
}

.top_intro_img img {
  -webkit-box-shadow: 0 0 3px #666;
          box-shadow: 0 0 3px #666;
}

@media only screen and (max-width: 1400px) {
  .top_intro_img {
    margin-top: -20px;
  }
}

/* ==============================

安全性への取り組み

============================== */
/* 安全性への取り組み */
.top_safe {
  background-color: #f2f3f9;
  padding-bottom: 60px;
}

@media screen and (max-width: 1024px) {
  .top_safe {
    padding-top: 60px;
  }
}

@media screen and (max-width: 600px) {
  .top_safe {
    padding-bottom: 0px;
  }
}

.top_safe_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 90%;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .top_safe_inner {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.top_safe_ttl {
  width: 30%;
  text-align: center;
  color: #000f83;
}

@media screen and (max-width: 1024px) {
  .top_safe_ttl {
    width: 50%;
  }
}

@media screen and (max-width: 600px) {
  .top_safe_ttl {
    width: 80%;
    margin: 0 auto;
  }
}

.top_safe_content {
  width: 70%;
}

@media screen and (max-width: 1024px) {
  .top_safe_content {
    width: 100%;
    padding: 20px;
  }
}

/* 左カラム内容 */
.title-en {
  font-size: 12px;
  font-weight: normal;
  letter-spacing: 1px;
}

.title-h2 {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.title-h2 span {
  border-bottom: 4px solid #000f83;
  padding-bottom: 10px;
}

.title-p {
  color: #000;
  font-size: 1rem;
  line-height: 1.8;
  padding: 0 20px;
}

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

@media screen and (max-width: 600px) {
  .title-p br {
    display: block;
  }
}

/* 右カラム内容 */
.top_safe_content ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 1024px) {
  .top_safe_content ul {
    width: 100%;
    padding: 20px;
  }
}

@media screen and (max-width: 600px) {
  .top_safe_content ul {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.top_safe_content li {
  width: 32%;
}

@media screen and (max-width: 600px) {
  .top_safe_content li {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 40px;
  }
}

.top_safe_content li:nth-child(2) {
  margin: 0 2%;
}

@media screen and (max-width: 600px) {
  .top_safe_content li:nth-child(2) {
    margin: 0;
    margin-bottom: 60px;
  }
}

.top_safe_content h3 {
  font-size: 1rem;
  color: #000f83;
  vertical-align: middle;
  height: 110px;
  display: table;
  text-align: center;
  margin: 0 auto;
  letter-spacing: 1px;
}

@media screen and (max-width: 600px) {
  .top_safe_content h3 {
    font-size: 16px;
  }
}

.top_safe_content h3 span {
  display: table-cell;
  vertical-align: middle;
}

.top_safe_content li:nth-child(1) > h3 {
  background: url("../images/top_safe_cont_bg01.svg") no-repeat center bottom -5px;
  text-align: left;
}

.top_safe_content li:nth-child(2) > h3 {
  background: url("../images/top_safe_cont_bg02.svg") no-repeat center bottom -5px;
}

.top_safe_content li:nth-child(3) > h3 {
  background: url("../images/top_safe_cont_bg03.svg") no-repeat center bottom -5px;
}

.top_safe_content li .btn_c a {
  margin: 0 auto;
  margin-top: 30px;
}

/* ==============================

サービス・料金

============================== */
/* サービス・料金 */
.top_services {
  background: url("../images/top_service_bg.svg") no-repeat left top -10px;
  margin-bottom: 60px;
}

@media screen and (max-width: 1024px) {
  .top_services {
    padding-top: 60px;
  }
}

@media screen and (max-width: 800px) {
  .top_services {
    background: url("../images/top_service_bg.svg") no-repeat center top 0px/contain;
    padding-bottom: 0;
  }
}

.top_services_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 90%;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .top_services_inner {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/* 左カラム */
.top_services_ttl {
  width: 30%;
  text-align: center;
  color: #000f83;
}

@media screen and (max-width: 1024px) {
  .top_services_ttl {
    width: 50%;
  }
}

@media screen and (max-width: 600px) {
  .top_services_ttl {
    width: 70%;
    margin: 0 auto;
  }
}

/* 右カラム */
.top_services_content {
  width: 70%;
  padding-top: 60px;
}

@media screen and (max-width: 1024px) {
  .top_services_content {
    width: 100%;
    padding: 20px;
  }
}

.top_services_content ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 1024px) {
  .top_services_content ul {
    width: 100%;
    padding: 20px;
  }
}

@media screen and (max-width: 600px) {
  .top_services_content ul {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.top_services_content li {
  width: 32%;
}

@media screen and (max-width: 600px) {
  .top_services_content li {
    width: 100%;
    margin: 0 auto 60px;
  }
}

.top_services_content li:nth-child(2) {
  margin: 0 2%;
}

@media screen and (max-width: 600px) {
  .top_services_content li:nth-child(2) {
    margin: 0 auto 60px;
  }
}

.top_services_content h3 {
  font-size: 0.875rem;
  color: #fff;
  background: #000f83;
  width: 180px;
  line-height: 34px;
  border-radius: 17px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

@media screen and (max-width: 600px) {
  .top_services_content h3 {
    font-size: 14px;
  }
}

.top_services_content li .btn_c a {
  margin: 0 auto;
  margin-top: 30px;
}

.top_services_btn {
  text-align: center;
  margin-top: 80px;
}

@media screen and (max-width: 600px) {
  .top_services_btn {
    margin-top: 0px;
  }
}

.top_services_btn .btn_d a {
  margin: 0 auto;
  margin-top: 20px;
  -webkit-box-shadow: 0 0 3px #666;
          box-shadow: 0 0 3px #666;
}

@media screen and (max-width: 600px) {
  .top_services_btn .btn_d a {
    max-width: 280px;
  }
}

.txt-area {
  font-weight: bold;
  color: #000f83;
}

.page-hd {
  text-align: center;
  color: #fff;
  background-image: url(../images/page-hd@2x.jpg);
  height: 150px;
  background-size: cover;
  padding-top: 30px;
}

.page-hd .eng {
  font-size: 12px;
  margin-bottom: 10px;
  letter-spacing: 1px;
  color: #ccc;
}

.page-title {
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.bnav li {
  display: inline-block;
  color: #ccc;
  font-size: 13px;
}

.bnav li::after {
  content: " / ";
}

.bnav li a {
  color: #fff;
}

.bnav li a:hover {
  text-decoration: underline;
}

.title-area {
  margin-bottom: 80px;
  text-align: center;
}

@media screen and (max-width: 600px) {
  .title-area {
    margin-bottom: 30px;
  }
}

.title-area .eng {
  font-size: 12px;
  margin-bottom: 10px;
  letter-spacing: 1px;
  color: #000f83;
  display: block;
}

@media screen and (max-width: 600px) {
  .title-area .eng {
    font-size: 10px;
  }
}

.title-area .title {
  color: #000f83;
  font-size: 1.6rem;
  border-bottom: solid 2px #000f83;
  padding-bottom: 10px;
  display: inline-block;
}

.title-area .lead {
  margin-top: 20px;
  font-weight: bold;
  line-height: 180%;
  font-size: 1rem;
}

@media screen and (max-width: 600px) {
  .title-area .lead {
    margin-top: 20px;
    font-weight: normal;
  }
}

.sec-common {
  padding: 60px 0 !important;
}

@media screen and (max-width: 600px) {
  .sec-common {
    padding: 30px 0 !important;
  }
}

.sv-title {
  font-size: 1rem;
}

/** よくある質問 **/
.faq {
  padding: 0 20px 100px;
  text-align: center;
}

@media screen and (max-width: 600px) {
  .faq {
    padding: 30px 10px;
  }
}

.faq .wrap-faq {
  max-width: 800px;
  margin: auto;
  border-bottom: solid 1px #000f83;
}

.faq .acd-label {
  text-align: left;
  border-top: solid 1px #000f83;
  color: #000f83;
  font-weight: bold;
  padding: 20px;
  position: relative;
  display: block;
  font-size: 0.875rem;
}

@media screen and (max-width: 600px) {
  .faq .acd-label {
    color: #000f83;
    display: block;
    padding: 10px 25px 10px 10px;
    text-align: left;
  }
}

.acd-check {
  display: none;
}

.acd-content {
  height: 0;
  opacity: 0;
  padding: 0 20px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  visibility: hidden;
  text-align: left;
  font-size: 0.875rem;
}

@media screen and (max-width: 600px) {
  .acd-content {
    padding: 0 10px;
  }
}

.acd-check:checked + .acd-label + .acd-content {
  height: auto;
  opacity: 1;
  padding: 20px;
  visibility: visible;
}

@media screen and (max-width: 600px) {
  .acd-check:checked + .acd-label + .acd-content {
    padding: 10px;
  }
}

.faq .acd-label:hover,
.acd-check:checked + .acd-label {
  background-color: #000f83;
  color: #fff;
  cursor: pointer;
}

.acd-label::after {
  content: "＋";
  position: absolute;
  top: 50%;
  margin-top: -10px;
  right: 10px;
}

.acd-check:checked + .acd-label::after {
  content: " − ";
}

/* ==============================

	選ばれる理由

============================== */
.reason {
  padding: 60px;
  background: url("../images/top_intro_bg.svg") no-repeat right top;
  background-size: 400px;
  background-color: #f2f3f9;
}

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

@media screen and (max-width: 600px) {
  .reason {
    padding: 40px 10px !important;
  }
}

.reason-list {
  background-color: #fff;
  max-width: 900px;
  margin: auto;
  padding: 50px 50px 40px;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 3px #666;
          box-shadow: 0 0 3px #666;
}

@media screen and (max-width: 600px) {
  .reason-list {
    padding: 30px 20px;
  }
}

.reason-list dt {
  color: #000f83;
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 10px;
}

@media screen and (max-width: 600px) {
  .reason-list dt {
    font-size: 18px;
  }
}

.reason-list dd {
  margin: 0 0 30px 0;
  font-size: 0.875rem;
}

.reason-list dt:nth-of-type(1)::before {
  content: "1. ";
  font-size: 35px;
}

@media screen and (max-width: 800px) {
  .reason-list dt:nth-of-type(1)::before {
    font-size: 30px;
  }
}

.reason-list dt:nth-of-type(2)::before {
  content: "2. ";
  font-size: 35px;
}

@media screen and (max-width: 800px) {
  .reason-list dt:nth-of-type(2)::before {
    font-size: 30px;
  }
}

.reason-list dt:nth-of-type(3)::before {
  content: "3. ";
  font-size: 35px;
}

@media screen and (max-width: 800px) {
  .reason-list dt:nth-of-type(3)::before {
    font-size: 30px;
  }
}

.strength {
  padding: 60px;
  padding-top: 0;
  background-color: #f2f3f9;
  text-align: center;
}

@media screen and (max-width: 800px) {
  .strength {
    padding: 0 20px 60px;
  }
}

.list-strength {
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
}

@media screen and (max-width: 600px) {
  .list-strength {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
  }
}

.list-strength li {
  color: #000f83;
  margin-bottom: 20px;
  font-size: 1rem;
  font-weight: bold;
  text-indent: -30px;
  margin-left: 30px;
}

@media screen and (max-width: 600px) {
  .list-strength li {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: bold;
    text-indent: -26px;
    margin-left: 30px;
  }
}

.list-strength li:last-child {
  margin-bottom: 0;
}

.list-strength li::before {
  content: "●";
  margin-right: 10px;
}

.bd-01 {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(0%, #fcee21));
  background: linear-gradient(transparent 60%, #fcee21 0%);
  font-weight: bold;
}

.page-safe {
  padding: 60px;
  text-align: center;
}

@media screen and (max-width: 800px) {
  .page-safe {
    padding: 30px 20px;
  }
}

@media screen and (max-width: 600px) {
  .page-safe {
    padding: 30px 10px;
  }
}

.wrap-safe-flex {
  max-width: 800px;
  margin: 0 auto;
}

@media screen and (max-width: 800px) {
  .wrap-safe-flex {
    display: block;
  }
}

.wrap-safe-flex .col {
  margin-bottom: 50px;
  position: relative;
}

@media screen and (max-width: 800px) {
  .wrap-safe-flex .col {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 600px) {
  .wrap-safe-flex .col {
    margin-bottom: 20px;
    position: relative;
  }
}

.wrap-safe-flex .col-1 {
  width: 40%;
}

@media screen and (max-width: 800px) {
  .wrap-safe-flex .col-1 {
    display: none;
    width: 100%;
  }
}

.wrap-safe-flex .col-2 {
  width: 100% !important;
  text-align: left;
  padding-top: 1px;
}

.wrap-safe-flex .col-2 .safe-img {
  width: 100%;
  margin-bottom: 20px;
  -webkit-box-shadow: 0 0 3px #333;
          box-shadow: 0 0 3px #333;
}

.wrap-safe-flex .hd {
  color: #000f83;
  margin: 30px 0 30px 70px;
  font-size: 1.3rem;
}

@media screen and (max-width: 800px) {
  .wrap-safe-flex .hd {
    margin-left: 0px;
  }
}

.wrap-safe-flex .desc {
  font-size: 0.875rem;
  line-height: 180%;
}

.wrap-safe-flex .num {
  position: absolute;
  top: 0px;
  left: 10px;
  z-index: -1;
  height: 80px;
  opacity: 1;
}

@media screen and (max-width: 800px) {
  .wrap-safe-flex .num {
    left: 50px;
  }
}

@media screen and (max-width: 800px) {
  .wrap-safe-flex .col-2 img.sp_disp {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }
}

/* ==============================

	サービス・料金

============================== */
.wrap-services {
  padding: 60px;
}

@media screen and (max-width: 1024px) {
  .wrap-services {
    padding: 60px 10px;
  }
}

@media screen and (max-width: 800px) {
  .wrap-services {
    padding: 30px 10px 60px;
  }
}

@media screen and (max-width: 600px) {
  .wrap-services {
    padding: 30px 20px;
  }
}

.wrap-services .inner {
  max-width: 1400px;
}

.page-catch {
  text-align: center;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 60px;
}

.sv {
  margin-bottom: 100px;
}

@media screen and (max-width: 1024px) {
  .sv {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (max-width: 600px) {
  .sv {
    display: block;
    margin-bottom: 50px;
  }
}

.sv .col-1 {
  width: 40%;
}

.sv .col-1 img {
  width: 100%;
  -webkit-box-shadow: 0 0 3px #666;
          box-shadow: 0 0 3px #666;
}

@media screen and (max-width: 1024px) {
  .sv .col-1 {
    width: 80% !important;
    margin: 0 auto;
    padding: 20px;
  }
}

@media screen and (max-width: 800px) {
  .sv .col-1 {
    width: 100% !important;
    padding: 20px 0;
  }
}

.sv .col-2 {
  width: 60%;
  padding: 20px 60px;
  color: #000f83;
}

@media screen and (max-width: 1024px) {
  .sv .col-2 {
    width: 80% !important;
    padding: 20px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 800px) {
  .sv .col-2 {
    width: 100% !important;
    padding: 20px 0;
  }
}

.sv .col-2 .bt-sv {
  margin: 60px auto 0;
}

.sv-title {
  background-color: #000f83;
  color: #fff;
  text-align: center;
  max-width: 160px;
  margin: 0 0 30px;
  border-radius: 100px;
  letter-spacing: 1px;
  padding: 2px 5px;
}

@media screen and (max-width: 600px) {
  .sv-title {
    margin: 0 auto 30px;
  }
}

.sv-desc {
  margin-bottom: 50px;
  font-size: 0.875rem;
  line-height: 2;
}

.title-price {
  font-size: 0.875rem;
  margin-bottom: 10px;
}

.title-price .sm {
  font-size: 12px;
  font-weight: normal;
}

.wrap-sv-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 1px;
  margin-bottom: 5px;
}

.wrap-sv-table th {
  background-color: #000f83;
  color: #fff;
  text-align: center;
  letter-spacing: 2px;
  font-size: 0.777rem;
  padding: 5px 10px;
}

.wrap-sv-table th.sm {
  font-size: 12px;
}

.wrap-sv-table td {
  background-color: #f2f3f9;
  color: #000f83;
  text-align: center;
  letter-spacing: 1px;
  padding: 20px 10px;
  font-size: 0.777rem;
}

.sv-note {
  font-size: 12px;
  text-align: right;
  display: block;
}

.sv-2 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media screen and (max-width: 1024px) {
  .sv-2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (max-width: 1024px) {
  .sv-2 .col-2 {
    padding: 20px;
  }
}

@media screen and (max-width: 800px) {
  .sv-2 .col-2 {
    padding: 20px 0;
  }
}

.sv-3 .sv-title {
  background-color: #ba0000;
}

.sv-3 .wrap-sv-table td {
  padding: 10px;
}

@media screen and (max-width: 800px) {
  .sv-3 .wrap-sv-table td {
    padding: 5px;
  }
}

/** AREA **/
.wrap-area {
  padding: 60px;
  text-align: center;
}

@media screen and (max-width: 600px) {
  .wrap-area {
    padding: 60px 20px;
  }
}

.wrap-area .wrap-sv-table {
  max-width: 600px;
  margin: 0 auto 60px;
  border-collapse: separate;
  border-spacing: 1px;
}

.wrap-area .wrap-sv-table td {
  text-align: left;
}

.wrap-area .wrap-map {
  text-align: center;
  position: relative;
  z-index: 1;
}

.wrap-area .wrap-map::after {
  content: "";
  display: block;
  width: 250px;
  height: 250px;
  position: absolute;
  border-radius: 100%;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  top: 50%;
  left: 50%;
  margin: -125px 0 0 -125px;
  background-color: rgba(255, 235, 0, 0.4);
  z-index: 2;
  -webkit-animation: circle 1500ms infinite;
          animation: circle 1500ms infinite;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (max-width: 600px) {
  .wrap-area .wrap-map::after {
    width: 150px;
    height: 150px;
    -webkit-animation: circle-sp 1500ms infinite;
            animation: circle-sp 1500ms infinite;
    margin: -75px 0 0 -75px;
  }
}

@-webkit-keyframes circle {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  50% {
    width: 250px;
    height: 250px;
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
    opacity: 0;
  }
}

@keyframes circle {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  50% {
    width: 250px;
    height: 250px;
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
    opacity: 0;
  }
}

@-webkit-keyframes circle-sp {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  50% {
    width: 150px;
    height: 150px;
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
    opacity: 0;
  }
}

@keyframes circle-sp {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  50% {
    width: 150px;
    height: 150px;
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
    opacity: 0;
  }
}

.wrap-area .map {
  margin: 0 auto;
  max-width: 700px;
}

@media screen and (max-width: 800px) {
  .wrap-area .map {
    max-width: 100%;
    height: auto;
  }
}

/* ==============================

	会社案内

============================== */
.wrap-about {
  position: relative;
  margin-bottom: 100px;
  padding-top: 40px;
}

.wrap-about .inner {
  width: 100%;
}

.wrap-about .about-img {
  max-width: 50%;
  -webkit-transition: all .6s ease-in-out;
  transition: all .6s ease-in-out;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
}

@media screen and (max-width: 800px) {
  .wrap-about .about-img {
    max-width: 100%;
  }
}

.wrap-about .about-img.on {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}

.wrap-about .about-txts {
  max-width: 50%;
  background-color: #fff;
  padding: 50px;
  position: absolute;
  top: 30%;
  left: 47%;
  -webkit-transition: all .6s ease-in-out .3s;
  transition: all .6s ease-in-out .3s;
  -webkit-clip-path: inset(0 0 0 100%);
          clip-path: inset(0 0 0 100%);
}

.wrap-about .about-txts.on {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}

@media screen and (max-width: 1024px) {
  .wrap-about .about-txts {
    top: 20%;
    padding: 30px;
  }
}

@media screen and (max-width: 800px) {
  .wrap-about .about-txts {
    max-width: 70%;
    left: 35%;
  }
}

@media screen and (max-width: 600px) {
  .wrap-about .about-txts {
    position: inherit;
    max-width: 95%;
  }
}

.wrap-about .txt-about {
  max-width: 500px;
  width: 100%;
  margin-bottom: 30px;
  display: block;
  -webkit-transition: all .6s ease-in-out 1s;
  transition: all .6s ease-in-out 1s;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
}

@media screen and (max-width: 1024px) {
  .wrap-about .txt-about {
    width: 80%;
  }
}

@media screen and (max-width: 600px) {
  .wrap-about .txt-about {
    width: 100%;
  }
}

.wrap-about .txt-about.on {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}

.wrap-about .about-p {
  line-height: 2;
  font-size: 1rem;
  -webkit-transition: all .6s ease-in-out 1.2s;
  transition: all .6s ease-in-out 1.2s;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
}

@media screen and (max-width: 1024px) {
  .wrap-about .about-p {
    line-height: 1.8;
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 800px) {
  .wrap-about .about-p {
    line-height: 1.8;
  }
}

@media screen and (max-width: 600px) {
  .wrap-about .about-p {
    font-size: 14px;
  }
}

.wrap-about .about-p.on {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}

.wrap-about .bg {
  width: 90%;
  position: absolute;
  top: 80px;
  right: 0;
  height: 100%;
  z-index: -1;
  background-color: #f2f3f9;
  padding-bottom: 30px;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  -webkit-clip-path: inset(0 0 0 100%);
          clip-path: inset(0 0 0 100%);
}

@media screen and (max-width: 1400px) {
  .wrap-about .bg {
    height: 110%;
  }
}

@media screen and (max-width: 800px) {
  .wrap-about .bg {
    height: 110%;
  }
}

@media screen and (max-width: 600px) {
  .wrap-about .bg {
    height: 100%;
  }
}

.wrap-about .bg.on {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}

.wrap-about-3 .inner {
  max-width: 900px;
}

.wrap-about-3 .sv-title {
  margin: 0 auto 60px;
}

.wrap-about-3 .flex .col-1 {
  width: 30%;
  text-align: center;
}

.wrap-about-3 .flex .col-1 img {
  max-width: 300px;
  width: 100%;
  margin: 0 auto 10px;
}

.wrap-about-3 .flex .col-1 .cap {
  font-size: 0.777rem;
}

@media screen and (max-width: 600px) {
  .wrap-about-3 .flex .col-1 {
    width: 100%;
  }
}

.wrap-about-3 .flex .col-2 {
  width: 70%;
  padding-left: 50px;
}

.wrap-about-3 .flex .col-2 p {
  margin-bottom: 1em;
  line-height: 2;
  font-size: 1rem;
}

@media screen and (max-width: 800px) {
  .wrap-about-3 .flex .col-2 {
    padding-right: 40px;
  }
}

@media screen and (max-width: 600px) {
  .wrap-about-3 .flex .col-2 {
    width: 100%;
    padding: 30px 20px;
  }
}

.wrap-about-2 {
  padding: 60px;
}

@media screen and (max-width: 800px) {
  .wrap-about-2 {
    padding: 10px;
    margin-bottom: 50px;
  }
}

.wrap-about-2 .sv-title {
  margin: 0 auto 60px;
}

.wrap-about-2 .about-table {
  border-spacing: 0;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

.wrap-about-2 .about-table th {
  color: #000f83;
  padding: 20px;
  border-bottom: solid 1px #ddd;
  font-size: 0.875rem;
  white-space: nowrap;
}

.wrap-about-2 .about-table td {
  padding: 20px;
  border-bottom: solid 1px #ddd;
  font-size: 0.875rem;
}

/* ==============================

	採用情報

============================== */
.mv-recruit {
  position: relative;
  padding-bottom: 60px;
}

.mv-recruit .bg {
  background-color: #f2f3f9;
  width: 95%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  height: 110%;
  display: block;
  -webkit-transition: all 0.4s cubic-bezier(0.72, 0, 0.58, 1);
  transition: all 0.4s cubic-bezier(0.72, 0, 0.58, 1);
  -webkit-clip-path: inset(0 0 0 100%);
          clip-path: inset(0 0 0 100%);
}

.mv-recruit .bg.on {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}

.mv-recruit .wrap-mv {
  position: relative;
  height: 100%;
}

@media screen and (max-width: 600px) {
  .mv-recruit .wrap-mv {
    font-size: 18px;
    height: 70%;
  }
}

.mv-recruit .mv-img {
  width: 95%;
  display: block;
  margin: 0;
  height: 90%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.4s cubic-bezier(0.72, 0, 0.58, 1) 0.2s;
  transition: all 0.4s cubic-bezier(0.72, 0, 0.58, 1) 0.2s;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
}

.mv-recruit .mv-img.on {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}

@media screen and (max-width: 1400px) {
  .mv-recruit .mv-img {
    width: auto;
  }
}

@media screen and (max-width: 600px) {
  .mv-recruit .mv-img {
    width: auto;
  }
}

.mv-recruit .mv-txt-1 {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  position: absolute;
  top: 50px;
  left: 50%;
  background-color: #000f83;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  z-index: 2;
  letter-spacing: 10px;
  padding: 50px 10px;
  -webkit-box-shadow: 0 0 3px #666;
          box-shadow: 0 0 3px #666;
  -webkit-transition: all 0.6s ease-in-out 1s;
  transition: all 0.6s ease-in-out 1s;
  opacity: 0;
  margin-top: -30px;
}

@media screen and (max-width: 600px) {
  .mv-recruit .mv-txt-1 {
    left: 25%;
    font-size: 18px;
  }
}

.mv-recruit .mv-txt-1.on {
  opacity: 1;
  margin-top: 0px;
}

.mv-recruit .mv-txt-1::before {
  content: "";
  display: block;
  height: 30px;
  width: 1px;
  background-color: #fff;
  position: absolute;
  top: 10px;
  left: 50%;
}

.mv-recruit .mv-txt-2 {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  position: absolute;
  top: 150px;
  left: 43%;
  background-color: #000f83;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  z-index: 3;
  letter-spacing: 10px;
  padding: 50px 10px 10px;
  -webkit-box-shadow: 0 0 3px #666;
          box-shadow: 0 0 3px #666;
  -webkit-transition: all 0.6s ease-in-out 1.6s;
  transition: all 0.6s ease-in-out 1.6s;
  opacity: 0;
  margin-top: -30px;
}

@media screen and (max-width: 1400px) {
  .mv-recruit .mv-txt-2 {
    top: 100px;
    height: 450px;
  }
}

@media screen and (max-width: 800px) {
  .mv-recruit .mv-txt-2 {
    left: 38%;
  }
}

@media screen and (max-width: 600px) {
  .mv-recruit .mv-txt-2 {
    left: 10%;
    font-size: 18px;
    height: 350px;
  }
}

.mv-recruit .mv-txt-2.on {
  opacity: 1;
  margin-top: 0px;
}

.mv-recruit .mv-txt-2::before {
  content: "";
  display: block;
  height: 30px;
  width: 1px;
  background-color: #fff;
  position: absolute;
  top: 10px;
  left: 50%;
}

.mv-recruit .wrap-mv .btn-entry {
  position: absolute;
  bottom: 100px;
  right: 50px;
  -webkit-transition: all 0.6s ease-in-out 2.4s;
  transition: all 0.6s ease-in-out 2.4s;
  opacity: 0;
  margin-top: -40px;
}

@media screen and (max-width: 1024px) {
  .mv-recruit .wrap-mv .btn-entry {
    right: 20px;
  }
}

.mv-recruit .wrap-mv .btn-entry.on {
  opacity: 1;
  margin-top: 0px;
}

.mv-recruit .wrap-mv .btn-entry a {
  display: block;
  background-color: #ffeb00;
  color: #000f83;
  font-weight: bold;
  font-size: 0.875rem;
  width: 260px;
  height: auto;
  padding: 20px 10px;
  text-align: center;
  border-radius: 3px;
  border: solid 1px #000f83;
  -webkit-box-shadow: 0 0 3px #000f83;
          box-shadow: 0 0 3px #000f83;
}

@media screen and (max-width: 600px) {
  .mv-recruit .wrap-mv .btn-entry a {
    width: 200px;
  }
}

.mv-recruit .wrap-mv .btn-entry i {
  margin-right: 20px;
}

.message {
  margin: 60px;
}

@media screen and (max-width: 600px) {
  .message {
    margin: 30px 20px;
  }
}

.wrap-message {
  max-width: 800px;
  margin: 0 auto;
}

.wrap-message p {
  font-size: 1rem;
  line-height: 2;
  margin-bottom: 1em;
}

.wrap-message .name {
  text-align: right;
  font-size: 0.875rem;
  font-weight: bold;
  padding-top: 30px;
}

.how-we-work {
  background-color: #f2f3f9;
  padding: 60px 10px;
  margin-bottom: 60px;
}

@media screen and (max-width: 600px) {
  .how-we-work {
    padding: 30px 10px;
  }
}

.how-we-work .notice {
  font-size: 0.777rem;
  color: #000f83;
  margin-top: 20px;
}

@media screen and (max-width: 1024px) {
  .how-we-work .scroll {
    overflow-x: scroll;
  }
}

.how-we-work .list-how-we-work {
  padding: 60px 20px 40px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 1200px;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .how-we-work .list-how-we-work {
    padding: 20px 20px 40px;
  }
}

@media screen and (max-width: 600px) {
  .how-we-work .list-how-we-work {
    width: 800px;
  }
}

.how-we-work .list-how-we-work li {
  text-align: center;
  vertical-align: top;
  width: 272px;
  position: relative;
  /*
	&:nth-of-type(even) img{
		margin-top:50px
	}*/
}

.how-we-work .list-how-we-work .wrap-img {
  border-bottom: solid 1px #000f83;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
}

.how-we-work .list-how-we-work img {
  margin-bottom: 20px;
}

.how-we-work .list-how-we-work .p1 {
  font-size: 1rem;
  color: #000f83;
  font-weight: bold;
  position: relative;
  padding-top: 30px;
  line-height: 1.6;
}

.how-we-work .list-how-we-work .p1::after {
  content: "●";
  color: #000f83;
  font-size: 0.875rem;
  display: block;
  position: absolute;
  top: -13px;
  left: 50%;
}

.how-we-work .list-how-we-work .p1 .night {
  display: block;
  font-size: 0.777rem;
  margin-bottom: 5px;
}

.list-attractive {
  max-width: 800px;
  margin: 60px auto;
  padding-bottom: 50px;
}

@media screen and (max-width: 800px) {
  .list-attractive {
    padding: 0 20px 50px;
  }
}

@media screen and (max-width: 600px) {
  .list-attractive {
    margin: 30px 10px;
  }
}

.list-attractive li {
  font-size: 1rem;
  font-weight: bold;
  color: #000f83;
  margin-bottom: 15px;
  border-bottom: solid 1px #000f83;
  padding-bottom: 8px;
  text-indent: -1em;
  padding-left: 2em;
}

.list-attractive li i {
  margin-right: 1em;
}

.driver-message {
  margin: 60px;
  color: #000f83;
}

@media screen and (max-width: 600px) {
  .driver-message {
    margin: 30px 20px;
  }
}

.driver-message .wrap-driver {
  max-width: 1024px;
  margin: 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 800px) {
  .driver-message .wrap-driver {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

.driver-message .wrap-driver .col-1 {
  width: 25%;
  text-align: center;
}

@media screen and (max-width: 800px) {
  .driver-message .wrap-driver .col-1 {
    padding-top: 30px;
  }
}

@media screen and (max-width: 600px) {
  .driver-message .wrap-driver .col-1 {
    width: 100%;
  }
}

.driver-message .wrap-driver .col-1 img {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 100%;
  margin-bottom: 10px;
}

@media screen and (max-width: 600px) {
  .driver-message .wrap-driver .col-1 {
    max-width: 150px;
    margin: 0 auto 10px;
  }
}

.driver-message .wrap-driver .col-2 {
  width: 75%;
  padding-left: 50px;
}

@media screen and (max-width: 600px) {
  .driver-message .wrap-driver .col-2 {
    width: 100%;
    padding-left: 0px;
  }
}

.driver-message .wrap-driver dt {
  margin: 0 0 15px 0;
  font-size: 1rem;
  font-weight: bold;
}

.driver-message .wrap-driver dd {
  margin: 0 0 25px 0;
  font-size: 0.875rem;
  line-height: 1.8;
}

.driver-message .wrap-driver .name {
  font-size: 0.777rem;
}

.no-recruit {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 100px;
  font-weight: bold;
  color: #ba0000;
}

.entry-table {
  border-spacing: 0;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 600px) {
  .entry-table tr:last-child th {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .entry-table .no-bd {
    border-bottom: none;
  }
}

.entry-table th {
  color: #000f83;
  background-color: #f2f3f9;
  padding: 20px;
  border-bottom: solid 1px #ddd;
  font-size: 0.875rem;
  width: 30%;
}

@media screen and (max-width: 600px) {
  .entry-table th {
    width: 100%;
    display: block;
    text-align: left;
    padding: 10px 20px;
  }
}

.entry-table td {
  padding: 20px;
  border-bottom: solid 1px #ddd;
  font-size: 0.875rem;
  text-align: left;
}

@media screen and (max-width: 600px) {
  .entry-table td {
    width: 100%;
    display: block;
    padding: 10px 20px 30px;
  }
}

.entry-table .req {
  background-color: #ba0000;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  border-radius: 100px;
  padding: 0px 5px;
  float: right;
  width: 50px;
  text-align: center;
  line-height: 1.8;
}

@media screen and (max-width: 600px) {
  .entry-table .req {
    font-size: 10px;
    width: auto;
    padding: 0 10px;
  }
}

.entry-table .wpcf7-not-valid-tip {
  font-size: 0.777rem;
  font-weight: bold;
  display: block;
  margin-top: 3px;
}

.entry-table .note {
  font-size: 12px;
}

.entry-table input[type="text"],
.entry-table input[type="email"],
.entry-table textarea {
  border: solid 1px #ccc;
  border-radius: 3px;
}

.txt-size-1 {
  width: 100%;
  padding: 8px 3px;
  font-size: 0.875rem;
}

.txt-size-zip {
  width: 100px;
  padding: 8px 3px;
  font-size: 0.875rem;
  margin-bottom: 10px;
  margin-right: 10px;
}

.txt-message {
  width: 100%;
  padding: 8px 3px;
  font-size: 0.875rem;
  height: 200px;
}

/* ==============================

	お問い合わせ

============================== */
.contact-sec-01 {
  text-align: center;
}

.contact-sec-01 .sv-title {
  margin: 0 auto 30px;
}

.contact-sec-01 .note {
  color: #ba0000;
  margin-bottom: 50px;
  font-size: 1rem;
}

.contact-sec-01 .tel {
  margin: 0 auto;
  display: block;
  width: 100%;
  max-width: 400px;
  margin-bottom: 20px;
}

.contact-sec-01 .time {
  font-size: 0.777rem;
}

.form1 {
  margin: 60px auto 30px;
}

.form1 th {
  background-color: #000f83;
  color: #fff;
  border-bottom: none;
}

.form1 td {
  border-bottom: none;
}

@media screen and (max-width: 600px) {
  .form1 {
    margin: 60px auto 0px;
  }
}

.select-style {
  border: solid 1px #ccc;
  font-size: 0.875rem;
  padding: 10px;
  border-radius: 3px;
}

/* ==============================

	トピックス

============================== */
.wrap-topics {
  background-color: #f2f3f9;
}

.wrap-topics .inner {
  max-width: 1230px;
  padding-bottom: 50px;
}

@media screen and (max-width: 800px) {
  .wrap-topics .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.wrap-topics .main-contents {
  width: 100%;
  max-width: 900px;
  min-height: 500px;
  margin: 30px 0;
}

@media screen and (max-width: 800px) {
  .wrap-topics .main-contents {
    max-width: 100%;
  }
}

.wrap-topics .sidebar {
  width: 100%;
  max-width: 300px;
  min-height: 500px;
  margin: 30px 0 30px 30px;
}

@media screen and (max-width: 1024px) {
  .wrap-topics .sidebar {
    max-width: 250px;
  }
}

@media screen and (max-width: 800px) {
  .wrap-topics .sidebar {
    max-width: 100%;
    margin: 30px 0;
  }
}

.wrap-topics .wrap-entry {
  background-color: #fff;
  padding: 20px;
  min-height: 500px;
  margin-bottom: 50px;
  -webkit-box-shadow: 0 0 1px #666;
          box-shadow: 0 0 1px #666;
}

.wrap-topics .wrap-entry img {
  display: block;
  max-height: 700px;
  width: auto;
  margin: 0 auto;
}

.wrap-topics .wrap-entry p {
  font-size: 0.875rem;
  margin-bottom: 1em;
  padding: 0 20px;
  line-height: 2;
}

.wrap-topics .title {
  background-color: #f2f3f9;
  font-size: 1rem;
  padding: 20px;
  border-bottom: solid 1px #000f83;
  color: #000f83;
}

.wrap-topics .info {
  margin: 10px 0 30px;
  color: #000f83;
  font-size: 12px;
}

.wrap-topics .info a {
  color: #000f83;
  border-bottom: solid 1px #000f83;
  padding-bottom: 2px;
}

.wrap-topics .info .date {
  margin-right: 10px;
}

.wrap-topics .wrap-related-posts {
  background-color: #fff;
  padding: 20px;
  -webkit-box-shadow: 0 0 1px #666;
          box-shadow: 0 0 1px #666;
}

.wrap-topics .wrap-related-posts .title-h4 {
  color: #000f83;
  font-size: 0.875rem;
}

.wrap-topics .wrap-related-posts .flex {
  margin-top: 20px;
  padding: 20px 0;
  border-bottom: solid 1px #ddd;
}

@media screen and (max-width: 600px) {
  .wrap-topics .wrap-related-posts .col-1 {
    width: 100%;
    margin-bottom: 10px;
  }
}

.wrap-topics .wrap-related-posts .col-1 img {
  max-width: 200px;
  width: 100%;
  max-height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 600px) {
  .wrap-topics .wrap-related-posts .col-1 img {
    width: 100%;
    height: auto;
  }
}

.wrap-topics .wrap-related-posts .col-2 {
  width: 70%;
  padding-left: 30px;
}

@media screen and (max-width: 600px) {
  .wrap-topics .wrap-related-posts .col-2 {
    width: 100%;
    padding: 0 5px;
  }
}

.wrap-topics .wrap-related-posts .entry-title {
  font-size: 0.875rem;
  font-weight: bold;
  color: #000f83;
}

@media screen and (max-width: 600px) {
  .wrap-topics .wrap-related-posts .entry-title {
    font-size: 1rem;
  }
}

.wrap-topics .wrap-related-posts .desc {
  font-size: 0.777rem;
  margin-top: 1em;
}

@media screen and (max-width: 600px) {
  .wrap-topics .wrap-related-posts .desc {
    font-size: 0.875rem;
  }
}

.wrap-topics .sidebar .block {
  margin-bottom: 20px;
  background-color: #fff;
  padding: 30px;
  -webkit-box-shadow: 0 0 1px #666;
          box-shadow: 0 0 1px #666;
}

@media screen and (max-width: 1024px) {
  .wrap-topics .sidebar .block {
    padding: 20px;
  }
}

.wrap-topics .sidebar .sv-title {
  font-size: 0.875rem;
  margin: 0 auto 30px;
}

@media screen and (max-width: 800px) {
  .wrap-topics .sidebar ul {
    max-width: 300px;
    margin: auto;
  }
}

.wrap-topics .sidebar li {
  list-style: disc;
  list-style-position: outside;
  color: #000f83;
  margin-left: 20px;
  margin-bottom: 6px;
}

.wrap-topics .sidebar a {
  font-size: 0.875rem;
  font-weight: bold;
  border-bottom: solid 1px #000f83;
  padding-bottom: 3px;
  color: #000f83;
}

.wrap-topics .sidebar a:hover {
  opacity: 0.7;
}

.wrap-topics .sidebar a .p-title {
  text-align: center;
  font-size: 0.875rem;
  margin-top: 10px;
}

.wrap-topics .sidebar .wrap-item {
  padding: 10px 0;
}

@media screen and (max-width: 800px) {
  .wrap-topics .sidebar .wrap-item {
    max-width: 300px;
    margin: auto;
  }
}

.wrap-topics .sidebar .select-archive {
  border: solid 1px #000f83;
  color: #000f83;
  width: 100%;
  font-size: 0.875rem;
  padding: 10px 20px;
}

@media screen and (max-width: 800px) {
  .wrap-topics .sidebar .select-archive {
    max-width: 300px;
    margin: auto;
    display: block;
  }
}

/** ページ用トピックス **/
.page-topics .inner {
  max-width: 1400px;
}

.topic-list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.topic-list li {
  padding: 20px;
  width: calc(100% / 3);
}

@media screen and (max-width: 800px) {
  .topic-list li {
    width: 50%;
  }
}

@media screen and (max-width: 600px) {
  .topic-list li {
    width: 100%;
  }
}

.topic-list li a {
  color: #333;
  display: block;
}

.topic-list li a:hover {
  opacity: 0.8;
}

.topic-list .wrap-img {
  margin-bottom: 10px;
}

.topic-list .wrap-img img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 1024px) {
  .topic-list .wrap-img img {
    height: 180px;
  }
}

@media screen and (max-width: 800px) {
  .topic-list .wrap-img img {
    height: 200px;
  }
}

@media screen and (max-width: 600px) {
  .topic-list .wrap-img img {
    height: auto;
  }
}

.topic-list h3 {
  font-size: 0.875rem;
  margin-bottom: 10px;
}

.topic-list .desc {
  font-size: 0.777rem;
}
/*# sourceMappingURL=common.css.map */