@charset "UTF-8";

/* CSS Document */
/*-------------------------------------------------------------------------------------
PC用レイアウト（768px以上スクリーン）
----------------------------------------------------------------------------------------*/
/*--------------------------------------------------
共通設定(PC)
-----------------------------------------------------*/
/*body全体の初期スタイル調整*/
body {
  font-size: 62.5%;
  /*emの計算をしやすくするための定番設定*/
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  color: #333;
}

/*リンク文字の設定*/
a {
  text-decoration: underline;
}

a:link,
a:visited {
  color: #39f;
}

a:hover,
a:active {
  color: #f60;
}

/*ブラウザのCSSをリセット*/
p {
  margin: 0 !important;
  padding: 0 !important;
  font-size: 1.6em;
  letter-spacing: 0.03em;
  line-height: 2em;
}

/*セクションエリアの共通設定*/
section {
  clear: both;
  overflow: hidden;
}

/*--------------------------------------------------
見出しタグ設定（PC）
-----------------------------------------------------*/
h2 {
  margin: 0.5em 0em;
  font-size: 2em;
  font-weight: bold;
  text-align: center;
  color: #83c0db;
}

h3 {
  margin: 0.5em 0em;
  padding: 0.3em 0.6em;
  font-size: 1.6em;
  font-weight: bold;
  border-left: 8px solid #83c0db;
}

h4 {
  margin: 0.5em 0em;
  padding: 0.3em 0.6em;
  font-size: 1.4em;
  border: 1px solid #ccc;
  font-weight: bold;
}

h5 {
  margin: 0.5em 0em;
  padding: 0.1em;
  font-size: 1.2em;
  font-weight: bold;
  border-bottom: 1px dotted #ccc;
}

th,
td {
  font-size: 16px;
}

.tokusyo {
  font-size: 26px;
  color: #333;
}

@media only screen and (max-width: 600px) {
  .tokusyo {
    font-size: 20px;
  }
}

/*--------------------------------------------------
sectionの設定
-----------------------------------------------------*/
.seciton_01 {
  padding: 0em 3em 1.5em;
}

.section_02 {
  background-color: #FFFEF0;
  padding: 1.5em 3em;
}

/*--------------------------------------------------
全体レイアウト／背景設定（PC）
-----------------------------------------------------*/
/*全体エリア（全体背景を設定するにはここ）*/

/*カラム全体の幅を変更する*/
.top_image_in,
.section_inr {
  max-width: 800px;
  margin: 0 auto;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  /*真ん中に要素を置きたいときに使う*/
}

.top_image_inn {
  max-width: 800px;
  margin: 0 auto;
}


/*--------------------------------------------------
上部固定ヘッダー設定
-----------------------------------------------------*/
/*上部固定ヘッダー全体*/
.header {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 5000;
  overflow: auto;
  background-color: rgba(255, 255, 255, 0.9);
}

/*ヘッダー内部をカラム幅にする*/
.header_inr {
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  padding: 0 10px;
}

/*ヘッダーのロゴ*/
.header_logo {
  width: 7%;
  float: left;
  margin: 0.8em 0em;
}

/*ヘッダーの問い合わせボタン*/
.header_mail {
  width: 40%;
  float: right;
  margin: 0.8em 0em;
}

/*ヘッダーの電話ボタン*/
.header_tel {
  width: 20%;
  float: right;
  margin: 0.8em 0.5em 0
}

/*ヘッダー内の画像が常に幅100%になるように*/
.header_logo img,
.header_mail img,
.header_tel img {
  width: 100%;
}

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 600px) {
  .header_logo {
    width: 11%;
  }

  .header_tel {
    width: 35%;
  }

  .header_mail {
    width: 65%;
  }
}
/*--------------------------------------------------
ファーストビュー設定
-----------------------------------------------------*/
.top_image {
  background-image: url("../images/top_image_back.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  height: auto;
}

.top_image_in img {
  width: 100%;
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
  display: block !important;
  width: 100%;
}

.sp {
  display: none !important;
}

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 600px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
    width: 100%;
  }
}
/*--------------------------------------------------
実績設定
-----------------------------------------------------*/

.jisseki img {
  width: 100%;
  margin: 0 auto;
  display: block;
}

.jisseki img {
  border-radius: 3px;
}

/*==================================================
スライダーのためのcss
===================================*/
.slider img {
  width: 100%;
  /*スライダー内の画像を横幅100%に*/
  height: auto;
}

.slider-2 img {
  width: 100%;
  /*スライダー内の画像を横幅100%に*/
  height: auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider .slick-slide {
  margin: 0 10px;
  /*スライド左右の余白調整*/
}

.slider-2 .slick-slide {
  margin: 0 10px;
  /*スライド左右の余白調整*/
}

.slick-slider {
  padding-left: 0;
}

/*--------------------------------------------------
テーブル設定
-----------------------------------------------------*/
table {
  width: 100%;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  margin: 1em 0em;
}

th,
td {
  padding: 0.5em;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

th {
  background-color: #f0f0f0;
  font-weight: bold;
  text-align: center;
}

td {
  background-color: #fff;
  text-align: left;
}

/*スマホでは行が列になるテーブルタグ*/
.table_style_01 {
  text-align: left;
  vertical-align: middle;
}

/*--------------------------------------------------
FAQ部分
-----------------------------------------------------*/
.faq-title img {
  width: 80%;
  display: block;
  margin: 0 auto;

}

.cp_qa *,
.cp_qa *:after,
.cp_qa *:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.cp_qa {
  overflow-x: hidden;
  margin: 0 auto;

}

.cp_qa .cp_actab {
  padding: 20px 0;
  border-bottom: 1px dotted;
}

.cp_qa label {
  font-size: 1.6em;
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 10px 10px 0 48px;
  cursor: pointer;
}

.cp_qa .cp_actab-content {
  font-size: 1.6em;
  position: relative;
  overflow: hidden;
  height: 0;
  margin: 0 40px;
  padding: 0 14px;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  opacity: 0;
}

.cp_qa .cp_actab input[type=checkbox]:checked~.cp_actab-content {
  height: auto;
  padding: 14px;
  opacity: 1;
}

.cp_qa .cp_plus {
  font-size: 2.4em;
  line-height: 100%;
  position: absolute;
  z-index: 5;
  margin: 3px 0 0 10px;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

.cp_qa .cp_actab input[type=checkbox]:checked~.cp_plus {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.cp_qa .cp_actab input[type=checkbox] {
  display: none;
}


/*--------------------------------------------------
CTA部分
-----------------------------------------------------*/
.cta img {
  width: 100%;
}

.cta_button img {
  width: 50%;
  display: block;
  margin: 0 auto;
}

.scroll_btn {
  animation-name: fuwafuwa;
  /* fuwafuwaっていうアニメーションの名前*/
  animation-duration: 2s;
  /*アニメーションの時間設定*/
  animation-iteration-count: infinite;
  /*アニメーションの繰り返し設定*/
  margin-top: -30px;
}

@keyframes fuwafuwa {
  0% {
    -webkit-transform: translate(0, 0px);
  }

  /*X軸とY軸*/
  50% {
    -webkit-transform: translate(0, -20px);
  }

  100% {
    -webkit-transform: translate(0, 0px);
  }
}

@media only screen and (max-width: 600px) {
  .cta_button img {
    width: 80%;
  }
}


/*--------------------------------------------------
フッター部分
-----------------------------------------------------*/
.footer {
  background-color: #0096B2;
  padding: 2em 0em;
  text-align: center;
  font-size: 1.4em;
  color: #fff;
}

.footer a {
  color: #fff;
}

.small {
  font-size: 12px;
}