@charset "UTF-8";

/* ---------------
　 　　共通
--------------- */
/* PC/SP画像切り替えを<picture>へ移行。picture自体はレイアウトに影響させない */
picture {
  display: contents;
}

/* 固定ヘッダー(.header{position:fixed})ぶんの余白を最初からCSSで確保する。
   以前はJSがwindow.load後にbody{margin-top}を後付けしており、FV表示後にガクッと下がる原因だった */
body {
  margin-top: 123px;
}

/* F-5: <a>/<div>から<button>へ変更した操作系(ハンバーガー/メニュー閉じる/固定ボタン閉じる)の
   ブラウザ既定スタイルを打ち消す（font/colorは既存クラス指定を活かすため触らない） */
#hum,
#fixed_menu-close,
#fixedbtn-close {
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

/* B-3: reset.cssでoutlineが全体的に消えているため、キーボード操作するタブの
   フォーカスを明示する（:focus-visibleでキーボード時のみ表示・マウスクリックでは出ない） */
#works-tab .tab-btn:focus-visible {
  outline: 3px solid #005859;
  outline-offset: 2px;
}

.inner {
  width: 1200px;
  margin: 0 auto;
  position: relative;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

.h2Tag {
  font-size: 3.2rem;
  line-height: 4.9rem;
  text-align: center;
  margin-bottom: 3rem;
  display: inline-block;
}

.h2Tag.mb1 {
  margin-bottom: 0.2em;
}

.h2Tag.mb2 {
  margin-bottom: 0.5em;
}

.h2Tag.mb3 {
  margin-bottom: 6rem;
}

.h2Tag span {
  border-bottom: 4px solid #fff100;
}

.h2Tag.pt8em {
  padding-top: 10rem;
}

.h3Tag {
  font-size: 2rem;
  line-height: 4.9rem;
  text-align: left;
  padding-left: 1rem;
  border-left: 6px solid #005859;
  margin-bottom: 3rem;
}

.pTag {
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
  margin-bottom: 3rem;
}

.pTag0 {
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.75;
  letter-spacing: 0.06em;
  margin-bottom: 0.3rem;
}

.pTag1 {
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.75;
  letter-spacing: 0.06em;
  margin-bottom: 3rem;
}

.pTag0 span,
.pTag1 span {
  font-size: 1.5rem;
  display: inline-block;
  background-color: #E4ECEC;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  padding: 0.1rem 0.6rem;
  margin: 0 0.3rem;
}

.pTag24 {
  font-size: 2.4rem;
  line-height: 3.2rem;
}

.green_txt {
  color: #005859;
}

.font_GG {
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 500;
  /*medium*/
  /*regular=400 bold=700*/
  font-style: normal;
}

.font_rbt {
  font-family: roboto, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.btn01 {
  text-align: center;
  margin-top: 4rem;
}

.btn01 a {
  min-width: 293px;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  font-size: 1.6rem;
  color: #005859;
  background: #FFFFFF;
  display: inline-block;
  border-radius: 4px;
  border: 1px solid #006566;
  position: relative;
  padding: 1.2em 2em;
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 700;
  box-shadow: 4px 4px #005859;
  letter-spacing: 0.03em;
  transition: all 0.2s linear;
}

.btn01 a:after {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-variant: normal;
  text-transform: none;
  font-weight: bold;
  content: "\e917";
  position: absolute;
  top: 50%;
  right: 5%;
  -webkit-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  -o-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}

.btn01 input {
  min-width: 293px !important;
  line-height: 1 !important;
  text-align: center;
  text-decoration: none;
  font-size: 1.6rem !important;
  color: #005859;
  background: #FFFFFF !important;
  display: inline-block !important;
  border-radius: 4px !important;
  border: 1px solid #006566 !important;
  position: relative;
  padding: 1.2em 2em !important;
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 700;
  box-shadow: 4px 4px #005859;
  letter-spacing: 0.03em;
  transition: all 0.2s linear;
  width: auto !important;
  cursor: pointer;
}

.btn01 input:hover {
  color: #fff;
  border: 1px solid #fff !important;
  background: #005859 !important;
}

.jirei_result-boxes .na {
  text-align: center;
  font-size: 2.2rem;
  width: 100%;
  margin: 1em 0 0;
}

/* ---------------
　 　　ヘッダー
--------------- */
.header {
  width: 100%;
  padding: 4rem 0 0;
  box-shadow: 0px 2px 3px 0 rgb(0 0 0 / 16%);
  min-width: 1400px;
  position: fixed;
  z-index: 100;
  background-color: #fff;
  top: 0;
}

.header_inner {
  width: 1295px;
  position: relative;
  margin: 0 auto;
  display: flex;
}

.header_left {
  width: 34rem;
}

.header_left .h1Tag {
  font-size: 1.2rem;
  position: absolute;
  top: -3rem;
  left: 9rem;
}

.header_left img {
  position: relative;
  z-index: 10;
  padding-bottom: 10px;
}

.header_menu_pc {
  margin-left: 10rem;
  margin-top: 1.5rem;
}

.header_nav_item {
  width: auto;
  display: inline-block;
  margin-right: 2.2rem;
}

.header_nav_item a {
  color: #000000;
  font-size: 1.4rem;
  line-height: 4.8rem;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.header_right {
  margin-left: auto;
  padding-left: 40px;
  border-left: 1px solid #095657;
}

.header_right ul {
  display: flex;
  align-items: center;
}

.header_time {
  width: 17.5rem;
  margin-right: 2.4rem;
  margin-top: 0.4rem;
}

.header_btn {
  width: 16.8rem;
  margin-left: 0.8rem;
  margin-top: 0.8rem;
}

.header_btn a {
  display: block;
  min-width: 174px;
  background: #fff100;
  font-size: 1.4rem;
  line-height: 1.75;
  letter-spacing: 0.03em;
  padding: 0.6em 0 0.6em 3.6em;
  position: relative;
  box-shadow: 0px 4px 13px 0 rgb(26 74 88 / 35%);
  font-family: inherit;
  border: none;
  color: #005859;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
}

.header_btn a::after {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-variant: normal;
  text-transform: none;
  font-weight: bold;
  content: "\e917";
  position: absolute;
  top: 52%;
  right: 2%;
  -webkit-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  -o-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}

.header_btn a::before {
  content: "";
  display: block;
  width: 12%;
  height: 0;
  padding-top: 8.748%;
  background: url("../img/common/svg_mail01.svg") no-repeat 0 0;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 5%;
  -webkit-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  -o-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}

/* ---------------
　 　　フッター
--------------- */
.footer_contact {
  width: 100%;
  min-width: 1400px;
  background-color: rgba(0, 88, 89, 0.20);
}

.footer_contact .inner {
  width: 1190px;
  position: relative;
  margin: 0 auto;
  padding: 3.5em 0 5em;
  text-align: center;
}

.footer_contact .h2Tag {
  margin-bottom: 5rem;
}

.footer_contact .h2Tag span {
  border-bottom: 4px solid #ffffff;
}

.footer_contact_boxs {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 1003px;
  margin: 0 auto;
}

.footer_contact_boxs:after {
  display: none;
}

.footer_contact_box {
  background-color: #FFFFFF;
  width: 488px;
  height: 166px;
  margin-bottom: 2.4rem;
  padding: 2rem 0;
  position: relative;
  z-index: 2;
}

.footer_contact_box2 {
  background-color: inherit;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

.footer_contact_txt {
  font-size: 1.8rem;
  line-height: 3.2rem;
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.footer_contact_txt span {
  font-size: 1.4rem;
}

.footer_contact_box .btn01 {
  margin-top: 1.2em;
}

.footer_contact_box .free_catalog {
  position: relative;
}

.footer_contact_box .free_catalog::before {
  content: url("../img/common/svg_free01_pc.svg");
  position: absolute;
  left: 2.4rem;
  top: 54%;
  -webkit-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  -o-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  z-index: 1;
}

.contact_tel_no {
  font-size: 2.5rem;
  line-height: 1;
  margin-top: .8rem;
  position: relative;
  /* display: inline-block; */
  width: fit-content;
  text-align: center;
  margin: 0 auto;
}

.contact_tel_no::before {
  content: url("../img/top/phone_logo.png");
  position: absolute;
  left: -12%;
  top: 58%;
  -webkit-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  -o-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}

.contact_tel_no2 {
  margin-top: .8rem;
}

.contact_tel_no2::before {
  content: url("../img/top/phone_logo2.png");
  left: -15%;
}

.contact_tel_time {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
}

.contact_to_faq {
  color: #005859;
  font-size: 1.4rem;
  line-height: 3rem;
  font-weight: bold;
  margin-top: 0.6em;
}

.contact_to_faq span {
  background-color: #005859;
  color: #FFFFFF;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: inline-block;
  line-height: 1.3;
  margin-right: 0.4rem;
}

.footer_contact_box2 img {
  position: absolute;
  width: 181px;
  bottom: 0;
  left: 0;
}

.footer_contact_message {
  font-size: 1.6rem;
  line-height: 3.3rem;
  float: right;
  margin-top: 2.2em;
  margin-right: 9rem;
}

.footer {
  width: 100%;
  min-width: 1400px;
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.footer_wrap {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
  padding: 1.5em 0 1.3em;
  position: relative;
}

.footer_left {
  width: 27.5%;
}

.footer_logo_wrap {
  display: flex;
  align-items: center;
}

.footer_logo img {
  width: 32.5rem;
}


.footer_logo_wrap .insta-icon {
  margin: -0.7em 0 0 1em;
}

.footer_logo_wrap .insta-icon img {
  width: 3.7rem;
}

.footer_address {
  margin: 3.4rem 0 1rem;
  font-size: 1.4rem;
  line-height: 1.7rem;
}

.footer_tel_fax {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer_tel_fax img {
  width: 153px;
}

.footer_mail {
  width: 210px !important;
  margin-top: 0.1em;
}

.footer_right {
  width: 30%;
  position: relative;
  top: -1.2rem;
}

.footer_right ul {
  display: flex;
  flex-wrap: wrap;
}

.footer_right ul li {
  width: 50%;
}

.footer_right ul li a {
  color: #333333;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 3.8rem;
}

.footer_bnr {
  margin-top: 3rem;
  text-align: center;
}

.footer_bnr a {
  width: 139px;
  display: inline-block;
  margin-left: 2em;
}

.copyright {
  font-size: 1.1rem;
  line-height: 2.3rem;
  font-weight: 400;
  position: absolute;
  bottom: 2em;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

#pagetop {
  position: fixed;
  bottom: 2%;
  right: 2%;
  width: 80px;
  transition: all 0.2s linear;
  opacity: 1;
}

#pagetop.move {
  bottom: 2em;
  opacity: 1;
}

#pagetop a img {
  display: block;
  width: 100%;
  transition: opacity 0.2s linear;
}

#pagetop a:hover img {
  opacity: 0.5;
}

/* ---------------
　 　　main_visual
--------------- */
.main_visual {
  background: #fff;
  position: relative;
  min-width: 1400px;
  overflow: hidden;
}

.main_visual .inner {
  position: relative;
  width: 1295px;
  min-height: 780px;
}

/* 右側イラスト動画 */
.mv_movie {
  position: absolute;
  top: 0px;
  right: -190px;
  width: 1390px;
  z-index: 1;
}

.mv_movie_video {
  display: block;
  width: 100%;
  height: auto;
}

/* 吊り看板 */
.mv_board {
  position: relative;
  z-index: 2;
  width: 360px;
}

.mv_board img {
  display: block;
  width: 100%;
  height: auto;
}

.main_visual .mv_message {
  position: relative;
  z-index: 2;
  padding-top: 3.8rem;
}

.main_visual .mv_txt {
  font-size: 3.6rem;
  line-height: 1.5;
  font-weight: bold;
  margin: 0 0 3.5rem;
  width: auto;
  text-align: left;
  letter-spacing: 0.06em;
}

.mv_txt .green {
  color: #006566;
}

.mv_btn {
  display: flex;
}

.mv_btn .btn01 {
  margin-top: 0;
  margin-left: 0;
}

.btns .btn_mitsumori a {
  min-width: 237px;
  background: #fff100;
  font-size: 1.8rem;
  line-height: 1.75;
  padding: 0.6em 0 0.6em 1.6em;
  position: relative;
  box-shadow: 0px 4px 13px 0 rgb(26 74 88 / 35%);
  font-family: inherit;
  border: none;
}

.btns .btn_mitsumori a::before {
  content: "";
  display: block;
  width: 14.3%;
  height: 0;
  padding-top: 10.425%;
  background: url("../img/common/svg_mail01.svg") no-repeat 0 0;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 5%;
  -webkit-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  -o-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}

.btns .btn_catalog a {
  min-width: 237px;
  background: #005859;
  font-size: 1.8rem;
  color: #FFFFFF;
  line-height: 1.75;
  padding: 0.6em 0 0.6em 1em;
  position: relative;
  box-shadow: 0px 4px 13px 0 rgb(26 74 88 / 35%);
  font-family: inherit;
  border: none;
}

.main_visual.btns .btn_catalog a {
  margin-left: 12px;
}

.btns .btn_catalog a::before {
  content: "";
  display: block;
  width: 11%;
  height: 0;
  padding-top: 12.571%;
  background: url("../img/common/svg_file01.svg") no-repeat 0 0;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 5.6%;
  -webkit-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  -o-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}

.btns .btn_mitsumori a::after {
  top: 52%;
  right: 2%;
}

.btns .btn_catalog a::after {
  top: 52%;
  right: 2%;
}

/* ---------------
　 　　top_page
--------------- */
.column_2 {
  display: flex;
  justify-content: space-between;
  width: 1295px;
  margin: 0 auto;
  background-color: #fff;
  position: relative;
}

.column_left {
  width: 300px;
  padding-bottom: 4em;
  border-right: 1px solid #B2C8C9;
  /*border-left: 1px solid #006566;*/
}

.column_left .inner {
  width: 300px;
  margin: 0;
}

.column_left .page_link {
  /*border-left: 1px solid #006566;
	border-right: 1px solid #006566;
	border-bottom: 1px solid #006566;*/
}

.column_left .page_link_ttl {
  color: #FFFFFF;
  background-color: #006566;
  text-align: left;
  font-size: 2rem;
  line-height: 3.4rem;
  padding: 0.3em 0 0.3em 4em;
  border-right: 1px solid #B2C8C9;
}

.column_left .page_link_ttl span {
  display: inline-block;
  position: relative;
}

.column_left .page_link_ttl span::before {
  content: "";
  display: block;
  width: 1.5em;
  height: 1.5em;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(-125%, -50%);
  -moz-transform: translate(-125%, -50%);
  -ms-transform: translate(-125%, -50%);
  -o-transform: translate(-125%, -50%);
  transform: translate(-125%, -50%);
}

.column_left .page_link_ttl.link_kanban span::before {
  background: url("../img/common/svg_kanban01.svg") no-repeat center center;
}

.column_left .page_link_ttl.link_osusume span::before {
  background: url("../img/common/svg_osusume01.svg") no-repeat center center;
}

.column_left .page_link_ttl.link_sekou span::before {
  background: url("../img/common/svg_jirei01.svg") no-repeat center center;
}

.column_left ul {
  padding: 1.6rem 4rem;
}

.column_left ul li {
  margin-bottom: 0.8rem;
}

.column_left ul li a:before {
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-variant: normal;
  text-transform: none;
  content: "\e913";
  display: inline-block;
  position: relative;
  top: 0.1em;
}

.column_left ul li a {
  color: #333333;
  font-size: 1.4rem;
  font-weight: 400;
}

.column_right {
  width: 915px;
}

.column_right section {
  min-width: 915px;
}

.column_right .inner {
  width: 915px;
  margin: 0;
  text-align: center;
}

.top_content {
  padding: 4em 0;
}

.top_content .job_boxs {
  display: flex;
  justify-content: space-between;
}

.top_content .job_box {
  border: 2px solid #DDDDDD;
  border-radius: 10px;
}

.top_content .job_box img {
  width: 277px;
}

.top_content .job_txt {
  border-top: 2px solid #DDDDDD;
  font-size: 1.4rem;
  line-height: 2rem;
  padding: 2.2rem 0;
}

.works_mapTitle{
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: bold;
  color: #006566;
}

.works_mapCatch{
  margin-top: 3rem;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: bold;
  color: #006566;
}
.works_mapCatch span{
  position: relative;
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 0 4rem;
}

.works_mapCatch span::before{
  content: "";
  display: block;
  width: 23px;
  aspect-ratio: 23 / 34;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 0;
  background: url("../img/top/map_catch_left.svg") no-repeat center center / contain;
}

.works_mapCatch span::after{
  content: "";
  display: block;
  width: 23px;
  aspect-ratio: 23 / 34;
  background-size: contain;
  position: absolute;
  bottom: 0;
  right: 0;
  background: url("../img/top/map_catch_right.svg") no-repeat center center / contain;
}

.works_mapIframe {
  --crop: 108px;
  position: relative;
  width: 100%;
  max-width: 730px;
  margin: 2rem auto 0;
  aspect-ratio: 730 / 520;
  overflow: hidden;
}

.works_mapIframe iframe {
  position: absolute;
  left: 0;
  top: calc(var(--crop) * -1);
  width: 100%;
  height: calc(100% + var(--crop));
  border: 0;
}

.works_mapBtn{
margin: 7.2rem 0 12rem;
}

.tab01 {
  font-family: source-han-sans-japanese, sans-serif;
}

.tab01 ul {
  display: flex;
  justify-content: space-between;
}

.tab01 li {
  list-style-type: none;
  width: 24.5%;
}

.tab01 li span {
  text-decoration: none;
  color: #000;
  display: block;
  border-radius: 5px 5px 0 0;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  width: 100%;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  background-color: #EAEAEA;
  padding: 1.4rem 0;
  transition: all 0.2s linear;
  cursor: pointer;
}

.tab01 li.current span {
  background-color: #BFD5D5;
}

.tab01 .tab-inner {
  padding: 4.8rem 3.8rem;
  border: 2px solid #BFD5D5;
  border-radius: 0 0 5px 5px;
  -webkit-border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
  margin-bottom: 4em;
  position: relative;
  display: flex;
  /* justify-content: space-between; */
  column-gap: calc(8/3*1%);
}

.tab01 .works_item {
  width: 23%;
}

.tab01 .works_caption {
  font-weight: 500;
  margin-top: 0.2em;
}

.tab01 .works_view_all {
  font-weight: 700;
  text-align: right;
  display: inline-block;
  position: absolute;
  right: 3.8rem;
  bottom: 1.4em;
  padding-right: 2em;
  font-size: 1.2rem;
}

.tab01 .works_view_all::after {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-variant: normal;
  text-transform: none;
  font-weight: bold;
  content: "\e960";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  -o-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}

.tab01 .tab-inner {
  display: none !important;
}

.tab01 .tab-inner.current {
  display: flex !important;
}


.type_box {
  margin: 3em 0 6em;
  padding-bottom: 9em;
  position: relative;
}

.type_box_img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 31.7rem;
}

.type_cat_boxs {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 4em;
}

.type_cat_boxs::after {
  display: none;
}

.type_cat_box {
  position: relative;
  margin-bottom: 2rem;
}

.type_cat_box .type_cat {
  position: absolute;
  bottom: 0;
  left: 2%;
  color: #FFFFFF;
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 500;
  /*medium*/
  /*regular=400 bold=700*/
  font-style: normal;
  text-shadow: 1px 1px 4px rgb(0 0 0 / 75%);
  -moz-text-shadow: 1px 1px 4px rgba(0, 0, 0, .75);
  -webkit-text-shadow: 1px 1px 4px rgba(0, 0, 0, .75);
}

.type_cat_box .type_cat:after,
.other_item_box .type_cat:after {
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-variant: normal;
  text-transform: none;
  content: "\e913";
  display: inline-block;
  position: relative;
  top: 0.1em;
}

.other_item_boxs {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 2em;
}

.other_item_box {
  position: relative;
}

.other_item_box .type_cat {
  position: absolute;
  bottom: 0;
  left: 2%;
  color: #FFFFFF;
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 500;
  font-style: normal;
  text-shadow: 1px 1px 4px rgb(0 0 0 / 75%);
  -moz-text-shadow: 1px 1px 4px rgba(0, 0, 0, .75);
  -webkit-text-shadow: 1px 1px 4px rgba(0, 0, 0, .75);
}



.top_content .flow_txt {
  line-height: 2;
  position: relative;
  padding-bottom: 5.4em;
}

.top_content .flow_txt .green_txt {
  display: block;
  margin: 0.5em 0 0;
  line-height: 1.2;
}

.top_content .flow_txt .green_txt span {
  font-size: 80%;
}

/********slickボタンカスタマイズ*******/
/* .slider {
  margin-top: 2.5em !important;
}
.slick-list {
  width:92%;
  margin:0 auto !important;
}
.slick-dots li:nth-of-type(1) button:before{
  content: "プランニング" !important;
}
.slick-dots li:nth-of-type(2) button:before{
  content: "現地調査" !important;
}
.slick-dots li:nth-of-type(3) button:before{
  content: "見積り・ラフ" !important;
}
.slick-dots li:nth-of-type(4) button:before{
  content: "デザイン検討・決定" !important;
}
.slick-dots li:nth-of-type(5) button:before{
  content: "製作・施工" !important;
}
.slick-dots li button:before{
  background: none;
  height:100%!important;
  width: 100%!important;
  font-size: 1.4rem !important;
  font-weight: bold;
  line-height: 3rem !important;
  opacity: 1 !important;
}
.slick-dots li{
  width: 16% !important;
  height:3rem !important;
  margin: 0!important;
  transition: all 0.4s linear;
}
.slick-dots li button{
  width:auto!important;
  height:auto!important;
}
.slick-dots{
  bottom: initial!important;
  margin-top:4em!important;
} */


.top_content .flow_txt img {
  position: absolute;
  top: 4em;
  right: 8rem;
  width: 648px;
}

.top_content .inner-flex {
  display: flex;
  justify-content: space-between;
}

.top_content .area_box {
  width: 416px;
}

.top_content .news_box {
  width: 457px;
}

.top_content .area_box .h2Tag,
.top_content .news_box .h2Tag {
  font-size: 2.4rem;
  line-height: 3.2rem;
}

.top_content .area_txt {
  margin-top: 2rem;
  text-align: left;
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.4rem;
  line-height: 2rem;
}

.top_news_box {
  width: 100%;
  border-top: 2px solid #BFD5D5;
  padding: 2rem 0;
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 700;
  font-style: normal;
  position: relative;
  display: flex;
  align-items: center;
}

.top_news_box:last-of-type {
  border-bottom: 2px solid #BFD5D5;
}

.top_news_date {
  font-size: 1.4rem;
  width: 9rem;
  text-align: left;
}

.top_news_category {
  background-color: #005859;
  color: #FFFFFF;
  display: inline-block;
  font-size: 1.2rem;
  line-height: 2.6rem;
  width: 11rem;
  border-radius: 999px;
  margin-left: 1.2rem;
}

.top_news_title {
  margin-left: 1.2rem;
  font-size: 1.4rem;
}

.top_news_title a {
  color: #005859;
  width: 24rem;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  text-align: left;
}

.top_news_btn {
  font-weight: 700;
  text-align: right;
  margin-top: 1.4em;
  display: inline-block;
  position: absolute;
  right: 0;
  padding-right: 2em;
  font-size: 1.2rem;
}

.top_news_btn::after {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-variant: normal;
  text-transform: none;
  font-weight: bold;
  color: #005859;
  content: "\e960";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  -o-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}


.page_visual {
  min-width: 1400px;
}

.pankuzu {
  background-color: #fff;
  z-index: 1;
  position: relative;
  min-width: 1400px;
}

.pankuzu ul {
  width: 1295px;
  margin: 0 auto;
  display: flex;
  padding: 1em 0 2em;
  background-color: #fff;
  z-index: 1;
}

.pankuzu ul li {
  font-size: 1.2rem;
}

.pankuzu ul li a {
  font-weight: normal;
  color: inherit;
  text-decoration: underline;
}

.pankuzu ul li a:hover {
  text-decoration: none;
}

.pankuzu ul li:nth-child(n+2):before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-variant: normal;
  text-transform: none;
  font-weight: normal;
  content: "\e913";
}

.table01 {
  padding-bottom: 6em;
}

.table01 table {
  width: 100%;
}

.table01 tr:nth-of-type(2n+1) th,
.table01 tr:nth-of-type(2n+1) td {
  background-color: #F4F7F7;
}

.table01 th,
.table01 td {
  padding: 1em 2em;
  text-align: left;
}

.table01 th {
  width: 10em;
  padding: 1em 0em 1em 2em;
  white-space: nowrap;
  font-weight: bold;
}

.table01 td {
  padding: 1em 2em 1em 1em;
  font-weight: normal;
}

.table01 td ul {}

.table01 td ul li~li {
  margin-top: 0.5em;
}

.table01 td dl dt {
  font-weight: bold;
}

.table01 td dl dt~dt {
  margin-top: 0.8em;
}

.table01 td .link {
  display: inline-block;
  margin-left: 2em;
  text-decoration: underline;
}

.table01 td .link:hover {
  text-decoration: none;
}

.table01 td .link:after {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-variant: normal;
  text-transform: none;
  font-weight: normal;
  content: "\e913";
}



.page_visual_inner {
  height: 260px;
  width: 100%;
  min-width: 1295px;
}

.page_visual_inner01 {
  background: url(../img/about/title-image_pc.png) no-repeat 0 0;
  background-size: cover;
}

.page_visual_inner02 {
  background: url(../img/jirei/title-image_pc.png) no-repeat 0 0;
  background-size: cover;
}

.page_visual_inner03 {
  background: url(../img/information/title-image_pc.png) no-repeat 0 0;
  background-size: cover;
}

.page_visual_inner04 {
  background: url(../img/contents/title-image_pc.png) no-repeat 0 0;
  background-size: cover;
}

.page_visual_inner05 {
  background: url(../img/price/title-image_pc.png) no-repeat 0 0;
  background-size: cover;
}

.jirei_btn01 {
  margin-top: 1em;
  display: flex;
  justify-content: space-between;
}

.jirei_btn01 li {
  width: 15%;
}

.jirei_btn01 a {
  width: 100%;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  font-size: 1.6rem;
  color: #005859;
  background: #FFFFFF;
  display: inline-block;
  border-radius: 4px;
  border: 1px solid #006566;
  position: relative;
  padding: 0.6em 0;
  font-weight: 700;
  box-shadow: 4px 4px #005859;
  letter-spacing: 0.03em;
  transition: all 0.2s linear;
}

.jirei_btn01 a:hover {
  color: #fff;
  border: 1px solid #fff;
  background: #005859;
}

.jirei_checkbox {
  border: 2px solid #BFD5D5;
  border-right-width: 0;
  border-left-width: 0;
  display: flex;
  justify-content: space-between;
  margin: 1.2em 0;
  padding: 1em 0;
}

.jirei_checkbox li {
  text-align: left;
  padding: 0.5em 0 0.5em 1.6em;
}

.jirei_checkbox li span {
  font-size: 1.5rem;
  font-weight: normal;
}

.jirei_checkbox ul.jirei_checkbox-all {
  width: 22%;
}

.jirei_checkbox ul.jirei_checkboxes {
  width: 78%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.jirei_checkbox ul.jirei_checkboxes li {
  width: 33.33%;
  line-height: 1.2;
}

.jirei_checkbox label {
  position: relative;
  display: block;
  cursor: pointer;
}

.jirei_checkbox label:hover span {
  text-decoration: underline;
}

.jirei_checkbox input[type="checkbox"] {
  opacity: 0;
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
}

.jirei_checkbox input[type="checkbox"]+span::before {
  display: block;
  position: absolute;
  content: '';
  width: 1.6rem;
  height: 1.6rem;
  border: 1px solid #ccc;
  border-radius: 3px;
  position: absolute;
  top: 50%;
  left: -1.6em;
  -webkit-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  -o-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}

.jirei_checkbox input[type="checkbox"]:checked+span::before {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpolyline fill='none' stroke='white' stroke-width='3' points='2,7.3 7.3,12.7 18,2 '/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 0 2px;
  background-color: #005859;
}

.file-box {
  margin-bottom: 10px;
}

.file-body {
  text-align: left;
  margin-top: 15px;
}

.btn01_small a {
  min-width: 180px;
  padding: 0.8em 0;
}

.btn01_small input {
  min-width: 180px !important;
  padding: 0.8em 0 !important;
}

.jirei_result {
  padding: 8em 0 6em;
}

.jirei_result.pt0 {
  padding-top: 0;
}

.green_txt-small {
  line-height: 1.4;
}

.jirei_result-boxes {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.jirei_result-boxes a {
  display: block;
  width: 31%;
  transition: opacity 0.2s linear;
}

.jirei_result-boxes a:nth-of-type(3n+2) {
  margin: 0 3.5%;
}

.jirei_result-boxes a:hover {
  opacity: 0.65;
}

.jirei_result-box {
  margin-bottom: 2.2em;
}

.jirei_result-box img {
  object-fit: cover;
  height: 174px;
}

.jirei_result-box dl {
  margin: 0.3em 0 0;
}

.jirei_result-box dt,
.jirei_result-box dd {
  text-align: left;
}

.jirei_result-box dt {
  font-size: 1.4rem;
  color: #005859;
}

.jirei_result-box dd {
  font-size: 1.2rem;
  font-weight: normal;
  color: #000;
}

ul.page-numbers {
  margin: 4em 0 0;
  display: flex;
  justify-content: center;
}

ul.page-numbers li {
  margin: 0 0.3em;
}

ul.page-numbers a,
ul.page-numbers span.current {
  color: #005859;
  display: inline-block;
  width: 2em;
}

ul.page-numbers span.current {
  color: #005859;
  background-color: #BFD5D5;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
}

ul.page-numbers .prev,
ul.page-numbers .next {
  width: auto;
  white-space: nowrap;
  position: relative;
  margin: 0;
}

ul.page-numbers .prev {
  margin-right: 4em;
}

ul.page-numbers .next {
  margin-left: 4em;
}

ul.page-numbers .prev:before,
ul.page-numbers .next:after {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-variant: normal;
  text-transform: none;
  font-weight: bold;
  position: static;
}

ul.page-numbers .prev:before {
  content: "\e916";
  margin-right: 0.5em;
}

ul.page-numbers .next:after {
  content: "\e917";
  margin-left: 0.5em;
}


.info_btn01 {
  margin-top: 0.3em;
  display: flex;
  justify-content: space-around;
}

.info_btn01 li {
  width: 17.5%;
}

.info_btn01 a {
  width: 100%;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  font-size: 1.6rem;
  color: #005859;
  background: #FFFFFF;
  display: inline-block;
  border-radius: 4px;
  border: 1px solid #006566;
  position: relative;
  padding: 0.6em 0;
  font-weight: 700;
  box-shadow: 4px 4px #005859;
  letter-spacing: 0.03em;
  transition: all 0.2s linear;
}

.info_btn01 a.current,
.info_btn01.notice a.notice,
.info_btn01.event a.event,
.info_btn01.other a.other,
.info_btn01 a:hover {
  color: #fff;
  border: 1px solid #fff;
  background: #005859;
}

.info_btn01+.news_box {
  margin-top: 3em;
}

.info_btn01+.news_box .top_news_title a {
  width: 68rem;
  text-align: left;
}


.link_category {
  border-top: 1px solid #005859;
}

.link_info {
  display: none;
  background-color: #F3F6F6 !important;
  color: #005859 !important;
  padding-left: 2em !important;
}

.link_info+ul {
  display: none;
}

.link_info+ul a {
  font-weight: bold !important;
}

.link_info+ul a:before {
  display: none !important;
}

#information .link_info,
#information .link_info+ul,
#information_detail .link_info,
#information_detail .link_info+ul {
  display: block;
}

.news_box+.pagination {
  margin-bottom: 6em;
}


#information_detail .pankuzu ul,
#inquiry .pankuzu ul {
  padding-left: 8em;
  padding-top: 0.5em;
}

.btn01.back {
  margin-top: 5em;
  margin-bottom: 5em;
}

.btn01.back a:after {
  right: auto;
  left: 5%;
  content: "\e916";
}

.information_body {}

.information_body .hTag,
.information_body h2,
.information_body h3 {
  color: #005859;
  margin: 2em 0 0.2em;
  text-align: left;
  font-size: 2.4rem;
}

.information_body h2 {
  background: #fff100;
  width: fit-content;
}

.information_body p,
.information_body pre {
  font-size: 1.8rem;
  line-height: 1.8;
  text-align: left;
  font-weight: normal;
}

.information_body img {
  /* width: 60%;
    margin:3em auto; */
  display: block;
}

.wp-block-image {
  margin: 3em auto;
}

.wp-block-image img {
  height: auto !important;
  width: auto !important;
}

.info_title-wrapper {
  text-align: center;
}

.info_title {
  display: inline-block;
}

.info_title .h2Tag {
  border-bottom-width: 0;
  text-align: left;
}

.info_title .h2Tag span {
  border-bottom: 4px solid #fff100;
}

.info_data {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0.3em;
}

.news_date {
  font-size: 1.4rem;
  line-height: 2.6rem;
  text-align: left;
  color: #005859;
}

.news_date span {
  font-size: 1.2rem;
  font-weight: normal;
}

.news_category {
  background-color: #005859;
  color: #FFFFFF;
  display: inline-block;
  font-size: 1rem;
  line-height: 2.2;
  border-radius: 999px;
  padding: 0 3em;
  margin-left: 1.2rem;
}


.inq_body {
  margin: 4em 0;
}

.inq_body dl {
  margin: 2.5em 0 0;
}

.inq_body .inq-fieldset {
  margin: 2.5em 0 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

.inq_body .inq-fieldset > legend {
  text-align: left;
  margin: 0.6em 0;
  padding: 0;
  float: none;
  width: auto;
  position: relative;
  display: block;
}

.inq_body .inq-fieldset.req > legend .req-badge {
  display: inline-block;
  background-color: #D05E4C;
  border-radius: 300px;
  -webkit-border-radius: 300px;
  -moz-border-radius: 300px;
  padding: 0 0.5em;
  font-size: 1rem;
  line-height: 1.5;
  color: #fff;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  -o-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  margin-left: 1em;
  white-space: nowrap;
}

.inq_body dt {
  text-align: left;
  margin: 0.6em 0;
  position: relative;
}

.inq_body dt label {
  cursor: pointer;
}

.inq_body dt.req:after {
  content: "必須";
  display: inline-block;
  background-color: #D05E4C;
  border-radius: 300px;
  -webkit-border-radius: 300px;
  -moz-border-radius: 300px;
  padding: 0 0.5em;
  font-size: 1rem;
  line-height: 1.5;
  color: #fff;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  -o-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  margin-left: 1em;
}

/* Contact Form 7 が自動挿入する<p>の調整 */
/* dt内の<p> / label をインライン化し「必須」バッジを項目名の右に並べる */
.inq_body dt > p,
.inq_body dt > label {
  display: inline;
  margin: 0;
}

/* 添付ファイル用のスクリーンリーダー専用ラベル */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* 入力欄ラッパーの<p>の余白を除去して元の間隔に揃える */
.inq_body dd > p,
.inq_body .file-body > p,
.inq_body .js-placeholder p {
  margin: 0;
}

.inq_body dd .pp {
  font-weight: normal;
  font-size: 1.4rem;
  margin-top: 0.3em;
}

.inq_body dd li {
  text-align: left;
  font-weight: normal;
}

.inq_body dd li label {
  cursor: pointer;
}

.inq_body dd li~li {
  margin-top: 0.5em;
}

.inq_body dd li input {
  margin-right: 0.6em;
}

.btn01.inq {
  margin-top: 4em;
  margin-bottom: 5em;
}

.btn01.inq a {
  color: #005859;
  background: #fff100;
  border: 0;
  box-shadow: 0px 4px 13px 0 rgba(26, 74, 88, 0.35);
}

.btn01.inq a:after {
  right: 1.2em;
  content: "\e917";
}


.inq_caution {
  line-height: 2;
  font-size: 1.6rem;
}

#fixed_menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  z-index: 1000;
  border: 8px solid #005859;
  -webkit-transform: translate(100%, -100%);
  -moz-transform: translate(100%, -100%);
  -ms-transform: translate(100%, -100%);
  -o-transform: translate(100%, -100%);
  transform: translate(100%, -100%);
  opacity: 0;
  transition: all 0.2s ease-in;
}


.clickable {
  position: relative;
}

.clickable img {
  position: absolute;
  top: 0;
  left: 0;
}

.clickable img#clickable-base {
  display: block;
  position: static;
}

.clickable img.clickable-type {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s linear;
}

.clickable img.hover {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.2s linear;
}

#fixedbtn01 {
  display: none;
  position: fixed;
  bottom: 4em;
  right: 3%;
  width: 175px;
  z-index: 3;
}

