@charset "UTF-8";
@media print {
  html, body {
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
  }
  header {
    display: none !important;
  }
  main, .main_content .container {
    margin-top: 0 !important;
  }
  h2 {
    page-break-before: always;
  }
  h2:first-of-type {
    page-break-before: auto;
  }
  .iproject {
    page-break-before: always; /* footer もページを分けたい場合はこれも追加 */
  }
  .set {
    margin: 40px 0 !important;
  }
  @page {
    margin: 0mm 5mm;
    size: A4 portrait;
  }
}
a.btn,
button.btn {
  text-decoration: none;
  color: #fff;
  background-color: #a45c32;
  border: 1px solid #a45c32;
  border-radius: 25px;
  padding: 0.65em 1em;
  display: inline-block;
  box-sizing: border-box;
}
a.btn span,
button.btn span {
  position: relative;
}
a.btn span::before,
button.btn span::before {
  overflow: hidden;
  background-blend-mode: multiply;
  mask-size: cover;
  background-color: #fff;
}
a.btn:not(.contact),
button.btn:not(.contact) {
  min-width: 200px;
  text-align: center;
  display: inline-block;
}
a.btn.contact,
button.btn.contact {
  padding: 0.65em 2em 0.65em calc(2em + 40px);
}
a.btn.contact span::before,
button.btn.contact span::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -35px;
  width: 30px;
  height: 20px;
  background-image: url(../img/icon/contact.webp);
  mask-image: url(../img/icon/contact.webp);
}
a.btn:hover,
button.btn:hover {
  background-color: #fff;
  color: #a45c32;
}
a.btn:hover span::before,
button.btn:hover span::before {
  background-color: #a45c32;
}

