@charset "UTF-8";

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

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

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

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

/*ブラウザのCSSをリセット*/
p {
  margin: 0 !important;
  padding: 0 !important;
}

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



/*--------------------------------------------------
全体レイアウト／背景設定（PC）
-----------------------------------------------------*/
/*全体エリア（全体背景を設定するにはここ）*/
.main {
  background-color: #fff;
  overflow: hidden;
}

/*記事(ボディ)エリア*/
.article {
  background-color: #fff;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  font-size: 1.6em;
  /*=16px*/
}

/*記事(ボディ)エリアの行間*/
.article p {
  line-height: 1.6;
}

/*カラム全体の幅を変更する*/
.article, .top_image_in {
  width: 700px;
  margin: 0 auto;
  /*真ん中に要素を置きたいときに使う*/
}

/*--------------------------------------------------
下部固定ヘッダー（PCは非表示）
-----------------------------------------------------*/
.fix_menu_smartphone {
	margin: 1em auto;
    display: block;
    width: 100%;
    position: fixed;
    bottom: 0px;
    left: 0px;
    z-index: 10000;
    margin: 0 auto;
    text-align: center;
  }
  .fix_menu_smartphone img {
    width: 40%;
    text-align: center;
    padding: 2em 0;
  }
  .mmenu_center{
    background-color: #fff;
    width: 60%;
    padding: 0em 0;
    text-align: center;
  }

/*--------------------------------------------------
ファーストビュー設定
-----------------------------------------------------*/
.top_image {
  background-image: none;
}
.top_image_in img {
  width: 100%;
}



/*--------------------------------------------------
セクション1
-----------------------------------------------------*/
.main_container {
  background-color: #fff;
  padding: 0;
  text-align: center;
}

.main_container img {
  width: 100%;
}




/*--------------------------------------------------
インタビュー動画
-----------------------------------------------------*/



/*--------------------------------------------------
CTAエリア
-----------------------------------------------------*/
.area_cta {
  background-color: #3173dc;
  padding: 1.5em 0.5em 0;
}

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

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

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

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

.cta_causion {
  color: #fff;
  font-weight: bold;
  font-size: 1.1em;
  padding: 0.5em 1em 1em 1em;
  text-align: center;
}



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

.footer a {
  color: #fff;
}





/*--------------------------------------------------
プライバシーポリシー
-----------------------------------------------------*/

.privacy_contents {
margin: 8em 5em;

}

.privacy_contents p{
font-size: 1.7em;

}

.privacy_contents h2 {
  margin: 0.5em 0em;
  font-size: 3em;
  font-weight: bold;
  text-align: center;
}

.privacy_contents h3 {
  margin: 0.5em 0em;
  padding: 0.3em 0.6em;
  font-size: 2.3em;
  font-weight: bold;
  border-left: 8px solid #0164bb;
  border-bottom: 1px dotted #0164bb;
}




/*--------------------------------------------------
特定商取引法に基づく表記
-----------------------------------------------------*/
.law_contents {
margin: 8em 5em;
text-align: center;
}

.law_contents p{
font-size: 1.7em;

}

.law_contents h2 {
  margin: 0.5em 0em;
  font-size: 3em;
  font-weight: bold;
  text-align: center;
}


table {
  font-size: 1.5em;
  width: 100%;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  margin: 1em 0;
}
th, td {
  padding: 0.5em;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
th {
  font-size: 1.1em;
  width: 20%;
  background-color: #0164bb;
  text-align: center;
  color: #fff;
}
td {
  width: 50%;
  font-size: 1.1em;
  background-color: #fff;
  text-align: center;
  font-weight: normal !important;
}
