



@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タグ*/
h2 {
  margin: 0em;
  padding: 0em 0em;
  font-size: 2em;
  font-weight: bold;
  text-align: center;
}


h3 {
  font-size: 1.2em;
  font-weight: bold;
  text-align:center;
}


h4{
  font-size: 1em;
  font-weight: bold;
}

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

}
/*記事(ボディ)エリア*/
.article {
  background-color: #fff;
  font-size: 1.6em; /*=16px*/
}
/*記事(ボディ)エリアの行間*/
.article p {
  line-height: 1.6;
}

.article{
	width: 100%;
}

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


/*--------------------------------------------------
ファーストビュー設定
-----------------------------------------------------*/
.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; }
.sp { display: none !important; }
 
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 768px) {
    .pc { display: none !important; }
    .sp { display: block !important; }
}

/* ------------------------------
   スライダー
------------------------------ */
 
.loopSliderWrap {
  top: 0;
  left: 0;
  height: 300px;
  overflow: hidden;
  position: absolute;
}
.loopSlider {
  margin: 0 auto;
  width: 100%;
  height: 170px;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.loopSlider ul {
  margin: 0;
  padding: 0;
  height: 300px;
  float: left;
  overflow: hidden;
}
.loopSlider ul li {
  margin: 0;
  padding: 0;
  width: 300px;
  height: 300px;
  float: left;
  display: inline;
  overflow: hidden;
}
.loopSlider ul li img {
  width: 100%;
}

/*-----------------------------------------------------------------------------------------------------
見出し
-----------------------------------------------------------------------------------------------------*/
.section_sub {
  background-image: url(../images/_bg_sub.jpg);
  background-size: 100%;
  color: #fff;
  font-size: 1.2em;
  position: relative;
  padding: 1.5em 0em 1em;
}




/*--------------------------------------------------
sectionの設定
-----------------------------------------------------*/

.section_01{
  background-image: url(../images/nayami_back.png);
  background-size:100%;
  background-attachment: fixed;
  font-size: 1.6em;
  line-height: 2em;
  padding: 5em 2em;
}

.section_02{
  font-size: 1.2em;
  line-height: 2em;
  padding: 3em 3em;  

}

.section_03 {


  padding: 3em 0em 0em 0em;  

}

.section_04 {
  font-size: 1.2em;
  line-height: 2em;
  padding: 5em 1em;  
}



.section_05 {
background-image: url(../images/chosha_back.jpg);
font-size: 1.2em;
padding: 3em;
}

.section_06{
  background-image: url(../images/chosha_back.jpg);

}

/*-----------------------------------------------------------------------------------------------------
CTA＆ボタン
-----------------------------------------------------------------------------------------------------*/

.area_cta {
  background-image: url(../images/cta_back.jpg);
  background-repeat: no-repeat;
  background-size:100%;
  background-attachment: fixed;
 }


.cta{
  padding: 1em 0.5em;
  margin: 0 auto;
  overflow: auto;
}

.area_cta_02 {
  background-image: url(../images/cta_back.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
   padding: 10em;
 }


 @keyframes shiny {
  0% { left: -20%; }
  10% { left: 120%; }
  100% { left: 120%; }
}

.shiny_btn {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 80%;
  height: 80px;
  line-height: 80px;
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  background-color: #fa7008;
  border-bottom: solid 4px #8e440c;
  border-radius: 3px;
  overflow: hidden;
}

.shiny_btn::after {
  content: '';
  position: absolute;
  top: -10%;
  left: -20%;
  width: 40px;
  height: 100%;
  transform: scale(2) rotate(20deg);
  background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, .5) 100%, rgba(255, 255, 255, 0) 0%);
  
  /* アニメーション */
  animation-name: shiny;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.shiny_btn a {
  color: #000;
  text-decoration: none;
}
.shiny_btn:hover {
  opacity: 0.7;
}






/*-----------------------------------------------------------------------------------------------------
挨拶
-----------------------------------------------------------------------------------------------------*/


.pro{
  padding-top: 2em;
}

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

/*--------------------------------------------------
結果
-----------------------------------------------------*/
.no1_area{
  display: flex;
  flex-wrap: wrap;
  padding: 1em;
}

.box_no1{
  width: 50%;
  padding: 1em 1em;
  margin: 0em;
}

.box_mokuji img {
  width: 60%;
  display: block;
  margin: 0 auto;
}
/*--------------------------------------------------
目次
-----------------------------------------------------*/


.box_mokuji_area {
  display: flex;
  flex-wrap: wrap;
  padding: 1em;
}
.box_mokuji {
  width: 30%;
  text-align: left;
  padding: 1em 1em;
  margin: 0em;
  
}

.box_mokuji img {
  width: 40%;
  display: block;
  margin: 0 auto;
}



.box_tag_01 {
  background-color: #232033;
  padding: 0.2em 0.5em;
  color: #fff;
}



/*--------------------------------------------------------
著者紹介
--------------------------------------------------------*/
.chosha_area{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 2em;
  }
  
.box_chosha{
    width: 45%;
        border: 1px solid #ccc;
        padding: 1em 2em;
        margin-bottom: 1em;
        background-color: #f0f0f0;
        box-shadow: 2px 2px 4px gray;
        text-align: left;
    }
    
    .imgcenter_01{
      padding: 1em;
    }
      


/*--------------------------------------------------
フッター部分
-----------------------------------------------------*/
.footer_img{
margin:0em;

}

.footer {
  background-color: #232033;
  padding: 2em 0em;
  text-align: center;
  font-size: 1.4em;
  color: #fff;
}
.footer a {
  color: #fff;
}