.main_content .newsline_list {
  list-style: none;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
.main_content .newsline_list li {
  border-bottom: 1px solid #cccccc;
  min-height: 80px;
  display: flex;
  align-items: center;
}
.main_content .newsline_list li::before, .main_content .newsline_list li::after {
  content: none;
}
.main_content .newsline_list li a {
  text-decoration: none;
  color: #343434;
  display: flex;
  width: 100%;
  flex-direction: column;
  padding: 0px 50px 10px 10px;
  box-sizing: border-box;
  background: url(../img/icon/arrow/gray.webp) no-repeat calc(100% - 30px) 50%/9px 16px;
  transition: all 0.2s;
}
@media (max-width: 781px) {
  .main_content .newsline_list li a {
    padding: 0px 40px 10px 0px;
    background: url(../img/icon/arrow/gray.webp) no-repeat calc(100% - 20px) 50%/9px 16px;
  }
}
.main_content .newsline_list li a:hover {
  opacity: 0.7;
}
.main_content .newsline_list li a .data {
  color: #aaaaaa;
}
.main_content .newsline_list li a .text {
  font-weight: 500;
  font-size: 15px;
}
.main_content .newsline_list li a.ext::after, .main_content .newsline_list li a.pdf::after {
  content: none;
}
.main_content .newsline_list li a.ext .text::after, .main_content .newsline_list li a.pdf .text::after {
  content: "";
  display: inline-block;
  background-color: #343434;
  overflow: hidden;
  background-blend-mode: multiply;
  mask-size: cover;
  transform: translateY(4px);
}
.main_content .newsline_list li a.ext .text::after {
  height: 18px;
  width: 18px;
  background-image: url(../img/icon/ext.webp);
  mask-image: url(../img/icon/ext.webp);
}
.main_content .newsline_list li a.pdf .text::after {
  width: 18px;
  height: 22px;
  background-image: url(../img/icon/pdf.webp);
  mask-image: url(../img/icon/pdf.webp);
}

.main_content .pagenation {
  margin-top: 2em;
}
.main_content .pagenation ul {
  display: flex;
  justify-content: center;
}
.main_content .pagenation ul li {
  margin-bottom: 0;
  padding: 0 5px;
  box-sizing: border-box;
}
.main_content .pagenation ul li::before, .main_content .pagenation ul li::after {
  content: none;
}
.main_content .pagenation ul li a {
  text-decoration: none;
  color: #343434;
  font-size: 18px;
  border-radius: 50%;
  min-width: 36px;
  min-height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s;
}
.main_content .pagenation ul li.num a.active, .main_content .pagenation ul li.num a:hover {
  background-color: rgba(164, 92, 50, 0.1);
  opacity: 0.8;
}

ul.breadcrumb {
  display: flex;
  justify-content: end;
  list-style: none;
  position: absolute;
  width: 100%;
  max-width: 1200px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  margin: 0;
  z-index: 15;
  gap: 0 30px;
  flex-wrap: wrap;
  padding: 10px;
  box-sizing: border-box;
}
ul.breadcrumb li {
  color: #fff;
  position: relative;
}
ul.breadcrumb li:not(:last-child)::after {
  content: ">";
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateX(-50%) translateY(-50%);
}
ul.breadcrumb li a {
  text-decoration: none;
  color: #fff;
}
ul.breadcrumb li a:hover {
  text-decoration: underline;
}

.main_content .anchor_link ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  z-index: 15;
  gap: 0 30px;
  padding: 10px;
  box-sizing: border-box;
}
.main_content .anchor_link ul li::after {
  content: none;
}
.main_content .anchor_link ul li a {
  text-decoration: none;
  color: #8b5a2b;
  font-weight: 700;
}
.set {
  display: flex;
  margin: 120px 0;
  gap: 40px;
  min-height: 400px;
}
.set._reveerse {
  flex-direction: row-reverse;
}
@media (max-width: 781px) {
  .set._reveerse {
    flex-direction: column;
  }
}
@media (max-width: 999px) {
  .set {
    gap: 20px;
  }
}
@media (max-width: 781px) {
  .set {
    gap: 10px;
    margin: 80px 0;
    flex-direction: column;
  }
}
.set > * {
  width: calc(50% - 20px);
}
@media (max-width: 781px) {
  .set > * {
    width: 100%;
  }
}
.set .text {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-bottom: 60px;
  box-sizing: border-box;
  position: relative;
}
@media (max-width: 781px) {
  .set .text {
    order: 2;
  }
}
.set .title {
  font-size: 42px;
  margin-bottom: 0.5em;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 999px) {
  .set .title {
    font-size: 36px;
    margin-bottom: 0em;
  }
}
@media (max-width: 781px) {
  .set .title {
    font-size: 32px;
  }
}
.set .text_area {
  font-size: 18px;
}
@media (max-width: 781px) {
  .set .text_area {
    font-size: 16px;
  }
}
.set .set_link {
  position: absolute;
  right: 0;
  bottom: 1em;
  color: #343434;
  text-decoration: none;
  transition: all 0.5s ease;
}
.set .set_link::after {
  content: "";
  display: inline-block;
  width: 23px;
  height: 17px;
  background-image: url(../img/icon/arrow/icon_arrow.webp);
  background-size: cover;
  margin-left: 10px;
  transition: all 0.5s ease;
}
.set .set_link:hover {
  opacity: 0.7;
}
.set .set_link:hover::after {
  transform: translateX(5px);
}
.set .image {
  position: relative;
  aspect-ratio: 3/2;
  min-height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 10px 10px 10px 0 rgba(51, 51, 51, 0.1);
  line-height: 1;
}
@media (max-width: 781px) {
  .set .image {
    min-height: 0;
    order: 1;
  }
}
.set .image img {
  position: absolute;
  width: 100%;
  height: calc(100% + 1px);
  object-fit: cover;
  vertical-align: bottom;
  line-height: 1;
}

.main_content .text_boxarea h2 {
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 781px) {
  .main_content .text_boxarea h2 {
    margin-bottom: 20px;
  }
}
.main_content .text_boxarea h2 > span {
  display: inline-flex;
  flex-direction: column;
}
.main_content .text_boxarea h2 > span span {
  display: inline-block;
  text-align: center;
}
.main_content .text_boxarea h2 > span span.ja {
  border-bottom: 3px solid #fbce7f;
  margin-bottom: 10px;
  padding-bottom: 10px;
  box-sizing: border-box;
  font-size: 48px;
}
.main_content .text_boxarea h2 > span span.en {
  font-size: 20px;
  font-family: "Roboto", sans-serif;
  color: #fbce7f;
}
.main_content .text_boxarea h2::before, .main_content .text_boxarea h2::after {
  content: none !important;
}
.main_content .text_boxarea .textarea {
  font-size: 20px;
  margin: 0 0 60px;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 999px) {
  .main_content .text_boxarea .textarea {
    margin: 0 0 30px;
    font-size: 18px;
    text-align: left;
  }
}
.main_content .text_boxlist {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin: 0px 0 40px;
}
@media (max-width: 1199px) {
  .main_content .text_boxlist {
    gap: 20px;
  }
}
@media (max-width: 781px) {
  .main_content .text_boxlist {
    flex-direction: column;
    align-items: center;
    gap: 50px;
    margin: 0px 0 30px;
  }
}
.main_content .text_boxlist .text_box {
  width: calc(33.333% - 20px);
  border-radius: 10px;
  box-shadow: 0px 10px 13.5px 1.5px rgba(51, 51, 51, 0.1);
  background-color: #fff;
  padding: 20px;
  box-sizing: border-box;
}
@media (max-width: 1199px) {
  .main_content .text_boxlist .text_box {
    width: calc(33.333% - 13.3333333333px);
  }
}
@media (max-width: 781px) {
  .main_content .text_boxlist .text_box {
    width: 100%;
    max-width: 420px;
  }
}
.main_content .text_boxlist .text_box .head {
  text-align: center;
  height: 90px;
}
.main_content .text_boxlist .text_box .head img {
  max-height: 90px;
  margin: 0 auto;
}
.main_content .text_boxlist .text_box_title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}
.main_content .text_boxlist .text_box ul li::before {
  width: 10px;
  height: 10px;
  background-color: #e68a00;
  border-radius: 0%;
  transform: rotate(45deg);
}
.main_content .text_boxlist .text_box:nth-child(3n+2) ul li:before {
  background-color: #2e8b57;
}
.main_content .text_boxlist .text_box:nth-child(3n+3) ul li:before {
  background-color: #a0b8c0;
}

