﻿

/* aboutus detail */

section {
  max-width: 100px;
  margin: 30px auto;
}
/*=============
a.btn_01 法人の方
=============*/
a.btn_1 {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border: 1px solid #228bc8;
  box-sizing: border-box;
  width: 60%;
  height: 50px;
  padding: 0 6% 0 6%;
  color: #228bc8;
  font-size: 16px;
  text-align: left;
  text-decoration: none;
  position: relative;
  transition-duration: 0.2s;
}
a.btn_1:hover {
  background: #228bc8;
  color: #fff;
}
a.btn_1:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 8px;
  border-color: transparent transparent transparent #228bc8;
  position: absolute;
  top: 50%;
  left: 6%;
  margin-top: -7px;
}
a.btn_1:hover:before {
  border-color: transparent transparent transparent #fff;
}


/*=============
a.btn_02 クレジットカード
=============*/
a.btn_2 {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f90;
  border: 1px solid #f90;
  box-sizing: border-box;
  width: 60%;
  height: 50px;
  padding: 0 6% 0 6%;
  color: #fff;
  font-size: 16px;
  text-align: left;
  text-decoration: none;
  position: relative;
  transition-duration: 0.2s;
}
a.btn_2:hover {
  background: #fff;
  color: #f90;
}
a.btn_2:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 8px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  top: 50%;
  left: 6%;
  margin-top: -7px;
}
a.btn_2:hover:before {
  border-color: transparent transparent transparent #f90;
}


/*=============
a.btn_03 銀行振込・郵便振替
=============*/
a.btn_3 {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #228bc8;
  border: 1px solid #228bc8;
  box-sizing: border-box;
  width: 85%;
  height: 50px;
  padding: 0 6% 0 6%;
  color: #fff;
  font-size: 16px;
  text-align: left;
  text-decoration: none;
  position: relative;
  transition-duration: 0.2s;
}
a.btn_3:hover {
  background: #fff;
  color: #228bc8;
}
a.btn_3:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 8px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  top: 50%;
  left: 6%;
  margin-top: -7px;
}
a.btn_3:hover:before {
  border-color: transparent transparent transparent #228bc8;
}


/*.btn_2 {
  display: inline-block;
  width: 200px;
  text-align: center;
  text-decoration: none;
  line-height: 50px;
  outline: none;
  background-color: #000;
  border:2px solid #000;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.btn_2:hover {
  color: #e02c74;
  border:2px solid #e02c74;
  background-color: #fff;
}
*/