@charset "UTF-8";

/* 共通 */

.grecaptcha-badge {
  visibility: hidden;
}

html {
  font-size: 62.5%;
}

body {
  color: #333333;
  background: #fff;
  /* font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif; */
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 1px;
  line-height: 2;
}

html,
body {
  overflow-x: clip;
}

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

.logo p,
.logo h1 {
  line-height: 1;
  display: inline;
  font-size: inherit !important;
}

.logo p a,
.logo h1 a {
  display: block;
}

.w1500_block,
.w1700_block {
  display: none;
}

nav li.has-child ul {
  position: absolute;
  left: -28px;
  top: 33px;
  z-index: 4;
  background: rgba(0, 0, 0, 0.8);
  /* width:180px; */
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
  text-align: center;
}

nav li.has-child:hover > ul,
nav li.has-child ul li:hover > ul,
nav li.has-child:active > ul,
nav li.has-child ul li:active > ul {
  visibility: visible;
  opacity: 1;
}

nav li.has-child ul li a {
  color: #fff;
  padding: 10px 20px;
}

nav li.has-child ul li a::after {
  content: none;
}

nav li.has-child ul li a:hover {
  opacity: 1;
}

.head_inner {
  width: 100%;
}

.header_contact_nav a:hover {
  opacity: 0.8;
}

.dis_inline_block {
  display: inline-block;
}

/* .thanks_read {
    color: #FFF !important;
} */

.parent-pageid-604 .thanks_read {
  color: #0066cc !important;
}

.menu-box2 {
  display: none;
}

a {
  word-wrap: break-word;
}

.w767_block {
  display: none;
}

.font_mincho {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
}

.font_gothic {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
}

:root {
  --color_main: #0e4da0;
  --color_yellow: #ffff00;
  --color_green: #19b855;
}

.color_blue {
  color: #0e4da0;
}

/*スライド画像の横幅可変*/
img {
  max-width: 100%;
  height: auto;
}

.header {
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 1100;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  will-change: transform;
}
.header.is-hidden {
  transform: translateY(-100%);
}

.header .header__inner {
  display: flex;
  align-items: center;
  gap: 5%;
  max-width: 1650px;
  padding: 12px 9% 12px 5%;
}
@media screen and (max-width: 1023px) {
  .header .header__inner {
    justify-content: space-between;
  }
}

@media screen and (max-width: 600px) {
  .header .header__inner .logo {
    width: 90px;
  }
}

.header .header__nav {
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .header .header__nav {
    display: block;
    position: fixed;
    inset: 0 0 0 auto;
    width: min(86vw, 360px);
    height: 100dvh;
    overflow-y: auto;
    background: #fff;
    border-left: 1px solid #eee;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    z-index: 1000;
    padding: 80px 20px 24px;
  }
  .header.is-open .header__nav {
    transform: translateX(0);
  }

  .header.is-open .header__hamburger .bar {
    transform: translateX(-50%) rotate(45deg);
  }
  .header.is-open .header__hamburger .bar::before {
    transform: translate(-50%, 7px) rotate(90deg);
  }
  .header.is-open .header__hamburger .bar::after {
    transform: translate(-50%, -7px) rotate(90deg);
  }
}

.header__close {
  display: none;
}

@media screen and (max-width: 1023px) {
  .header__close {
    display: block;
    position: absolute;
    top: 16px;
    left: 16px;
    border: none;
    background: transparent;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: #000;
  }
}

.header .header__list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3.5%;
  font-size: clamp(12px, 1.04vw, 20px);
  font-weight: 700;
}
@media screen and (max-width: 1023px) {
  .header .header__list {
    display: grid;
    gap: 12px;
    justify-content: start;
    font-size: 14px;
  }
}

.header .header__item {
  border-bottom: 1px solid #000;
  transition: all 0.3s;
}

.header .header__item:hover {
  border-bottom: 1px solid #0e4da0;
}

.header .header__item:hover a {
  opacity: 1;
  color: #0e4da0;
}

.header .header__hamburger {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  border: 0;
  background: #0e4da0;
  cursor: pointer;
  border-radius: 8px;
}
@media screen and (max-width: 1023px) {
  .header .header__hamburger {
    display: block;
  }
}

.header__hamburger:focus-visible {
  outline: 2px solid #0a84ff;
  outline-offset: 2px;
}

.header__hamburger .bar,
.header__hamburger .bar::before,
.header__hamburger .bar::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.header__hamburger .bar {
  top: 50%;
}
.header__hamburger .bar::before {
  top: -7px;
}
.header__hamburger .bar::after {
  top: 7px;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 900;
}

.header.is-open ~ .overlay {
  opacity: 1;
  pointer-events: auto;
}

/* 追従ボタン */
.follow-btn {
  position: fixed;
  bottom: 0;
  background-color: #fff;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
  width: 100%;
  z-index: 2000;
}
.follow-btn.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.follow-btn ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2%;
  padding: 12px 0;
}

.follow-btn li {
  width: 25%;
}
@media screen and (max-width: 1023px) {
  .follow-btn li {
    width: 50%;
  }
}

/* モーダル */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 3000;
}

.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 3010; /* overlayより前 */
}

.modal.is-open,
.modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal__dialog {
  position: relative;
  background: transparent;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  max-width: min(92vw, 920px);
  max-height: 86vh;
}

.modal__content img {
  display: block;
  max-width: 100%;
  height: auto;
  max-height: 86vh;
  object-fit: contain;
}

.modal__close {
  position: absolute;
  top: -16px;
  right: -8px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 9999px;
  background: #0e4da0;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.3s;
  z-index: 10;
}
.modal__close:hover {
  opacity: 0.8;
}

.no-scroll {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .modal,
  .modal-overlay {
    transition: none !important;
  }
}

input[type="email"] {
  padding: 0.5em !important;
}

table {
  border-collapse: collapse;
}

.page_head_img h1 {
  color: #fff;
}

.w50 {
  width: 50%;
}

.w48 {
  width: 48%;
}

.w1150_block {
  display: none;
}

.w1560_block,
.tb-menu2 {
  display: none;
}

.bg_white {
  background: #fff;
}

.bg_black {
  background: #000;
  color: #fff;
}

.col_1640 {
  max-width: 1640px;
  margin: 0 auto;
}

.col_1600 {
  max-width: 1600px;
  margin: 0 auto;
}

.col_1460 {
  max-width: 1460px;
  margin: 0 auto;
}

.col_1450 {
  max-width: 1450px;
  margin: 0 auto;
}