.sticky_wrapper {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  min-height: 100%;
  gap: 30px;
}
@media (max-width: 781px) {
  .sticky_wrapper {
    flex-direction: column;
  }
}
.sticky_wrapper .main_column {
  flex: 1;
  width: calc(100% - 200px);
}
@media (max-width: 781px) {
  .sticky_wrapper .main_column {
    width: 100%;
  }
}
.sticky_wrapper .side_column {
  width: 200px;
  position: sticky;
  top: 100px;
  background-color: #fff;
}
@media (max-width: 781px) {
  .sticky_wrapper .side_column {
    position: inherit;
    top: 0px;
    width: 100%;
  }
}
.sticky_wrapper .side_column > * {
  box-sizing: border-box;
}
.sticky_wrapper .side_column .category_list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sticky_wrapper .side_column .category_list ul li {
  padding: 0;
  margin-bottom: 0;
  background: url(../img/icon/arrow/black.webp) no-repeat calc(100% - 20px) 50%/4.5px 8px;
}
.sticky_wrapper .side_column .category_list ul li:not(:last-child) {
  border-bottom: 1px solid #d9d9d9;
}
.sticky_wrapper .side_column .category_list ul li a {
  text-decoration: none;
  color: #343434;
  font-size: 16px;
  display: inline-block;
  padding: 10px 20px;
  box-sizing: border-box;
  width: 100%;
}
.sticky_wrapper .side_column .category_list ul li a.active, .sticky_wrapper .side_column .category_list ul li a:hover {
  background-color: rgba(164, 92, 50, 0.1);
  opacity: 0.8;
}
.sticky_wrapper .side_column .category_list ul li::before {
  content: none;
}

