@charset "UTF-8";

/* CSS Document */

/*----------------------------------------
PC用レイアウト(768px以上スクリーン)
----------------------------------------*/

/* body全体の初期スタイル調整 */

html,
body {
    width: 100%;
}

body {
    font-size: 62.5%;
    /*emの計算をしやすくするための定番設定*/
    font-family: "YuGothic", "Yu Gothic medium", "Hiragino Sans", "Meiryo", "sans-serif";
    font-weight: normal;
    color: #000;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* リンク文字の設定 */

/* ブラウザのCSSをリセット */

p {
    margin: 0 !important;
    margin: 0 !important;
}

section {
    clear: both;
    overflow: hidden;
}

/*----------------------------------------
hタグの設定
----------------------------------------*/

/*H2タグ*/
.contents h2 {
    margin: 0 0 0em;
    padding: 0.3em 0.9em;
    font-size: 2.7em;
    font-weight: bold;
    color: #252525;
    text-align: center;
    
  }

  .contents h3 {
    margin: 0 0 0em;
    font-size: 2.5em;
    font-weight: bold;
    color: #252525;
    padding: 0.25em 0.5em;/*上下 左右の余白*/
    border-left: solid 5px #c36a2d;/*左線*/
  }
  

/*----------------------------------------
全体レイアウト/背景設定(PC)
----------------------------------------*/

/* 全体エリア(全体背景を設定するにはここ) */

.main {
    width: 100%;
    background-image: url(../images/pc_bg.png);
    position: relative;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 auto;
}

.fv {
    max-width: 650px;
    margin: 0 auto;
}

/*カラム内部のサイズ*/
#main-contents {
    width: 650px;
    background-color: #fff;
    margin: 0 auto;
}

#home {
    width: 100%;
}

.contents{
    width: 650px;
    background: #ceaa5e;
    padding: 1% 0;
    margin: 0 auto;
  }
  
  .contents_inner{
      margin: 5% 10%;
      padding: 5% 5%;
      background: #fff;
      border-radius: 20px;
  }
  
  .contents p {
    line-height: 1.8em;
    font-size: 1.6em;
    color: #252525;
  }
  
  table{
    margin: 0 auto;
  }
  
  .contents td{
    line-height: 1.8em;
    font-size: 1.6em;
    color: #252525;
    padding-left: 8%;
  }
  
/*----------------------------------------
/CVエリア01
----------------------------------------*/

.cv_area_01 {
    position: relative;
    margin: 0 auto;
}

.cv_btn_01 img {
    position: absolute;
    margin-top: -31%;
    width: 100%;
    transition-duration: .4s;
}

.cv_btn_01:hover {
    transform: scale(1.1);
    opacity: 0.6;
}

.cv_btn_01.anim-box {
    animation: fuwafuwa 1s ease 0s infinite alternate;
    transform-origin: center;
}

@keyframes fuwafuwa {
    from {
        transform: scale(0.9, 0.9);
    }

    to {
        transform: scale(1, 1);
    }
}

/*----------------------------------------
よくあるご質問
----------------------------------------*/

#faq {
    background-image: url(../images/sec14_faq.jpg);
    background-repeat: no-repeat;
    background-size: 100%;

}

.accordion_wrap {
    padding: 53% 10% 5% 10%;
    width: 100%;
    margin: 0 auto;
}

.accordion {
    margin-bottom: 3%;
    position: relative;
}

.accordion__btn {
    cursor: pointer;
    position: relative;
}

.accordion__btn::before {
    content: '';
    display: inline-block;
    border-radius: 10%;
    width: 4%;
    height: 3px;
    background-color: #fff;
    position: absolute;
    right: 3.97%;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 1s;
}

.accordion__btn::after {
    content: '';
    display: inline-block;
    border-radius: 10%;
    width: 4%;
    height: 3px;
    background-color: #fff;
    position: absolute;
    right: 3.97%;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transition: transform 1s;
}

.accordion__btn.show::before {
    opacity: 0;
}

.accordion__btn.show::after {
    transform: translateY(-50%) rotate(180deg);
}

.accordion__content {
    display: none;
}

/*----------------------------------------
CVエリア02
----------------------------------------*/

.cv_area_01 {
    position: relative;
    margin: 0 auto;
    text-align: center;
}

.cv_btn_02 {
    position: absolute;
    top: 75.5%;
}

.cv_btn_02 img{
    top: 50%;
    transition-duration: .4s;
    width: 90%;
}

.cv_btn_02:hover {
    transform: scale(1.1);
    opacity: 0.6;
}

.cv_btn_02.anim-box {
    animation: fuwafuwa 1s ease 0s infinite alternate;
    transform-origin: center;
}

@keyframes fuwafuwa {
    from {
        transform: scale(0.9, 0.9);
    }

    to {
        transform: scale(1, 1);
    }
}

/*----------------------------------------
CVエリア03
----------------------------------------*/

.cv_area_02 {
    position: relative;
    margin: 0 auto;
    text-align: center;
}

.cv_btn_03 {
    position: absolute;
    top: 77%;
}

.cv_btn_03 img{
    top: 50%;
    transition-duration: .4s;
    width: 90%;
}

.cv_btn_03:hover {
    transform: scale(1.1);
    opacity: 0.6;
}

.cv_btn_03.anim-box {
    animation: fuwafuwa 1s ease 0s infinite alternate;
    transform-origin: center;
}

@keyframes fuwafuwa {
    from {
        transform: scale(0.9, 0.9);
    }

    to {
        transform: scale(1, 1);
    }
}

/*----------------------------------------
トップへ戻るボタン
----------------------------------------*/

a.back_btn {
    display: block;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    width: 30%;
    margin: auto;
    padding: 0.9rem 0;
    font-weight: normal;
    border: 1.5px solid #c36a2d;
    color: #c36a2d;
    border-radius: 100vh;
    transition: 0.5s;
    font-size: 1.3em;
}

a.back_btn:hover {
    color: #fff;
    background: #c36a2d;
}

.back_btn:hover::after {
    transform: translateY(-50%) scaleX(1.4);
}

/*----------------------------------------
フッター部分
----------------------------------------*/

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

.footer a {
    color: #fff;
}