@charset "UTF-8";
body {
  font-family: "Inter", sans-serif;
}

ul li {
  list-style: none;
}

a {
  text-decoration: none;
}

.mb_br {
  display: none;
}
@media (width < 431px) {
  .mb_br {
    display: block;
  }
}

/*----------タイトルボックス----------*/
.title_box {
  color: #fff;
  background-color: #000;
  font-weight: bold;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  will-change: clip-path;
}

/*----------サブタイトル下線----------*/
.title_decoration {
  position: relative;
}

.title_decoration::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%; /* 親要素の中央に置く */
  transform: translateX(-50%); /* 幅の半分ずらして中央揃え */
  display: block;
  width: 50px;
  background-color: #FAAF0D;
  height: 2px;
}
@media (width < 431px) {
  .title_decoration::after {
    bottom: -10px;
  }
}

/*----------フェード----------*/
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

/*----------リヴィール----------*/
.title_box.is-active {
  -webkit-animation: revealText 1.5s ease forwards;
          animation: revealText 1.5s ease forwards;
}

@-webkit-keyframes revealText {
  to {
    -webkit-clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 100%, 0 100%);
  }
}

@keyframes revealText {
  to {
    -webkit-clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 100%, 0 100%);
  }
}
/*----------ヘッダー----------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background-color: #fff;
}
header a {
  color: #000;
  font-weight: bold;
  transition: all 0.3s ease;
}
header a:hover {
  opacity: 0.4;
}

.slide_nav_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 15px;
}
@media (width < 1441px) {
  .slide_nav_wrapper {
    padding: 20px 5%;
  }
}
@media (width < 769px) {
  .slide_nav_wrapper {
    display: none;
  }
}

.header_logo {
  display: inline-block;
  width: 181px;
  height: 46px;
}
@media (width < 431px) {
  .header_logo {
    width: 104px;
    height: 26px;
  }
}
.header_logo img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.header_pc_nav {
  width: 50%;
}
@media (width < 1101px) {
  .header_pc_nav {
    width: 60%;
  }
}
.header_pc_nav ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.header_pc_nav .contact_btn {
  background-color: #000;
  width: 150px;
  height: 50px;
  transition: all 0.3s ease;
}
.header_pc_nav .contact_btn:hover {
  border-radius: 15px;
}
.header_pc_nav .contact_btn a {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.contact_formbtn:hover {
  border-radius: 15px;
}

.mb_header__container {
  display: none;
  align-items: center;
  justify-content: space-between;
}
@media (width < 769px) {
  .mb_header__container {
    display: flex;
    padding-left: 3%;
  }
}

/* ===============================================
ハンバーガーボタンのスタイリング
=============================================== */
.hamburger {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 100px;
  margin: 0;
  cursor: pointer;
  position: relative;
  z-index: 550;
  transition: 0.5s all;
}

@media (width < 769px) {
  .hamburger {
    width: 120px;
    height: 80px;
  }
}
@media (width < 431px) {
  .hamburger {
    width: 80px;
    height: 70px;
  }
}
.hamburger span,
.hamburger span::after,
.hamburger span::before {
  position: absolute;
  display: block;
  content: "";
  width: 50px;
  height: 3px;
  background-color: #404040;
  transition: all 0.5s;
}

@media (width < 1281px) {
  .hamburger span,
.hamburger span::after,
.hamburger span::before {
    width: 30px;
  }
}
.hamburger span::before {
  top: -10px;
}

.hamburger span::after {
  bottom: -10px;
}

.hamburger.open span {
  background-color: transparent;
}

.hamburger.open span::before {
  top: 0;
  transform: rotate(45deg);
  background-color: #fff;
}

.hamburger.open span::after {
  bottom: 0;
  transform: rotate(-45deg);
  background-color: #fff;
}

/* ===============================================
メニューのスタイリング
=============================================== */
.mb_nav {
  position: fixed;
  width: 60%;
  height: 100vh;
  top: 0;
  right: -120%;
  background-color: #404040;
  opacity: 0.9;
  padding: 100px 0;
  transition: all 0.5s;
  z-index: 500;
}

