@charset "UTF-8";
/**

  @mixin
---------------------------------------------------------
  _clearfix.scss
--------------------------------------------------------
  Use @include clearfix(); in your CSS
--------------------------------------------------------- */
/**
  @breakpoints mixin
-----------------------------------------------------
@include for-size(phone-only){}
@include for-size(tablet-portrait-up){}
@include for-size(tablet-landscape-up){}
@include for-size(desktop){}
@include for-size(desktop-up){}
-----------------------------------------------------  
@mixin for-size($size) {
  @if $size == phone-only {//スマホオンリー
    @media all and  (max-width: 640px) { @content; }
  } @else if $size == tablet-portrait-up {
    @media all and  (min-width: 639px) { @content; }
  } @else if $size == tablet-landscape-up {
    @media all and  (min-width: 885px) { @content; }
  }  @else if $size == desktop { 
    @media all and  (min-width: 1000px) { @content; }
  }  @else if $size == desktop-up { 
    @media all and  (min-width: 1300px) { @content; }
  } 
}*/
/**
  @breakpoints mixin (PC-first)
-----------------------------------------------------

-----------------------------------------------------  */
/**
  @bgimg.scss bgimg 
--------------------------------------------------------
  Use @include bgimg(); in your CSS
--------------------------------------------------------- */
/**
  @fonts.scss fonts 
--------------------------------------------------------
@include sec-read(); 
@include base-text($size); 
@include base-text2($size); 
@include base-text_en($size);
in your CSS
--------------------------------------------------------- */
/**
  @align-height
--------------------------------------------------------
@include align-height(); in your CSS
--------------------------------------------------------- */
/**
  @link_button
--------------------------------------------------------
@include link_button($width,$SP_width); in your CSS
--------------------------------------------------------- */
/*--------------------------------------------------------------
下層ページ　コンテンツレイアウト(左右半々)
ページ共通
----HTML---------------------------------------------------------------
<div class="listA">
 <div class="listA__item">
  <div class="listA__item__inner">
   <div class="listA__item__inner__left">
    <img src="https://placehold.jp/150x150.png" alt="">
   </div>
   <div class="listA__item__inner__right">
    <p class="listA__item__read">
     タイトル
    </p>
    <p class="listA__item__text">
     本文
    </p>
   </div>
  </div>
 </div>
 <div class="listA__item">
  <div class="listA__item__inner">
   <div class="listA__item__inner__left">
    <img class="_sp" src="https://placehold.jp/150x150.png" alt="">
    <p class="listA__item__read">
     タイトル
    </p>
    <p class="listA__item__text">
     本文
    </p>
   </div>
   <div class="listA__item__inner__right">
    <img src="https://placehold.jp/150x150.png" alt="">
   </div>
  </div>
 </div>
</div>
-----css--------------------------------------------------------------
.listA{
 @include sec_content_listA();
}
-------------------------------------------------------------------*/
/*----------------------------------------------------
レイアウトのみ
-------------------------------------------------------*/
.innerB {
  display: table;
  width: 100%;
}

@media all and (max-width: 639px) {
  .innerB {
    display: block;
  }
}

.innerB .left, .innerB .right {
  width: 48%;
  float: left;
}

@media all and (max-width: 639px) {
  .innerB .left, .innerB .right {
    width: 100%;
    float: none;
  }
}

.innerB .right {
  margin-left: 4%;
}

@media all and (max-width: 639px) {
  .innerB .right {
    margin-left: 0;
    margin-top: 15px;
  }
}

.innerB .left_s {
  width: 30%;
  float: left;
}

@media all and (max-width: 639px) {
  .innerB .left_s {
    width: 100%;
    float: none;
  }
}

.innerB .right_l {
  width: 66%;
  float: left;
  margin-left: 4%;
}

@media all and (max-width: 639px) {
  .innerB .right_l {
    margin-left: 0;
    margin-top: 15px;
    width: 100%;
    float: none;
  }
}

/*--------------------------------------------------------------
下層ページ　ページ看板共通
ページ共通
<div id="page_top">
    <div class="box">
     <div class="nakaA">
      <h2 class="page__title">
       会社概要
       <span>Company</span>
      </h2>
     </div>
    </div>
   </div>

#page_top{
 @include page_top();
}
-------------------------------------------------------------------*/
/*------------------------------------------------------
下層ページパンくず共通
<div id="pankuzu_list">
    <div class="box">
     <div class="nakaA">
      <ul>
       <li>
        <a href="">TOP</a>
       </li>
       <li>会社概要</li>
      </ul>
     </div>
    </div>
   </div>

#pankuzu_list{
 @include pankuzu_list();
}
 in your CSS
-------------------------------------------------*/
.mailbtn {
  font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
  float: left;
  font-size: 12px;
  margin-right: 10px;
}

.rcsLinkType01 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.rcsLinkType01 .link_box {
  box-sizing: border-box;
  padding: 10px;
  position: relative;
  max-width: 100%;
}

.rcsLinkType01 .link_box ._img_box img {
  max-width: 100%;
  box-shadow: 4px 4px;
}

.rcsLinkType01 .link_box ._title_box h3 {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  background: rgba(41, 60, 96, 0.6);
  color: #FFF;
  position: absolute;
  width: 200px;
  padding: 20px 0;
  bottom: 20px;
  left: -10px;
  margin: 0 auto;
}

.rcsLinkType01 .link_box ._title_box h3:before {
  font-family: "fontAwesome";
  content: "\f0da";
  margin-right: 8px;
}

.rcsLinkType01 .link_box ._title_box h3 span {
  display: none;
}

.rcsLinkType01 .link_box ._explain_box {
  display: none;
}

.rcsLinkType01 .link_box ._btn_box {
  display: none;
}

.rcsLinkType01._col2 .link_box {
  width: 49%;
}

.rcsLinkType01._col3 .link_box {
  width: 32%;
}

.rcsLinkType01._col4 .link_box {
  width: 24%;
}

.rcsLinkType02 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.rcsLinkType02 .link_box {
  margin-bottom: 10px;
  background: #FFF;
  height: 200px;
  border: 2px solid #293c60;
  position: relative;
  overflow: hidden;
}

.rcsLinkType02 .link_box ._img_box {
  text-align: center;
}

.rcsLinkType02 .link_box ._img_box img {
  max-width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
}

