@charset "UTF-8";
@import url("https://cdn.jsdelivr.net/npm/yakuhanjp@3.0.0/dist/css/yakuhanjp.min.css");
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700,900|Noto+Serif+JP:200,300,400,500,600,700,900&display=swap");
@import url("https://fonts.googleapis.com/css?family=Josefin+Sans:300,400,700&display=swap&subset=latin-ext");
/**

  @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();
}
-------------------------------------------------------------------*/
/*----------------------------------------------------
レイアウトのみ
-------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css?family=Josefin+Sans:300,400,700&display=swap&subset=latin-ext");
@import url("https://fonts.googleapis.com/css?family=Josefin+Sans:300,400,700&display=swap&subset=latin-ext");
.innerA {
  display: table;
  width: 100%;
  table-layout: fixed;
}

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

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

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

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

.innerA .left_s {
  width: 30%;
  float: left;
  height: 100%;
}

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

/*----------------------------------------------------
レイアウトのみ
-------------------------------------------------------*/
.innerB {
  display: table;
  width: 100%;
  table-layout: fixed;
}

@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;
  height: 100%;
}

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

/*-----------------------------------------------------------------------------
ぶろぐ
<section id="entry" class="common_page__sec">
 <div class="single">
 <div class="nakaA">
  <h3>新着情報</h3>
  <div class="entry__cotent">
   <p class="data"><span>2018.09.20</span></p>
   <p class="entry__title">
   タイトルホームページを公開致しました</p>

   <div class="entry__cotent__text">
   本文ホームページを公開致しました</div>
   </div>
  </div>
 </div>
</section>
--------------------------------------------------------------------------------*/
#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 JP", serif;
}

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

#entry .entry__cotent .data span {
  background: #f2f2f2;
  padding: .3em .5em;
}

#entry .entry__cotent .entry__title {
  border-bottom: 1px solid #FFA8C5;
  margin-bottom: 15px;
  margin-top: 15px;
  color: #FFA8C5;
  font-family: "YakuHanJP", "Noto Sans JP", serif;
  font-weight: 500;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: .1em;
  font-weight: 900;
}

#entry .entry__cotent .entry__cotent__text {
  font-family: "YakuHanJP", "Noto Sans JP", serif;
  font-weight: 500;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: .1em;
}

/*--------------------------------------------------------------
下層ページ　ページ看板共通
ページ共通
<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
-------------------------------------------------*/
body {
  font-family: "YakuHanJP", "Noto Sans JP", serif;
  letter-spacing: 0.1em;
}

.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(189, 66, 90, 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 #BD425A;
  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: #BD425A;
  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 #BD425A;
  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(189, 66, 90, 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(189, 66, 90, 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: 0.8;
  margin-bottom: 35px;
  position: relative;
  letter-spacing: 2px;
}

.rcsLinkType05 h2:after {
  content: "";
  width: 100px;
  height: 3px;
  background: #BD425A;
  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: #BD425A;
  border: 2px solid #BD425A;
  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 0.3s;
}

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

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

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

.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: #BD425A;
}

.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 0.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;
  -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(0, 0);
  opacity: 1;
}

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

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

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

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

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  height: 70px;
  display: flex;
  justify-content: space-between;
  line-height: 1.2;
  text-align: center;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0);
}

header * {
  box-sizing: border-box;
}

@media screen and (max-width: 900px) {
  header {
    height: auto;
  }
}

header .u-logo {
  width: 340px;
  padding: 10px 0;
}

@media screen and (max-width: 900px) {
  header .u-logo {
    width: 230px;
  }
}

header .u-logo > a {
  display: block;
}

header .u-logo > a:hover {
  transition: all 0.3s ease;
  opacity: 0.9;
}

header .u-logo > a > img {
  width: 100%;
}

header .u-nav {
  width: auto;
  height: 100%;
}

@media screen and (max-width: 900px) {
  header .u-nav {
    display: none;
  }
}

header .u-nav > ul {
  display: flex;
  height: 100%;
}

header .u-nav > ul > li {
  display: inline-block;
  padding: 0 10px;
  height: 100%;
}

header .u-nav > ul > li > a {
  display: flex;
  align-items: center;
  height: 100%;
  font-weight: 600;
}

header .u-nav > ul > li > a:link, header .u-nav > ul > li > a:visited {
  color: #fff;
}

header .u-nav > ul > li > a > b > span {
  font-size: 0.8em;
}

header .u-nav > ul > li:hover {
  transition: all 0.3s ease;
  background-image: linear-gradient(to right bottom, #ceebed, #FFA8C5);
}

header .u-nav > ul > li:hover > a:link, header .u-nav > ul > li:hover > a:visited {
  color: #fff;
}

header .u-nav > ul > li.emph1 {
  background-color: #BD425A;
}

header .u-nav > ul > li.emph1 > a {
  font-family: "YakuHanJP", "Josefin Sans", sans-serif;
  letter-spacing: 0.1em;
  font-size: 1.4em;
  font-weight: 200;
}

header .u-nav > ul > li.emph1 > a:link, header .u-nav > ul > li.emph1 > a:visited {
  color: #fff;
}

header .u-nav > ul > li.emph2 {
  background-color: #87655B;
  padding: 0 20px;
}

header .u-nav > ul > li.emph2 > a > b {
  font-size: 1.2em;
}

header .u-nav > ul > li.emph2 > a:link, header .u-nav > ul > li.emph2 > a:visited {
  color: #fff;
}

header.attach {
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.8);
}

header.attach .u-nav a:link, header.attach .u-nav a:visited {
  color: #BD425A;
}

.top_main {
  width: 100%;
  position: relative;
  height: calc(100vh - 75px);
}

@media all and (max-width: 639px) {
  .top_main {
    height: 50vh;
    margin-top: 50px;
  }
}

.top_main ul.slider li {
  width: 100%;
  height: calc(100vh - 75px);
  background-image: url(../img/slide_1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media all and (max-width: 639px) {
  .top_main ul.slider li {
    height: 50vh;
  }
}

.top_main ul.slider li:nth-child(2) {
  background-image: url(../img/slide_2.jpg);
}

.top_main ul.slider li:nth-child(3) {
  background-image: url(../img/slide_3.jpg);
}

.top_main ul.slider li .vhasi {
  position: absolute;
  display: block;
  width: 950px;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

@media all and (max-width: 639px) {
  .top_main ul.slider li .vhasi {
    width: 90%;
    top: 25vh;
    height: auto;
  }
}

.top_main ul.slider li .vhasi img {
  width: 100%;
  display: block;
}

.top_main ul.slider li .vhasi.itme-1 {
  height: 211px;
}

@media all and (max-width: 639px) {
  .top_main ul.slider li .vhasi.itme-1 {
    width: 90%;
    top: 25vh;
    height: auto;
  }
}

.top_main ul.slider li .vhasi.itme-2 {
  width: 612px;
  height: 211px;
}

@media all and (max-width: 639px) {
  .top_main ul.slider li .vhasi.itme-2 {
    width: 90%;
    top: 25vh;
    height: auto;
  }
}

.top_main ul.slider li .vhasi.itme-3 {
  height: 246px;
}

@media all and (max-width: 639px) {
  .top_main ul.slider li .vhasi.itme-3 {
    width: 90%;
    top: 25vh;
    height: auto;
  }
}

.top_main img._sp {
  display: none;
  width: 100%;
}

@media all and (max-width: 639px) {
  .top_main img._sp {
    /*display: block;*/
  }
}

.top_main.unnder {
  height: 500px;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media all and (max-width: 639px) {
  .top_main.unnder {
    height: 170px;
  }
}

.top_main.unnder header {
  position: initial;
}

.top_main.unnder .read {
  font-family: "YakuHanJP", "Noto Sans JP", serif;
  font-weight: 500;
  font-size: 25px;
  font-size: 1.5625rem;
  letter-spacing: .1em;
  margin-bottom: 70px;
  font-weight: 300;
  color: #333;
  line-height: 1em;
  text-align: center;
  height: 112px;
  position: absolute;
  width: 100%;
  margin: auto;
  top: 0;
  bottom: 0;
}

@media all and (max-width: 639px) {
  .top_main.unnder .read {
    font-family: "YakuHanJP", "Noto Sans JP", serif;
    font-weight: 500;
    font-size: 20px;
    font-size: 1.25rem;
    letter-spacing: .1em;
    height: 90px;
  }
}

.top_main.unnder .read span.en {
  font-family: "YakuHanJP", "Josefin Sans", sans-serif;
  font-weight: 500;
  font-size: 79px;
  font-size: 4.9375rem;
  letter-spacing: .1em;
  font-weight: 900;
  line-height: 1em;
  display: table;
  border-bottom: 2px solid #BD425A;
  margin: 10px auto 0;
  color: #BD425A;
}

@media all and (max-width: 639px) {
  .top_main.unnder .read span.en {
    font-family: "YakuHanJP", "Josefin Sans", sans-serif;
    font-weight: 500;
    font-size: 59px;
    font-size: 3.6875rem;
    letter-spacing: .1em;
    line-height: 1em;
  }
}

.top_main.unnder .read span.cooo {
  background: #fff;
  padding: 0 0.8em;
}

@media screen and (max-width: 700px) {
  .top_main.unnder .read span.cooo {
    font-size: 15px;
  }
}

@media all and (max-width: 639px) {
  .top_main.unnder .read {
    font-size: 24px;
  }
}

.top_main.i01 {
  background-image: url(../img/unnder-back1.jpg);
}

.top_main.i02 {
  background-image: url(../img/unnder-back2.jpg);
}

.top_main.i03 {
  background-image: url(../img/unnder-back3.jpg);
}

.top_main.i04 {
  background-image: url(../img/unnder-back4.jpg);
}

.top_main.i05 {
  background-image: url(../img/unnder-back5.jpg);
}

.top_main.i06 {
  background-image: url(../img/unnder-back6.jpg);
}

.page-read {
  font-family: "YakuHanJP", "Josefin Sans", sans-serif;
  font-weight: 500;
  font-size: 25px;
  font-size: 1.5625rem;
  letter-spacing: .1em;
  margin-bottom: 70px;
  padding-bottom: 50px;
  font-weight: 300;
  color: #333;
  line-height: 1em;
  text-align: center;
  height: 112px;
  width: 100%;
  margin: auto;
}

@media all and (max-width: 639px) {
  .page-read {
    font-family: "YakuHanJP", "Noto Sans JP", serif;
    font-weight: 500;
    font-size: 13px;
    font-size: 0.8125rem;
    letter-spacing: .1em;
    padding-bottom: 0;
  }
}

.page-read span.en {
  font-family: "YakuHanJP", "Noto Sans JP", serif;
  font-weight: 500;
  font-size: 50px;
  font-size: 3.125rem;
  letter-spacing: .1em;
  font-weight: 900;
  line-height: 1.2;
  display: table;
  border-bottom: 2px solid #333;
  margin: 10px auto 0;
}

@media all and (max-width: 639px) {
  .page-read span.en {
    font-family: "YakuHanJP", "Noto Sans JP", serif;
    font-weight: 500;
    font-size: 25px;
    font-size: 1.5625rem;
    letter-spacing: .1em;
    line-height: 1.2;
  }
}

.page-read span.cooo {
  background: #ED400B;
  padding: 0 0.8em;
  color: #fff;
}

@media screen and (max-width: 700px) {
  .page-read span.cooo {
    font-size: 15px;
  }
}

@media all and (max-width: 639px) {
  .page-read {
    font-size: 24px;
  }
}

#top_1 {
  background-image: linear-gradient(150deg, #f66235 0%, #ED400B 100%);
  padding: 80px 0;
}

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

#top_1 .sec_title {
  display: table;
  margin: auto;
  text-align: center;
  color: #333;
  line-height: 1em;
  font-family: "YakuHanJP", "Josefin Sans", sans-serif;
  font-weight: 500;
  font-size: 48px;
  font-size: 3rem;
  letter-spacing: .1em;
  font-weight: 200;
  position: relative;
}

#top_1 .sec_title:before, #top_1 .sec_title:after {
  content: "";
  background: #333;
  width: 0.8em;
  height: 1px;
  display: block;
  position: absolute;
  margin: auto;
  top: 22px;
}

@media all and (max-width: 639px) {
  #top_1 .sec_title:before, #top_1 .sec_title:after {
    display: none;
  }
}

#top_1 .sec_title:before {
  left: -2.3em;
}