@media (width < 431px) {
  .mb_nav {
    width: 100%;
    padding: 30% 0 100px 0;
  }
}
.mb_nav__list {
  display: block;
}

.mb_nav__list li {
  padding-left: 5%;
}

.mb_nav__item a {
  display: block;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  padding: 20px 0 20px 50px;
  text-transform: uppercase;
}

.mb_nav__item a:hover {
  color: #0f5474;
  background-color: #fff;
  width: 60%;
}

@media (width < 1101px) {
  .mb_nav__item a:hover {
    width: 80%;
  }
}
@media (width < 769px) {
  .mb_nav__item a:hover {
    width: 100%;
  }
}
.mb_nav.open {
  right: 0;
}

.mb_header__container {
  display: none;
  align-items: center;
  justify-content: space-between;
}
@media (width < 769px) {
  .mb_header__container {
    display: flex;
  }
}

/* ===============================================
ファーストビュー
=============================================== */
.fv {
  position: relative;
}

.fv_wrapper {
  padding: 7% 0 12% 0;
  position: relative;
}
@media (width < 1281px) {
  .fv_wrapper {
    padding: 9% 0 12% 0;
  }
}
@media (width < 1101px) {
  .fv_wrapper {
    padding: 12% 0 12% 0;
  }
}
@media (width < 769px) {
  .fv_wrapper {
    padding: 12% 0 15% 0;
  }
}
@media (width < 431px) {
  .fv_wrapper {
    padding: 20% 0 20% 0;
  }
}

.fv_wrapper::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 85vh;
  background-color: #FACF0D;
}
@media (width < 1441px) {
  .fv_wrapper::after {
    height: 75vh;
  }
}
@media (width < 1281px) {
  .fv_wrapper::after {
    height: 70vh;
  }
}
@media (width < 1101px) {
  .fv_wrapper::after {
    height: 50vh;
  }
}

.fv_inner {
  max-width: 1540px;
  margin: 0 auto;
  position: relative;
  padding: 0 15px;
}
@media (width < 1537px) {
  .fv_inner {
    max-width: 1440px;
  }
}
@media (width < 1441px) {
  .fv_inner {
    max-width: 1280px;
  }
}
@media (width < 1281px) {
  .fv_inner {
    padding: 0 3%;
  }
}

.fv_img {
  width: 100%;
}
@media (width < 769px) {
  .fv_img {
    display: none;
  }
}
.fv_img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.fv_mb_img {
  display: none;
}
@media (width < 769px) {
  .fv_mb_img {
    display: block;
    width: 100%;
  }
  .fv_mb_img img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
}

.fv_title {
  position: absolute;
  left: 5%;
  top: 50%;
}
@media (width < 431px) {
  .fv_title {
    left: 3%;
    top: 55%;
  }
}
.fv_title h1 {
  font-size: 35px;
  padding: 15px 50px 15px 30px;
  margin-bottom: 15px;
  display: inline-block;
}
@media (width < 1101px) {
  .fv_title h1 {
    font-size: 30px;
  }
}
@media (width < 431px) {
  .fv_title h1 {
    font-size: 25px;
  }
}
.fv_title p {
  font-size: 30px;
  padding: 20px 50px 20px 30px;
}
@media (width < 1101px) {
  .fv_title p {
    font-size: 25px;
  }
}
@media (width < 431px) {
  .fv_title p {
    font-size: 20px;
  }
}

/* スクロールダウンの位置 */
.scroll {
  position: absolute;
  right: 13%;
  bottom: 20%;
  writing-mode: vertical-rl;
  font-size: 25px;
  white-space: nowrap;
}
@media (width < 1441px) {
  .scroll {
    right: 10%;
  }
}
@media (width < 1281px) {
  .scroll {
    right: 7%;
  }
}
@media (width < 769px) {
  .scroll {
    bottom: 15%;
  }
}