.rcsLinkType02 .link_box ._title_box h3 {
  position: absolute;
  background: rgba(255, 255, 255, 0.8);
  color: #293c60;
  font-size: 22px;
  width: 100%;
  z-index: 100;
  bottom: 10px;
  padding: 5px 0 5px 10px;
  line-height: 1.1;
}

.rcsLinkType02 .link_box ._title_box h3 span {
  display: block;
  font-size: 20px;
  margin-left: 10px;
}

.rcsLinkType02 .link_box ._explain_box {
  display: none;
}

.rcsLinkType02 .link_box ._btn_box {
  display: none;
}

.rcsLinkType02._col2 .link_box {
  width: 49%;
}

.rcsLinkType02._col3 .link_box {
  width: 32%;
}

.rcsLinkType02._col4 .link_box {
  width: 24%;
}

.rcsLinkType03 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.rcsLinkType03 .link_box {
  box-sizing: border-box;
  margin-bottom: 10px;
  background: #FFF;
  height: 200px;
  border: 2px solid #293c60;
  position: relative;
  overflow: hidden;
}

.rcsLinkType03 .link_box ._img_box img {
  max-width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
}

.rcsLinkType03 .link_box ._title_box h3 {
  position: absolute;
  background: rgba(41, 60, 96, 0.8);
  color: #FFF;
  font-size: 22px;
  width: 100%;
  z-index: 100;
  bottom: 10px;
  padding: 5px 0 5px 10px;
  line-height: 1.1;
  text-align: center;
}

.rcsLinkType03 .link_box ._title_box h3 span {
  display: block;
  font-size: 20px;
  margin-left: 10px;
}

.rcsLinkType03 .link_box ._explain_box {
  display: none;
}

.rcsLinkType03 .link_box ._btn_box {
  display: none;
}

.rcsLinkType03._col2 .link_box {
  width: 49%;
}

.rcsLinkType03._col3 .link_box {
  width: 32%;
}

.rcsLinkType03._col4 .link_box {
  width: 24%;
}

.rcsLinkType04 {
  min-width: 960px;
  max-width: 100%;
  padding: 20px 0;
}

.rcsLinkType04 ul {
  overflow: hidden;
}

.rcsLinkType04._col1 li {
  width: 100%;
  min-height: 400px;
}

.rcsLinkType04._col1 li:first-child {
  width: 100%;
}

.rcsLinkType04._col1 .bg {
  height: 400px;
}

.rcsLinkType04._col2 li {
  width: 50%;
  min-height: 400px;
}

.rcsLinkType04._col2 li:first-child {
  width: 50%;
}

.rcsLinkType04._col2 .bg {
  height: 400px;
}

.rcsLinkType04._col3 li {
  width: 33.3%;
  min-height: 400px;
  box-sizing: border-box;
}

.rcsLinkType04._col3 li:first-child {
  width: 33.4%;
}

.rcsLinkType04._col3 .bg {
  height: 400px;
}

.rcsLinkType04._col4 li {
  width: 25%;
  min-height: 400px;
  box-sizing: border-box;
}

.rcsLinkType04._col4 li:first-child {
  width: 25%;
}

.rcsLinkType04._col4 .bg {
  height: 400px;
}

.rcsLinkType04 li {
  float: left;
  overflow: hidden;
  position: relative;
}

.rcsLinkType04 li a {
  display: block;
  text-align: center;
  overflow: hidden;
}

.rcsLinkType04 li a .piclogo {
  position: relative;
  padding: 50px 0;
}

.rcsLinkType04 li a .weblogo {
  display: block;
  margin: 50px auto;
  width: 200px;
  position: relative;
  padding: 75px 35px;
  text-align: center;
  background: rgba(41, 60, 96, 0.6);
  border-radius: 50%;
}

.rcsLinkType04 li a .weblogo i {
  font-family: "fontAwesome";
  font-size: 60px;
  font-style: normal;
  color: rgba(255, 255, 255, 0.9);
}

.rcsLinkType04 li a .weblogo span {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
}

.rcsLinkType04 li:nth-child(1) .bg {
  background: url(../img/base_img1.jpg) no-repeat 50% 50%;
  background-size: cover;
}

.rcsLinkType04 li:nth-child(2) .bg {
  background: url(../img/base_img2.jpg) no-repeat 50% 50%;
  background-size: cover;
}

.rcsLinkType04 li:nth-child(3) .bg {
  background: url(../img/base_img3.jpg) no-repeat 50% 50%;
  background-size: cover;
}

.rcsLinkType04 li:nth-child(4) .bg {
  background: url(../img/base_img4.jpg) no-repeat 50% 50%;
  background-size: cover;
}

.rcsLinkType04 li .bg {
  width: 101%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.4s;
  -moz-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  filter: grayscale(100%);
}

.rcsLinkType04 li:hover .bg {
  opacity: 0.6;
  transform: scale(1.03);
  -moz-filter: grayscale(0%);
  -o-filter: grayscale(0%);
  -ms-filter: grayscale(0%);
  filter: grayscale(0%);
}

.rcsLinkType05 {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -moz-background-size: cover;
}

.rcsLinkType05._bgimg1 {
  background-image: url(../img/base_img4.jpg);
}

.rcsLinkType05._bgimg2 {
  background-image: url(../img/base_img5.jpg);
}

.rcsLinkType05._bgimg3 {
  background-image: url(../img/base_img6.jpg);
}

.rcsLinkType05 ._boxBase {
  display: flex;
  width: 100%;
  min-width: 960px;
  margin: 0 auto;
}

.rcsLinkType05 ._boxBase._ctr {
  justify-content: center;
  margin: 80px auto;
}

.rcsLinkType05 ._boxBase._rgt {
  justify-content: flex-end;
  margin: 80px auto;
}

.rcsLinkType05 ._boxDetail {
  width: 300px;
  background-color: rgba(255, 255, 255, 0.8);
  vertical-align: middle;
  padding: 15% 5%;
}

.rcsLinkType05 h2 {
  text-align: center;
  font-size: 30px;
  line-height: .8;
  margin-bottom: 35px;
  position: relative;
  letter-spacing: 2px;
}

.rcsLinkType05 h2:after {
  content: "";
  width: 100px;
  height: 3px;
  background: #293c60;
  display: block;
  position: absolute;
  top: 60px;
  bottom: 0;
  margin: auto;
  right: 0;
  left: 0;
}

