@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  color: #303030;
  line-height: 1.3;
  font-family: "Noto Sans JP", sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: 0;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  font: inherit;
}

input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  font-size: inherit;
}

p {
  margin: 0;
}

.orange {
  color: #F75C17;
}

.roboto {
  font-family: "Roboto", sans-serif;
}

.inter {
  font-family: "Inter", sans-serif;
}

.font-16 {
  font-size: 16px;
}

.font-24 {
  font-size: 24px;
}

.font-35 {
  font-size: 35px;
}

.font-48 {
  font-size: 48px;
}

.font-64 {
  font-size: 64px;
}

.font-72 {
  font-size: 72px;
}

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

@media (max-width: 768px) {
  .font-16 {
    font-size: 14px;
  }
  .font-24 {
    font-size: 20px;
  }
  .font-35 {
    font-size: 30px;
  }
  .font-48 {
    font-size: 40px;
  }
  .font-64 {
    font-size: 56px;
  }
  .font-72 {
    font-size: 56px;
  }
  .font-80 {
    font-size: 64px;
  }
}
@media (max-width: 640px) {
  .font-48 {
    font-size: 32px;
  }
  .font-80 {
    font-size: 56px;
  }
}
@media (max-width: 560px) {
  .font-16 {
    font-size: 14px;
  }
  .font-24 {
    font-size: 20px;
  }
  .font-35 {
    font-size: 20px;
  }
  .font-48 {
    font-size: 28px;
  }
  .font-64 {
    font-size: 36px;
  }
  .font-72 {
    font-size: 40px;
  }
  .font-80 {
    font-size: 40px;
  }
}
a {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
a:active {
  transform: translateY(0);
}

.bg-orange {
  background: #FFF3EE;
}

main {
  width: 768px;
  margin: 96px auto 0;
}
@media (max-width: 768px) {
  main {
    width: 100%;
    margin: 80px auto 0;
  }
}
@media (max-width: 480px) {
  main {
    margin: 64px auto 0;
  }
}

.inner {
  padding: 0 48px;
}
@media (max-width: 768px) {
  .inner {
    padding: 0 32px;
  }
}
@media (max-width: 480px) {
  .inner {
    padding: 0 24px;
  }
}

header {
  position: fixed;
  width: 100%;
  height: 96px;
  top: 0;
  left: 0;
  background: #fff;
  border-bottom: 1px solid #D0D0D0;
  z-index: 9999;
}
header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 768px;
  padding: 0;
  margin: 0 auto;
}
header .inner img {
  margin-left: 24px;
}
@media (max-width: 768px) {
  header .inner {
    width: 100%;
  }
}
header .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 272px;
  height: 96px;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  border: 1px solid #9D6D5F;
  background-image: linear-gradient(180deg, #FF8731, #F03800);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  text-align: center;
}
@media (max-width: 768px) {
  header {
    height: 80px;
  }
  header .inner img {
    width: auto;
    height: 40px;
  }
  header .btn {
    height: 80px;
  }
}
@media (max-width: 480px) {
  header {
    height: 64px;
  }
  header .btn {
    width: 176px;
    height: 64px;
    font-size: 16px;
  }
}