@media (width < 769px) {
  .scroll {
    font-size: 16px;
  }
}
@media (width < 431px) {
  .scroll {
    display: none;
  }
}
/* 線のアニメーション部分 */
.scroll::before {
  -webkit-animation: scroll 2s infinite;
  animation: scroll 2s infinite;
  background-color: #000;
  bottom: -115px;
  content: "";
  height: 100px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 15%;
  width: 1px;
}

/* 線のアニメーション */
@-webkit-keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
/* ===============================================
アバウト
=============================================== */
.about {
  position: relative;
}

.about_title {
  position: absolute;
  top: -75px;
  left: 50%;
  transform: translateX(-50%); /* 幅の半分ずらして中央揃え */
}
@media (width < 769px) {
  .about_title {
    top: -55px;
  }
}
@media (width < 431px) {
  .about_title {
    top: -35px;
  }
}
.about_title h2 {
  font-weight: bold;
  font-size: 100px;
  letter-spacing: 0.5rem;
}
@media (width < 1281px) {
  .about_title h2 {
    font-size: 90px;
  }
}
@media (width < 1101px) {
  .about_title h2 {
    font-size: 80px;
  }
}
@media (width < 769px) {
  .about_title h2 {
    font-size: 70px;
    white-space: nowrap;
  }
}
@media (width < 431px) {
  .about_title h2 {
    font-size: 45px;
  }
}
.about_title p {
  font-weight: bold;
  font-size: 25px;
  text-align: center;
}
@media (width < 1101px) {
  .about_title p {
    font-size: 20px;
  }
}
@media (width < 769px) {
  .about_title p {
    font-size: 18px;
  }
}
@media (width < 431px) {
  .about_title p {
    font-size: 16px;
  }
}

.about_inner {
  padding: 10% 0;
}
@media (width < 1281px) {
  .about_inner {
    padding: 13% 0;
  }
}
@media (width < 769px) {
  .about_inner {
    padding: 18% 0;
  }
}
@media (width < 431px) {
  .about_inner {
    padding: 25% 0;
  }
}

.about_contents {
  max-width: 1280px;
  margin: 0 auto;
}
.about_contents p {
  font-size: 18px;
  line-height: 4rem;
  text-align: center;
}
@media (width < 1101px) {
  .about_contents p {
    font-size: 16px;
    line-height: 3.5rem;
  }
}
@media (width < 431px) {
  .about_contents p {
    font-size: 12px;
    line-height: 2.5rem;
  }
}

/* ===============================================
サービス
=============================================== */
.service {
  background-color: #E4E6E9;
}

.service_wrapper {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
}
@media (width < 1441px) {
  .service_wrapper {
    padding: 0 5%;
  }
}
@media (width < 1281px) {
  .service_wrapper {
    padding: 0 3%;
  }
}

.service_title {
  display: inline-block;
  position: absolute;
  left: 0%;
  top: -75px;
}
@media (width < 1441px) {
  .service_title {
    left: 5%;
  }
}
@media (width < 1281px) {
  .service_title {
    left: 3%;
  }
}
@media (width < 431px) {
  .service_title {
    top: -35px;
  }
}
.service_title h2 {
  font-size: 100px;
  font-weight: bold;
  letter-spacing: 0.5rem;
}
@media (width < 1281px) {
  .service_title h2 {
    font-size: 90px;
  }
}
@media (width < 1101px) {
  .service_title h2 {
    font-size: 80px;
  }
}
@media (width < 769px) {
  .service_title h2 {
    font-size: 70px;
    white-space: nowrap;
  }
}
@media (width < 431px) {
  .service_title h2 {
    font-size: 45px;
  }
}
.service_title p {
  font-weight: bold;
  font-size: 25px;
  text-align: right;
  padding-right: 1rem;
}
@media (width < 1101px) {
  .service_title p {
    font-size: 20px;
  }
}
@media (width < 769px) {
  .service_title p {
    font-size: 18px;
  }
}
@media (width < 431px) {
  .service_title p {
    font-size: 16px;
  }
}