.worklist {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media (max-width: 999px) {
  .worklist {
    gap: 20px;
  }
}
@media (max-width: 781px) {
  .worklist {
    gap: 20px 10px;
  }
}
.worklist .worklist_item {
  width: calc(33.3333333333% - 20px);
}
@media (max-width: 999px) {
  .worklist .worklist_item {
    width: calc(50% - 10px);
  }
}
@media (max-width: 781px) {
  .worklist .worklist_item {
    width: calc(50% - 5px);
  }
}
.worklist .worklist_item a {
  display: block;
  position: relative;
  text-decoration: none;
  transition: all 0.2s;
}
.worklist .worklist_item a .image {
  aspect-ratio: 360/225;
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}
.worklist .worklist_item a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
  position: absolute;
  transition: all 0.2s;
}
.worklist .worklist_item a .data {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #e68a00;
  background-color: rgba(52, 52, 52, 0.6);
  color: #fff;
  font-weight: 600;
  padding: 3px 10px;
}
@media (max-width: 781px) {
  .worklist .worklist_item a .data {
    font-size: 14px;
  }
}
.worklist .worklist_item a .title {
  color: #343434;
  line-height: 1.5;
  letter-spacing: 0.12em;
  margin-top: 10px;
}
.worklist .worklist_item a:hover {
  opacity: 0.8;
}
.worklist .worklist_item a:hover img {
  transform: scale(1.1);
}
.worklist .worklist_item .worklist_title {
  font-weight: bold;
}
.slider_block {
  margin: 2em 0 60px;
}
.slider_block .swiper.main-slider .swiper-slide {
  aspect-ratio: 16/9;
  max-height: 500px;
  text-align: center;
  line-height: 1;
  padding-bottom: 2em;
  box-sizing: border-box;
}
.slider_block .swiper.main-slider .swiper-slide img {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.slider_block .swiper.main-slider .swiper-slide span {
  display: inline-block;
  margin-top: 0.25em;
}
.slider_block .thumb_swiper {
  margin-top: 20px;
}
.slider_block .thumb_swiper .swiper-slide {
  aspect-ratio: 3/2;
  height: auto;
  position: relative;
  background-color: #fff;
  max-height: 200px;
  cursor: pointer;
}
.slider_block .thumb_swiper .swiper-slide img {
  opacity: 0.5;
  transition: opacity 0.5s;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.slider_block .thumb_swiper .swiper-slide.swiper-slide-thumb-active img {
  opacity: 1;
}

.contact-form {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 40px 40px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}
@media (max-width: 999px) {
  .contact-form {
    padding: 20px;
  }
}
.contact-form .form-group {
  display: flex;
  gap: 20px;
  border-bottom: 1px solid #ccc;
  padding: 2em 0;
  box-sizing: border-box;
}
@media (max-width: 781px) {
  .contact-form .form-group {
    gap: 0px;
    flex-direction: column;
    padding: 1em 0;
  }
}
.contact-form .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  font-size: 16px;
  color: #333;
  min-width: 180px;
}
@media (max-width: 781px) {
  .contact-form .form-group label {
    margin-bottom: 0;
  }
}
.contact-form .form-group .form-control {
  width: 100%;
}
.contact-form .form-group .form-control div {
  line-height: 1;
}
.contact-form .form-group .form-control .input,
.contact-form .form-group .form-control .textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s;
}
.contact-form .form-group .form-control .input:focus,
.contact-form .form-group .form-control .textarea:focus {
  border-color: #0073aa;
  outline: none;
}
.contact-form .form-group .form-control .textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-form .form-submit {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 2em;
  position: relative;
}
@media (max-width: 781px) {
  .contact-form .form-submit {
    gap: 10px;
    flex-direction: column-reverse;
    align-items: center;
  }
}
.contact-form .form-submit .prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0px;
}
@media (max-width: 781px) {
  .contact-form .form-submit .prev {
    position: inherit;
    top: auto;
    transform: translateY(0%);
  }
}
.contact-form .form-submit .prev .prev-button {
  background-color: transparent;
  border: none;
  padding: 0 0 0 30px;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.06em;
}
@media (max-width: 781px) {
  .contact-form .form-submit .prev .prev-button {
    transform: translateX(-16px);
  }
}
.contact-form .form-submit .prev::before {
  content: "←";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  display: inline-block;
  background-size: cover;
  margin-right: 0.5em;
  transition: all 0.3s;
}
@media (max-width: 781px) {
  .contact-form .form-submit .prev::before {
    transform: translateY(-50%) translateX(-1em);
  }
}
.contact-form .form-submit .prev:hover .prev-button {
  color: #a45c32;
}
.contact-form .form-submit .prev:hover::before {
  color: #a45c32;
}
.contact-form .form-submit .submit-button {
  background-color: #a45c32;
  color: #fff;
  border: 1px solid #a45c32;
  border-radius: 25px;
  padding: 0.75rem 2rem;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 0.3s;
  min-width: 200px;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.06em;
}
.contact-form .form-submit .submit-button:hover {
  color: #a45c32;
  background-color: #fff;
}
.contact-form .form-submit .wpcf7-spinner {
  display: none;
}
.contact-form .form-step {
  display: none;
}

html,
body {
  padding: 0;
  margin: 0;
  height: 100%;
}

html {
  margin-top: 0 !important;
  word-break: break-word;
}

