@charset "UTF-8";

/* CSS Document */

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

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

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

html,
body {
  width: 100%;
}

body {
  font-size: 62.5%;
  /*emの計算をしやすくするための定番設定*/
  font-family: yu-gothic-pr6n, sans-serif;
  font-style: normal;
  font-weight: 400;
}

* {
  box-sizing: border-box;
  /*余白や線を幅や高さに含める*/
}


/* リンク文字の設定 */
a {
  text-decoration: none;
  font-size: 1em;
}

ul {
  list-style-type: none;
}

li {
  list-style: none;
}

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

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

section {
  clear: both;
  overflow: auto;
}

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

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

.main {
  width: 100%;
}


/* カラム全体の幅を変更する */

.fv {
  width: 100%;
  margin: 0 auto;
}

#main-contents {
  width: 100%;
  margin: 0 auto;
  /*真ん中に要素を置きたい時に使う*/
  font-size: 2em;
}

.contents{
  background: #c2e6e2;
  padding: 1% 0;
}

.contents_inner{
    margin: 5% 10%;
    padding: 5% 10%;
    background: #fff;
    border-radius: 20px;
}

.contents p {
  line-height: 1.8em;
  font-size: 1.6em;
  color: #093533;
}

table{
  margin: 0 auto;
}

.contents td{
  line-height: 1.8em;
  font-size: 1.4em;
  color: #093533;
  padding-left: 8%;
}

/*--------------------------------------------------------
上部固定ヘッダー設定
--------------------------------------------------------*/
/*上部固定ヘッダー全体*/
.header {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 5000;
  background: #fff;
  overflow: hidden;
}

/*ヘッダーロゴ*/
.header_logo {
  float: left;
  width: 17%;
  margin: 1.5em 0 1.5em 3em;

}
/*ヘッダー ボタン*/
.sub-button {
  width: 23%;
  float: right;
  margin: 1.5em 3em 1.5em 0;
  transition-duration: .4s;
}

.sub-button img {
  margin: 0 auto;
  animation: beside 2s linear infinite;
  transform-origin: center;
  cursor: pointer;
}

.sub-button a:hover {
  filter: brightness(1.10);
}

@keyframes beside {
  0% {
      transform: translate(2px, 0px);
  }

  5% {
      transform: translate(-2px, 0px);
  }

  10% {
      transform: translate(2px, 0px);
  }

  15% {
      transform: translate(-2px, 0px);
  }

  20% {
      transform: translate(2px, 0px);
  }

  25% {
      transform: translate(-2px, 0px);
  }

  30% {
      transform: translate(0px, 0px);
  }
}


/*ヘッダー内の画像はエリア幅に合わせる*/
.header_logo img, .sub-button img{
  width: 100%;
}

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

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

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

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

.fv {
  position: relative;

}

.cta_btn_01 {
  position: absolute;
  left: 20%;
  top: 70%;
  width: 60%;
  transition-duration: .4s;
  margin: 0 auto;
}

.cta_btn_01 img {
  margin: 0 auto;
  animation: beside 2s linear infinite;
  transform-origin: center;
  cursor: pointer;
}

.cta_btn_01 a:hover {
  filter: brightness(1.10);
  /* 明るくする */
}

@keyframes beside {
  0% {
    transform: translate(2px, 0px);
  }

  5% {
    transform: translate(-2px, 0px);
  }

  10% {
    transform: translate(2px, 0px);
  }

  15% {
    transform: translate(-2px, 0px);
  }

  20% {
    transform: translate(2px, 0px);
  }

  25% {
    transform: translate(-2px, 0px);
  }

  30% {
    transform: translate(0px, 0px);
  }
}


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

#plan {
  position: relative;

}

.cta_btn_02 {
  position: absolute;
  left: 20%;
  top: 84%;
  width: 60%;
  transition-duration: .4s;
  margin: 0 auto;
}

.cta_btn_02 img {
  margin: 0 auto;
  animation: beside 2s linear infinite;
  transform-origin: center;
  cursor: pointer;
}

.cta_btn_02 a:hover {
  filter: brightness(1.10);
  /* 明るくする */
}

@keyframes beside {
  0% {
    transform: translate(2px, 0px);
  }

  5% {
    transform: translate(-2px, 0px);
  }

  10% {
    transform: translate(2px, 0px);
  }

  15% {
    transform: translate(-2px, 0px);
  }

  20% {
    transform: translate(2px, 0px);
  }

  25% {
    transform: translate(-2px, 0px);
  }

  30% {
    transform: translate(0px, 0px);
  }
}




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

#last {
  position: relative;

}

.cta_btn_03 {
  position: absolute;
  left: 20%;
  top: 86%;
  width: 60%;
  transition-duration: .4s;
  margin: 0 auto;
}

.cta_btn_03 img {
  margin: 0 auto;
  animation: beside 2s linear infinite;
  transform-origin: center;
  cursor: pointer;
}

.cta_btn_03 a:hover {
  filter: brightness(1.10);
  /* 明るくする */
}

@keyframes beside {
  0% {
    transform: translate(2px, 0px);
  }

  5% {
    transform: translate(-2px, 0px);
  }

  10% {
    transform: translate(2px, 0px);
  }

  15% {
    transform: translate(-2px, 0px);
  }

  20% {
    transform: translate(2px, 0px);
  }

  25% {
    transform: translate(-2px, 0px);
  }

  30% {
    transform: translate(0px, 0px);
  }
}

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

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

}

.accordion_wrap {
  padding: 23% 10% 5% 10%;
  width: 70%;
  margin: 0 auto;
}

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

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

.accordion__btn::before {
  content: '';
  display: inline-block;
  border-radius: 20%;
  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: 20%;
  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;
}

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

a.back_btn.pc{
  display: block;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  width: 20%;
  margin: auto;
  padding: 0.9rem 0;
  font-weight: bold;
  border: 2px solid #20b2aa;
  color: #20b2aa;
  border-radius: 100vh;
  transition: 0.5s;
  font-size: 1.4em;
}

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

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

.footer {
  background-color: #849a99;
  padding: 4em 0em;
  text-align: center;
  font-size: 1.2em;
  color: #fff;
}

.footer a {
  color: #fff;
}