@charset "utf-8";

/* ===================
common
===================== */
html {
  font-size: 62.5%;
}

body {
  font-family:
    "Noto Serif JP",
    serif;
  font-style: normal;
  color: #2B2B2B;
  background-color: #FAFAFA;
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
}

.section__topic {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.44;
  text-align: center;
}

.nav_item {
  transition: 0.1s;
}


.brPC {
  display: none;
}


/* ==PC== */

@media screen and (min-width:769px) {
  .brPC {
    display: initial;
  }

  .brSP {
    display: none;
  }

  .section__topic {
    font-size: 5.6rem;
    font-style: normal;
  }

  /*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
  .scroll_up {
    transition: 0.8s ease-in-out;
    transform: translateY(30px);
    opacity: 0;
  }

  .scroll_up.on {
    transform: translateY(0);
    opacity: 1.0;
  }

  /*----------------------------
scroll_left ｜左から出現
----------------------------*/
  .scroll_left {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    transform: translateX(-30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
  }

  .scroll_left.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
  }

  /*----------------------------
scroll_right ｜右から出現
----------------------------*/
  .scroll_right {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    transform: translateX(30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
  }

  .scroll_right.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
  }

}

/* ===================
header
===================== */
.header {
  padding: 8px 1.6%;
}

.header__logoSP img {
  width: 96px;
  height: 29px;
}

.header__logoPC {
  display: none;
}

.nav {
  background: rgba(24, 60, 5, 0.85);
  width: 100%;
  height: 100vh;
  padding-top: 11px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  transform: translateX(-100%);
  transition: transform 0.4s;
  text-align: center;
}

.nav.active {
  transform: translateX(0);
}

.nav__header {
  width: 21px;
  height: 20px;
  position: absolute;
  right: 3.7%;
}

.nav__list {
  margin-top: 190px;
}

.nav_item {
  margin-top: 40px;
  color: #FAFAFA;
  font-family: "Noto Serif";
  font-size: 2.5rem;
  font-weight: 300;
  font-style: normal;
  line-height: normal;
}

.nav_item:hover {
  opacity: 0.6;
}

.header__btn {
  display: block;
  width: 21px;
  height: 20px;
  position: absolute;
  top: 13px;
  right: 2.6%;
  cursor: pointer;
}

/* ==PC== */

@media screen and (min-width:769px) {

  .header {
    display: flex;
    justify-content: space-between;
    padding: 17px 6.1% 0;
    position: absolute;
    width: 100%;
  }

  .header__logoPC {
    display: block;
    width: 180px;
    height: 52px;
    margin: 10px;
  }

  .header__logoSP {
    display: none;
  }

  .nav {
    background: rgba(24, 60, 5, 0);
    transform: translateX(0);
    width: initial;
    height: initial;
    padding-top: 11px;
    position: initial;
  }

  .nav__btn {
    display: none;
  }

  .nav__list {
    display: flex;
    gap: 40px;
    margin-top: 0;
  }

  .nav_item {
    margin: 0;
    position: relative;
  }


  .nav_item::after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: 0;
    left: 0%;
    /*線の形状*/
    width: 100%;
    height: 2px;
    background: #fafafa;
    /*アニメーションの指定*/
    transition: all .3s;
    transform: scale(0, 1);
    /*X方向0、Y方向1*/
    transform-origin: center top;
    /*上部中央基点*/
  }

  /*現在地とhoverの設定*/
  .nav_item:hover::after {
    transform: scale(1, 1);
    /*X方向にスケール拡大*/
  }

}

/* ===================
main
===================== */
.mainImg .mainImg__PC {
  display: none;
}


.mainTopics {
  padding: 56px 2.6%;
}

.mainTopics__txt {
  text-align: center;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
  /* 28px */
}

.main__btn {
  background: #213C05;
  margin: 56px auto 0;
  display: flex;
  width: 315px;
  height: 57px;
  padding: 18px 6px;
  border-radius: 14px;
  color: #FFF;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.44;
  position: relative;
  align-items: center;
}

