@charset "UTF-8";

/* --- 共通設定 --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  margin: 0;
}

li {
  list-style: none;
}

a {
  color: #000;
  text-decoration: none;
}

a:hover {
  opacity: .8;
}

h1, h2, h3, p, a, th, td, span {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 1px;
}

p {
  line-height: 2;
}

/* --- コンテナ設定 --- */
.w-container {
  width: 96%;
  margin-left: 2%;
  margin-right: 2%;
}

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

table {
  width: 100%;
  border-collapse: collapse;
}

/* 消してる要素 */
.sp-br {
  display: none;
}


/* ヘッダー */
.sp-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: min(80px, 6.67vw);
  z-index: 9999;
}

.sp-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding-left: min(50px, 4.17vw);
}

.sp-header-logo h2 {
  font-size: min(36px, 3vw);
  color: #fff;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.sp-header-logo p {
  font-size: min(20px, 1.67vw);
  color: #fff;
  line-height: 1.3;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.header-box {
  display: flex;
  align-items: center;
}

.tel {
  display: inline-flex;
  align-items: center;
  margin-right: min(25px, 2.08vw);
}

.tel a {
  font-size: min(30px, 2.5vw);
  font-weight: bold;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.tel::before {
  content: "";
  display: inline-block;
  width: min(36px, 2.77vw);
  height: min(36px, 2.77vw);
  background-image: url(../image/tel3.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  margin-top: min(7px, 0.54vw);
  margin-right: min(5px, 0.38vw);
}

.header-contact {
  width: min(180px, 15vw);
  height: min(80px, 6.67vw);
  background-color: #64B96C;
}

.header-contact a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #fff;
  font-size: min(20px, 1.67vw);
}

.header-contact a::before {
  content: "";
  display: block;
  width: min(30px, 2.5vw);
  height: min(24px, 2vw);
  margin-bottom: min(5px, 0.42vw);
  background-image: url(../image/mail.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.sp-menu-btn {
  position: relative;
  width: min(80px, 6.67vw);
  height: min(80px, 6.67vw);
  background-color: #3A8942;
  border: none;
  z-index: 1000;
  cursor: pointer;
}

.sp-menu-btn span {
  position: absolute;
  left: min(20px, 1.67vw);
  width: min(40px, 3.33vw);
  height: 2px;
  background-color: #fff;
  transition: 0.3s;
}

.sp-menu-btn span:nth-child(1) { top: min(15px, 1.25vw); }
.sp-menu-btn span:nth-child(2) { top: min(25px, 2.08vw); }
.sp-menu-btn span:nth-child(3) { top: min(35px, 2.92vw); }

.sp-menu-btn::after {
  content: "MENU";
  position: absolute;
  top: min(52px, 4.33vw);
  left: 0;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: min(20px, 1.67vw);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
}

.sp-menu-btn.is-active span:nth-child(1) {
  transform: translateY(min(10px, 0.83vw)) rotate(45deg);
}

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

.sp-menu-btn.is-active span:nth-child(3) {
  transform: translateY(min(-10px, -0.83vw)) rotate(-45deg);
}

.sp-menu-btn.is-active::after {
  content: "CLOSE";
}

/* 全画面メニュー */
.sp-header-nav {
  position: fixed;
  top: 0;
  right: min(-400px, -33.33vw);
  width: min(400px, 33.33vw);
  height: 100vh;
  background-color: #64B96C;
  transition: 0.4s;
  display: flex;
  z-index: 999;
  padding: min(110px, 9.17vw) min(20px, 1.67vw);
}

.sp-header-nav.is-active {
  right: 0;
}

.sp-nav-list {
  width: 100%;
  list-style: none;
  text-align: center;
}

.sp-nav-list li {
  text-align: left;
  margin: min(25px, 2.08vw) 0;
}

.sp-nav-list li a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: min(20px, 1.67vw);
  font-weight: bold;
  padding: min(30px, 2.5vw);
  border-bottom: 1px solid #fff;
}


/* トップ */
.main-v {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.main-v-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slide-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.slide-img.is-active {
  opacity: 1;
}

.slide1 { background-image: url(../image/top-back1.png); }
.slide2 { background-image: url(../image/top-back2.png); }
.slide3 { background-image: url(../image/top-back3.png); }

.main-v-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.main-v-title h1 {
  color: #fff;
  font-size: min(42px, 3.5vw);
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}

.p1-a-container {
  padding-top: min(150px, 11.54vw);
}

.p1-a-box1 {
  background-image: url(../image/top-back4.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
}

.p1-a-item {
  width: min(1200px, 92.31vw);
  display: flex;
  justify-content: space-between;
  padding-top: min(60px, 4.62vw);
  margin: 0 auto;
}

.p1-a-img1 {
  width: min(640px, 49.23vw);
  height: auto;
}

.p1-a-text {
  width: min(520px, 40vw);
}

.p1-a-text p {
  font-size: min(18px, 1.38vw);
}

.p1-a-box2 {
  background-image: url(../image/top-bakc9.png), url(../image/top-back4.png);
  background-repeat: no-repeat;
  background-size: min(314px, 24.15vw) auto, 100% auto;
  background-position: right top min(140px, 10.77vw), bottom;
  padding-bottom: min(150px, 11.54vw);
  padding-top: min(140px, 10.77vw);
}

.p1-a-text2 {
  padding-top: min(40px, 3.08vw);
}

.p1-a-text2 p {
  font-size: min(18px, 1.38vw);
}

.p1-a-text h3 {
  font-size: min(30px, 2.31vw);
  padding-bottom: min(30px, 2.31vw);
}

.p1-b-container {
  background-image: url(../image/top-back10.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.p1-b-box {
  text-align: center;
  background-image: url(../image/top-back6.png), url(../image/top-back7.png);
  background-repeat: no-repeat;
  background-position: left, top min(20px, 1.54vw) right;
  background-size: auto 100%, min(524px, 40.31vw) auto;
  padding: min(50px, 3.85vw) 0;
}

.p1-b-box h3 {
  font-size: min(30px, 2.31vw);
  padding-bottom: min(50px, 3.85vw);
}

.p1-b-box p {
  font-size: min(18px, 1.38vw);
}

.p1-b-link {
  display: flex;
  justify-content: center;
  gap: min(150px, 11.54vw);
  padding-top: min(40px, 3.08vw);
}

.p1-b-tel, .p1-b-mail {
  width: min(320px, 24.62vw);
  height: min(80px, 6.15vw);
  background-color: #64B96C;
}

.p1-b-tel a, .p1-b-mail a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.p1-b-tel a {
  font-size: min(26px, 2vw);
}

.p1-b-tel a::before {
  content: "";
  display: inline-block;
  width: min(26px, 2vw);
  height: min(26px, 2vw);
  margin-right: min(10px, 0.77vw);
  background-image: url(../image/tel.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: min(3px, 0.23vw);
}

.p1-b-mail a {
  font-size: min(20px, 1.54vw);
}

.p1-b-mail a::before {
  content: "";
  display: inline-block;
  width: min(24px, 1.85vw);
  height: min(24px, 1.85vw);
  margin-right: min(10px, 0.77vw);
  background-image: url(../image/mail.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: min(5px, 0.38vw);
}

.p1-c {
  background-image: url(../image/top-back8.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.p1-c-container {
  padding: min(150px, 11.54vw) 0 min(240px, 18.46vw);
}

.p1-c-item {
  width: min(1088px, 83.69vw);
  margin: min(50px, 3.85vw) auto 0;
}

.p1-c-title {
  margin-bottom: min(40px, 3.08vw);
}

.p1-c-title h3 {
  font-size: min(32px, 2.46vw);
  padding-bottom: min(25px, 1.92vw);
  margin-bottom: min(50px, 3.85vw);
  position: relative;
}

.p1-c-title h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: min(100px, 7.69vw);
  height: min(5px, 0.38vw);
  background-color: #84C98B;
}

.p1-c-title p {
  font-size: min(18px, 1.38vw);
}

.p1-c-teble {
  width: min(1000px, 76.92vw);
  margin-left: auto;
}

.p1-c-teble table tr th, .p1-c-teble table tr td {
  font-size: min(18px, 1.38vw);
  font-weight: 400;
  padding-top: min(15px, 1.15vw);
  padding-bottom: min(15px, 1.15vw);
  border: 1px solid #000;
}

.p1-c-teble table tr th {
  width: min(250px, 19.23vw);
  background-color: #E4FFCD;
}

.p1-c-teble table tr td {
  background-color: #fff;
  line-height: 2;
  padding-left: min(25px, 1.92vw);
}

.p1-d {
  background-image: url(../image/top-back5.png);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: min(1250px, 96.15vw) auto;
}

.p1-d-container {
  padding-top: min(100px, 7.69vw);
  padding-bottom: min(140px, 10.77vw);
}

.p1-d-box {
  width: min(1200px, 92.31vw);
  display: flex;
  justify-content: space-between;
  margin: min(40px, 3.08vw) auto 0;
}

.p1-d-img {
  width: min(580px, 44.62vw);
  height: auto;
}

.p1-d-table {
  width: min(580px, 44.62vw);
}

.p1-d-table tr th, .p1-d-table tr td {
  font-size: min(18px, 1.38vw);
  font-weight: 400;
  padding-top: min(20px, 1.54vw);
  padding-bottom: min(20px, 1.54vw);
  border-bottom: 1px solid #000;
}

.p1-d-table tr th {
  width: min(200px, 15.38vw);
  text-align: left;
}

.p1-e {
  background-image: url(../image/top-back4.png);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100% auto;
}

.p1-e-container {
  padding-bottom: min(200px, 15.38vw);
}

.p1-e-map {
  width: min(1200px, 92.31vw);
  margin: min(40px, 3.08vw) auto 0;
}

.p1-e-map iframe {
  width: 100%;
  height: min(600px, 46.15vw);
}

.p1-f {
  background-color: #E2F2D4;
}

.p1-f-container {
  background-image: url(../image/top-back5.png), url(../image/top-back4.png);
  background-repeat: no-repeat;
  background-position: top, bottom;
  background-size: 100% auto, 100% auto;
  padding-top: min(100px, 7.69vw);
  padding-bottom: min(150px, 11.54vw);
}

.p1-f .h2-title {
  text-align: center;
}

.p1-f-text {
  text-align: left;
  margin-top: min(50px, 3.85vw);
  margin-bottom: min(50px, 3.85vw);
}

.p1-f-text p {
  font-size: min(18px, 1.38vw);
}

.p1-f-contact {
  width: min(1000px, 76.92vw);
  margin: 0 auto;
}

/* 各項目のレイアウト */
.contact-item {
  display: flex;
  align-items: flex-start;
  padding: min(20px, 1.54vw) min(20px, 1.54vw) min(20px, 1.54vw) 0;
  border-top: 1px solid #84C98B;
}

.contact-item.last-item {
  border-bottom: 1px solid #84C98B;
}

/* ラベル部分（左側 300px） */
.contact-item .label {
  width: min(300px, 23.08vw);
  padding-top: min(15px, 1.15vw);
  font-size: min(18px, 1.38vw);
}

.contact-item .label p {
  display: flex;
  align-items: center;
}

.contact-item .required {
  color: #ff0000;
  font-size: min(18px, 1.38vw);
  margin-left: min(5px, 0.38vw);
}

/* 入力欄部分（右側 700px） */
.contact-item .control {
  width: min(700px, 53.85vw);
}

/* 入力フォーム共通のスタイル */
.contact-item input[type="text"],
.contact-item input[type="email"],
.contact-item input[type="tel"],
.contact-item textarea {
  width: 100%;
  padding: min(15px, 1.15vw);
  border: 1px solid #C4C4C4;
  background-color: #F0F0F0;
  box-sizing: border-box;
  font-size: min(16px, 1.23vw);
  border-radius: min(10px, 0.77vw);
}

.contact-item textarea {
  height: min(130px, 10vw);
}

/* 送信ボタンエリア */
.contact-submit {
  text-align: center;
  margin-top: min(40px, 3.08vw);
}

.contact-submit input[type="submit"] {
  width: min(300px, 23.08vw);
  height: min(80px, 6.15vw);
  background-color: #64B96C;
  color: #fff;
  border: none;
  font-size: min(20px, 1.54vw);
  cursor: pointer;
  transition: 0.3s;
  border-radius: min(10px, 0.77vw);
}

.contact-submit input[type="submit"]:hover {
  background-color: #3A8942;
}

.wpcf7-spinner {
  display: none;
}

.p1-f-box {
  width: min(1000px, 76.92vw);
  background-color: #fff;
  padding: min(18px, 1.38vw) min(36px, 2.77vw);
  border-radius: min(10px, 0.77vw);
  margin: min(60px, 4.62vw) auto 0;
}

.p1-f-box h3 {
  font-size: min(32px, 2.46vw);
}

.p1-f-box p {
  font-size: min(18px, 1.38vw);
  line-height: 1;
  padding-top: min(30px, 2.31vw);
  padding-bottom: min(15px, 1.15vw);
}

.p1-f-box ul li {
  font-size: min(18px, 1.38vw);
}


/* 共通パーツ */
.h2-title {
  width: min(1200px, 92.31vw);
  margin: 0 auto;
}

.h2-title h2 {
  font-size: min(40px, 3.08vw);
  line-height: 1;
}

.h2-title p {
  font-size: min(18px, 1.38vw);
}


/* フッター */
.footer-container {
  text-align: center;
}

.footer-text {
  padding-top: min(60px, 4.62vw);
}

.footer-text h2 {
  font-size: min(36px, 2.77vw);
}

.footer-text p {
  font-size: min(20px, 1.54vw);
  color: #84C98B;
}

.footer-text2 {
  padding-bottom: min(60px, 4.62vw);
}

.footer-text2 p {
  font-size: min(18px, 1.38vw);
  line-height: 1.3;
}

.footer-text2 .footer-tel {
  font-size: min(30px, 2.31vw);
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  padding-top: min(5px, 0.38vw);
}

.footer-text2 .footer-tel::before {
  content: "";
  width: min(30px, 2.31vw);
  height: min(30px, 2.31vw);
  background-image: url(../image/tel2.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: min(10px, 0.77vw);
  margin-top: min(3px, 0.23vw);
}

.copy-right {
  background-color: #84C98B;
  padding: min(10px, 0.77vw) 0;
}

.copy-right p {
  color: #fff;
  font-size: min(18px, 1.38vw);
}

/* トップに戻るボタン */
.top-botan {
  position: fixed;
  right: min(43px, 3.31vw);
  bottom: min(60px, 4.62vw);
  width: min(70px, 5.38vw);
  height: min(70px, 5.38vw);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.top-botan a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.top-botan.is-show {
  opacity: 1;
  visibility: visible;
}



@media screen and (max-width: 767px) {
  /* 全体 */
  .pc-br {
    display: none;
  }

  .sp-br {
    display: block;
  }

  #act2, #act4 {
    scroll-margin-top: 80px;
  }

  /* ヘッダー */
  .sp-header {
    height: 80px;
  }

  .sp-header-inner {
    padding-left: 20px;
  }

  .sp-header-logo h2 {
    font-size: 32px;
  }

  .sp-header-logo p {
    font-size: 18px;
  }

  .header-box .tel, .header-contact {
    display: none;
  }

  .sp-menu-btn {
    width: 80px;
    height: 80px;
  }

  .sp-menu-btn span {
    left: 20px;
    width: 40px;
  }

  .sp-menu-btn span:nth-child(1) { top: 15px; }
  .sp-menu-btn span:nth-child(2) { top: 25px; }
  .sp-menu-btn span:nth-child(3) { top: 35px; }

  .sp-menu-btn::after {
    top: 52px;
    font-size: 20px;
  }

  .sp-menu-btn.is-active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }

  .sp-menu-btn.is-active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }

  /* 全画面メニュー */
  .sp-header-nav {
    right: -90%;
    width: 90%;
    padding: 110px 20px;
  }

  .sp-nav-list li {
    margin: 0 0;
  }

  .sp-nav-list li a {
    font-size: 20px;
    padding: 30px;
  }

  /* トップ */
  .main-v-title h1 {
    font-size: 28px;
    line-height: 2.5;
  }

  .p1-a-container {
    padding-top: 100px;
  }

  .p1-a-item {
    width: 92%;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding-top: 40px;
  }

  .p1-a-img1 {
    max-width: 500px;
    width: 100%;
    height: auto;
  }

  .p1-a-text {
    width: 100%;
  }

  .p1-a-text p {
    font-size: 18px;
  }

  .p1-a-box2 {
    background-size: 170px auto, 100% auto;
    background-position: right 130px, bottom;
    padding-bottom: 110px;
    padding-top: 130px;
  }

  .p1-a-text2 {
    padding-top: 30px;
  }

  .p1-a-text2 p {
    font-size: 18px;
  }

  .p1-a-text h3 {
    font-size: 30px;
    padding-bottom: 30px;
  }

  .p1-b-container {
    background-image: url(../image/sp-top-back1.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }

  .p1-b-box {
    text-align: center;
    background-image: url(../image/top-back6.png), url(../image/top-back7.png);
    background-repeat: no-repeat;
    background-position: top left, top right;
    background-size: 144px auto, 225px auto;
    padding: 60px 0;
  }

  .p1-b-box h3 {
    font-size: 22px;
    padding-bottom: 60px;
  }

  .p1-b-box p {
    font-size: 18px;
  }

  .p1-b-link {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding-top: 60px;
  }

  .p1-b-tel, .p1-b-mail {
    width: 320px;
    height: 80px;
  }

  .p1-b-tel a {
    font-size: 26px;
  }

  .p1-b-tel a::before {
    width: 26px;
    height: 26px;
    margin-right: 10px;
    margin-top: 3px;
  }

  .p1-b-mail a {
    font-size: 20px;
  }

  .p1-b-mail a::before {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    margin-top: 5px;
  }

  .p1-c-container {
    padding: 34px 0 80px;
  }

  .p1-c-item {
    width: 92%;
    margin: 50px auto 0;
  }

  .p1-c-title {
    margin-bottom: 50px;
  }

  .p1-c .p1-c-item:last-child .p1-c-title h3 {
    font-size: min(24px, 5.58vw);
  }

  .p1-c-title h3 {
    font-size: 24px;
    padding-bottom: 25px;
    margin-bottom: 30px;
  }

  .p1-c-title h3::after {
    width: 100px;
    height: 5px;
  }

  .p1-c-title p {
    font-size: 18px;
  }

  .p1-c-teble {
    width: 100%;
    margin-left: 0;
  }

  .p1-c-teble table tr th, .p1-c-teble table tr td {
    display: block;
    font-size: 18px;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .p1-c-teble table tr th {
    width: 100%;
    text-align: left;
    padding-left: 15px;
  }

  .p1-c-teble table tr td {
    padding-left: 15px;
  }

  .p1-d {
    background-image: url(../image/top-back5.png);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 415px auto;
  }

  .p1-d-container {
    padding-top: 100px;
    padding-bottom: 50px;
  }

  .p1-d-box {
    width: 92%;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin: 30px auto 0;
  }

  .p1-d-img {
    max-width: 500px;
    width: 100%;
    height: auto;
  }

  .p1-d-table {
    width: 100%;
  }

  .p1-d-table tr th, .p1-d-table tr td {
    display: block;
    font-size: 18px;
    padding-top: 10px;
    padding-bottom: 20px;
    border-bottom: 1px solid #000;
  }

  .p1-d-table tr th {
    width: 100%;
    text-align: left;
    padding-bottom: 0;
    border-bottom: none;
  }

  .p1-e {
    background-image: url(../image/top-back4.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 100% auto;
  }

  .p1-e-container {
    padding-bottom: 90px;
  }

  .p1-e-map {
    width: 92%;
    margin: min(40px, 3.08vw) auto 0;
  }

  .p1-e-map iframe {
    width: 100%;
    height: 342px;
  }

  .p1-f-container {
    background-image: url(../image/top-back5.png), url(../image/top-back4.png);
    background-repeat: no-repeat;
    background-position: top right, bottom;
    background-size: 90% auto, 100% auto;
    padding-top: 20px;
    padding-bottom: 180px;
  }

  .p1-f-text {
    width: 100%;
    margin: 80px auto;
  }

  .h2-title .p1-f-text p {
    font-size: min(17px, 3.95vw);
  }

  .p1-f-contact {
    width: 92%;
    margin: 0 auto;
  }

  /* 各項目のレイアウト */
  .contact-item {
    flex-direction: column;
    padding: 20px 0;
  }

  .contact-item .label {
    width: 100%;
    padding-top: 0;
    padding-bottom: 10px;
    font-size: 18px;
  }

  .contact-item .required {
    font-size: 18px;
    margin-left: 10px;
  }

  .contact-item .control {
    width: 100%;
  }

  /* 入力フォーム共通のスタイル */
  .contact-item input[type="text"],
  .contact-item input[type="email"],
  .contact-item input[type="tel"],
  .contact-item textarea {
    width: 100%;
    height: 44px;
    padding: 8px;
    font-size: 16px;
    border-radius: 10px;
  }

  .contact-item textarea {
    height: 130px;
  }

  /* 送信ボタンエリア */
  .contact-submit {
    text-align: center;
    margin-top: 20px;
  }

  .contact-submit input[type="submit"] {
    width: 200px;
    height: 60px;
    font-size: 18px;
    border-radius: 10px;
  }

  .p1-f-box {
    width: 92%;
    padding: 38px 20px;
    border-radius: 10px;
    margin: 25px auto 0;
  }

  .p1-f-box h3 {
    font-size: 26px;
  }

  .p1-f-box p {
    font-size: 16px;
    line-height: 1.2;
    padding-top: 30px;
    padding-bottom: 15px;
  }

  .p1-f-box ul li {
    font-size: 16px;
  }



  /* 共通パーツ */
  .h2-title {
    width: 92%;
  }

  .h2-title h2 {
    font-size: 40px;
  }

  .h2-title p {
    font-size: 18px;
  }


  /* フッター */
  .footer-text {
    padding-top: 50px;
  }

  .footer-text h2 {
    font-size: 36px;
  }

  .footer-text p {
    font-size: 20px;
  }

  .footer-text2 {
    padding-bottom: 23px;
  }

  .footer-text2 p {
    font-size: 18px;
    line-height: 1.3;
  }

  .footer-text2 .footer-tel {
    font-size: 30px;
    padding-top: 5px;
  }

  .footer-text2 .footer-tel::before {
    content: "";
    width: 30px;
    height: 30px;
    margin-right: 10px;
    margin-top: 3px;
  }

  .copy-right {
    padding: 10px 0;
  }

  .copy-right p {
    font-size: 18px;
  }

  /* トップに戻るボタン */
  .top-botan {
    display: none;
  }
}


@media screen and (max-width: 440px) {
  /* トップ */
  .p1-c {
    background-image: url(../image/sp-top-back2.png);
    background-repeat: no-repeat;
    background-size: cover;
  }
}