.col_1430 {
  max-width: 1430px;
  margin: 0 auto;
}

.col_1400 {
  max-width: 1400px;
  margin: 0 auto;
}

.col_1380 {
  max-width: 1380px;
  margin: 0 auto;
}

.col_1300 {
  max-width: 1300px;
  margin: 0 auto;
}

.col_1290 {
  max-width: 1290px;
  margin: 0 auto;
}

.col_1260 {
  max-width: 1260px;
  margin: 0 auto;
}

.col_1250 {
  max-width: 1250px;
  margin: 0 auto;
}

.col_1220 {
  max-width: 1220px;
  margin: 0 auto;
}

.col_1150 {
  max-width: 1150px;
  margin: 0 auto;
}

.col_1100 {
  max-width: 1100px;
  margin: 0 auto;
}

.col_1000 {
  max-width: 1000px;
  margin: 0 auto;
}

.col_940 {
  max-width: 940px;
  margin: 0 auto;
}

.col_600 {
  max-width: 600px;
  margin: 0 auto;
}

.ft_inner {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 45px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer_navi a {
  color: #333;
}

/* .footer_navi p,
.footer_navi ul {
    display: flex;
} */

.footer_navi p {
  margin-top: 60px;
}

.ft_sub_menu li,
.footer_navi .ft_sub_menu li a {
  color: #939393;
}

#page_top {
  /* background: #FFF; */
  background: var(--color_main);
}

#page_top a {
  color: #fff;
}

.form_wrap p:last-of-type::after {
  content: none;
}

.w1279_block {
  display: none;
}

/* 共通　ここまで */

/* トップページここから */

.mainImg {
  position: relative;
}

.mainImg img {
  width: 100%;
}

.mainImg ul {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 999;
  left: 5%;
  bottom: 2vw;
  width: 50%;
}

.mainImg ul li {
  margin-left: 10px;
  margin-right: 10px;
  width: 44%;
}

.mainImg .mainImgButton {
  position: absolute;
  top: 36%;
  right: 6%;
  width: 12%;
}
@media screen and (max-width: 600px) {
  .mainImg .mainImgButton {
    top: 2%;
    right: 6%;
    width: 20%;
  }
}

.mainImg2 p {
  background: var(--color_main);
  text-align: center;
  color: var(--color_yellow);
  font-size: 2.6vw;
  padding: 20px 0;
  position: relative;
  top: -2px;
  font-weight: 900;
}

.l-wrapper {
  padding-left: 45px;
  padding-right: 45px;
}