#fixedbtn01 #fixedbtn-close {
  position: absolute;
  top: 1em;
  right: 8%;
  width: 21px;
}

#fixedbtn01.hide {
  display: none;
}



.btn01_small2 a {
  min-width: 293px;
  padding: 0.8em 0;
}

.contents_row1 {
  margin: 2em 0 1em;
  /* background: url(../img/contents/bg01_pc.png) no-repeat center bottom;
  background-size: 648px; */
  padding-bottom: 9em;
  display: flex;
  justify-content: space-between;
}

.contents_row1 img {
  width: 31.5rem;
  height: auto;
}

.contents_row1__right {
  flex: 1;
  margin-left: 3.2rem;
  text-align: left;
  margin-top: -0.5em;
}

.contents_row1 .htag {
  line-height: 1.6;
  font-size: 2.4rem;
}

.contents_row1 .contents_p1 {
  margin-top: 1.4em;
  font-size: 1.8rem;
  line-height: 1.77;
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 400;
}

.h2Tag_small {
  font-size: 1.8rem;
  line-height: 1.5;
}

.contents_row2 {
  margin-bottom: 8em;
  background-color: #F1F5F5;
}

/*.contents_com {
  background-color: #F1F5F5;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 3%;
}
.contents_com li {
  width:17.6%;
}
.contents_com li:nth-child(n+6) {
  margin-top: 3%;
}*/

