@charset "UTF-8";
/* 文字コードの指定 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
html {
  font-size: 62.5%;
  background-color: #fff;
}

body {
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "メイリオ", Verdana, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.4rem;
  line-height: 1.75;
  color: #000;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

.container {
  max-width: 1366px;
  margin: auto;
  box-sizing: border-box;
}

h2 {
  font-size: 6.5rem;
  margin: 0;
  padding: 0;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  h2 {
    font-size: 2.5rem;
    line-height: 1.3;
  }
}

h3 {
  font-size: 3.4rem;
  margin: 0;
  padding: 0;
  line-height: 1.44;
  font-weight: 400;
}
@media (max-width: 768px) {
  h3 {
    font-size: 1.9rem;
  }
}

h4 {
  font-size: 2.8rem;
  margin: 0;
  padding: 0;
  font-weight: 400;
}
@media (max-width: 768px) {
  h4 {
    font-size: 1.4rem;
  }
}

p {
  font-size: 2.2rem;
  margin: 0;
  padding: 0;
  line-height: 1.45;
  font-weight: 400;
}
@media (max-width: 768px) {
  p {
    font-size: 1.4rem;
    line-height: 1.65;
  }
}

@media screen and (min-width: 599px) {
  .br_pc {
    display: block;
  }
  .br_sp {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .br_pc {
    display: none;
  }
  .br_sp {
    display: block;
  }
}
.green {
  color: #7abb27;
  font-size: 4.6rem;
}
@media (max-width: 768px) {
  .green {
    font-size: 2.3rem;
  }
}

.marker {
  background: linear-gradient(transparent 68%, #fffacd 60%);
}

.marker_bold {
  background: linear-gradient(transparent 68%, #fffacd 60%);
  font-weight: bold;
}

.bold {
  font-weight: bold;
}
@media (max-width: 768px) {
  .bold {
    font-weight: 500;
  }
}

h2 .number_big {
  font-size: 7.5rem;
}
@media (max-width: 768px) {
  h2 .number_big {
    font-size: 3rem;
  }
}

/*まずはお決まりのボックスサイズ算出をborer-boxに */
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%; /*rem算出をしやすくするために*/
}

.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1.5rem 3.5rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}
@media (min-width: 768px) {
  .btn,
a.btn,
button.btn {
    font-size: 3rem;
    padding: 3rem 7rem;
  }
}

.btn--purple,
a.btn--purple {
  color: #ffffff;
  background-color: #F3CD36;
  border-bottom: 4px solid #DBB82E;
}
@media (min-width: 768px) {
  .btn--purple,
a.btn--purple {
    border-bottom: 7px solid #DBB82E;
  }
}

.btn--purple:hover,
a.btn--purple:hover {
  margin-top: 3px;
  color: #ffffff;
  background: #FBCD1A;
  border-bottom: 2px solid #DBB82E;
}

a.btn--radius {
  border-radius: 100vh;
}

.fa-position-left {
  position: absolute;
  top: calc(50% - 0.5em);
  left: 1.8rem;
}
@media (min-width: 768px) {
  .fa-position-left {
    left: 2.8rem;
  }
}

.fa-position-right {
  position: absolute;
  top: calc(50% - 0.5em);
  right: 1.8rem;
}
@media (min-width: 768px) {
  .fa-position-right {
    right: 2.8rem;
  }
}

