@charset "UTF-8";

/*-------------------------------------------
base
-------------------------------------------*/
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-size: 16px;
  color: #333333;
  line-height: 1.5;
  font-family: "Noto Sans JP", "Noto Sans Japanese","Yu Gothic M","游ゴシック Medium", "Yu Gothic Medium","游ゴシック",YuGothic,"メイリオ",Meiryo,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","ＭＳ Ｐゴシック","MS PGothic",sans-serif;
}

@media only screen and (max-width: 767px) {
  body{
    font-size: 16px;
  }
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: .2s ease-in-out;
  -moz-transition: .2s ease-in-out;
  -ms-transition: .2s ease-in-out;
  -o-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
}
a:hover, a img:hover {
  text-decoration: none;
  color: inherit;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  /* opacity: 1; */
}

a:after {
  color: inherit;
  -webkit-transition: .2s ease-in-out;
  -moz-transition: .2s ease-in-out;
  -ms-transition: .2s ease-in-out;
  -o-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
}

a.fade-link{
  transition: all 0.3s ease-out;
}
a.fade-link:hover{
  opacity: 0.9;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}
@media only screen and (max-width: 640px) {

  img {
    max-width: 100%;
  }
}

p{
  line-height: 1.875;
  margin-bottom: 0;
}
p + p{
  margin-top: 1em;
}

ul{
  padding-left: 0;
}
ul, li{
  margin-bottom: 0;
  list-style: none;
}
ul.type-disc{
}
ul.type-disc li{
  list-style-type: none;
}
ul.type-disc li:before{
  content: '・';
}

dt, dd{
  font-weight: normal;
}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

.cp_ipselect {
	overflow: hidden;
	position: relative;
	border-radius: 2px;
  background: #ffffff;
  z-index: 0;
}
.cp_ipselect select {
  position: relative;
	width: 100%;
	cursor: pointer;
	text-indent: 0.01px;
	text-overflow: ellipsis;
  border: none;
  border-radius: 0;
	outline: none;
	color: #495057;
	background-color: #F0F0F0;
	background-image: none;
  box-shadow: none;
  border-radius: 0;
  height: 40px;
	padding: 5px 38px 5px 8px;
}
.cp_ipselect select::-ms-expand {
    display: none;
}
.cp_ipselect label{
  width: 100%;
}

.validation-block{
  color: #DB3333;
}

.container{
  max-width: 1230px;
}
.box-content{
  width: 800px;
  max-width: 100%;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .container.service,
  .container.method,
  .container.price-area,
  .container.faq-area,
  .container.comp-about,
  .container.contact-area{
    padding-top: 6em;
    padding-bottom: 6em;
  }
  .cp_ipselect select {
    height: auto;
  }
}

/*-------------------------------------------
フォント
-------------------------------------------*/
.fwb{
  font-weight: bold;
}

/*-------------------------------------------
色
-------------------------------------------*/
.color-red{
  color: #EE5577 !important;
}
.color-key{
  color: #2F64C9 !important;
}

/*-------------------------------------------
背景色
-------------------------------------------*/
.bg-white{
  background-color: #fff;
}
.bg-gray{
  background-color: #F4F4F4;
}
.bg-blue{
  background-color: #1E71B5;
}
.bg-lightblue{
  background-color: rgba(86, 193, 213, 0.15);
}

/*-------------------------------------------
ボタン
-------------------------------------------*/
.btn-success:not(:disabled):not(.disabled).active,
.btn-success:not(:disabled):not(.disabled):active, .show>.btn-success.dropdown-toggle{
  background-color: #2F64C9;
  border: none;
}

.button{
  width: 349px;
  max-width:100%;
  height:100%;
  background-color: #fff;
  /* border: 1px solid #2F64C9; */
  text-align:center;
  cursor:pointer;
  position:relative;
  box-sizing:border-box;
  overflow:hidden;
  transition:all .5s ease;
  margin-left: auto;
  margin-right: auto;
}
.button a,
.button button{
  position:relative;
  color: #2F64C9;
  border: 1px solid #2F64C9;
  border-radius: 0;
  text-decoration:none;
  transition:all .5s ease;
  font-size: 20px;
  font-weight: bold;
  z-index:2;
  padding: 28px 24px;
}
.button a{
  display: block;
}
.button button{
  width: 100%;
}
.button:hover,
.button:hover a,
.button:hover button{
  background-color: #2F64C9;
  color: #fff;
}

@media only screen and (max-width: 767px) {
  .button a,
  .button button{
    padding: 20px 10px;
  }
}

/*-------------------------------------------
余白
-------------------------------------------*/
.pt50{ padding-top: 50px; }
.pt80{ padding-top: 80px; }
.pt120{ padding-top: 120px; }
.pt150{padding-top: 150px; }
.pt160{padding-top: 160px; }
.pt178{padding-top: 178px; }
.pt220{padding-top: 220px; }

.pb60{ padding-bottom: 60px; }
.pb75{ padding-bottom: 75px; }
.pb100{ padding-bottom: 100px; }
.pb120{ padding-bottom: 120px; }

@media only screen and (max-width: 767px) {
  .pt80{ padding-top: 40px; }
  .pt120{ padding-top: 60px; }
  .pt160{ padding-top: 80px; }
  .pb100{ padding-top: 50px; }
  .pb120{ padding-bottom: 60px; }
}


/*-------------------------------------------
アイコン
-------------------------------------------*/

/*-------------------------------------------
見出しレイアウト
-------------------------------------------*/
.headline{
  position: relative;
  text-align: center;
  margin-bottom: 0;
}
.headline span{
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  color: #333333;
  font-size: 32px;
  font-weight: bold;
  line-height: 0;
  letter-spacing: 4px;
}
.headline span.color-white{
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .headline{
    margin-bottom: 35px;
  }
  .headline span{
    font-size: 20px;
    letter-spacing: 0;
    line-height: 1.0;
  }
}

/*-------------------------------------------
リスト
-------------------------------------------*/
.list-disc li:before{
  content: "・";
}

.list-square li:before{
  content: "■";
  color: #2F64C9;
  margin-right: 0.5em;
}

.list-number li{
  list-style-type: decimal;
  line-height: 1.9;
}

/*-------------------------------------------
テキスト
-------------------------------------------*/
.text-right{
  text-align: right;
}

/*-------------------------------------------
矢印
-------------------------------------------*/
.link-arrow{
  position: relative;
}
.link-arrow:after{
  content: url(../images/btn-arrow.svg);
  position: absolute;
  right: 20px;
}
.link-arrow:hover:after{
  content: url(../images/btn-arrow-white.svg);
}
.link-arrow.gn:after{
  content: url(../images/btn-arrow-gn.svg);
  right: 0.5em;
}