.rcsLinkType05 h2 span {
  font-size: 18px;
  display: block;
}

.rcsLinkType05 ._btn a {
  position: relative;
  z-index: 2;
  background-color: #293c60;
  border: 2px solid #293c60;
  font-size: 13px;
  display: block;
  width: 200px;
  margin: 15px auto;
  text-align: center;
  font-weight: normal;
  padding: 2px 0;
  color: #fff;
  box-sizing: border-box;
  transition: all .3s;
}

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

.rcsLinkType05 ._btn a:hover {
  color: #293c60;
  background-color: #fff;
  border-color: #293c60;
}

.rcsLinkType05 ._btn a::before, .rcsLinkType05 ._btn a::after {
  top: 0;
  width: 50%;
  height: 100%;
  background-color: #293c60;
}

.rcsLinkType05 ._btn a::before {
  right: 0;
}

.rcsLinkType05 ._btn a::after {
  left: 0;
}

.rcsLinkType05 ._btn a:hover::before, .rcsLinkType05 ._btn a:hover::after {
  width: 0;
  background-color: #293c60;
}

.rcsLinkType05 ._btn a::before, .rcsLinkType05 ._btn a::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}

.rcsLinkType05 ._btn a::before, .rcsLinkType05 ._btn a::after {
  box-sizing: border-box;
  transition: all .3s;
}

.rcsLinkType06 {
  width: 100%;
}

.rcsLinkType06 ul {
  overflow: hidden;
}

.rcsLinkType06 li {
  /*width: 33.3%;*/
  float: left;
  height: 210px;
  overflow: hidden;
  position: relative;
  -moz-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  filter: grayscale(100%);
}

.rcsLinkType06 li:hover {
  opacity: 0.6;
  /*transform: scale(1.03);*/
  -moz-filter: grayscale(0%);
  -o-filter: grayscale(0%);
  -ms-filter: grayscale(0%);
  filter: grayscale(0%);
}

.rcsLinkType06 li a {
  display: block;
  text-align: center;
  overflow: hidden;
}

.rcsLinkType06 li:nth-child(1) {
  background: url(../img/base_img3.jpg) no-repeat 50% 50%;
  background-size: cover;
}

.rcsLinkType06 li:nth-child(2) {
  background: url(../img/base_img4.jpg) no-repeat 50% 50%;
  background-size: cover;
}

.rcsLinkType06 li:nth-child(3) {
  background: url(../img/base_img5.jpg) no-repeat 50% 50%;
  background-size: cover;
}

.rcsLinkType06 li:nth-child(4) {
  background: url(../img/base_img6.jpg) no-repeat 50% 50%;
  background-size: cover;
}

.rcsLinkType06 li .bg {
  width: 101%;
  height: 230px;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.4s;
  transition: all 0.4s;
  -moz-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  filter: grayscale(100%);
}

.rcsLinkType06 li:hover .bg {
  opacity: 0.6;
  transform: scale(1.03);
  -moz-filter: grayscale(0%);
  -o-filter: grayscale(0%);
  -ms-filter: grayscale(0%);
  filter: grayscale(0%);
}

.rcsLinkType06 li figure {
  position: relative;
  float: left;
  overflow: hidden;
  margin: 10px 1%;
  min-width: 230px;
  max-height: 200px;
  height: 100%;
  width: 100%;
  color: #ffffff;
  text-align: left;
  font-size: 16px;
  /*background-color: rgba( #000 , 0.6 );*/
}

.rcsLinkType06 li figure * {
  box-sizing: border-box;
  transition: all 0.35s ease;
}

.rcsLinkType06 li figure:after, .rcsLinkType06 li figure figcaption {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.rcsLinkType06 li figure:after {
  content: '';
  background-color: rgba(0, 0, 0, 0.6);
  transition: all 0.35s ease;
  opacity: 0;
}

.rcsLinkType06 li figure figcaption {
  z-index: 1;
  padding: 30px 40px;
  background: none;
}

.rcsLinkType06 li figure h3, .rcsLinkType06 li figure .links {
  width: 100%;
  margin: 5px 0;
  padding: 0;
}

.rcsLinkType06 li figure h3 {
  line-height: 1.3em;
  font-weight: normal;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.6);
  padding: 10px;
  left: 0;
  position: relative;
  font-size: 20px;
  text-align: left;
}

.rcsLinkType06 li figure h3 span {
  font-size: 12px;
  border-top: 1px solid #fff;
  padding-top: 3px;
  color: #FFF;
}

.rcsLinkType06 li figure p {
  font-size: 0.8em;
  font-weight: 300;
  letter-spacing: 1px;
  opacity: 0;
  top: 50%;
  transform: translateY(40px);
  text-align: left;
}

.rcsLinkType06 li figure i {
  position: absolute;
  bottom: -10px;
  right: 10px;
  padding: 20px 25px;
  font-size: 34px;
  opacity: 0;
  transform: translateX(-10px);
}

.rcsLinkType06 li figure a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.rcsLinkType06 li figure:hover:after, .rcsLinkType06 li figure.hover:after {
  opacity: 1;
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 10px;
  right: 10px;
}

.rcsLinkType06 li figure:hover h3, .rcsLinkType06 li figure.hover h3, .rcsLinkType06 li figure:hover p, .rcsLinkType06 li figure.hover p, .rcsLinkType06 li figure:hover i, .rcsLinkType06 li figure.hover i {
  transform: translate(0px, 0px);
  opacity: 1;
}

.rcsLinkType06 li figure:hover h3 {
  background: transparent;
  padding: 0px;
  left: 0%;
}

.rcsLinkType06._col1 li {
  width: 100%;
}

.rcsLinkType06._col2 li {
  width: 50%;
}

.rcsLinkType06._col3 li {
  width: 33.3%;
}

header #headA {
  padding-top: 0;
}

header #headA #head {
  padding-top: 0;
}

@media all and (max-width: 800px) {
  header #headA #head {
    height: 120px;
    padding: 15px 0;
  }
}

@media all and (max-width: 639px) {
  header #headA #head {
    height: 100px;
    padding: 0;
    padding-top: 10px;
    padding-left: 15px;
  }
}

header #headA #head .logo {
  width: 337px;
  padding-top: 18px;
}

