@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）
-----------------------------------------------------*/
h2 {
  margin: 0.5em 0em;
  font-size: 2em;
  font-weight: bold;
  text-align: center;
}
h3 {
  margin: 0.5em 0em;
  padding: 0.3em 0.6em;
  font-size: 1.6em;
  font-weight: bold;
  border-left: 8px solid #10559A;
  border-bottom: 1px dotted #10559A;
}
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;
}
/*--------------------------------------------------
全体レイアウト／背景設定（PC）
-----------------------------------------------------*/
/*全体エリア（全体背景を設定するにはここ）*/
.main {
  background-image: url(..//images/bg.png);
  background-size: auto;
  background-attachment: fixed;
}
/*記事(ボディ)エリア*/
.article {
  background-color: #fff;
  box-shadow: 2px 1px 15px #a19f9e;
  font-size: 1.6em; /*=16px*/
}
/*記事(ボディ)エリアの行間*/
.article p {
  line-height: 1.6;
}
/*カラム全体の幅を変更する*/
.article, .top_image_in {
  width:700px;
  margin: 0 auto; /*真ん中に要素を置きたいときに使う*/
}
/*--------------------------------------------------
上部固定ヘッダー設定
-----------------------------------------------------*/
/*上部固定ヘッダー全体*/
.header {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 5000;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  overflow: auto;
}
/*ヘッダー内部をカラム幅にする*/
.header_inr {
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
}
/*ヘッダーのロゴ*/
.header_logo {
  width: 20%;
  float: left;
  margin: 0em;
}
/*ヘッダーの問い合わせボタン*/
.header_mail {
  width: 25%;
  float: right;
  margin: 0.8em 0em 0em;
}
/*ヘッダーの電話ボタン*/
.header_tel {
  width: 30%;
  float: right;
  margin: 0.8em 0em 0em;
}
/*ヘッダー内の画像が常に幅100%になるように*/
.header_logo img, .header_mail img, .header_tel img {
  width: 100%;
}

/*--------------------------------------------------
sectionの設定
-----------------------------------------------------*/
.section_01 {
  background-color: #fffcf9;
  padding: 1em 0em;
  margin-top:1.5em;
}

.accomplishments{
  padding: 0 1em;
  font-weight: bold;
  text-align: center;
}
.subhead_accomplishments{
  margin-bottom: 1em;
  font-size: 24px;
  padding: 0 1em;
  font-weight: bold;
  text-align: center;
}
.name{
  width: 60%;
  margin: 0 auto 0.5em;

}
.section_02 {
  background-color: #FFF;
  padding: 1.5em 0em 0em;
}
.solution{
  margin-bottom: 1em;
}
.subhead_reason{
  margin-bottom: 3em;
}
.reason_01{
  margin-bottom: 3em;
}
.reason_02{
  margin-bottom: 3em;
}
.reason_03{
  margin-bottom: 3em;
}

.section_03 {
  padding: 3em 1em 3em 1em;
  background-color: #fff8f0;
}
.subhead_voice{
  margin-bottom: 3em;
}
.voice_01{
  margin-bottom: 1em;
}
.voice_02{
  margin-bottom: 1em;
}
.voice_03{
  margin-bottom: 1em;
}
.section_04{
  padding: 3em 1em 3em 1em;
}
.subhead_flow{
  margin-bottom: 3em;
}

.section_05{
  padding: 3em 1em 3em 1em;
  background-color: #f4f6f6;
}
.subhead_faq{
  margin-bottom: 3em;
}

/*--------------------------------------------------
よくある質問
-----------------------------------------------------*/
.qa__list {
  margin: 1em 0 1em;
  padding: 0 3em;
}

.qaItem:not(:last-child) {
  margin-bottom: 20px;
}

.qaItem__q {
  padding: 20px 10px;
  padding-left: 20px;
  background-color: #fff;
  font-size: 18px;
  font-weight: bold;
  color: #333333;
  position: relative;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 10px;
}

.qaItem__q::after {
  content: "";
  display: inline-block;
  background-image: url(../images/plus.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 26px;
  height: 26px;
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  /* map-get(マップ型変数, キー)で値を取得 */
}

.qaItem__q.is-active::after {
  background-image: url(../images/minus.svg);
}

.qaItem__q .q {
  font-size: 26px;
  font-weight: bold;
  color: #333333;
  margin-right: 10px;
  display: inline-block;
  line-height: 1;
}

.qaItem__a {
  padding: 20px;
  font-weight: 500;
  position: relative;
  cursor: pointer;
  display: none;
  margin: 0 auto;
}

.qaItem__a-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.qaItem__a .a {
  font-size: 26px;
  font-weight: bold;
  color: #E55A57;
  margin-right: 10px;
  display: inline-block;
  line-height: 1;
}

/*--------------------------------------------------
プライバシーポリシー
-----------------------------------------------------*/
.privacy_section_01{
	padding: 1.5em 3em;
	background-image: url("../images/bg_privacy.png");	
}

/*--------------------------------------------------
CTAエリア
-----------------------------------------------------*/

.cta_box{
  padding: 3em 0 ;
}
.micro_copy{
  padding-bottom: 1.5em;
  width: 80%;
  margin: 0 auto;
}
.cta_btn{
  margin: 0 6em;
  text-align: center;
  padding: 0em;
  display:inline-block;
  position:relative;
  overflow:hidden;
}
.cta_btn:after {
content:"";
height:100%;
width:30px;
position:absolute;
top:-180px;
left:0;
background-color: #fff;
opacity:0;
-webkit-transform: rotate(45deg);
-webkit-animation: cta_btn 2s ease-in-out infinite;
}
 
@keyframes cta_btn {
0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}



/*--------------------------------------------------
下部固定ヘッダー（PCは非表示）
-----------------------------------------------------*/
.fix_menu_smartphone{
  display: none;
}

.fixed {
  position: fixed;
  bottom: 0; /*ページ下部の固定する位置*/
  width: 0;
  z-index: 0;
}
/*--------------------------------------------------
フッター部分
-----------------------------------------------------*/
.footer {
  background-color: #fe8008;
  padding: 2em 0em;
  text-align: center;
  font-size: 1.4em;
  color: #fff;
}
.footer a {
  color: #fff;
}