.contents_com_text {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 3% 4%;
  height: 16em;
}

.contents_com_text li {
  text-align: left;
  padding: 0.3em 0;
}

.contents_com_text li a {
  color: inherit;
}

.contents_com_text li a:hover {
  text-decoration: underline;
}

.contents_row2 .btn01 {
  margin: 0 !important;
}

.contents_row3 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 5%;
  margin-top: -1em;
}

.contents_row3 li {
  width: 50%;
  display: flex;
  align-items: center;
  font-size: 1.9rem;
  margin-top: 0.8em;
}

.contents_row3 li img {
  width: 1.5em;
  margin-right: 0.5em;
  display: block;
}

.contents_row10 {
  max-width: 750px;
  width: 100%;
  margin: -2em auto 0;
}

.contents_row10 .price_box {
  margin-top: 4em;
}

.contents_row10 .price_title {
  font-size: 2.4rem;
  font-weight: bold;
  position: relative;
  display: inline-block;
  line-height: 1;
}

.contents_row10 .price_title:after,
.contents_row10 .price_title:before {
  content: "";
  position: absolute;
  top: 51%;

  width: 5px;
  height: 120%;

  -webkit-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  -o-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}

.contents_row10 .price_title:after {
  border-top: 1px solid #005859;
  border-bottom: 1px solid #005859;
  border-left: 1px solid #005859;
  left: -0.8em;
}