@media screen and (max-width: 600px) {
  .l-wrapper {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.l-inner {
  margin: 0 auto;
  max-width: 1600px;
}

/* ボタン&バナーエリア */
.banner__area {
  padding-top: 30px;
}

.banner__area .banner__area__inner {
  display: flex;
  align-items: center;
  gap: 2%;
}

.banner__area .buttons {
  display: flex;
  align-items: center;
  gap: 2%;
}

.banner__area .buttons a {
  display: block;
  width: 49%;
}

.banner__area .banner__area__img {
  text-align: center;
}

/* 清掃内容 */
.cleaning-detail {
  padding-top: 40px;
  padding-bottom: 60px;
}

.cleaning-detail .cleaning-detail__title {
  max-width: 1017px;
  margin: 0 auto 24px;
}
@media screen and (max-width: 600px) {
  .cleaning-detail .cleaning-detail__title {
    width: 80%;
  }
}

.cleaning-detail .cleaning-detail__contents {
  display: flex;
  gap: 1.25%;
  margin-bottom: 40px;
}

@media screen and (max-width: 1023px) {
  .cleaning-detail .cleaning-detail__contents {
    flex-direction: column;
    gap: 24px;
  }
}

.cleaning-detail .cleaning-detail__item {
  padding: 24px;
  border-radius: 20px;
}

.cleaning-detail .cleaning-detail__item.shared {
  border: 10px solid #e83338;
}
@media screen and (max-width: 600px) {
  .cleaning-detail .cleaning-detail__item.shared {
    border: 4px solid #e83338;
  }
}
.cleaning-detail .cleaning-detail__item.inside {
  border: 10px solid #23459b;
}
@media screen and (max-width: 600px) {
  .cleaning-detail .cleaning-detail__item.inside {
    border: 4px solid #23459b;
  }
}
.cleaning-detail .cleaning-detail__item.weeding {
  border: 10px solid #07913a;
}
@media screen and (max-width: 600px) {
  .cleaning-detail .cleaning-detail__item.weeding {
    border: 4px solid #07913a;
  }
}

.cleaning-detail .cleaning-detail__item h3 {
  color: #fff;
  font-size: clamp(1.5rem, 1.181rem + 1.359vw, 2.813rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  border-radius: 10px;
}

.cleaning-detail .cleaning-detail__item.shared h3 {
  background-color: #e83338;
}
.cleaning-detail .cleaning-detail__item.inside h3 {
  background-color: #23459b;
}
.cleaning-detail .cleaning-detail__item.weeding h3 {
  background-color: #07913a;
}

.cleaning-detail .cleaning-detail__item figure {
  margin-bottom: 24px;
  text-align: center;
}

.cleaning-detail .cleaning-detail__item img {
  border-radius: 10px;
}

.cleaning-detail .cleaning-detail__item li {
  font-size: clamp(16px, 1.39vw, 24px);
  font-weight: 700;
  line-height: 1.3;
}

.cleaning-detail .cleaning-detail__button {
  text-align: center;
}

.cleaning-detail .cleaning-detail__button p {
  font-size: clamp(16px, 1.39vw, 32px);
  font-weight: 700;
  margin-bottom: 16px;
}

/* 安心の実績と信頼 */
.achievements {
  padding-top: clamp(80px, 14.17vw, 204px);
  padding-bottom: clamp(60px, 13.19vw, 190px);
  background-image: url(../img/top/achievements_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.achievements figure {
  text-align: center;
}

.achievements .achievements__title {
  margin-bottom: 24px;
}

.achievements .achievements__lead {
  font-size: clamp(14px, 1.39vw, 32px);
  font-weight: 900;
  line-height: 1.3;
  text-align: center;
  margin-bottom: clamp(16px, 3.33vw, 48px);
}

.achievements .achievements__medals {
  margin-bottom: clamp(24px, 6.53vw, 94px);
}

.achievements .achievements__description {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5%;
  margin-bottom: 40px;
}
@media screen and (max-width: 600px) {
  .achievements .achievements__description {
    flex-direction: column;
  }
}

@media screen and (max-width: 600px) {
  .achievements .achievements__description figure {
    max-width: 100px;
  }
}

.achievements .achievements__description p {
  font-size: clamp(14px, 1.39vw, 32px);
  font-weight: 900;
}
@media screen and (max-width: 600px) {
  .achievements .achievements__description p {
    text-align: center;
  }
}

.achievements .achievements__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.4%;
  margin-bottom: 40px;
}
@media screen and (max-width: 600px) {
  .achievements .achievements__list {
    margin-bottom: 16px;
  }
}

/* サービス内容について */
.service {
  padding-top: clamp(40px, 10.56vw, 152px);
  padding-bottom: clamp(40px, 8.33vw, 120px);
}

.service .service__title {
  text-align: center;
  margin-bottom: 40px;
}

.service .service__title h2 {
  font-size: clamp(22px, 2.92vw, 42px);
  margin-bottom: 24px;
}

.service .service__main {
  border: 10px solid #0e4da0;
  border-radius: 10px;
  margin-bottom: clamp(24px, 5vw, 72px);
}

.service .service__main__title {
  background-color: #0e4da0;
  color: #fff;
  padding: 12px 8px;
  font-weight: 700;
  text-align: center;
}

.service .service__main__title h3 {
  font-size: clamp(32px, 4.86vw, 70px);
  line-height: 1.3;
}

.service .service__main__title p {
  font-size: clamp(14px, 2.08vw, 30px);
}

.service .service__main__contents {
  background-color: #fffde1;
  padding: clamp(24px, 5vw, 72px);
}

.service .service__main__contents .top {
  display: flex;
  gap: 3%;
  margin-bottom: clamp(24px, 4.44vw, 64px);
}
@media screen and (max-width: 1200px) {
  .service .service__main__contents .top {
    align-items: center;
    flex-direction: column;
    gap: 16px;
  }
}

.service .service__main__contents .top figure {
  flex-shrink: 0;
  width: clamp(300px, 42.5vw, 612px);
}
@media screen and (max-width: 600px) {
  .service .service__main__contents .top figure {
    width: 100%;
  }
}

.service .service__main__contents .top img {
  border-radius: 10px;
}

.service .service__main__contents .top p {
  font-size: clamp(14px, 2.08vw, 30px);
  font-weight: 700;
  line-height: 1.5;
}

.service .service__main__contents .top span {
  display: block;
  font-size: clamp(24px, 2.92vw, 40px);
  margin-bottom: 12px;
}

.service .service__main__contents .bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
@media screen and (max-width: 600px) {
  .service .service__main__contents .bottom {
    display: grid;
    grid-template-columns: repeat(3fr, 1);
    align-items: center;
    gap: 32px;
  }
}

.service .service__main__contents .bottom li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .service .service__main__contents .bottom li {
    gap: 16px;
  }
}
@media screen and (max-width: 600px) {
  .service .service__main__contents .bottom figure {
    width: 50%;
  }
}

.service .service__main__contents .bottom span {
  display: inline-block;
  color: #fff;
  font-size: clamp(14px, 2.78vw, 40px);
  font-weight: 700;
  padding: 12px 24px;
  line-height: 1;
  border-radius: 20px;
}

.service .service__main__contents .bottom .maisonette span {
  background-color: #e83928;
}
.service .service__main__contents .bottom .four-apartment span {
  background-color: #24459a;
}
.service .service__main__contents .bottom .five-apartment span {
  background-color: #00913a;
}

.service .service__detail {
  margin-bottom: clamp(40px, 8.33vw, 120px);
}

.service .service__detail__title {
  display: flex;
  align-items: center;
  justify-content: center;
}

.service .service__detail__contents {
  border: 10px solid #0e4da0;
  border-radius: 20px;
}

.service .service__detail__inner {
  padding: 48px 32px;
}
@media screen and (max-width: 600px) {
  .service .service__detail__inner {
    padding: 32px 16px;
  }
}

.service .service__detail__inner:not(:last-child) {
  border-bottom: 1px solid #000;
}

.service .service__detail__lead {
  color: #fff;
  font-size: clamp(14px, 1.39vw, 32px);
  font-weight: 700;
  padding: 12px 0;
  margin-left: 8%;
  border-radius: 10px;
  text-align: center;
  max-width: 450px;
}
@media screen and (max-width: 1200px) {
  .service .service__detail__lead {
    margin: 0 auto;
  }
}

.service .service__detail__lead.shared {
  background-color: #e83338;
}
.service .service__detail__lead.inside {
  background-color: #23459b;
}
.service .service__detail__lead.weeding {
  background-color: #07913a;
}

.service .service__detail__list {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
  margin-top: 40px;
}
@media screen and (max-width: 1200px) {
  .service .service__detail__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .service .service__detail__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service .service__detail__list.inside {
  grid-template-columns: repeat(4, 1fr);
  gap: 5%;
}
@media screen and (max-width: 600px) {
  .service .service__detail__list.inside {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service .service__detail__list.weeding {
  grid-template-columns: repeat(2, 1fr);
  gap: 5%;
  flex-shrink: 0;
}

.service .service__detail__item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

.service .service__detail__item figure {
  min-height: 182px;
}
@media screen and (max-width: 1200px) {
  .service .service__detail__item figure {
    min-height: 120px;
  }
}

.service .service__detail__item p {
  font-size: clamp(14px, 1.67vw, 24px);
  font-weight: 700;
  line-height: 1.3;
}

.service .service__detail__item span {
  font-size: 14px;
}

.service .service__detail__wrapper {
  display: flex;
  gap: 5%;
}
@media screen and (max-width: 1200px) {
  .service .service__detail__wrapper {
    flex-direction: column;
  }
}

.service .service__detail__container {
  flex-shrink: 1;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 40px;
}

.service .service__detail__container .title {
  background-color: #221815;
  color: #fff;
  padding: 24px 0;
  margin-bottom: 22px;
  font-size: clamp(16px, 2.08vw, 30px);
  line-height: 1;
  max-width: 256px;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .service .service__detail__container .title {
    padding: 12px 0;
    margin: 0 auto 16px;
  }
}

.service .service__detail__container .text,
.service .service__detail__container .note {
  font-size: clamp(16px, 1.67vw, 24px);
}

.service .service__detail__container .note {
  color: #e60012;
}

/* ご利用料金 */
.price {
  text-align: center;
  padding-bottom: clamp(48px, 8.33vw, 120px);
}

.price .price__title {
  position: relative;
  margin-bottom: clamp(24px, 5.56vw, 80px);
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .price .price__title {
    margin: 0 auto clamp(24px, 5.56vw, 80px);
    width: 50%;
  }
}

.price .price__content {
  position: relative;
}

.price .price__graphic {
  position: absolute;
  top: -40%;
  left: 28%;
  transform: translateX(-50%);
  width: clamp(120px, 32.85vw, 473px);
}
@media screen and (max-width: 1200px) {
  .price .price__graphic {
    top: -42%;
  }
}
@media screen and (max-width: 600px) {
  .price .price__graphic {
    top: -43%;
  }
}

.price .price__list {
  position: relative;
  z-index: 1;
}

.voice_wrap {
  /* background: #fff79c; */
  background: url(../img/top/voice_bg.png) no-repeat center top;
  padding: 50px 0 110px;
}

.voice_wrap h2 {
  /* font-size: 7rem; */
  font-size: 3.6vw;
  text-align: center;
  margin-bottom: 40px;
}

.voice_wrap h3 {
  margin-bottom: 10px;
  width: 190px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 0;
  background: #ffae00;
  color: #000;
  border-radius: 50px;
}

.voice_wrap h3.voice_title_middle {
  background: #878787;
  color: #fff;
}

.voice_wrap h3.voice_title_before {
  background: #000;
  color: #fff;
}

.voice_wrap p {
  font-size: 1.7vw;
  line-height: 1;
  font-weight: bold;
  padding-bottom: 5px;
}

.front_area {
  padding-top: clamp(40px, 9.03vw, 130px);
  padding-bottom: 80px;
}

.area_inner {
  position: relative;
}

.area_top {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}

.area_top .lead {
  font-weight: 700;
}

.area_bottom {
  text-align: center;
  margin-bottom: clamp(32px, 6.53vw, 94px);
}

.front_area h2 {
  font-size: 3.6vw;
}

.front_area .lead {
  font-weight: 700;
}

.saitama_area {
  margin-bottom: 40px;
}

.saitama_area span {
  background: var(--color_main);
  color: #fff;
  font-size: 2.6vw;
  padding: 20px 50px;
  border-radius: 70px;
}

.area_bottom table {
  margin-top: 60px;
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #000;
}

.area_bottom table th,
.area_bottom table td {
  border: 5px solid #000;
  padding: 20px 0;
  line-height: 1.5;
}

.area_bottom table th:first-child {
  border-right: none;
}

.area_bottom table th {
  font-size: 2.6vw;
}

.area_bottom table tr:first-child th {
  background: #a6a6a6;
  color: #000;
}

.area_bottom table tr:first-child th:nth-child(2) {
  background: #fff;
  position: relative;
  border: 5px solid var(--color_main);
}

.area_bottom table tr:first-child th:nth-child(2)::after {
  content: "";
  width: 102.5%;
  height: 50px;
  background: #fff;
  border: 5px solid var(--color_main);
  position: absolute;
  border-radius: 50px 50px 0 0;
  left: -1.1%;
  top: -49px;
  border-bottom: none;
}

.area_bottom table tr:first-child th:nth-child(2) img {
  position: relative;
  top: -20px;
  z-index: 99;
}

.area_bottom table tr td:nth-child(2) {
  border: 5px solid var(--color_main);
  color: #f00;
}

.area_bottom table tr td {
  /* font-size: 3rem; */
  font-size: 1.56vw;
}

.report {
  margin-bottom: 80px;
  border: 10px solid #00a0e8;
  border-radius: 20px;
  box-shadow: 12px 12px 0 0 rgba(19, 19, 19, 0.36);
}
@media screen and (max-width: 600px) {
  .report {
    box-shadow: 6px 6px 0 0 rgba(19, 19, 19, 0.36);
  }
}

.report .report__inner {
  display: flex;
  align-items: center;
  gap: 5%;
  padding-top: clamp(32px, 3.61vw, 52px);
  padding-bottom: clamp(32px, 3.61vw, 52px);
  padding-left: clamp(24px, 6.81vw, 98px);
  padding-right: clamp(24px, 6.81vw, 98px);
}
@media screen and (max-width: 1200px) {
  .report .report__inner {
    flex-direction: column;
    gap: 16px;
  }
}

.report .report__contents {
  flex-shrink: 1;
}

@media screen and (max-width: 1200px) {
  .report .report__title {
    text-align: center;
  }
}

.report .report__title figure {
  margin-bottom: clamp(24px, 4.17vw, 60px);
}
@media screen and (max-width: 1200px) {
  .report .report__title figure {
    margin: 0 auto clamp(24px, 4.17vw, 60px);
    width: 70%;
  }
}

.report .report__title p {
  font-size: clamp(14px, 2.08vw, 30px);
  line-height: 1.5;
}

.report .report__img {
  flex-shrink: 0;
}

.font_45 {
  /* font-size: 4.5rem; */
  font-size: 2.34vw;
}

.font_50 {
  /* font-size: 5rem; */
  font-size: 2.6vw;
}

.font_80 {
  /* font-size: 8rem; */
  font-size: 4.16vw;
}

.support_wrap.junkai_support .junkai_bottom .junkai_bottom_text p.font_mini,
.font_mini {
  font-size: 1.4rem;
}

.support_wrap.junkai_support .junkai_bottom .junkai_bottom_text p.font_mini {
  color: #f00;
}

.row_write {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.area_bottom .row_write {
  position: relative;
  top: 5px;
  /* font-size: 2rem; */
  font-size: 1.04vw;
}

.front_flow {
  background: #75d499;
  padding: 50px 0 120px;
}

.front_flow h2 {
  margin-bottom: 20px;
}

h2 {
  /* font-size: 7rem; */
  font-size: 3.6vw;
  text-align: center;
}

.front_quetion {
  /* padding: 100px 0 150px; */
  padding: 70px 0 70px;
}

.front_quetion h2 {
  text-align: left;
  color: var(--color_main);
  margin-bottom: 30px;
}

.front_quetion dl {
  background: #eff2ff;
  border: 5px solid #000;
  margin-bottom: 50px;
  padding: 0 20px 20px 20px;
  cursor: pointer;
  border-radius: 55px;
}

.front_quetion dt {
  color: var(--color_main);
  /* font-size: 3rem; */
  font-size: 1.56vw;
  padding-right: 80px;
}

.front_quetion dt strong {
  font-size: 2.6vw;
  /* font-size: 5rem; */
  width: 110px;
  display: inline-block;
}

.front_quetion dd {
  padding: 10px 0 0;
  padding-left: 110px;
  border-top: 1px solid #000000;
}

.toggle_btn {
  position: absolute;
  top: 50%;
  /* right: 20px; */
  right: 5px;
  transform: translateY(-50%);
  /* background: #0052a4; */
  display: block;
  /* width: 24px;
	height: 24px; */
  width: 74px;
  height: 74px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  border-radius: 50%;
}
.toggle_btn:before,
.toggle_btn:after {
  display: block;
  content: "";
  background-color: #0b0b0c;
  position: absolute;
  width: 40px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.toggle_btn:before {
  width: 2px;
  height: 40px;
}
.toggle_title.selected .toggle_btn:before {
  content: normal;
}
.toggle_contents dd {
  display: none;
}

.toggle_contents:first-of-type dd {
  display: block;
}

.toggle_title {
  position: relative;
}

.front_contact {
  padding: 50px 0 100px;
  background: #ffeaea;
}

.contact_wrap {
  /* margin-top: 150px;
    margin-bottom: 150px; */
  background: var(--color_main);
  color: #fff;
}

.contact_wrap .col_1460 {
  /* background: #ff7200; */
  padding: 75px 0;
  position: relative;
  /* border: 1px solid var(--color_yellow); */
}

.contact_wrap .col_1460::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 60%;
  background: var(--color_yellow);
  top: 0;
  left: -20px;
}

.contact_wrap h2 {
  color: var(--color_yellow);
  line-height: 1.3;
}

.contact_wrap h2 + p {
  margin-top: 10px;
}

.contact_wrap .flex_center {
  margin-top: 50px;
  gap: 2%;
  flex-wrap: nowrap;
}

.contact_wrap .flex_center li {
  display: block;
  max-width: 684px;
  width: 49%;
}

#wpcf7cpcnf td,
#wpcf7cpcnf textarea,
#wpcf7cpcnf input,
.table-res-form input,
.table-res-form textarea {
  background: #fff;
}

#wpcf7cpcnf table {
  width: 100%;
}

#wpcf7cpcnf td,
#wpcf7cpcnf th,
.table-res-form th,
.table-res-form td {
  padding: 0.5em;
}

#wpcf7cpcnf input[type="tel"],
.table-res-form input[type="tel"] {
  border: 1px #f9f5f5 solid;
  padding: 0.5em;
  border-radius: 5px;
  margin-bottom: 0.5em;
  width: 100%;
}

#wpcf7cpcnf .color_red,
.table-res-form .color_red {
  background: #fff;
  color: #f00;
  border: 1px solid #f00;
  padding: 5px;
  margin-left: 10px;
  border-radius: 10px;
  display: inline-block;
}

#wpcf7cpcnf th,
.table-res-form th {
  width: 20%;
}

#wpcf7cpcnf td,
.table-res-form td {
  width: 80%;
}

input[type="checkbox"] {
  height: 20px;
  width: 20px;
  position: absolute;
  top: 16px;
  left: -10px;
  transform: translateY(-60%);
  -webkit-transform: translateY(-60%);
  -ms-transform: translateY(-60%);
  -moz-transform: translateY(-60%);
  -o-transform: translateY(-60%);
  cursor: pointer;
}

.contact_privacypolicy_link a {
  color: var(--color_main);
  border-bottom: 1px solid var(--color_main);
}

.submit_wrap {
  margin-top: 20px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.wpcf7-form-control.wpcf7-submit {
  font-size: 1.56vw;
  /* font-size: 3rem; */
  border-radius: 70px;
  background: #414141;
}

.wpcf7-form-control.wpcf7-submit:hover {
  background: var(--color_main);
}

header ul.flex_start li:first-child {
  margin-right: 40px;
}

footer {
  background: var(--color_main);
  color: #fff;
  padding-bottom: 160px;
  padding-top: 50px;
}

footer a {
  color: #fff;
}

footer .flex_between {
  max-width: 1520px;
  margin-left: auto;
  margin-right: auto;
}

.ft_logo {
  margin-bottom: 30px;
}

.ft_right {
  width: 450px;
}

.ft_right ul {
  margin-bottom: 20px;
}

.ft_right li {
  margin-right: 20px;
}

.slide_boder a:hover {
  opacity: 1;
}

.slide_boder a::after {
  background: #fff;
}

.slider_wrap {
  margin-top: 150px;
  margin-bottom: 100px;
}

.slider_wrap3 .slick-dots,
.slider_wrap2 .slick-dots,
.slider_wrap .slick-dots {
  bottom: -55px;
}

.slider3 li,
.slider2 li {
  margin-left: 10px;
  margin-right: 10px;
}

.slider3 .slick-dots li,
.slider2 .slick-dots li {
  margin-left: 0;
  margin-right: 0;
}

.slider2 .slick-prev {
  left: -55px;
}

.slider3 .slick-prev {
  left: 15px;
}

.slider2 .slick-next {
  right: -55px;
}

.slider3 .slick-next {
  right: 15px;
}

.slider2 li figure {
  margin-bottom: 20px;
}

.slider2 li figure img {
  margin-left: auto;
  margin-right: auto;
}

.slider3 li.slider3_list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  border: 3px solid #000;
  border-radius: 30px;
  background: #fff;
  padding: 20px 10px;
  font-weight: 700;
  height: auto;
}

.slider2 li.slider2_list .taR {
  font-weight: bold;
}

.slider3 .slick-track {
  display: flex;
}

.slider3 .slick-slide {
  transform: scale(0.8);
  transition: transform 0.3s;
}
.slider3 .slick-slide.slick-active.slick-current {
  transform: scale(1);
}

.slick-dots li.slick-active button:before,
.slick-dots li button:before {
  font-size: 12px;
}

.slider3 figure img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.step {
  color: var(--color_green);
  position: relative;
  margin-bottom: 12px;
}

.step::after {
  content: "";
  position: absolute;
  width: 65px;
  height: 5px;
  border: 1px solid #000;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.slider3 h3 {
  /* font-size: 2.7rem; */
  font-size: 1.4vw;
  line-height: 1.5;
  margin-bottom: 12px;
}

.setumei {
  margin-top: 20px;
}

.slider3_btn {
  margin-top: 10px;
}

.slider3_btn a {
  background: var(--color_green);
  padding: 0 0 5px 0;
  border-radius: 50px;
  display: block;
  color: #fff;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.slider3_btn a i {
  margin-left: 10px;
}

.side_menu_wrap {
  width: 310px;
  position: sticky;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 8000;
}

.side_menu_top {
  background: var(--color_main);
}

.side_menu_top:has(.hamburger2.active) {
  width: 80px;
  float: right;
}

/* .pamphlet-wrap {
    padding-top: 50px;
} */

.side_menu_wrap .side_menu_top {
  text-align: center;
  padding: 50px 0 25px;
  border-radius: 40px 0 0 40px;
  margin-bottom: 40px;
}

.side_menu_wrap .side_menu_top li {
  margin-bottom: 15px;
}

.side_menu_wrap .side_menu_top a {
  color: #fff;
  border-bottom: 1px solid #fff;
}

.side_menu_wrap .side_menu_top a:hover {
  opacity: 1;
  color: var(--color_yellow);
}

.side_menu_bottom li {
  margin-bottom: 25px;
}

.side_menu_wrap.fixed {
  right: 0;
  position: fixed;
  top: 0px;
  z-index: 8000;
  margin-top: 0;
}

.side_menu_wrap .side_menu_top .side_contact {
  margin-top: 30px;
}

.side_menu_wrap .side_menu_top .side_contact a {
  border-bottom: none;
  background: #fff;
  color: var(--color_main);
  padding: 10px 20px 10px 30px;
  letter-spacing: 5px;
  border-radius: 50px;
}

.side_menu_wrap .side_menu_top .side_contact a i {
  color: var(--color_main);
  /* font-size: 2.5rem; */
  font-size: 1.3rem;
  margin-left: 5px;
}

.side_menu_wrap .side_menu_top .side_contact a:hover {
  background: var(--color_yellow);
}

/* .slider_wrap3 .slick-prev,
.slider_wrap3 .slick-next {
    color: #FFF !important;
    background: rgba(0, 0, 0, .8);
    border-radius: 50%;
} */

[class*="carousel__arrow--"] {
  background-color: #000;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  aspect-ratio: 1;
  z-index: 2;
  color: #fff;
  border-radius: 50%;
}
.carousel__arrow--prev {
  left: 40px;
}
.carousel__arrow--next {
  right: 40px;
}
[class*="carousel__arrow--"]::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "";
  font-size: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.carousel__arrow--prev::before {
  content: "\f053";
}
.carousel__arrow--next::before {
  content: "\f054";
}
@media (hover: hover) {
  [class*="carousel__arrow--"] {
    transition: 0.3s;
  }
  [class*="carousel__arrow--"]:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}

#page_top {
  display: none;
}

.vertical_top {
  font-variant: top;
}

/* .close {
    text-align: right;
    border-bottom: none;
    margin-right: 10px;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.close a {
    border-bottom: none !important;
}

.close-btn {
    color: #FFF;
}

.hidden {
    display: none;
} */

.hamburger2 {
  position: absolute;
  top: 10px;
  right: 20px;
  width: 30px;
  cursor: pointer;
  z-index: 10; /* メニューより前に表示 */
}

.hamburger2 span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #fff; /* ボタンの色 */
  margin: 5px 0;
  transition: 0.4s;
}

.menu2 {
  /* position: fixed;
    top: 0;
    right: 0;
    width: 250px;
    height: 100%;
    background-color: #fafad2; */
  /* opacity: 0; */
  /* pointer-events: none; */
  transition: opacity 0.5s ease; /* フェードインのアニメーション */
  padding: 20px;
  box-sizing: border-box;
  z-index: 5;
}

/* メニューが開いたとき */
.menu2.open {
  /* opacity: 1; */
  /* pointer-events: auto; */
  display: none;
}

/* .hamburger2.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .hamburger2.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger2.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  } */

/* バツ印に変わるハンバーガーボタン */
.hamburger2 span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger2 span:nth-child(2) {
  opacity: 0;
}

.hamburger2 span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.hamburger2.active span:nth-child(1) {
  transform: inherit;
}

.hamburger2.active span:nth-child(2) {
  opacity: 1;
}

.hamburger2.active span:nth-child(3) {
  transform: inherit;
}

.hamburger2 {
  font-size: 12px;
  color: #fff;
}

main {
  position: relative;
}

/* areaの上 */

.slick-prev:before,
.slick-next:before {
  display: none !important;
}

.w1200_block {
  display: none;
}

::placeholder {
  color: #aaa;
}

.py0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* .wpcf7-form-control.wpcf7-submit {
    width: 260px;
    margin-top: 30px;
} */

button.wpcf7cp-cfm-edit-btn {
  background: #f00;
}

/* .wpcf7-form-control.wpcf7-submit {
    background: #00080e;
    border: 1px solid #8b793b;
    border-radius: 50px;
} */

.wpcf7-form-control.wpcf7-submit:hover {
  background: #8b793b;
}

/* .wpcf7 form.invalid .wpcf7-response-output {
    color: #FFF;
} */

button.wpcf7cp-cfm-edit-btn {
  margin-left: auto;
  margin-right: auto;
}

div.wpcf7cp-btns {
  width: 300px;
  margin-left: auto;
  margin-right: auto;
}

button.wpcf7cp-cfm-edit-btn {
  background: var(--color_main);
  padding: 20px;
  border-radius: 50px;
  color: #fff;
  width: 300px;
}

button.wpcf7cp-cfm-edit-btn:hover {
  opacity: 0.8;
}

.wpcf7-form-control.wpcf7-submit {
  font-size: 16px;
  padding: 20px 0;
}

.wpcf7-form-control.wpcf7-submit:hover {
  background: var(--color_main);
}

.page-id-11 footer {
  margin-top: 60px;
}

textarea,
input {
  font-size: 16px;
}

.voice_wrap .carousel__arrow--prev {
  left: -10px;
}

.voice_wrap .carousel__arrow--next {
  right: -10px;
}

/* レスポンシブ　ここから */

@media screen and (min-width: 1024px) and (max-width: 1750px) {
  .side_menu_bottom li a img {
    transform: translateX(230px);
    transition: transform 0.3s ease 0s;
  }

  .side_menu_bottom li a:hover img {
    transform: translateX(0px);
  }

  .side_menu_wrap .side_menu_top li {
    margin-bottom: 5px;
  }

  .side_menu_wrap .side_menu_top .side_contact {
    margin-top: 20px;
  }

  .side_menu_bottom li a:hover {
    opacity: 1;
  }
}

@media screen and (max-width: 1500px) {
  footer .flex_between {
    padding-left: 20px;
    padding-right: 20px;
  }

  .col_1460 {
    margin-left: 20px;
    margin-right: 20px;
  }

  #anc1 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  #anc02 .flex_between,
  #anc01 .flex_between {
    padding-left: 20px;
    padding-right: 20px;
  }

  .area_bottom table th {
    font-size: 2.08vw;
  }

  .area_bottom table tr td {
    font-size: 1.3vw;
  }

  .w1500_none {
    display: none;
  }

  .w1500_block {
    display: block;
  }

  .area_bottom table th,
  .area_bottom table td {
    padding: 10px 0;
  }

  .area_bottom table tr:first-child th:nth-child(2)::after {
    height: 30px;
    top: -29px;
  }

  .area_bottom table tr:first-child th:nth-child(2) img {
    top: -10px;
    width: 35%;
  }
}

@media screen and (max-width: 1200px) {
  header ul.flex_start li:first-child {
    margin-right: 10px;
  }

  .mainImg2 p {
    font-size: 3rem;
  }

  .w1200_block {
    display: block;
  }

  h2 {
    font-size: 3rem;
  }

  .contact_wrap .col_1460::after {
    content: none;
  }
}

@media screen and (max-width: 768px) {
  #wpcf7cpcnf td,
  #wpcf7cpcnf th,
  .table-res-form td,
  .table-res-form th {
    width: 100%;
  }
}

@media screen and (max-width: 1023px) {
  .contact_wrap .flex_center li {
    width: 43%;
  }

  .side_menu_wrap {
    display: none;
  }

  header .flex_start {
    display: none;
  }

  .slider_wrap {
    margin-top: 50px;
    margin-bottom: 90px;
  }

  .contact_wrap .col_1460 {
    padding: 30px 0;
  }

  .contact_wrap .flex_center {
    margin-top: 20px;
  }

  .area_top {
    width: 100%;
  }

  .front_area h2 {
    font-size: 4rem;
  }

  .saitama_area span {
    font-size: 3rem;
    padding: 15px 50px;
  }

  .saitama_area {
    margin-bottom: 30px;
  }

  .saitama_area + p {
    font-size: 1.4rem;
  }

  .area_bottom {
    margin-top: 20px;
  }

  .front_quetion dd {
    padding-left: 0;
  }

  .tab_none {
    display: none !important;
  }

  .front_quetion dt {
    font-size: 1.6rem;
    padding-right: 40px;
  }

  .front_quetion dt strong {
    font-size: 2.5rem;
    width: 47px;
  }

  .toggle_contents dd {
    font-size: 1.4rem;
  }

  .toggle_btn {
    width: 25px;
    height: 25px;
  }

  .front_quetion dl {
    margin-bottom: 20px;
  }

  .front_quetion h2 {
    margin-bottom: 10px;
  }

  .front_quetion {
    padding: 20px 0 30px;
  }

  .front_contact {
    padding: 20px 0;
  }

  #wpcf7cpcnf,
  .table-res-form {
    margin-top: 0;
  }

  .voice_wrap h2 {
    font-size: 4rem;
  }

  .voice_wrap {
    padding: 30px 0 100px;
  }

  .slider2 li figure {
    width: 40%;
    margin-left: auto;
    margin-right: auto;
  }

  .slider2 li.slider2_list h3,
  .slider3 li.slider3_list h3 {
    font-size: 1.5rem;
  }

  .slider2 li.slider2_list h3 + p {
    font-size: 1.4rem;
  }

  .slider2 li.slider2_list .taR {
    font-size: 1.4rem;
  }

  /* .slider3_btn a {
        width: 90%;
    } */

  .setumei {
    font-size: 1.4rem;
  }

  .slider3 .slick-slide {
    margin-left: 0;
    margin-right: 0;
  }

  .front_flow {
    padding: 20px 0 90px;
  }

  .tableArea {
    max-width: 100%; /* 最大80%の領域内で要素をおさめる */
    margin: 0 20px;
    overflow: auto; /*枠からはみ出たらスクロールさせる、はみ出なかった場合は何もしない*/
  }
  .tableArea table {
    border-collapse: collapse; /*隣接するセルのボーダーを共有する*/
  }
  .tableArea table th,
  .tableArea table td {
    white-space: nowrap; /*文字を折り返さない*/
  }
  .scroll-hint-text {
    margin-top: 0;
  }

  .tableArea table {
    width: 1000px;
  }

  .font_80,
  .font_50,
  .area_bottom table th,
  .font_45 {
    font-size: 3rem;
  }

  .area_bottom table tr:first-child th:nth-child(2)::after {
    /* width: 103.5%;
        left: -4px; */
    width: 106%;
    left: -5px;
  }

  .area_bottom table tr:first-child th:nth-child(2) img {
    padding-left: 10px;
    padding-right: 10px;
  }

  #hamburger {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    cursor: pointer;
    margin: 0 0 0 auto;
    height: 60px;
    width: 60px;
    display: block;
    top: 0;
    right: 0;
    z-index: 9999;
  }

  .sm_nav {
    top: 60px;
    position: absolute;
    z-index: 10;
    width: 100%;
    background-color: #e9e1d6;
    left: 0;
    z-index: 9999;
    padding: 10px 0;
  }

  .sm_nav li {
    text-align: center;
  }

  /* 独自　ハンバーガー */

  .openbtn {
    position: relative; /*ボタン内側の基点となるためrelativeを指定*/
    /* width: 50px;
    height:50px; */
    width: 60px;
    height: 60px;
    cursor: pointer;
    /* left: 3px;
    top: -3px; */
  }

  /*ボタン内側*/

  .openbtn span {
    display: inline-block;
    transition: all 0.4s; /*アニメーションの設定*/
    position: absolute;
    left: 13px;
    height: 2px;
    background-color: #fff;
  }

  .openbtn span:nth-of-type(1) {
    top: 22px;
    width: 50%;
  }

  .openbtn span:nth-of-type(2) {
    top: 29px;
    width: 30%;
  }

  /*activeクラスが付与されると線が回転して×に*/

  .openbtn.menu_active span:nth-of-type(1) {
    top: 20px;
    /* left: 16px; */
    left: 13px;
    transform: translateY(6px) rotate(-45deg);
    width: 35%;
  }

  .openbtn.menu_active span:nth-of-type(2) {
    top: 32px;
    /* left: 16px; */
    left: 13px;
    transform: translateY(-6px) rotate(45deg);
    width: 35%;
  }

  .openbtn strong {
    text-align: center;
    /* font-size: 11px; */
    font-size: 1.1rem;
    position: absolute;
    /* bottom: -6px;
    right: 4px; */
    bottom: 6px;
    right: 13px;
    color: #fff;
  }

  /* 独自　ハンバーガー */

  .sm_nav {
    background: var(--color_main);
  }

  .area_bottom table th {
    font-size: 1.6rem;
  }

  #wpcf7cpcnf th,
  #wpcf7cpcnf td {
    width: 100%;
    display: block;
  }

  #wpcf7cpcnf th {
    text-align: left;
  }
}
/* 1023　ここまで */

