@charset "UTF-8";
/*----------------------------------------------------
基本設定
----------------------------------------------------*/
/* ホバー変更はやさ*/
/* ボーダーボックスの変更*/
/* ボーダーボックスの変更*/
/* 反転*/
/*----------------------------------------------------
フォント
----------------------------------------------------*/
/* Light/Medium */
/* Regular/Medium */
/* 游明朝体 Regular/Medium */
/* 游明朝体 Demibold */
/* 游明朝体 extrabold */
/*----------------------------------------------------
フォント設定
----------------------------------------------------*/
/*----------------------------------------------------
中央寄せ
----------------------------------------------------*/
/* 上下左右中央寄せ */
/* 上下中央寄せ */
/* 左右中央寄せ */
/*----------------------------------------------------
背景
----------------------------------------------------*/
/*----------------------------------------------------
親要素よりも幅を超えて表示
----------------------------------------------------*/
/*----------------------------------------------------
リストマーカー
----------------------------------------------------*/
/*----------------------------------------------------
擬似要素
----------------------------------------------------*/
/*----------------------------------------------------
テキスト内リンク
//html例：
<p>テキスト<a href="" class="link_text">こちら</a>テキス</p>
----------------------------------------------------*/
/* ホバーで下線が左に消える */
/* ホバーで左から右に線が出る */
/*----------------------------------------------------
ボタン

基本のhtml
<a href="" class="btn">
  <span>私たちについて</span>
</a>
----------------------------------------------------*/
/* 初期：bg塗りあり、枠線塗りあり ⇨ hoverで反転 */
/* 初期：bg塗りなし、枠線塗りあり ⇨ hoverで反転 */
/* ボタン矢印あり 「 ---\ 」*/
/*----------------------------------------------------
共通・ボタン
----------------------------------------------------*/
.btnSection {
  padding-bottom: 80px;
}
.btnSection .col {
  margin-top: 30px;
}