.contents_row10 .price_title:before {
  border-top: 1px solid #005859;
  border-bottom: 1px solid #005859;
  border-right: 1px solid #005859;
  right: -0.8em;
}

.contents_row10 .price_text {
  margin-top: 1em;
  font-size: 1.8rem;
  text-align: left;
}

.contents_row10 .price_list {
  margin-top: 1.5em;
  display: flex;
  flex-wrap: wrap;
  row-gap: 1rem;
  text-align: left;
  border: 5px solid rgba(0, 88, 89, 0.24);
  padding: 3rem 7rem;
}

.contents_row10 .price_item {
  width: 50%;
  position: relative;
}

.contents_row10 .price_item:after {
  content: "";
  position: absolute;
  top: 50%;
  left: -1.2em;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  -webkit-border-radius: 999px;
  -moz-border-radius: 999px;
  background: #005859;
  -webkit-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  -o-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}



.contents_row4 {
  position: relative;
  margin: 3em 0 5em;
}

.contents_row4 .arrow {
  display: block;
  width: 6%;
  margin: 0 auto;
}

.contents_row4 .ab {
  position: absolute;
  width: 14%;
  right: 0;
  top: -2.5em;
}

.with_icon_left {
  position: relative;
}

.with_icon_left .ab {
  position: absolute;
  width: 40%;
  bottom: 0;
  left: 0;
  -webkit-transform: translate(-120%, 0%);
  -moz-transform: translate(-120%, 0%);
  -ms-transform: translate(-120%, 0%);
  -o-transform: translate(-120%, 0%);
  transform: translate(-120%, 0%);
}