.title_decoration_right {
  position: relative;
}

.title_decoration_right::after {
  content: "";
  position: absolute;
  bottom: 45%;
  right: 30%;
  display: block;
  width: 50px;
  background-color: #FAAF0D;
  height: 2px;
}
@media (width < 431px) {
  .title_decoration_right::after {
    right: 40%;
  }
}

.service_inner {
  padding: 10% 0 15% 0;
}

.service_contents {
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 5%;
}
@media (width < 769px) {
  .service_contents {
    padding-top: 10%;
  }
}
@media (width < 431px) {
  .service_contents {
    padding-top: 15%;
  }
}

.service_child {
  display: flex;
  justify-content: space-between;
}
@media (width < 769px) {
  .service_child {
    display: block;
  }
}

.service_child + .service_child {
  margin-top: 15%;
}

.service_child_text {
  width: 55%;
}
@media (width < 769px) {
  .service_child_text {
    width: 100%;
  }
}
.service_child_text h2 {
  font-size: 25px;
  padding: 20px 50px 20px 30px;
  display: inline-block;
  letter-spacing: 0.3rem;
}
@media (width < 1101px) {
  .service_child_text h2 {
    font-size: 20px;
  }
}
@media (width < 769px) {
  .service_child_text h2 {
    font-size: 18px;
  }
}
.service_child_text p {
  font-size: 18px;
  line-height: 4rem;
  padding-top: 5%;
}
@media (width < 1281px) {
  .service_child_text p {
    line-height: 3.5rem;
  }
}
@media (width < 769px) {
  .service_child_text p {
    font-size: 16px;
    padding-top: 2%;
  }
}
@media (width < 431px) {
  .service_child_text p {
    font-size: 12px;
    line-height: 2.5rem;
  }
}
.service_child_text h3 {
  padding-top: 5%;
}
@media (width < 431px) {
  .service_child_text h3 {
    font-size: 16px;
  }
}

.service_child_img {
  width: 40%;
}
.service_child_img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (width < 769px) {
  .service_child_img {
    display: none;
  }
}

.service_mbchild_img {
  display: none;
}
@media (width < 769px) {
  .service_mbchild_img {
    display: block;
    width: 100%;
    padding-top: 3%;
  }
  .service_mbchild_img img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
}

/* ===============================================
会社概要
=============================================== */
.company {
  padding: 5% 0;
}
@media (width < 431px) {
.company {
  padding: 15% 0 5%;
}
}

.company_inner {
  max-width: 1440px;
  margin: 0 auto;
}

.company_title {
  text-align: center;
}
.company_title h2 {
  font-size: 60px;
  letter-spacing: 0.5rem;
  font-weight: bold;
}
@media (width < 769px) {
  .company_title h2 {
    font-size: 50px;
  }
}
@media (width < 431px) {
  .company_title h2 {
    font-size: 35px;
  }
}
.company_title p {
  font-size: 20px;
  font-weight: bold;
}
@media (width < 769px) {
  .company_title p {
    font-size: 18px;
  }
}
@media (width < 431px) {
  .company_title p {
    font-size: 16px;
  }
}

.company_overview_contents {
  padding: 7% 0 10% 0;
}

@media (width < 431px) {
  .company_overview_contents {
    padding: 15% 3% 15% 3%;
  }
}
.company_overview_contents table {
  border-collapse: collapse; /* セル枠を重ねて表示 */
  width: 80%;
  margin: 0 auto;
  font-size: 18px;
}

@media (width < 1281px) {
  .company_overview_contents table {
    font-size: 16px;
  }
}
@media (width < 431px) {
  .company_overview_contents table {
    width: 100%;
  }
}
.company_overview_contents tr {
  border-bottom: solid 1px #D9D9D9;
}

.company_overview_contents td {
  padding: 2% 0;
}