#top_1 .sec_title:after {
  right: -2.3em;
}

@media all and (max-width: 639px) {
  #top_1 .sec_title {
    padding: 20px 0;
  }
}

#top_1 .sec_title2 {
  display: table;
  margin: auto;
  text-align: center;
  color: #fff;
  line-height: 1em;
  font-family: "YakuHanJP", "Josefin Sans", sans-serif;
  font-weight: 500;
  font-size: 48px;
  font-size: 3rem;
  letter-spacing: .1em;
  font-weight: 200;
  position: relative;
}

@media all and (max-width: 639px) {
  #top_1 .sec_title2 {
    padding: 20px 0;
  }
}

#top_1 .top_2__contents {
  width: 90%;
  margin: 30px auto 0;
  background: #fff;
  padding: 15px 30px;
}

@media all and (max-width: 639px) {
  #top_1 .top_2__contents {
    width: auto;
  }
}

#top_3 {
  padding: 80px 0;
}

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

#top_3 .sec_title {
  display: table;
  margin: auto;
  text-align: center;
  color: #333;
  line-height: 1em;
  font-family: "YakuHanJP", "Josefin Sans", sans-serif;
  font-weight: 500;
  font-size: 48px;
  font-size: 3rem;
  letter-spacing: .1em;
  font-weight: 200;
  position: relative;
}

#top_3 .sec_title:before, #top_3 .sec_title:after {
  content: "";
  background: #333;
  width: 0.8em;
  height: 1px;
  display: block;
  position: absolute;
  margin: auto;
  top: 22px;
}

@media all and (max-width: 639px) {
  #top_3 .sec_title:before, #top_3 .sec_title:after {
    display: none;
  }
}

#top_3 .sec_title:before {
  left: -2.3em;
}

#top_3 .sec_title:after {
  right: -2.3em;
}

@media all and (max-width: 639px) {
  #top_3 .sec_title {
    padding: 20px 0;
  }
}

#top_3 .main {
  font-family: "YakuHanJP", "Noto Sans JP", serif;
  font-weight: 500;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: .1em;
  text-align: center;
  margin-top: 50px;
  line-height: 1.8m;
  color: #333;
  font-weight: 300;
}

#top_sec2 {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 80px 0;
}

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

#top_sec2 .top_2__contemts {
  position: relative;
}

#top_sec2 .top_2__contemts .read {
  font-family: "YakuHanJP", "Noto Sans JP", serif;
  font-weight: 500;
  font-size: 50px;
  font-size: 3.125rem;
  letter-spacing: .1em;
  color: #fff;
  line-height: 1.3em;
  font-weight: 300;
  text-align: center;
}

#top_sec2 .top_2__contemts .read span {
  display: block;
  font-family: "YakuHanJP", "Noto Sans JP", serif;
  font-weight: 500;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: .1em;
  line-height: 1.3em;
  font-weight: 400;
  text-align: center;
}

@media all and (max-width: 639px) {
  #top_sec2 .top_2__contemts .read span {
    font-family: "YakuHanJP", "Noto Sans JP", serif;
    font-weight: 500;
    font-size: 13px;
    font-size: 0.8125rem;
    letter-spacing: .1em;
  }
}

@media all and (max-width: 639px) {
  #top_sec2 .top_2__contemts .read {
    font-family: "YakuHanJP", "Noto Sans JP", serif;
    font-weight: 500;
    font-size: 25px;
    font-size: 1.5625rem;
    letter-spacing: .1em;
  }
}

#top_sec2 .top_2__contemts .main_texrt {
  font-family: "YakuHanJP", "Noto Sans JP", serif;
  font-weight: 500;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: .1em;
  text-align: center;
  margin-top: 50px;
  line-height: 1.8m;
  color: #fff;
  font-weight: 300;
}

@media all and (max-width: 639px) {
  #top_sec2 .top_2__contemts .main_texrt {
    font-weight: 400;
    text-align: left;
  }
}

#top_2 {
  background: #fff;
}

#top_2 ul {
  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 ul {
    display: block;
  }
}

#top_2 ul li {
  width: 50%;
  position: relative;
  background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background: #fff;
  padding: 80px;
  box-sizing: border-box;
}

@media all and (max-width: 639px) {
  #top_2 ul li {
    width: 100%;
    margin-right: 0;
    padding: 30px 15px;
  }
}

#top_2 ul li:nth-child(2n) {
  background-image: linear-gradient(to top, #e6e9f0 0%, #eef1f5 100%);
}

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

#top_2 ul li .read {
  font-family: "YakuHanJP", "Noto Sans JP", serif;
  font-weight: 500;
  font-size: 30px;
  font-size: 1.875rem;
  letter-spacing: .1em;
  color: #333;
  line-height: 1.3em;
  font-weight: 300;
  text-align: center;
}

#top_2 ul li .main {
  font-family: "YakuHanJP", "Noto Sans JP", serif;
  font-weight: 500;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: .1em;
  text-align: center;
  margin-top: 50px;
  line-height: 1.8m;
  color: #333;
  font-weight: 300;
}

@media all and (max-width: 639px) {
  #top_2 ul li .main {
    font-weight: 400;
  }
}

#top_4 {
  padding: 80px 0;
  background-color: #BD425A;
}

#top_4 .sec_title {
  display: table;
  margin: auto;
  text-align: center;
  color: #333;
  line-height: 1em;
  font-family: "YakuHanJP", "Josefin Sans", sans-serif;
  font-weight: 500;
  font-size: 48px;
  font-size: 3rem;
  letter-spacing: .1em;
  font-weight: 200;
  position: relative;
}

#top_4 .sec_title:before, #top_4 .sec_title:after {
  content: "";
  background: #333;
  width: 0.8em;
  height: 1px;
  display: block;
  position: absolute;
  margin: auto;
  top: 22px;
}

@media all and (max-width: 639px) {
  #top_4 .sec_title:before, #top_4 .sec_title:after {
    display: none;
  }
}

#top_4 .sec_title:before {
  left: -2.3em;
}

#top_4 .sec_title:after {
  right: -2.3em;
}

@media all and (max-width: 639px) {
  #top_4 .sec_title {
    padding: 20px 0;
  }
}

#top_4 ul {
  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_4 ul {
    display: block;
  }
}

#top_4 ul li {
  width: 32%;
  margin-right: 2%;
}

@media all and (max-width: 639px) {
  #top_4 ul li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
}

#top_4 ul li:last-child {
  margin-right: 0;
}

@media all and (max-width: 639px) {
  #top_4 ul li:last-child {
    margin-bottom: 0;
  }
}

#top_4 ul li a {
  display: block;
}

#top_4 ul li a img {
  width: 100%;
  display: block;
}

#top_5 {
  padding: 80px 0;
  background-image: linear-gradient(to top, #f3e7e9 0%, #e3eeff 99%, #e3eeff 100%);
}

#top_5 .top_3__content {
  position: relative;
}

#top_5 .top_3__content:after {
  background-image: url(../img/top_4_before.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-position: left;
  content: "";
  width: 56%;
  display: block;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}

@media all and (max-width: 639px) {
  #top_5 .top_3__content:after {
    opacity: 0.1;
    background-position: center;
  }
}

#top_5 .top_3__content .top_3__content_left {
  width: 320px;
  max-width: 100%;
}

#top_5 .read {
  color: #333;
  line-height: 1em;
  font-family: "YakuHanJP", "Noto Sans JP", serif;
  font-weight: 500;
  font-size: 48px;
  font-size: 3rem;
  letter-spacing: .1em;
  font-weight: 900;
}

#top_5 .main {
  font-family: "YakuHanJP", "Noto Sans JP", serif;
  font-weight: 500;
  font-size: 17px;
  font-size: 1.0625rem;
  letter-spacing: .1em;
  font-weight: 300;
  color: #666;
  margin-top: 30px;
}

#otoiawase {
  padding: 80px 0;
  background: url("../img/bg-contactbnr.jpg") no-repeat center center/cover;
}

#otoiawase .read {
  margin-bottom: 30px;
}

#otoiawase .read span.en {
  font-family: "YakuHanJP", "Josefin Sans", sans-serif;
  font-weight: 500;
  font-size: 60px;
  font-size: 3.75rem;
  letter-spacing: .1em;
  line-height: 1.4;
  display: table;
  margin: auto;
  border-bottom: 2px solid #666;
  font-weight: 600;
  color: #666;
}

@media all and (max-width: 639px) {
  #otoiawase .read span.en {
    font-family: "YakuHanJP", "Josefin Sans", sans-serif;
    font-weight: 500;
    font-size: 30px;
    font-size: 1.875rem;
    letter-spacing: .1em;
    line-height: 1.4;
  }
}

#otoiawase .main {
  font-family: "YakuHanJP", "Noto Sans JP", serif;
  font-weight: 500;
  font-size: 17px;
  font-size: 1.0625rem;
  letter-spacing: .1em;
  font-weight: 300;
  text-align: center;
}

#otoiawase .main.sec {
  margin-top: 30px;
  font-family: "YakuHanJP", "Noto Sans JP", serif;
  font-weight: 500;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: .1em;
  font-weight: 300;
}

#otoiawase 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: 80%;
  margin: 30px auto 15px;
}

@media all and (max-width: 639px) {
  #otoiawase ul {
    display: block;
    width: 100%;
  }
}

#otoiawase ul li {
  width: 48%;
  margin-right: 4%;
}

@media all and (max-width: 639px) {
  #otoiawase ul li {
    width: 100%;
    margin-right: 0;
  }
}

#otoiawase ul li a,
#otoiawase ul li p {
  background: #fff;
  display: block;
  font-family: "YakuHanJP", "Josefin Sans", sans-serif;
  font-weight: 500;
  font-size: 37px;
  font-size: 2.3125rem;
  letter-spacing: .1em;
  text-align: center;
  padding: 0;
  letter-spacing: 0.1em;
  font-weight: inherit;
}

@media screen and (min-width: 700px) and (max-width: 900px) {
  #otoiawase ul li a,
  #otoiawase ul li p {
    font-size: 26px;
  }
}

@media all and (max-width: 639px) {
  #otoiawase ul li a,
  #otoiawase ul li p {
    font-family: "YakuHanJP", "Josefin Sans", sans-serif;
    font-weight: 500;
    font-size: 30px;
    font-size: 1.875rem;
    letter-spacing: .1em;
  }
}

#otoiawase ul li.tl a:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f095";
  margin-right: 15px;
  font-size: 25px;
}

#otoiawase ul li.em a:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0e0";
  margin-right: 15px;
  font-size: 25px;
}

#otoiawase ul li.mp a:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f3c5";
  margin-right: 15px;
  font-size: 25px;
}

#otoiawase ul li:last-child {
  margin-right: 0;
}

@media all and (max-width: 639px) {
  #otoiawase ul li:last-child {
    margin-top: 15px;
  }
}

#otoiawase .mailll {
  background: #fff;
  display: block;
  width: 80%;
  text-align: center;
  margin: 0 auto;
}

@media all and (max-width: 639px) {
  #otoiawase .mailll {
    width: 100%;
  }
}