body {
  color: #343434;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 400;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  line-height: 1.875;
  letter-spacing: 0.12em;
  overflow-x: hidden;
  position: relative;
  background-image: url(../img/grid.webp);
  color: #343434;
  font-size: 14px;
}
body * {
  position: relative;
  z-index: 10;
}
@media (max-width: 999px) {
  body.open_spnav {
    overflow: hidden;
  }
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.alignRight {
  text-align: right;
}

.alignLeft {
  text-align: left;
}

@media (min-width: 1000px) {
  .pc_none {
    display: none !important;
  }
}

@media (max-width: 999px) {
  .tab_none {
    display: none !important;
  }
}

@media (max-width: 781px) {
  .sp_none {
    display: none !important;
  }
}

img {
  max-width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1199px) {
  .container {
    padding: 0 10px;
    box-sizing: border-box;
  }
}

.alignRight {
  text-align: right;
}

.alignLeft {
  text-align: left;
}

.alignCenter {
  text-align: center;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  height: 80px;
  transition: all 0.5s ease-out;
}
header.hide {
  transform: translateY(-150%);
}
header.scroll {
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 2px 4px 5px 0 rgba(0, 0, 0, 0.2);
}
@media (max-width: 781px) {
  header.scroll {
    box-shadow: none;
  }
}
@media (max-width: 999px) {
  header {
    height: 60px;
  }
}
header .header {
  width: 100%;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1199px) {
  header .header {
    padding: 0 10px;
    box-sizing: border-box;
  }
}
@media (max-width: 999px) {
  header .header {
    background-color: #fff;
    padding: 10px 20px;
    box-sizing: border-box;
    box-shadow: 2px 4px 5px 0 rgba(0, 0, 0, 0.2);
  }
}
header .header_link {
  display: flex;
  gap: 50px;
}
@media (max-width: 999px) {
  header .header_link:not(.open) {
    display: none;
  }
}
header .header_btn {
  display: flex;
  align-items: center;
}
header .logo img {
  height: 100%;
  max-height: 60px;
}

.gnav ul {
  display: flex;
  gap: 40px;
  padding: 0;
  list-style: none;
  z-index: 100;
}
.gnav ul li {
  display: block;
}
.gnav ul li a {
  color: #343434;
  text-decoration: none;
  font-size: 20px;
}
.gnav ul li a:hover {
  color: #e68a00;
}

#hnav {
  position: fixed;
  top: 18px;
  right: 15px;
  display: inline-block;
  cursor: pointer;
  z-index: 100;
}
@media (min-width: 1000px) {
  #hnav {
    display: none;
  }
}
#hnav span {
  display: block;
  width: 30px;
  height: 2px;
  margin: 5px;
  background-color: #e68a00;
  transition: all 0.3s ease;
}
#hnav span:nth-child(2) {
  transition: all 0s;
}
#hnav.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
#hnav.active span:nth-child(2) {
  opacity: 0;
}
#hnav.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 1000px) {
  #spnav {
    display: none;
  }
}
@media (max-width: 999px) {
  #spnav {
    position: fixed;
    width: 100%;
    height: calc(100vh - 60px);
    top: 60px;
    right: 0;
    transition: all 0.3s ease-out;
  }
  #spnav:not(.active) {
    pointer-events: none;
  }
  #spnav > div {
    margin: 0 0 0 auto;
    max-width: 370px;
    height: 100%;
    background-color: #fbce7f;
    padding: 10px;
    box-sizing: border-box;
    transition: all 0.3s ease-out;
    transform: translateX(100%);
    position: relative;
    z-index: 10;
    overflow-y: auto;
  }
  #spnav > div ul {
    margin-top: 0;
  }
  #spnav.active {
    background-color: rgba(255, 255, 255, 0.7);
  }
  #spnav.active > div {
    transform: translateX(0);
  }
  #spnav .overlay {
    position: fixed;
    opacity: 0;
    width: 100vw;
    max-width: inherit;
    cursor: pointer;
  }
  #spnav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
  }
  #spnav ul li {
    padding: 10px;
    box-sizing: border-box;
    border-bottom: 1px solid #8b5a2b;
  }
  #spnav ul li a {
    list-style: none;
    text-decoration: none;
    color: #8b5a2b;
    font-weight: 700;
    display: block;
    position: relative;
    transition: all 0.2s;
  }
  #spnav ul li a:hover {
    transform: scale(1.025);
  }
  #spnav ul li a:before {
    content: ">";
    display: inline-block;
    color: #8b5a2b;
    font-weight: 400;
    margin-right: 4px;
    transform: translateY(-2px);
  }
}

.footer {
  margin-top: 80px;
  padding: 32px 0;
  box-sizing: border-box;
  min-height: 180px;
  position: relative;
}
.footer * {
  position: relative;
  z-index: 10;
}
.footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 100vw;
  height: 100%;
  background-color: #ccc;
  z-index: 8;
}
@media (max-width: 999px) {
  .footer {
    margin-top: 70px;
  }
}
@media (max-width: 781px) {
  .footer {
    margin-top: 60px;
  }
}
.footer .site_name {
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}
.footer ul, .footer ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer ul a, .footer ol a {
  text-decoration: none;
}