.header {
  width: 100%;
  top: 0;
  align-items: center;
  position: fixed;
  height: 10rem;
  z-index: 100;
  background-color: transparent;
  transition: all 0.5s;
  display: flex;
  justify-content: space-between;
  /*アクティブクラスがついたら位置を0に*/
  /*ナビゲーションの縦スクロール*/
  /*ナビゲーション*/
  /*リストのレイアウト設定*/
}
.header.change-color {
  background-color: #270d00;
}
@media (max-width: 768px) {
  .header {
    height: 6rem;
  }
}
.header .logo {
  margin: auto 3rem;
}
@media (max-width: 768px) {
  .header .logo {
    margin: auto 0 auto 2rem;
  }
}
.header .pc-nav {
  display: flex;
  align-items: center;
}
@media (max-width: 1712px) {
  .header .pc-nav {
    display: none;
  }
}
.header .pc-nav .pc-nav-list {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}
.header .pc-nav .pc-nav-list li {
  margin: 0 4rem 0 0;
}
.header .pc-nav .pc-nav-list li a {
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
}
.header .pc-nav .pc-nav-list li a:hover {
  opacity: 0.7;
}
.header .pc-nav .pc-contact-button {
  margin-top: -10px;
}
.header .pc-nav .pc-contact-button a {
  background-color: #f3cd36;
  height: 9rem;
  display: flex;
  align-items: center;
  font-size: 2.8rem;
  color: #fff;
  padding: 0 3rem;
  border-radius: 0 0 0 40px;
}
.header .pc-nav .pc-contact-button a.change-color {
  box-shadow: 0 3px 8px #907f19;
}
.header .pc-nav .pc-contact-button a:hover {
  background-color: #FBCD1A;
  opacity: 0.7;
}
.header #g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: 0;
  right: -120%;
  width: 380px;
  height: 600px; /*ナビの高さ*/
  background-color: #270d00;
  border-radius: 0 0 0 40px;
  /*動き*/
  transition: all 0.6s;
}
@media (max-width: 768px) {
  .header #g-nav {
    width: 243px;
    height: 559px;
  }
}
.header #g-nav.panelactive {
  right: 0;
}
.header #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh; /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.header #g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 262px;
  left: 171px;
  transform: translate(-50%, -50%);
  margin: 5rem auto 0rem;
}
@media (max-width: 768px) {
  .header #g-nav ul {
    padding: 0;
    margin: 2rem auto 0rem;
    left: 124px;
  }
}
.header #g-nav li {
  list-style: none;
  text-align: center;
}
.header #g-nav li a {
  color: #ffffff;
  text-decoration: none;
  padding: 20px 24px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
  font-size: 1.8rem;
}
@media (max-width: 768px) {
  .header #g-nav li a {
    font-size: 1.6rem;
    padding: 10px 24px;
    margin: 20px auto;
  }
}
.header .contact_bar {
  background-color: #f3cd36;
  border-radius: 50px;
  margin-top: 15px;
  padding: 20px;
}
.header .openbtn {
  /*ボタン内側の基点となるためrelativeを指定。
  追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
  position: relative;
  background: #f3cd36;
  cursor: pointer;
  width: 90px;
  height: 90px;
  border-radius: 0 0 0 20px;
}
@media (max-width: 768px) {
  .header .openbtn {
    height: 5rem;
    width: 5rem;
    border-radius: 20px 0 0 20px;
  }
}
.header .sp-hum {
  z-index: 9999; /*ボタンを最前面に*/
  /*ボタン内側*/
  /*activeクラスが付与されると線が回転して×になる*/
}
@media (min-width: 1700px) {
  .header .sp-hum {
    display: none;
  }
}
.header .sp-hum .openbtn span {
  display: inline-block;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background: #fff;
}
.header .sp-hum .openbtn span:nth-of-type(1) {
  top: 24px;
  width: 60%;
  left: 21px;
}
@media (max-width: 768px) {
  .header .sp-hum .openbtn span:nth-of-type(1) {
    top: 15px;
    width: 45%;
    left: 16px;
  }
}
.header .sp-hum .openbtn span:nth-of-type(2) {
  top: 41px;
  left: 37px;
  width: 42%;
}
@media (max-width: 768px) {
  .header .sp-hum .openbtn span:nth-of-type(2) {
    top: 23px;
    width: 35%;
    left: 21px;
  }
}
.header .sp-hum .openbtn span:nth-of-type(3) {
  top: 59px;
  left: 48px;
  width: 29%;
}
@media (max-width: 768px) {
  .header .sp-hum .openbtn span:nth-of-type(3) {
    top: 31px;
    width: 20%;
    left: 29px;
  }
}
.header .sp-hum .openbtn.active span:nth-of-type(1) {
  top: 31px;
  left: 18px;
  transform: translateY(6px) rotate(-135deg);
  width: 60%;
}
@media (max-width: 768px) {
  .header .sp-hum .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    width: 30%;
  }
}
.header .sp-hum .openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.header .sp-hum .openbtn.active span:nth-of-type(3) {
  top: 43px;
  left: 18px;
  transform: translateY(-6px) rotate(135deg);
  width: 60%;
}
@media (max-width: 768px) {
  .header .sp-hum .openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    width: 30%;
  }
}

