@charset "utf-8";
/*==================================================
スライダーのためのcss
===================================*/
/* -------------------------------------------
全体
-------------------------------------------*/
* {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
}
.cn_font {
  font-family: "Arial", "Microsoft YaHei", "黑体", "宋体", sans-serif;
}
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
html, body {
  height: 100%;
  margin: 0
}
/*ul,ol {margin: 0 0 0 1.25em;padding: 0;}*/
section {
  margin: 0;
  padding: 0;
}
img {
  margin: 0;
  padding: 0;
  vertical-align: bottom;
  max-width: 100%;
  height: auto
}
a:hover img {
  opacity: 1;
}
.wrap {
  overflow: hidden;
}
p {
  margin: 0;
  font-size: 14px;
}
p:last-child {
  margin: 0;
}
/* font */
.small {
  font-size: 90%;
}
.bold {
  font-weight: bold;
}
.menu-download .fa-angle-down:before {
  right: -12%;
}
/* -------------------------------------------
要素非表示・回り込み解除
-------------------------------------------*/
.displaynone {
  display: none;
}
.clearfix:after, .clearfix:before {
  content: " ";
  display: table
}
.clearfix:after {
  clear: both
}
/* -------------------------------------------
グリッド
-------------------------------------------*/
/* inline */
.inline {
  text-align: justify;
  text-justify: distribute-all-lines;
}
.inline:after {
  content: "";
  display: inline-block;
  width: 100%;
  line-height: 0;
  height: 0;
}
div.inline > div {
  display: inline-block;
}
.inline div {
  vertical-align: top;
  width: 49%;
  margin-bottom: 2%;
}
.inline div:nth-last-child(-n+2) {
  margin-bottom: 0;
}
.box {
  margin-bottom: 10%;
  vertical-align: top;
  letter-spacing: normal;
}
.hold.box_wrap, .half.box_wrap {
  letter-spacing: -.40em;
}
.box.three:last-child {
  margin-bottom: 0;
}
.hold .box.two {
  width: 46%;
  margin-right: 4%;
  display: inline-block;
  letter-spacing: normal;
}
.hold .box.two:last-child {
  margin-right: 0;
}
.hold .box.three {
  width: 30%;
  margin-bottom: 3%;
  margin-right: 5%;
  display: inline-block;
  letter-spacing: normal;
}
.hold .box.three:nth-child(3n) {
  margin-right: 0;
}
.half .box.four {
  width: 48%;
  margin-bottom: 3%;
  margin-right: 4%;
  display: inline-block;
  letter-spacing: normal;
}
.half .box.four:nth-child(2n) {
  margin-right: 0;
}
.half .box.five {
  width: 48%;
  margin-bottom: 4% !important;
  margin-right: 4%;
  display: inline-block;
  letter-spacing: normal;
}
.half .box.five:nth-child(2n) {
  margin-right: 0;
}
.box img {
  width: 100%;
}
.pc-none {
  display: none;
}
.dli-arrow-up {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  position: relative;
  width: 0.1em;
  height: 1em;
  background: currentColor;
}
.dli-arrow-up::before {
  content: '';
  width: 0.65em;
  height: 0.65em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(-45deg);
  transform-origin: top right;
  position: absolute;
  top: -0.05em;
  right: 50%;
  box-sizing: border-box;
}
/*-------sec01-------*/
.slider {
  position: relative;
  z-index: 1;
  /*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
  /*height: 100vh;*/ /*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}
.slider-item {
  width: 100%; /*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
  height: 100vh; /*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  background-repeat: no-repeat; /*背景画像をリピートしない*/
  background-position: center; /*背景画像の位置を中央に*/
  background-size: cover; /*背景画像が.slider-item全体を覆い表示*/
}
.slick-prev {
  position: absolute;
  z-index: 300;
  top: 90%;
  margin-top: -35px;
  cursor: pointer;
  outline: none;
  right: 2.5%;
  height: 36px;
  width: 36px;
  left: inherit;
  background: #000000;
  border: 1px solid #ffffffb8;
}
.slick-prev:before {
  transform: rotate(-45deg);
  position: absolute;
  z-index: 3;
  top: 42%;
  right: 28%;
  cursor: pointer;
  outline: none;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  height: 15px;
  width: 15px;
}
.slick-next {
  position: absolute;
  z-index: 300;
  top: 90%;
  margin-bottom: -18px;
  cursor: pointer;
  outline: none;
  right: 2.5%;
  height: 36px;
  width: 36px;
  left: inherit;
  background: #000000;
  border: 1px solid #ffffffb8;
}
.slick-next:before {
  transform: rotate(-225deg);
  position: absolute;
  z-index: 3;
  top: 20%;
  right: 28%;
  cursor: pointer;
  outline: none;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  height: 15px;
  width: 15px;
}
.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
  background: #000000;
}
.slick-arrow {
  display: none !important;
}
/*ドットナビゲーションの設定*/
.slick-dots {
  position: relative;
  z-index: 3;
  text-align: center;
  margin: -50px 0 0 0;
}
.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}
.slick-dots button {
  color: transparent;
  outline: none;
  width: 8px; /*ドットボタンのサイズ*/
  height: 8px; /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #ccc; /*ドットボタンの色*/
}
.slick-dots .slick-active button {
  /*background: #333*/ ; /*ドットボタンの現在地表示の色*/
}
.figure {
  margin: 0;
}
.slider_01 img {
  width: 98%;
}
.slider_01 .slick-slide {
  opacity: 1;
}
.slider_01 .slick-dots {
  margin: -25px 0 0 0;
}
.slider_01 .slick-dots li button:before {
  font-family: 'slick';
  font-size: 25px;
  line-height: 25px;
  position: absolute;
  top: 0;
  left: 0;
  width: 25px;
  height: 25px;
  content: '•';
  text-align: center;
  opacity: .75;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.ad_area .slider_01 .slick-dots .slick-active button {
  background: inherit;
}
.ad_area .slick-dots {
  position: relative;
  z-index: 3;
  text-align: center;
  margin: -20px 0 0 0;
}
/*-------   fix btn   -------*/
.conversion {
  position: fixed;
  top: 20rem;
  right: 0;
  display: block;
  width: 3.5rem;
  height: 41.4rem;
  box-shadow: none;
  z-index: 500;
}
.conversion-dl {
  background: url("../img/top/bg-fixerd-banner-download.jpg") no-repeat;
  background-size: cover;
  border-right: none;
  -webkit-writing-mode: vertical-rl;
  -moz-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -ms-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  box-shadow: 1rem 0.5rem 1.6rem #052f6033;
  padding: 2.5rem 1.2rem;
  width: 100%;
}
.conversion-dl::before {
  content: "";
  background: url(../img/top/icon-document-white.png) no-repeat;
  background-size: contain;
  display: inline-block;
  width: 1.3rem;
  height: 1.8rem;
  position: relative;
  top: 0.2rem;
  margin: 0 0 .5rem;
}
.conversion-contact {
  background: url("../img/top/bg-fixerd-banner-contact.jpg") no-repeat;
  background-size: cover;
  border-right: none;
}
.conversion-contact, .conversion-dl {
  -webkit-writing-mode: vertical-rl;
  -moz-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -ms-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  box-shadow: 1rem 0.5rem 1.6rem #052f6033;
  padding: 2rem 1rem 2rem 1.25rem;
  width: 100%;
  border: 1px solid #ffffff5e;
  border-right: 0 solid #ffffff5e;
}
.conversion-contact:hover, .conversion-dl:hover {
  border: 1px solid #ffffff;
  border-right: 0 solid #ffffff5e;
}
.conversion-contact span, .conversion-dl span {
  font-weight: 800;
  color: #ffffff;
}
.conversion-contact::before {
  content: "";
  background: url(../img/top/icon-mail-white.png) no-repeat;
  background-size: contain;
  display: inline-block;
  width: 1.25rem;
  height: 1rem;
  position: relative;
  top: 0.2rem;
  margin: 0 0 .5rem;
}
a.conversion-contact, a.conversion-dl {
  transition: 1.0s
}
/*-------   to top   -------*/
#page_top {
  position: fixed;
  bottom: 40px;
  right: 65px;
  z-index: 100;
}
#page_top a {
  background-color: #fff;
  color: #000;
  text-align: center;
  text-decoration: none;
  padding: 12px 23px;
  border: solid 1px #000;
}
#page_top a:hover {
  background-color: #000;
  text-decoration: none;
  color: #fff;
  border: solid 1px #fff;
}
a:hover {
  color: #5a5a5a;
}
/*-------　総合　-------*/
.ttl {
  margin-bottom: 3rem;
}
.en {
  font-family: "Roboto";
  font-weight: 700;
  font-size: 2.5rem;
  position: relative;
  padding-right: 5rem;
}
.hana01:before {
  position: absolute;
  z-index: -1;
  content: "";
  display: block;
  width: 1.7rem;
  height: 1.7rem;
  /* background: #0369b0; */
  bottom: 0.75rem;
  left: -3.5rem;
  content: url(../img/top/img-icon.png);
}
.en:after {
  position: absolute;
  content: "";
  width: 4rem;
  height: 1px;
  background: #cccccc;
  right: 0;
  top: 50%;
}
.jp {
  position: relative;
  top: -0.25rem;
  font-size: 1.25rem;
  padding-left: 1rem;
  color: #ee2201;
  font-weight: 800;
}
.row {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  margin-left: -10px;
  margin-right: -10px;
}
.column {
  width: 50%;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 20px;
  box-sizing: border-box;
}
.hd-btn {
  margin-top: 2rem;
}
.hd-mod-btn {
  -webkit-transition: .3s cubic-bezier(0.57, 0.15, 0.13, 0.97);
  transition: .3scubic-bezier(0.57, 0.15, 0.13, 0.97);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  background-size: contain;
  text-decoration: none;
  position: relative;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  color: #000000;
  font-size: 1rem;
  font-weight: 500;
  width: 12rem;
  box-sizing: border-box;
  background: #000000;
}
.hd-mod-btn:hover {
  color: #000000;
  background: #ffffff;
}
.hd-mod-btn .hd-btn-inner {
  color: #ffffff;
  padding: .75rem 1rem;
  position: relative;
  z-index: 1;
  display: block;
  border: 1px solid #000000;
  -webkit-transition: .3s cubic-bezier(0.57, 0.15, 0.13, 0.97);
  transition: .3scubic-bezier(0.57, 0.15, 0.13, 0.97);
}
.hd-mod-btn .hd-btn-inner:hover {
  color: #000000;
  border: 1px solid #000000;
}
.line-none .hd-mod-btn:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  background: #FFFFFF;
  -webkit-transition: .3s cubic-bezier(0.57, 0.15, 0.13, 0.97) -0.2s;
  transition: .3scubic-bezier(0.57, 0.15, 0.13, 0.97) -0.2s;
}
.hd-mod-btn-wh {
  -webkit-transition: .3s cubic-bezier(0.57, 0.15, 0.13, 0.97);
  transition: .3scubic-bezier(0.57, 0.15, 0.13, 0.97);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  background-size: contain;
  text-decoration: none;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  max-width: 180px;
  box-sizing: border-box;
  background: #ffffff;
}
.hd-mod-btn-wh:hover {
  background: #000000;
}
.hd-mod-btn-wh .hd-btn-wh-inner {
  color: #000000;
  padding: 0.75rem 1rem;
  position: relative;
  z-index: 1;
  display: block;
  border: 1px solid #000000;
  -webkit-transition: .3s cubic-bezier(0.57, 0.15, 0.13, 0.97);
  transition: .3scubic-bezier(0.57, 0.15, 0.13, 0.97);
}
.hd-mod-btn-wh .hd-btn-wh-inner:hover {
  color: #ffffff;
  border: 1px solid #ffffff;
}
.anime_box {
  margin: 0 auto;
  overflow: hidden;
}
.anime_box img {
  transition: .75s all;
}
.anime_box img:hover {
  transform: scale(1.1, 1.1);
  transition: .75s all;
}
.anime_box_overflow {
  overflow: hidden;
}
.hd-btn.red {
  text-align: center;
}
.hd-btn.red .hd-mod-btn {
  width: 22rem;
}
.hd-btn.red .hd-mod-btn .hd-btn-inner {
  text-align: center;
}
.en:before {
  position: absolute;
  z-index: -1;
  content: "";
  display: none;
  width: 2.7rem;
  height: 2.7rem;
  background: #0369b0;
  bottom: -1.25rem;
  left: -1.5rem;
}
@media only screen and (max-width : 1600px) {}
@media only screen and (max-width : 1400px) {}
@media only screen and (max-width : 1200px) {}
@media only screen and (max-width : 1000px) {}
@media only screen and (max-width : 880px) {}
@media only screen and (max-width: 900px) {}
.sp_inline {
  display: block;
}
/*-------sec_common-------*/
.sec_common {
  padding: 80px 0;
  position: relative;
}
.sec_common .sec_common_inner {
  max-width: 1400px;
  padding: 0 2rem;
  margin: 0 auto;
}
@media only screen and (max-width : 1200px) {
  .sec_common .sec_common_inner {
    max-width: 912px;
  }
}
/*-------sec_common main_title-------*/
.sec_common.main_title {
  padding: 100px 0 20px;
}
.sec_common.main_title .column {
  margin-bottom: 0;
}
.sec_common.main_title .column.one {
  width: 70%;
  margin-bottom: 5px;
}
.sec_common.main_title .column.two {
  width: 30%;
  text-align: end;
}
.sec_common.main_title .column.teree {
  width: 100%;
}
.sec_common.main_title h1 {
  font-size: 24px;
  font-weight: 800;
}
.sec_common.main_title .column.two img {
  max-width: 100px;
}
.sec_common.main_title .blue {
  background-color: #eff4fa;
  height: 30px;
  padding: 0.15rem 0.75rem;
  border-radius: 1.875rem;
}
.sec_common.main_title .column.three a {
  color: #5f92ce;
}
/*-------　sec02 about　-------*/
.sec02 {
  padding: 10px 0;
  position: relative;
}
.sec02 .column {
  margin-bottom: 15px;
}
.sec02 .sec02_inner {
  max-width: 1400px;
  padding: 0 2rem;
  margin: 0 auto;
}
@media only screen and (max-width : 1200px) {
  .sec02 .sec02_inner {
    max-width: 912px;
  }
}
/*-------　sec03　-------*/
.sec03_new {
  padding: 10px 0;
  position: relative;
}
.sec03_new .sec03_new_inner {
  max-width: 1400px;
  padding: 0 2rem;
  margin: 0 auto;
}
@media only screen and (max-width : 1200px) {
  .sec03_new .sec03_new_inner {
    max-width: 912px;
  }
}
.sec03_new .title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}
.sec03_new .column {
  width: 50%;
  display: grid;
}
.sec03_new .line {
  border: 1px solid #dadada;
  padding: 15px;
}
.sec03_new .column.two img {
  max-width: 85px;
}
.gray {
  color: #939393;
}
/*-------　sec04　-------*/
.sec04_new {
  padding: 40px 0;
  position: relative;
}
.sec04_new .sec04_new_inner {
  max-width: 1400px;
  padding: 0 2rem;
  margin: 0 auto;
}
@media only screen and (max-width : 1200px) {
  .sec04_new .sec04_new_inner {
    max-width: 912px;
  }
}
.sec04_new .title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
}
.sec04_new .column.one {
  width: 20%;
}
.sec04_new .column.two {
  width: 80%;
}
/*-------　sec05　-------*/
.red {
  font-size: 26px;
  color: #ff0066;
}
.sec05 {
  padding: 60px 0 30px;
  position: relative;
  background-color: #eff4fa;
}
.sec05 .sec05_inner {
  max-width: 1400px;
  padding: 0 2rem;
  margin: 0 auto;
}
@media only screen and (max-width : 1200px) {
  .sec05 .sec05_inner {
    max-width: 912px;
  }
}
.sec05 .column.one {
  width: 20%;
}
.sec05 .column.two {
  width: 80%;
}
.sec05 .title {
  font-size: 22px;
  font-weight: 600;
}
.sec05 .title_02 {
  font-size: 18px;
  font-weight: 600;
}
.sec05 .column.two .icon_01 {
  margin-left: 23px;
  position: relative;
}
.sec05 .column.two .icon_02, .sec05 .column.two .icon_03 {
  margin-left: 30px;
  position: relative;
}
.sec05 .icon_01_inner:before {
  position: absolute;
  z-index: 10;
  content: "";
  display: block;
  width: 15px;
  height: 20px;
  bottom: 5px;
  left: -27px;
  content: url("../img/icon/icon-01.png");
}
.sec05 .icon_02_inner:before {
  position: absolute;
  z-index: 10;
  content: "";
  display: block;
  width: 15px;
  height: 20px;
  bottom: 5px;
  left: -27px;
  content: url("../img/icon/icon-02.png");
}
.sec05 .icon_03_inner:before {
  position: absolute;
  z-index: 10;
  content: "";
  display: block;
  width: 15px;
  height: 20px;
  bottom: 5px;
  left: -27px;
  content: url("../img/icon/icon-03.png");
}
.width-20 {
  width: 20%;
}
.width-25 {
  width: 25%;
}
.width-30 {
  width: 30%;
}
.width-35 {
  width: 35%;
}
.width-40 {
  width: 40%;
}
.width-60 {
  width: 60%;
}
.width-65 {
  width: 65%;
}
.width-70 {
  width: 70%;
}
.width-80 {
  width: 80%;
}
.width-100 {
  width: 100%;
}
.sec05 .width-100 {
  background-color: #ffffff;
  padding: 20px;
}
.mg-bottom-5 {
  margin-bottom: 5px;
}
.mg-bottom-10 {
  margin-bottom: 10px;
}
.mg-bottom-20 {
  margin-bottom: 20px;
}
.sec05 th {
  font-weight: 800;
}
.sec05 th, .sec05 td {
  min-width: 180px;
  font-size: 14px;
}
.sec05 .map_inner {
  padding: 10px;
}
.sec05 .map_inner iframe {
  width: 100%;
  aspect-ratio: 16/9;
}
.sec05 li {
  font-size: 14px;
}
.sec05 ul, .sec07 ul {
  margin-left: 20px;
}
/*-------　sec06　-------*/
.sec06 {
  padding: 80px 0 30px;
  position: relative;
}
.sec06 .sec06_inner {
  max-width: 1400px;
  padding: 0 2rem;
  margin: 0 auto;
}
@media only screen and (max-width : 1200px) {
  .sec06 .sec06_inner {
    max-width: 912px;
  }
}
.sec06 .title {
  font-size: 22px;
  font-weight: 600;
}
/*-------　sec07　-------*/
.sec07 {
  padding: 40px 0 0;
  position: relative;
}
.sec07 .sec07_inner {
  max-width: 1400px;
  padding: 0 2rem;
  margin: 0 auto;
}
@media only screen and (max-width : 1200px) {
  .sec07 .sec07_inner {
    max-width: 912px;
  }
}
.sec07 .title {
  font-size: 22px;
  font-weight: 600;
}
.sec07 .title_02 {
  font-size: 18px;
  font-weight: 600;
}
.sec07 .column.width-20 img {
  max-width: 100%;
}
.sec07 .column.width-40 img {
  max-width: 90px;
}
.down_line {
  border-bottom: 1px solid #dadada;
}
.sec07 li, .sec05 li {
  position: relative;
}
.sec07 li:before, .sec05 li:before {
  position: absolute;
  z-index: 10;
  content: "・";
  display: block;
  width: 10px;
  height: 10px;
  left: -19px;
  top: 1px;
}
/*-------　sec08　-------*/
.sec08 {
  padding: 40px 0 80px;
  position: relative;
}
.sec08 .sec08_inner {
  max-width: 1400px;
  padding: 0 2rem;
  margin: 0 auto;
}
@media only screen and (max-width : 1200px) {
  .sec08 .sec08_inner {
    max-width: 912px;
  }
}
.sec08 .title {
  font-size: 22px;
  font-weight: 600;
}
.sec08 .title_02 {
  font-size: 18px;
  font-weight: 600;
}
/*-------　common　-------*/
.common .sec01_ineer {
  position: relative;
}
.common .copy-b {
  position: absolute;
  left: 12rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.common .en-b {
  font-family: "Roboto";
  font-size: 4rem;
  font-weight: 700;
  position: relative;
  color: #ee2201;
}
.common .jp-b {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
  display: block;
  margin-left: 0.5rem;
  font-family: "hsn-zhcn-serif-regular", "hsn-zhtw-serif-regular", "FOT-筑紫明朝 Pr6N LB{pm}", serif;
  color: #ee2201;
}
.common .sec02_ineer, .common .sec02_ineer {
  max-width: 1160px;
  padding: 0 1rem;
  margin: 0 auto;
}
.access iframe {
  width: 100%;
  aspect-ratio: 16/9;
}
@media only screen and (max-width: 1400px) {
  .common .copy-b {
    left: 6rem;
    top: 55%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .common .en-b {
    font-size: 3.5rem;
  }
  .common .jp-b {}
}
/*-------　pageBg　-------*/
.top, footer {
  position: relative;
  z-index: 1;
}
@media screen and (width: 820px) {}
/*
----------------------------------------------------------
sp-800px以下
----------------------------------------------------------
*/
@media only screen and (max-width : 800px) {
  .pc-none {
    display: block
  }
  dt p {
    display: block;
  }
  .sec01 .slider.slick-slider {
    margin-left: 0;
  }
  .en {
    font-size: 1.5rem;
    padding-right: 5rem;
    line-height: 1;
  }
  .en:before {
    content: '';
    bottom: -0.25rem;
    background-repeat: no-repeat;
    left: 3.5rem;
    background-size: contain;
    vertical-align: middle;
    width: 55px;
    height: 55px;
    background-image: url(../img/top/img-icon.png);
  }
  .en:after {
    width: 4rem;
  }
  .en:after, .sec02 .en:after {
    position: inherit;
    content: "";
    width: 0;
    height: 0;
    background: #cccccc;
    right: 0;
    top: 0;
  }
  .jp {
    top: 0;
    display: block;
    padding-left: 2px;
  }
  .sp-none {
    display: none;
  }
  .ttl {
    margin-bottom: 1.5rem;
  }
  .en-b {
    line-height: 1.25;
  }
  .sec {
    padding: 30px 0;
  }
  .top .sec02.about {
    padding: 45px 0;
  }
  .sp_disnplay {
    display: block
  }
  /*-------   to top   -------*/
  #page_top {
    bottom: 90px;
    right: 20px;
  }
  #page_top a {
    padding: 12px 20px;
  }
  .conversion {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000;
    top: inherit;
    height: 3.5rem;
  }
  .conversion-dl, .conversion-contact {
    color: #fff;
    flex-basis: 50%;
    font-weight: bold;
    padding: 1.2rem;
    text-align: center;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-writing-mode: inherit;
    -moz-writing-mode: inherit;
    -ms-writing-mode: inherit;
    writing-mode: inherit;
    border: .5px solid #ffffff;
  }
  .conversion-dl {
    border-right: 0 solid #ffffff;
  }
  .conversion-dl {
    background: url(../img/top/bg-fixerd-banner-download-sp.jpg) no-repeat;
  }
  .conversion-contact {
    background: url(../img/top/bg-fixerd-banner-contact-sp.jpg) no-repeat;
  }
  .conversion-dl::before {
    content: "";
    background-size: contain;
    display: inline-block;
    width: 1.25rem;
    height: 1.25rem;
    position: relative;
    top: 0;
    margin: 0 0.25rem 0 0;
  }
  .conversion-contact::before {
    content: "";
    background-size: contain;
    display: inline-block;
    width: 1.25rem;
    height: 1rem;
    position: relative;
    top: 0;
    margin: 0 0.25rem 0 0;
  }
  .sp_inline {
    display: inline;
  }
  /*-------　sec01　-------*/
  .sec_common .sec_common_inner, .sec02 .sec02_inner, .sec03_new .sec03_new_inner, .sec04_new .sec04_new_inner, .sec06 .sec06_inner, .sec07 .sec07_inner, .sec08 .sec08_inner {
    padding: 0 1rem;
  }
	.sec05 .sec05_inner{
    padding: 0 1.5rem;
  }
  .sec_common.main_title .column.one, .sec_common.main_title .column.two, .sec_common.main_title .column.three {
    width: 100%;
  }
  .sec_common.main_title .column.one h1 {
    line-height: 1.25;
  }
  .sec_common.main_title .column.two {
    margin-bottom: 15px;
  }
  .sec_common.main_title .blue {
    display: inline-block;
  }
  .sec_common.main_title {
    padding: 70px 0 5px;
  }
	.top .wrap .sec02 {
    padding: 10px 0;
    position: relative;
}
  /*-------sec03-------*/
  .sec03_new .column {
    width: 100%;
    display: grid;
  }
  /*-------sec04-------*/
  .sec04_new {
    padding: 20px 0 40px;
  }
  .sec04_new .column.one, .sec04_new .column.two {
    width: 100%;
    margin-bottom: 5px;
  }
  /*-------sec05-------*/
  .sec04_new .title, .sec05 .title, .sec06 .title, .sec07 .title, .sec08 .title {
    font-size: 26px;
    margin-bottom: 10px;
  }
  .sec05 .column.width-sp-100 {
    width: 100%;
    margin-bottom: 5px;
  }
  .column.width-sp-100 {
    width: 100%;
    margin-bottom: 5px;
  }
  .sec05 .column.width-sp-50 {
    width: 50%;
  }
  .column.width-sp-50 {
    width: 50%;
  }
  .sec05 .plan .title {
    margin-bottom: 0;
  }
  .sec05 .plan {
    margin-bottom: 10px;
  }
  .sec05 .gaiyao {
    margin-bottom: 40px;
  }
  .sec05 .map {
    margin-bottom: 40px;
  }
  .sec05 th, .sec05 td {
    min-width: inherit;
  }
  .sec05 td {
    margin-left: 10px;
  }
 /*-------　sec06　-------*/
 	.sec06 {
		padding: 40px 0 0px;
	}
	/*-------　sec07　-------*/
	.sec07 {
    padding: 40px 0 20px;
}
 	.sec07 .tiyan {
		margin-bottom: 40px;
	}
	.sec07 .cuixing {
		margin-bottom: 40px;
	}
	.sec07 .faq {
		margin-bottom: 40px;
	}
  /*-------　common　-------*/
  .common .copy-b {
    left: 1rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .common .en-b {
    font-size: 2rem;
  }
  .common .jp-b {
    margin-left: 0;
  }
  /*-------------------------------------------------------
footer
-------------------------------------------------------*/
  .footer_three {
    padding: 0.75rem 0 3.75rem;
  }
  body.fixed, body {
    top: inherit !important;
  }
}
/*
----------------------------------------------------------
sp-750px以下
----------------------------------------------------------
*/
@media only screen and (max-width : 750px) {}
/*
----------------------------------------------------------
sp-500px以下
----------------------------------------------------------
*/
@media only screen and (max-width : 600px) {
  /*-------   ad_area   -------*/
  .access .sec02 .map_area {
    position: absolute;
    right: 0;
    z-index: -1;
    width: 60%;
    top: inherit;
    bottom: 2%;
  }
}