.footer_wrapper {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}
@media (max-width: 1199px) {
  .footer_wrapper {
    gap: 40px;
  }
}
@media (max-width: 999px) {
  .footer_wrapper {
    flex-direction: column;
    gap: 20px;
  }
}
.footer__head img {
  max-width: 220px;
}
@media (max-width: 781px) {
  .footer__head img {
    max-width: 180px;
  }
}
.footer__body {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 1199px) {
  .footer__body {
    gap: 20px;
  }
}
@media (max-width: 781px) {
  .footer__body {
    flex-direction: column-reverse;
  }
}
.footer__body_info {
  display: flex;
  flex-direction: column;
}
.footer .add {
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.footer .num {
  display: flex;
  line-height: 1.25;
}
.footer .num:not(:last-child) {
  margin-bottom: 5px;
}
.footer .num span {
  line-height: 1;
  display: inline-block;
  margin-left: 0.25em;
}

.footer_linklist {
  display: flex;
  justify-content: end;
}
@media (max-width: 781px) {
  .footer_linklist {
    flex-direction: column;
    margin-bottom: 20px;
  }
}
.footer_linklist li {
  line-height: 1.25;
}
.footer_linklist li:not(:last-child) {
  border-right: 1px solid #fff;
}
@media (max-width: 781px) {
  .footer_linklist li:not(:last-child) {
    border-right: none;
  }
}
.footer_linklist li a {
  color: #fff;
  padding: 0 10px 5px;
  box-sizing: border-box;
  display: inline-block;
  position: relative;
}
@media (max-width: 781px) {
  .footer_linklist li a {
    padding: 10px 0;
    display: block;
  }
}
.footer_linklist li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  display: block;
  width: calc(100% - 20px);
  height: 1px;
  background-color: #fff;
  transform: translateX(-50%) scaleX(0);
  transition: all 0.2s ease-in;
}
@media (max-width: 781px) {
  .footer_linklist li a::after {
    width: calc(100% + 20px);
    transform: translateX(-50%) scaleX(1);
  }
}
@media (max-width: 781px) {
  .footer_linklist li a:hover {
    opacity: 0.8;
  }
}
.footer_linklist li a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

footer ul.footer_btnlist {
  margin-top: 20px;
  display: flex;
  justify-content: end;
  gap: 20px;
  min-width: 370px;
}
@media (max-width: 781px) {
  footer ul.footer_btnlist {
    margin-bottom: 20px;
    min-width: inherit;
    justify-content: center;
  }
}
footer ul.footer_btnlist li:not(:last-child) {
  position: relative;
  z-index: 15;
}
footer ul.footer_btnlist li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: calc(100% - 6px);
  display: block;
  width: 32px;
  height: 1px;
  background-color: #a45c32;
  z-index: 15;
}
footer ul.footer_btnlist li a {
  background-color: #fff;
  padding: 5px 10px;
  box-sizing: border-box;
  color: #060606;
  display: inline-block;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.03em;
  min-width: 100px;
  font-size: 14px;
  transition: all 0.2s ease-out;
}
footer ul.footer_btnlist li a img {
  width: auto;
  height: 40px;
  margin: 0 auto;
  display: block;
  filter: grayscale(100%) brightness(0%);
  transition: all 0.2s ease-out;
}
footer ul.footer_btnlist li a:hover {
  background-color: #a45c32;
  color: #fff;
}
footer ul.footer_btnlist li a:hover img {
  filter: grayscale(0%);
}

main {
  margin-top: 80px;
  min-height: 70vh;
}
@media (max-width: 999px) {
  main {
    margin-top: 60px;
  }
}

.main_image {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 781px) {
  .main_image {
    min-height: 200px;
  }
}
.main_image h1 {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  color: #fff;
  height: auto;
  font-size: 48px;
  gap: 10px;
  z-index: 15;
  max-width: 1200px;
  padding: 40px 10px 55px;
  box-sizing: border-box;
  position: relative;
  text-align: center;
  line-height: 1.25;
}
.main_image h1 span {
  font-size: 28px;
}
@media (max-width: 781px) {
  .main_image h1 {
    font-size: 36px;
  }
}
.main_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
  position: absolute;
  top: 0;
  left: 0;
}
.main_image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(52, 52, 52, 0.75);
  z-index: 10;
}

.main_content .container {
  margin-top: 80px;
}
@media (max-width: 999px) {
  .main_content .container {
    margin-top: 60px;
  }
}
@media (max-width: 781px) {
  .main_content .container {
    margin-top: 40px;
  }
}
.main_content .container > *:first-child,
.main_content .container h2:first-child {
  margin-top: 0;
}

h1 {
  line-height: 1;
  margin: 0;
  padding: 0;
  height: 100%;
}
h1 * {
  margin: 0;
  padding: 0;
  height: 100%;
}
h1 a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #343434;
  text-decoration: none;
  font-weight: 900;
}