.cta-box {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.cta-box .inner {
  width: 768px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cta-box .inner {
    width: 100%;
  }
}
.cta-box .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100px;
  border-radius: 110px;
  color: #fff;
  border: 1px solid #9D6D5F;
  background-image: linear-gradient(180deg, #FF8731, #F03800);
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}
.cta-box .btn p {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 4px;
}
.cta-box .btn p .font-24 {
  font-weight: 500;
  font-size: 20px;
}
@media (max-width: 768px) {
  .cta-box {
    width: 100%;
    padding: 12px 0;
  }
  .cta-box a {
    font-size: 20px;
    padding: 14px 20px;
  }
  .cta-box .btn {
    height: 80px;
  }
  .cta-box .btn p {
    font-size: 20px;
  }
  .cta-box .btn p .font-24 {
    font-size: 16px;
  }
}
@media (max-width: 560px) {
  .cta-box .btn {
    height: 64px;
  }
  .cta-box .btn p {
    font-size: 16px;
  }
  .cta-box .btn p .font-24 {
    font-size: 14px;
  }
}

section.open {
  text-align: center;
  padding: 48px 0;
}
@media (max-width: 480px) {
  section.open {
    padding: 40px 0 24px;
  }
}
section.open .deco-slash {
  position: relative;
  display: inline-block;
  height: 66px;
  color: #fff;
  font-size: 48px;
  font-weight: bold;
  background-image: linear-gradient(-90deg, #FF8731, #F03800);
  margin: 0 auto 32px;
}
section.open .deco-slash::before, section.open .deco-slash::after {
  position: absolute;
  content: "";
  width: 48px;
  height: 66px;
}
section.open .deco-slash::before {
  left: -47px;
  clip-path: polygon(0 0, 100% 100%, 100% 0);
  background: #F03800;
}
section.open .deco-slash::after {
  right: -47px;
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  background: #FF8731;
}
@media (max-width: 560px) {
  section.open .deco-slash {
    height: 37px;
    font-size: 24px;
    padding: 0 4px;
    margin: 0 auto 24px;
  }
  section.open .deco-slash::before, section.open .deco-slash::after {
    width: 27px;
    height: 37px;
  }
  section.open .deco-slash::before {
    left: -27px;
  }
  section.open .deco-slash::after {
    right: -27px;
  }
}
section.open .orange-box {
  border: 1px solid #F75C17;
  padding: 32px;
  background: #fff;
  text-align: left;
}
section.open .orange-box .flex {
  display: flex;
  align-items: center;
  gap: 32px;
}
section.open .orange-box .tag {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 158px;
  height: 56px;
  border-radius: 56px;
  color: #fff;
  font-size: 36px;
  font-weight: 500;
  background-image: linear-gradient(-90deg, #FF8731, #F03800);
}
section.open .orange-box p {
  font-size: 32px;
  font-weight: 600;
}
section.open .orange-box strong {
  font-weight: 600;
}
@media (max-width: 768px) {
  section.open .orange-box {
    padding: 20px;
  }
  section.open .orange-box .flex {
    display: block;
    text-align: center;
  }
  section.open .orange-box .tag {
    width: 120px;
    height: 40px;
    font-size: 24px;
    margin: 0 auto 8px;
  }
  section.open .orange-box p {
    font-size: 24px;
  }
}
@media (max-width: 560px) {
  section.open .orange-box .tag {
    width: 100px;
    height: 32px;
    font-size: 20px;
  }
  section.open .orange-box p {
    font-size: 20px;
  }
}
section.open .center {
  text-align: center;
}
section.open .icon-plus {
  display: block;
  color: #F75C17;
  font-size: 72px;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 560px) {
  section.open .icon-plus {
    font-size: 40px;
  }
}

section.worries {
  border-bottom: 1px solid #D5D5D5;
}
section.worries .hukidashi-head {
  position: relative;
  padding: 80px 48px 64px;
  background-image: linear-gradient(90deg, #508D50, #286038);
}
section.worries .hukidashi-head::before {
  position: absolute;
  content: "";
  width: 48px;
  height: 24px;
  left: calc(50% - 24px);
  bottom: -23px;
  background: #3C7644;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}
section.worries .hukidashi-head h2 {
  display: flex;
  justify-content: center;
  color: #fff;
  font-size: 64px;
  font-weight: 600;
  word-break: keep-all;
}
section.worries .hukidashi-head strong {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  color: #F75C17;
  font-size: 72px;
  font-weight: 600;
  background: #fff;
  margin: 0 4px;
}
@media (max-width: 768px) {
  section.worries .hukidashi-head {
    padding: 64px 32px 48px;
  }
  section.worries .hukidashi-head h2 {
    font-size: 56px;
  }
  section.worries .hukidashi-head strong {
    width: 72px;
    height: 72px;
    font-size: 64px;
    margin: 0 4px;
  }
}
@media (max-width: 560px) {
  section.worries .hukidashi-head {
    padding: 40px 24px;
  }
  section.worries .hukidashi-head h2 {
    font-size: 32px;
  }
  section.worries .hukidashi-head strong {
    width: 48px;
    height: 48px;
    font-size: 40px;
    margin: 0 2px;
  }
}
section.worries .sp {
  display: none;
}
section.worries .worries-box .box {
  position: relative;
  display: flex;
  align-items: center;
  height: 320px;
}
section.worries .worries-box .box:nth-child(even) {
  text-align: right;
  justify-content: flex-end;
}
section.worries .worries-box .box:nth-child(even) img {
  left: 0;
  right: auto;
}
section.worries .worries-box .box span {
  font-size: 40px;
  font-weight: 600;
}
section.worries .worries-box .box strong {
  color: #286038;
  font-size: 64px;
}
section.worries .worries-box .box img {
  position: absolute;
  right: 0;
  z-index: -1;
}
@media (max-width: 768px) {
  section.worries .worries-box .box {
    height: 240px;
  }
  section.worries .worries-box .box span {
    font-size: 32px;
  }
  section.worries .worries-box .box strong {
    font-size: 48px;
  }
  section.worries .worries-box .box img {
    width: auto;
    height: 100%;
  }
}
@media (max-width: 560px) {
  section.worries .worries-box .sp {
    display: block;
  }
  section.worries .worries-box .box span {
    font-size: 28px;
  }
  section.worries .worries-box .box strong {
    font-size: 40px;
  }
}
@media (max-width: 480px) {
  section.worries .worries-box .box {
    height: 190px;
  }
  section.worries .worries-box .box span {
    font-size: 24px;
  }
  section.worries .worries-box .box strong {
    font-size: 28px;
  }
}

section.reco {
  padding-top: 80px;
  text-align: center;
}
section.reco span {
  font-size: 32px;
  font-weight: 600;
}
section.reco strong {
  font-size: 48px;
  font-weight: 600;
}
section.reco p {
  font-size: 48px;
  font-weight: 600;
}
section.reco p .deco-slash {
  position: relative;
  display: inline-block;
  height: 66px;
  color: #fff;
  font-size: 48px;
  font-weight: bold;
  background-image: linear-gradient(-90deg, #FF8731, #F03800);
  margin: 24px 48px;
}
section.reco p .deco-slash::before, section.reco p .deco-slash::after {
  position: absolute;
  content: "";
  width: 48px;
  height: 66px;
}
section.reco p .deco-slash::before {
  left: -47px;
  clip-path: polygon(0 0, 100% 100%, 100% 0);
  background: #F03800;
}
section.reco p .deco-slash::after {
  right: -47px;
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  background: #FF8731;
}
section.reco img {
  margin-top: 64px;
}
@media (max-width: 768px) {
  section.reco {
    padding-top: 64px;
  }
  section.reco span {
    font-size: 28px;
  }
  section.reco strong {
    font-size: 36px;
  }
  section.reco p {
    font-size: 32px;
  }
  section.reco p .deco-slash {
    height: 48px;
    font-size: 32px;
    margin: 12px 24px;
  }
  section.reco p .deco-slash::before, section.reco p .deco-slash::after {
    width: 24px;
    height: 48px;
  }
  section.reco p .deco-slash::before {
    left: -23px;
  }
  section.reco p .deco-slash::after {
    right: -23px;
  }
  section.reco img {
    margin-top: 48px;
  }
}
@media (max-width: 560px) {
  section.reco {
    padding-top: 64px;
  }
  section.reco span {
    font-size: 28px;
  }
  section.reco strong {
    font-size: 36px;
  }
  section.reco p {
    font-size: 32px;
  }
  section.reco p .deco-slash {
    height: 48px;
    font-size: 32px;
    margin: 12px 24px;
  }
  section.reco p .deco-slash::before, section.reco p .deco-slash::after {
    width: 24px;
    height: 48px;
  }
  section.reco p .deco-slash::before {
    left: -23px;
  }
  section.reco p .deco-slash::after {
    right: -23px;
  }
  section.reco img {
    margin-top: 48px;
  }
}
@media (max-width: 480px) {
  section.reco {
    padding-top: 40px;
  }
  section.reco span {
    font-size: 20px;
  }
  section.reco strong {
    font-size: 24px;
  }
  section.reco p {
    font-size: 24px;
  }
  section.reco p .deco-slash {
    height: 33px;
    font-size: 24px;
    margin: 12px 24px;
  }
  section.reco p .deco-slash::before, section.reco p .deco-slash::after {
    width: 24px;
    height: 33px;
  }
  section.reco p .deco-slash::before {
    left: -23px;
  }
  section.reco p .deco-slash::after {
    right: -23px;
  }
  section.reco img {
    margin-top: 24px;
  }
}

section.reason {
  padding-bottom: 80px;
}
@media (max-width: 768px) {
  section.reason {
    padding-bottom: 64px;
  }
}
@media (max-width: 560px) {
  section.reason {
    padding-bottom: 40px;
  }
}
section.reason .head {
  margin-bottom: 56px;
  text-align: center;
}
section.reason .head span {
  display: inline-block;
  background: linear-gradient(-90deg, #F03800, #FF8731);
  background: -webkit-linear-gradient(0deg, #F03800, #FF8731);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 128px;
  font-weight: bold;
  margin: -80px auto 0;
}
section.reason .head h2 {
  font-size: 56px;
  font-weight: 600;
}
section.reason .head h2 strong {
  font-weight: 600;
}
@media (max-width: 768px) {
  section.reason .head span {
    font-size: 96px;
  }
  section.reason .head h2 {
    font-size: 48px;
  }
}
@media (max-width: 560px) {
  section.reason .head span {
    font-size: 64px;
  }
  section.reason .head h2 {
    font-size: 32px;
  }
}
section.reason .reason-box .box {
  margin-top: 48px;
}
section.reason .reason-box .box .img-box {
  position: relative;
  width: 672px;
  height: 400px;
  overflow: hidden;
}
section.reason .reason-box .box .img-box img {
  width: 672px;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  section.reason .reason-box .box .img-box {
    width: 100%;
  }
  section.reason .reason-box .box .img-box img {
    width: 100%;
  }
}
section.reason .reason-box .box .img-box .deco-slash {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  height: 62px;
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  padding: 0 8px 0 32px;
  background-image: linear-gradient(-90deg, #FF8731, #F03800);
}
section.reason .reason-box .box .img-box .deco-slash::after {
  position: absolute;
  content: "";
  width: 48px;
  height: 62px;
}
section.reason .reason-box .box .img-box .deco-slash::after {
  right: -47px;
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  background: #FF8731;
}
section.reason .reason-box .box .txt-box {
  padding: 40px;
  background: #FFF3EE;
}
section.reason .reason-box .box .txt-box h3 {
  font-size: 40px;
  font-weight: 600;
  border-bottom: 1px solid #D5D5D5;
  padding-bottom: 24px;
  margin-bottom: 24px;
  text-align: center;
}
section.reason .reason-box .box .txt-box p {
  font-size: 24px;
  font-weight: 500;
}
section.reason .reason-box .box .txt-box p strong {
  color: #F75C17;
}
@media (max-width: 768px) {
  section.reason .reason-box .box {
    margin-top: 32px;
  }
  section.reason .reason-box .box .img-box {
    height: 240px;
  }
  section.reason .reason-box .box .img-box img {
    height: 240px;
  }
  section.reason .reason-box .box .img-box .deco-slash {
    height: 48px;
    font-size: 20px;
    padding: 12px 8px 12px 24px;
  }
  section.reason .reason-box .box .img-box .deco-slash::after {
    width: 32px;
    height: 48px;
    right: -31px;
  }
  section.reason .reason-box .box .txt-box {
    padding: 24px;
  }
  section.reason .reason-box .box .txt-box h3 {
    font-size: 24px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  section.reason .reason-box .box .txt-box p {
    font-size: 18px;
  }
  section.reason .reason-box .box .txt-box .btn {
    height: 72px;
    margin-top: 32px;
  }
  section.reason .reason-box .box .txt-box .btn p {
    font-size: 20px;
  }
  section.reason .reason-box .box .txt-box .btn p .font-24 {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  section.reason .reason-box .box .txt-box .btn {
    height: 72px;
    margin-top: 20px;
  }
  section.reason .reason-box .box .txt-box .btn p {
    font-size: 16px;
  }
  section.reason .reason-box .box .txt-box .btn p .font-24 {
    font-size: 14px;
  }
}

section.voice .hukidashi-head {
  position: relative;
  padding: 80px 0 64px;
  background-image: linear-gradient(90deg, #508D50, #286038);
  text-align: center;
}
section.voice .hukidashi-head::before {
  position: absolute;
  content: "";
  width: 48px;
  height: 24px;
  left: calc(50% - 24px);
  bottom: -23px;
  background: #3C7644;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  z-index: 2;
}
section.voice .hukidashi-head h2 {
  display: flex;
  justify-content: center;
  color: #fff;
  font-size: 72px;
  font-weight: 600;
  word-break: keep-all;
  margin-bottom: 24px;
}
section.voice .hukidashi-head p {
  color: #fff;
  font-size: 32px;
}
@media (max-width: 768px) {
  section.voice .hukidashi-head {
    padding: 64px 0;
  }
  section.voice .hukidashi-head h2 {
    font-size: 48px;
    margin-bottom: 12px;
  }
  section.voice .hukidashi-head p {
    font-size: 24px;
  }
}
@media (max-width: 560px) {
  section.voice .hukidashi-head {
    padding: 40px 0;
  }
  section.voice .hukidashi-head h2 {
    font-size: 36px;
  }
  section.voice .hukidashi-head p {
    font-size: 20px;
  }
}
section.voice .slider-container {
  position: relative;
  padding: 80px 48px;
  background: url(../img/bg-slider.jpg) no-repeat;
  background-size: cover;
  overflow: hidden;
}
@media (max-width: 768px) {
  section.voice .slider-container {
    padding: 40px 24px 0;
  }
}
section.voice .slider-container .slider {
  display: flex;
  transition: transform 0.4s ease;
  cursor: grab;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  gap: 48px;
}
section.voice .slider-container .slider:active {
  cursor: grabbing;
}
section.voice .slider-container .slider .slider-box {
  width: 100%;
  min-width: 100%;
  border-radius: 16px;
  padding: 72px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}
section.voice .slider-container .slider .slider-box .flex {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 32px;
}
section.voice .slider-container .slider .slider-box .flex img {
  width: 180px;
  height: 180px;
  border-radius: 180px;
}
section.voice .slider-container .slider .slider-box .flex .txt h3 {
  color: #286038;
  font-size: 64px;
  font-weight: bold;
}
section.voice .slider-container .slider .slider-box .flex .txt p {
  color: #286038;
  font-size: 32px;
  font-weight: bold;
}
section.voice .slider-container .slider .slider-box p {
  font-size: 24px;
  font-weight: 500;
}
@media (max-width: 768px) {
  section.voice .slider-container .slider .slider-box {
    padding: 48px;
  }
  section.voice .slider-container .slider .slider-box .flex img {
    width: 136px;
    height: 136px;
  }
  section.voice .slider-container .slider .slider-box .flex .txt h3 {
    font-size: 48px;
  }
  section.voice .slider-container .slider .slider-box .flex .txt p {
    font-size: 24px;
  }
  section.voice .slider-container .slider .slider-box p {
    font-size: 20px;
  }
}
@media (max-width: 560px) {
  section.voice .slider-container .slider .slider-box {
    padding: 24px;
  }
  section.voice .slider-container .slider .slider-box .flex {
    margin-bottom: 12px;
  }
  section.voice .slider-container .slider .slider-box .flex img {
    width: 104px;
    height: 104px;
  }
  section.voice .slider-container .slider .slider-box .flex .txt h3 {
    font-size: 32px;
  }
  section.voice .slider-container .slider .slider-box .flex .txt p {
    font-size: 16px;
  }
  section.voice .slider-container .slider .slider-box p {
    font-size: 16px;
  }
}
section.voice .slider-container .slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  border-radius: 80px;
  background: #fff;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease, transform 0.3s ease;
  z-index: 10;
}
section.voice .slider-container .slider-btn:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
}
section.voice .slider-container .slider-btn.slider-prev {
  left: 16px;
}
section.voice .slider-container .slider-btn.slider-next {
  right: 16px;
}
@media (max-width: 768px) {
  section.voice .slider-container .slider-btn {
    width: 56px;
    height: 56px;
  }
  section.voice .slider-container .slider-btn.slider-prev {
    left: 4px;
  }
  section.voice .slider-container .slider-btn.slider-next {
    right: 4px;
  }
  section.voice .slider-container .slider-btn img {
    width: 12px;
    height: auto;
  }
}
@media (max-width: 560px) {
  section.voice .slider-container .slider-btn {
    width: 40px;
    height: 40px;
  }
  section.voice .slider-container .slider-btn img {
    width: 8px;
  }
}
section.voice .slider-container .slider-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
section.voice .slider-container .slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
section.voice .slider-container .slider-dots .dot.active {
  background: #fff;
  transform: scale(1.3);
}
section.voice .slider-container .slider-dots .dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

section.campaign {
  padding: 80px 0 64px;
  background: #E1F0E1;
}
section.campaign h2 {
  text-align: center;
  color: #286038;
  font-size: 56px;
  font-weight: 600;
  margin-bottom: 48px;
}
section.campaign h2 .marker {
  background: linear-gradient(transparent 50%, #FFF600 50%);
}
section.campaign p {
  font-size: 28px;
  font-weight: 500;
  text-align: center;
}
section.campaign .orange-box {
  position: relative;
  border: 1px solid #F75C17;
  padding: 48px 48px 32px;
  background: #fff;
  text-align: center;
  margin-top: 64px;
}
section.campaign .orange-box .tag {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: -30px;
  left: calc((100% - 158px) / 2);
  width: 158px;
  height: 56px;
  border-radius: 56px;
  color: #fff;
  font-size: 36px;
  font-weight: 500;
  background-image: linear-gradient(-90deg, #FF8731, #F03800);
}
section.campaign .orange-box p {
  font-size: 32px;
  font-weight: 600;
}
section.campaign .orange-box strong {
  color: #F75C17;
  font-size: 48px;
}
section.campaign small {
  display: block;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  margin-top: 24px;
}
@media (max-width: 768px) {
  section.campaign {
    padding: 64px 0 64px;
  }
  section.campaign h2 {
    font-size: 40px;
    margin-bottom: 16px;
  }
  section.campaign p {
    font-size: 20px;
  }
  section.campaign .orange-box {
    padding: 48px 48px 32px;
    margin-top: 64px;
  }
  section.campaign .orange-box .tag {
    top: -22px;
    left: calc((100% - 120px) / 2);
    width: 120px;
    height: 40px;
    font-size: 24px;
  }
  section.campaign .orange-box p {
    font-size: 24px;
  }
  section.campaign .orange-box strong {
    font-size: 32px;
  }
}
@media (max-width: 560px) {
  section.campaign {
    padding: 40px 0;
  }
  section.campaign h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 16px;
  }
  section.campaign p {
    font-size: 16px;
  }
  section.campaign p br {
    display: none;
  }
  section.campaign .orange-box {
    padding: 32px 20px 20px;
    margin-top: 40px;
  }
  section.campaign .orange-box .tag {
    top: -16px;
    left: calc((100% - 100px) / 2);
    width: 100px;
    height: 32px;
    font-size: 20px;
  }
  section.campaign .orange-box p {
    font-size: 20px;
  }
  section.campaign .orange-box strong {
    font-size: 24px;
  }
  section.campaign small {
    font-size: 14px;
    margin-top: 20px;
  }
}

section.plan {
  padding: 80px 0 64px;
}
@media (max-width: 768px) {
  section.plan {
    padding: 64px 0 48px;
  }
}
@media (max-width: 560px) {
  section.plan {
    padding: 40px 0 40px;
  }
}
section.plan .orange-box {
  position: relative;
  border: 1px solid #F75C17;
  padding: 40px;
  background: #fff;
  margin-bottom: 80px;
}
section.plan .orange-box .img-tag {
  position: absolute;
  top: 24px;
  right: -24px;
}
section.plan .orange-box .flex {
  display: flex;
  justify-content: space-between;
  align-items: last baseline;
}
section.plan .orange-box .tag {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 158px;
  height: 56px;
  border-radius: 56px;
  color: #fff;
  font-size: 36px;
  font-weight: 500;
  background-image: linear-gradient(-90deg, #FF8731, #F03800);
  margin-bottom: 24px;
}
section.plan .orange-box p {
  font-size: 32px;
  font-weight: 600;
}
section.plan .orange-box strong {
  color: #F75C17;
  font-size: 48px;
}
@media (max-width: 768px) {
  section.plan .orange-box {
    padding: 40px 56px;
  }
  section.plan .orange-box .tag {
    font-size: 32px;
  }
}
@media (max-width: 640px) {
  section.plan .orange-box {
    padding: 40px;
    margin-bottom: 48px;
  }
  section.plan .orange-box .img-tag {
    width: 280px;
    height: auto;
  }
  section.plan .orange-box .tag {
    width: 120px;
    height: 48px;
    font-size: 24px;
  }
  section.plan .orange-box p {
    font-size: 24px;
  }
  section.plan .orange-box strong {
    font-size: 32px;
  }
}
@media (max-width: 560px) {
  section.plan .orange-box {
    padding: 32px 40px;
    margin-bottom: 40px;
  }
  section.plan .orange-box .img-tag {
    width: 248px;
    top: 16px;
    right: -18px;
  }
  section.plan .orange-box .tag {
    width: 108px;
    height: 32px;
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  section.plan .orange-box {
    padding: 24px;
  }
  section.plan .orange-box .img-tag {
    width: 220px;
    right: -16px;
  }
  section.plan .orange-box .flex img {
    width: 18px;
    height: auto;
  }
  section.plan .orange-box p {
    font-size: 16px;
  }
}
section.plan .hukidashi-head-orange {
  position: relative;
  padding: 24px 0;
  background-image: linear-gradient(90deg, #F03800, #FF8731);
  text-align: center;
}
section.plan .hukidashi-head-orange::before {
  position: absolute;
  content: "";
  width: 48px;
  height: 24px;
  left: calc(50% - 24px);
  bottom: -23px;
  background: #F86019;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}
section.plan .hukidashi-head-orange h2 {
  color: #fff;
  font-size: 56px;
  font-weight: 600;
}
@media (max-width: 768px) {
  section.plan .hukidashi-head-orange {
    padding: 16px 0;
  }
  section.plan .hukidashi-head-orange h2 {
    font-size: 40px;
  }
}
@media (max-width: 560px) {
  section.plan .hukidashi-head-orange h2 {
    font-size: 32px;
  }
}
section.plan .plan-box {
  margin-top: 48px;
}
section.plan .plan-box .deco-slash {
  position: relative;
  display: inline-block;
  height: 62px;
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  padding: 10px 8px 10px 32px;
  background-image: linear-gradient(-90deg, #FF8731, #F03800);
}
section.plan .plan-box .deco-slash::after {
  position: absolute;
  content: "";
  width: 48px;
  height: 62px;
  top: 0;
  right: -47px;
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  background: #FF8731;
}
section.plan .plan-box .box {
  padding: 40px;
  background: #fff;
}
section.plan .plan-box .box h3 {
  font-size: 40px;
  font-weight: 600;
  border-bottom: 1px solid #D5D5D5;
  padding-bottom: 24px;
  margin-bottom: 24px;
  text-align: center;
}
section.plan .plan-box .box p {
  font-size: 24px;
  font-weight: 500;
  margin-top: 24px;
}
section.plan .plan-box .box p strong {
  color: #F75C17;
  font-weight: 600;
}
@media (max-width: 768px) {
  section.plan .plan-box .deco-slash {
    height: 48px;
    font-size: 20px;
    padding: 12px 8px 12px 24px;
  }
  section.plan .plan-box .deco-slash::after {
    width: 32px;
    height: 48px;
    right: -31px;
  }
  section.plan .plan-box .box {
    padding: 24px;
  }
  section.plan .plan-box .box h3 {
    font-size: 18px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  section.plan .plan-box .box p {
    font-size: 18px;
    margin-top: 20px;
  }
}

section.flow {
  padding: 0 0 48px;
  background: #E1F0E1;
}
section.flow .hukidashi-head {
  position: relative;
  padding: 80px 48px;
  background: url(../img/bg-flow.jpg) no-repeat;
  background-size: cover;
  text-align: center;
}
section.flow .hukidashi-head::before {
  position: absolute;
  content: "";
  width: 48px;
  height: 24px;
  left: calc(50% - 24px);
  bottom: -23px;
  background: #3C7744;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}
section.flow .hukidashi-head h2 {
  display: flex;
  justify-content: center;
  color: #fff;
  font-size: 48px;
  font-weight: 600;
  word-break: keep-all;
  margin-bottom: 24px;
}
section.flow .hukidashi-head p {
  font-size: 20px;
  color: #fff;
}
@media (max-width: 768px) {
  section.flow .hukidashi-head {
    padding: 64px 24px;
  }
  section.flow .hukidashi-head h2 {
    font-size: 36px;
    margin-bottom: 16px;
    word-break: break-all;
  }
  section.flow .hukidashi-head p {
    font-size: 18px;
  }
  section.flow .hukidashi-head p br {
    display: none;
  }
}
@media (max-width: 560px) {
  section.flow .hukidashi-head {
    padding: 40px 24px;
  }
  section.flow .hukidashi-head h2 {
    font-size: 32px;
  }
  section.flow .hukidashi-head p {
    font-size: 16px;
  }
}
section.flow .flow-box .box {
  margin-top: 48px;
}
section.flow .flow-box .box .img-box {
  position: relative;
  width: 672px;
  height: 400px;
  overflow: hidden;
}
section.flow .flow-box .box .img-box img {
  width: 672px;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  section.flow .flow-box .box .img-box {
    width: 100%;
  }
  section.flow .flow-box .box .img-box img {
    width: 100%;
  }
}
section.flow .flow-box .box .img-box .deco-slash {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  height: 62px;
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  padding: 0 8px 0 32px;
  background-image: linear-gradient(90deg, #508D50, #286038);
}
section.flow .flow-box .box .img-box .deco-slash::after {
  position: absolute;
  content: "";
  width: 48px;
  height: 62px;
}
section.flow .flow-box .box .img-box .deco-slash::after {
  right: -47px;
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  background: #286038;
}
section.flow .flow-box .box .txt-box {
  padding: 40px;
  background: #fff;
}
section.flow .flow-box .box .txt-box h3 {
  font-size: 40px;
  font-weight: 600;
  border-bottom: 1px solid #D5D5D5;
  padding-bottom: 24px;
  margin-bottom: 24px;
  text-align: center;
}
section.flow .flow-box .box .txt-box p {
  font-size: 24px;
  font-weight: 500;
}
section.flow .flow-box .box .txt-box p strong {
  color: #F75C17;
}
section.flow .flow-box .box .txt-box .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 110px;
  border-radius: 110px;
  color: #fff;
  border: 1px solid #9D6D5F;
  background-image: linear-gradient(180deg, #FF8731, #F03800);
  margin-top: 32px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}
section.flow .flow-box .box .txt-box .btn p {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 4px;
}
section.flow .flow-box .box .txt-box .btn p .font-24 {
  font-weight: 500;
}
@media (max-width: 768px) {
  section.flow .flow-box .box {
    margin-top: 32px;
  }
  section.flow .flow-box .box .img-box {
    height: 240px;
  }
  section.flow .flow-box .box .img-box img {
    height: 240px;
  }
  section.flow .flow-box .box .img-box .deco-slash {
    height: 48px;
    font-size: 20px;
    padding: 12px 8px 12px 24px;
  }
  section.flow .flow-box .box .img-box .deco-slash::after {
    width: 32px;
    height: 48px;
    right: -31px;
  }
  section.flow .flow-box .box .txt-box {
    padding: 24px;
  }
  section.flow .flow-box .box .txt-box h3 {
    font-size: 24px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  section.flow .flow-box .box .txt-box p {
    font-size: 18px;
  }
  section.flow .flow-box .box .txt-box .btn {
    height: 72px;
    margin-top: 32px;
  }
  section.flow .flow-box .box .txt-box .btn p {
    font-size: 20px;
  }
  section.flow .flow-box .box .txt-box .btn p .font-24 {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  section.flow .flow-box .box .txt-box .btn {
    height: 72px;
    margin-top: 20px;
  }
  section.flow .flow-box .box .txt-box .btn p {
    font-size: 16px;
  }
  section.flow .flow-box .box .txt-box .btn p .font-24 {
    font-size: 14px;
  }
}

section.faq {
  padding: 80px 0;
}
section.faq h2 {
  display: block;
  background: linear-gradient(-90deg, #508D50, #286038);
  background: -webkit-linear-gradient(0deg, #508D50, #286038);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 80px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 48px;
}
section.faq .faq-box .box {
  border-bottom: 1px solid #ddd;
  overflow: hidden;
}
section.faq .faq-box .box:first-child {
  border-top: 1px solid #ddd;
}
section.faq .faq-box .box .question-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  background: #fff;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.3s ease;
}
section.faq .faq-box .box .question-btn:hover {
  background-color: #f5f5f5;
}
section.faq .faq-box .box .question-btn .question {
  position: relative;
  flex: 1;
  color: #303030;
  font-size: 24px;
  font-weight: bold;
  padding-left: 48px;
}
section.faq .faq-box .box .question-btn .question::before {
  position: absolute;
  content: "Q.";
  top: -4px;
  left: 0;
  color: #286038;
  font-size: 32px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
}
section.faq .faq-box .box .question-btn .icon {
  font-size: 32px;
  font-weight: bold;
  color: #286038;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}
section.faq .faq-box .box .answer {
  position: relative;
  max-height: 0;
  overflow: hidden;
  padding: 0 24px 0 48px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  margin: 0 24px;
}
section.faq .faq-box .box .answer::before {
  position: absolute;
  content: "A.";
  top: 20px;
  left: 0;
  color: #F75C17;
  font-size: 32px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
}
section.faq .faq-box .box.active .answer {
  max-height: 500px;
  padding: 24px 0 24px 48px;
  margin: 0 24px;
  border-top: 1px solid #ddd;
}
@media (max-width: 768px) {
  section.faq h2 {
    font-size: 64px;
  }
  section.faq .faq-box .box .question-btn .question {
    font-size: 20px;
    padding-left: 40px;
  }
  section.faq .faq-box .box .question-btn .question::before {
    font-size: 28px;
  }
  section.faq .faq-box .box .answer {
    font-size: 18px;
    padding-left: 40px;
  }
  section.faq .faq-box .box .answer::before {
    font-size: 28px;
  }
  section.faq .faq-box .box.active .answer {
    padding-left: 40px;
  }
}
@media (max-width: 560px) {
  section.faq {
    padding: 40px 0;
  }
  section.faq h2 {
    font-size: 48px;
    margin-bottom: 24px;
  }
  section.faq .faq-box .box .question-btn {
    padding: 16px;
  }
  section.faq .faq-box .box .question-btn .question {
    font-size: 18px;
    padding-left: 40px;
  }
  section.faq .faq-box .box .question-btn .question::before {
    font-size: 28px;
  }
  section.faq .faq-box .box .answer {
    font-size: 16px;
    margin: 0 16px;
    padding-left: 40px;
  }
  section.faq .faq-box .box .answer::before {
    font-size: 28px;
  }
  section.faq .faq-box .box.active .answer {
    margin: 0 16px;
    padding: 16px;
    padding-left: 40px;
  }
}

section.contact {
  padding: 80px 0 40px;
  background: #F5F5F5;
}
@media (max-width: 768px) {
  section.contact {
    padding: 64px 0 40px;
  }
}
@media (max-width: 560px) {
  section.contact {
    padding: 40px 0;
  }
}
section.contact .hukidashi {
  position: relative;
  text-align: center;
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 32px;
  padding: 24px;
  border-radius: 96px;
  background: #F75C17;
}
section.contact .hukidashi::before {
  position: absolute;
  content: "";
  width: 48px;
  height: 24px;
  left: calc(50% - 24px);
  bottom: -23px;
  background: #F86019;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}
@media (max-width: 768px) {
  section.contact .hukidashi {
    font-size: 28px;
    padding: 16px;
  }
  section.contact .hukidashi::before {
    width: 32px;
    height: 16px;
    bottom: -15px;
    left: calc(50% - 16px);
  }
}
@media (max-width: 560px) {
  section.contact .hukidashi {
    font-size: 24px;
  }
}
section.contact p {
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  section.contact p {
    font-size: 20px;
  }
}
section.contact .contact-box {
  max-width: 672px;
  width: 100%;
  margin: 0 auto;
}
section.contact .contact-box form.wpcf7-form p {
  margin: 0;
}
section.contact .contact-box form.wpcf7-form br {
  display: none;
}
section.contact .contact-box .wpcf7-not-valid-tip {
  text-align: left;
  font-size: 15px;
}
section.contact .contact-box .form-group {
  margin-bottom: 40px;
}
section.contact .contact-box .form-group label {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}
section.contact .contact-box .form-group label .required {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 72px;
  height: 36px;
  border-radius: 36px;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-right: 16px;
  background: #F75C17;
}
section.contact .contact-box .form-group input[type=date] {
  -webkit-appearance: none; /* Safari/iOS向け */
  -moz-appearance: none;
       appearance: none;
  /* 他のスタイル指定 (例: width, padding, border) を追加 */
  width: 100%;
  box-sizing: border-box; /* paddingやborderをwidthに含める */
}
section.contact .contact-box .form-group input[type=text],
section.contact .contact-box .form-group input[type=tel],
section.contact .contact-box .form-group input[type=email],
section.contact .contact-box .form-group input[type=number],
section.contact .contact-box .form-group input[type=date],
section.contact .contact-box .form-group textarea {
  width: 100%;
  padding: 20px 24px;
  border: 2px solid #D5D5D5;
  border-radius: 8px;
  font-size: 24px;
  color: #303030;
  background: #fff;
  transition: border-color 0.3s ease;
  -webkit-appearance: none; /* Safari/iOS向け */
  -moz-appearance: none;
       appearance: none;
  text-align: left;
}
section.contact .contact-box .form-group input[type=text]:focus,
section.contact .contact-box .form-group input[type=tel]:focus,
section.contact .contact-box .form-group input[type=email]:focus,
section.contact .contact-box .form-group input[type=number]:focus,
section.contact .contact-box .form-group input[type=date]:focus,
section.contact .contact-box .form-group textarea:focus {
  outline: none;
  border-color: #286038;
}
section.contact .contact-box .form-group input[type=text]::-moz-placeholder, section.contact .contact-box .form-group input[type=tel]::-moz-placeholder, section.contact .contact-box .form-group input[type=email]::-moz-placeholder, section.contact .contact-box .form-group input[type=number]::-moz-placeholder, section.contact .contact-box .form-group input[type=date]::-moz-placeholder, section.contact .contact-box .form-group textarea::-moz-placeholder {
  color: #A6A6A6;
}
section.contact .contact-box .form-group input[type=text]::placeholder,
section.contact .contact-box .form-group input[type=tel]::placeholder,
section.contact .contact-box .form-group input[type=email]::placeholder,
section.contact .contact-box .form-group input[type=number]::placeholder,
section.contact .contact-box .form-group input[type=date]::placeholder,
section.contact .contact-box .form-group textarea::placeholder {
  color: #A6A6A6;
}
section.contact .contact-box .form-group select {
  -webkit-appearance: none; /* Safari/iOS向け */
  -moz-appearance: none;
       appearance: none;
  /* 他のスタイル指定 (例: width, padding, border) を追加 */
  width: 100%;
  box-sizing: border-box; /* paddingやborderをwidthに含める */
  width: 100%;
  padding: 20px 24px;
  border: 2px solid #D5D5D5;
  border-radius: 8px;
  color: #303030;
  font-size: 24px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.3s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23303030' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  margin-top: 16px;
}
section.contact .contact-box .form-group select:focus {
  outline: none;
  border-color: #286038;
}
section.contact .contact-box .form-group textarea {
  resize: vertical;
  min-height: 372px;
}
section.contact .contact-box .form-group .radio-group .first {
  margin: 0;
}
section.contact .contact-box .form-group .radio-group p {
  text-align: left;
}
section.contact .contact-box .form-group .radio-group label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 24px;
  font-weight: 500;
}
section.contact .contact-box .form-group .radio-group label input[type=radio] {
  width: 32px;
  height: 32px;
  margin-right: 8px;
  cursor: pointer;
  accent-color: #286038;
  border: 2px solid #D5D5D5;
}
section.contact .contact-box .form-group .radio-group label span {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
section.contact .contact-box .form-group .submit-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 420px;
  height: 77px;
  padding: 20px;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  background-image: linear-gradient(-90deg, #FF8731, #F03800);
  border: 1px solid #9D6D5F;
  border-radius: 80px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin: 0 auto;
}
section.contact .contact-box .form-group .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
section.contact .contact-box .form-group .submit-btn:active {
  transform: translateY(0);
}
@media (max-width: 768px) {
  section.contact .contact-box .wpcf7-date::before {
    width: 100%;
    content: "希望日程";
    font-size: 16px;
  }
  section.contact .contact-box _:lang(x)::-moz-placeholder .wpcf7-date {
    position: relative;
    width: 100% !important;
    height: 48px;
    margin: 0 0 10px 0;
    text-align: left;
  }
  section.contact .contact-box _:lang(x)::-moz-placeholder .wpcf7-date::before {
    content: "年／月／日";
    width: 100% !important;
    font-size: 16px;
    color: #A6A6A6;
  }
  section.contact .contact-box .form-group {
    margin-bottom: 24px;
  }
  section.contact .contact-box .form-group label {
    font-size: 18px;
  }
  section.contact .contact-box .form-group label .required {
    width: 60px;
    height: 25px;
    font-size: 14px;
  }
  section.contact .contact-box .form-group input[type=text],
  section.contact .contact-box .form-group input[type=tel],
  section.contact .contact-box .form-group input[type=email],
  section.contact .contact-box .form-group input[type=number],
  section.contact .contact-box .form-group input[type=date],
  section.contact .contact-box .form-group textarea,
  section.contact .contact-box .form-group select {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    box-sizing: border-box;
  }
  section.contact .contact-box .form-group select {
    padding-right: 36px;
  }
  section.contact .contact-box .form-group .radio-group {
    gap: 24px;
  }
  section.contact .contact-box .form-group .radio-group label input[type=radio] {
    width: 20px;
    height: 20px;
  }
  section.contact .contact-box .form-group .radio-group span {
    font-size: 20px;
  }
  section.contact .contact-box .form-group .submit-btn {
    width: 100%;
    padding: 16px;
    font-size: 20px;
  }
}

footer {
  width: 768px;
  margin: 0 auto;
  padding: 64px 0;
  background: #7ec058;
  text-align: center;
  margin-bottom: 132px;
}
footer a {
  display: inline-block;
}
footer a:hover {
  opacity: 0.6;
  transform: translateY(0) !important;
  box-shadow: none !important;
}
footer .logo {
  margin: 40px 0;
}
footer small {
  display: block;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
}
@media (max-width: 768px) {
  footer {
    width: 100%;
    margin-bottom: 104px;
  }
}
@media (max-width: 560px) {
  footer {
    padding: 40px 0;
    margin-bottom: 88px;
  }
  footer a img {
    width: 48px;
    height: 48px;
  }
  footer .logo {
    margin: 16px 0;
  }
  footer small {
    font-size: 14px;
  }
}

section.contact-completed {
  background: #E1F0E1;
}
section.contact-completed h1 {
  color: #fff;
  font-size: 48px;
  font-weight: 600;
  position: relative;
  padding: 80px 48px;
  background: url(../img/bg-flow.jpg) no-repeat;
  background-size: cover;
  text-align: center;
}
section.contact-completed .completed-box {
  padding: 48px 0;
}
section.contact-completed .completed-box h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 24px;
  text-align: center;
}
section.contact-completed .completed-box p {
  font-size: 16px;
}
section.contact-completed .completed-box .completed-button a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 56px;
  border-radius: 56px;
  color: #fff;
  font-size: 20px;
  background: #286038;
  margin: 40px auto 0;
}
@media (max-width: 560px) {
  section.contact-completed h1 {
    font-size: 32px;
  }
  section.contact-completed .completed-box h2 {
    font-size: 24px;
  }
}

footer.page-footer {
  margin-bottom: 0;
}/*# sourceMappingURL=style.css.map */