@media all and (max-width: 800px) {
  header #headA #head .logo {
    padding-top: 0;
    width: 40%;
    text-align: center;
    display: block;
    margin: auto;
    float: none;
  }
}

@media all and (max-width: 639px) {
  header #headA #head .logo {
    width: 70%;
    margin-left: 0;
  }
}

header #headA #head .logo a img {
  width: 100%;
}

header #headA #head .tel .contactbx li {
  border: none;
  margin-top: 15px;
  height: auto;
  line-height: 1em;
  display: block;
  width: 317px;
  margin-bottom: 0;
}

header #headA #head .tel .contactbx li img {
  display: block;
  width: 100%;
}

header #menuA {
  background: none;
  border-top: none;
  border-bottom: none;
}

header #menuA #menu ul li {
  border-right: none;
}

header #menuA #menu ul li:first-child {
  border-left: none;
}

header #menuA #menu ul li a {
  width: 192px;
}

header #menuA #menu ul li a:hover {
  background: none;
}

header #menuA #menu ul li a:hover img {
  background: rgba(0, 33, 91, 0.4);
  opacity: 1;
}

header #menuA #menu ul li a img {
  width: 100%;
}

@media all and (max-width: 800px) {
  #flash.takey {
    padding-top: 150px;
  }
}

@media all and (max-width: 800px) {
  #flash.takey {
    padding-top: 100px;
  }
}

.slide__main {
  width: 960px;
  margin: auto;
  position: absolute;
  width: 960px;
  margin: auto;
  z-index: 9;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
}

@media all and (max-width: 800px) {
  .slide__main {
    width: 100%;
  }
}

.slide__main img {
  width: 319px;
  margin: auto;
  top: 0px;
  position: absolute;
  left: 45px;
}

@media all and (max-width: 800px) {
  .slide__main img {
    width: 30%;
    top: 150px;
    left: 30px;
  }
}

@media all and (max-width: 639px) {
  .slide__main img {
    left: 15px;
    width: 35%;
    top: 100px;
  }
}

#top_1 {
  padding-top: 50px;
}

@media all and (max-width: 639px) {
  #top_1 {
    padding-top: 30px;
  }
}

#top_1 .left_s img {
  display: block;
  margin: auto;
  width: 60%;
}

@media all and (max-width: 639px) {
  #top_1 .left_s img {
    width: 40%;
  }
}

#top_1 .right_l ul {
  border-top: 1px solid #F2F2F2;
}

#top_1 .right_l ul li {
  padding: .5em 0;
  border-bottom: 1px solid #F2F2F2;
}

#top_1 .right_l ul li span {
  width: 100px;
  background: #125da0;
  text-align: center;
  display: inline-block;
  font-family: "YakuHanJP", "Noto Sans Japanese";
  font-weight: 400;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: .1em;
  color: #fff;
}

@media all and (max-width: 639px) {
  #top_1 .right_l ul li span {
    display: block;
  }
}

#top_1 .right_l ul li a {
  text-decoration: none;
  font-family: "YakuHanJP", "Noto Sans Japanese";
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: .1em;
}

#top_2 {
  margin-top: 50px;
}

#top_2 .top_2_contents {
  width: 100%;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  flex-wrap: wrap;
}

@media all and (max-width: 639px) {
  #top_2 .top_2_contents {
    display: block;
  }
}

#top_2 .top_2_contents .top_2_left, #top_2 .top_2_contents .top_2_right {
  width: 50%;
  display: block;
  padding: 100px 0;
}

@media all and (max-width: 639px) {
  #top_2 .top_2_contents .top_2_left, #top_2 .top_2_contents .top_2_right {
    float: none;
    width: 100%;
    padding: 0;
  }
}

#top_2 .top_2_contents .top_2_left {
  background-image: url(../img/top_2_photo.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media all and (max-width: 639px) {
  #top_2 .top_2_contents .top_2_left {
    display: none;
  }
}

#top_2 .top_2_contents .top_2_right {
  background: url(../img/top_4_back.jpg);
}

#top_2 .top_2_contents .top_2_right ._sp {
  display: none;
}

@media all and (max-width: 639px) {
  #top_2 .top_2_contents .top_2_right ._sp {
    display: block;
    width: 100%;
  }
}

#top_2 .top_2_contents .top_2_right .top_2_right__contents {
  width: 70%;
  margin: auto;
}

@media all and (max-width: 639px) {
  #top_2 .top_2_contents .top_2_right .top_2_right__contents {
    width: 100%;
    margin: 30px 0 0;
    padding-bottom: 50px;
  }
}

#top_2 .top_2_contents .top_2_right .top_2_right__contents h3 {
  font-family: "YakuHanJP", "M PLUS 1p";
  font-weight: 300;
  font-size: 30px;
  font-size: 1.875rem;
  letter-spacing: .1em;
  font-weight: 600;
  text-align: center;
  color: #fff;
  line-height: 1em;
}

#top_2 .top_2_contents .top_2_right .top_2_right__contents .main_text {
  font-family: "YakuHanJP", "Noto Sans Japanese";
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: .1em;
  margin-top: 30px;
  color: #fff;
}

#top_3 {
  zoom: 1;
}

#top_3:before, #top_3:after {
  content: " ";
  display: table;
}

#top_3:after {
  clear: both;
}

#top_3 .innerB {
  margin-top: 50px;
}

#top_3 .innerB .left img {
  width: 100%;
  display: block;
}

#top_3 .innerB .right h3 {
  font-family: "YakuHanJP", "M PLUS 1p";
  font-weight: 300;
  font-size: 30px;
  font-size: 1.875rem;
  letter-spacing: .1em;
  font-weight: 600;
}

#top_3 .innerB .right .main_text {
  margin-top: 30px;
  font-family: "YakuHanJP", "M PLUS 1p";
  font-weight: 300;
  font-size: 57px;
  font-size: 3.5625rem;
  letter-spacing: .1em;
  line-height: 1em;
  font-weight: 900;
  color: #125da0;
}

#top_3 .innerB .right .main_text span {
  display: block;
  font-family: "YakuHanJP", "Noto Sans Japanese";
  font-weight: 400;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: .1em;
  font-weight: 900;
}

#top_3 .innerB .right img {
  width: 100%;
  display: block;
  margin-top: 30px;
}