/* 初回限定 */
.main__btn::before {
  content: "";
  display: block;
  background-image: url(../images/syokaigenteigreen.png);
  width: 37px;
  height: 37px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 10px;
}

.main__btn::after {
  display: block;
  content: '';
  width: 13px;
  height: 18px;
  background-image: url(../images/Polygon\ 1.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  right: 9px;
  transform: translateY(-50%);
}

.main__btn:hover {
  opacity: 0.6;
  transition: 0.5s;
}

/* PC--------------- */
@media screen and (min-width:769px) {
  .mainImg .mainImg__PC {
    display: block;
  }

  .mainImg .mainImg__SP {
    display: none;
  }

  .header__btn {
    display: none;
  }

  .mainTopics__txt {
    color: #000;
    font-size: 14px;
    font-weight: 500;
    line-height: 2;
    /* 28px */
    font-size: 2.2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 56px;
    /* 254.545% */
  }


  .main__btn {
    margin: 160px auto;
    width: 554px;
    height: 99px;
    padding: 18px 16px;

    font-size: 3.3rem;
    font-style: normal;
    font-weight: 900;
  }

  .main__btn::before {
    background-image: url(../images/syokaigenteiPC.svg);
    width: 82px;
    height: 82px;
    margin-right: 20px;
  }

  .main__btn::after {
    width: 20px;
    height: 26px;
    background-image: url(../images/syokaigenteiPCvector.svg);
    top: 52%;
    right: 26px;
  }

  .main__btn:hover {
    transform: 0.1s;
  }

}


/* ===================
reason
===================== */

.section--reason {
  background-color: #F1E7D4;
  padding: 56px 0;
}

.reason {
  color: #7A4F1E;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.44;
  margin: 0 16.4% 56px;
}

.point {
  margin-top: 56px;
}

.point__img {
  display: none;
}

.point__column {
  margin: 0 2.6%;
}

.point__title {
  color: #E1D3AF;
  font-family: Courgette;
  font-size: 5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25;
  /* 62.559px */
}

.point__title--number {
  font-size: 80px;
}

.point__name {
  margin-top: 20px;
  color: #3C2A15;
  font-size: 2rem;
  font-weight: 700;
  line-height: 144%;
  /* 28.767px */
}

.point__txt {
  margin-top: 16px;
  color: #3C2A15;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2;
  /* 28px */
}

/* PC--------------- */
@media screen and (min-width:769px) {
  .section--reason {
    padding: 80px 3% 220px;
  }

  .section__topic,
  .reason {
    font-size: 5.6rem;
    font-weight: 700;
    /* 80.548px */
  }

  .reasonPC {
    font-size: 90px;
  }

  .point__imgSP {
    display: none;
  }

  .point__img {
    display: block;
    width: 52.6%;
    height: auto;
  }

  .point__title {
    font-size: 70px;
  }

  .point__title--number {
    font-size: 100px;
  }

  .point__column {
    /* 100%-(664+余白83) */
    width: 40%;
    margin: 0;
  }

  .point__name {
    margin-top: 60px;
    font-size: 2.6rem;
  }

  .point__txt {
    margin-top: 29px;
    font-size: 16px;
  }

  .pointOne {
    width: 1308px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    margin-top: 160px;
    flex-wrap: wrap;
    align-items: center;
  }

  .poinTwo {
    width: 1308px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    margin-top: 160px;
    flex-wrap: wrap;
    align-items: center;

  }

  .poinThree {
    width: 1308px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    margin-top: 160px;
    flex-wrap: wrap;
    align-items: center;

  }
}


/* ===================
Trial
===================== */

.section--Trial {
  padding-top: 64px;
  padding-bottom: 64px;

  background-image: url(../images/TrialBackgroundSP.png);
  background-size: cover;

  background-repeat: no-repeat;
}

.sub__title {
  color: #FFF;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2;
  text-align: center;
  /* 28px */
}

.topicTrial {
  color: #FFF;
  margin: 16px 20.1% 0;
}

.Trial__menu__li {
  padding: 20px 0px;
  justify-content: center;
  margin: 0 18.2%;
}

.Trial__label {
  display: flex;
  gap: 9px;
}

.Trial__store {
  color: #183C05;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.44;
  border-radius: 10px;
  background: #FFF;
  padding: 2px 4px;
}

.Trial__place {
  color: #FFF;
  font-size: 1.4rem;
  font-weight: 500;
}

.Trial__img {
  margin-top: 6px;
}

.trial__name {
  margin-top: 6px;
  color: #FFF;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.44;
  /* 28.767px */
}

.Trial__price__number {
  display: inline-block;
  padding-right: 7px;
  color: #F70;
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1.44;
}

.Trial__price__yen {
  color: #FFF;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.44;
  padding-right: 14px;
}

.Trial__price {
  color: #FFF;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2;
}

.Trial__btn {
  background-color: #FAFAFA;
  color: #13460C;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 900;
  display: flex;
  padding: 8px 56px 8px 8px;
  border-radius: 14px;
  width: 296px;
  height: 64px;
  margin: 16px auto 0;
  position: relative
}

.Trial__btn::before {
  content: "";
  display: block;
  background-image: url(../images/syokaigentei.svg);
  width: 48px;
  height: 48px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 8px;

}

.Trial__btn::after {
  display: block;
  content: '';
  width: 14px;
  height: 19px;
  background-image: url(../images/trialvector.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
}



/* PC--------------- */
@media screen and (min-width:769px) {
  .section--Trial {
    padding: 100px 9%;
    background-image: url(../images/TrialBackgroundPC.png);
  }

  .sub__title {
    font-size: 2rem;
    font-weight: 500;
    line-height: 2;
    text-align: center;
    margin: 0 auto;
  }

  .topicTrial {
    color: #FFF;
    margin: 2px auto 0;
    text-align: center;
  }

  .Trial__menu {
    display: flex;
    margin: 86px auto 0px;
    width: 100%;
    max-width: 1167px;
    gap: 77px;
  }

  .Trial__menu__li {
    margin: 0;
  }

  .Trial__label {
    justify-content: space-between;
  }

  .Trial__store {
    font-size: 26px;
  }

  .Trial__place {
    font-size: 18px;
  }

  .Trial__img {
    margin: 20px 0;
  }

  .trial__name {
    font-size: 3rem;
  }

  .Trial__price__number {
    font-size: 4.6rem;
  }

  .Trial__price__yen {
    font-size: 2em;
  }

  .Trial__price {
    font-size: 1.6rem;
  }

  .Trial__btn {
    width: 554px;
    height: 113px;
    margin-top: 91px;
    font-size: 3.3rem;
    font-weight: 900;
    padding: 18px 16px;
    transition: 0.5s;
  }

  .Trial__btn::before {
    content: "";
    display: block;
    background-image: url(../images/syokaigentei.svg);
    width: 82px;
    height: 82px;
    margin-right: 20px;

  }

  .Trial__btn::after {
    width: 20px;
    height: 27px;
    background-image: url(../images/trialvector.svg);
    top: 52%;
    right: 27px;
  }

  .Trial__btn:hover {
    background-color: #B8B8B8;
  }




}

/* =======================================
Advantage
========================================== */

.section--Advantage {
  margin: 0 0 200px;
  background-image: url(../images/merit.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.Advantage__one {

  margin: 0 5.3%;
  padding: 104px 8px 0;
}

.Advantage__title {
  color: #000;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.44;
  /* 40.274px */
}

.Advantage__column {
  margin-top: 16px;
  color: #000;

  /* sp中タイトル */
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.44;
  /* 28.767px */
}

.Advantage__txt {
  margin-top: 12px;
  color: #000;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2;
}

.Advantage__two {
  margin: 190px 5.3% 0;
  padding: 0 8px;
}

/* PC--------------- */
@media screen and (min-width:769px) {
  .section--Advantage {
    margin: 0;
    background-image: none;
    background: #FAFAFA;
    padding: 172px 9.7% 265px;
    position: relative;
  }

  .Advantege__flame {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
  }

  .Advantage__title {
    position: relative;
    color: #13460C;
    font-size: 5.6rem;
    font-weight: 700;
  }

  .Advantage__column {
    position: relative;
    margin-top: 26px;
    font-size: 2.6rem;
  }

  .Advantage__txt {
    position: relative;
    margin-top: 40px;
    font-size: 1.6rem;
  }

  .Advantage__one {
    width: 667px;
  }

  .Advantage__two {
    margin: 0 0 0 auto;
    margin-top: 175px;
    width: 667px;
  }

  .Advantage__one::before {
    content: '';
    display: flex;
    width: 540px;
    height: 740px;
    position: absolute;
    right: 0;
    background-image: url(../images/tomatoBG\ 1.png);
    background-size: cover;
    background-repeat: no-repeat;
    top: 8%;
  }

  .Advantage__two::before {
    content: '';
    display: flex;
    width: 540px;
    height: 740px;
    position: absolute;
    left: 0;
    background-image: url(../images/kyuuri\ 1.png);
    background-size: cover;
    background-repeat: no-repeat;
    top: 50%;
  }

}



/* =======================================
difference
========================================== */
.difference__imgPC {
  display: none;
}

.difference {
  margin-top: 86px;

}

.difference__imgSP {
  padding: 60px 8.2% 128px;
}

/* PC--------------- */
@media screen and (min-width:769px) {
  .section--difference {

    padding: 0 15% 112px;
  }

  .difference__imgPC {
    display: block;

  }

  .difference {
    margin: 86px auto 162px;

  }


  .difference__imgSP {
    display: none;
  }

}


/* =======================================
Farmars
========================================== */

.section--Farmars {
  margin: 18px 3.7% 0;
  padding-bottom: 60px;
}


.subtitle__farmars {
  color: #000;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2;
  text-align: center;
}

.Farmars__item {
  margin-top: 80px;
  padding: 0 4.2%;
}

.Farmars__name {
  color: #000;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.44;
}

.Farmars__place {
  margin-top: 10px;
  color: #000;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2;
  /* 28px */
}

.Farmars__txt {
  color: #000;

  /* sp小文章 */
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2;
  /* 28px */
}

.farmars__img {
  margin-top: 10px;
}

/* PC--------------- */
@media screen and (min-width:769px) {
  .section--Farmars {
    padding: 100px 0 120px;
    margin: 0 auto;
  }

  .subtitle__farmars {
    font-size: 1.6rem;
  }

  .Farmar {
    margin-top: 19px;
  }

  .Farmars {
    display: flex;
    margin: 59px auto 0;
    gap: 18px;
    width: 100%;
    max-width: 1268px;
  }

  .Farmars__item {
    margin: 40px 35px 0;
    padding: 0;
  }

  .Farmars__name {
    font-size: 2.6rem;
  }

  .Farmars__place {
    margin-top: 21px;
    font-size: 1.6rem;
  }

  .Farmars__txt {
    margin-top: 21px;
    font-size: 1.6rem;
  }

  .farmars__img {
    margin-top: 21px;
    max-width: 555px;
    max-height: 312px;
  }
}


/* =======================================
 Voice
========================================== */

.section--Voice {
  background: #F1E7D4;
  padding: 60px 0 60px;
}

.subtitle__voice {
  color: #3C2A15;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2;
  text-align: center;
}

.Voice {
  color: #7A4F1E;
}

.Voice__list {
  display: flex;
  width: 100%;
  max-width: 769px;
  padding: 24px 24px 0;
  margin: 0 auto;
}

.slick-slide.Voice__item {
  height: 428px;
  padding: 24px 30px;
  margin: 0 16px;
  border-radius: 20px;
  background: #FFF;
}

.Voice__block {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.icon {
  width: 70px;
  height: 70px;
  max-width: none;
}

.Voice__column {
  display: flex;
  width: calc(100% - 85px);
  color: #000;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.44;
  align-items: center;
}

.user {
  margin-top: 15px;
  color: #000;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2;
  /* 28px */
}

.Voice__txt {
  margin-top: 15px;
  color: #000;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2;
  /* 28px */
}

/* スライダー */
.slick-dots {
  position: static;
}



/* PC--------------- */
@media screen and (min-width:1167px) {


  .section--Voice {
    background: #F1E7D4;
    padding: 160px 5.8%;
  }

  .Voice__list {
    margin-top: 38px;
    max-width: 1264px;
    width: 100%;
    gap: 44px;
    margin: 0 auto;
    padding: 58px 0 0;
  }

  .Voice__item {
    background: #FFF;
    padding: 18px 18px;
    width: 392px;
    height: 480px;
  }

  .icon {
    max-width: 100px;
    max-height: 100px;
  }

  .Voice__block {
    flex-wrap: nowrap;
    align-items: center;
  }

  .Voice__column {
    font-size: 2.4rem;
  }

  .user,
  .Voice__txt {
    font-size: 1.6rem;
  }


}


/* =======================================
 Question
========================================== */

.section--Question {
  margin: 60px 2.1% 61px;
}

.Question__item {
  padding: 0 16px;
}

.Question__q {
  margin-top: 55px;
  cursor: pointer;
  display: flex;
  padding-right: 55px;
  padding: 0 55px 8px 48px;
  /* ドット下線部 */
  background-image: linear-gradient(to right, #000 2px, transparent 2px);
  background-size: 8px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;

}

.Q {
  color: #FFF;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 34px;
  /* 円の真ん中に文字を置くときは、heightと同じ高さにする  */
  width: 34px;
  height: 34px;
  background-color: #183C05;
  border-radius: 50%;
  position: absolute;
  left: 25px;
  text-align: center;
}

.Q__title__txt {
  color: #000;
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.44;
  /* 28.767px */
}

.pulus {
  width: 22px;
  height: 22px;
  position: absolute;
  right: 6.6%;
  /* display: none; */
  transform: rotate(0deg);
  transition-duration: 0.8s;
}

.minus {
  width: 22px;
  height: 22px;
  position: absolute;
  right: 6.6%;
  display: none;
  transform: rotate(0deg);
  transition-duration: 0.8s;
}



.Question__answer {
  margin-top: 30px;
  display: none;
  /* transition-duration: 0.2s; */
}

.open {
  display: flex;
  opacity: 1;
  /* transform: rotate(360deg); */
  animation: rotation .5s linear forwards;
  animation-timing-function: ease;
}

.close {
  /* transform: rotate(360deg); */
  animation: closeRotation .5s linear forwards;
  animation-timing-function: ease;
}

.animation {
  /* transform: rotate(360deg); */
  animation: closeRotation .5s linear forwards;
  animation-timing-function: ease;
}

@keyframes rotation {
  0% {
    display: none;
    transform: rotate(0deg);
    opacity: 0;
  }

  1% {
    display: block;
    transform: rotate(180deg);
    opacity: 0;
  }

  100% {
    display: block;
    transform: rotate(180deg);
    opacity: 1;
  }
}

@keyframes closeRotation {
  0% {
    display: block;
    transform: rotate(0deg);
    opacity: 1;
  }

  99% {
    display: block;
    transform: rotate(180deg);
    opacity: 0;
  }

  100% {
    transform: rotate(180deg);
    display: none;
    opacity: 0;
  }
}

.Answer {
  position: absolute;
  color: #7A4F1E;
  font-size: 2rem;
  font-weight: 700;
  line-height: 34px;
  /* 円の真ん中に文字を置くときは、heightと同じ高さにする  */
  width: 34px;
  height: 34px;
  background-color: #F1E7D4;
  border-radius: 50%;
  text-align: center;
}

.Answer__box {
  padding: 0 44px 0 48px;

}

.Answer__title {
  color: #000;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.44;
  /* 28.767px */
}

.Answer__txt {
  margin-top: 6px;
  color: #000;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2;
}

/* PC--------------- */
@media screen and (min-width:769px) {
  .section--Question {
    margin: 0 5.7% 120px;
  }

  .Question {
    margin: 160px 0 0 0;
  }


  .Question__item {
    border: 1px solid #000;
    padding: 30px 0;
    max-width: 1268px;
    width: 100%;
    margin: 40px auto;
    position: relative;
  }


  .Questions li:nth-child(2) {
    margin-top: 49px;
  }

  .Q__box {
    padding: 0 30px 0 0;
  }



  .Q {
    font-size: 2.6rem;
    width: 62px;
    height: 62px;
    line-height: 56px;
    top: 24px;
  }

  .Question__q {
    width: 63.7%;
    padding: 0 30px 18px 0;
    margin: 0 11.9%;
  }

  .Q__title__txt {
    font-size: 2.6rem;
  }

  .pulus {
    right: 3.7%;
  }

  .minus {
    right: 3.7%;
  }


  .Answer {
    font-size: 2.6rem;
    width: 62px;
    height: 62px;
    line-height: 56px;
    left: 2%;
  }

  .Answer__box {
    width: 63.7%;
    padding: 0;
    margin: 0 11.9%;
  }

  .Question__answer {
    text-align: start;
    position: relative;
  }

  .Answer__title {
    font-size: 2.6rem;
  }

  .Answer__txt {
    font-size: 1.6rem;
  }



}




/* =======================================
 Footer
========================================== */

.banner {
  display: none;
}

.footer__logo {
  display: block;
  margin: 10px auto;
  width: 78px;
  height: 23px;
}

.copy {
  color: #000;
  font-family: Inter;
  font-weight: 400;
  margin-bottom: 4px;
  text-align: center;
}

#page-top {
  display: none;
}


/* PC--------------- */
@media screen and (min-width:769px) {
  .banner {
    display: block;
    position: fixed;
    width: 736px;
    height: 119px;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
  }

  #footer-banner {
    transition: 0.5s;
    opacity: 1;
  }

  #footer-banner:hover{
    opacity: 0.9;
  }


  #footer-banner.is-active {
    opacity: 0;
    bottom: 0px;
  }

  .footer {
    padding: 40px 6.1%;
    display: flex;
    justify-content: space-between;

  }

  .footer__logo {
    width: 240px;
    height: 71px;
    margin: 0;
  }

  .copy {
    font-size: 1.4rem;
    display: flex;
    align-items: flex-end;
    margin: 0;
  }

  /* TOPへ */
  #page-top a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    text-align: center;
    text-decoration: none;
    font-size: 0.6rem;
    transition: all 0.3s;
  }

  #page-top a:hover {
    opacity: 0.6;
  }

  /*リンクを右下に固定*/
  #page-top {
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 2;
    animation: DownAnime 0.5s forwards;
    /*はじめは非表示*/
    /* opacity: 0;
    transform: translateY(100px); */
  }

  /*　上に上がる動き　*/

  #page-top.UpMove {
    display: block;
    animation: UpAnime 0.5s forwards;
  }

  @keyframes UpAnime {
    from {
      opacity: 0;
      transform: translateY(100px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /*　下に下がる動き　*/

  #page-top.DownMove {
    display: block;
    animation: DownAnime 0.5s forwards;
  }

  @keyframes DownAnime {
    from {
      opacity: 1;
      transform: translateY(0);
    }

    to {
      opacity: 0;
      transform: translateY(100px);
    }
  }



}