#fv {
  text-align: center;
}
@media (min-width: 1921px) {
  #fv img {
    width: 100%;
  }
}

#go {
  margin-top: -28rem;
  text-align: center;
}
@media (max-width: 1466px) {
  #go {
    margin: -10rem 2rem 0;
  }
}
@media (max-width: 769px) {
  #go {
    margin: -8rem 1.5rem 0;
  }
}
#go .title {
  font-family: vdl-penletter, sans-serif;
  font-weight: 300;
}
@media (max-width: 1366px) {
  #go .title {
    font-size: 5.5rem;
  }
}
@media (max-width: 769px) {
  #go .title {
    font-size: 2.5rem;
  }
}
#go .title::before {
  content: url(../images/line_left.png);
  margin-right: 2rem;
  position: relative;
  top: 0.4rem;
}
@media (max-width: 769px) {
  #go .title::before {
    display: none;
  }
}
#go .title::after {
  content: url(../images/line_right.png);
  margin-left: 2rem;
  position: relative;
  top: 0.4rem;
}
@media (max-width: 769px) {
  #go .title::after {
    display: none;
  }
}
#go .title_sp {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
#go .title_sp .line_left_sp {
  margin: 0 1rem 0 0;
}
@media (min-width: 768px) {
  #go .title_sp .line_left_sp {
    display: none;
  }
}
#go .title_sp .line_right_sp {
  margin: 0 0 0 1rem;
}
@media (min-width: 768px) {
  #go .title_sp .line_right_sp {
    display: none;
  }
}
#go .go_group {
  text-align: left;
  display: flex;
  margin-top: 4rem;
  justify-content: space-between;
}
@media (max-width: 768px) {
  #go .go_group {
    flex-direction: column-reverse;
    justify-content: center;
    margin: 2rem 1rem auto;
  }
}
#go .go_group .go_box {
  width: 46%;
}
#go .go_group .go_box .contact_button {
  text-align: center;
  margin: 7rem auto 0;
}
@media (max-width: 768px) {
  #go .go_group .go_box .contact_button {
    margin-top: 4rem;
  }
}
@media (max-width: 768px) {
  #go .go_group .go_box {
    width: 100%;
    margin-top: 2rem;
  }
}
#go .go_group .go_img {
  width: 46%;
}
@media (max-width: 768px) {
  #go .go_group .go_img {
    width: 80%;
    margin: 0 auto;
    text-align: center;
  }
}