#otoiawase .mailll a {
  font-family: "YakuHanJP", "Josefin Sans", sans-serif;
  font-weight: 500;
  font-size: 37px;
  font-size: 2.3125rem;
  letter-spacing: .1em;
  text-align: center;
  padding: 0;
  letter-spacing: 0.1em;
  font-weight: inherit;
}

footer {
  border-top: none;
  height: auto;
  position: static;
  background: #fff;
  border-bottom: 10px solid #BD425A;
}

footer .imags {
  display: block;
}

footer .imags img {
  display: inline-block;
  vertical-align: middle;
}

footer .imags img.logo {
  width: 185px;
  margin-right: 10px;
  text-align: center;
  float: left;
}

@media screen and (max-width: 700px) {
  footer .imags img.logo {
    float: none;
  }
}

footer .foot_contens {
  display: table;
  width: 100%;
  position: relative;
}

footer .foot_contens .texts {
  text-align: left;
  color: #666;
  margin-left: 15px;
  display: table;
  margin-top: 20px;
}

footer .foot_contens .texts .info_company {
  font-family: "YakuHanJP", "Noto Sans JP", serif;
  font-weight: 500;
  font-size: 10px;
  font-size: 0.625rem;
  letter-spacing: .1em;
}

footer .foot_contens .texts .foot_nav {
  display: table;
  table-layout: fixed;
}

@media all and (max-width: 639px) {
  footer .foot_contens .texts .foot_nav {
    display: none;
  }
}

footer .foot_contens .texts .foot_nav li {
  display: inline-block;
}

footer .foot_contens .texts .foot_nav li a {
  display: block;
  font-family: "YakuHanJP", "Noto Sans JP", serif;
  font-weight: 500;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: .1em;
  margin-right: 10px;
}

footer .foot_contens .texts .foot_nav li a:before {
  font-family: "FontAwesome";
  content: "\f105";
  margin-right: 5px;
}

footer .foot_contens .copyright {
  position: absolute;
  bottom: 0;
  right: 0;
}

@media screen and (max-width: 700px) {
  footer .foot_contens .copyright {
    position: static;
  }
}

/*------------------------------------
下層ページ共通
-------------------------------------*/
#page_top {
  background-image: url(../img/page_top.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 30px 0;
  padding-top: 140px;
}

#page_top .sec_title {
  font-family: "YakuHanJP", "Noto Sans JP", serif;
  font-weight: 500;
  font-size: 21px;
  font-size: 1.3125rem;
  letter-spacing: .1em;
  line-height: 1.1em;
  text-align: center;
  color: #BD425A;
  font-weight: 500;
  background-image: url(../img/sec_title_back.png);
  background-position: center;
  padding: 15px 0 15px;
  margin-bottom: 30px;
  background-repeat: no-repeat;
  font-size: 41px;
  color: #fff;
}

@media all and (max-width: 639px) {
  #page_top .sec_title {
    font-size: 28px;
  }
}

/*------------------------------------
事業内容(servce.php)
-------------------------------------*/
#service_1 {
  padding: 80px 0;
  background-color: #fff;
}

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

#service_1 .inner {
  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) {
  #service_1 .inner {
    display: block;
    width: 90%;
    margin: auto;
  }
}

#service_1 .inner .in_left {
  width: 52%;
  margin-right: 4%;
}

@media all and (max-width: 639px) {
  #service_1 .inner .in_left {
    width: 100%;
  }
}

#service_1 .inner .in_right {
  width: 44%;
}

@media all and (max-width: 639px) {
  #service_1 .inner .in_right {
    width: 100%;
  }
}

#service_1 .inner .in_right img {
  width: 100%;
  display: block;
}

@media all and (max-width: 639px) {
  #service_1 .inner .in_right img {
    width: 100%;
    margin: 30px auto 0;
  }
}

#service_1 .sec_title {
  font-family: "YakuHanJP", "Noto Sans JP", serif;
  font-weight: 500;
  font-size: 27px;
  font-size: 1.6875rem;
  letter-spacing: .1em;
  font-weight: 200;
  color: #FFA8C5;
  border-bottom: 2px solid #FFA8C5;
  margin-bottom: 30px;
}

#service_1 .main {
  font-family: "YakuHanJP", "Noto Sans JP", serif;
  font-weight: 500;
  font-size: 17px;
  font-size: 1.0625rem;
  letter-spacing: .1em;
  line-height: 1.9em;
  color: #333;
  font-weight: 300;
}

#service_1 a {
  width: 200px;
  background: #fff;
  text-align: center;
  display: block;
  margin: 50px 0 0;
  line-height: 1em;
  padding: 18px 0;
  border-radius: 50px;
  color: #FFA8C5;
}

#service_1 a span {
  font-family: "YakuHanJP", "Josefin Sans", sans-serif;
  font-weight: 500;
  font-size: 23px;
  font-size: 1.4375rem;
  letter-spacing: .1em;
  font-weight: 200;
}

#service_1 a span:after {
  font-family: "FontAwesome";
  content: "\f105";
  margin-left: 5px;
  font-size: 13px;
}

#service_1 a:hover {
  background: #FFA8C5;
  color: #fff;
  transition: 0.4s;
}

.service_1 {
  padding: 80px 0;
}

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

.service_1 .inner {
  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) {
  .service_1 .inner {
    display: block;
    width: 90%;
    margin: auto;
  }
}

.service_1 .inner .in_left {
  width: 52%;
  margin-right: 4%;
}

@media all and (max-width: 639px) {
  .service_1 .inner .in_left {
    width: 100%;
  }
}

.service_1 .inner .in_right {
  width: 44%;
}

@media all and (max-width: 639px) {
  .service_1 .inner .in_right {
    width: 100%;
  }
}

.service_1 .inner .in_right img {
  width: 100%;
  display: block;
}

@media all and (max-width: 639px) {
  .service_1 .inner .in_right img {
    width: 100%;
    margin: 30px auto 0;
  }
}

.service_1 .sec_title {
  font-family: "YakuHanJP", "Noto Sans JP", serif;
  font-weight: 500;
  font-size: 27px;
  font-size: 1.6875rem;
  letter-spacing: .1em;
  font-weight: 200;
  color: #FFA8C5;
  border-bottom: 2px solid #FFA8C5;
  margin-bottom: 30px;
}

.service_1 .main {
  font-family: "YakuHanJP", "Noto Sans JP", serif;
  font-weight: 500;
  font-size: 17px;
  font-size: 1.0625rem;
  letter-spacing: .1em;
  line-height: 1.9em;
  color: #333;
  font-weight: 300;
}

#service_2 {
  padding: 80px 0;
  background: linear-gradient(to top, #e6e9f0 0%, #eef1f5 100%);
}

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

#service_2 .inner {
  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) {
  #service_2 .inner {
    display: block;
    width: 90%;
    margin: auto;
  }
}

#service_2 .inner .in_left {
  width: 52%;
  margin-right: 4%;
}

@media all and (max-width: 639px) {
  #service_2 .inner .in_left {
    width: 100%;
  }
}

#service_2 .inner .in_right {
  width: 44%;
}

@media all and (max-width: 639px) {
  #service_2 .inner .in_right {
    width: 100%;
  }
}

#service_2 .inner .in_right img {
  width: 100%;
  display: block;
}

@media all and (max-width: 639px) {
  #service_2 .inner .in_right img {
    width: 100%;
    margin: 30px auto 0;
  }
}

#service_2 .sec_title {
  font-family: "YakuHanJP", "Noto Sans JP", serif;
  font-weight: 500;
  font-size: 27px;
  font-size: 1.6875rem;
  letter-spacing: .1em;
  font-weight: 200;
  color: #BD425A;
  border-bottom: 2px solid #BD425A;
  margin-bottom: 30px;
}

#service_2 .main {
  font-family: "YakuHanJP", "Noto Sans JP", serif;
  font-weight: 500;
  font-size: 17px;
  font-size: 1.0625rem;
  letter-spacing: .1em;
  line-height: 1.9em;
  color: #333;
  font-weight: 300;
}

#service_2 ul {
  background: #fff;
  padding: 10px;
  margin: 10px 0;
}

#service_2 ul li {
  font-family: "YakuHanJP", "Noto Sans JP", serif;
  font-weight: 500;
  font-size: 15px;
  font-size: 0.9375rem;
  letter-spacing: .1em;
  font-weight: 300;
}

#service_2 ul li:before {
  font-family: "FontAwesome";
  content: "\f00c";
  margin-left: 5px;
  font-size: 13px;
  color: #BD425A;
}

#service_2 a {
  width: 200px;
  background: #fff;
  text-align: center;
  display: block;
  margin: 50px 0 0;
  line-height: 1em;
  padding: 18px 0;
  border-radius: 50px;
  color: #FFA8C5;
}

#service_2 a span {
  font-family: "YakuHanJP", "Josefin Sans", sans-serif;
  font-weight: 500;
  font-size: 23px;
  font-size: 1.4375rem;
  letter-spacing: .1em;
  font-weight: 200;
}

#service_2 a span:after {
  font-family: "FontAwesome";
  content: "\f105";
  margin-left: 5px;
  font-size: 13px;
}

#service_2 a:hover {
  background: #FFA8C5;
  color: #fff;
  transition: 0.4s;
}

/*------------------------------------
設計事例(works.php)
-------------------------------------*/
#works_1 {
  padding: 80px 0;
  background: linear-gradient(to top, #f3e7e9 0%, #e3eeff 99%, #e3eeff 100%);
}

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

#works_1 .read {
  font-family: "YakuHanJP", "Noto Sans JP", serif;
  font-weight: 500;
  font-size: 25px;
  font-size: 1.5625rem;
  letter-spacing: .1em;
  font-weight: 300;
  text-align: center;
}

#works_1 ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 80px auto 0;
}

@media all and (max-width: 639px) {
  #works_1 ul {
    display: block;
    margin: 50px auto 0;
  }
}

#works_1 li {
  width: calc((100% - 30px) / 3);
  box-sizing: content-box;
  margin: 0 5px 40px;
}

@media all and (max-width: 639px) {
  #works_1 li {
    width: 100%;
    margin: 0 0 15px;
  }
}

#works_1 li a {
  background: #f2f2f2;
  display: block;
  text-align: center;
  padding: 5px;
  height: 230px;
  box-sizing: border-box;
  filter: drop-shadow(5px 5px 5px #eee);
}

@media all and (max-width: 639px) {
  #works_1 li a {
    height: 200px;
  }
}

#works_1 li a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#works_1 li p {
  font-family: "YakuHanJP", "Noto Sans JP", serif;
  font-weight: 500;
  font-size: 17px;
  font-size: 1.0625rem;
  letter-spacing: .1em;
  font-weight: 300;
}

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

#about_1 img {
  width: 100%;
  display: block;
  margin-left: auto;
}

@media all and (max-width: 639px) {
  #about_1 img {
    width: auto;
  }
}

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

#about_1 table th,
#about_1 table td {
  background: none;
  border: none;
  border-bottom: 1px solid #666;
  vertical-align: middle;
  font-family: "YakuHanJP", "Noto Sans JP", serif;
  font-weight: 500;
  font-size: 17px;
  font-size: 1.0625rem;
  letter-spacing: .1em;
  font-weight: 300;
  color: #666;
}

#about_1 table th {
  width: 30%;
}

@media all and (max-width: 639px) {
  #about_1 table th {
    white-space: nowrap;
  }
}

#about_1 table td {
  width: 70%;
}

#about_1 .gggmap {
  line-height: 0;
  display: block;
  margin-top: 30px;
}

@media screen and (max-width: 700px) {
  #about_1 {
    padding: 40px 0;
  }
}

#about_2 {
  background: #fff;
  padding: 80px 0;
}

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

#about_2 .read {
  text-align: center;
  font-family: "YakuHanJP", "Noto Sans JP", serif;
  font-weight: 400;
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: .1em;
  font-weight: 500;
  margin-bottom: 50px;
  color: #BD425A;
}

