@charset "UTF-8";
html {
  font-size: 16px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.hamburger {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9000;
  width: 48px;
  height: 48px;
  background-color: #FED966;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  cursor: pointer;
}

.hamburger__wrap {
  width: 18px;
  height: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hamburger span {
  position: absolute;
  left: 0;
  background-color: #4E301B;
  width: 18px;
  height: 2px;
  display: inline-block;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 5px;
}

.hamburger span:nth-child(3) {
  top: 10.5px;
}

.hamburger.is-active span:nth-child(1) {
  top: 5px;
  transform: rotate(-135deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  top: 5px;
  transform: rotate(135deg);
}

.drawer-menu {
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(1px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5000;
  display: none;
}

.drawer-menu__inner {
  width: 100%;
  display: flex;
  align-items: center;
  height: inherit;
  flex-direction: column;
}

.drawer-name__logo {
  width: 100%;
  margin-top: 60px;
}

.drawer-name__icon {
  width: 55px;
  height: 55px;
  margin-left: auto;
  margin-right: auto;
}

.drawer-name__name {
  width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.drawer-menu__items {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 36px;
}

.drawer-menu__item {
  display: inline-block;
}

.drawer-menu__link {
  font-size: 16px;
  font-weight: 700;
  color: #4E301B;
  display: inline-block;
  text-align: center;
  margin-bottom: 16px;
}

.mv {
  width: 100%;
  height: 100vh;
  background-image: url(../images/mv-img.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .mv {
    background-image: url(../images/mv-sp-img.jpg);
  }
}

.mv__inner {
  width: 100%;
  height: 100vh;
  max-width: 990px;
  padding-left: 25px;
  padding-right: 25px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .mv__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.mv__text-wrap {
  position: absolute;
  top: 13%;
  right: 0;
}
@media screen and (max-width: 1024px) {
  .mv__text-wrap {
    margin-right: 30px;
  }
}
@media screen and (max-width: 768px) {
  .mv__text-wrap {
    top: 63.41%;
    left: 0;
    padding: 0 33px;
    margin-right: 0;
  }
}

.mv__text {
  font-size: 32px;
  font-weight: 700;
  color: #4E301B;
  writing-mode: vertical-rl;
  line-height: 2;
  letter-spacing: 1rem;
}
@media screen and (max-width: 768px) {
  .mv__text {
    font-size: max(4vw, 24px);
    writing-mode: inherit;
    line-height: 1;
    letter-spacing: 0;
    padding: 0;
  }
}

.mv__white-back {
  background-color: #fff;
  display: inline-block;
  padding-top: 10px;
}
@media screen and (max-width: 768px) {
  .mv__white-back {
    padding: 7px 7px;
    margin-bottom: 6px;
  }
}

.mv__white-back:not(:last-child) {
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .mv__white-back:not(:last-child) {
    margin-left: 0;
  }
}

.logo {
  width: 154px;
  height: 154px;
  background-color: #FFF6D7;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .logo {
    top: 0;
    display: flex;
  }
}

.logo__img {
  width: 96px;
  height: 96px;
}

@media screen and (max-width: 768px) {
  .logo__img-name {
    z-index: 10;
    width: 300px;
  }
}

.nav {
  background-color: #FFF6D7;
  width: 100%;
  height: 196px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav__items {
  display: flex;
  height: inherit;
  align-items: center;
  z-index: 10;
  transform: translateX(-32px);
  padding-top: 9px;
}
@media screen and (max-width: 1024px) {
  .nav__items {
    padding-right: 0;
  }
}

.nav__item {
  height: inherit;
  display: flex;
  align-items: center;
  padding-left: 19.5px;
  padding-right: 19.5px;
}
@media screen and (max-width: 1024px) {
  .nav__item {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.nav__item img {
  width: 300px;
}
@media screen and (max-width: 1024px) {
  .nav__item img {
    width: 200px;
  }
}

.nav__item-link {
  font-size: 16px;
  font-weight: 700;
  color: #4E301B;
  display: flex;
  align-items: center;
  height: inherit;
}
@media screen and (max-width: 1024px) {
  .nav__item-link {
    font-size: 15px;
  }
}

.about {
  padding: 58px 0 143px;
  background-color: #FFF6D7;
}
@media screen and (max-width: 768px) {
  .about {
    padding: 0 0 50px;
  }
}

.about__inner {
  width: 100%;
  max-width: 974px;
  padding-left: 25px;
  padding-right: 25px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .about__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.about__wrap {
  position: relative;
  z-index: 10;
  width: 740px;
}
@media screen and (max-width: 768px) {
  .about__wrap {
    width: 100%;
  }
}

.about__title-text {
  background-color: rgba(255, 255, 255, 0.9);
  display: inline-block;
  padding: 8px 10px;
  margin-bottom: 28px;
}
.about__title-sub {
  background-color: rgba(255, 255, 255, 0.9);
  display: inline-block;
  padding: 15px;
  line-height: 2.5;
  width: 590px;
}
@media screen and (max-width: 768px) {
  .about__title-sub {
    width: 100%;
    height: 100%;
  }
}

.about__img--large {
  width: 786px;
  height: 524px;
  border-radius: 150px;
  position: absolute;
  top: -56px;
  right: -110px;
  object-fit: cover;
}
@media screen and (max-width: 1280px) {
  .about__img--large {
    width: 700px;
    right: 0;
  }
}
@media screen and (max-width: 1024px) {
  .about__img--large {
    width: 600px;
    height: auto;
    border-radius: 100px;
    right: 25px;
  }
}
@media screen and (max-width: 768px) {
  .about__img--large {
    position: static;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    margin-top: 28px;
  }
}

.about__img--small {
  width: 393px;
  height: 250px;
  border-radius: 50px;
  position: absolute;
  right: -110px;
  bottom: -144px;
  object-fit: cover;
}
@media screen and (max-width: 1280px) {
  .about__img--small {
    right: 0;
  }
}
@media screen and (max-width: 1024px) {
  .about__img--small {
    bottom: -30px;
    right: 25px;
  }
}

.product {
  background-color: #FFF6D7;
  padding: 93px 0 83px;
}
@media screen and (max-width: 1024px) {
  .product {
    padding: 0 0 50px;
  }
}
@media screen and (max-width: 768px) {
  .product {
    padding: 50px 0;
  }
}

.product__items {
  margin-top: 89px;
}

.product__item img {
  object-fit: cover;
}

.product__body {
  background-color: #fff;
  padding: 16px;
}

.product__name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.5;
  height: 96px;
  color: #4E301B;
}

.product__price {
  font-size: 16px;
  color: #4E301B;
}

.sample-slider .swiper-wrapper {
  transition-timing-function: linear;
}

.swiper {
  padding-bottom: 10px;
}

.swiper-slide {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.news {
  padding: 90px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .news {
    padding: 50px 0;
  }
}

.news__title {
  margin-bottom: 88px;
}
@media screen and (max-width: 768px) {
  .news__title {
    margin-bottom: 50px;
  }
}

.news__item {
  border-top: 1px solid #D9D9D9;
  padding: 21.5px 0;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .news__item {
    flex-direction: column;
  }
}

.news__item:last-child {
  border-bottom: 1px solid #D9D9D9;
}

.news-item__date {
  display: inline-block;
  width: 191px;
  font-size: 13px;
  color: #403F3F;
}
@media screen and (max-width: 768px) {
  .news-item__date {
    width: 100%;
    margin-bottom: 10px;
    font-size: 14px;
  }
}

.news__link {
  font-size: 16px;
  color: #4E301B;
}
@media screen and (max-width: 768px) {
  .news__link {
    width: 100%;
    text-align: left;
  }
}

.news__back-img {
  width: 235px;
  position: absolute;
  right: 0;
  bottom: -80px;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .news__back-img {
    width: 175px;
    bottom: -70px;
  }
}
@media screen and (max-width: 768px) {
  .news__back-img {
    width: 30vw;
    bottom: -13vw;
  }
}

.faq {
  padding: 91px 0 87px;
  background-color: #FFF6D7;
  position: relative;
}
@media screen and (max-width: 768px) {
  .faq {
    padding: 50px 0;
  }
}

.faq__inner {
  width: 100%;
  max-width: 790px;
  padding-left: 25px;
  padding-right: 25px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .faq__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.faq__accordion {
  margin-top: 72px;
}
@media screen and (max-width: 768px) {
  .faq__accordion {
    margin-top: 50px;
  }
}

.faq__back-img {
  width: 175px;
  position: absolute;
  left: 0;
  bottom: -126px;
}
@media screen and (max-width: 1024px) {
  .faq__back-img {
    width: 125px;
    bottom: -100px;
  }
}
@media screen and (max-width: 768px) {
  .faq__back-img {
    width: 20vw;
    bottom: -20vw;
  }
}

.accordion {
  width: 100%;
}

.accordion__item:not(:first-child) {
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .accordion__item:not(:first-child) {
    margin-top: 15px;
  }
}

.accordion__title {
  position: relative;
  padding: 7px 12px;
  cursor: pointer;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .accordion__title {
    padding: 12px 40px 12px 12px;
  }
}

.accordion__title::before {
  background-image: url(../images/arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  position: absolute;
  top: 48%;
  transform: translate(0, -50%);
  right: 16px;
  width: 16px;
  height: 10px;
  transition: transform 0.3s;
}
@media screen and (max-width: 768px) {
  .accordion__title::before {
    right: 12px;
    width: 16px;
    height: 10px;
  }
}

.accordion__title.is-open::before {
  transform: rotate(180deg);
  top: 37%;
}

.accordion__question {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  padding-right: 8px;
}
@media screen and (max-width: 768px) {
  .accordion__question {
    font-size: 20px;
  }
}

.accordion__title-text {
  color: #4E301B;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .accordion__title-text {
    font-size: 16px;
    line-height: 1.5;
  }
}

.accordion__content {
  display: none;
  padding-top: 22px;
}
@media screen and (max-width: 768px) {
  .accordion__content {
    padding: 16px 10px 24px;
  }
}

.accordion__text {
  font-size: 16px;
  line-height: 1.5;
  color: #4E301B;
}
@media screen and (max-width: 768px) {
  .accordion__text {
    font-size: 14px;
    line-height: 1.857;
  }
}

.access {
  padding: 93px 0 74px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .access {
    padding: 50px 0;
  }
}

.access__inner {
  max-width: 984px !important;
}

.access__wrap {
  margin-top: 87px;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .access__wrap {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .access__wrap {
    margin-top: 50px;
    flex-direction: column;
  }
}

.access__body {
  margin-right: auto;
}
@media screen and (max-width: 1024px) {
  .access__body {
    margin-right: 0;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 768px) {
  .access__body {
    margin-right: 0;
    margin-bottom: 30px;
  }
}

.access__items {
  margin-right: 32px;
  width: 459px;
}
@media screen and (max-width: 1024px) {
  .access__items {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .access__items {
    width: 100%;
  }
}

.access__item {
  display: flex;
  border-top: 1px solid #D9D9D9;
  padding: 22px 0 17.5px;
}
@media screen and (max-width: 768px) {
  .access__item {
    flex-direction: column;
  }
}

.access__item:last-child {
  border-bottom: 1px solid #D9D9D9;
}

.access__name {
  width: 174px;
  font-size: 18px;
  font-weight: 700;
  color: #4E301B;
}
@media screen and (max-width: 768px) {
  .access__name {
    font-size: 16px;
    width: 100%;
    padding-bottom: 10px;
  }
}

.access__text {
  font-size: 18px;
  font-weight: 700;
  color: #4E301B;
}
@media screen and (max-width: 768px) {
  .access__text {
    font-size: 16px;
  }
}

.access__iframe {
  width: 443px;
  height: 334px;
}
@media screen and (max-width: 1024px) {
  .access__iframe {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .access__iframe {
    width: 100%;
    height: 300px;
  }
}

.access__back-img {
  width: 215px;
  position: absolute;
  right: 0;
  bottom: -72px;
}
@media screen and (max-width: 1024px) {
  .access__back-img {
    width: 174px;
    bottom: -70px;
  }
}
@media screen and (max-width: 768px) {
  .access__back-img {
    width: 25vw;
    bottom: -13vw;
  }
}

.contact {
  padding: 102px 0 30px;
  background-color: #FFF6D7;
}
@media screen and (max-width: 768px) {
  .contact {
    padding: 50px 0;
  }
}

.contact__inner {
  width: 100%;
  max-width: 790px;
  padding-left: 25px;
  padding-right: 25px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .contact__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.contact__sub {
  text-align: center;
  padding: 67px 0 93px;
}
@media screen and (max-width: 768px) {
  .contact__sub {
    padding: 50px 0;
  }
}

.contact__text {
  font-size: 18px;
  font-weight: 700;
  color: #4E301B;
}
@media screen and (max-width: 768px) {
  .contact__text {
    font-size: 16px;
    line-height: 1, 7;
  }
}

.contact__form {
  background-color: #fff;
  border-radius: 20px;
  padding: 37px 76px 43px;
}
@media screen and (max-width: 768px) {
  .contact__form {
    border-radius: 10px;
    padding: 40px 15px;
  }
}

.form__title {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  padding-bottom: 29px;
  color: #4E301B;
}
@media screen and (max-width: 768px) {
  .form__title {
    padding-bottom: 40px;
  }
}

.form_list {
  width: 100%;
}

.form__item:first-child {
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .form__item:first-child {
    margin-bottom: 15px;
  }
}

.form__item dl {
  display: flex;
}
@media screen and (max-width: 768px) {
  .form__item dl {
    flex-direction: column;
    flex-wrap: wrap;
  }
}

.form__input {
  width: 334px;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .form__input {
    width: 100%;
    margin-top: 3px;
  }
}

.form__label {
  margin-top: 7px;
}

.form__label-text {
  font-size: 16px;
  font-weight: 700;
  color: #4E301B;
}
@media screen and (max-width: 768px) {
  .form__label-text {
    padding-bottom: 5px;
  }
}

.form__label-text::after {
  content: "必須";
  color: #4E301B;
  vertical-align: text-bottom;
  font-size: 14px;
  font-weight: 700;
  background-color: #FED966;
  padding: 5px 11px;
  border-radius: 10px;
  margin-left: 18px;
}
@media screen and (max-width: 768px) {
  .form__label-text::after {
    font-size: 12px;
    margin-left: 10px;
    border-radius: 5px;
    padding: 3px 7px;
  }
}

.label-none::after {
  content: "";
  background: none;
}

.form__input-text {
  background-color: #EFEAE6;
  padding: 10px 12px;
  width: 100%;
  font-size: 14px;
  color: #000;
  border-radius: 5px;
  margin-bottom: 23px;
}

.form__input-text.form__input--small {
  width: 157px;
}

.form__input-text::placeholder,
.form__textarea::placeholder {
  color: #D9D9D9;
  font-family: "Roboto", sans-serif;
}

.form__textarea {
  background-color: #EFEAE6;
  padding: 10px 12px;
  height: 171px;
  width: 100%;
  font-size: 14px;
  resize: none;
  border-radius: 5px;
}

.form__button {
  width: 243px;
  margin-top: 43px;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
  transition: opacity 0.3s;
}
@media screen and (max-width: 768px) {
  .form__button {
    width: 100%;
    text-align: center;
    margin-left: 0;
    margin-top: 6px;
  }
}

.button {
  display: inline-block;
  width: 243px;
  background-color: #FED966;
  padding: 13px 94px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #4E301B;
}
@media screen and (max-width: 768px) {
  .button {
    width: 50%;
    padding: 15px;
  }
}

.form__button:hover {
  opacity: 0.8;
}

.form__label--radio {
  width: 100%;
  max-width: 253px;
  margin-top: 12px;
}

.form__input--radio {
  padding-top: 12px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .form__input--radio {
    flex-direction: column;
    margin-top: 8px;
  }
}

input:disabled {
  background-color: #D9D9D9;
  color: #fff;
}

.Radio-Text::before {
  content: "";
  display: block;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border: 2px solid #4E301B;
  margin-right: 7px;
}

.Radio-Input:checked + .Radio-Text::after {
  content: "";
  position: absolute;
  left: 0px;
  display: block;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  border: 6px solid #4E301B;
  background-color: #fff;
}

.Radio-Text {
  font-size: 16px;
  color: #4E301B;
  position: relative;
  display: flex;
  align-items: center;
}

.Radio {
  display: block;
}
@media screen and (max-width: 768px) {
  .Radio {
    width: 100%;
    padding-left: 12px;
  }
}

.Radio:not(:first-child) {
  margin-top: 9px;
}
@media screen and (max-width: 768px) {
  .Radio:not(:first-child) {
    margin-top: 16px;
  }
}

.footer {
  padding-top: 24px;
}

.footer__wrap {
  width: 100%;
  padding-left: 25px;
  padding-right: 25px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  position: relative;
  background-image: url(../images/footer-img.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .footer__wrap {
    background-image: url(../images/footer-sp-img.jpg);
  }
}

.footer__logo {
  width: 300px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    width: 250px;
  }
}

@media screen and (max-width: 768px) {
  .footer__item:not(:first-child) {
    margin-top: 15px;
  }
}

.footer__items {
  display: flex;
  justify-content: center;
  padding-top: 32px;
  padding-bottom: 97px;
}
@media screen and (max-width: 768px) {
  .footer__items {
    flex-direction: column;
  }
}

.footer__link {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: #4E301B;
}

.footer__item:not(:first-child) {
  margin-left: 24px;
}
@media screen and (max-width: 768px) {
  .footer__item:not(:first-child) {
    margin-left: 0;
  }
}

.footer__copyright {
  font-size: 12px;
  color: #fff;
  background-color: #4E301B;
  padding: 22px;
  text-align: center;
  display: inline-block;
  width: 100%;
}

.loader {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: #FFF6D7;
  z-index: 9999;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader img {
  width: 300px;
}
@media screen and (max-width: 768px) {
  .loader img {
    width: 50vw;
  }
}

.thanks {
  background-color: #FFF6D7;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thanks__text {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #336C18;
}
@media screen and (max-width: 768px) {
  .thanks__text {
    font-size: 16px;
    text-align: center;
    line-height: 1.7;
  }
}

.thanks__button {
  text-align: center;
}

.button.button--thanks {
  font-size: 16px;
  background-color: #fff;
  color: #4E301B;
  font-weight: 700;
  width: 250px;
  padding: 15px 10px;
}

.inner {
  width: 100%;
  max-width: 990px;
  padding-left: 25px;
  padding-right: 25px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #4E301B;
  text-align: center;
}

.text {
  font-size: 16px;
  font-weight: 700;
  color: #857868;
}

.text--bold {
  color: #4E301B;
}

.text--regular {
  font-weight: 400;
}

.text.text--green {
  font-size: 40px;
  color: #336C18;
}
@media screen and (max-width: 768px) {
  .text.text--green {
    font-size: max(4vw, 24px);
  }
}

@media screen and (max-width: 768px) {
  .md-none {
    display: none;
  }
}

.md-show {
  display: none;
}
@media screen and (max-width: 768px) {
  .md-show {
    display: block;
  }
}

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