@media (width < 431px) {
  .company_overview_contents td {
    font-size: 12px;
  }
}
.company_overview_contents .contents_more {
  padding-left: 5%;
}

.company_overview_contents .contents_title {
  padding-left: 15px;
  white-space: nowrap;
}

@media (width < 431px) {
  .company_overview_contents .contents_title {
    padding-left: 0px;
  }
}
.company_img_box {
  width: 100%;
}

.company_img_box img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* ===============================================
画像挿入
=============================================== */
.box_img {
  height: 40vh;
  background-image: url("img/company.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (width >= 1101px) {
  .box_img {
    background-attachment: fixed;
  }
}
@media (width < 1101px) {
  .box_img {
    background-attachment: scroll;
    height: 40vh;
  }
}
@media (width < 1101px) {
  .box_img {
    height: 25vh;
  }
}

/* ===============================================
お問い合わせ
=============================================== */
.contact {
  padding-top: 7%;
}
@media (width < 431px) {
.contact {
  padding-top: 15%;
}
}

.contact_inner {
  position: relative;
  padding-bottom: 10%;
}

.contact_inner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 150vh;
  background-color: #FACF0D;
}
@media (width < 1281px) {
  .contact_inner::after {
    height: 130vh;
  }
}
@media (width < 1101px) {
  .contact_inner::after {
    height: 110vh;
  }
}
@media (width < 769px) {
  .contact_inner::after {
    height: 120vh;
  }
}

.contact_title {
  text-align: center;
}
.contact_title h2 {
  font-size: 60px;
  letter-spacing: 0.5rem;
  font-weight: bold;
}
@media (width < 769px) {
  .contact_title h2 {
    font-size: 50px;
  }
}
@media (width < 431px) {
  .contact_title h2 {
    font-size: 35px;
  }
}
.contact_title p {
  font-size: 20px;
  font-weight: bold;
}
@media (width < 769px) {
  .contact_title p {
    font-size: 18px;
  }
}
@media (width < 431px) {
  .contact_title p {
    font-size: 16px;
  }
}

.contact_announce {
  padding: 5% 0;
  text-align: center;
  font-size: 18px;
  line-height: 2.5rem;
}
@media (width < 769px) {
  .contact_announce {
    font-size: 16px;
  }
}
@media (width < 431px) {
  .contact_announce {
    padding: 12% 0 10% 0;
    font-size: 12px;
    line-height: 2rem;
  }
}

.contactform_inner {
  max-width: 1280px;
  margin: 0 auto;
}
@media (width < 1281px) {
  .contactform_inner {
    max-width: 1100px;
  }
}
@media (width < 1101px) {
  .contactform_inner {
    padding: 0 3%;
  }
}

.contactform_box {
  padding: 3% 5%;
  border: solid 1px #000;
  background-color: #fff;
}

.contact_main_box {
  padding: 10% 5%;
}

@media (width < 431px) {
  .contact_main_box {
    padding: 10% 5% 15% 5%;
  }
}
.contact_main_box dl {
  padding: 3% 0;
  border-top: solid 1px #2D2D2D;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

@media (width < 769px) {
  .contact_main_box dl {
    display: block;
  }
}
.contact_main_box dt {
  width: 40%; /* ラベル部分の幅 */
  padding-left: 1rem;
}

@media (width < 769px) {
  .contact_main_box dt {
    width: 100%;
    padding: 0 0 3% 0;
    font-size: 14px;
  }
}
.contact_main_box dd {
  width: 60%; /* 入力フィールドの幅 */
  border: solid 1px #2D2D2D;
}

@media (width < 769px) {
  .contact_main_box dd {
    width: 100%;
  }
}
.contact_main_box .required {
  display: inline-block;
  margin-left: 8px;
  padding: 5px 15px;
  background-color: #2D2D2D;
  color: #fff;
  font-size: 12px;
  vertical-align: middle;
}

.contact_main_box input {
  width: 100%;
  padding: 2% 1rem;
  background-color: #fff;
}

.contact_main_box textarea {
  width: 100%;
  padding: 2% 1rem 10% 1rem;
  resize: none;
  background-color: #fff;
}

.pparea_btnbox {
  padding: 5% 0 20px 0;
}

.pp_checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-size: 14px;
}
.pp_checkbox a {
  color: #7a7a7a;
}