.contents_row5 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 1em 0 3em;
}

.contents_point {
  border: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 30%;
  position: relative;
  border-radius: 1.2rem;
  -webkit-border-radius: 1.2rem;
  -moz-border-radius: 1.2rem;
}

.contents_point.point1 {
  margin: 0 5% 0 10%;
}

.contents_point.point2 {
  margin-right: 10%;
}

.contents_point.point4 {
  margin: 0 5%;
}

.contents_point:nth-child(n+3) {
  margin-top: 5%;
}

.contents_point img {
  margin: 0.5em 0.8em;
  width: calc(100% - 1.6em);
}

.contents_point .point_icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 36%;
  position: absolute;
  -webkit-transform: translate(-25%, -50%);
  -moz-transform: translate(-25%, -50%);
  -ms-transform: translate(-25%, -50%);
  -o-transform: translate(-25%, -50%);
  transform: translate(-25%, -50%);
}

.contents_point .point_p {
  border-top: 1px solid #ddd;
  color: #000;
  font-size: 1.4rem;
  text-align: center;
  display: flex;
  place-items: center;
  place-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 7.5em;
  line-height: 1.4;
}

.contents_row6 {
  margin: 1em 0 8em;
}

.contents_row6 .power_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1em 0 4em;
}

.contents_row6 .power_box .text {
  width: 15%;
  text-align: left;
}