#about_2 table {
  width: 100%;
  margin: 0;
  border-top: 2px solid #f2f2f2;
}

#about_2 table th,
#about_2 table td {
  font-family: "YakuHanJP", "Noto Sans JP", serif;
  font-weight: 500;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: .1em;
  background: none;
  border: none;
  padding: 0.8em;
  border-bottom: 2px solid #f2f2f2;
}

/*------------------------------------
お知らせ(news.php)
-------------------------------------*/
#news_1 {
  background: linear-gradient(to top, #e6e9f0 0%, #eef1f5 100%);
}

#news_1 .post_item {
  padding: 50px 0;
}

#news_1 .post_item:last-child {
  margin-bottom: 50px;
}

#news_1 .post_item .schedule_1__main {
  background: #fff;
  padding: 30px 50px;
  width: 760px;
  margin: auto;
}

@media all and (max-width: 800px) {
  #news_1 .post_item .schedule_1__main {
    width: auto;
  }
}

@media all and (max-width: 639px) {
  #news_1 .post_item .schedule_1__main {
    padding: 15px;
  }
}

#news_1 .post_item .schedule_1__main span.data {
  display: table;
  font-family: "YakuHanJP", "Noto Sans JP", serif;
  font-weight: 500;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: .1em;
  background: #f2f2f2;
  padding: 0.3em 1em;
}

#news_1 .post_item .schedule_1__main .title {
  font-family: "YakuHanJP", "Noto Sans JP", serif;
  font-weight: 500;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: .1em;
  border-bottom: 1px solid #666;
  color: #666;
  line-height: 1.5em;
  margin-top: 10px;
}

@media all and (max-width: 639px) {
  #news_1 .post_item .schedule_1__main .title {
    font-size: 18px;
  }
}

#news_1 .post_item .schedule_1__main .main {
  margin-top: 10px;
  font-family: "YakuHanJP", "Noto Sans JP", serif;
  font-weight: 500;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: .1em;
  color: #666;
}

#news_1 .post_item .schedule_1__main .main img {
  max-width: 100%;
  display: block;
}

#news_1 .post_item .page_nav {
  width: 850px;
  margin: 30px auto 0;
  display: table;
}

#news_1 .post_item .page_nav .page_next a,
#news_1 .post_item .page_nav .page_prev a {
  font-family: "YakuHanJP", "Noto Sans JP", serif;
  font-weight: 500;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: .1em;
}

#news_1 .post_item .page_nav .page_next {
  margin-right: 30px;
  float: left;
}

#news_1 .post_item .page_nav .page_prev {
  margin-left: 30px;
  float: right;
}

/*------------------------------------
採用情報(recruit.php)
-------------------------------------*/
#recruit_1 {
  padding: 80px 0;
  background: linear-gradient(to top, #f3e7e9 0%, #e3eeff 99%, #e3eeff 100%);
}

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

#recruit_1 .read {
  font-family: "YakuHanJP", "Noto Sans JP", serif;
  font-weight: 500;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: .1em;
  font-weight: 300;
}

#recruit_1 .recruit_1__main {
  background: #fff;
  padding: 30px;
  margin-top: 30px;
}

@media all and (max-width: 639px) {
  #recruit_1 .recruit_1__main {
    margin-top: 15px;
    padding: 15px;
  }
}

#recruit_1 img {
  width: 100%;
  display: block;
}

#recruit_1 .link_top {
  font-family: "YakuHanJP", "Noto Sans JP", serif;
  font-weight: 500;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: .1em;
  font-weight: 300;
  color: #FFA8C5;
  position: relative;
  display: table;
  margin: 50px auto 15px;
}

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

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

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

#recruit_1 a {
  width: 400px;
  background: #fff;
  text-align: center;
  display: block;
  margin: 0 auto 0;
  line-height: 1em;
  padding: 18px 0;
  border-radius: 50px;
  color: #FFA8C5;
}

@media all and (max-width: 639px) {
  #recruit_1 a {
    width: 95%;
  }
}

#recruit_1 a span {
  font-family: "YakuHanJP", "Josefin Sans", sans-serif;
  font-weight: 500;
  font-size: 23px;
  font-size: 1.4375rem;
  letter-spacing: .1em;
  font-weight: 200;
}

#recruit_1 a span:after {
  font-family: "FontAwesome";
  content: "\f105";
  margin-left: 5px;
  font-size: 13px;
}

#recruit_1 a:hover {
  background: #FFA8C5;
  color: #fff;
  transition: 0.4s;
}

.recruit_1 {
  padding: 80px 0;
}

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

.recruit_1 .inner {
  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) {
  .recruit_1 .inner {
    display: block;
    width: 90%;
    margin: auto;
  }
}

.recruit_1 .inner .in_left {
  width: 52%;
  margin-right: 4%;
}

@media all and (max-width: 639px) {
  .recruit_1 .inner .in_left {
    width: 100%;
  }
}

.recruit_1 .inner .in_right {
  width: 44%;
}

@media all and (max-width: 639px) {
  .recruit_1 .inner .in_right {
    width: 100%;
  }
}

.recruit_1 .inner .in_right img {
  width: 100%;
  display: block;
}

@media all and (max-width: 639px) {
  .recruit_1 .inner .in_right img {
    width: 100%;
    margin: 30px auto 0;
  }
}

.recruit_1 .sec_title {
  font-family: "YakuHanJP", "Noto Sans JP", serif;
  font-weight: 500;
  font-size: 27px;
  font-size: 1.6875rem;
  letter-spacing: .1em;
  font-weight: 200;
  color: #FFA8C5;
  border-bottom: 2px solid #FFA8C5;
  margin-bottom: 30px;
}

.recruit_1 .main {
  font-family: "YakuHanJP", "Noto Sans JP", serif;
  font-weight: 500;
  font-size: 17px;
  font-size: 1.0625rem;
  letter-spacing: .1em;
  line-height: 1.9em;
  color: #333;
  font-weight: 300;
}

/*------------------------------------
お問い合わせ(contact.php)
-------------------------------------*/
#contact_1 {
  padding: 80px 0;
  background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
}

#contact_1 .read {
  font-family: "YakuHanJP", "Noto Sans JP", serif;
  font-weight: 500;
  font-size: 17px;
  font-size: 1.0625rem;
  letter-spacing: .1em;
  color: #666;
  font-weight: 300;
  text-align: center;
}

#contact_1 .contact_1_main {
  background: #fff;
  padding: 50px;
  margin-top: 30px;
}

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

#contact_1 .contact_1_main .main {
  font-family: "YakuHanJP", "Noto Sans JP", serif;
  font-weight: 500;
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: .1em;
}

#contact_1 .contact_1_main .form {
  width: 100%;
}

#contact_1 .contact_1_main .form dl {
  border-top: 1px solid #eee;
}

#contact_1 .contact_1_main .form dt,
#contact_1 .contact_1_main .form dd {
  font-family: "YakuHanJP", "Noto Sans JP", serif;
  font-weight: 500;
  font-size: 17px;
  font-size: 1.0625rem;
  letter-spacing: .1em;
  color: #666;
  font-weight: 300;
}

#contact_1 .contact_1_main .form .textarea,
#contact_1 .contact_1_main .form textarea,
#contact_1 .contact_1_main .form .dropdown {
  width: 98%;
}

#contact_1 #mailform button {
  background: #fff;
  border-radius: 0;
  color: #BD425A;
  font-family: "YakuHanJP", "Noto Sans JP", serif;
  font-weight: 500;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: .1em;
  transition: 0.4s;
  font-weight: 300;
}

#contact_1 #mailform button:hover {
  background: #BD425A;
  color: #fff;
  transition: 0.4s;
}

#contact_1 .fm-text p {
  font-family: "YakuHanJP", "Noto Sans JP", serif;
  font-weight: 500;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: .1em;
  font-weight: 300;
  color: #666;
}

#contact_1 .thanks p {
  font-family: "YakuHanJP", "Noto Sans JP", serif;
  font-weight: 500;
  font-size: 17px;
  font-size: 1.0625rem;
  letter-spacing: .1em;
  font-weight: 300;
}

#contact_1 .plaaa {
  background: #FFA8C5;
  padding: 30px 50px;
}

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

#contact_1 .plaaa .read {
  font-family: "YakuHanJP", "Noto Sans JP", serif;
  font-weight: 500;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: .1em;
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 300;
}

#contact_1 .plaaa .plaaa__inner {
  padding: 10px;
  height: 150px;
  margin: 8px 0;
  overflow-y: scroll;
}

#contact_1 .plaaa .top {
  font-family: "YakuHanJP", "Noto Sans JP", serif;
  font-weight: 500;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: .1em;
  text-align: center;
  color: #fff;
  font-weight: 300;
}

@media all and (max-width: 639px) {
  #contact_1 .plaaa .top {
    text-align: left;
  }
}

#contact_1 .plaaa .item {
  font-family: "YakuHanJP", "Noto Sans JP", serif;
  font-weight: 500;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: .1em;
  width: 80%;
  margin: 10px auto 0;
  color: #fff;
  font-weight: 300;
}

@media all and (max-width: 639px) {
  #contact_1 .plaaa .item {
    width: 100%;
  }
}

#contact_1 .plaaa .item span {
  display: block;
  color: #fff;
  font-size: 14px;
}

#contact_1 .plaaa .item span:before {
  content: "◆";
  margin-right: 3px;
}