.pp_checkbox input[type=checkbox] {
  width: 16px;
  height: 16px;
}

/*コンタクトボタン・アニメーション*/
.contact_formbtnarea {
  width: 30%;
  margin: 0 auto;
  text-align: center;
}
.contact_formbtnarea input{
	padding: 5% 1rem;
}

@media (width < 769px) {
  .contact_formbtnarea {
    font-size: 20px;
    width: 50%;
  }
}
.contact_formbtn {
  font-size: 20px;
  color: #000;
  background-color: #fff;
  border: solid 1px #2D2D2D;
  display: inline-block;
  width: 100%;
  padding: 5% 0;
  cursor: pointer;
  transition: all 0.4s;
}

@media (width < 431px) {
  .contact_formbtn {
    font-size: 16px;
    padding: 7% 0;
  }
}
.contact_formbtn:hover {
  border-radius: 15px;
}

.contct_anouncetxt {
  text-align: center;
  padding: 3% 0;
}
.select_btn p{
	padding: 10px 0 10px 1rem;
}
.wpcf7 select {
  color: #000;              /* 文字色を黒に */
  background-color: #fff;   /* 背景色 */
  -webkit-appearance: none; /* iOS Safariで矢印やスタイルを消す */
  -moz-appearance: none;    /* Firefox用 */
  appearance: none;          /* 標準 */
  padding: 10px;
  border-radius: 8px;
}

/*----------プライバシーポリシー----------*/
.privacypolicy {
  max-width: 100%;
  margin: 20px 0;
}
.privacypolicy h3 {
  font-weight: normal;
  padding-bottom: 15px;
}
@media (width < 431px) {
  .privacypolicy h3 {
    font-size: 14px;
  }
}

.pp_content {
  border: 1px solid #000;
  padding: 15px;
  height: 200px; /* ← 高さを固定 */
  overflow-y: scroll; /* ← 縦方向にスクロール */
  background-color: #f9f9f9;
  font-size: 14px;
  line-height: 1.6;
}
@media (width < 431px) {
  .pp_content {
    font-size: 12px;
  }
}
.pp_content h4 {
  padding-top: 1rem;
}
.pp_content ol {
  padding-left: 1rem;
}
.pp_content .last_block {
  padding-top: 1rem;
}

/* ===============================================
フッター
=============================================== */
footer {
  background-color: #E4E6E9;
  padding-top: 5%;
}
@media (width < 431px) {
  footer {
    padding-top: 10%;
  }
}

.footer_logo {
  width: 124px;
  height: 98px;
  margin: 0 auto;
}
@media (width < 769px) {
  .footer_logo {
    width: 90px;
    height: 71px;
  }
}
.footer_logo img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.copy_right {
  padding-top: 3%;
  text-align: center;
  padding-bottom: 1rem;
  font-size: 14px;
}
@media (width < 769px) {
  .copy_right {
    font-size: 12px;
    padding-top: 5%;
  }
}
@media (width < 431px) {
  .copy_right {
    padding-top: 10%;
  }
}

fieldset.hidden-fields-container {
  display: none !important;
}

/* 入力欄ごとのエラーメッセージ（必須チェックなど） */
.wpcf7-not-valid-tip {
  color: red !important;
  font-size: 14px;  /* 必要なら調整 */
}

/* フォーム全体のエラー（送信失敗時など） */
.wpcf7-response-output {
  color: red !important;
  border-color: red !important; /* デフォは灰色枠 */
}
.wpcf7 .screen-reader-response {
  position: absolute !important;
  left: -9999px !important;
}
/*# sourceMappingURL=style.css.map */