.contents_row6 .power_box .text .htag {
  position: relative;
  text-align: center;
}

.contents_row6 .power_box .htag .htag_title {
  font-size: 1.8rem;
  color: #fff;
  font-weight: bold;
  display: block;
  padding: 0;
  line-height: 1.4;
  text-align: center;
  width: 7em;
  position: absolute;
  top: 38%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin: 0;
}

.contents_row6 .power_box .htag .htag_title--sm {
  font-size: 1.7rem;
  letter-spacing: 0;
}

.contents_row6 .power_box .power_text {
  width: 80%;
  text-align: left;
}

.contents_row6 .power_box .power_sub {
  font-size: 1.8rem;
  font-weight: bold;
  color: #006566;
  line-height: 1.4;
  margin: 0;
  font-family: source-han-sans-japanese, sans-serif;
}

.contents_row6 .power_box .power_title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #006566;
  line-height: 1.5;
  margin: 0 0 0.3em;
  font-family: source-han-sans-japanese, sans-serif;
}

.contents_row6 .power_box .power_p {
  font-size: 1.8rem;
  line-height: 1.8;
  font-weight: 400;
  margin: 0;
  text-align: left;
  width: 100%;
  font-family: source-han-sans-japanese, sans-serif;
}

.contents_row6 .power_box img {
  width: 100%;
}


.belt {
  background-color: #C6D6D6;
  padding-top: 2em;
  padding-bottom: 2em;
  margin: 8em 0;
}

.belt_inner {
  min-width: 1035px;
  /*width:1190px;
	margin:0 0 0 -137.5px;
	position:relative;*/
}

@media screen and (min-width:1295px) {
  .belt {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    margin-left: calc(((100vw - 100% + 380px) / 2) * -1);
    margin-right: calc(((100vw - 100% - 380px) / 2) * -1);
    padding: 2em calc((100vw - 100%) / 2);
  }
}

@media screen and (max-width:1294px) {
  .belt {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    margin-left: -380px;
    margin-right: -105px;
    padding: 2em calc((100vw - 100%) / 2);
  }

  .belt_inner {
    /* width:100%;
    margin:0 auto;*/
  }
}