@media screen and (max-width: 600px) {
  button.wpcf7cp-cfm-edit-btn {
    width: 70%;
  }

  button.wpcf7cp-cfm-edit-btn {
    display: block;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .wpcf7-form-control.wpcf7-submit {
    width: 70%;
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
  }

  .front_quetion dt {
    font-size: 1.4rem;
  }

  .front_quetion dt {
    line-height: 1.8;
  }

  .front_quetion dl {
    border-radius: 25px;
  }

  .slider3_btn a {
    width: 80%;
  }

  .setumei {
    text-align: left;
  }

  .mainImg2 p {
    font-size: 2rem;
    padding: 10px 0;
    line-height: 1.5;
  }

  .slider_wrap {
    margin-top: 20px;
    /* margin-bottom: 60px; */
    margin-bottom: 30px;
  }

  .add_contents {
    margin-bottom: 30px;
  }

  .slider_wrap3 .slick-dots,
  .slider_wrap2 .slick-dots,
  .slider_wrap .slick-dots {
    bottom: -35px;
  }

  .contact_wrap .flex_center li {
    width: 75%;
    margin-bottom: 10px;
  }

  .contact_wrap .flex_center li:first-child {
    margin-bottom: 20px;
  }

  .voice_wrap h2 {
    font-size: 2.3rem;
  }

  .slider2 li figure {
    width: 30%;
    margin-bottom: 10px;
  }

  .voice_wrap {
    padding-bottom: 70px;
  }

  .slider_wrap2 .slick-dots {
    bottom: -45px;
  }

  h2 {
    font-size: 2.4rem;
  }

  .contact_wrap h2 {
    font-size: 1.8rem;
  }

  p {
    font-size: 1.4rem;
  }

  .area_top {
    /* padding-top: 100px; */
    padding-top: 10px;
  }

  .front_area h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }

  .saitama_area span {
    font-size: 2rem;
    padding: 10px 50px;
  }

  .saitama_area {
    margin-bottom: 20px;
  }

  .area_bottom {
    margin-top: 60px;
  }

  .front_area h2 {
    font-size: 2rem;
  }

  .area_bottom h2 {
    margin-bottom: 0;
  }

  .area_bottom table th,
  .font_45 {
    font-size: 2rem;
  }

  .area_bottom table tr:first-child th:nth-child(2) img {
    width: 50%;
  }

  .area_bottom table th,
  .area_bottom table td {
    padding: 10px 0;
  }

  .area_bottom .row_write {
    top: 0;
    font-size: 2rem;
  }

  .row_write {
    writing-mode: horizontal-tb;
  }

  .area_bottom table tr td {
    font-size: 2rem;
  }

  .font_80,
  .font_50,
  .area_bottom table th,
  .font_45 {
    font-size: 2rem;
  }

  .ft_left {
    width: 100%;
    margin-bottom: 20px;
  }

  .ft_left p {
    text-align: center;
  }

  .ft_right {
    width: 100%;
    text-align: center;
  }

  .ft_right ul {
    justify-content: center;
  }

  .copy {
    margin-top: 20px;
  }

  .ft_right li {
    margin-left: 10px;
    margin-right: 10px;
    font-size: 1.4rem;
  }

  .ft_logo img {
    width: 50%;
  }

  footer {
    padding-top: 30px;
    padding-bottom: 100px;
  }

  .font_80,
  .font_50,
  .area_bottom table th,
  .area_bottom table tr td,
  .font_45 {
    font-size: 1.6rem;
  }

  .area_bottom .row_write {
    font-size: 1.4rem;
  }

  .carousel__arrow--prev {
    left: -10px;
  }

  .carousel__arrow--next {
    right: -10px;
  }

  .slider_wrap3 .slider3_list figure {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .slider_wrap3 .slider3_list_step5 figure {
    width: 40%;
  }

  .setumei {
    font-size: 1.3rem;
  }

  #anc01 {
    padding-left: 0px;
    padding-right: 0px;
  }

  .area_bottom table tr:first-child th:nth-child(2)::after {
    content: none;
  }

  .area_bottom table tr:first-child th:nth-child(2) img {
    top: 0;
    width: 100%;
  }

  .area_bottom table th,
  .area_bottom table tr td {
    font-size: 1rem;
  }

  .area_bottom .row_write {
    font-size: 1.2rem;
  }

  .area_bottom .font_50 {
    font-size: 1.4rem;
  }

  .area_bottom table tr:first-child th:nth-child(2),
  .area_bottom table tr td:nth-child(2) {
    border: 2px solid var(--color_main);
  }

  .area_bottom table th,
  .area_bottom table td {
    border: 2px solid #000;
  }

  .area_bottom table {
    margin-top: 20px;
  }

  #wpcf7cpcnf th,
  .table-res-form th {
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .td_zip {
    padding-bottom: 0 !important;
  }

  .contact_wrap .col_1460 {
    margin-left: 0;
    margin-right: 0;
  }

  .voice_wrap h2 {
    width: 200px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
  }

  .slider2 li figure {
    width: 70%;
  }

  .voice_wrap p {
    font-size: 1.8rem;
  }

  #wpcf7cpcnf th,
  .table-res-form th {
    padding-top: 0;
  }

  #wpcf7cpcnf td,
  .table-res-form td {
    padding-top: 2px;
  }

  .mainImg ul {
    width: 100%;
    bottom: 20px;
    left: 0;
  }

  #wpcf7cpcnf .color_red,
  .table-res-form .color_red {
    font-size: 1.1rem;
    position: relative;
    top: -2px;
  }

  .contact_form_tel th {
    margin-top: 10px;
  }

  .area_bottom table tr td .font_45,
  .area_bottom table tr td {
    font-size: 0.8rem;
  }

  .area_bottom table tr:first-child th:nth-child(2) img {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .voice_wrap .slider2 {
    width: 256px;
    margin-left: auto;
    margin-right: auto;
  }

  .sp_font_big {
    font-size: 1.8rem !important;
  }

  .sp_center {
    text-align: center;
  }

  /* 2025.10.15追加 */
  /* 報告書　削除したことにより、スマホの余白がおかしくなった 報告書復活させたら下記削除して下さい。 */

  /* .area_inner {
    margin-top: 80px;
  } */

  /* 2025.10.15追加　ここまで */


}

/* 600　ここまで */

.warpper {
  overflow: hidden;
}