#top_4 {
  margin-top: 100px;
  background: url(../img/top_4_back.jpg);
}

@media all and (max-width: 639px) {
  #top_4 {
    margin-top: 50px;
    padding: 50px 0;
  }
}

#top_4 .top_4_content ul {
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  flex-wrap: wrap;
  width: 100%;
}

@media all and (max-width: 639px) {
  #top_4 .top_4_content ul {
    display: block;
  }
}

#top_4 .top_4_content ul li {
  width: 33%;
  float: left;
}

@media all and (max-width: 639px) {
  #top_4 .top_4_content ul li {
    float: none;
    width: 100%;
  }
}

#top_4 .top_4_content ul li .top_4_content__item {
  margin: auto;
  padding: 80px 5%;
  position: relative;
}

@media all and (max-width: 639px) {
  #top_4 .top_4_content ul li .top_4_content__item {
    padding: 15px 5%;
  }
}

#top_4 .top_4_content ul li .top_4_content__item:after {
  height: 70%;
  width: 1px;
  content: "";
  display: block;
  background: #fff;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

#top_4 .top_4_content ul li .top_4_content__item img {
  display: block;
  margin: 0 auto 15px;
  width: 35%;
  border-radius: 50%;
  border: 5px solid #fff;
}

#top_4 .top_4_content ul li .top_4_content__item .main_text {
  text-align: center;
  color: #fff;
  font-family: "YakuHanJP", "Noto Sans Japanese";
  font-weight: 400;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: .1em;
  font-weight: 500;
}

#top_4 .top_4_content ul li .top_4_content__item a {
  border: 1px solid #fff;
  display: block;
  padding: .15em 0;
  text-align: center;
  width: 30%;
  margin: 15px auto 0;
  font-family: "YakuHanJP", "Noto Sans Japanese";
  font-weight: 400;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: .1em;
  font-weight: 500;
  color: #fff;
  border-radius: 15px;
}

#top_4 .top_4_content ul li .top_4_content__item a:hover {
  background: #fff;
  color: #125da0;
  transition: .4s;
}

#top_4 .top_4_content ul li:last-child .top_4_content__item:after {
  display: none;
}

#otoiawase {
  background: url(../img/otoiawase_back.jpg);
  padding: 50px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-position: center bottom;
}

#otoiawase .pbx_c .foot_logo {
  width: 40%;
  margin: 0 auto 30px;
}

@media all and (max-width: 639px) {
  #otoiawase .pbx_c .foot_logo {
    width: 90%;
  }
}

#otoiawase .pbx_c .foot_logo img {
  width: 100%;
  display: block;
}

#otoiawase .pbx_c .bx2 {
  width: 100%;
  display: table;
}

@media all and (max-width: 639px) {
  #otoiawase .pbx_c .bx2 {
    display: block;
  }
}

#otoiawase .pbx_c .bx2 li {
  width: 50%;
  float: left;
}

@media all and (max-width: 639px) {
  #otoiawase .pbx_c .bx2 li {
    float: none;
    width: 100%;
    margin-bottom: 30px;
  }
  #otoiawase .pbx_c .bx2 li:last-child {
    margin-bottom: 0;
  }
}

#otoiawase .pbx_c .bx2 li a {
  display: block;
  width: 80%;
}

@media all and (max-width: 639px) {
  #otoiawase .pbx_c .bx2 li a {
    margin: auto;
    width: 100%;
  }
}

#otoiawase .pbx_c .bx2 li a img {
  width: 90%;
  display: block;
}

@media all and (max-width: 639px) {
  #otoiawase .pbx_c .bx2 li a img {
    margin: auto;
  }
}

#otoiawase .pbx_c .bx2 li:first-child a {
  margin-left: auto;
}

#otoiawase .pbx_c .bx2 li:last-child a {
  margin-right: auto;
}

footer {
  border-top: none;
  height: auto;
  position: static;
  background: #293c60;
}

footer #footer {
  margin-top: 0;
  padding: 30px 0 15px;
}

footer #footer #fmenu ul {
  margin-bottom: 0;
}

footer #footer #fmenu li:before {
  color: #125da0;
}

footer #footer #fmenu li a {
  color: #fff;
  font-family: "YakuHanJP", "M PLUS 1p";
  font-weight: 300;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: .1em;
}

footer #footer #fmenu li a:hover {
  color: #125da0;
  transition: .4s;
}

footer #footer .copyright {
  color: #fff;
}

/*--------------------------------------------------------
下層ページ共通
-----------------------------------------------------------*/
#page_top {
  background: url(../img/top_4_back.jpg);
}

@media all and (max-width: 800px) {
  #page_top {
    margin-top: 150px;
  }
}

@media all and (max-width: 639px) {
  #page_top {
    margin-top: 100px;
  }
}

#page_top .page__title img {
  display: block;
  margin: 0 auto 15px;
  width: 137px;
  border-radius: 50%;
  border: 5px solid #fff;
}

#page_top .page__title p {
  text-align: center;
  color: #fff;
  font-family: "YakuHanJP", "Noto Sans Japanese";
  font-weight: 400;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: .1em;
  font-weight: 500;
}

#pankuzu_list ul {
  display: table;
  margin: auto;
}

#pankuzu_list ul li {
  display: inline-block;
  font-family: "YakuHanJP", "Noto Sans Japanese";
  font-weight: 400;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: .1em;
  margin-right: .5em;
  color: #F2F2F2;
}

#pankuzu_list ul li a {
  color: #F2F2F2;
}

#pankuzu_list ul li:after {
  content: ">";
  display: inline-block;
  margin-left: .5em;
}

#pankuzu_list ul li:last-child:after {
  display: none;
}

.page_sec_title {
  font-family: "YakuHanJP", "M PLUS 1p";
  font-weight: 300;
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: .1em;
  font-weight: 600;
  color: #125da0;
  line-height: 1em;
  border-bottom: 2px solid #125da0;
  padding: .3em;
  border-top: 2px solid #125da0;
}

/*--------------------------------------------------------
福祉タクシー(hukusi.php)
-----------------------------------------------------------*/
#hukusi_1 {
  padding: 80px 0 80px;
}

@media all and (max-width: 639px) {
  #hukusi_1 {
    padding: 50px 0;
  }
}