#what {
  margin-top: 12rem;
  text-align: center;
}
@media (max-width: 1366px) {
  #what {
    margin: 12rem 2rem 0;
  }
}
@media (max-width: 769px) {
  #what {
    margin: 6rem 1.5rem 0;
  }
}
#what .title {
  font-family: vdl-penletter, sans-serif;
  font-weight: 300;
}
#what .title::before {
  content: url(../images/line_left.png);
  margin-right: 2rem;
  position: relative;
  top: 0.4rem;
}
@media (max-width: 768px) {
  #what .title::before {
    content: url(../images/line_left_sp.png);
    margin-right: 1.5rem;
  }
}
#what .title::after {
  content: url(../images/line_right.png);
  margin-left: 2rem;
  position: relative;
  top: 0.4rem;
}
@media (max-width: 768px) {
  #what .title::after {
    content: url(../images/line_right_sp.png);
    margin-left: 1.5rem;
  }
}
#what .what_group {
  display: flex;
  margin-top: 4rem;
  justify-content: space-between;
  text-align: left;
}
@media (max-width: 768px) {
  #what .what_group {
    flex-direction: column;
    justify-content: center;
    margin: 2rem 1rem auto;
  }
}
#what .what_group .what_text {
  width: 46%;
}
@media (max-width: 768px) {
  #what .what_group .what_text {
    width: 100%;
    margin-top: 2rem;
  }
}
#what .what_group .what_img {
  width: 46%;
}
@media (max-width: 768px) {
  #what .what_group .what_img {
    width: 80%;
    margin: 0 auto;
    text-align: center;
  }
}

#feature {
  background-image: url("../images/feature_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
  margin: 14.4rem auto -0.7rem;
  padding-bottom: 12rem;
}
@media (max-width: 769px) {
  #feature {
    background-image: url("../images/feature_sp_bg.png");
    margin: 5rem auto 0;
    padding: 0 1.5rem 6rem;
  }
}
#feature .title {
  font-family: vdl-penletter, sans-serif;
  font-weight: 300;
}
@media (max-width: 768px) {
  #feature .title {
    margin-bottom: -0.5rem;
  }
}
#feature .title::before {
  content: url(../images/line_left.png);
  margin-right: 2rem;
  position: relative;
  top: 0.4rem;
}
@media (max-width: 768px) {
  #feature .title::before {
    content: url(../images/line_left_sp.png);
    margin-right: 1.5rem;
  }
}
#feature .title::after {
  content: url(../images/line_right.png);
  margin-left: 2rem;
  position: relative;
  top: 0.4rem;
}
@media (max-width: 768px) {
  #feature .title::after {
    content: url(../images/line_right_sp.png);
    margin-left: 1.5rem;
  }
}
#feature .feature_group {
  background-color: #ffffff;
  border: 3px solid #fff6a2;
  border-radius: 10px;
  display: flex;
  text-align: left;
  align-items: center;
  justify-content: space-between;
  margin-top: 7rem;
}
@media (max-width: 768px) {
  #feature .feature_group {
    margin-top: 2rem;
    flex-direction: column;
    justify-content: center;
  }
}
#feature .feature_subtitle {
  display: flex;
  align-items: center;
  text-align: center;
}
@media (max-width: 1366px) {
  #feature .feature_subtitle {
    width: 50%;
  }
}
@media (max-width: 768px) {
  #feature .feature_subtitle {
    width: 100%;
    margin-top: 2.5rem;
    justify-content: center;
  }
}
#feature .feature_subtitle img {
  margin: auto 1.4rem auto 6.8rem;
}
@media (max-width: 768px) {
  #feature .feature_subtitle img {
    margin: auto 1.3rem auto auto;
  }
}
#feature .feature_subtitle h3 {
  width: 476px;
}
@media (max-width: 1366px) {
  #feature .feature_subtitle h3 {
    width: 100%;
    margin-right: 2rem;
  }
}
#feature .feature_subtitle .fe1 {
  width: 441px;
}
@media (max-width: 1366px) {
  #feature .feature_subtitle .fe1 {
    width: 100%;
    margin-right: 2rem;
  }
}
@media (max-width: 768px) {
  #feature .feature_subtitle .fe1 {
    width: 163px;
    margin: auto 0;
  }
}
@media (max-width: 768px) {
  #feature .feature_subtitle .fe2 {
    width: 247px;
    margin: auto 0;
  }
}
@media (max-width: 768px) {
  #feature .feature_subtitle .fe3 {
    width: 228px;
    margin: auto 0;
  }
}
#feature .feature_box {
  display: flex;
  align-items: center;
}
@media (max-width: 1366px) {
  #feature .feature_box {
    width: 50%;
  }
}
@media (max-width: 768px) {
  #feature .feature_box {
    width: 100%;
    flex-direction: column;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  #feature .feature_box picture {
    margin-top: -0.5rem;
  }
}
#feature .feature_text {
  margin: 5rem;
  width: 600px;
}
@media (max-width: 1366px) {
  #feature .feature_text {
    width: 100%;
  }
}
@media (max-width: 768px) {
  #feature .feature_text {
    width: 90%;
    margin: 1rem auto 2.5rem;
  }
}

