@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #000;
  background-color: #fff;
}

/* --------------------------------------------
 * header
 * -------------------------------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  z-index: 1000;
}

.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  height: 80px;
  padding: 0 20px;
}
@media not screen and (min-width: 768px) {
  .header-inner {
    height: 50px;
    padding: 0 15px;
  }
}

.header-btn {
  display: inline-block;
  width: 180px;
  height: 75px;
  background-color: #f7931e;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  line-height: 75px;
  text-align: center;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.header-btn:hover {
  background-color: #e8841a;
}
@media not screen and (min-width: 768px) {
  .header-btn {
    height: 40px;
    width: 120px;
    font-size: 12px;
    line-height: 40px;
  }
}

.header-logo {
  width: 125px;
  max-height: 80px;
  height: auto;
}
@media not screen and (min-width: 768px) {
  .header-logo {
    width: 80px;
    max-height: 40px;
  }
}

/* --------------------------------------------
 * FV
 * -------------------------------------------- */
.fv {
  padding-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media not screen and (min-width: 768px) {
  .fv {
    padding-top: 50px;
  }
}

.fv-inner {
  width: 100%;
  text-align: center;
}
.fv-inner img {
  width: 100%;
  height: auto;
  display: block;
}

/* --------------------------------------------
 * 悩みセクション
 * -------------------------------------------- */
.trouble {
  padding-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #2b2928;
}
@media not screen and (min-width: 768px) {
  .trouble {
    padding-top: 50px;
  }
}

.trouble-inner {
  padding-right: 120px;
  padding-left: 120px;
  width: 100%;
  text-align: center;
  width: 960px;
}
@media not screen and (min-width: 768px) {
  .trouble-inner {
    padding-right: 0;
    padding-left: 0;
    width: 80%;
  }
}

.trouble-inner img {
  height: auto;
  display: block;
  margin: 0 auto;
  width: 640px;
}
@media not screen and (min-width: 768px) {
  .trouble-inner img {
    width: 100%;
  }
}

/* --------------------------------------------
 * CTA
 * -------------------------------------------- */
.cta {
  background-color: #2b2928;
  padding: 80px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  min-height: 200px;
}
@media not screen and (min-width: 768px) {
  .cta {
    padding: 50px 0;
    min-height: 150px;
  }
}

.cta-inner {
  padding-right: 120px;
  padding-left: 120px;
  text-align: center;
}
@media not screen and (min-width: 768px) {
  .cta-inner {
    padding-right: 0;
    padding-left: 0;
    width: 100%;
  }
}

.cta-inner a {
  display: inline-block;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.cta-inner a:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

.cta-inner img {
  width: 60%;
  height: auto;
  display: block;
  margin: 0 auto;
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}
@media not screen and (min-width: 768px) {
  .cta-inner img {
    width: 100%;
  }
}

.cta-inner a:hover img {
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
}

/* --------------------------------------------
 * 特典セクション
 * -------------------------------------------- */
.benefit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.benefit-inner {
  width: 100%;
  text-align: center;
}
.benefit-inner img {
  width: 100%;
  height: auto;
  display: block;
}

/* --------------------------------------------
 * 実績セクション
 * -------------------------------------------- */
.achievement {
  padding: 80px 0;
  background-image: url(../img/sec02_bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media not screen and (min-width: 768px) {
  .achievement {
    padding: 50px 0;
  }
}

.achievement-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

.achievement__title {
  width: 40%;
  height: auto;
  display: block;
  margin: 0 auto 60px auto;
}
@media not screen and (min-width: 768px) {
  .achievement__title {
    width: 60%;
    margin: 0 auto 40px auto;
  }
}

/* --------------------------------------------
 * swiper
 * -------------------------------------------- */
.swiper-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
@media not screen and (min-width: 768px) {
  .swiper-container {
    max-width: 100%;
  }
}

.swiper {
  position: relative;
  overflow: hidden;
}

.swiper-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.swiper-slide img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}
@media not screen and (min-width: 768px) {
  .swiper-slide img {
    width: 100%;
  }
}

.swiper-pagination-bullet {
  opacity: 1;
  background: gray;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: red;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 10px;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  color: white;
  font-size: 18px;
  z-index: 10;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: rgba(0, 0, 0, 0.7);
}
.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
}
@media not screen and (min-width: 768px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
}

.swiper-button-prev {
  left: 20px;
}
.swiper-button-prev::before {
  content: "‹";
  font-size: 24px;
  font-weight: bold;
}
@media not screen and (min-width: 768px) {
  .swiper-button-prev::before {
    font-size: 18px;
  }
}

.swiper-button-next {
  right: 20px;
}
.swiper-button-next::before {
  content: "›";
  font-size: 24px;
  font-weight: bold;
}
@media not screen and (min-width: 768px) {
  .swiper-button-next::before {
    font-size: 18px;
  }
}

/* --------------------------------------------
 * 6つの理由
 * -------------------------------------------- */
.reason {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media not screen and (min-width: 768px) {
  .reason {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.reason-inner {
  max-width: 1200px;
  padding-right: 120px;
  padding-left: 120px;
  margin: 0 auto;
}
@media not screen and (min-width: 768px) {
  .reason-inner {
    padding-right: 30px;
    padding-left: 30px;
    width: 100%;
  }
}

.reason__title {
  width: 50%;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media not screen and (min-width: 768px) {
  .reason__title {
    width: 100%;
  }
}

.reason__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 50px;
}

.reason__text {
  margin-top: 50px;
  text-align: justify;
}
.reason__text + .reason__text {
  margin-top: 16px;
}
@media not screen and (min-width: 768px) {
  .reason__text {
    margin-top: 20px;
  }
}

.reason__media,
.reason__content {
  width: 50%;
}

@media not screen and (min-width: 768px) {
  .reason__item {
    display: block;
  }
  .reason__media,
  .reason__content {
    width: 100%;
  }
}
/* --------------------------------------------
 * トレーナーセクション
 * -------------------------------------------- */
.trainer {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media not screen and (min-width: 768px) {
  .trainer {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.trainer-inner {
  max-width: 1300px;
  padding-right: 40px;
  padding-left: 40px;
  margin: 0 auto;
}
@media not screen and (min-width: 768px) {
  .trainer-inner {
    padding-right: 30px;
    padding-left: 30px;
    width: 100%;
  }
}

.trainer__title {
  width: 50%;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media not screen and (min-width: 768px) {
  .trainer__title {
    width: 100%;
  }
}

.trainer__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}
@media screen and (max-width: 900px) {
  .trainer__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media not screen and (min-width: 768px) {
  .trainer__items {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.trainer__item {
  display: block;
  text-align: center;
}

.trainer__img {
  width: 70%;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media not screen and (min-width: 768px) {
  .trainer__img {
    width: 60%;
  }
}

@media not screen and (min-width: 768px) {
  .trainer__content {
    margin-top: 20px;
  }
}

.trainer__text {
  text-align: justify;
  margin-top: 30px;
  width: 100%;
  height: auto;
  display: block;
}
@media not screen and (min-width: 768px) {
  .trainer__text {
    margin-top: 20px;
  }
}

.trainer__text-title {
  font-weight: bold;
  font-size: 18px;
}
@media not screen and (min-width: 768px) {
  .trainer__text-title {
    font-size: 16px;
  }
}

/* --------------------------------------------
 * 利用者の声セクション
 * -------------------------------------------- */
.voice {
  padding-top: 80px;
  padding-bottom: 80px;
  background-image: url(../img/sec06_bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media not screen and (min-width: 768px) {
  .voice {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.voice-inner {
  max-width: 1200px;
  padding-right: 120px;
  padding-left: 120px;
  margin: 0 auto;
}
@media not screen and (min-width: 768px) {
  .voice-inner {
    padding-right: 30px;
    padding-left: 30px;
    width: 100%;
  }
}

.voice-inner img {
  width: 80%;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media not screen and (min-width: 768px) {
  .voice-inner img {
    width: 100%;
  }
}

/* --------------------------------------------
 * 体験の流れセクション swiper
 * -------------------------------------------- */
.flow {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #fef5e6;
}
@media not screen and (min-width: 768px) {
  .flow {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.flow-inner {
  max-width: 1200px;
  padding-right: 120px;
  padding-left: 120px;
  margin: 0 auto;
}
@media not screen and (min-width: 768px) {
  .flow-inner {
    padding-right: 30px;
    padding-left: 30px;
    width: 100%;
  }
}

.flow__title {
  width: 50%;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media not screen and (min-width: 768px) {
  .flow__title {
    width: 100%;
  }
}

.flow__items {
  gap: 24px;
  margin-top: 50px;
}

.flow__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
.flow__item + .flow__item {
  margin-top: 50px;
}
@media not screen and (min-width: 768px) {
  .flow__item {
    display: block;
  }
}

.flow__media {
  width: 50%;
}
@media not screen and (min-width: 768px) {
  .flow__media {
    width: 100%;
  }
}

.flow__content {
  width: 50%;
}
@media not screen and (min-width: 768px) {
  .flow__content {
    width: 100%;
  }
}

.flow__text {
  text-align: left;
  margin-top: 15px;
  width: 100%;
  height: auto;
  display: block;
}
@media not screen and (min-width: 768px) {
  .flow__text {
    margin-top: 10px;
  }
}

.flow__text-title {
  font-weight: bold;
  font-size: 20px;
  color: #754c24;
}
@media not screen and (min-width: 768px) {
  .flow__text-title {
    font-size: 20px;
  }
}

/* --------------------------------------------
 * 店舗情報セクション
 * -------------------------------------------- */
.shop {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media not screen and (min-width: 768px) {
  .shop {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.shop-inner {
  max-width: 1200px;
  padding-right: 120px;
  padding-left: 120px;
  margin: 0 auto;
  margin-bottom: 50px;
}
@media not screen and (min-width: 768px) {
  .shop-inner {
    padding-right: 30px;
    padding-left: 30px;
    width: 100%;
  }
}

.shop__title {
  width: 50%;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media not screen and (min-width: 768px) {
  .shop__title {
    width: 100%;
  }
}
.shop__map {
  width: 100%;
  height: 450px;
  margin-top: 50px;
}

.shop__map iframe {
  width: 100%;
  height: 100%;
}

.shop__info {
  gap: 24px;
  margin-top: 30px;
}

.shop__info-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}

.shop__info-text-title {
  font-weight: bold;
  font-size: 18px;
  white-space: nowrap;
}

.shop__info-text-value {
  font-size: 18px;
}

.shop__info-text-address {
  font-size: 20px;
  font-weight: bold;
}

/* --------------------------------------------
 * よくある質問セクション
 * -------------------------------------------- */
.faq {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #fef5e6;
}
@media not screen and (min-width: 768px) {
  .faq {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.faq-inner {
  max-width: 1200px;
  padding-right: 120px;
  padding-left: 120px;
  margin: 0 auto;
}
@media not screen and (min-width: 768px) {
  .faq-inner {
    padding-right: 30px;
    padding-left: 30px;
    width: 100%;
  }
}

.faq__title {
  width: 50%;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media not screen and (min-width: 768px) {
  .faq__title {
    width: 100%;
  }
}

.faq__items {
  margin-top: 50px;
}

.faq__item {
  background-color: #fff;
  padding: 30px 30px;
  margin-bottom: 20px;
}
.faq__item:last-child {
  margin-bottom: 0;
}
@media not screen and (min-width: 768px) {
  .faq__item {
    padding: 20px 20px;
    margin-bottom: 15px;
  }
}

.faq__question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.faq__q-mark {
  width: 50px;
  height: 50px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
}

.faq__question-text {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin: 0;
  line-height: 1.6;
}

.faq__answer {
  margin-left: 70px;
}

.faq__answer-text {
  font-size: 18px;
  color: #333;
  margin: 0;
  line-height: 1.6;
}

@media not screen and (min-width: 768px) {
  .faq__item {
    padding: 20px 0;
  }
  .faq__question {
    gap: 15px;
    margin-bottom: 15px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 20px;
  }
  .faq__q-mark {
    width: 40px;
    height: 40px;
  }
  .faq__question-text {
    font-size: 16px;
  }
  .faq__answer {
    margin-left: 55px;
    padding: 0 20px;
  }
  .faq__answer-text {
    font-size: 16px;
  }
}
/* --------------------------------------------
 * 問い合わせフォーム
 * -------------------------------------------- */
.contact {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #f8f9fa;
}
@media not screen and (min-width: 768px) {
  .contact {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.contact-inner {
  max-width: 1200px;
  padding-right: 120px;
  padding-left: 120px;
  margin: 0 auto;
}
@media not screen and (min-width: 768px) {
  .contact-inner {
    padding-right: 30px;
    padding-left: 30px;
    width: 100%;
  }
}

.contact__title {
  width: 50%;
  height: auto;
  display: block;
  margin: 0 auto 50px auto;
}
@media not screen and (min-width: 768px) {
  .contact__title {
    width: 100%;
    margin-bottom: 30px;
  }
}

#booking-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
@media not screen and (min-width: 768px) {
  #booking-form {
    padding: 30px 20px;
  }
}

.form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}
@media not screen and (min-width: 768px) {
  .form-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}

.form-group {
  margin-bottom: 25px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media not screen and (min-width: 768px) {
  .form-group {
    margin-bottom: 20px;
  }
}
.form-group:last-of-type {
  margin-bottom: 30px;
}

label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 500;
  font-size: 16px;
}

.required {
  background-color: #dc3545;
  color: white;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 8px;
  font-weight: normal;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=date],
select,
textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 16px;
  background-color: #fff;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
  font-family: inherit;
}
input[type=text]:focus,
input[type=tel]:focus,
input[type=email]:focus,
input[type=date]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #007bff;
  -webkit-box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
          box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}
input[type=text]::-webkit-input-placeholder, input[type=tel]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, input[type=date]::-webkit-input-placeholder, select::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #999;
}
input[type=text]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=date]::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: #999;
}
input[type=text]:-ms-input-placeholder, input[type=tel]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, input[type=date]:-ms-input-placeholder, select:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #999;
}
input[type=text]::-ms-input-placeholder, input[type=tel]::-ms-input-placeholder, input[type=email]::-ms-input-placeholder, input[type=date]::-ms-input-placeholder, select::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #999;
}
input[type=text]::placeholder,
input[type=tel]::placeholder,
input[type=email]::placeholder,
input[type=date]::placeholder,
select::placeholder,
textarea::placeholder {
  color: #999;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input[type=date] {
  position: relative;
}
input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
}

button[type=submit] {
  width: 100%;
  padding: 16px;
  background-color: #556b2f;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
button[type=submit]:hover {
  background-color: orange;
}
button[type=submit]:active {
  background-color: orange;
}

/* --------------------------------------------
 * 会社概要セクション
 * -------------------------------------------- */
.company {
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #556b2f;
}
@media not screen and (min-width: 768px) {
  .company {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.company-inner {
  max-width: 1200px;
  padding-right: 120px;
  padding-left: 120px;
  margin: 0 auto;
}
@media not screen and (min-width: 768px) {
  .company-inner {
    padding-right: 30px;
    padding-left: 30px;
    width: 100%;
  }
}

.company__title {
  font-size: 24px;
  color: #fff;
  margin: 0;
  line-height: 1.6;
  text-align: center;
}
@media not screen and (min-width: 768px) {
  .company__title {
    font-size: 20px;
  }
}

.company__text-inner {
  margin-top: 30px;
}

.company__info-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
}

.company__text-title {
  font-size: 18px;
  white-space: nowrap;
  color: #fff;
}
@media not screen and (min-width: 768px) {
  .company__text-title {
    font-size: 14px;
  }
}

.company__text {
  font-size: 18px;
  color: #fff;
  margin: 0;
  line-height: 1.6;
}
@media not screen and (min-width: 768px) {
  .company__text {
    font-size: 14px;
  }
}

/* --------------------------------------------
 * フッター
 * -------------------------------------------- */
.footer {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #556b2f;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
@media not screen and (min-width: 768px) {
  .footer-inner {
    padding-right: 30px;
    padding-left: 30px;
    width: 100%;
  }
}

.footer__text {
  font-size: 12px;
  color: #fff;
  text-align: center;
}
@media not screen and (min-width: 768px) {
  .footer__text {
    font-size: 10px;
  }
}