#hukusi_1 .page_sec_title {
  margin-bottom: 15px;
}

#hukusi_1 .innerB img {
  width: 100%;
  display: block;
}

#hukusi_1 .innerB .main_text {
  font-family: "YakuHanJP", "Noto Sans Japanese";
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: .1em;
}

#hukusi_1 .hukusi_1_mine {
  margin-top: 80px;
}

#hukusi_1 .hukusi_1_mine h3 {
  text-align: center;
}

#hukusi_1 .hukusi_1_mine ul {
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  flex-wrap: wrap;
  margin-top: 30px;
}

@media all and (max-width: 639px) {
  #hukusi_1 .hukusi_1_mine ul {
    display: block;
  }
}

#hukusi_1 .hukusi_1_mine ul li {
  width: 30.666666%;
  float: left;
  margin-right: 4%;
}

@media all and (max-width: 639px) {
  #hukusi_1 .hukusi_1_mine ul li {
    width: 100%;
    float: none;
    margin-right: 0;
    margin-bottom: 30px;
  }
}

#hukusi_1 .hukusi_1_mine ul li:last-child {
  margin-right: 0;
}

#hukusi_1 .hukusi_1_mine ul li .read {
  font-family: "YakuHanJP", "M PLUS 1p";
  font-weight: 300;
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: .1em;
  font-weight: 500;
  color: #3F88C5;
  line-height: 1.5em;
  text-align: center;
}

#hukusi_1 .hukusi_1_mine ul li .main_text {
  font-family: "YakuHanJP", "Noto Sans Japanese";
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: .1em;
  line-height: 1.6em;
  letter-spacing: .07em;
  text-align: center;
}

#hukusi_1 .hukusi_1_mine ul li img {
  display: block;
  width: 50%;
  border-radius: 50%;
  margin: 15px auto;
}

#hukusi_1 .hukusi_1_mine_2 {
  margin-top: 80px;
}

#hukusi_1 .hukusi_1_mine_2 h3 {
  text-align: center;
}

#hukusi_1 .hukusi_1_mine_2 ul {
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  flex-wrap: wrap;
  margin-top: 30px;
}

@media all and (max-width: 639px) {
  #hukusi_1 .hukusi_1_mine_2 ul {
    display: block;
  }
}

#hukusi_1 .hukusi_1_mine_2 ul li {
  width: 48%;
  float: left;
  margin-right: 4%;
  background: #3F88C5;
}

@media all and (max-width: 639px) {
  #hukusi_1 .hukusi_1_mine_2 ul li {
    width: 100%;
    float: none;
    margin-right: 0;
  }
}

#hukusi_1 .hukusi_1_mine_2 ul li:last-child {
  margin-right: 0;
}

@media all and (max-width: 639px) {
  #hukusi_1 .hukusi_1_mine_2 ul li:last-child {
    margin-top: 30px;
  }
}

#hukusi_1 .hukusi_1_mine_2 ul li .text {
  padding: 15px;
}

#hukusi_1 .hukusi_1_mine_2 ul li .read {
  font-family: "YakuHanJP", "M PLUS 1p";
  font-weight: 300;
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: .1em;
  font-weight: 500;
  color: #fff;
  line-height: 1.5em;
}

#hukusi_1 .hukusi_1_mine_2 ul li .main_text {
  font-family: "YakuHanJP", "Noto Sans Japanese";
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: .1em;
  line-height: 1.6em;
  letter-spacing: .07em;
  color: #fff;
}

#hukusi_1 .hukusi_1_mine_2 ul li img {
  display: block;
  width: 100%;
  margin: auto;
}

#hukusi_2 {
  padding: 80px 0 80px;
}

@media all and (max-width: 639px) {
  #hukusi_2 {
    padding: 50px 0;
  }
}

#hukusi_2 .page_sec_title {
  text-align: center;
}

#hukusi_2 .innerB .table_title {
  font-family: "YakuHanJP", "M PLUS 1p";
  font-weight: 300;
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: .1em;
  font-weight: 500;
  color: #fff;
  line-height: 1.5em;
  margin: 30px 0 20px;
  padding: .2em 0.8em;
  background: #3F88C5;
}

#hukusi_2 .innerB .table_read {
  border: 1px solid #293c60;
  display: table;
  font-family: "YakuHanJP", "Noto Sans Japanese";
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: .1em;
  font-weight: 700;
  padding: 0 .8em;
  margin-bottom: 10px;
  color: #293c60;
}

#hukusi_2 .innerB dl {
  border-top: 1px solid #F2F2F2;
  margin-bottom: 30px;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  flex-wrap: wrap;
}

#hukusi_2 .innerB dl dt, #hukusi_2 .innerB dl dd {
  font-family: "YakuHanJP", "Noto Sans Japanese";
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: .1em;
  float: left;
  border-bottom: 1px solid #F2F2F2;
  padding: .8em 0;
  line-height: 1.5em;
}

#hukusi_2 .innerB dl dt {
  width: 80%;
}

#hukusi_2 .innerB dl dt.full {
  width: 100%;
}

#hukusi_2 .innerB dl dd {
  width: 20%;
  text-align: right;
}

#hukusi_2 .subtext {
  background: #FCEE21;
  text-align: center;
  font-family: "YakuHanJP", "Noto Sans Japanese";
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: .1em;
  padding: .8em 0;
  margin-top: 30px;
  font-weight: 500;
}

/*--------------------------------------------------------
酸素ボックス(sanso.php)
-----------------------------------------------------------*/
#sanso_1 {
  padding: 80px 0 80px;
}

@media all and (max-width: 639px) {
  #sanso_1 {
    padding: 50px 0;
  }
}

#sanso_1 .page_sec_title {
  margin-bottom: 15px;
}

#sanso_1 .kaden_1__top img {
  width: 100%;
  display: block;
}

#sanso_1 .kaden_1__top .main_text {
  font-family: "YakuHanJP", "Noto Sans Japanese";
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: .1em;
}

#sanso_2 {
  padding: 80px 0;
  background-image: url(../img/about-1__contents_back.jpg);
}

@media all and (max-width: 639px) {
  #sanso_2 {
    padding: 50px 0;
  }
}

#sanso_2 .sanso_2__contents h3 {
  text-align: center;
}

#sanso_2 .sanso_2__contents .listA {
  margin-top: 50px;
}