.main_content h2,
.main_content h3,
.main_content h4,
.main_content h5,
.main_content h6 {
  line-height: 1.25;
  font-weight: 500;
}
.main_content h2 {
  font-family: "Zen Old Mincho", serif;
  font-size: 32px;
  position: relative;
  margin-top: 80px;
  margin-bottom: 60px;
}
.main_content h2:before, .main_content h2:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  height: 3px;
}
.main_content h2:before {
  width: 100%;
  background-color: #666;
}
.main_content h2:after {
  width: 100px;
  background-color: #fbce7f;
}
@media (max-width: 999px) {
  .main_content h2 {
    font-size: 30px;
    margin-top: 80px;
    margin-bottom: 50px;
  }
}
@media (max-width: 781px) {
  .main_content h2 {
    font-size: 28px;
    margin-top: 60px;
    margin-bottom: 40px;
  }
}
.main_content h2 + h3,
.main_content h2 + h4,
.main_content h2 + h5,
.main_content h2 + h6,
.main_content h2 + p {
  margin-top: 60px;
}
@media (max-width: 999px) {
  .main_content h2 + h3,
  .main_content h2 + h4,
  .main_content h2 + h5,
  .main_content h2 + h6,
  .main_content h2 + p {
    margin-top: 50px;
  }
}
@media (max-width: 781px) {
  .main_content h2 + h3,
  .main_content h2 + h4,
  .main_content h2 + h5,
  .main_content h2 + h6,
  .main_content h2 + p {
    margin-top: 40px;
  }
}
.main_content h3 {
  font-size: 30px;
  margin-top: 50px;
}
@media (max-width: 999px) {
  .main_content h3 {
    font-size: 28px;
    margin-top: 40px;
  }
}
@media (max-width: 781px) {
  .main_content h3 {
    font-size: 24px;
    margin-top: 30px;
  }
}
.main_content h3 + h4,
.main_content h3 + h5,
.main_content h3 + h6,
.main_content h3 + p {
  margin-top: 50px;
}
@media (max-width: 999px) {
  .main_content h3 + h4,
  .main_content h3 + h5,
  .main_content h3 + h6,
  .main_content h3 + p {
    margin-top: 40px;
  }
}
@media (max-width: 781px) {
  .main_content h3 + h4,
  .main_content h3 + h5,
  .main_content h3 + h6,
  .main_content h3 + p {
    margin-top: 30px;
  }
}
.main_content h4 {
  font-size: 24px;
  padding-left: 20px;
  position: relative;
}
.main_content h4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 4px;
  height: 100%;
  background-color: #fbce7f;
}
@media (max-width: 999px) {
  .main_content h4 {
    font-size: 22px;
  }
}
@media (max-width: 781px) {
  .main_content h4 {
    font-size: 20px;
  }
}
.main_content h4 + h5,
.main_content h4 + h6,
.main_content h4 + p {
  margin-top: 40px;
}
@media (max-width: 999px) {
  .main_content h4 + h5,
  .main_content h4 + h6,
  .main_content h4 + p {
    margin-top: 30px;
  }
}
@media (max-width: 781px) {
  .main_content h4 + h5,
  .main_content h4 + h6,
  .main_content h4 + p {
    margin-top: 20px;
  }
}
.main_content h5 {
  font-size: 20px;
  background: #f5f5f5;
  display: table;
  vertical-align: top;
  padding: 6px 25px;
  margin-bottom: 30px;
}
@media (max-width: 999px) {
  .main_content h5 {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
@media (max-width: 781px) {
  .main_content h5 {
    font-size: 16px;
  }
}
.main_content h5 + h6,
.main_content h5 + p {
  margin-top: 30px;
}
@media (max-width: 999px) {
  .main_content h5 + h6,
  .main_content h5 + p {
    margin-top: 20px;
  }
}
.main_content h6 {
  font-size: 18px;
  margin-bottom: 30px;
}
@media (max-width: 999px) {
  .main_content h6 {
    font-size: 16px;
    margin-bottom: 20px;
  }
}

a {
  color: #e68a00;
  transition: all 0.2s;
}
a.disable, a._disable {
  color: #343434;
  pointer-events: none;
}
a:hover {
  color: #e68a00;
}
a.ext, a.pdf {
  position: relative;
}
a.ext::after, a.pdf::after {
  content: "";
  display: inline-block;
  background-color: #e68a00;
  overflow: hidden;
  background-blend-mode: multiply;
  mask-size: cover;
  margin-left: 5px;
  transform: translateY(4px);
}
a.pdf::after {
  width: 18px;
  height: 22px;
  background-image: url(../img/icon/pdf.webp);
  mask-image: url(../img/icon/pdf.webp);
}
a.ext::after {
  width: 18px;
  height: 18px;
  background-image: url(../img/icon/ext.webp);
  mask-image: url(../img/icon/ext.webp);
}

.main_content ul,
.main_content ol {
  list-style: none;
  padding-left: 30px;
}
@media (max-width: 781px) {
  .main_content ul,
  .main_content ol {
    padding-left: 25px;
  }
}
.main_content ul li:not(:last-child),
.main_content ol li:not(:last-child) {
  margin-bottom: 5px;
}
.main_content ul li {
  position: relative;
}
.main_content ul li::before {
  content: "";
  position: absolute;
  top: 11.5px;
  left: -20px;
  width: 8px;
  height: 8px;
  background-color: #ccc;
  border-radius: 50%;
  display: inline-block;
}
@media (max-width: 781px) {
  .main_content ul li::before {
    left: -20px;
  }
}

.main_content ol {
  counter-reset: list;
}
.main_content ol li {
  position: relative;
  counter-increment: list;
}
.main_content ol li::before {
  content: counter(list, decimal-leading-zero) ". ";
  color: #ccc;
  position: absolute;
  top: 2px;
  left: 0px;
  transform: translateX(-100%);
  display: inline-block;
  font-family: "Roboto", sans-serif;
}

.table_wrapper {
  background-color: #fff;
  border: 2px solid #343434;
  border-radius: 10px;
  overflow: hidden;
  padding: 0;
  margin: 1em 0;
}
.table_wrapper table {
  border-collapse: collapse;
  width: 100%;
  padding: 0;
  margin: 0;
}
.table_wrapper table th {
  min-width: 150px;
  padding: 10px;
  text-align: center;
  font-weight: bold;
  background-color: #eee;
}
.table_wrapper table th:not(:last-child) {
  border-right: 1px solid #343434;
}
.table_wrapper table td {
  padding: 10px;
}
.table_wrapper table td:not(:last-child) {
  border-right: 1px solid #343434;
}
.table_wrapper table thead th {
  background-color: #eee;
  border-bottom: 1px solid #343434;
}
.table_wrapper table tr:not(:first-child) th {
  border-top: 1px solid #343434;
}
.table_wrapper table tr:not(:first-child) td {
  border-top: 1px solid #343434;
}
@media (max-width: 999px) {
  .table_wrapper table._column tr {
    display: flex;
    flex-direction: column;
    height: auto !important;
  }
  .table_wrapper table._column tr th, .table_wrapper table._column tr td {
    height: auto !important;
    width: 100% !important;
    border-bottom: 1px solid #343434;
    border-top: none;
  }
  .table_wrapper table._column tr th:not(:last-child), .table_wrapper table._column tr td:not(:last-child) {
    border-right: none;
  }
  .table_wrapper table._column thead {
    border-bottom: 2px #343434;
  }
  .table_wrapper table._column thead th {
    border-bottom: 1px solid #343434;
  }
  .table_wrapper table._column tbody tr:last-child > *:last-child {
    border-bottom: none;
  }
}
@media (max-width: 781px) {
  .table_wrapper.responsibe_table {
    position: relative;
    width: 100%;
    overflow-x: scroll;
  }
  .table_wrapper.responsibe_table table {
    min-width: 1200px;
  }
  .table_wrapper.responsibe_table::before, .table_wrapper.responsibe_table::after {
    transition: all 0.3s ease-in;
  }
  .table_wrapper.responsibe_table::before {
    content: "";
    width: 90%;
    max-width: 150px;
    aspect-ratio: 1/1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background-image: url(../img/icon/yubi.webp);
    z-index: 15;
    pointer-events: none;
    opacity: 0;
  }
  .table_wrapper.responsibe_table::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    pointer-events: none;
    z-index: 10;
  }
  .table_wrapper.responsibe_table.fixed {
    overflow: hidden;
  }
  .table_wrapper.responsibe_table.fixed::before {
    opacity: 1;
  }
  .table_wrapper.responsibe_table.fixed::after {
    background-color: rgba(0, 0, 0, 0.5);
  }
}

.table_wrapper + .table_wrapper {
  margin-top: 1.5em;
}

@media (max-width: 781px) {
  .sp_order1 {
    order: 1 !important;
  }
  .sp_order2 {
    order: 2 !important;
  }
}
figure {
  margin-bottom: 0;
}

.wp-block-post-content > *:first-child {
  margin-top: 0;
}

.wp-block-columns {
  gap: 20px;
}
.wp-block-columns .wp-block-column > *:first-child {
  margin-top: 0;
}