/* フレックスコンテナ ver2
-------------------------------------------------- */
.u-flex {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.u-flex img {
  vertical-align: middle;
  max-width: 100%;
}

.u-flex * {
  box-sizing: border-box;
}

.u-flex.jc-start {
  justify-content: flex-start;
}

.u-flex.jc-center {
  justify-content: center;
}

.u-flex.jc-end {
  justify-content: flex-end;
}

.u-flex .auto > * {
  width: auto;
}

@media screen and (min-width: 701px) {
  .u-flex.col-1 > * {
    width: 100%;
  }
  .u-flex.col-2 > * {
    width: 50%;
  }
  .u-flex.col-3 > * {
    width: 33.33333%;
  }
  .u-flex.col-4 > * {
    width: 25%;
  }
  .u-flex.col-5 > * {
    width: 20%;
  }
  .u-flex.col-6 > * {
    width: 16.66667%;
  }
  .u-flex > *.w5 {
    width: 5%;
  }
  .u-flex > *.order1 {
    order: 1;
  }
  .u-flex > *.w10 {
    width: 10%;
  }
  .u-flex > *.order2 {
    order: 2;
  }
  .u-flex > *.w15 {
    width: 15%;
  }
  .u-flex > *.order3 {
    order: 3;
  }
  .u-flex > *.w20 {
    width: 20%;
  }
  .u-flex > *.order4 {
    order: 4;
  }
  .u-flex > *.w25 {
    width: 25%;
  }
  .u-flex > *.order5 {
    order: 5;
  }
  .u-flex > *.w30 {
    width: 30%;
  }
  .u-flex > *.order6 {
    order: 6;
  }
  .u-flex > *.w35 {
    width: 35%;
  }
  .u-flex > *.order7 {
    order: 7;
  }
  .u-flex > *.w40 {
    width: 40%;
  }
  .u-flex > *.order8 {
    order: 8;
  }
  .u-flex > *.w45 {
    width: 45%;
  }
  .u-flex > *.order9 {
    order: 9;
  }
  .u-flex > *.w50 {
    width: 50%;
  }
  .u-flex > *.order10 {
    order: 10;
  }
  .u-flex > *.w55 {
    width: 55%;
  }
  .u-flex > *.order11 {
    order: 11;
  }
  .u-flex > *.w60 {
    width: 60%;
  }
  .u-flex > *.order12 {
    order: 12;
  }
  .u-flex > *.w65 {
    width: 65%;
  }
  .u-flex > *.order13 {
    order: 13;
  }
  .u-flex > *.w70 {
    width: 70%;
  }
  .u-flex > *.order14 {
    order: 14;
  }
  .u-flex > *.w75 {
    width: 75%;
  }
  .u-flex > *.order15 {
    order: 15;
  }
  .u-flex > *.w80 {
    width: 80%;
  }
  .u-flex > *.order16 {
    order: 16;
  }
  .u-flex > *.w85 {
    width: 85%;
  }
  .u-flex > *.order17 {
    order: 17;
  }
  .u-flex > *.w90 {
    width: 90%;
  }
  .u-flex > *.order18 {
    order: 18;
  }
  .u-flex > *.w95 {
    width: 95%;
  }
  .u-flex > *.order19 {
    order: 19;
  }
  .u-flex > *.w100 {
    width: 100%;
  }
  .u-flex > *.order20 {
    order: 20;
  }
}

@media screen and (max-width: 700px) {
  .u-flex.col-1 > * {
    width: 100%;
  }
  .u-flex.col-2 > * {
    width: 100%;
  }
  .u-flex.col-3 > * {
    width: 100%;
  }
  .u-flex.col-4 > * {
    width: 100%;
  }
  .u-flex.col-5 > * {
    width: 100%;
  }
  .u-flex.col-6 > * {
    width: 100%;
  }
  .u-flex > *.w5 {
    width: 100%;
  }
  .u-flex > *.order1 {
    order: 0;
  }
  .u-flex > *.w10 {
    width: 100%;
  }
  .u-flex > *.order2 {
    order: 0;
  }
  .u-flex > *.w15 {
    width: 100%;
  }
  .u-flex > *.order3 {
    order: 0;
  }
  .u-flex > *.w20 {
    width: 100%;
  }
  .u-flex > *.order4 {
    order: 0;
  }
  .u-flex > *.w25 {
    width: 100%;
  }
  .u-flex > *.order5 {
    order: 0;
  }
  .u-flex > *.w30 {
    width: 100%;
  }
  .u-flex > *.order6 {
    order: 0;
  }
  .u-flex > *.w35 {
    width: 100%;
  }
  .u-flex > *.order7 {
    order: 0;
  }
  .u-flex > *.w40 {
    width: 100%;
  }
  .u-flex > *.order8 {
    order: 0;
  }
  .u-flex > *.w45 {
    width: 100%;
  }
  .u-flex > *.order9 {
    order: 0;
  }
  .u-flex > *.w50 {
    width: 100%;
  }
  .u-flex > *.order10 {
    order: 0;
  }
  .u-flex > *.w55 {
    width: 100%;
  }
  .u-flex > *.order11 {
    order: 0;
  }
  .u-flex > *.w60 {
    width: 100%;
  }
  .u-flex > *.order12 {
    order: 0;
  }
  .u-flex > *.w65 {
    width: 100%;
  }
  .u-flex > *.order13 {
    order: 0;
  }
  .u-flex > *.w70 {
    width: 100%;
  }
  .u-flex > *.order14 {
    order: 0;
  }
  .u-flex > *.w75 {
    width: 100%;
  }
  .u-flex > *.order15 {
    order: 0;
  }
  .u-flex > *.w80 {
    width: 100%;
  }
  .u-flex > *.order16 {
    order: 0;
  }
  .u-flex > *.w85 {
    width: 100%;
  }
  .u-flex > *.order17 {
    order: 0;
  }
  .u-flex > *.w90 {
    width: 100%;
  }
  .u-flex > *.order18 {
    order: 0;
  }
  .u-flex > *.w95 {
    width: 100%;
  }
  .u-flex > *.order19 {
    order: 0;
  }
  .u-flex > *.w100 {
    width: 100%;
  }
  .u-flex > *.order20 {
    order: 0;
  }
  .u-flex.mcol-1 > * {
    width: 100%;
  }
  .u-flex.mcol-2 > * {
    width: 50%;
  }
  .u-flex.mcol-3 > * {
    width: 33.33333%;
  }
  .u-flex.mcol-4 > * {
    width: 25%;
  }
}

/* 見出しタイトル00
================================================== */
.htitle00 {
  position: relative;
  padding: 1em;
  overflow: hidden;
  background-image: linear-gradient(to right bottom, #FFA8C5, #BD425A);
  color: #fff;
}

.htitle00 .mainText {
  display: block;
  font-size: 2em;
  font-weight: 900;
}

.htitle00 .subText {
  display: block;
  font-size: 1em;
}

@media screen and (max-width: 700px) {
  .htitle00 .mainText {
    font-size: 1.8em;
  }
  .htitle00 .subText {
    font-size: 0.8em;
  }
}

/* 見出しタイトル00
================================================== */
.htitle00 {
  position: relative;
  padding: 1em;
  overflow: hidden;
  background-image: linear-gradient(to right bottom, #FFA8C5, #BD425A);
  color: #fff;
}

.htitle00 .mainText {
  display: block;
  font-size: 2em;
  font-weight: 900;
}

.htitle00 .subText {
  display: block;
  font-size: 1em;
}

@media screen and (max-width: 700px) {
  .k-htitle00 .mainText {
    font-size: 1.8em;
  }
  .k-htitle00 .subText {
    font-size: 0.8em;
  }
}

/* 見出しタイトル01
	-------------------------------------------------- */
.htitle01 {
  font-size: 2em;
  font-weight: 900;
  padding-bottom: 0.1em;
  margin-bottom: 0.3em;
  position: relative;
}

.htitle01::before {
  content: "";
  width: 4em;
  height: 4px;
  background-color: #BD425A;
  display: block;
  position: absolute;
  left: 0;
  bottom: -0.1em;
}

/* 見出しタイトル02
	-------------------------------------------------- */
.htitle02 {
  margin-bottom: 10px;
}

.htitle02 span {
  display: inline;
  font-size: 1.5em;
  letter-spacing: 0.2em;
  line-height: 1.4;
  color: #BD425A;
  background: linear-gradient(transparent 70%, #e5b3bd 70%);
}

/* 見出しタイトル03
	-------------------------------------------------- */
.htitle03 {
  font-size: 2em;
  position: relative;
  border-top: solid 3px #BD425A;
  border-bottom: solid 3px #BD425A;
  background: #FFA8C5;
  line-height: 1.4rem;
  padding: 0.4em 0.5em;
  margin: 1em 0 0.5em;
  color: #fff;
}

.htitle03:after {
  position: absolute;
  font-family: FontAwesome;
  content: "\f0a4\ POINT";
  background: #BD425A;
  color: #fff;
  left: 0;
  bottom: 100%;
  border-radius: 5px 5px 0 0;
  padding: 5px 7px 3px;
  font-size: 0.7em;
  line-height: 1;
  letter-spacing: 0.05em;
}

/* 見出しタイトル04
	-------------------------------------------------- */
.htitle04 {
  font-size: 2em;
  line-height: 1.2;
  position: relative;
  padding: 0.6em;
  margin-bottom: 20px;
  color: #BD425A;
  background: white;
}

.htitle04:after {
  position: absolute;
  content: "";
  top: 100%;
  left: 30px;
  border: solid 15px transparent;
  border-top: solid 15px white;
  width: 0;
  height: 0;
}

@media screen and (max-width: 700px) {
  .k-htitle1 {
    width: 90%;
  }
}

/* 見出しタイトル05
	-------------------------------------------------- */
.htitle05 {
  border-bottom: solid 10px #FFA8C5;
  position: relative;
  font-size: 1.8em;
  line-height: 1.2;
  color: #BD425A;
  font-weight: 900;
  margin-bottom: 20px;
  padding-left: 20px;
  letter-spacing: 0.2em;
}

.htitle05 span {
  font-size: 0.6em;
}

.htitle05:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 5px #BD425A;
  bottom: -3px;
  width: 20%;
}

/* 見出しタイトル06
	-------------------------------------------------- */
.htitle06 {
  font-size: 2em;
  line-height: 1.2;
  color: #fff;
  /* 文字色 */
  padding: 5px 10px;
  /* 上下・左右の余白 */
  position: relative;
  text-shadow: -1px -1px 1px #e18692, 1px -1px 1px #e18692, -1px 1px 1px #e18692, 1px 1px 1px #e18692;
  /* 文字の縁取り */
  z-index: 0;
}

.htitle06:before {
  background: repeating-linear-gradient(45deg, #f5d5da, #f5d5da 4px, #fcf0f1 0, #fcf0f1 7px);
  /* 斜めボーダー */
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -2;
}

.htitle06:after {
  background: linear-gradient(180deg, white, rgba(255, 255, 255, 0.1));
  /* 白いグラデーション */
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

/* 見出しタイトル07
	-------------------------------------------------- */
.htitle07 {
  font-size: 2em;
  line-height: 1.2;
  background-color: #BD425A;
  /* 背景色 */
  color: #fff;
  /* 文字色 */
  overflow: hidden;
  padding: 10px;
  /* 余白 */
  position: relative;
}

.htitle07:before {
  background-color: #fff;
  /* 大きな円の色 */
  border-radius: 50%;
  content: "";
  display: block;
  opacity: 0.6;
  /* 大きな円の不透明度 */
  position: absolute;
  top: -20px;
  left: 0;
  width: 200px;
  /* 大きな円の幅 */
  height: 200px;
  /* 大きな円の高さ */
}

.htitle07:after {
  background-color: #fff;
  /* 小さな円の色 */
  border-radius: 50%;
  content: "";
  display: block;
  opacity: 0.6;
  /* 小さな円の不透明度 */
  position: absolute;
  bottom: -50px;
  left: 180px;
  width: 100px;
  /* 小さな円の幅 */
  height: 100px;
  /* 小さな円の高さ */
}

/* 見出しタイトル08
	-------------------------------------------------- */
.htitle08 {
  font-size: 1.2em;
  line-height: 1.2;
  margin-bottom: 10px;
  border-bottom: solid 2px #BD425A;
}

.htitle08 span {
  display: inline-block;
  height: 100%;
  position: relative;
  color: #fff;
  background-color: #BD425A;
  border-radius: 5px 5px 0 0;
  padding: 0 1.4em;
}

.htitle08 span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 0.3em solid transparent;
  border-bottom: 0.3em solid transparent;
  border-left: 0.4em solid #fff;
}

/* 見出しタイトル09
	-------------------------------------------------- */
.htitle09 {
  font-size: 2em;
  line-height: 1.2;
  margin: 0;
  position: relative;
  display: inline-block;
  background-color: #FFA8C5;
  padding: 0.3em 1.5em 0.3em 0.5em;
  margin-bottom: 15px;
  border-radius: 2px;
  color: #fff;
}

.htitle09:before {
  content: "";
  background-color: #b3b3b3;
  display: block;
  position: absolute;
  left: 50%;
  height: 60%;
  top: 26%;
  z-index: -1;
  width: 46%;
  box-shadow: 0 0 8px 8px #b3b3b3;
  transform: rotate(3deg);
}

/* 見出しタイトル0a
	-------------------------------------------------- */
.htitle0a {
  font-size: 2em;
  line-height: 1.2;
  border-bottom: solid thin #aaa;
  margin-bottom: 20px;
}

.htitle0a:first-letter {
  font-size: 1.2em;
  color: #BD425A;
}

/* 見出しタイトル0b
	-------------------------------------------------- */
.htitle0b {
  font-size: 2em;
  line-height: 1.3;
  font-weight: 900;
  border-left: solid 2px #BD425A;
  border-right: solid 2px #BD425A;
  border-bottom: solid 2px #BD425A;
  padding: 0 20px;
  margin-bottom: 20px;
}

/* 見出しタイトル0c
		-------------------------------------------------- */
.htitle0c {
  font-size: 1.6em;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0.1em;
  border-top: solid 2px #BD425A;
  border-bottom: solid 2px #BD425A;
  padding: 10px;
  margin-bottom: 20px;
}

/* 見出しタイトル0d
		-------------------------------------------------- */
.htitle0d {
  font-size: 1.4em;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #fff;
  background-color: #BD425A;
  padding: 10px;
  margin-bottom: 20px;
}

.htitle0d::before {
  font-family: "Font Awesome 5 Free";
  content: "\f00b";
  font-weight: 900;
  padding-right: 0.1em;
}

/* 見出しタイトル0e
	-------------------------------------------------- */
.htitle0e {
  position: relative;
  z-index: 0;
  height: 6em;
  line-height: 1.2;
}

.htitle0e .catch {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 1em;
  transform: translateY(-50%);
  z-index: 2;
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.5em;
  font-weight: 600;
  line-height: 0.9;
}

.htitle0e .main {
  display: block;
  position: absolute;
  top: 50%;
  left: 15%;
  transform: translateY(-50%);
  z-index: 2;
  width: 85%;
  font-family: "Josefin Sans", sans-serif;
  font-size: 3em;
  border-bottom: solid thin #555;
  line-height: 0.8;
  font-weight: 400;
}

.htitle0e::before {
  content: "";
  position: absolute;
  top: calc(-6em / 1.41421356);
  left: calc(-6em / 1.41421356);
  display: inline-block;
  border-style: solid;
  border-width: calc(6em / 1.414);
  border-color: transparent transparent #aac809 transparent;
  transform: rotate(-45deg);
  z-index: 1;
}

@media screen and (max-width: 700px) {
  .htitle0e .catch {
    font-size: 1em;
  }
  .htitle0e .main {
    left: 25%;
    width: 75%;
    font-size: 2em;
  }
}

/* 見出しタイトル10
================================================== */
.htitle10 {
  width: 80%;
  background: #BD425A;
  box-shadow: 0 0 0 5px #BD425A;
  border: dashed 1px #fff;
  padding: 0.2em 0.5em 0.3em;
  color: #fff;
  margin: 0 auto 0.5em;
  font-size: 2em;
  line-height: 1em;
  letter-spacing: 0.2em;
  text-align: center;
}

/* 見出しタイトル11
	================================================== */
.htitle11 {
  font-size: 2em;
  padding-bottom: 0.1em;
  margin-bottom: 0.3em;
  position: relative;
  text-align: center;
}

.htitle11::before {
  content: "";
  width: 4em;
  height: 4px;
  background-color: #BD425A;
  display: block;
  position: absolute;
  left: 50%;
  bottom: -0.1em;
  transform: translateX(-50%);
}

/* 見出しタイトル12
		================================================== */
.htitle12 {
  display: inline-block;
  font-size: 3em;
  margin: auto;
  color: #fff;
  position: relative;
  text-align: center;
  padding: 0 1em;
}

.htitle12::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: inline-block;
  content: "";
  width: 1em;
  height: 1em;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2070%20100%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3Anone%3Bstroke%3A%23fff%3Bstroke-miterlimit%3A10%3Bstroke-width%3A5px%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Ctitle%3E001%3C%2Ftitle%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%223.5%22%20y1%3D%223%22%20x2%3D%2266.5%22%20y2%3D%2297%22%2F%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}

.htitle12::after {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: inline-block;
  content: "";
  width: 1em;
  height: 1em;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2070%20100%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3Anone%3Bstroke%3A%23fff%3Bstroke-miterlimit%3A10%3Bstroke-width%3A5px%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Ctitle%3E002%3C%2Ftitle%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%2266.5%22%20y1%3D%222.5%22%20x2%3D%222.5%22%20y2%3D%2296.5%22%2F%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}

/* 見出しタイトル13
		-------------------------------------------------- */
.htitle13 {
  text-align: center;
  overflow: hidden;
}

.htitle13 .main {
  font-family: "YakuHanJP", "Josefin Sans", sans-serif;
  display: inline-block;
  color: #111;
  font-size: 4em;
  font-weight: 600;
  position: relative;
  line-height: 1.1;
  letter-spacing: 0.1em;
}

.htitle13 .main::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: calc(105% + 0.1em);
  transform: translateY(-50%);
  width: 100px;
  height: 2px;
  background-color: #111;
}

.htitle13 .main::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 105%;
  transform: translateY(-50%);
  width: 100px;
  height: 2px;
  background-color: #111;
}

@media screen and (max-width: 700px) {
  .htitle13 .main {
    font-size: 34px;
  }
  .htitle13 .main::before {
    width: 30px;
    height: 1px;
  }
  .htitle13 .main::after {
    width: 30px;
    height: 1px;
  }
}

.htitle13 .sub {
  display: inline-block;
  font-weight: 400;
  font-size: 1.2em;
  background-color: #BD425A;
  padding: 0 30px;
  color: #fff;
  line-height: 1.6;
  letter-spacing: 0.3em;
}

.htitle13.wh .main {
  color: #fff;
}

.htitle13.wh .main::before {
  background-color: #fff;
}

.htitle13.wh .main::after {
  background-color: #fff;
}

/* 背景色がキーカラー
-------------------------------------------------- */
.u-bgBase {
  background-color: #BD425A;
}

.u-bgSub {
  background-color: #FFA8C5;
}

/* 格子上の背景
-------------------------------------------------- */
.u-bgGrid {
  width: 100%;
  background-image: linear-gradient(#ddd 1px, transparent 0), linear-gradient(90deg, #ddd 1px, transparent 0);
  background-size: 20px 20px;
}

/* テキストカラーがbase_color
-------------------------------------------------- */
.u-txtBase {
  color: #BD425A;
}

.u-txtSub {
  color: #FFA8C5;
}

/* base_colorボーダーで外包
-------------------------------------------------- */
.u-border {
  border: solid thin #BD425A;
}

/* 縦軸のみスクロール
-------------------------------------------------- */
.u-vscroll {
  overflow-y: auto;
}

/* メディアクエリで表示非表示制御
-------------------------------------------------- */
@media screen and (min-width: 701px) {
  .u-pcNone {
    display: none;
  }
  .u-spNone {
    display: block;
  }
}

@media screen and (max-width: 700px) {
  .u-pcNone {
    display: block;
  }
  .u-spNone {
    display: none;
  }
}

/* シャドウ
-------------------------------------------------- */
.u-shadow {
  box-shadow: rgba(85, 85, 85, 0.1) 3px 3px 6px 2px;
}

/* テキストリンク
-------------------------------------------------- */
.u-txtLink {
  padding: 0 0.3em;
}

.u-txtLink:before {
  font-family: FontAwesome;
  content: "\f138";
  margin-right: 0.2em;
  text-decoration: none !important;
}

.u-txtLink:hover {
  opacity: 0.6;
}

/* 文字のハイライト
-------------------------------------------------- */
.u-marker {
  display: inline;
  font-weight: bold;
  line-height: 1.2;
  color: #e5b3bd;
  background: linear-gradient(transparent 70%, #f2d9de 70%);
}

/* 画像の境界線を背景色でぼかす
-------------------------------------------------- */
.u-blur {
  position: relative;
  width: 100%;
}

.u-blur img {
  width: 100%;
  height: 100%;
}

.u-blur::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: inset 0 0 20px 20px #fff, inset 0 0 40px 40px #fff;
}

/* 縦横センター
-------------------------------------------------- */
.hv-center {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}

.hv-center > * {
  margin: auto;
}

/* 丸いアイコン
-------------------------------------------------- */
.u-round {
  width: 100%;
  border-radius: 50%;
  overflow: hidden;
  background-color: #999;
  position: relative;
}

.u-round::before {
  display: block;
  content: "";
  padding-top: 100%;
}

.u-round > .inner {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  line-height: 1.2;
}

@media screen and (max-width: 700px) {
  .u-round > .inner {
    font-size: 0.7em;
  }
}

/* background統一
-------------------------------------------------- */
.bgi {
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* object-fit
-------------------------------------------------- */
.object-fit {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit: cover;";
}

/* 角丸図形
-------------------------------------------------- */
.u-bradius {
  border-radius: 15px;
  overflow: hidden;
}

/* 垂直100%
-------------------------------------------------- */
.u-h100p {
  height: 100%;
}

/* ボタン1
-------------------------------------------------- */
.u-btn1 a {
  display: inline-block;
  font-weight: bold;
  text-align: center;
  padding: 10px 30px;
  margin: auto;
  color: #fff;
  border: solid thin #BD425A;
  background-color: #BD425A;
  transition: all 0.3s ease;
  text-decoration: none;
}

.u-btn1 a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  padding-right: 5px;
}

.u-btn1 a:hover {
  transition: all 0.3s ease;
  background-color: #fff;
  color: #BD425A;
}

.u-btn1.light a {
  color: #fff;
  border: solid thin #fff;
  background-color: transparent;
}

.u-btn1.light a:hover {
  background-color: #fff;
  color: #BD425A;
}

/* ボタン2
  -------------------------------------------------- */
.u-btn2 a {
  position: relative;
  display: inline-block;
  font-weight: bold;
  text-align: center;
  padding: 10px 30px;
  margin: auto;
  color: #BD425A;
  border: solid thin #BD425A;
  background-color: #fff;
  transition: all 0.3s ease;
  text-decoration: none;
}

.u-btn2 a:after {
  display: block;
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  bottom: -7px;
  right: -2px;
  border-left: 10px solid #BD425A;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  transform: rotate(45deg);
}

.u-btn2 a:hover {
  transition: all 0.3s ease;
  background-color: #BD425A;
  color: #fff;
}

.u-btn2 a:hover > .u-btn2 a:after {
  border-left: 10px solid #fff;
}

/* TELボタン1
  -------------------------------------------------- */
.u-btnTel1 a {
  display: inline-block;
  margin: auto;
  text-align: center;
  font-size: 2.5em;
  font-weight: bold;
  color: #BD425A;
  transition: all 0.3s ease;
  text-decoration: none;
}

.u-btnTel1 a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f2a0";
  font-weight: 900;
  padding-right: 5px;
}

.u-btnTel1 a:hover {
  transition: all 0.3s ease;
  opacity: 0.5;
}

/* TELボタン2
  -------------------------------------------------- */
.u-btnTel2 a {
  display: inline-block;
  font-weight: bold;
  text-align: center;
  padding: 10px 30px;
  margin: auto;
  color: #fff;
  border: solid thin #BD425A;
  background-color: #BD425A;
  transition: all 0.3s ease;
  text-decoration: none;
}

.u-btnTel2 a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  padding-right: 5px;
}