#recommend .title {
  font-family: vdl-penletter, sans-serif;
  font-weight: 300;
  margin: 9rem 2rem 0;
}
@media (max-width: 1100px) {
  #recommend .title {
    font-size: 5rem;
  }
}
@media (max-width: 769px) {
  #recommend .title {
    font-size: 3rem;
    margin: 4rem 0 0;
  }
}
#recommend .title::before {
  content: url(../images/line_left.png);
  margin-right: 2rem;
  position: relative;
  top: 0.4rem;
}
@media (max-width: 769px) {
  #recommend .title::before {
    display: none;
  }
}
#recommend .title::after {
  content: url(../images/line_right.png);
  margin-left: 2rem;
  position: relative;
  top: 0.4rem;
}
@media (max-width: 769px) {
  #recommend .title::after {
    display: none;
  }
}
#recommend .title_sp {
  transform: rotate(-3deg);
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
@media (max-width: 768px) {
  #recommend .title_sp {
    text-align: center;
  }
}
#recommend .title_sp .line_left_sp {
  margin: 0 1rem 0 0;
}
@media (min-width: 768px) {
  #recommend .title_sp .line_left_sp {
    display: none;
  }
}
#recommend .title_sp .line_right_sp {
  margin: 0 0 0 1rem;
}
@media (min-width: 768px) {
  #recommend .title_sp .line_right_sp {
    display: none;
  }
}
#recommend .recommend_img {
  text-align: right;
  margin: auto 2rem;
}
@media (max-width: 768px) {
  #recommend .recommend_img {
    text-align: center;
    margin: 1rem auto;
    width: 70%;
  }
}
#recommend .recommend_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: left;
  margin-top: 2.8rem;
}
@media (max-width: 768px) {
  #recommend .recommend_box {
    margin-top: 0.8rem;
  }
}
#recommend .item1 {
  width: 33%;
  border-radius: 10px;
  font-size: 2.8rem;
  line-height: 1.44;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 130px;
  margin: 4px auto;
  background-color: #fffacd;
}
@media (max-width: 1260px) {
  #recommend .item1 {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  #recommend .item1 {
    width: 49.5%;
    height: 65px;
    font-size: 1.4rem;
    margin: 2px auto;
  }
}
#recommend .item2 {
  width: 33%;
  border-radius: 10px;
  font-size: 2.8rem;
  line-height: 1.44;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 130px;
  margin: 4px auto;
  background-color: #f5deb3;
}
@media (max-width: 1260px) {
  #recommend .item2 {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  #recommend .item2 {
    width: 49.5%;
    height: 65px;
    font-size: 1.4rem;
    margin: 2px auto;
  }
}
#recommend .item3 {
  font-size: 2.6rem;
}
@media (max-width: 768px) {
  #recommend .item3 {
    font-size: 1.3rem;
  }
}
@media (max-width: 768px) {
  #recommend .item1_sp {
    background-color: #f5deb3;
  }
}
@media (max-width: 768px) {
  #recommend .item2_sp {
    background-color: #fffacd;
  }
}
#recommend .method {
  background-image: url("../images/method.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 3rem 0rem 17rem;
  margin-top: 14rem;
  text-align: center;
}
@media (max-width: 768px) {
  #recommend .method {
    background-image: url("../images/method_sp2.png");
    padding: 7rem 0 8rem;
    margin-top: 4rem;
  }
}
#recommend .method_title {
  font-family: vdl-penletter, sans-serif;
  font-weight: 300;
  padding-top: 7rem;
  font-size: 7.4rem;
  color: #ffffff;
}
@media (max-width: 1020px) {
  #recommend .method_title {
    font-size: 5rem;
  }
}
@media (max-width: 768px) {
  #recommend .method_title {
    font-size: 2.8rem;
    padding-top: 0;
  }
}
#recommend .method_subtitle {
  font-family: vdl-penletter, sans-serif;
  font-weight: 300;
  padding-top: 1.5rem;
  font-size: 3.4rem;
  color: #ffffff;
}
@media (max-width: 768px) {
  #recommend .method_subtitle {
    font-size: 1.7rem;
  }
}
#recommend .method_box {
  display: inline-block;
  margin: 5rem 2rem 0;
  text-align: left;
}
@media (max-width: 768px) {
  #recommend .method_box {
    margin: 0.5rem auto 0;
  }
}
#recommend .method_content {
  display: flex;
  margin: 1.5rem auto;
  align-items: center;
}
#recommend .method_content .method_text {
  color: #ffffff;
  margin-left: 1rem;
}
#recommend .contact_button {
  margin-top: 9.3rem;
  text-align: center;
}
@media (max-width: 768px) {
  #recommend .contact_button {
    margin: 6rem 2.5rem 0;
  }
}