#sanso_2 .sanso_2__contents .listA .listA__item {
  margin-bottom: 120px;
}

@media all and (max-width: 639px) {
  #sanso_2 .sanso_2__contents .listA .listA__item {
    margin-bottom: 80px;
  }
}

#sanso_2 .sanso_2__contents .listA .listA__item .listA__item__inner {
  display: table;
  width: 100%;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  flex-wrap: wrap;
}

@media all and (max-width: 639px) {
  #sanso_2 .sanso_2__contents .listA .listA__item .listA__item__inner {
    display: block;
  }
}

#sanso_2 .sanso_2__contents .listA .listA__item .listA__item__inner .listA__item__inner__left,
#sanso_2 .sanso_2__contents .listA .listA__item .listA__item__inner .listA__item__inner__right {
  float: left;
  width: 48%;
}

@media all and (max-width: 639px) {
  #sanso_2 .sanso_2__contents .listA .listA__item .listA__item__inner .listA__item__inner__left,
  #sanso_2 .sanso_2__contents .listA .listA__item .listA__item__inner .listA__item__inner__right {
    float: none;
    width: 100%;
  }
}

#sanso_2 .sanso_2__contents .listA .listA__item .listA__item__inner .listA__item__inner__left img,
#sanso_2 .sanso_2__contents .listA .listA__item .listA__item__inner .listA__item__inner__right img {
  width: 100%;
  display: block;
}

#sanso_2 .sanso_2__contents .listA .listA__item .listA__item__inner .listA__item__inner__left img._sp,
#sanso_2 .sanso_2__contents .listA .listA__item .listA__item__inner .listA__item__inner__right img._sp {
  display: none;
}

@media all and (max-width: 639px) {
  #sanso_2 .sanso_2__contents .listA .listA__item .listA__item__inner .listA__item__inner__left img._sp,
  #sanso_2 .sanso_2__contents .listA .listA__item .listA__item__inner .listA__item__inner__right img._sp {
    display: block;
    margin-bottom: 15px;
  }
}

#sanso_2 .sanso_2__contents .listA .listA__item .listA__item__inner .listA__item__inner__right {
  margin-left: 4%;
}

@media all and (max-width: 639px) {
  #sanso_2 .sanso_2__contents .listA .listA__item .listA__item__inner .listA__item__inner__right {
    margin-left: 0;
    margin-top: 15px;
  }
}

@media all and (max-width: 639px) {
  #sanso_2 .sanso_2__contents .listA .listA__item .listA__item__inner .listA__item__inner__right img {
    display: none;
  }
}

#sanso_2 .sanso_2__contents .listA .listA__item:last-child {
  margin-bottom: 0;
}

#sanso_2 .sanso_2__contents .listA .listA__item {
  border-bottom: 1px solid #3F88C5;
  margin-bottom: 40px;
  padding-bottom: 40px;
}

#sanso_2 .sanso_2__contents .listA .listA__item .read {
  font-family: "YakuHanJP", "M PLUS 1p";
  font-weight: 300;
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: .1em;
  font-weight: 500;
  color: #3F88C5;
  line-height: 1.5em;
}

#sanso_2 .sanso_2__contents .listA .listA__item .main_text {
  margin-top: 15px;
  font-family: "YakuHanJP", "Noto Sans Japanese";
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: .1em;
  line-height: 1.6em;
  letter-spacing: .07em;
}

@media all and (max-width: 639px) {
  #sanso_2 .sanso_2__contents .listA .listA__item .main_text {
    font-family: "YakuHanJP", "Noto Sans Japanese";
    font-weight: 400;
    font-size: 14px;
    font-size: 0.875rem;
    letter-spacing: .1em;
    line-height: 1.6em;
    letter-spacing: .07em;
  }
}

#sanso_3 {
  padding: 80px 0 80px;
}

@media all and (max-width: 639px) {
  #sanso_3 {
    padding: 50px 0;
  }
}

#sanso_3 .page_sec_title {
  margin-bottom: 15px;
}

#sanso_3 .kaden_1__top img {
  width: 100%;
  display: block;
}

#sanso_3 .kaden_1__top .main_text {
  font-family: "YakuHanJP", "Noto Sans Japanese";
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: .1em;
}

/*--------------------------------------------------------
家電販売・修理(kaden.php)
-----------------------------------------------------------*/
#kaden_1 {
  padding: 80px 0 80px;
}

@media all and (max-width: 639px) {
  #kaden_1 {
    padding: 50px 0;
  }
}

#kaden_1 .page_sec_title {
  margin-bottom: 15px;
}

#kaden_1 .kaden_1__top img {
  width: 100%;
  display: block;
}

#kaden_1 .kaden_1__top .main_text {
  font-family: "YakuHanJP", "Noto Sans Japanese";
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: .1em;
}

#kaden_2 {
  padding: 80px 0;
  background-image: url(../img/top_2_back.png);
}

@media all and (max-width: 639px) {
  #kaden_2 {
    padding: 50px 0;
  }
}

#kaden_2 .kaden_2__contents h3 {
  text-align: center;
  width: 85%;
  margin: 0 auto 0;
}

#kaden_2 .kaden_2__contents ul {
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  width: 85%;
  margin: 50px auto 0;
}

@media all and (max-width: 639px) {
  #kaden_2 .kaden_2__contents ul {
    display: block;
    width: 95%;
  }
}

#kaden_2 .kaden_2__contents ul li {
  width: 25%;
  float: left;
  margin-bottom: 30px;
}

@media all and (max-width: 639px) {
  #kaden_2 .kaden_2__contents ul li {
    width: 100%;
    float: none;
  }
}

#kaden_2 .kaden_2__contents ul li .kaden_2__item {
  padding: 0 30px;
}

@media all and (max-width: 639px) {
  #kaden_2 .kaden_2__contents ul li .kaden_2__item {
    padding: 0;
  }
}

#kaden_2 .kaden_2__contents ul li .kaden_2__item img {
  width: 100%;
  display: block;
}

#kaden_2 .kaden_2__contents ul li .kaden_2__item .read {
  font-family: "YakuHanJP", "M PLUS 1p";
  font-weight: 300;
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: .1em;
  font-weight: 500;
  color: #3F88C5;
}

