* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Zen Kaku Gothic Antique", sans-serif; /*zen-kaku-gothic-antique-regular*/
  font-weight: 400;
  font-style: normal;
}

:root {
  --primary-color: #1a1a1a;
  --secondary-color: #4a4a4a;
  --accent-color: #e67e22;
  --light-gray: #f5f5f5;
  --white: #ffffff;
  --max-width: 1280px;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--primary-color);
}

@media (max-width: 1100px) {
  body {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 1rem;
  }
}

/* font */

/* width control */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  /* padding: 0 var(--spacing-sm); */
}

/* block arrangement */

.layout_row {
  display: flex;
  justify-content: center;
}

.row_reverse {
  flex-direction: row-reverse;
}

/* height arrangement */
a.anchor {
  display: block;
  padding-top: 70px;
  margin-top: -70px;
}

/* パンくずリスト */
.breadcrumb_wrapper {
  position: absolute;
  margin: 15px;
  justify-content: left;
}

.breadcrumb_item {
  position: relative;
  margin-right: 10px;
  padding: 10px 15px;
}

.breadcrumb_item:after {
  position: absolute;
  content: ">";
  top: 8px;
  right: 0;
}

.breadcrumb_item:last-child::after {
  content: "";
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  max-width: 100vw; /*なぜかヘッダーだけが飛び出してしまう対策。根本的な原因はよくわからない…*/
  /* background: rgba(255, 255, 255, 0.6); */
  /* background-image: url(../image/AdobeStock_297438024.jpeg); */
  /* background-color: rgba(225, 239, 181, 0.7); */
  background-color: rgba(255, 255, 255, 0.7);
  background-blend-mode: lighten;
  z-index: 1000;
}

.header_content {
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  max-width: 95vw;
  margin: 0 auto;
}

.header_left {
  align-items: center;
  justify-content: flex-start;
  width: 30%;
  width: 311px;
}

.header_logo {
  width: 46px;
  margin-top: 6px;
  margin-right: 6px;
}

.company_name {
  font-size: 1.8rem;
  font-weight: 700;
}

.main_nav {
  /* width: 55%; */
  width: 690px;
}

@media (max-width: 1230px) {
  .main_nav {
    width: 65%;
  }
}

.main_nav .nav_list_wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0 auto;
  gap: 10px;
  list-style: none;
}

.main_nav a {
  position: relative;
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 500;
  padding: 0.3rem 0.5rem;
  margin: 0.5rem;
  transition: color 0.3s ease;
}

.main_nav a::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 2px;
  height: 0;
  background: #000000;
  transform-origin: left top;
  transition: height 0.3s ease;
}

a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 0;
  height: 2px;
  background: #000000;
  transform-origin: left bottom;
  transition: width 0.3s ease 0.3s;
}

.main_nav a:hover::before {
  height: 100%;
}

.main_nav a:hover::after {
  width: 100%;
}

.header_right {
  width: 15%;
}

.telNumber_wrapper {
  align-items: center;
  margin-top: 6px;
}

.telNumber_wrapper img {
  height: 30px;
  width: auto;
}

.telNumber {
  font-size: 1.4rem;
  font-weight: bold;
}

@media (max-width: 1280px) {
  .header_right {
    display: none;
  }
}

/* ハンバーガーボタンのスタイル */
.hamburger {
  display: none; /* PC表示では非表示 */
  background: none;
  border: none;
  width: 30px;
  height: 24px;
  position: relative;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  position: absolute;
  transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 11px;
}
.hamburger span:nth-child(3) {
  bottom: 0;
}

/* ハンバーガーメニューがアクティブ時の×印 */
.hamburger.active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/* ページネーション */
.pagination {
  margin-top: 20px;
  margin-left: 20px;
}
.pagination ul {
  margin-top: 64px;
  display: flex;
}

.pagination ul li {
  margin-left: 32px;
}

/* section共通 */

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

@media (max-width: 768px) {
  .section_contents_wrapper {
    margin-top: 42px;
  }
}
/* main */

main {
  /* background-color: #f5f5f5; */
  background-image: url(../image/AdobeStock_297438024_03.jpg);
  /* background-color: rgba(255, 255, 255, 0.8);
  background-blend-mode: lighten; */
}

/* Hero Section */
.hero {
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  width: 100%;
  height: 75vh;
  z-index: 0; /* headerよりも下のレイヤーに */
}

.slider_item {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 2.4s;
}

.slider_item.show {
  opacity: 1;
}

.hero_image_wrapper img {
  width: 100vw;
  height: 75vh;
  object-fit: cover;
  object-position: center center;
}

.hero_content {
  /* padding: var(--spacing-md); */
  position: relative;
  width: 100%;
  height: 100%;
}

.hero_copy_wrapper {
  position: absolute;
  top: 164px;
  top: 57%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 100;
  display: flex;
}

.hero_copy_01 {
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", serif;
  font-size: 2rem;
  padding: 5px 10px;
  color: #333;
  border-radius: 5px;
}

.text_vertical {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  margin-left: auto;
  margin-right: auto;
}

.text_vertical span {
  text-combine-upright: all;
  -ms-text-combine-horizontal: all;
  writing-mode: horizontal-tb;
  text-combine-upright: all;
  display: inline-block;
}

.text_horizontal_wrapper {
  top: 560px;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
}