#question {
  background-image: url("../images/question_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-bottom: 10rem;
  text-align: center;
  margin-top: 14rem;
}
@media (max-width: 769px) {
  #question {
    background-image: url("../images/question_sp_bg.png");
    margin: 7rem auto 0;
    padding: 0 1.5rem 6rem;
  }
}
#question .title {
  font-family: vdl-penletter, sans-serif;
  font-weight: 300;
  margin: 2rem auto;
}
#question .title::before {
  content: url(../images/line_left.png);
  margin-right: 2rem;
  position: relative;
  top: 0.4rem;
}
@media (max-width: 768px) {
  #question .title::before {
    content: url(../images/line_left_sp.png);
    margin-right: 1.5rem;
  }
}
#question .title::after {
  content: url(../images/line_right.png);
  margin-left: 2rem;
  position: relative;
  top: 0.4rem;
}
@media (max-width: 768px) {
  #question .title::after {
    content: url(../images/line_right_sp.png);
    margin-left: 1.5rem;
  }
}
#question .qa {
  margin: auto 6.8rem;
  text-align: left;
  padding: 2.6rem 0;
  border-bottom: 2px dashed #d1c344;
}
@media (max-width: 768px) {
  #question .qa {
    margin: auto 0;
  }
}
#question .qa_last {
  margin: auto 6.8rem;
  text-align: left;
  padding: 2.6rem 0;
}
@media (max-width: 768px) {
  #question .qa_last {
    margin: auto 0;
  }
}
#question .q_group {
  display: flex;
  color: #7a2c06;
}
#question .q_group .q {
  font-size: 3rem;
  font-family: vdl-penletter, sans-serif;
  font-weight: 300;
}
@media (max-width: 768px) {
  #question .q_group .q {
    font-size: 2rem;
  }
}
#question .q_group .q_text {
  font-size: 2.4rem;
  margin: 0.3rem auto 0 2rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  #question .q_group .q_text {
    font-size: 1.5rem;
    margin: 0.5rem auto 0 0.7rem;
  }
}
#question .a_group {
  display: flex;
  margin-top: 0.5rem;
}
#question .a_group .a {
  font-size: 3rem;
  font-family: vdl-penletter, sans-serif;
  font-weight: 300;
}
@media (max-width: 768px) {
  #question .a_group .a {
    font-size: 2rem;
  }
}
#question .a_group .a_text {
  font-size: 2.2rem;
  margin: 0.3rem auto 0 2rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  #question .a_group .a_text {
    font-size: 1.4rem;
    line-height: 1.65;
    margin: 0.5rem auto 0 0.7rem;
  }
}
#question .a_group .a_subtext {
  font-size: 1.8rem;
  font-weight: 300;
}
@media (max-width: 768px) {
  #question .a_group .a_subtext {
    font-size: 1.3rem;
  }
}