@media screen and (min-width:1295px) and (max-width:1399px) {
  .belt {
    width: 1400px;
  }

  .belt_inner {
    /*margin-left: -92px;*/
  }
}

.belt.effect01 {
  padding: 0 !important;
  margin-top: 1em !important;
  margin-bottom: 5em !important;
  /* background-color: #F1F5F5; */
}

.belt .htag {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 1.3em;
}

.belt .htag span {
  display: inline-block;
  position: relative;
  margin-left: 5em;
}

.belt .htag img {
  position: absolute;
  width: 15%;
  top: 0;
  left: 0;
  -webkit-transform: translate(-115%, -55%);
  -moz-transform: translate(-115%, -55%);
  -ms-transform: translate(-115%, -55%);
  -o-transform: translate(-115%, -55%);
  transform: translate(-115%, -55%);
}

.contents_row7 {
  margin-bottom: 8em;
}

.contents_row7 .contents_jirei {
  display: flex;
  justify-content: space-between;
  margin: 1em 0 4em;
}

.contents_row7 .text {
  width: 59%;
  text-align: left;
}

.contents_row7 .htag {
  font-size: 2.4rem;
  color: #005859;
  font-weight: bold;
  line-height: 1.4;
}

.contents_row7 span {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.8;
}

.contents_row7 p {
  font-size: 1.8rem;
  line-height: 1.8;
  font-weight: 500;
  margin: 0.6em 0 0;
}

.contents_row7 img {
  width: 36%;
}

.effect01 {}

.effect01 .effect_inner {
  /* height: 376px; */
  padding: 3em 0;
  background-color: #F1F5F5;
  /* position: relative;
  overflow: hidden;
  display: flex;
  place-items:center;
  place-content:center;
  display: -webkit-box;
  display: -ms-flexbox;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; */
}

.effect01 .effect_inner img {
  width: 100%;
  height: auto;
  margin-right: 1.5em;
}

/* .effect_mt {
  font-size: 8.6rem;
  position: relative;
  z-index: 10;
  color: #005859;
  font-weight: normal;
  text-shadow: 2px 2px 10px #E8F1F1,
  -2px 2px 10px #E8F1F1,
  2px -2px 10px #E8F1F1,
  -2px -2px 10px #E8F1F1;
} */
/* .effect01 img {
  position: absolute;
}
.effect01 .img01 {
  top: 5%;
  left: -460px;
  width: 710px;
}
.effect01 .img02 {
  top:-15%;
  left:30%;
  width:479px;
}
.effect01 .img03 {
  top:-6%;
  right:0;
  width:348px;
}
.effect01 .img04 {
  bottom:-20%;
  left:30%;
  width:479px;
}
.effect01 .img05 {
  bottom:2%;
  right:10%;
  width:348px;
}
.effect01 .img06 {
  bottom:20%;
  right:-15%;
  width:288px;
}
.effect01 .img07 {
  bottom:-10%;
  right:-748px;
  width:748px;
} */

.contents_row8 {
  margin: 0 0 4em;
}

.contents_row8 dl {
  display: flex;
  justify-content: space-between;
  background-color: #F1F5F5;
  position: relative;
}

.contents_row8 dl:nth-child(n+2) {
  margin-top: 3em;
}

.contents_row8 dl:nth-child(n+2)::after {
  content: url(../img/contents/arrow02.svg);
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -92%);
  -moz-transform: translate(-50%, -92%);
  -ms-transform: translate(-50%, -92%);
  -o-transform: translate(-50%, -92%);
  transform: translate(-50%, -92%);
}

.contents_row8 dt {
  width: 36%;
  line-height: 1.4;
  text-align: left;
  position: relative;
}

.contents_row8 dt span {
  display: flex;
  justify-content: flex-start;
  color: #fff;
  font-weight: bold;
  font-size: 2.4rem;
  padding: 0 1em;
  place-items: center;
  place-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 6em;
  clip-path: polygon(0% 0%, 86% 0%, 100% 50%, 86% 100%, 0% 100%);
  background-color: #005859;
}

.contents_row8 dt img {
  width: 2.5em;
  margin-right: 0.6em;
}

.contents_row8 dt .fukidashi {
  position: absolute;
  width: 12em;
  margin: 0;
  top: 0;
  right: 0;
  -webkit-transform: translate(-20%, -50%);
  -moz-transform: translate(-20%, -50%);
  -ms-transform: translate(-20%, -50%);
  -o-transform: translate(-20%, -50%);
  transform: translate(-20%, -50%);
  z-index: 10;
}

.contents_row8 dd {
  width: 62%;
  display: flex;
  place-items: center;
  place-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; */
}

.contents_row8 dd p {
  font-size: 1.8rem;
  line-height: 1.8;
  text-align: left;
  font-weight: normal;
  padding-right: 1.5em;
}

.contents_row9 {
  margin: 2em 0 0;
}

.contents_row9 dl {
  border-top: 1px solid #BFD5D5;
}

.contents_row9 dl:last-of-type {
  border-bottom: 1px solid #BFD5D5;
}

.contents_row9 dt,
.contents_row9 dd {
  font-size: 1.8rem;
  color: #005859;
  font-weight: bold;
  text-align: left;
}

.contents_row9 dt {
  padding: 0.8em 2.5em 0.8em 0.5em;
  background: url(../img/contents/plus.svg) no-repeat 98% center;
  background-size: 1.5em;
  padding-left: 1em;
  text-indent: -0.7em;
}

.contents_row9 dt:hover {
  cursor: pointer;
}

.contents_row9 dt.open {
  background: url(../img/contents/minus.svg) no-repeat 98% center;
  background-size: 1.5em;
}

.contents_row9 dt::before {
  content: "Q";
  display: inline-block;
  margin-right: 0.5em;
}

.contents_row9 dd {
  padding: 0.8em 0;
  border-top: 1px solid #BFD5D5;
}

.contents_row9 dd span::before {
  content: "A";
  display: inline-block;
  margin-right: 0.5em;
}

.contents_row9 dd span {
  display: block;
  background-color: #F1F5F5;
  padding: 0.8em 0.5em;
  padding-left: 2em;
  text-indent: -0.6em;
}

.contents_row9 .btns {
  margin: 4em 0 0;
}


/* モーダルウィンドウ */

/**{
  margin: 0;
  padding: 0;
}*/

/* モーダル全体(背景＋本体) */
.modal {
  display: none;
  position: fixed;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 100;
}

/* モーダル背景 */
.modal-bg {
  position: absolute;
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
}

/* モーダル本体 */
.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /*overflow: scroll; */
  height: auto;
  width: 40%;
  background: white;
  padding: 4rem 4rem 2rem;
}

/* モーダルウィンドウ表示中に記事本体を固定 */
body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
}

/* 事例モーダルレイアウト */
.main-wrap {}

.main-wrap img {
  object-fit: cover;
  height: 344px;
}

.thumb-wrap {
  display: flex;
  justify-content: space-between;
  margin: 3% 0 0;
}

.thumb-wrap li {
  width: 23%;
}

.thumb-wrap img {
  transition: opacity 0.2s linear;
  cursor: pointer;
  object-fit: cover;
  height: 80px;
}

.thumb-wrap li.current img,
.thumb-wrap img:hover {
  opacity: 0.6;
}

.jirei-title {
  margin: 0.8em 0;
  color: #005859;
}

.jirei-title span {
  display: inline-block;
  margin-right: 0.3em;
}

.jirei-info {
  margin: 0.6em 0 0;
}

.jirei-info .category,
.jirei-info .material {
  font-weight: 500;
  font-size: 95%;
}

.jirei-info .category {}

.jirei-info .material {}