.btn_arrow_wide {
  position: relative;
  min-height: 60px;
  background: #000000;
  color: white;
  display: block;
  font-size: 15px;
  letter-spacing: 0em;
  line-height: 1.72;
  font-weight: bold;
  padding: 10px 40px 5px 10px;
  /* 751- */
}
.btn_arrow_wide::before, .btn_arrow_wide::after {
  content: "";
  display: block;
  position: absolute;
  background: white;
  height: 2px;
  z-index: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn_arrow_wide::before, .btn_arrow_wide::after {
  right: 10px;
}
.btn_arrow_wide::before {
  width: 20px;
  top: 50%;
}
.btn_arrow_wide::after {
  width: 10px;
  top: calc(50% - 2px);
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
@media all and (min-width: 751px) {
  .btn_arrow_wide {
    min-height: 90px;
    text-align: center;
    font-size: 25px;
    letter-spacing: 0em;
    line-height: 1.6;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .btn_arrow_wide::before, .btn_arrow_wide::after {
    right: 20px;
  }
  .btn_arrow_wide::before {
    width: 43px;
    top: 50%;
  }
  .btn_arrow_wide::after {
    width: 15px;
    top: calc(50% - 4px);
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg);
  }
  .btn_arrow_wide:hover {
    background-color: #fff;
    color: black;
  }
  .btn_arrow_wide:hover::before, .btn_arrow_wide:hover::after {
    background-color: black;
    right: 5px;
  }
}
.btn_arrow_wide.white {
  background-color: #fff;
  color: #000000;
  /* 751- */
}
.btn_arrow_wide.white::before, .btn_arrow_wide.white::after {
  background: black;
}
@media all and (min-width: 751px) {
  .btn_arrow_wide.white:hover {
    background-color: black;
    color: white;
  }
  .btn_arrow_wide.white:hover::before, .btn_arrow_wide.white:hover::after {
    background: white;
  }
}
.btn_arrow_wide.textGray {
  color: #828181;
}
.btn_arrow_wide.textGray::before, .btn_arrow_wide.textGray::after {
  background: #828181;
}
.btn_arrow_wide.bordeBlack {
  border: 2px solid black;
  background: initial;
  color: black;
  /* 751- */
}
.btn_arrow_wide.bordeBlack::before, .btn_arrow_wide.bordeBlack::after {
  background: black;
}
@media all and (min-width: 751px) {
  .btn_arrow_wide.bordeBlack:hover {
    background-color: #fff;
    border: 2px solid white;
    color: black;
  }
  .btn_arrow_wide.bordeBlack:hover::before, .btn_arrow_wide.bordeBlack:hover::after {
    background-color: black;
    right: 5px;
  }
}
.btn_arrow_wide.bordeWhite {
  border: 2px solid white;
  background: initial;
  color: white;
  /* 751- */
}
.btn_arrow_wide.bordeWhite::before, .btn_arrow_wide.bordeWhite::after {
  background: white;
}
@media all and (min-width: 751px) {
  .btn_arrow_wide.bordeWhite:hover {
    background-color: black;
    border: 2px solid black;
    color: white;
  }
  .btn_arrow_wide.bordeWhite:hover::before, .btn_arrow_wide.bordeWhite:hover::after {
    background-color: white;
    right: 5px;
  }
}

.btn_arrow {
  position: relative;
  min-height: 45px;
  background: #000000;
  color: white;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 12px;
  letter-spacing: 0em;
  line-height: 1.72;
  padding: 10px 30px 5px 5px;
  /* 751- */
}
.btn_arrow::before, .btn_arrow::after {
  content: "";
  display: block;
  position: absolute;
  background: white;
  height: 2px;
  z-index: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn_arrow::before, .btn_arrow::after {
  right: 10px;
}
.btn_arrow::before {
  width: 20px;
  top: 70%;
}
.btn_arrow::after {
  width: 10px;
  top: calc(70% - 2px);
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
@media all and (min-width: 751px) {
  .btn_arrow {
    min-height: 90px;
    font-size: 25px;
    letter-spacing: 0em;
    line-height: 1.6;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
    padding-left: 34px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .btn_arrow::before, .btn_arrow::after {
    right: 20px;
  }
  .btn_arrow::before {
    width: 43px;
    top: 50%;
  }
  .btn_arrow::after {
    width: 15px;
    top: calc(50% - 4px);
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg);
  }
  .btn_arrow:hover {
    background-color: #fff;
    color: black;
  }
  .btn_arrow:hover::before, .btn_arrow:hover::after {
    background-color: black;
    right: 5px;
  }
}
.btn_arrow.textGray {
  color: #828181;
}
.btn_arrow.textGray::before, .btn_arrow.textGray::after {
  background: #828181;
}
.btn_arrow.textGray:hover {
  color: #828181;
}
.btn_arrow.textGray:hover::before, .btn_arrow.textGray:hover::after {
  background: #828181;
}
.btn_arrow.white {
  background-color: #fff;
  color: #000000;
  /* 751- */
}
.btn_arrow.white::before, .btn_arrow.white::after {
  background: black;
}
@media all and (min-width: 751px) {
  .btn_arrow.white:hover {
    background-color: black;
    color: white;
  }
  .btn_arrow.white:hover::before, .btn_arrow.white:hover::after {
    background: white;
  }
}
.btn_arrow.white.textGray {
  color: #828181;
}
.btn_arrow.white.textGray::before, .btn_arrow.white.textGray::after {
  background: #828181;
}
.btn_arrow.white.textGray:hover {
  color: white;
}
.btn_arrow.white.textGray:hover::before, .btn_arrow.white.textGray:hover::after {
  background: white;
}
.btn_arrow.bordeBlack {
  border: 2px solid black;
  background: initial;
  color: black;
  /* 751- */
}
.btn_arrow.bordeBlack::before, .btn_arrow.bordeBlack::after {
  background: black;
}
@media all and (min-width: 751px) {
  .btn_arrow.bordeBlack:hover {
    background-color: #fff;
    border: 2px solid white;
    color: black;
  }
  .btn_arrow.bordeBlack:hover::before, .btn_arrow.bordeBlack:hover::after {
    background-color: black;
    right: 5px;
  }
}
.btn_arrow.bordeWhite {
  border: 2px solid white;
  background: initial;
  color: white;
  /* 751- */
}
.btn_arrow.bordeWhite::before, .btn_arrow.bordeWhite::after {
  background: white;
}
@media all and (min-width: 751px) {
  .btn_arrow.bordeWhite:hover {
    background-color: black;
    border: 2px solid black;
    color: white;
  }
  .btn_arrow.bordeWhite:hover::before, .btn_arrow.bordeWhite:hover::after {
    background-color: white;
    right: 5px;
  }
}

/* pcで 3カラムのとき*/
.pc_w320 .btn_arrow {
  /* 751- */
}
@media all and (min-width: 751px) {
  .pc_w320 .btn_arrow {
    font-size: 20px;
    min-height: 70px;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
    padding: 10px 32px 10px 10px;
  }
  .pc_w320 .btn_arrow::before {
    width: 32px;
  }
  .pc_w320 .btn_arrow::after {
    width: 14px;
  }
}

/* pcで 4カラムのとき*/
.pc_w220 .btn_arrow {
  /* 751- */
}
@media all and (min-width: 751px) {
  .pc_w220 .btn_arrow {
    font-size: 20px;
    min-height: 84px;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 10px 10px;
  }
  .pc_w220 .btn_arrow::before {
    width: 32px;
    top: 70%;
  }
  .pc_w220 .btn_arrow::after {
    width: 14px;
    top: calc(70% - 4px);
  }
}

.btn_arrow2 {
  position: relative;
  min-height: 50px;
  background: #000000;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 17px;
  letter-spacing: 0em;
  line-height: 1.72;
  font-weight: bold;
  padding: 10px 10px;
  position: relative;
  /* 751- */
}
.btn_arrow2::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: solid 2px white;
  border-right: solid 2px white;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  right: 10px;
}
@media all and (min-width: 751px) {
  .btn_arrow2 {
    min-height: 50px;
    text-align: center;
    font-size: 20px;
    letter-spacing: 0em;
    line-height: 1.6;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .btn_arrow2::after {
    content: "";
    position: absolute;
    width: 13px;
    height: 13px;
    border-top: solid 2px white;
    border-right: solid 2px white;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
    right: 20px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .btn_arrow2:hover {
    background-color: #fff;
    color: black;
  }
  .btn_arrow2:hover::after {
    border-color: black;
    right: 8px;
  }
}
.btn_arrow2.white {
  background-color: #fff;
  color: #000000;
  /* 751- */
}
.btn_arrow2.white::after {
  border-color: black;
}
@media all and (min-width: 751px) {
  .btn_arrow2.white:hover {
    background-color: black;
    color: white;
  }
  .btn_arrow2.white:hover::after {
    border-color: white;
  }
}
.btn_arrow2.textGray {
  color: #828181;
}
.btn_arrow2.textGray::after {
  border-color: #828181;
}
.btn_arrow2.bordeBlack {
  border: 2px solid black;
  background: initial;
  color: black;
  /* 751- */
}
.btn_arrow2.bordeBlack::after {
  border-color: black;
}
@media all and (min-width: 751px) {
  .btn_arrow2.bordeBlack:hover {
    border: 2px solid white;
    background-color: #fff;
  }
}
.btn_arrow2.bordeWhite {
  border: 2px solid white;
  background: initial;
  color: white;
  /* 751- */
}
.btn_arrow2.bordeWhite::after {
  border-color: white;
}
@media all and (min-width: 751px) {
  .btn_arrow2.bordeWhite:hover {
    border: 2px solid black;
    background-color: black;
  }
}
/*# sourceMappingURL=btn.css.map */