.u-btnTel2 a:hover {
  transition: all 0.3s ease;
  background-color: #fff;
  color: #BD425A;
}

/* Mailボタン1
  -------------------------------------------------- */
.u-btnMail1 a {
  display: inline-block;
  margin: auto;
  text-align: center;
  font-size: 2.5em;
  font-weight: bold;
  color: #BD425A;
  transition: all 0.3s ease;
  text-decoration: none;
}

.u-btnMail1 a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  padding-right: 5px;
}

.u-btnMail1 a:hover {
  transition: all 0.3s ease;
  opacity: 0.5;
}

/* Mailボタン2
  -------------------------------------------------- */
.u-btnMail2 a {
  display: inline-block;
  font-weight: bold;
  text-align: center;
  padding: 10px 30px;
  margin: auto;
  color: #fff;
  border: solid thin #BD425A;
  background-color: #BD425A;
  transition: all 0.3s ease;
  text-decoration: none;
}

.u-btnMail2 a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  padding-right: 5px;
}

.u-btnMail2 a:hover {
  transition: all 0.3s ease;
  background-color: #fff;
  color: #BD425A;
}

/* アンカーボタン
  -------------------------------------------------- */
.u-btnAnchor {
  position: relative;
  display: block;
  width: 100%;
  font-weight: bold;
  height: 50px;
  background-color: #BD425A;
  color: #fff;
  border: solid thin #BD425A;
  transition: all 0.3s ease;
  border-radius: 100px;
}