.modal-content .js-modal-close {
  position: absolute;
  top: 0.3%;
  right: 1.5%;
  font-size: 2.6rem;
  color: #005859;
}

.navi {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  -o-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}

.navi-prev {
  left: 2.8%;
}

.navi-next {
  right: 2.8%;
}

.navi i {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  font-size: 1.5rem;
  border-right: 1px solid #005859;
  border-bottom: 1px solid #005859;
  background: transparent;
}

.navi-prev i {
  transform: rotate(135deg);
}

.navi-next i {
  transform: rotate(-45deg);
}





.jirei_btn01 label {
  margin-right: 5px;
  /* ボタン同士の間隔 */
}

.jirei_btn01 label input {
  display: none;
  /* デフォルトのinputは非表示にする */
}

.jirei_btn01 span {
  width: 100%;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  font-size: 1.6rem;
  color: #005859;
  background: #FFFFFF;
  display: inline-block;
  border-radius: 4px;
  border: 1px solid #006566;
  position: relative;
  padding: 0.6em 0;
  font-weight: 700;
  box-shadow: 4px 4px #005859;
  letter-spacing: 0.03em;
  transition: all 0.2s linear;
  cursor: pointer;
}

.jirei_btn01 label input:checked+span {
  color: #fff;
  border: 1px solid #fff;
  background: #005859;
}



.btn01 a,
.header_btn a,
a img {
  transition: opacity 0.2s linear;
}

.btn01 a:hover,
.header_btn a:hover,
a:hover img {
  opacity: 0.6;
}

/* .slick-slide {
  height:273px !important;
  min-height:273px !important;
} */

.p10 {
  line-height: 1.8;
  font-size: 1.8rem;
  text-align: left;
}

.p10+.contents_row1 {
  margin-top: 8em;
}

/* お問い合せラジオ */
/* お問合わせ項目（ラジオ・縦並び）— Contact Form 7 */
.radio-wrapper .wpcf7-radio {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 10px;
}

/* ご依頼内容（チェックボックス・3カラム）— Contact Form 7 */
.check-wrapper .wpcf7-checkbox {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px 0;
}

/* 入力欄ラッパーをブロック化（テキスト系を横幅いっぱいに） */
.inq_body .wpcf7-form-control-wrap {
  display: block;
}

/* ラジオ・チェックの選択肢の体裁 */
.radio-wrapper .wpcf7-list-item,
.check-wrapper .wpcf7-list-item {
  margin: 0;
  text-align: left;
}

.radio-wrapper .wpcf7-list-item label,
.check-wrapper .wpcf7-list-item label {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

.radio-wrapper input[type="radio"],
.check-wrapper input[type="checkbox"] {
  margin-right: 0.6em;
  flex-shrink: 0;
}

.btn01.inq .btn {
  line-height: 1 !important;
  text-align: center !important;
  text-decoration: none !important;
  font-size: 1.6rem !important;
  display: inline-block !important;
  border-radius: 4px !important;
  position: relative !important;
  font-family: source-han-sans-japanese, sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 0.03em !important;
  width: auto !important;
  min-width: 180px !important;
  padding: 0.8em 2.5em 0.8em 2em !important;
  color: #005859 !important;
  background: #fff100 !important;
  border: 0 !important;
  box-shadow: 0px 4px 13px 0 rgba(26, 74, 88, 0.35) !important;
}

/* CF7が挿入する<p>を中央寄せ用に調整 */
.btn01.inq > p {
  margin: 0;
  display: inline-block;
  vertical-align: top;
}

.btn-ar {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: fit-content;
  max-width: 100%;
}

/* CF7スピナーをレイアウトから外し、ボタン幅を広げない */
.btn-ar .wpcf7-spinner {
  position: absolute;
  left: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  margin: 0 !important;
}

.btn-ar:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-variant: normal;
  text-transform: none;
  font-weight: bold;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  -o-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  right: 1.2em;
  content: "\e917";
  color: #095657;
  z-index: 100;
  pointer-events: none;
}

/* エラーメッセージ — Contact Form 7 */
.wpcf7-not-valid-tip {
  color: #D05E4C;
  font-size: 1.3rem;
  text-align: left;
  margin-top: 8px;
}

.wpcf7 form .wpcf7-response-output {
  text-align: left;
  margin: 2em 0 0;
  padding: 0.8em 1em;
  font-size: 1.4rem;
  line-height: 1.6;
}

/* プレイスホルダー */
.place-box {
  position: relative;
}

.js-placeholder {
  position: absolute;
  top: 15px;
  left: 25px;
  opacity: .3;
  text-align: left;
  pointer-events: none;
}

.js-placeholder.hidden {
  display: none;
}

.file-text {
  text-align: left;
  font-size: 1.4rem;
  font-weight: 400;
}

/* サンクスページ */
.thanks-sec__contents {}

.thanks-secEn {
  font-size: 5rem;
  font-weight: bold;
}

.thanks-secJp {
  margin-top: -1rem;
  font-size: 2rem;
}

.contents-text {
  margin-top: 4rem;
  font-size: 2rem;
  line-height: 1.7;
  text-align: center;
}

.contents-link {
  margin-top: 5rem;
}

/* プライバシーポリシー */
.policy-box {
  height: 31.2rem;
  overflow: auto;
  /* border: 1px solid #020202; */
  padding: 1.2rem 1.6rem;
  margin-top: 0.6em;
  background-color: #F4F7F7;
  text-align: left;
}

.policy-box h3 {
  font-weight: 700;
  font-size: 1.7rem;
}

.policy-box p {
  margin-bottom: 1.7rem;
  font-weight: 500;
}

.policy-text {
  text-align: center;
  margin-top: 6rem;
}

/* 404 */
.p404-secEn {
  font-size: 10rem;
  font-weight: bold;
}

.p404-secJp {
  margin-top: -4rem;
  font-size: 4rem;
}

.contents-404text {
  margin-top: 4rem;
  font-size: 2rem;
  line-height: 1.4;
  text-align: center;
}

.contents-link {
  margin-top: 5rem;
}

.mail-link {
  color: #000;
}

#flow {
  padding: 8em 0 4em;
  margin-top: -4em;
}

/* 20240125施工までの流れボタン追加 */
.btns .contents_row8_btn {
  margin: 0.5em 0;
  text-align: left;
}

.btns .contents_row8_btn a {
  font-size: 1.6rem;
  padding: 0.4em 0 0.4em 0.6em;
  box-shadow: none;
}

.btns .contents_row8_btn a::before {
  width: 12%;
  padding-top: 9%;
}

.contents_row8_btns .tel-txt {
  width: 170px;
  display: block;
  pointer-events: none;
  margin-left: 5px;
}

.contents_row8_flex {
  display: flex;
  align-items: center;
  column-gap: 30px;
}

@media screen and (max-width: 640px) {
  .btns .contents_row8_btn {
    margin: -0.5em 0 0;
    text-align: center;
  }

  .btns .contents_row8_btn a {
    font-size: 1.8rem;
    padding: 0.6em 0 0.6em 1.6em;
  }

  .contents_row8_btns .tel-txt {
    padding: 0.6em 1em 1em;
    width: 60%;
    margin: 0 auto;
    pointer-events: all;
  }

  .contents_row8_flex {
    flex-direction: column;
  }
}


/* お客様の声 */
.top-voice{
  background: #F1F5F5;
  padding: 4rem;
  margin-bottom: 8rem;

}

.top-voiceWrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 17px;
}

.top-voiceImg{
  width: 267px;
}

/* よくある質問 */
#question {
  padding: 8em 0 4em;
  margin-top: -4em;
}