#kaden_2 .kaden_2__contents ul li .kaden_2__item .main_text {
  font-family: "YakuHanJP", "Noto Sans Japanese";
  font-weight: 400;
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: .1em;
  line-height: 1.6em;
  letter-spacing: .07em;
}

#kaden_3 {
  padding: 80px 0;
}

@media all and (max-width: 639px) {
  #kaden_3 {
    padding: 50px 0;
  }
}

#kaden_3 h3.page_sec_title {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}

#kaden_3 .kaden_3__contents ul {
  width: 80%;
  margin: 50px auto;
  border-top: 1px solid #F2F2F2;
}

#kaden_3 .kaden_3__contents ul li {
  padding: 30px 0;
  border-bottom: 1px solid #F2F2F2;
}

#kaden_3 .kaden_3__contents ul li .innerB {
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  flex-wrap: wrap;
}

#kaden_3 .kaden_3__contents ul li .left_s img {
  width: 50%;
  display: block;
  margin: auto;
  border-radius: 50%;
}

#kaden_3 .kaden_3__contents ul li .right_l .read {
  font-family: "YakuHanJP", "M PLUS 1p";
  font-weight: 300;
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: .1em;
  font-weight: 500;
  color: #3F88C5;
}

@media all and (max-width: 639px) {
  #kaden_3 .kaden_3__contents ul li .right_l .read {
    text-align: center;
  }
}

#kaden_3 .kaden_3__contents ul li .right_l .main_text {
  font-family: "YakuHanJP", "Noto Sans Japanese";
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: .1em;
}

@media all and (max-width: 639px) {
  #kaden_3 .kaden_3__contents ul li .right_l .main_text {
    text-align: center;
  }
}

/*--------------------------------------------------------
会社概要(about.php)
-----------------------------------------------------------*/
#about_1 {
  padding: 80px 0;
}

@media all and (max-width: 639px) {
  #about_1 {
    padding: 50px 0;
  }
}

#about_1 .page_sec_title {
  margin-bottom: 15px;
}

#about_1 table {
  margin: 0;
  width: 100%;
  border-top: 1px solid #F2F2F2;
}

#about_1 table th, #about_1 table td {
  font-family: "YakuHanJP", "Noto Sans Japanese";
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: .1em;
  background: none;
  border: none;
  border-bottom: 1px solid #F2F2F2;
}

#about_1 table td {
  border-left: 1px solid #F2F2F2;
}

#about_1 ul li {
  position: relative;
  font-family: "YakuHanJP", "Noto Sans Japanese";
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: .1em;
  padding: .4em 0 .4em 80px;
}

#about_1 ul li span {
  font-family: "YakuHanJP", "M PLUS 1p";
  font-weight: 300;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: .1em;
  font-weight: 500;
  display: inline-block;
  width: 80px;
  text-align: center;
  margin-left: -80px;
  background: #3F88C5;
  color: #fff;
  margin-right: .8em;
}

#about_1 .map {
  margin-top: 30px;
}

/*-----------------------------------------------------------------------------
お問い合わせページ(contact.php)
リセットボタン
<div class="form-button">
<label class="reset"><input type="reset" name="reset" value="リセット"></label>
</div>
--------------------------------------------------------------------------------*/
#contact_1 {
  margin-top: 50px;
  margin-bottom: 75px;
}

@media all and (max-width: 639px) {
  #contact_1 {
    margin-bottom: 50px;
  }
}

@media all and (max-width: 639px) {
  #contact_1 .single {
    padding: 0;
  }
}

#contact_1 .contact_1__contents {
  width: 80%;
  margin: 50px auto 0;
}

@media all and (max-width: 639px) {
  #contact_1 .contact_1__contents {
    margin-top: 30px;
    width: 100%;
  }
}

#contact_1 .contact_1__contents .read {
  font-family: "YakuHanJP", "Noto Sans Japanese";
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: .1em;
  text-align: center;
}

#contact_1 .contact_1__contents .read span {
  display: block;
  font-family: "YakuHanJP", "M PLUS 1p";
  font-weight: 300;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: .1em;
  background: #f2f2f2;
  margin-top: 5px;
}

#contact_1 .contact_1__contents .form dt, #contact_1 .contact_1__contents .form dd {
  font-family: "YakuHanJP", "Noto Sans Japanese";
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: .1em;
}

#contact_1 .contact_1__contents .form dd .textarea, #contact_1 .contact_1__contents .form dd textarea {
  width: 97%;
}

#contact_1 .contact_1__contents .form #mailform button {
  font-family: "YakuHanJP", "Noto Sans Japanese";
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: .1em;
}

#contact_1 .contact_1__contents .form .form-button .reset {
  cursor: pointer;
  display: block;
  margin: 0 auto;
  padding: 5px 0;
  color: #eee;
  text-align: center;
  width: 250px;
  background: #fff;
  font-weight: bold;
  border: 1px solid #293c60;
  border-radius: 5px;
}

#contact_1 .contact_1__contents .form .form-button .reset input {
  background: none;
  color: #CCCCCC;
  border: none;
  font-weight: bold;
  font-family: "YakuHanJP", "Noto Sans Japanese";
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: .1em;
}

#contact_1 .contact_1__contents .form .fm-text {
  font-family: "YakuHanJP", "Noto Sans Japanese";
  font-weight: 400;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: .1em;
}

/*-----------------------------------------------------------------------------
ぶろぐ(entry.php)
--------------------------------------------------------------------------------*/
#entry {
  margin-top: 50px;
  padding-bottom: 100px;
}

@media all and (max-width: 800px) {
  #entry {
    padding-bottom: 50px;
  }
}

#entry .entry__cotent {
  background: #fff;
  padding: 30px;
  font-family: "YakuHanJP", "Noto Sans Japanese";
}

@media all and (max-width: 800px) {
  #entry .entry__cotent {
    padding: 15px;
  }
}

#entry .entry__cotent .data span {
  background: #f2f2f2;
  padding: .3em .5em;
  font-size: 12px;
}

#entry .entry__cotent .entry__title {
  border-bottom: 1px solid #125da0;
  font-size: 20px;
  margin-bottom: 15px;
  margin-top: 15px;
  color: #125da0;
}

@media all and (max-width: 800px) {
  #entry .entry__cotent .entry__cotent__text {
    font-size: 14px;
  }
}
/*# sourceMappingURL=custom.css.map */