.cta_button_wrapper {
  position: fixed;
  right: 3%;
  top: 23%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(230, 126, 34, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  color: #fff;
  z-index: 100;
}

.cta_button_wrapper .cta_button_link {
  color: #fff;
}

.cta_button_wrapper:hover {
  color: var(--accent-color);
}

.cta_button {
  display: block;
  background: var(--accent-color);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.3s ease;
}

.cta_button:hover {
  background-color: #d35400;
}

.cta_button_link {
  text-decoration: none;
}

@media (max-width: 1000px) {
  .cta_button_wrapper {
    width: 130px;
    height: 130px;
  }
}

@media (max-width: 1100px) {
  .hero_copy_right_wrapper {
    right: 5%;
  }
  .hero_copy_01 {
    font-size: 1.6rem;
  }
}

@media (max-width: 1000px) {
  .hero_content {
    /* margin-top: 180px; */
  }
}

@media (max-width: 768px) {
  .hero {
    height: 60vh;
  }
  .hero_image_wrapper img {
    height: 52vh;
  }
  .hero_copy_wrapper {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .hero_copy_01 {
    font-size: 1.2rem;
  }

  .hero_copy_01 .text_horizontal_wrapper {
    padding: 0;
  }

  .text_horizontal_wrapper {
    top: 320px;
    padding: 0;
  }
  .cta_button_wrapper {
    font-size: 1rem;
    right: 3%;
    top: 58%;
    width: 120px;
    height: 120px;
  }
  .cta_button_link {
    font-size: 1.2rem;
  }
}

@media (max-width: 600px) {
}

/* Section Styles */
.page_title {
  text-align: center;
  font-size: 1.8rem;
}

section {
  margin-top: 80px;
}

.section_title {
  text-align: center;
  font-size: 1.8rem;
}

@media (max-width: 768px) {
  .page_title {
    font-size: 1.4rem;
  }
  .section_title {
    font-size: 1.5rem;
  }
}

@media (max-width: 600px) {
  section {
    margin-top: 50px;
  }
}

/* スクロールマーク */
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400&display=swap");

.scroll_down {
  display: block;
  left: 0;
  right: 0;
  text-align: center;
  bottom: 40px;
  margin-top: 70px;
  position: absolute;
}

.scroll_down p {
  letter-spacing: 0.1vw;
}

.scroll_down a {
  display: inline-block;
  line-height: 18px;
  font-size: 12px;
  font-weight: normal;
  color: #000;
  letter-spacing: 2px;
  text-decoration: none;
}

.scroll_down .mouse {
  position: relative;
  display: block;
  width: 35px;
  height: 55px;
  margin: 0 auto 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 2px solid #000;
  border-radius: 23px;
}

.scroll_down .mouse > * {
  position: absolute;
  display: block;
  top: 29%;
  left: 50%;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  background: #000;
  border-radius: 50%;
  animation: ani-mouse 2.5s linear infinite;
}

@keyframes ani-mouse {
  0% {
    opacity: 0;
    top: 70%;
  }
  40% {
    opacity: 0;
    top: 30%;
  }
  70% {
    opacity: 1;
    top: 30%;
  }
  100% {
    opacity: 1;
    top: 70%;
  }
}

@media (max-width: 768px) {
  .scroll_down {
    margin-top: 0;
    top: 65%;
  }
}

/* Concept Section */
.sect_concept {
  padding-top: 160px;
  margin: 0;
}

.concept_container {
  position: relative;
  height: 600px;
  margin-top: 80px;
}

.concept_image_wrapper {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 8%;
  transition-duration: 2s;
}

.concept_image_wrapper.active {
  opacity: 1;
}

.concept_image_wrapper img {
  width: 680px; /*768ox*/
  max-width: 86vw;
  border-radius: 10px;
}

.concept_texts_wrapper {
  position: absolute;
  top: 280px;
  right: 8%;
  width: 460px;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 20px 40px;
  border-radius: 10px;
  opacity: 0;
  transition-delay: 0.3s;
  transition-duration: 2s;
  filter: drop-shadow(2px 2px 3px rgb(0 0 0 / 0.3));
}

.concept_texts_wrapper.active {
  opacity: 1;
}

.concept_texts_wrapper > h2,
.concept_texts_wrapper > p,
.concept_texts_wrapper > p > span {
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", serif;
}

.concept_text {
  margin-top: 20px;
}

@media (max-width: 1100px) {
  .concept_image_wrapper {
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
  }
  .concept_texts_wrapper {
    top: 380px;
    right: 8%;
    width: 480px;
    max-width: 90vw;
  }
}

@media (max-width: 1000px) {
  .concept_image_wrapper {
    top: 0;
  }
}

@media (max-width: 768px) {
  .sect_concept {
    padding: 0;
  }
  .concept_texts_wrapper {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 600px) {
  .concept_texts_wrapper {
    position: inherit;
    display: block;
    width: 86vw;
    top: 280px;
  }
}

/* Strength Section */

.sect_strength {
  margin-top: 280px;
}

.strength_wrapper {
  position: relative;
}

.sect_strength .pc_container {
  position: relative;
  width: 980px;
  height: 700px;
  margin-top: 80px;
  margin-right: auto;
  margin-left: auto;
  opacity: 0;
  transition-duration: 2s;
}

.sect_strength .pc_container.active {
  opacity: 1;
  filter: drop-shadow(6px 6px 6px rgb(0 0 0 / 0.3));
}

.box {
  position: absolute;
  transform-origin: center center;
  transition: transform 0.3s ease;
}

.box:hover {
  transform: scale(1.03);
}

.pc_box:nth-child(1) {
  top: 61px;
  left: 109px;
}

.pc_box:nth-child(2) {
  top: 61px;
  left: 370px;
}

.pc_box:nth-child(3) {
  top: 270px;
  left: 50%;
  transform: translateX(-50%);
}

.pc_box:nth-child(4) {
  top: 469px;
  left: 109px;
}

.pc_box:nth-child(5) {
  top: 270px;
  left: 620px;
}

.box_text {
  position: absolute;
  width: 100%;
  z-index: 2;
}

.box:nth-child(1) .box_text {
  top: 0;
  left: 0;
  -ms-writing-mode: tb-lr;
  -webkit-writing-mode: vertical-lr;
  writing-mode: vertical-lr;
}

.box:nth-child(2) .box_text {
  top: 0;
  right: 0;
  text-align: right;
}

.box:nth-child(3) .box_text {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  align-items: center;
}

.box:nth-child(4) .box_text {
  top: unset;
  bottom: 7px;
}

.box:nth-child(5) .box_text {
  top: unset;
  bottom: 8px;
  left: unset;
  right: 0;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.box_text h3 {
  color: #000; /* 文字色を白に */
  margin: 0;
  padding: 7px;
  display: inline-block; /* テキストの幅に合わせる */
  background-color: rgba(255, 255, 255, 0.7);
}

.tb02_container {
  display: none;
}

.sp_container {
  display: none;
}

@media (max-width: 1024px) {
  .sect_strength .pc_container {
    display: none;
  }

  .sect_strength .tb02_container {
    display: block;
    position: relative;
    width: 640px;
    height: 500px;
    margin-top: 80px;
    margin-right: auto;
    margin-left: auto;
    opacity: 0;
    filter: drop-shadow(6px 6px 6px rgb(0 0 0 / 0.3));
    transition-duration: 2s;
  }

  .sect_strength .tb02_container.active {
    opacity: 1;
  }

  .tb02_box:nth-child(1) {
    top: 0;
    left: 15px;
  }

  .tb02_box:nth-child(2) {
    top: 0px;
    left: 224px;
  }

  .tb02_box:nth-child(3) {
    top: 167px;
    left: 50%;
    transform: translateX(-50%);
  }

  .tb02_box:nth-child(4) {
    top: 327px;
    left: 15px;
  }

  .tb02_box:nth-child(5) {
    top: 167px;
    left: 424px;
  }
}

@media (max-width: 768px) {
  .sect_strength {
    margin-top: 180px;
  }
  .sect_strength .tb02_container {
    display: none;
  }

  .sect_strength .sp_container {
    display: block;
    position: relative;
    width: 375px;
    height: 400px;
    margin-top: 80px;
    margin-right: auto;
    margin-left: auto;
    opacity: 0;
    transition-duration: 2s;
  }

  .sect_strength .sp_container.active {
    opacity: 1;
    filter: drop-shadow(6px 6px 6px rgb(0 0 0 / 0.3));
  }

  .sp_box:nth-child(1) {
    top: 0;
    left: -3px;
  }

  .sp_box:nth-child(2) {
    top: 0px;
    left: 128px;
  }

  .sp_box:nth-child(3) {
    top: 105px;
    left: 50%;
    transform: translateX(-50%);
  }

  .sp_box:nth-child(4) {
    top: 205px;
    left: -3px;
  }

  .sp_box:nth-child(5) {
    top: 106px;
    left: 254px;
  }
}

/* --------- Services Section ----------- */

.services_wrapper {
  position: relative;
}

.sect_services {
  margin-top: 280px;
}

.service_item_wrapper {
  flex-wrap: wrap;
  /* margin-top: 30px; */
}

.service_item {
  width: 560px;
  border-radius: 5px;
  overflow: hidden;
  margin-top: 100px;
  margin-right: 20px;
  margin-left: 20px;
  filter: drop-shadow(2px 2px 3px rgb(0 0 0 / 0.3));
  opacity: 0;
  transition-duration: 2s;
}

.service_item.active {
  opacity: 1;
}

.service_item_title {
  font-size: 1.5rem;
}

.service_item_card {
  margin-top: 10px;
}

.beforeAfter_image_wrapper {
  position: relative;
  max-width: 280px;
  width: 100%;
  max-height: 210px;
  height: 100%;
}

.beforeAfter_image_wrapper img {
  display: block;
  max-width: 280px;
  width: 100%;
  max-height: 210px;
  height: 100%;
  object-fit: cover;
}

.service_beforeAfter_sub_images_wrapper .beforeAfter_text {
  top: -2px;
  left: 0;
}

.beforeAfter {
  justify-content: flex-start;
}

.beforeAfter_text {
  position: absolute;
  top: -2px;
  padding: 6px 12px;
  background-color: rgba(255, 255, 255, 0.7);
}

.beforeAfter_text p {
  box-decoration-break: clone;
  display: inline;
  color: #333;
  font-size: 1.5rem;
  font-weight: bold;
}

.service_item_description {
  background-color: #fff;
  max-width: 560px;
  padding: 24px 48px;
  /* height: 300px; */
}

.service_item_description dt {
  border-bottom: 0.5px solid #333;
}

.service_item_description dd {
  margin-top: 8px;
}

.service_item_description .price {
  margin-top: 20px;
}

@media (max-width: 1200px) {
  .sect_services {
    margin-top: 340px;
  }
  .service_item {
    width: 720px;
  }
  .beforeAfter_image_wrapper {
    max-width: 100%;
    max-height: 270px;
    /* width: 70vw;
    height: 100%; */
  }
  .beforeAfter_image_wrapper img {
    display: block;
    max-width: 360px;
  }
  .service_item_description {
    max-width: 100%;
  }
}

/* レスポンシブ */
@media (max-width: 768px) {
  .sect_services {
    margin-top: 220px;
  }

  .service_item {
    width: 86vw;
    max-width: 500px;
    margin-top: 40px;
    margin-bottom: 20px;
  }

  .service_item_title {
    font-size: 1.2rem;
  }

  .beforeAfter_text {
    font-size: 1.2rem;
  }

  .service_item_description {
    padding: 12px 24px;
  }
}

/* Works Section */

.sect_works {
  margin-top: 280px;
}

.works_wrapper {
  position: relative;
}

.work_item_wrapper {
  margin-top: 80px;
  align-items: flex-end;
  opacity: 0;
  transition-duration: 2s;
}

.work_item_wrapper.active {
  opacity: 1;
}

.work_item_image_wrapper {
  margin-top: 40px;
}

.work_item_image_wrapper img {
  display: block;
  /* max-width: 250px; */
  object-fit: cover;
  margin: 0 auto;
}

.house_image_container {
  width: 240px; /* 四角形の幅 */
  height: 180px; /* 四角形＋三角形の高さ */
}

.house_clip_path {
  width: 100%; /* 必要に応じて調整 */
  height: auto;
  clip-path: polygon(50% 0%, /* 三角形の頂点 (中央上) */ 0% 60px, /* 三角形の左端 */ 0% 220px, /* 四角形の左下 */ 100% 220px, /* 四角形の右下 */ 100% 60px, /* 三角形の右端 */ 50% 0% /* 三角形の頂点に戻る */);
  -webkit-clip-path: polygon(50% 0%, 0% 60px, 0% 220px, 100% 220px, 100% 60px, 50% 0%); /* Safari対応 */
  object-fit: cover; /* 元画像を領域にフィット */
}

.work_text_wrapper {
  padding-left: 40px;
  padding-right: 40px;
  max-width: 720px;
  width: 60%;
  border-bottom: 0.5px solid #333;
}

.work_text_wrapper h3 {
  font-size: 1.3rem;
  font-weight: bold;
}

.work_text_wrapper p {
  margin-top: 10px;
}

.works_wrapper .more_button {
  margin-top: 100px;
}

.work_link {
  display: block;
  width: 50%;
  color: blue;
  margin-top: 10px;
  margin-right: 0;
  margin-left: auto;
  text-align: right;
}

@media (max-width: 1024px) {
  .sect_works {
    margin-top: 280px; /*680px*/
  }

  .work_link {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .sect_works {
    margin-top: 180px; /*80px*/
  }

  .work_item_image_wrapper img {
    width: 235px;
  }

  .work_text_wrapper {
    padding-left: 15px;
    padding-right: 15px;
    width: 50%;
  }
  .work_text_wrapper h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 600px) {
  .work_item_wrapper {
    margin-top: 50px;
    flex-direction: column;
    align-items: center;
  }

  .house_image_container {
    width: 86vw;
    max-width: 300px;
    height: auto;
  }

  .work_item_image_wrapper img {
    width: 274px;
  }

  .work_text_wrapper {
    width: 274px;
    padding-left: unset;
    padding-right: unset;
  }
  .work_text_wrapper h3 {
    margin-top: 5px;
  }
}

/* FAQ Section */

.sect_faq {
  margin-top: 280px;
}

.faq_wrapper {
  position: relative;
  width: 900px;
  max-width: 90vw;
  margin: 0 auto;
}

.faq_list_wrapper {
  margin-top: 80px;
}

.faq_list_item {
  margin-top: 80px;
  /* background: var(--light-gray); */
  /* border-radius: 5px; */
  opacity: 0;
  transition-duration: 2s;
}

.faq_list_item.active {
  /* background: var(--light-gray);
  border-radius: 5px; */
  opacity: 1;
}

.faq_question {
  font-weight: bold;
  font-size: 1.4rem;
}

/* answerの開閉部分 */
.faq_answer_wrapper {
  position: relative;
  margin-top: 20px;
}
.faq_answer_wrapper input {
  display: none;
}
/*開くためのボタンとテキストを隠すグラデーションの設定*/
.faq_answer_wrapper label {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  bottom: -10px;
  width: 100%;
  height: 140px; /* グラデーションの高さ */
  cursor: pointer;
  text-align: center;
  /* 以下グラデーションは背景を自身のサイトに合わせて設定してください */
  background: linear-gradient(to bottom, rgba(245, 245, 245, 0) 0%, rgba(245, 245, 245, 1) 100%);
}
/* 開いた時にグラデーションを消す */
.faq_answer_wrapper input:checked + label {
  background: inherit;
  opacity: 0;
}

.faq_answer_wrapper .answer_container {
  overflow: hidden;
  height: 120px; /* 開く前に見えている部分の高さ */
  transition: all 0.5s;
}
/*続きをよむボタン*/
.faq_answer_wrapper label:after,
.faq_answer_wrapper label::before {
  content: "";
  position: absolute;
  line-height: 2.5rem;
}
.faq_answer_wrapper label:after {
  z-index: 2;
  bottom: 6px;
  width: 13em;
  content: "続きをよむ";
  color: #333;
  border: solid #333;
  border-radius: 20px;
}
.faq_answer_wrapper label::before {
  position: absolute;
  bottom: 22px;
  left: calc(50% - 3.5em);
  z-index: 3;
  width: 10px;
  height: 5px;
  background: #333;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
/*閉じるボタン*/
.faq_answer_wrapper input:checked + label:after {
  content: "閉じる";
}
.faq_answer_wrapper input:checked + label:before {
  left: calc(50% - 2.5em);
  transform: scale(1, -1);
}
.faq_answer_wrapper input:checked ~ .answer_container {
  height: auto;
  padding-bottom: 80px; /* 閉じるボタンのbottomからの位置 */
  transition: all 0.5s;
}

@media (max-width: 768px) {
  .sect_faq_contents {
    margin-left: 20px;
    margin-right: 20px;
  }
}

/* ここまでanswerの開閉部分 */

.faq_wrapper .more_button {
  margin-top: 100px;
}

@media (max-width: 1100px) {
  .faq_list_item {
    width: 80vw;
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 768px) {
  .faq_question {
    font-size: 1.2rem;
  }
}

/* News Section */

.news_wrapper {
  position: relative;
}

.column_section_wrapper {
  gap: 2rem;
  margin: 0 auto;
  width: 80vw;
}

.sect_news {
  margin-top: 280px;
}

.news_wrapper {
  width: 35vw;
}

.news_list_wrapper {
  margin-top: 80px;
  opacity: 0;
  transition-duration: 2s;
}

.news_list_wrapper.active {
  opacity: 1;
}

.news_list_item {
  display: flex;
  gap: var(--spacing-sm);
  padding: 10px 15px;
  margin-top: 30px;
  border-bottom: 1px solid #555;
}

.column_section_wrapper {
  padding-bottom: 120px;
  justify-content: space-between;
}

.news_list_item time {
  margin-right: 20px;
}

@media (max-width: 1000px) {
  .column_section_wrapper {
    flex-direction: column;
  }
  .news_wrapper {
    width: 80vw;
  }
}

/*------スクロールトップボタン-------*/
.scroll_btn_wrapper {
  display: block;
  text-align: center;
  width: 120px;
  height: 74px;
  z-index: 6;
  position: fixed;
  right: 80px;
  visibility: hidden;
  opacity: 0;
  transition: bottom 0.6s ease;
}

.scroll_btn_wrapper.show {
  visibility: visible;
  opacity: 0.8;
}

.scroll_btn_wrapper img {
  width: 80px;
  height: auto;
}

@media (max-width: 1000px) {
  .scroll_btn_wrapper {
    right: 5%;
  }
}

/* Footer Styles */
.footer {
  /* background: #e1efb5; */
  background-image: url(../image/AdobeStock_297438024.jpeg);
  background-color: rgba(225, 239, 181, 0.8);
  background-blend-mode: lighten;
  color: #333;
  padding: var(--spacing-lg) 0;
}

.footer_content {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  width: 90vw;
  max-width: 1200px;
}

.footer_company_name {
  font-size: 1.6rem;
}

.footer_company_address {
  font-size: 1.2rem;
}

.footer_content > p {
  font-size: 1.2rem;
}

.footer_left {
  align-items: center;
  justify-content: flex-start;
}

.company_info {
  width: 50vw;
  flex-grow: 2;
}

.contact_info {
  width: 40vw;
  flex-grow: 3;
  margin-top: 20px;
}

.contact_info h3 {
  font-size: 1.4rem;
}

.contact_button {
  display: inline-block;
  background: var(--accent-color);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 5px;
  text-decoration: none;
  margin-top: var(--spacing-md);
}

.copyright {
  text-align: center;
  margin-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 1100px) {
  .company_name {
    font-size: 1.6rem;
  }
}

@media (max-width: 1000px) {
  /* ハンバーガーメニュー */
  .hamburger {
    display: block; /* モバイル表示では表示 */
  }

  .main_nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* height: 100vh; */
    background: rgba(255, 255, 255, 0.9);
    padding-top: 60px;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
  }

  .main_nav.active {
    transform: translateY(0);
    height: 90vh;
  }

  .main_nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }

  .main_nav a {
    display: block;
    padding: 8px;
    text-align: center;
  }
  .footer_content {
    flex-direction: column;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .company_name {
    font-size: 1.6rem;
  }

  .hero {
    height: 70vh;
  }

  .hero_title {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
  }

  .company_info,
  .contact_info {
    width: 90vw;
    margin-right: auto;
    margin-left: auto;
  }
  .contact_info h3 {
    font-size: 1.2rem;
  }
  .contact_info p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero_title {
    font-size: 1.5rem;
  }

  .cta_button {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .news-item {
    flex-direction: column;
    gap: 0.25rem;
  }

  .footer_content {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    text-align: center;
  }
}

/* Print Styles */
@media print {
  .header {
    position: static;
    box-shadow: none;
  }

  .main_nav,
  .cta_buttons,
  .more_button,
  .contact_button {
    display: none;
  }

  .hero {
    height: auto;
    background: none;
    color: var(--primary-color);
  }

  section {
    padding: var(--spacing-sm) 0;
    page-break-inside: avoid;
  }

  .footer {
    background: none;
    color: var(--primary-color);
  }
}

/* Utility Classes */
.more_button,
.more_link {
  display: block;
  max-width: 320px;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
  margin-top: 32px;
  padding: 0.5rem 1rem;
  color: var(--accent-color);
  text-decoration: none;
  border: 1px solid var(--accent-color);
  border-radius: 5px;
  transition: all 0.3s ease;
}

.more_button:hover,
.more_link:hover {
  background: var(--accent-color);
  color: var(--white);
}

/* Animation Classes */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade_in {
  animation: fadeIn 0.6s ease-out forwards;
}

/* Accessibility */
/* @media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.visually_hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
} */

/* Focus Styles */
/* :focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
} */

/* High Contrast Mode */
/* @media (forced-colors: active) {
  .cta_button,
  .more_button,
  .more_link {
    border: 2px solid currentColor;
  }
} */

/* --------------- common_settings ---------------------- */

.about_container,
.servicePrices_container,
.strength_container,
.worksVoices_container,
.work_archives_container,
.faq_container {
  position: relative;
  margin-top: 180px;
  width: 86vw;
  max-width: 920px;
}

.title_decoration {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  /* max-width: 300px; */
}

.section_title_decoration {
  position: absolute;
  top: -47px;
  left: 0;
  width: 300px;
}

.page_title_decoration_02 {
  position: absolute;
  top: -64px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
}

.section_title-decoration_03 {
  /* background-color: #f5f5f5; */
  border-top: 5px solid rgba(0, 0, 0, 0);
  border-right: 5px solid rgba(0, 0, 0, 0);
  border-left: 5px solid #555555;
  border-bottom: 5px solid #555555;
}

@media (max-width: 768px) {
  .about_container,
  .servicePrices_container,
  .strength_container,
  .worksVoices_container,
  .work_archives_container,
  .faq_container {
    margin-top: 120px;
    width: inherit;
  }

  .page_title_decoration_02 {
    top: -42px;
    width: 280px;
  }
}

@media (max-width: 600px) {
  .page_title_decoration_02 {
    top: -38px;
    width: 240px;
  }
  .section_title-decoration_03 {
    border-top: 3px solid #f5f5f5;
    border-right: 3px solid #f5f5f5;
    border-left: 3px solid #555555;
    border-bottom: 3px solid #555555;
  }
}

/* --------------- page_about ---------------------- */

.page_about,
.page_faq {
  padding-top: 64px;
  padding-bottom: 64px;
}

.page_about .section_title-decoration_03 {
  /* display: inline-block; */
}

.about_section_title {
  display: block;
  font-size: 1.4rem;
  margin-left: 10px;
  margin-bottom: 4px;
  width: 86vw;
  max-width: 580px;
}

.sect_greeting,
.sect_profile,
.sect_history {
  margin-top: 100px;
}

.greeting_contents_wrapper {
  /* width: 100%; */
  width: 760px;
  max-width: 86vw;
  margin-right: auto;
  margin-left: auto;
}

.greeting_title {
  font-size: 1.4rem;
}

.greeting_image_wrapper {
  margin-top: 12px;
}

.greeting_image_wrapper img {
  /* display: block; */
  max-width: 86vw;
  /* max-width: 90vw; */
  margin: 0 auto;
}

.greeting_texts_wrapper {
  margin-top: 12px;
}

.greeting_text {
  margin-top: 18px;
}

.profileList_wrapper {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  width: 40vw;
  max-width: 400px;
  margin-right: 60px;
}

.profileList_left {
  flex-basis: 32%;
  border-bottom: 1px solid #ccc;
  margin-top: 20px;
  padding-left: 10px;
  padding-right: 32px;
  padding-bottom: 0.5rem;
  text-align-last: justify;
  font-size: 1.2rem;
}

.profileList_right {
  flex-basis: 65%;
  border-bottom: 1px solid #ccc;
  margin-top: 20px;
  padding-bottom: 0.5rem;
  font-size: 1.2rem;
}

.profile_image_wrapper img {
  width: 40vw;
  max-width: 480px;
}

@media (max-width: 768px) {
  .profile_contents_wrapper {
    flex-direction: column-reverse;
    align-items: center;
    margin-top: 48px;
  }
  .profileList_wrapper {
    width: 86vw;
    max-width: 680px;
    margin-right: unset;
  }
  .profile_image_wrapper img {
    width: 86vw;
    max-width: 680px;
    margin: 0 auto;
  }
  .sect_greeting,
  .sect_profile,
  .sect_history {
    margin-top: 60px;
  }
  .sectAbout_title_wrapper {
    margin-left: 20px;
    margin-right: 20px;
  }
}

.profile_map_wrapper {
  width: fit-content;
  margin: 25px auto 0;
}

iframe {
  max-width: 100%;
}

.historyList_wrapper {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  /* width: 44vw;  */
  /* max-width: 480px;  */
  margin-right: 40px;
}

.historyList_left {
  flex-basis: 35%;
  margin-top: 10px;
  padding-right: 32px;
  padding-bottom: 0.5rem;
  text-align-last: justify;
  font-size: 1.2rem;
  text-align: center;
  border-bottom: 1px solid #ccc;
}

.historyList_right {
  flex-basis: 65%;
  margin-top: 10px;
  padding-bottom: 0.5rem;
  font-size: 1.2rem;
  border-bottom: 1px solid #ccc;
}

.history_image_wrapper img {
  width: 30vw;
  max-width: 400px;
}

@media (max-width: 900px) {
  .historyList_left {
    flex-basis: 40%;
  }
  .historyList_right {
    flex-basis: 60%;
  }
}

@media (max-width: 768px) {
  .history_contents_wrapper {
    flex-direction: column-reverse;
    align-items: center;
    margin-top: 48px;
  }
  .historyList_wrapper {
    width: 86vw;
    max-width: 680px;
    margin-right: unset;
  }
  .history_image_wrapper img {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
  }
  .historyList_left {
    padding-right: 16px;
    flex-basis: 33%;
  }
}

@media (max-width: 430px) {
  .historyList_left {
    flex-basis: 40%;
  }
  .historyList_right {
    flex-basis: 60%;
  }
  .historyList_wrapper {
    width: 92vw;
  }
}

/* ---------------- page_servicePrices ---------------- */

.page_servicePrices {
  padding-top: 64px;
  padding-bottom: 64px;
}

.servicePrices_categoryTitle_wrapper {
  align-items: center;
}

.servicePrices_categoryTitle_image img {
  width: 130px;
}

.servicePrices_categoryTitle_text {
  position: relative;
  margin-top: 10px;
  margin-right: auto;
  margin-left: 10px;
  height: 48px;
  width: 80%;
}

.servicePrices_categoryTitle_text h2 {
  position: absolute;
  top: 0;
  left: -18px;
  display: block;
  font-size: 1.4rem;
  margin-left: 10px;
  margin-bottom: 4px;
  padding-right: 20px;
  padding-left: 20px;
  border-bottom: solid 2px #333;
}

.service_category_title_decoration {
  position: absolute;
  top: 0;
  width: 280px;
}

.service_category_title {
  margin-left: 10px;
  margin-bottom: 10px;
}

/* ------------------------------------------------------- */

.service_category_menu {
  align-items: flex-end;
  background-color: #ffffff;
  border-radius: 10px;
  padding-right: 30px;
  padding-left: 30px;
  padding-bottom: 20px;
  margin-top: 40px;
}

.service_category_icon_wrapper {
  position: relative;
  margin-left: auto;
}

.house_object_wrapper h2 {
  font-size: 1.4rem;
  margin-top: 25px;
}

.house_object {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.house_category_whole_wrapper {
  position: absolute;
  top: 150px;
  left: 53px;
  width: 100%;
  max-width: 460px;
  height: 240px;
}

.house_category_over_wrapper {
  width: 100%;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 6px;
}

.house_category_under_wrapper {
  width: 100%;
  justify-content: space-between;
  align-items: flex-end;
}

.service_category_icon {
  position: relative;
}

.service_category_icon img {
  display: block;
  width: 192px;
  height: auto;
}

.service_category_icon .hover_text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 16px;
  font-weight: bold;
  background: rgba(0, 0, 0, 0.4);
  padding: 10px;
  border-radius: 5px;
  opacity: 0.8;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
  width: 95%;
  text-align: center;
}
.service_category_icon:hover .hover_text {
  opacity: 1;
}

.service_category_icon.service_category_icon_topRight .hover_text {
  top: 66%;
  left: 50%;
  transform: translate(-50%, -66%);
}

.service_category_icon_exterior_wrapper {
  display: block;
  height: 150px;
  align-items: flex-end;
  align-content: end;
}

.service_category_icon_exterior_wrapper .hover_text {
  top: 70%;
  left: 50%;
  transform: translate(-50%, -70%);
}

@media (max-width: 900px) {
  .service_category_menu {
    flex-direction: column;
  }
  .service_category_icon_wrapper {
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .service_category_menu {
    padding-right: 15px;
    padding-left: 15px;
  }
  .house_object {
    width: 320px;
    padding-right: 15px;
    padding-left: 15px;
  }
  .house_category_whole_wrapper {
    top: 70px;
    left: 50%;
    transform: translate(-50%);
  }

  .service_category_icon img {
    width: 140px;
  }
  .service_category_icon_exterior_wrapper {
    height: 120px;
  }
  .servicePrices_categoryTitle_text h2 {
    font-size: 1.2rem;
  }
  .servicePrices_categoryTitle_image img {
    width: 100px;
  }
}

/* ------------------------------------------ */

.sect_servicePrices {
  margin-top: 80px;
}

/* .worries_illust_wrapper {
  margin-top: 120px;
} */

/* .worries_illust_center_wrapper {
  align-content: center;
}

.worries_illust_center_wrapper img {
  width: 20vw;
  max-width: 300px;
} */

/* .speech_bubble {
  position: relative;
  width: 35vw;
  max-width: 300px;
  margin-bottom: 250px;
  transition-duration: 2s;
}

.speech_bubble.active {
  opacity: 1;
}

.speech_bubble img {
  position: absolute;
  top: -57px;
  left: 50%;
  transform: translateX(-50%);
  width: 30vw;
  max-width: 300px;
}

.speech_bubble p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  text-align: center;
  z-index: 1;
} */

/* .worries_illust_center_wrapper {
  max-width: 20vw;
} */

/* .worries_illust_left_wrapper,
.worries_illust_right_wrapper {
  max-width: 35vw;
}

.worries_illust_left_wrapper .speech_bubble:first-child p {
  top: 10px;
}

.worries_illust_left_wrapper .speech_bubble:nth-child(2) p {
  top: 40px;
}

.worries_illust_right_wrapper .speech_bubble:first-child p {
  top: 25px;
}

.worries_illust_right_wrapper .speech_bubble:nth-child(2) p {
  top: 30px;
} */

.suggestion_wrapper {
  margin-top: 80px;
  display: none;
}

.suggestion_image_wrapper {
  justify-content: space-around;
}

.suggestion_image_wrapper img {
  width: 10vw;
  max-width: 80px;
}

.suggestion_list_wrapper {
  max-width: 920px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.suggestion_list_wrapper li {
  margin-right: 30px;
  margin-left: 30px;
}

.service_category_contents_wrapper {
  width: 86vw;
  max-width: 920px;
  margin-top: 15px; /* 42px */
  margin-right: auto;
  margin-left: auto;
}

.service_category_problem_suggestion {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
  text-align: center;
  font-size: 1.4rem;
}

.service_category_problem_list {
  margin-left: 20px;
}

.service_category_problem_listItem {
  margin-top: 10px;
}

.service_category_contents_wrapper p {
  /* width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
  text-align: center;
  font-size: 1.4rem; */
}

.service_cases_wrapper {
  margin-top: 80px;
}

.service_case_wrapper .section_title-decoration_03 {
  display: block;
}

.service_case_wrapper {
  margin-top: 90px;
}

.service_case_title {
  margin-left: 12px;
  font-size: 1.4rem;
}

.service_case_contents_wrapper {
  width: 90%;
  margin: 0 auto;
}

.service_beforeAfter_image_wrapper {
  margin-top: 24px;
  position: relative;
}

.service_before_image_wrapper,
.service_after_image_wrapper {
  position: relative;
  max-height: 420px;
  height: 100%;
}

.service_before_image,
.service_after_image {
  display: block;
  max-width: 100%;
  width: 43vw;
  object-fit: cover;
  border-top-right-radius: 40px;
  /* border-bottom-right-radius: 30px; */
}

.service_beforeAfter_arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  opacity: 0.7;
}
/* ---------------ここから削除予定?----------------------- */

.service_beforeAfter_sub_images_wrapper {
  justify-content: space-between;
  /* width: 86vw; */
  max-width: 920px;
  margin-top: 10px;
  margin-right: auto;
  margin-left: auto;
}

.service_before_sub_image_wrapper,
.service_after_sub_image_wrapper {
  position: relative;
}

.service_before_sub_image,
.service_after_sub_image {
  max-width: 200px;
  width: 100%;
  object-fit: cover;
  border-top-right-radius: 20px;
}

/* ------------ここまで削除予定---------------- */

.service_case_details_wrapper {
  /* display: flex; */
  /* width: 90%; 86vw 920px*/
  /* max-width: 920px;  */
  width: 100%;
  margin-top: 6px;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden; /* 角丸の効果を確実に適用するため */
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
}

.service_case_details_wrapper.tb_container {
  display: none;
}

/* table, */

.works_th {
  padding: 18px;
  width: 17%;
  height: 50px;
  background-color: #e1efb5;
}

.works_td {
  width: 30%;
  max-width: 200px;
  padding: 18px;
  color: #444444;
  background-color: #fff;
}

.servicePrice_th {
  padding: 18px;
  width: 15%;
  height: 50px;
  background-color: #e1efb5;
}

.servicePrice_td {
  width: 32%;
  padding: 20px;
  color: #444444;
  background-color: #fff;
}

.servicePrice_td.sp_td_01 {
  width: 40%;
}

.servicePrice_td.sp_td_02 {
  width: 20%;
}

.servicePrice_td.sp_td_03 {
  width: 85%;
}

.even {
  background: #fbf8f0;
}
.odd {
  background: #fefcf9;
}

.works_point_image {
  /* max-width: 100%; */
}

.works_point_image_img {
  width: 90%;
  max-width: 220px;
  margin-right: 10px;
  margin-left: 10px;
}

.works_point_text {
  margin-top: 10px;
}

@media (max-width: 900px) {
  .service_case_details_wrapper th,
  .service_case_details_wrapper td {
    padding: 10px;
  }
  .service_beforeAfter_arrow {
    width: 32px;
  }
}

@media (max-width: 768px) {
  .service_before_image,
  .service_after_image {
    width: inherit;
  }
  .service_before_sub_image,
  .service_after_sub_image {
    max-width: inherit;
  }
  .service_category_contents_wrapper {
    width: 95vw;
  }
  /* .service_category_contents_wrapper p {
    text-align: left;
    display: none;
  } */
  .service_cace_title {
    font-size: 1.3rem;
    margin-left: 12px;
  }
  .service_case_contents_wrapper {
    width: 96%;
  }
  /* .service_case_details_wrapper {
    width: 90%;
  } */

  .service_case_details_wrapper.pc_container {
    display: none;
  }
  .service_case_details_wrapper.tb_container {
    display: block;
  }
  .servicePrice_th {
    width: 10%;
  }

  .servicePrice_td {
    max-width: 200px;
  }
}

@media (max-width: 600px) {
  .service_category_title_wrapper {
    margin-top: 60px;
  }
  .service_category_title {
    font-size: 1.2rem;
  }
  .service_case_contents_wrapper {
    width: 100%;
  }
}

/* ---------------- page_strength ----------------- */

.page_features {
  padding-top: 64px;
  padding-bottom: 64px;
}

.strength_contents_wrapper {
  width: 920px;
  max-width: 90vw;
  margin: 0 auto;
}

.strength_content_wrapper {
  margin-top: 200px;
}

.strength_image_wrapper {
  position: relative;
}

.strength_image_wrapper::before,
.strength_image_wrapper::after {
  content: "";
  position: absolute;
  transform: rotate(-35deg);
  width: 70px;
  height: 25px;
  background-color: #f5f5f5;
}

.strength_image_wrapper::before {
  top: -10px;
  left: -25px;
  border-bottom: 1px solid #aaa;
}

.strength_image_wrapper::after {
  bottom: -10px;
  right: -25px;
  border-top: 1px solid #aaa;
}

.strength_01 .strength_image_wrapper img {
  /* padding: 50px; */
  width: 40vw;
  max-width: 400px;
}

.strength_header_wrapper {
  position: relative;
}

.strength_header,
.strength_header_wrapper p {
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", serif;
  font-size: 1.6rem;
  position: absolute;
  background-color: #fff;
  color: #333;
  border-radius: 8px;
}

.strength_description {
  margin-top: 40px;
  width: 90%; /*80vw*/
  margin-left: auto;
  margin-right: auto;
  font-size: 1.2rem;
  line-height: 1.8;
  text-decoration: underline 2px orange;
  text-underline-offset: 7px;
}

.strength_01 .strength_header_wrapper {
  width: 40vw;
  max-width: 400px;
}

.strength_01 .strength_header_wrapper h2,
.strength_01 .strength_header_wrapper p {
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  padding: 20px 15px;
}

.strength_01 .strength_header_wrapper h2 {
  top: -90px;
  left: 170px;
}
.strength_01 .strength_header_wrapper p {
  top: 80px;
  left: 240px;
}
@media (max-width: 1000px) {
  .strength_content_wrapper {
    margin-top: 140px;
  }
}

@media (max-width: 820px) {
  .strength_header_wrapper h2,
  .strength_header_wrapper p {
    font-size: 1.4rem;
  }
  .strength_01 .strength_header_wrapper h2 {
    top: -90px;
    left: 90px;
  }
  .strength_01 .strength_header_wrapper p {
    top: 40px;
    left: 124px;
  }
}

@media (max-width: 600px) {
  .strength_header {
    font-size: 1.6rem;
  }
}

/* --- strength_02 --- */

.strength_02 {
  margin-top: 420px;
  justify-content: flex-end;
}

.strength_02 .strength_header_wrapper {
  width: 70%;
}

.strength_02 .strength_header_wrapper h2 {
  top: -230px;
  left: 46px;
  width: 300px;
  padding: 15px 30px;
}

.strength_02 .strength_header_wrapper p {
  top: -170px;
  left: 160px;
  width: 560px;
  padding: 15px 30px;
}

.strength_02 .strength_image_wrapper img {
  display: block;
  width: 60vw;
  max-width: 700px;
}

@media (max-width: 1000px) {
  .strength_02 {
    margin-top: 285px;
  }
  .strength_02 .strength_header_wrapper h2 {
    top: -140px;
    left: 0;
    width: 270px;
  }
  .strength_02 .strength_header_wrapper p {
    top: -125px;
    left: 86px;
  }
}

@media (max-width: 600px) {
  .strength_02 .strength_header_wrapper {
    width: auto;
  }
  .strength_02 .strength_header_wrapper h2 {
    top: -145px;
  }
  .strength_02 .strength_image_wrapper img {
    width: 80vw;
  }
  .strength_02 {
    justify-content: center;
  }
}

/* --- strength_03 --- */

.strength_03 {
  flex-direction: row-reverse;
  margin-top: 245px;
}

.strength_03 .strength_image_wrapper img {
  width: 40vw;
  max-width: 400px;
}

.strength_03 .strength_header_wrapper {
  width: 40vw;
}

.strength_03 .strength_header_wrapper h2,
.strength_03 .strength_header_wrapper p {
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  padding: 30px 15px;
}

.strength_03 .strength_header_wrapper h2 {
  top: -110px;
  left: 70px;
}
.strength_03 .strength_header_wrapper p {
  top: 0;
  left: 140px;
}
@media (max-width: 600px) {
  .strength_03 .strength_header_wrapper h2 {
    left: 32px;
  }
}

/* --- strength_04 --- */

.strength_04 {
  margin-top: 300px;
  justify-content: center;
  height: 560px;
}

.strength_other {
  width: 48vw;
  max-width: 700px;
}

.strength_04 .strength_header_wrapper {
  width: 27vw;
}

.strength_04 .strength_header_wrapper h2 {
  writing-mode: vertical-lr;
  top: -130px;
  left: 120px;
  padding: 30px 15px;
}
.strength_04 .strength_header_wrapper p {
  writing-mode: vertical-lr;
  top: -47px;
  left: 180px;
  padding: 30px 15px;
}

.strength_04 .strength_image_wrapper img {
  display: block;
  width: 48vw;
  max-width: 700px;
}

.strength_04 .strength_description {
  width: 48vw;
}

@media (max-width: 1000px) {
  .strength_04 .strength_image_wrapper img {
    width: 100%;
  }
  .strength_04 {
    margin-top: 340px;
  }

  .strength_other {
    width: 65vw;
  }

  .strength_04 .strength_header_wrapper {
    width: 20vw;
  }

  .strength_04 .strength_header_wrapper h2 {
    writing-mode: horizontal-tb;
    top: -136px;
    left: inherit;
    right: 50px;
    width: 390px;
    padding: 15px 30px;
  }

  .strength_04 .strength_header_wrapper p {
    top: -60px;
    left: 90px;
  }
  .strength_04 .strength_description {
    width: 80vw;
  }
  .strength_other {
    width: 80vw;
  }
}

@media (max-width: 600px) {
  .strength_04 .strength_header_wrapper h2 {
    right: -10px;
    top: -146px;
    width: 360px;
  }
}

/* --- strength_05 --- */

.strength_05 {
  margin-top: 320px;
  flex-direction: column;
}

.strength_05 .strength_header_wrapper h2 {
  top: -190px;
  left: 0;
  width: 275px;
  padding: 15px 30px;
}

.strength_05 .strength_header_wrapper p {
  top: -130px;
  left: 160px;
  width: 560px;
  padding: 15px 30px;
}

.strength_05 .strength_image_wrapper {
  margin: 0 auto;
}
.strength_05 .strength_image_wrapper img {
  display: block;
  width: 60vw;
  max-width: 600px; /*700ox*/
}

@media (max-width: 1000px) {
  .strength_05 {
    margin-top: 240px;
  }
  .strength_05 .strength_header_wrapper h2 {
    top: -168px;
    left: 0;
  }
  .strength_05 .strength_header_wrapper p {
    top: -125px;
    left: 86px;
  }
}

@media (max-width: 768px) {
  .strength_05 .strength_header_wrapper h2 {
    width: 265px;
  }
}

/*  -------------------- page_worksVoices -------------------  */

.page_worksVoices {
  padding-top: 64px;
  padding-bottom: 64px;
}

.work_wrapper {
  margin-top: 80px;
}

.work_title_wrapper {
  /* position: relative; */
  margin: 0 auto;
  max-width: 920px;
  /* width: 90%; */
}

.work_title {
  font-size: 1.6rem;
  margin-left: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.work_image_wrapper {
  width: 100%;
  max-width: 920px;
  margin-top: 40px;
  margin-right: auto;
  margin-left: auto;
}

.work_image_wrapper img {
  display: block;
  width: 100%;
  max-width: 920px;
  max-height: 580px;
  object-fit: cover;
}

.work_after_wrapper,
.work_before_wrapper {
  /* max-width: 80vw; */
  margin-top: 60px;
  margin-right: auto;
  margin-left: auto;
}

.work_after_header,
.work_before_header {
  font-size: 1.6rem;
  margin-left: 20px;
}

.work_after_pictures_wrapper,
.work_before_pictures_wrapper {
  gap: 2vw;
  margin-top: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.work_item {
  width: 21%;
}

.work_item img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (max-width: 1100px) {
  .work_item {
    width: 30%;
  }
  .work_item img {
    width: 90%;
  }
}

@media (max-width: 768px) {
  .worksVoices_container {
    margin-top: 30px;
  }

  .work_wrapper {
    margin-top: 60px;
  }
  .work_title {
    font-size: 1.2rem;
  }

  .work_item {
    width: 46%;
  }
  .work_image_wrapper {
    width: 90%;
  }
}
/*  -------------------- page_faq -------------------  */

.page_faq_item {
  margin-top: 50px;
}

/* .page_faq_answer {
  margin-top: 15px;
} */

.faq_check {
  display: none;
  /*チェックボックス非表示*/
}

.page_faq_answer {
  height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  transition: 0.8s;
  width: 100%;
}

.faq_check:checked ~ dl .page_faq_answer {
  height: auto;
  opacity: 1;
  margin-top: 15px;
  padding: 0 0 20px;
}

.faq label {
  display: block;
  background-color: wheat;
  border-radius: 4px;
  margin-top: 20px;
  padding: 15px 20px;
  color: #333;
  font-size: 1.8rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.5s;
}

/*  ------------------ page_work_archives -----------------  */

.page_work_archives {
  padding-top: 64px;
  padding-bottom: 64px;
}

.work_archives_wrapper {
  max-width: 80vw;
  margin-top: 60px;
  margin-right: auto;
  margin-left: auto;
}

.work_category_title_wrapper {
  /* margin: 0 auto; */
  /* max-width: 920px; */
  /* width: 90%; */
}

.work_category_title {
  font-size: 1.6rem;
  margin-left: 24px;
  padding-top: 8px;
  padding-bottom: 8px;
}

/* .archive_categories_wrapper {
} */

.archive_categories {
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.archive_category {
  width: 15vw;
  min-width: 160px;
  padding: 10px 15px;
  /* background-color: #9bc65d; */
  border: solid 1px #9bc65d;
  border-radius: 5px;
  align-content: center;
}

.archive_category a {
  display: block;
  width: 100%;
  height: 50px;
  line-height: 24px;
  text-align: center;
  align-content: center;
}

.work_category_items_wrapper {
  margin-top: 40px;
  gap: 2.5vw;
  flex-wrap: wrap;
  align-content: flex-start;
}

.work_category_wrapper {
  max-width: 80vw;
  margin-top: 60px;
  margin-right: auto;
  margin-left: auto;
}

.work_item_description_wrapper {
  width: 90%;
  margin: 0 auto;
}

.pageLink_text {
  justify-content: space-between;
  font-size: 1.2rem;
  margin-right: 15px;
  margin-left: 15px;
  text-align: right;
  margin-top: 2rem; /*60px*/
}

.arrow_toLeft {
  margin-left: 20px;
}

.arrow_toRight {
  margin-right: 20px;
}

.arrow_toLeft::before {
  content: "<<";
  margin-right: 5px;
}

.arrow_toRight::after {
  content: ">>";
  margin-left: 5px;
}

@media (max-width: 768px) {
  .archive_category {
    width: 36vw;
  }
  .archive_category a {
    height: 24px;
    line-height: 24px;
  }
  .work_category_title {
    font-size: 1.2rem;
    margin-left: 16px;
  }
}

@media (max-width: 600px) {
  .archive_category {
    width: 80vw;
  }
}

/*  ------------------ page_informantion -----------------  */

.page_information {
  padding-top: 64px;
  padding-bottom: 64px;
}

.information_container {
  position: relative;
  margin-top: 85px;
  padding-top: 130px;
  max-width: 100vw;
}

.blog_container {
  position: relative;
  margin-top: 74px;
  padding-top: 130px;
  max-width: 100vw;
}

.information_container .page_title_decoration_02 {
  top: 70px;
}

.article_list_wrapper {
  width: 90%;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.article_list {
  margin-top: 30px;
  border-bottom: #333 solid 1px;
}

.article_list_info {
  /* align-items: center; */
  margin-bottom: 10px;
}

.article_type_title,
.article_title {
  /* display: block; */
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  padding-right: 15px;
  padding-left: 12px;
  padding-bottom: 5px;
  width: 100%;
  /* max-width: 600px; */
}

.article_list_link {
  display: block;
  justify-content: space-between;
  width: 100%;
}

.article_list_title {
  font-size: 1.3rem;
  margin-right: 10px;
}

.article_list_link time {
  font-size: 1.2rem;
  display: flex;
  align-items: center;
}

.information_wrapper {
  margin-top: 80px;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 80px;
  max-width: 1280px;
  width: 90vw;
  justify-content: space-between;
}

.article_attribute_wrapper {
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 5px;
}

.archive_right_box {
  justify-content: space-between;
}

.information_daytime {
  margin-right: 10px;
}

.article_category_icon {
  /* display: block;
  margin-right: 15px;
  width: 100%;
  max-width: 120px;
  font-size: 1.4rem; */
  padding: 2px 8px;
  background-color: #333;
  text-align: center;
  border-radius: 4px;
  white-space: nowrap;
}

.article_category_icon a {
  font-size: 1rem;
  color: #fff;
}

.article_content {
  margin-top: 30px;
  margin-left: 10px;
  margin-right: 10px;
  word-wrap: break-word;
}

.info_article_wrapper {
  /* flex-basis: 58%; */
  width: 65%;
  max-width: 720px;
  margin-top: 40px;
}

.article_text_wrapper {
  margin-top: 32px;
}

.aside_item {
  margin-top: 40px;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
  width: 100%;
}

.aside_item h2 {
  border-bottom: solid 2px #555;
  font-size: 1.4rem;
}

.aside_link {
  margin-top: 15px;
  width: 90%;
  margin-right: auto;
  margin-left: auto;
}

.aside_link li {
  margin-top: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1; /* 表示する行数を指定（1行の場合） */
  overflow: hidden;
}

.all_archive_aside_link {
  margin-top: 30px;
  width: 90%;
  margin-right: auto;
  margin-left: auto;
}

.info_article_wrapper img {
  /* width: 100%; */
}

.info_aside_wrapper {
  flex-basis: 30%;
}

@media (max-width: 900px) {
  article_type_title,
  .article_title {
    font-size: 1.2rem;
  }
}

/* page_information_archive */
.single_article_wrapper {
  justify-content: flex-start;
}

.single_article_title {
  font-size: 1.4rem;
}

.acf_image img {
  display: block;
  max-width: 100%;
  height: auto;
}

@media (max-width: 900px) {
  .information_wrapper {
    margin-top: 0;
  }
  .article_list_title {
    font-size: 1.1rem;
  }
  .aside_item h2 {
    font-size: 1.2rem;
  }
}

@media (max-width: 680px) {
  .information_wrapper {
    flex-direction: column;
  }
  .info_article_wrapper {
    width: 85vw;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
  }
  .information_container,
  .blog_container {
    margin-top: 74px;
  }
}

/* page_test_tips_archive */

.test_image_wrapper {
  width: 50vw;
  max-width: 640px;
  margin-top: 40px;
  margin-right: auto;
  margin-left: auto;
}

/* article_archives */

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

.pagination_list {
  overflow: hidden;
  text-overflow: ellipsis;
}

.pagination_list li {
  padding: 10px 15px;
  margin-right: 15px;
  background-color: tomato;
  color: #fff;
}

/* works_archive */
.archive_category.active a {
  color: #fff;
}

.viewAll_allowLink a {
  display: block;
  text-align: center;
  color: blue;
  font-size: 1.4rem;
  margin-top: 40px;
}

/* contact */
.sect_contact {
  /* width: 80%; */
  margin-left: auto;
  margin-right: auto;
}

.contactFoam_text {
  width: 80%;
  margin-top: 60px;
  margin-right: auto;
  margin-left: auto;
}

.contactFoam {
  margin-top: 40px;
}

.contactFoam label,
.submit {
  display: block;
  width: 80%;
  margin: 0 auto;
}

.contactFoam input,
.contactFoam textarea {
  display: block;
  width: 100%;
}

.contactFoam .wpcf7-list-item {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.wpcf7-list-item span.privacyPolicy_check {
  display: block;
  text-align: center;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner {
  width: 80%;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}

.privacyPolicy_box {
  width: 80%;
  height: 300px;
  border: 1px solid #000;
  padding: 10px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 20px;
  background-color: #fff;
  overflow-y: scroll; /* 縦方向にスクロール */
}

.privacyPolicy_title {
  width: 80%;
  margin-top: 10px;
  margin-right: auto;
  margin-left: auto;
}

.privacyPolicy_box h3 {
  font-size: 1.2rem;
  margin-top: 16px;
}

.privacyPolicy_box h4 {
  margin-left: 10px;
  margin-top: 12px;
}

.privacyPolicy_box li {
  margin-left: 10px;
  margin-top: 12px;
}

.privacyPolicy_box p {
  margin-left: 10px;
}