.u-btnAnchor .btnTitle {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-weight: bold;
}

.u-btnAnchor .btnTitle::after {
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  font-weight: 900;
  margin-left: 0.5em;
}

.u-btnAnchor:hover {
  transition: all 0.3s ease;
  opacity: 0.5;
}

.video {
  width: 100%;
  height: 500px;
}

@media screen and (max-width: 700px) {
  .video {
    height: 200px;
  }
}

.slider-wrapper {
  position: relative;
}

.slider-wrapper .marquee {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 460px;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 8;
}

@media screen and (max-width: 700px) {
  .slider-wrapper .marquee {
    width: 90%;
  }
}

.slider-wrapper .marquee img {
  width: 100%;
}

/* 定義リスト1
-------------------------------------------------- */
.u-defList1 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.u-defList1 * {
  box-sizing: border-box;
}

.u-defList1 dt {
  display: block;
  width: 8em;
  border-bottom: solid thin #ccc;
  padding: 5px 0;
  margin-bottom: 10px;
}

.u-defList1 dt b {
  display: block;
  background-color: #BD425A;
  color: #fff;
  padding: 0 10px;
}

.u-defList1 dd {
  width: calc(100% - 8em);
  padding: 5px 10px;
  margin-bottom: 10px;
  border-bottom: solid thin #ccc;
  display: block;
}

@media screen and (max-width: 700px) {
  .u-defList1 dt {
    width: 100%;
    border-bottom: none;
    margin-bottom: 0;
  }
  .u-defList1 dd {
    width: 100%;
  }
}

/* 定義リスト2
  -------------------------------------------------- */
.u-defList2 {
  width: 100%;
}

.u-defList2 * {
  box-sizing: border-box;
}

.u-defList2 dt {
  color: #777;
}

.u-defList2 dt b::after {
  display: inline;
  font-family: "Font Awesome 5 Free";
  content: "\f101";
  font-weight: 900;
  padding-left: 5px;
}

.u-defList2 dd {
  margin-bottom: 10px;
  border-bottom: solid thin #ccc;
  font-size: 0.8em;
}

.aa {
  padding-top: 70px;
  margin-top: -70px;
}

#slider ul > li a {
  display: block;
  width: 100%;
  height: 100%;
}

#slider ul > li a img {
  max-width: 100%;
}

/* 引用文節
-------------------------------------------------- */
.k-quote {
  background-color: #eee;
  padding: 20px 50px;
  font-style: italic;
}

.k-quote:before {
  font-family: "FontAwesome";
  content: "\f10d";
  display: block;
  text-align: left;
  font-size: 1.5em;
  padding-bottom: 20px;
  color: #ccc;
}

.k-quote:after {
  font-family: "FontAwesome";
  content: "\f10e";
  display: block;
  text-align: right;
  font-size: 1.5em;
  padding-top: 20px;
  color: #ccc;
}

.k-comment {
  position: relative;
  background-color: #f66235;
  padding: 20px;
  color: #fff !important;
  width: calc(100% - 60px);
  margin: auto;
  border-radius: 20px;
  border: solid 1px transparent;
}

@media screen and (max-width: 700px) {
  .k-comment {
    width: 100%;
    margin: 30px 0;
  }
}

.k-comment:after {
  position: absolute;
  content: "";
  bottom: 70%;
  left: 100%;
  border: solid 15px transparent;
  border-left: solid 15px #f66235;
  width: 0;
  height: 0;
}

@media screen and (max-width: 700px) {
  .k-comment:after {
    border-left: solid 15px transparent;
    border-bottom: solid 15px #f66235;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
}

.select-wrap {
  position: relative;
  overflow: hidden;
  display: inline-block;
  min-width: 12em;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  color: #333;
}

.select-wrap select {
  appearance: none;
  position: relative;
  z-index: 2;
  display: block;
  width: 200%;
  /* fallback non calc support */
  width: -webkit-calc(100% + 5em);
  margin: 0;
  padding: 0.6875rem 2.1875rem 0.6875rem 0.6875rem;
  background: transparent;
  border: 0;
  outline: none;
  line-height: 1.5;
}

#ssslider {
  margin-top: 75px;
}

#ssslider img {
  width: 100%;
}

@media screen and (max-width: 700px) {
  #ssslider {
    margin-top: 55px;
  }
}

.viewerwrap {
  padding: 10px 30px;
}

@media screen and (max-width: 1200px) {
  .viewerwrap {
    padding: 10px;
  }
}

.viewerwrap .container {
  height: 100vh;
  width: 100vw;
  margin: auto;
  max-width: 100%;
  position: relative;
}

.viewerwrap .container .catch {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  width: 600px;
}

@media screen and (max-width: 1400px) {
  .viewerwrap .container .catch {
    width: 500px;
    right: 5%;
  }
}

.viewerwrap .container .catch img {
  width: 100%;
}

@media screen and (max-width: 700px) {
  .viewerwrap .container .catch {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    width: 90%;
  }
}

.viewerwrap .container .topics {
  position: absolute;
  top: 740px;
  left: 0;
  width: 100%;
  background-color: rgba(189, 66, 90, 0.9);
}

@media screen and (max-width: 700px) {
  .viewerwrap .container .topics {
    top: 100vh;
  }
}

.htitle222 {
  color: white;
  line-height: 1.2;
  text-align: center;
  font-weight: 300;
  letter-spacing: 0.2em;
  padding: 10px;
  font-size: 2em;
}

@media screen and (max-width: 700px) {
  .htitle222 {
    border-bottom: solid thin #fff;
  }
}

.htitle222 span {
  font-family: "Josefin Sans", sans-serif;
  font-size: 3em;
}

.sscroll {
  overflow-y: auto;
  height: 95px;
  padding: 10px 0;
}

#ssslider2 img {
  width: 100%;
}

.single2 {
  width: 1200px;
  margin: auto;
  padding: 100px 0 50px;
}

@media screen and (max-width: 700px) {
  .single2 {
    width: 100%;
  }
}

.partner {
  background-color: #BD425A;
  padding: 50px;
  font-family: "YakuHanJP", "Noto Sans JP", serif;
  font-weight: 500;
  font-size: 17px;
  font-size: 1.0625rem;
  letter-spacing: .1em;
}

.partner h3 {
  font-size: 1.1em;
  color: white;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}

.partner h4 {
  font-size: 1.5em;
  color: yellowgreen;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}

.partner p {
  color: white;
  font-weight: normal;
}

.k-skew {
  transform: skew(-20deg);
  background-color: #BD425A;
}

.k-skew .skewinner {
  transform: skew(20deg);
  padding: 5px;
  color: #fff;
  text-align: center;
  font-family: "YakuHanJP", "Noto Sans JP", serif;
  font-weight: 500;
  font-size: 30px;
  font-size: 1.875rem;
  letter-spacing: .1em;
}

/* コンテナデザイン1
-------------------------------------------------- */
.k-container1 * {
  box-sizing: border-box;
}