#start .title {
  font-family: vdl-penletter, sans-serif;
  font-weight: 300;
  margin: 9rem 2rem 0;
  text-align: right;
}
@media (max-width: 1100px) {
  #start .title {
    font-size: 5rem;
  }
}
@media (max-width: 769px) {
  #start .title {
    font-size: 3rem;
    margin: 4rem 1rem 0;
    text-align: center;
  }
}
#start .title::before {
  content: url(../images/line_left.png);
  margin-right: 2rem;
  position: relative;
  top: 0.4rem;
}
@media (max-width: 769px) {
  #start .title::before {
    display: none;
  }
}
#start .title::after {
  content: url(../images/line_right.png);
  margin-left: 2rem;
  position: relative;
  top: 0.4rem;
}
@media (max-width: 769px) {
  #start .title::after {
    display: none;
  }
}
#start .title_sp {
  transform: rotate(3deg);
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
@media (max-width: 768px) {
  #start .title_sp {
    text-align: center;
  }
}
#start .title_sp .line_left_sp {
  margin: 0 1rem 0 0;
}
@media (min-width: 768px) {
  #start .title_sp .line_left_sp {
    display: none;
  }
}
#start .title_sp .line_right_sp {
  margin: 0 0 0 1rem;
}
@media (min-width: 768px) {
  #start .title_sp .line_right_sp {
    display: none;
  }
}
#start .recommend_img {
  text-align: left;
  margin: auto 2rem;
}
@media (max-width: 768px) {
  #start .recommend_img {
    text-align: center;
    margin: 1rem auto;
    width: 70%;
  }
}
#start .start_text {
  padding: 19rem 4.5% 9rem;
  border: 3px solid #fff6a2;
  background-color: #f8f8f8;
  border-radius: 3px;
  margin: -12rem 2rem 0;
}
@media (max-width: 768px) {
  #start .start_text {
    padding: 2rem 1rem;
    margin: 2rem 1rem;
    border: 1.5px solid #fff6a2;
  }
}
#start .contact_button {
  margin-top: 9.3rem;
  text-align: center;
}
@media (max-width: 768px) {
  #start .contact_button {
    margin: 6rem 2.5rem 0;
  }
}

.footer {
  background-color: #270D00;
  margin-top: 14rem;
  text-align: center;
}
@media (max-width: 768px) {
  .footer {
    margin-top: 6rem;
  }
}
.footer .footer-info {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  justify-content: center;
  padding-top: 6rem;
  margin-left: 5rem;
}
@media (max-width: 768px) {
  .footer .footer-info {
    flex-direction: column;
    margin: auto;
    padding-top: 3rem;
  }
}
@media (max-width: 768px) {
  .footer .footer-info li {
    margin: 1.5rem auto;
  }
}
.footer .footer-info a {
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  margin: auto 3.6rem;
}
@media (max-width: 768px) {
  .footer .footer-info a {
    font-size: 1.3rem;
    font-weight: 400;
  }
}
.footer .copyright {
  color: #ffffff;
  padding: 3rem 0;
}
@media (max-width: 768px) {
  .footer .copyright {
    padding: 2rem 0 1rem;
  }
}

#splash {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background-color: #270d00;
  text-align: center;
  color: #fff;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width: 260px;
}

/* fadeUpをするアイコンの動き */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*# sourceMappingURL=style.css.map */