.k-container1 .k-inner {
  display: flex;
  flex-wrap: nowrap;
  min-height: 500px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.k-container1 .k-inner.left {
  flex-direction: row;
}

.k-container1 .k-inner.right {
  flex-direction: row-reverse;
}

.k-container1 .k-inner .k-content {
  width: 45%;
  padding: 70px 100px;
  background-color: rgba(255, 255, 255, 0.7);
}

.k-container1 .k-inner .k-content h3 {
  font-size: 2em;
  margin-bottom: 0.8em;
}

.k-container1 .k-inner .k-content p {
  margin-bottom: 2em;
}

.k-container1 .k-inner .k-content a {
  display: block;
  width: 200px;
  font-size: 1em;
  font-weight: bold;
  text-align: center;
  padding: 10px;
  color: #fff;
  border: solid thin #fff;
  transition: all 0.2s ease;
  text-decoration: none;
}

.k-container1 .k-inner .k-content a:after {
  font-family: FontAwesome;
  content: ">";
  padding-left: 5px;
}

.k-container1 .k-inner .k-content a:hover {
  transition: all 0.2s ease;
  background-color: #fff;
  color: #BD425A;
}

@media screen and (max-width: 960px) {
  .k-container1 .k-inner {
    display: flex;
    flex-wrap: nowrap;
    min-height: 500px;
    color: #fff;
  }
  .k-container1 .k-inner.right {
    flex-direction: row-reverse;
  }
  .k-container1 .k-inner .k-content {
    width: 50%;
    padding: 30px;
  }
}

@media screen and (max-width: 700px) {
  .k-container1 .k-inner {
    flex-direction: row;
    min-height: 400px;
  }
  .k-container1 .k-inner .k-content {
    width: 100%;
  }
}

/* background統一
-------------------------------------------------- */
.bgi {
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.topContent1 {
  padding: 100px 0;
  letter-spacing: 0.2em;
}

.topContent1 .read {
  font-size: 3em;
  padding: 10px 0;
  line-height: 1.2;
}

.topContent1 .text {
  font-size: 1.2em;
  padding: 10px 0;
}

.bg-lg {
  background: linear-gradient(120deg, #fcfcfc 0%, #f5f5f5 100%) !important;
}

/* 見出しタイトル0e
  -------------------------------------------------- */
.k-htitle0e {
  text-align: center;
  overflow: hidden;
}

.k-htitle0e .main {
  display: inline-block;
  color: #111;
  font-size: 40px;
  font-weight: 600;
  position: relative;
  line-height: 1.1;
  letter-spacing: 0.4em;
}

.k-htitle0e .main::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: calc(105% + 0.1em);
  transform: translateY(-50%);
  width: 100px;
  height: 2px;
  background-color: #111;
}

.k-htitle0e .main::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 105%;
  transform: translateY(-50%);
  width: 100px;
  height: 2px;
  background-color: #111;
}

@media screen and (max-width: 700px) {
  .k-htitle0e .main {
    font-size: 24px;
  }
  .k-htitle0e .main::before {
    width: 30px;
    height: 1px;
  }
  .k-htitle0e .main::after {
    width: 30px;
    height: 1px;
  }
}

.k-htitle0e .sub {
  display: inline-block;
  font-weight: 400;
  font-size: 0.9em;
  background-color: #BD425A;
  padding: 0 30px;
  color: #fff;
  line-height: 1.6;
  letter-spacing: 0.3em;
}

.list1 {
  background-color: #FFA8C5;
  color: #fff;
  height: 100%;
}

.list1 .pad {
  padding: 20px;
}

.bg-fb {
  background-color: #fbfbfb;
}

/* 要素のアスペクト比を固定
-------------------------------------------------- */
.u-fixedAspect {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.u-fixedAspect:before {
  content: "";
  display: block;
  padding-top: 75%;
}

.u-fixedAspect > .imgWrap {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.u-fixedAspect > .imgWrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* 画像の内接リサイズ
  -------------------------------------------------- */
.u-contain {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.u-contain * {
  transition: all 0.3s ease;
}

.u-contain:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.u-contain > .imgWindow {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #eee;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.u-contain > .imgWindow:hover {
  transition: all 0.3s ease;
  transform: scale(1.2);
}

/* 画像の外接リサイズ
  -------------------------------------------------- */
.u-cover {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.u-cover * {
  transition: all 0.3s ease;
}

.u-cover:before {
  content: "";
  display: block;
  padding-top: 75%;
}

.u-cover > .imgWindow {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #eee;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.u-cover > .imgWindow:hover {
  transition: all 0.3s ease;
  transform: scale(1.2);
}

@media screen and (max-width: 700px) {
  .bg-spbk {
    background-color: rgba(0, 0, 0, 0.5);
  }
}

/* キャプションオーバーレイ
-------------------------------------------------- */
.u-coverCaption {
  position: relative;
  border: solid thin #BD425A;
}

.u-coverCaption figcaption {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: right;
  background-color: rgba(189, 66, 90, 0.8);
  color: #fff;
  font-size: 1em;
  padding: 5px 10px;
  font-weight: 900;
}

/* 補足記述
-------------------------------------------------- */
.u-note {
  font-size: 0.8em;
}

.u-note > li {
  text-indent: -1em;
  padding-left: 1em;
}

.u-note > li::before {
  content: "※";
}

/* リストデザイン1
	-------------------------------------------------- */
.u-listDesign1 {
  padding: 0.5em;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
}

.u-listDesign1 * {
  box-sizing: border-box;
}

.u-listDesign1.col-1 > li {
  width: 98%;
}

.u-listDesign1.col-2 > li {
  width: 46%;
}

.u-listDesign1.col-3 > li {
  width: 27.3333333%;
}

.u-listDesign1.col-4 > li {
  width: 17%;
}

.u-listDesign1 li {
  position: relative;
  padding: 0 0.3em 0.3em 1.3em;
  border-bottom: dotted 1px #aaa;
  margin-bottom: 20px;
  margin-right: 2%;
}

.u-listDesign1 li:before {
  position: absolute;
  content: "";
  top: 0.5em;
  left: 0.2em;
  height: 0;
  width: 0;
  border-style: solid;
  border-width: 6px 0 6px 9px;
  border-color: transparent transparent transparent #FFA8C5;
}

@media screen and (max-width: 700px) {
  .u-listDesign1.col-2 > li {
    width: 98%;
  }
  .u-listDesign1.col-3 > li {
    width: 98%;
  }
  .u-listDesign1.col-4 > li {
    width: 46%;
  }
}

/* リストデザイン2
	-------------------------------------------------- */
.u-listDesign2 {
  padding: 0.5em;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
}

.u-listDesign2.col-1 > li {
  width: 98%;
}

.u-listDesign2.col-2 > li {
  width: 46%;
}

.u-listDesign2.col-3 > li {
  width: 27.3333333%;
}

.u-listDesign2.col-4 > li {
  width: 17%;
}

.u-listDesign2 li {
  text-indent: -1.3em;
  margin-left: 1.3em;
  margin-bottom: 1em;
  line-height: 1.4;
}

.u-listDesign2 li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f14a";
  font-weight: 900;
  color: #BD425A;
  padding-right: 5px;
}

@media screen and (max-width: 700px) {
  .u-listDesign2.col-2 > li {
    width: 98%;
  }
  .u-listDesign2.col-3 > li {
    width: 98%;
  }
  .u-listDesign2.col-4 > li {
    width: 46%;
  }
}

/* リストデザイン3
	-------------------------------------------------- */
.u-listDesign3 > li {
  display: inline-block;
}

.u-listDesign3 > li::after {
  font-family: "Font Awesome 5 Free";
  content: "\f0da";
  font-weight: 900;
  padding-left: 5px;
}

.u-listDesign3 > li:last-child::after {
  content: " ";
}

/* リストデザイン4 olデザイン
	-------------------------------------------------- */
.u-listDesign4 {
  counter-reset: number;
  /*数字をリセット*/
  list-style-type: none !important;
  /*数字を一旦消す*/
  padding: 0.5em;
}

.u-listDesign4 > li {
  position: relative;
  padding-left: 30px;
  line-height: 1.5em;
  padding: 0.5em 0.5em 0.5em 30px;
}

.u-listDesign4 > li:before {
  /* 以下数字をつける */
  position: absolute;
  counter-increment: number;
  content: counter(number);
  /*以下数字のデザイン変える*/
  display: inline-block;
  background: #BD425A;
  color: white;
  font-family: "Avenir", "Arial Black", "Arial", sans-serif;
  font-weight: bold;
  font-size: 15px;
  border-radius: 50%;
  left: 0;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  /*以下 上下中央寄せのため*/
  top: 50%;
  transform: translateY(-50%);
}

/* リストデザイン5
		-------------------------------------------------- */
.u-listDesign5 > li {
  display: inline-block;
  padding: 0 10px;
  margin: 5px;
  background-color: rgba(189, 66, 90, 0.5);
  color: #fff;
  border-radius: 5px;
}

.u-listDesign5 > li::before {
  font-family: "Font Awesome 5 Free";
  content: "\f0da";
  font-weight: 900;
  padding-right: 5px;
}

/* リストデザイン6
			-------------------------------------------------- */
.u-listDesign6 {
  padding: 0 10px;
}

.u-listDesign6 > li {
  font-size: 1.8em;
  color: #2d8fdd;
  border-left: solid 6px #2d8fdd;
  background: #fff;
  margin-bottom: 0.5em;
  line-height: 1.5;
  padding: 0.2em;
}

@media screen and (max-width: 700px) {
  .u-listDesign6 > li {
    font-size: 18px;
  }
}

/* リストデザイン7
			-------------------------------------------------- */
.u-listDesign7 {
  display: flex;
  justify-content: center;
}

.u-listDesign7 > li {
  display: inline-block;
  text-align: center;
}

/* タイムライン1
-------------------------------------------------- */
.u-timeline1 {
  list-style: none;
}

.u-timeline1 * {
  box-sizing: border-box;
}

.u-timeline1 > li {
  overflow: hidden;
}

.u-timeline1 > li > .u-tlineDate {
  width: 140px;
  float: left;
  padding-top: 25px;
  padding-right: 20px;
  font-size: 2rem;
  line-height: 2.4rem;
  font-weight: bold;
  color: #BD425A;
  text-align: right;
  font-family: "YakuHanJP", "Josefin Sans", sans-serif;
}

.u-timeline1 > li > .u-tlineContent {
  width: calc(100% - 140px);
  float: left;
  border-left: solid 3px #BD425A;
  padding: 10px 30px;
}

.u-timeline1 > li > .u-tlineContent > .u-tlineContent-inner {
  position: relative;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
}

.u-timeline1 > li > .u-tlineContent > .u-tlineContent-inner > img {
  width: 30%;
  padding-left: 10px;
  float: right;
}

.u-timeline1 > li > .u-tlineContent > .u-tlineContent-inner > h3 {
  width: 80%;
  border-bottom: solid thin #000;
  font-size: 1.1em;
  line-height: 1.8;
  font-weight: 400;
  text-indent: -50px;
  margin-left: 50px;
  margin-bottom: 30px;
}

.u-timeline1 > li > .u-tlineContent > .u-tlineContent-inner > p {
  width: 80%;
}

.u-timeline1 > li > .u-tlineContent > .u-tlineContent-inner > .clearBoth {
  clear: both;
}

.u-timeline1 > li > .u-tlineContent > .u-tlineContent-inner:before {
  position: absolute;
  content: "";
  top: 26px;
  right: 100%;
  border: solid 10px transparent;
  border-right: solid 10px #fff;
  width: 0;
  height: 0;
}

.u-timeline1 > li > .u-tlineContent > .u-tlineContent-inner:after {
  position: absolute;
  right: calc(100% + 24px);
  top: 28px;
  content: "";
  width: 15px;
  height: 15px;
  background-color: #BD425A;
  border-radius: 100%;
}

@media screen and (max-width: 700px) {
  .u-timeline1 > li {
    overflow: hidden;
  }
  .u-timeline1 > li > .u-tlineDate {
    width: 95%;
    float: none;
    padding: 30px 0 0 33px;
    text-align: left;
    border-left: solid 3px #BD425A;
    margin-left: 5%;
  }
  .u-timeline1 > li > .u-tlineContent {
    width: 95%;
    float: none;
    margin-left: 5%;
  }
  .u-timeline1 > li > .u-tlineContent > .u-tlineContent-inner > img {
    width: 100%;
    padding: 0;
    float: none;
    margin-bottom: 20px;
  }
  .u-timeline1 > li > .u-tlineContent > .u-tlineContent-inner > h3 {
    width: 100%;
    font-size: 1.2em;
    text-indent: 0;
    margin-left: 0;
  }
  .u-timeline1 > li > .u-tlineContent > .u-tlineContent-inner > p {
    width: 100%;
  }
}

/* タイムライン2
-------------------------------------------------- */
.u-timeline2 {
  list-style: none;
}

.u-timeline2 * {
  box-sizing: border-box;
}

.u-timeline2 > li {
  overflow: hidden;
}

.u-timeline2 > li > .u-tlineContent {
  width: 100%;
  float: left;
  padding: 0 30px;
}

.u-timeline2 > li > .u-tlineContent > .u-tlineContent-inner {
  position: relative;
  padding: 20px;
}

.u-timeline2 > li > .u-tlineContent > .u-tlineContent-inner > .u-tlineDate {
  font-weight: bold;
}

.u-timeline2 > li > .u-tlineContent > .u-tlineContent-inner > .u-tlineDate::before {
  font-family: "Font Awesome 5 Free";
  content: "\f017";
  font-weight: 400;
  margin-right: 0.3em;
}

.u-timeline2 > li > .u-tlineContent > .u-tlineContent-inner > .u-tlineTitle {
  font-size: 1.7em;
  line-height: 1.2;
  font-weight: bold;
}

.u-timeline2 > li > .u-tlineContent > .u-tlineContent-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background-color: #999;
}

.u-timeline2 > li > .u-tlineContent > .u-tlineContent-inner::after {
  content: "";
  position: absolute;
  top: 30px;
  left: -6px;
  width: 14px;
  height: 14px;
  background-color: #BD425A;
  border-radius: 100%;
}

/* テーブルデザイン1
-------------------------------------------------- */
.u-table1 {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

.u-table1 th {
  padding: 10px;
  border: solid thin #ccc;
  text-align: center;
  background-color: #BD425A;
  color: #fff;
  font-weight: 900;
}

.u-table1 td {
  padding: 10px;
  border: solid thin #ccc;
  text-align: center;
}

.u-table1 tr:nth-child(odd) {
  background-color: #eee;
}

/* テーブルデザイン2
	-------------------------------------------------- */
.u-table2 {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
}

.u-table2 tr {
  border-bottom: solid 2px white;
}

.u-table2 tr:last-child {
  border-bottom: none;
}

.u-table2 th {
  position: relative;
  width: 30%;
  background-color: #BD425A;
  text-align: center;
  padding: 10px 0;
  vertical-align: middle;
  color: #fff;
}

.u-table2 th:after {
  display: block;
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: calc(50% - 10px);
  right: -10px;
  border-left: 10px solid #BD425A;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.u-table2 td {
  text-align: left;
  width: 70%;
  background-color: #f0f0f0;
  padding: 10px 20px;
  vertical-align: middle;
}

.pages {
  display: flex;
  font-weight: wrap;
  justify-content: center;
}

.pages * {
  box-sizing: border-box;
}

.pages .page_next,
.pages .page_prev {
  width: 50%;
  padding: 10px;
  position: relative;
}

.pages .page_next a,
.pages .page_prev a {
  display: block;
  background-color: #BD425A;
  color: #fff;
  line-height: 1.4;
  padding-top: 5px;
  padding-bottom: 5px;
  font-weight: bold;
  border: solid thin #BD425A;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.pages .page_next a:hover,
.pages .page_prev a:hover {
  transition: all 0.3s ease;
  background-color: #fff;
  color: #BD425A;
}

.pages .page_next {
  text-align: left;
}

.pages .page_next:before {
  display: block;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  font-family: "Font Awesome 5 Free";
  content: "\f100";
  font-weight: 900;
  color: #fff;
}

.pages .page_next a {
  padding-left: 30px;
  padding-right: 10px;
}

.pages .page_prev {
  text-align: right;
}

.pages .page_prev:after {
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-family: "Font Awesome 5 Free";
  content: "\f101";
  font-weight: 900;
  color: #fff;
}

.pages .page_prev a {
  padding-left: 10px;
  padding-right: 30px;
}
/*# sourceMappingURL=custom.css.map */