@charset 'UTF-8';
/*******************************
共通
*******************************/
/*フォント*/
.e_font {
  font-family: 'Satoshi', sans-serif;
  font-weight: 400;
  font-style: normal;
}
.e_font500 {
  font-family: 'Satoshi', sans-serif;
  font-weight: 500;
  font-style: normal;
}
.j_font {
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "MS P明朝", serif;
  font-weight: 400;
  font-style: normal;
}
.fw500 {
  font-weight: 500;
}
.fwb {
  font-weight: bold;
}
/*タイトル-マージン*/
.section_title_box {
  margin-bottom: 3rem;
}
.section_title_center {
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .section_title_box {
    margin-bottom: 3.7rem;
  }
}
/*タイトル*/
.section_title {
  font-size: 1.71rem;
  letter-spacing: 0.04em;
  margin-bottom: 0;
}
@media screen and (min-width: 1200px) {
  .section_title {
    font-size: 2rem;
  }
}
/*long-ボタン*/
.section_long_btn_center .section_long_btn {
  margin-left: auto;
  margin-right: auto;
}
.section_long_btn {
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 260px;
  padding-left: 6px;
  padding-bottom: 16px;
  transition: all 0.5s;
  position: relative;
}
a.section_btn:hover {
  opacity: 1;
  transition: all 0.5s;
}
.section_long_btn_arrow {
  display: block;
  width: 46px;
  height: 26px;
  border-radius: 13px;
  position: relative;
  transition: all 0.5s;
}
.section_long_btn_arrow::before {
  content: "";
  display: block;
  width: 12px;
  height: 9px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s;
}
/*||白色-ボタン||*/
.section_long_btn_white {
  color: #fff;
  position: relative;
  /*  border-bottom: 1px solid rgba(255, 255, 255, 1);*/
}
.section_long_btn_white:hover {
  color: #fff;
}
.section_long_btn_white .section_long_btn_arrow {
  background-color: #fff;
}
a:hover.section_long_btn_white .section_long_btn_arrow {
  background-color: #026446;
}
.section_long_btn_white .section_long_btn_arrow::before {
  background-image: url("../images/arrow_black.svg");
  transition: all 0.5s;
}
a:hover.section_long_btn_white .section_long_btn_arrow::before {
  background-image: url("../images/arrow_white.svg");
  transition: all 0.5s;
}
/* 下線 */
.section_long_btn_white::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
  transform: scaleX(1);
  transform-origin: right center; /* ★固定 */
  transition: transform .35s ease;
}
/* hoverで左→右へ消える */
a:hover.section_long_btn_white::after {
  transform: scaleX(0);
}
/*||黒色-ボタン||*/
.section_long_btn_black {
  color: #000;
  position: relative;
}
.section_long_btn_black:hover {
  color: #000;
}
.section_long_btn_black .section_long_btn_arrow {
  background-color: #000;
}
a:hover.section_long_btn_black .section_long_btn_arrow {
  background-color: #026446;
}
.section_long_btn_black .section_long_btn_arrow::before {
  background-image: url("../images/arrow_white.svg");
}
/* 下線 */
.section_long_btn_black::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.5);
  transform: scaleX(1);
  transform-origin: right center; /* ★固定 */
  transition: transform .35s ease;
}
/* hoverで左→右へ消える */
a:hover.section_long_btn_black::after {
  transform: scaleX(0);
}
@media screen and (min-width: 1200px) {
  .section_long_btn {
    font-size: 0.875rem;
    width: 300px;
    padding-bottom: 20px;
  }
  .section_long_btn_arrow {
    width: 50px;
    height: 26px;
  }
  .section_long_btn_arrow::before {
    width: 14px;
    height: 10px;
  }
}
/*short-ボタン*/
.section_short_btn {
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
  position: relative;
}
a.section_short_btn:hover {
  opacity: 1;
  transition: all 0.5s;
}
.section_short_btn_arrow {
  display: block;
  width: 46px;
  height: 26px;
  border-radius: 13px;
  margin-left: 1.7rem;
  position: relative;
  transition: all 0.5s;
  z-index: 0;
}
.section_short_btn_arrow::before {
  content: "";
  display: block;
  width: 12px;
  height: 9px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s;
}
/*||黒色-ボタン||*/
.section_short_btn_black {
  color: #000;
}
.section_short_btn_black .section_short_btn_txt {
  position: relative;
}
.section_short_btn_black .section_short_btn_txt::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  transform: scale(0, 1);
  transform-origin: left bottom;
  transition: 0.3s transform ease-in-out 0s, 0.3s bottom ease-in-out 0s;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
}
a:hover .section_short_btn_txt::after {
  transform: scale(1, 1);
}
.section_short_btn_black .section_short_btn_arrow {
  background-color: #000;
}
a:hover.section_short_btn_black .section_short_btn_arrow {
  color: #000;
  background-color: #026446;
}
.section_short_btn_black .section_short_btn_arrow::before {
  background-image: url("../images/arrow_white.svg");
}
@media screen and (min-width: 1200px) {
  .section_short_btn {
    font-size: 0.875rem;
  }
  .section_short_btn_arrow {
    width: 50px;
    height: 26px;
    margin-left: 1.3rem;
  }
  .section_short_btn_arrow::before {
    width: 14px;
    height: 10px;
  }
}
/*||ページタイトル||*/
.page_section_title_box {
  margin-bottom: 4.2rem;
}
.page_section_title_center {
  text-align: center;
}
.page_section_title span {
  display: block;
  font-size: 2.43rem;
  line-height: 1;
  letter-spacing: 0.04em;
  margin-bottom: 1.7rem;
}
.page_section_title {
  font-size: 1.07rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .page_section_title span {
    font-size: 3rem;
  }
}
@media screen and (min-width: 1200px) {
  .page_section_title_box {
    margin-bottom: 6.5rem;
  }
  .page_section_title span {
    font-size: 3.4375rem;
    margin-bottom: 1.9rem;
  }
  .page_section_title {
    font-size: 1rem;
  }
}
/*******************************
共通
*******************************/
/*横幅*/
.container77-1300 {
  width: 77%;
  margin-left: auto;
  margin-right: auto;
  max-width: 1300px;
}
@media screen and (min-width: 768px) {
  .container77-1300 {
    width: 87%;
  }
}
.container87-1000 {
  width: 87%;
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
}
.container87-1300 {
  width: 87%;
  margin-left: auto;
  margin-right: auto;
  max-width: 1300px;
}
.mb0 {
  margin-bottom: 0 !important;
}
.page_back_baige {
  background-color: #f3f1ed;
}
ul li {
  list-style: none;
}
ul {
  margin-bottom: 0;
}
.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.alignright {
  display: block;
  margin-left: auto;
  margin-right: 0;
}
/* 各メディアごとのマージン設定
--------------------------- */
/* 768px以上用の記述 */
@media screen and (min-width: 768px) {
  .col-md-m20-bottom {
    margin-bottom: 20px;
  }
  .col-md-none {
    display: none;
  }
}
/* 767px以下用の記述 */
@media screen and (max-width: 767px) {
  .col-sm-m20-bottom {
    margin-bottom: 20px;
  }
  .col-sm-none {
    display: none;
  }
}
/* 576px以下用の記述 */
@media screen and (max-width: 576px) {
  .col-xs-m20-bottom {
    margin-bottom: 20px;
  }
  .col-xs-none {
    display: none;
  }
}
/*******************************
パンクズ
*******************************/
#pls {
  display: block;
  font-size: 0.93rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}
#pan {
  color: #969696;
}
#pan a span {
  color: #969696;
}
#pan span {
  color: #000;
}
.page-head_outer #pls {
  display: none;
}
.footer_container #pls {
  display: block;
  width: 87%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  #pls {
    font-size: 0.714rem;
    text-align: right;
  }
  .page-head_outer #pls {
    display: block;
  }
  .footer_container #pls {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  #pls {
    font-size: 0.9375rem;
    margin-bottom: 3rem;
  }
  .pan_line {
    width: 15px;
    height: 11px;
    margin: 0 10px;
  }
}
/*******************************
/* フォーム/テーブル
*******************************/
.form-w {
  max-width: 1000px;
  margin: 0 auto;
  width: 95%;
}
@media screen and (min-width: 992px) {
  .form-w {
    width: 80%;
  }
}
.wpcf7-submit {
  font-size: 1.2em;
  background-color: #000;
  color: #fff;
  border-style: none;
  width: 100%;
  margin-bottom: 30px;
  padding-top: 15px;
  padding-right: 40px;
  padding-bottom: 15px;
  padding-left: 40px;
  border: 1px solid #000;
}
.wpcf7-submit:hover {
  transition: .4s;
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
}
#form {
  max-width: 100%;
  margin-bottom: 40px;
  /* background-color: #FFF;*/
}
#form th span {
  font-size: 0.8em;
  color: #FFF;
  background-color: #C00;
  padding: 3px;
}
#form th {
  padding: 10px;
  width: 30%;
  border-bottom: 1px solid #000;
}
#form td {
  padding: 10px;
  border-bottom: 1px solid #000;
  vertical-align: middle;
  font-weight: normal;
  text-align: left;
}
#form2 tr {
  display: flex;
  flex-wrap: wrap;
}
#form2 tr:first-child th, #form2 tr:first-child td {
  border-top: 1px solid #ccc;
}
#form2 {
  max-width: 100%;
  margin-bottom: 40px;
  background-color: #FFF;
}
#form2 th span {
  font-size: 0.8em;
  color: #FFF;
  background-color: #C00;
  padding: 3px;
}
#form2 th {
  background-color: #f9f9f9;
  padding: 10px;
  width: 30%;
  border-bottom: 1px solid #ccc;
}
#form2 td {
  padding: 10px;
  border-bottom: 1px solid #ccc;
  vertical-align: middle;
  font-weight: normal;
  width: 70%;
}
#form3 {
  max-width: 100%;
  margin-bottom: 40px;
  background-color: #FFF;
}
#form3 tr {
  border-bottom: 1px dotted #bfbfbf;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  display: flex;
}
#form3 th {
  width: 150px;
  color: #FFF;
  text-align: center;
  padding-top: 10px;
}
#form3 th span {
  background-color: #808080;
  display: inline-block;
  width: 150px;
}
#form3 td {
  padding: 10px;
  vertical-align: middle;
  font-weight: normal;
  padding-left: 4rem;
}
#form3 td .tel_txt1 {
  font-size: 1.2rem;
  margin-bottom: 0;
}
#form3 td .tel_txt2 {
  font-size: 2.4rem;
  font-family: 'Manrope', sans-serif;
  line-height: 1;
  display: block;
}
.f-note {
  font-size: 85%;
  color: #ff1414;
}
/* テキストエリアの設定 */
input[type="text"], input[type="email"], input[type="tel"], textarea, select {
  width: 100%;
  color: #000;
  padding: 20px;
  margin: 20px 0 10px;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
input[type="date"] {
  width: 100%;
  color: #282828;
  padding: 20px;
  margin: 0 0 10px;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  background-color: #fff;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus, textarea:focus, select:focus {
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  input[type="date"] {
    margin: 20px 0 10px;
  }
}
@media screen and (min-width: 1200px) {
  input[type="text"], input[type="email"], input[type="tel"], textarea, select {
    padding: 25px;
  }
  input[type="date"] {
    padding: 25px;
  }
}
@media screen and (max-width: 576px) {
  input[type="date"] {
    text-align: left;
    width: 100%;
  }
  input[type="date"]::before {
    content: attr(placeholder);
    width: 100%;
    color: #000;
    /* padding-left: 10px;*/
    white-space: nowrap;
  }
  input[type="date"].has-value::before {
    content: ""; /* 日付が入力されたらプレースホルダーを非表示にする */
    width: 0;
    padding-left: 0;
  }
}
@media only screen and (max-width:479px) {
  /* 479px以下用（スマートフォン用）の記述 */
  #form {
    max-width: 100%;
    margin-bottom: 40px;
  }
  #form th {
    width: 100%;
    display: block;
    border-top: none;
  }
  #form td {
    width: 100%;
    display: block;
    border-top: none;
  }
  /*  #form tr:first-child th {
    border-top: 1px solid #ddd;
  }*/
  #form2 {
    max-width: 100%;
    margin-bottom: 40px;
  }
  #form2 th {
    width: 100%;
  }
  #form2 td {
    width: 100%;
    display: block;
  }
  #form2 tr:first-child td {
    border-top: none;
  }
  #form3 {
    max-width: 100%;
    margin-bottom: 40px;
  }
  #form3 tr {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    flex-direction: column;
  }
  #form3 th {
    width: 50%;
    display: block;
    border-top: none;
  }
  #form3 td {
    width: 100%;
    display: block;
    border-top: none;
    margin-bottom: 0;
    padding-left: 10px;
  }
  #form3 tr:first-child th {
    /*	border-top: 1px solid #ddd;*/
  }
  /* テキストエリアの設定 */
  input[type="text"], input[type="email"], input[type="tel"], textarea, select {
    width: 100%;
    padding: 20px;
    margin: 0 0 10px;
  }
  .wpcf7-submit {
    font-size: 1.2em;
    border-style: none;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
/*******************************
/* イベントテーブル
***************************/
.table th {
  background-color: #f9f9f9;
  border-bottom: 1px solid #CCCCCC;
}
/*******************************
/* プライバシーフレーム
***************************/
.formPrivacy {
  border: 1px solid #CCCCCC;
  background: #fff none repeat scroll 0%;
  height: 150px;
  overflow: scroll;
  max-width: 600px;
  padding: 10px 19px;
  margin: 0 auto 30px;
  text-align: left;
  font-size: 1.0em;
}
/*******************************
/* single.php　アイキャッチ
***************************/
.sgl {
  margin-bottom: 2rem;
  text-align: center;
}
.sgl img {
  overflow: hidden;
}
@media screen and (min-width: 1200px) {
  .sgl {
    margin-bottom: 3rem;
  }
}
/*************************
/* single.php 日付
*************************/
#date span {
  color: #FFF;
  background-color: #A8A8A8;
  font-size: 0.8em;
  padding: 5px;
}
/* single.php ページ送り
-------------------------*/
#next {
  background-color: #f6f6f6;
  padding: 10px;
  margin-top: 30px;
}
.nx_left {
  width: 100%;
  text-align: left;
}
.nx_left a {
  background-color: #FFF;
  color: #000;
  text-decoration: none;
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  background-image: url(../images/left.png);
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 35px;
  transition: all 0.5s;
}
.nx_left a:hover {
  /*
  background-color: #828282;
*/
  background-color: #a6a3a3;
  color: #FFF;
  text-decoration: none;
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  background-image: url(../images/left2.png);
  background-repeat: no-repeat;
  background-position: left center;
  transition: all 0.5s;
}
.nx_right {
  width: 100%;
  text-align: right;
}
.nx_right a {
  background-color: #FFF;
  color: #000;
  text-decoration: none;
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  background-image: url(../images/right.png);
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 35px;
  transition: all 0.5s;
}
.nx_right a:hover {
  /*
  background-color: #828282;
*/
  background-color: #a6a3a3;
  color: #FFF;
  text-decoration: none;
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  background-image: url(../images/right2.png);
  background-repeat: no-repeat;
  background-position: right center;
  transition: all 0.5s;
}
/*--------------------------------
PREV NEXT
---------------------------------*/
#prev_next {
  width: 100%;
  margin: 36px 0 24px;
  padding: 0;
  display: table;
}
#prev_next #prev, #prev_next #next {
  width: 50%;
  padding: 30px 10px 10px;
  border-top: #ccc 1px solid;
  border-bottom: #ccc 1px solid;
  display: table-cell;
  position: relative;
  text-decoration: none;
}
#prev_next #prev p, #prev_next #next p {
  font-size: 90%;
  line-height: 1.5;
}
#prev_next #prev:hover, #prev_next #next:hover {
  background-color: rgba(238, 238, 238, 0.7);
}
#prev_next #prev {
  border-right: #ccc 1px solid;
}
#prev_next #prev_title, #prev_next #next_title {
  font-size: 90%;
  top: -1em;
  position: absolute;
  border: 1px #ccc solid;
  background: #fff;
  text-align: center;
  padding: 3px;
  color: #666;
}
#prev_next #next_title {
  right: 10px;
}
#prev_next #prev img, #prev_next #next img {
  margin: 0 auto;
}
#prev_next #prev_no, #prev_next #next_no {
  width: 50%;
  height: 140px;
  padding: 0 10px;
  display: table-cell;
}
#prev_next #prev_no {
  border-right: #ccc 1px solid;
}
#prev_next_home {
  margin: 0 auto;
  background-color: #1a1a1a;
  border: solid 9px #fff;
  width: 100px;
  height: 100px;
  border-radius: 100px;
  box-shadow: 0 0 0 3px #1a1a1a;
  -webkit-box-shadow: 0 0 0 3px #1a1a1a;
  -moz-box-shadow: 0 0 0 3px #1a1a1a;
  text-align: center;
}
#prev_next_home:hover {
  opacity: 0.7;
}
#prev_next_home i {
  color: #FFF;
  margin: 10px auto;
  font-size: 60px;
}
/*media Queries PCサイズ
----------------------------------------------------*/
@media only screen and (min-width: 780px) {
  /*-- ここから --*/
  /*--------------------------------------
768px PREV NEXT
--------------------------------------*/
  #prev_next #prev, #prev_next #prev::before, #prev_next #prev::after, #prev_next #next, #prev_next #next::before, #prev_next #next::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .3s;
    transition: all .3s;
  }
  #prev_next #prev_title, #prev_next #next_title {
    padding: 3px 10px;
  }
  #prev_next #next_title {
    right: 10px;
  }
  #prev_next #prev img {
    float: left;
    margin-right: 10px
  }
  #prev_next #next img {
    float: right;
    margin-left: 10px;
  }
  /*-- ここまで --*/
}
/*******************************
/* archive tit
*******************************/
.gall_tit {
  font-weight: bold;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.gall_tit a {
  color: #000;
}
/*************
/* 投稿ギャラリー
*************/
.wp-caption-text {
  font-size: 12px;
  color: #999999;
  text-align: center;
}
.gallery {
  margin: 0 -5px;
}
.gallery .gallery-item {
  float: left;
  margin: 0;
  text-align: center;
  width: 25%;
  padding: 5px;
}
.gallery.gallery-columns-2 .gallery-item {
  width: 50%;
}
.gallery.gallery-columns-3 .gallery-item {
  width: 33.33%;
}
.gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery .gallery-caption {
  margin-left: 0;
  margin-bottom: 35px;
  padding-right: 20px;
  padding-left: 20px;
}
/*-----------------------------
wordpressのギャラリースマホ調整
------------------------------*/
@media screen and (max-width: 640px) {
  #gallery-1, #gallery-2, #gallery-3, #gallery-4, #gallery-5, #gallery-6 {
    display: flex;
    flex-wrap: wrap;
  }
  .gallery-columns-3 .gallery-item, .gallery-columns-4 .gallery-item {
    float: none;
    width: 50% !important;
    margin: 0;
  }
  .gallery.gallery-columns-2 .gallery-item, .gallery-columns-3 .gallery-item {
    width: 100%;
  }
  .gallery .gallery-item {
    padding: 3px;
  }
}
/*******************************
/* youtube　gmapレスポンシブ対応
***************************/
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
.ggmap {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
.ggmap iframe, .ggmap object, .ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/*******************************
/* レスポンシブ改行
***************************/
@media screen and (min-width: 576px) {
  .br-pc {
    display: block;
  }
  .br-sp {
    display: none;
  }
}
@media screen and (max-width: 567px) {
  .br-pc {
    display: none;
  }
  .br-sp {
    display: block;
  }
}
/*******************************
/* form
*******************************/
.con_form .wpcf7-list-item {
  display: block;
}
/*******************************
/*関連画像
*******************************/
.related-thumb {
  height: 120px;
}
.related-thumb img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}
.related-title {
  margin: 8px 0;
  color: #000;
  text-align: center;
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
}
@media screen and (min-width: 992px) {
  .related-thumb {
    height: 200px;
  }
}
/*--------------------------------------
archiveページャー
--------------------------------------*/
/*.pagenation:after, .pagenation ul:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
}*/
.pagenation ul {
  margin: 0;
  margin-top: 4rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagenation li {
  float: left;
  list-style: none outside none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 6px;
  margin-bottom: 0;
}
.pagenation li.active {
  color: #fff;
  background-color: #026446;
  cursor: not-allowed;
  position: relative;
}
/*.pagenation li.active::before {
  content: "";
  display: block;
  width: 8px;
  height: 2px;
  background-color: #000;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 5px;
}*/
.pagenation li a {
  background: inherit;
  color: #000;
  text-decoration: none;
}
.pagenation li a:hover {
  text-decoration: none;
}
.pagenation li.active, .pagenation li a {
  font-size: 1.29rem;
  font-family: 'Satoshi', sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.04em;
}
.pagenation li.next a, .pagenation li.prev a {
  display: block;
  width: 46px;
  height: 26px;
  border-radius: 13px;
  background-color: #000;
  position: relative;
  transition: all 0.5s;
}
.pagenation li.next a::before {
  content: "";
  display: block;
  width: 12px;
  height: 9px;
  background-image: url("../images/arrow_white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s;
}
.pagenation li.prev a::before {
  content: "";
  display: block;
  width: 12px;
  height: 9px;
  background-image: url("../images/arrow_white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(180deg);
  transition: all 0.5s;
}
.pagenation li.disabled {
  display: none;
}
/*.pagenation .next, .pagenation .prev {
  display: none;
}*/
@media screen and (min-width: 768px) {
  .pagenation ul {
    margin-top: 2.6rem;
  }
  .pagenation li.active, .pagenation li a {
    font-size: 1.375rem;
  }
}
@media screen and (min-width: 1200px) {
  .pagenation li {
    width: 52px;
    height: 52px;
    margin: 0 11px;
  }
  .pagenation li.next a, .pagenation li.prev a {
    width: 50px;
    height: 26px;
  }
  .pagenation li.next a::before {
    width: 14px;
    height: 10px;
  }
  .pagenation li.next a::after {
    width: 14px;
    height: 10px;
  }
}
/*******************************
/* インフォメーション投稿一覧表示
***************************/
.pg_infomation_pagenation > .page-numbers {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0;
  margin-top: 4rem;
}
.pg_infomation_pagenation .page-numbers li .current {
  color: rgba(0, 0, 0, 1);
  cursor: not-allowed;
  padding: 10px 10px;
  display: inline-block;
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.pg_infomation_pagenation .page-numbers li .current::before {
  content: "";
  display: block;
  width: 8px;
  height: 2px;
  background-color: #000;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 5px;
}
.pg_infomation_pagenation .page-numbers li a {
  /*  background: none repeat scroll 0 0 #fff;*/
  background-color: inherit;
  color: #a0a0a0;
  padding: 10px 10px;
  text-decoration: none;
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.pg_infomation_pagenation .page-numbers li span {
  color: #a0a0a0;
  padding: 10px 10px;
  text-decoration: none;
  display: inline-block;
}
.pg_infomation_pagenation .page-numbers li .current, .pg_infomation_pagenation .page-numbers li a {
  font-size: 1rem;
}
.page-numbers li a:hover {
  text-decoration: none;
}
.pg_infomation_pagenation > .page-numbers li > .prev, .pg_infomation_pagenation > .page-numbers li > .next {
  display: none !important;
}
.pg_infomation_pagenation .page-numbers li span.page-numbers.dots {
  display: none;
}
@media screen and (min-width: 768px) {
  .pg_infomation_pagenation .page-numbers li .current, .pg_infomation_pagenation .page-numbers li a {
    padding: 10px 10px;
  }
}
/***************************************
works_container
***************************************/
.works_container {
  background-color: #f3f1ed;
  padding: 5.2rem 0 5.8rem;
  margin-bottom: 5.3rem;
}
.works_title_wrap {
  margin-bottom: 3.8rem;
}
.works_title_wrap .section_title_box {
  margin-bottom: 0;
}
.works_title_wrap .section_title {
  text-align: center;
}
.works_btn_pc {
  display: none;
}
.works_container .works_block {
  padding-left: 6.5%;
  margin-bottom: 4.2rem;
}
.works_img {
  aspect-ratio: 4 / 3;
  margin-bottom: 2.2rem;
}
.works_img img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}
.works_category_name {
  font-size: 0.86rem;
  color: #fff;
  padding: 2px 1.9rem;
  background-color: #1b2024;
  border-radius: 13px;
  display: inline-block;
  text-align: center;
  margin-bottom: 1.1rem;
}
.works_title {
  font-size: 1.14rem;
  letter-spacing: 0.04em;
  color: #1b2024;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .works_container {
    padding: 7.2rem 0 9rem;
    margin-bottom: 8rem;
  }
  .works_container .works_block {
    margin-bottom: 0;
  }
  .works_title_wrap {
    display: flex;
    align-items: center;
    width: 87%;
    margin: 0 auto 4rem;
  }
  .works_title_wrap .section_title_box {
    margin-right: 8rem;
  }
  .works_title_wrap .section_title {
    text-align: left;
  }
  .works_btn_pc {
    display: block;
  }
  .works_btn_sp {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .works_container {
    padding: 8.2rem 0 10rem;
    margin-bottom: 9.8rem;
  }
  .works_title_wrap {
    width: 85.5%;
    margin-bottom: 4.3rem;
  }
  .works_title_wrap .section_title_box {
    margin-right: 9.5rem;
  }
  .works_container .works_block {
    padding-left: 7.25%;
  }
  .works_img {
    margin-bottom: 2rem;
  }
  .works_category_name {
    font-size: 0.875rem;
  }
  .works_title {
    font-size: 1.125rem;
  }
}
/*||works-swiper||*/
.works_other_wrap {
  width: 93.5%;
  margin-top: 4.2rem;
}
.works_container .swiper-scrollbar {
  width: 100%;
  display: block;
  height: 2px;
  border-radius: 3px;
  background: #fff;
  overflow: visible;
}
.works_container .swiper-scrollbar-drag {
  position: relative;
  background-color: #1b2024 !important;
  opacity: 1 !important;
  height: 100% !important;
  border-radius: 3px;
  z-index: 1;
}
@media screen and (min-width: 1200px) {
  .works_other_wrap {
    width: 92.25%;
    margin-top: 4.85rem;
  }
}
/***************************************
施工事例一覧 
***************************************/
/*||カテゴリー名||*/
.arwo_category_wrap {
  width: 87%;
  margin: 0 auto 3rem;
}
.arwo_category_wrap > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.arwo_category_wrap > ul > li {
  width: 48%;
  display: inline-block;
  text-align: center;
}
.arwo_category_wrap > ul > li:first-child {
  width: 100%;
  margin-bottom: 1rem;
}
.arwo_category_name a {
  display: block;
  color: #000;
  padding: 2px 1.9rem;
  border-radius: 45px;
  border: 1px solid rgba(27, 32, 36, 0.75);
  transition: all 0.5s;
}
.arwo_category_name a:hover {
  color: #fff;
  background-color: #026446;
  border: 1px solid rgba(2, 100, 70, 0.75);
  transition: all 0.5s;
}
.arwo_category_name_active a {
  color: #fff;
  background-color: #026446;
  border: 1px solid rgba(2, 100, 70, 0.75);
}
.arwo_category_name span {
  display: none;
}
@media screen and (min-width: 768px) {
  .arwo_category_wrap > ul {
    justify-content: flex-start;
  }
  .arwo_category_wrap > ul > li {
    width: auto;
    margin-right: 15px;
  }
  .arwo_category_wrap > ul > li:first-child {
    width: auto;
    margin-bottom: 0;
  }
  .arwo_category_wrap > ul > li:last-child {
    margin-right: 0;
  }
  .arwo_category_name a {
    padding: 2px 2rem;
  }
  .arwo_category_name span {
    display: inline;
  }
}
@media screen and (min-width: 1200px) {
  .arwo_category_wrap {
    width: 85.5%;
    margin-bottom: 7.4rem;
  }
}
/*||内容||*/
.archive_works_container .works_swiper-wrapper .works_swiper-slide {
  margin-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .archive_works_container .works_swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 6%;
  }
  .archive_works_container .works_swiper-wrapper .works_swiper-slide {
    width: calc((100% - 6%) / 2);
  }
}
@media screen and (min-width: 1200px) {
  .archive_works_container .works_swiper-wrapper .works_swiper-slide {
    margin-bottom: 6rem;
  }
  .archive_works_container .works_title {
    font-size: 1.375rem;
  }
}
/***************************************
施工事例詳細
***************************************/
.page-head_outer_siwo {
  margin-bottom: 3.8rem;
}
@media screen and (min-width: 768px) {
  .page-head_outer_siwo {
    margin-bottom: 5.8rem;
  }
}
@media screen and (min-width: 1200px) {
  .page-head_outer_siwo {
    margin-bottom: 6.9rem;
  }
}
.siwo_top_block {
  width: 87%;
  margin: 0 auto 5.55rem;
  max-width: 1000px;
}
.siwo_top_title {
  font-size: 1.64rem;
  letter-spacing: 0.05em;
  line-height: 1.56;
  text-align: center;
  margin-bottom: 2rem;
}
.siwo_top_txt {
  letter-spacing: 0.05em;
  line-height: 1.78;
  text-align: justify;
}
@media screen and (min-width: 992px) {
  .siwo_top_block {
    width: 100%;
  }
  .siwo_top_title {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1200px) {
  .siwo_top_title {
    font-size: 2.125rem;
    letter-spacing: 0.08em;
    margin-bottom: 3rem;
  }
  .siwo_top_txt {
    letter-spacing: 0.06em;
    line-height: 2;
  }
}
/*||siwo_top_slider_block||*/
.siwo_top_slider_block {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 5.7rem;
}
.siwo_top_slider {
  padding-bottom: 3.2rem;
}
.siwo_top_slider_img {
  width: calc(100% - 10px);
  margin: 0 auto;
  aspect-ratio: 1 / 1;
}
.siwo_top_slider_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.siwo_top_slider .slick-prev, .siwo_top_slider .slick-next {
  z-index: 100;
  top: auto;
  bottom: 0;
  width: 46px;
  height: 26px;
  border-radius: 13px;
  background-color: #026446;
}
.siwo_top_slider .slick-prev {
  left: calc(50% - 34px);
  transform: translateX(-50%);
}
.siwo_top_slider .slick-prev::before {
  content: "";
  display: block;
  width: 12px;
  height: 9px;
  background-image: url("../images/arrow_white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(180deg);
  z-index: 101;
}
.siwo_top_slider .slick-next {
  left: calc(50% + 34px);
  transform: translateX(-50%);
}
.siwo_top_slider .slick-next::before {
  content: "";
  display: block;
  width: 12px;
  height: 9px;
  background-image: url("../images/arrow_white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 101;
}
@media screen and (min-width: 768px) {
  .siwo_top_slider_block {
    margin-bottom: 7.7rem;
  }
}
@media screen and (min-width: 1200px) {
  .siwo_top_slider_block {
    margin-bottom: 10rem;
  }
  .siwo_top_slider {
    padding-bottom: 0;
    margin-left: -10px;
    margin-right: -10px;
  }
  .siwo_top_slider_img {
    width: calc(100% - 20px);
  }
  .siwo_top_slider .slick-prev, .siwo_top_slider .slick-next {
    bottom: 50%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    transform: translate(0%, 50%);
  }
  .siwo_top_slider .slick-prev {
    left: -6.4%;
  }
  .siwo_top_slider .slick-prev::before {
    width: 14px;
    height: 10px;
  }
  .siwo_top_slider .slick-next {
    left: auto;
    right: -6.4%;
  }
  .siwo_top_slider .slick-next::before {
    width: 14px;
    height: 10px;
  }
}
@media screen and (min-width: 1500px) {
  .siwo_top_slider .slick-prev {
    left: -9.4%;
  }
  .siwo_top_slider .slick-next {
    right: -9.4%;
  }
}
/*|||||siwo_back_color|||||*/
.siwo_back_color {
  background-color: #f3f1ed;
  padding: 5.2rem 0 5.4rem;
  margin-bottom: 5.7rem;
}
@media screen and (min-width: 768px) {
  .siwo_back_color {
    padding: 7.2rem 0 7.4rem;
    margin-bottom: 7.7rem;
  }
}
@media screen and (min-width: 1200px) {
  .siwo_back_color {
    padding: 9.5rem 0 9.7rem;
    margin-bottom: 9.9rem;
  }
}
/*|||||siwo_back_color-END|||||*/
.siwo_story_block {
  width: 87%;
  margin: 0 auto 3.2rem;
  max-width: 1000px;
}
.siwo_story_head {
  font-size: 1.71rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid rgba(0, 0, 0, 1);
  margin-bottom: 1.7rem;
}
.siwo_story_txt {
  letter-spacing: 0.05em;
  line-height: 1.78;
  text-align: justify;
}
@media screen and (min-width: 1200px) {
  .siwo_story_block {
    margin-bottom: 4.6rem;
  }
  .siwo_story_head {
    font-size: 2rem;
    padding-bottom: 1.2rem;
    margin-bottom: 2.5rem;
  }
  .siwo_story_txt {
    letter-spacing: 0.06em;
    line-height: 2;
  }
}
/*||siwo_before_slider_block||*/
.siwo_before_head_wrap {
  width: 87%;
  margin: 0 auto 2rem;
}
.siwo_before_head {
  color: #fff;
  padding: 2px 2.9rem;
  background-color: #1b2024;
  border-radius: 40px;
  display: inline-block;
  text-align: center;
  margin-bottom: 0;
}
.siwo_before_slider_block {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}
.siwo_before_slider {
  padding-bottom: 3.2rem;
}
.siwo_before_slider_img {
  width: calc(100% - 10px);
  margin: 0 auto;
  aspect-ratio: 150 / 109;
}
.siwo_before_slider_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.siwo_before_slider .slick-prev, .siwo_before_slider .slick-next {
  z-index: 100;
  top: auto;
  bottom: 0;
  width: 46px;
  height: 26px;
  border-radius: 13px;
  background-color: #026446;
}
.siwo_before_slider .slick-prev {
  left: calc(50% - 34px);
  transform: translateX(-50%);
}
.siwo_before_slider .slick-prev::before {
  content: "";
  display: block;
  width: 12px;
  height: 9px;
  background-image: url("../images/arrow_white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(180deg);
  z-index: 101;
}
.siwo_before_slider .slick-next {
  left: calc(50% + 34px);
  transform: translateX(-50%);
}
.siwo_before_slider .slick-next::before {
  content: "";
  display: block;
  width: 12px;
  height: 9px;
  background-image: url("../images/arrow_white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 101;
}
@media screen and (min-width: 992px) {
  .siwo_before_slider_block {
    width: 87%;
    margin-bottom: 2.6rem;
  }
  .siwo_before_head_wrap {
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .siwo_before_head_wrap {
    width: 100%;
    margin-bottom: 2.4rem;
  }
  .siwo_before_head {
    padding: 2px 2rem;
  }
  .siwo_before_slider {
    padding-bottom: 0;
    margin-left: -16px;
    margin-right: -16px;
  }
  .siwo_before_slider_img {
    width: calc(100% - 32px);
  }
  .siwo_before_slider .slick-prev, .siwo_before_slider .slick-next {
    bottom: 50%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    transform: translate(0%, 50%);
  }
  .siwo_before_slider .slick-prev {
    left: -6.4%;
  }
  .siwo_before_slider .slick-prev::before {
    width: 14px;
    height: 10px;
  }
  .siwo_before_slider .slick-next {
    left: auto;
    right: -6.4%;
  }
  .siwo_before_slider .slick-next::before {
    width: 14px;
    height: 10px;
  }
}
@media screen and (min-width: 1500px) {
  .siwo_before_slider .slick-prev {
    left: -9.4%;
  }
  .siwo_before_slider .slick-next {
    right: -9.4%;
  }
}
/*||siwo_before_txt||*/
.siwo_before_txt {
  letter-spacing: 0.05em;
  line-height: 1.78;
  text-align: justify;
  width: 87%;
  margin: 0 auto;
  max-width: 1000px;
}
@media screen and (min-width: 1200px) {
  .siwo_before_txt {
    letter-spacing: 0.06em;
    line-height: 2;
  }
}
/*||siwo_before_down_arrow||*/
.siwo_before_down_arrow {
  position: relative;
  padding-bottom: 30px;
  margin: 5.4rem auto 5.8rem;
}
.siwo_before_down_arrow::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-right: 63px solid transparent;
  border-left: 63px solid transparent;
  border-top: 30px solid #b4b4b4;
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translate(50%, 0%);
}
@media screen and (min-width: 1200px) {
  .siwo_before_down_arrow {
    margin: 4.7rem auto 4.9rem;
  }
}
/*||siwo_after_block||*/
.siwo_after_block {
  margin: 0 auto 5.1rem;
  max-width: 1000px;
}
.siwo_after_block .siwo_before_head {
  background-color: #026446;
}
.siwo_after_block > ul > li {
  margin-bottom: 4rem;
}
.siwo_after_block > ul > li:last-child {
  margin-bottom: 0;
}
.siwo_after_1col {
  margin-bottom: 2rem;
}
.siwo_after_2col {
  margin-bottom: 2rem;
}
.siwo_after_2col .siwo_after_2col_unit:first-child {
  margin-bottom: 10px;
}
.siwo_after_img img {
  max-width: 100%;
  max-height: 100%;
}
.siwo_after_txt {
  letter-spacing: 0.05em;
  line-height: 1.78;
  text-align: justify;
  width: 87%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .siwo_after_block {
    width: 87%;
    margin-bottom: 7rem;
  }
  .siwo_after_block .siwo_before_head_wrap {
    width: 100%;
  }
  .siwo_after_2col {
    display: flex;
    gap: 20px;
  }
  .siwo_after_2col_unit {
    width: calc((100% - 20px) / 2);
  }
  .siwo_after_2col .siwo_after_2col_unit:first-child {
    margin-bottom: 0;
  }
  .siwo_after_txt {
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .siwo_after_block {
    margin-bottom: 9.7rem;
  }
  .siwo_after_block > ul > li {
    margin-bottom: 4.7rem;
  }
  .siwo_after_txt {
    letter-spacing: 0.06em;
    line-height: 2;
  }
}
/*||siwo_page_title||*/
.siwo_page_title {
  font-size: 1.29rem;
  letter-spacing: 0.04em;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(0, 0, 0, 1);
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 1200px) {
  .siwo_page_title {
    font-size: 1.375rem;
    padding-top: 1.6rem;
    margin-bottom: 3.3rem;
  }
}
/*||siwo_archi_block||*/
.siwo_archi_block {
  width: 87%;
  margin: 0 auto;
  max-width: 1000px;
}
.siwo_archi_unit01 {
  margin-bottom: 2.2rem;
}
.siwo_archi_unit01 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.siwo_archi_name {
  font-size: 1.29rem;
  letter-spacing: 0.14em;
  margin-bottom: 0.8rem;
}
.siwo_archi_office {
  letter-spacing: 0.05em;
  margin-bottom: 0;
}
.siwo_archi_txt {
  letter-spacing: 0.05em;
  line-height: 1.78;
  text-align: justify;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .siwo_archi_item {
    display: flex;
    justify-content: space-between;
  }
  .siwo_archi_unit01 {
    width: 46%;
    margin-bottom: 0;
  }
  .siwo_archi_unit02 {
    width: 48%;
  }
}
@media screen and (min-width: 1200px) {
  .siwo_archi_name {
    font-size: 1.75rem;
    letter-spacing: 0.08em;
    margin-bottom: 0.3rem;
  }
  .siwo_archi_txt {
    line-height: 1.625;
    margin-top: 3rem;
  }
}
/*||siwo_out_block||*/
.siwo_out_block {
  width: 87%;
  margin: 0 auto 5.8rem;
  max-width: 1000px;
}
.siwo_out_table {
  margin-bottom: 4rem;
}
.siwo_out_table table {
  width: 100%;
}
.siwo_out_table tr {
  display: flex;
  flex-direction: column;
  border-collapse: collapse;
}
.siwo_out_table th {
  font-size: 0.93rem;
  width: 100%;
  padding: 13px 20px;
  background-color: #fafafa;
  font-weight: 400;
  border-bottom: 1px solid rgba(220, 220, 220, 0.6);
}
.siwo_out_table tr:first-child th {
  border-top: 1px solid rgba(220, 220, 220, 0.6);
}
.siwo_out_table td {
  font-size: 0.93rem;
  width: 100%;
  padding: 13px 20px;
  font-weight: 400;
  border-bottom: 1px solid rgba(220, 220, 220, 0.6);
}
@media screen and (min-width: 768px) {
  .siwo_out_block {
    margin-bottom: 7rem;
  }
  .siwo_out_table tbody {
    display: flex;
    flex-wrap: wrap;
  }
  .siwo_out_table tr {
    width: 50%;
    flex-direction: row;
  }
  .siwo_out_table th {
    display: block;
    width: 40%;
    text-align: center;
    align-content: center;
    border-right: 1px solid rgba(220, 220, 220, 0.6);
  }
  .siwo_out_table tr:nth-child(2) th {
    border-top: 1px solid rgba(220, 220, 220, 0.6);
  }
  .siwo_out_table td {
    display: block;
    width: 60%;
  }
  .siwo_out_table tr:first-child td {
    border-top: 1px solid rgba(220, 220, 220, 0.6);
  }
  .siwo_out_table tr:nth-child(2) td {
    border-top: 1px solid rgba(220, 220, 220, 0.6);
  }
  .siwo_out_table tr:nth-child(2n + 1) td {
    border-right: 1px solid rgba(220, 220, 220, 0.6);
  }
}
@media screen and (min-width: 1200px) {
  .siwo_out_block {
    margin-bottom: 6.2rem;
  }
  .siwo_out_block .siwo_page_title {
    margin-bottom: 3rem;
  }
  .siwo_out_table th {
    font-size: 0.875rem;
    width: 36%;
    padding: 15px 30px;
  }
  .siwo_out_table td {
    font-size: 0.875rem;
    width: 64%;
    padding: 15px 4rem;
  }
}
/*||RENOVATION POINTS||*/
.siwo_points_block {
  width: 87%;
  margin: 0 auto;
  max-width: 1000px;
}
@media screen and (min-width: 768px) {
  .siwo_out_table tr.siwo_out_table_w100 {
    width: 100%;
  }
  .siwo_out_table tr.siwo_out_table_w100 th {
    width: 20%;
  }
  .siwo_out_table tr.siwo_out_table_w100 td {
    border-right: none !important;
    width: 80%;
  }
}
@media screen and (min-width: 1200px) {
  .siwo_points_block .siwo_page_title {
    margin-bottom: 3rem;
  }
  .siwo_out_table tr.siwo_out_table_w100 th {
    width: 18%;
  }
  .siwo_out_table tr.siwo_out_table_w100 td {
    border-right: none !important;
    width: 82%;
  }
}
/*||siwo_bottom_block||*/
.siwo_bottom_block {
  width: 82%;
  margin: 5.8rem auto 0;
}
.siwo_bottom_btn {
  height: 54px;
  border-radius: 60px;
  max-width: 360px;
  padding-left: 3.5rem;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 0;
  transition: all 0.5s;
  margin-bottom: 20px;
}
.siwo_bottom_block .siwo_bottom_btn:last-child {
  margin-bottom: 0;
}
.siwo_bottom_btn::before {
  content: "";
  display: block;
  width: 14px;
  height: 10px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translate(0%, -50%);
  transition: all 0.5s;
}
.siwo_bottom_btn01 {
  color: #fff;
  background-color: #000;
  border: 1px solid rgba(0, 0, 0, 0.75);
}
.siwo_bottom_btn01:hover {
  color: #000;
  background-color: #fff;
}
.siwo_bottom_btn01::before {
  background-image: url("../images/arrow_white.svg");
}
.siwo_bottom_btn01:hover::before {
  background-image: url("../images/arrow_black.svg");
}
.siwo_bottom_btn02 {
  color: #fff;
  background-color: #026446;
  border: 1px solid rgba(2, 100, 70, 0.75);
}
.siwo_bottom_btn02:hover {
  color: #026446;
  background-color: #fff;
}
.siwo_bottom_btn02::before {
  background-image: url("../images/arrow_white.svg");
}
.siwo_bottom_btn02:hover::before {
  background-image: url("../images/arrow_green.svg");
}
@media screen and (min-width: 768px) {
  .siwo_bottom_block {
    display: flex;
    justify-content: center;
    gap: 3%;
  }
  .siwo_bottom_btn {
    width: calc((100% - 3%) / 2);
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1200px) {
  .siwo_bottom_block {
    margin-top: 7.3rem;
  }
  .siwo_bottom_btn {
    font-size: 0.875rem;
    height: 65px;
  }
}
/***************************************
event_container
***************************************/
.event_container {
  margin-bottom: 5.7rem;
}
.event_unit01 {
  margin-bottom: 1.8rem;
}
.event_unit01 .section_title_box {
  margin-bottom: 0;
}
.event_unit01 .section_title {
  text-align: center;
}
.event_btn_pc {
  display: none;
}
.event_heading_wrap {
  width: 77%;
  margin: 0 auto 4.1rem;
}
.event_heading {
  line-height: 1.57;
  text-align: justify;
  margin-bottom: 0;
}
.event_container .event_block {
  padding-left: 11.5%;
  margin-bottom: 4.2rem;
}
.event_item {
  display: block;
  color: #000;
  border-top: 1px solid rgba(0, 0, 0, 0.5);
  padding-top: 1rem;
}
.event_item:hover {
  color: #000;
}
.event_category_name {
  font-size: 1.07rem;
  margin-bottom: 1.1rem;
}
.event_img {
  aspect-ratio: 39 / 29;
  margin-bottom: 1.7rem;
  position: relative;
}
.event_img img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}
.event_img_end {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 9;
}
.event_img_end_txt {
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 10;
  color: #fff;
  text-align: center;
  margin-bottom: 0;
}
.event_title {
  font-size: 1.14rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}
.event_detail {
  display: flex;
  font-size: 0.86rem;
}
.event_detail span {
  white-space: nowrap;
}
.event_detail_wrap .event_detail {
  margin-bottom: 0.2rem;
}
.event_detail_wrap .event_detail:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .event_container {
    margin-bottom: 9.7rem;
  }
  .event_inner {
    width: 87%;
    margin: 0 auto 4rem;
  }
  .event_heading {
    font-size: 0.9375rem;
    line-height: 1.53;
    letter-spacing: 0.12rem;
    text-align: center;
  }
  .event_container .event_block {
    padding-left: 0;
  }
  .event_slider .event_slider_wrapper {
    display: flex;
    gap: 4%;
  }
  .event_slider .event_slider_slide {
    width: calc((100% - 8%) / 3);
  }
}
@media screen and (min-width: 1200px) {
  .event_category_name {
    font-size: 1.0625rem;
    margin-bottom: 1.6rem;
  }
  .event_title {
    font-size: 1.125rem;
    margin-bottom: 1.4rem;
  }
  .event_detail {
    font-size: 0.875rem;
  }
  .event_detail span {
    margin-right: 3px;
  }
}
@media screen and (min-width: 1500px) {
  .event_inner {
    display: flex;
    width: 85.5%;
  }
  .event_unit01 {
    width: 17.5%;
    margin-bottom: 0;
  }
  .event_unit01 .section_title {
    text-align: left;
  }
  .event_unit02 {
    width: 83.5%;
  }
  .event_heading_wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4.5rem;
  }
  .event_heading {
    text-align: left;
  }
  .event_btn_pc {
    display: block;
  }
  .event_btn_sp {
    display: none;
  }
}
/*swiper-btn*/
.event_arrow {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 1);
  background-color: #026446;
  position: relative;
}
.event_arrow_prev {
  position: absolute;
  top: 44.3%;
  left: 4.3%;
  transform: translate(0%, -50%);
  z-index: 10;
  opacity: 1;
  transition: all 0.5s;
}
.event_arrow_prev.swiper-button-disabled {
  opacity: 0;
  transition: all 0.5s;
}
.event_arrow_prev::before {
  content: "";
  display: block;
  width: 6px;
  height: 9px;
  background-image: url("../images/prev_arrow_white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.event_arrow_next {
  position: absolute;
  top: 44.3%;
  left: auto;
  right: 4.3%;
  transform: translate(0%, -50%);
  z-index: 10;
  opacity: 1;
  transition: all 0.5s;
}
.event_arrow_next.swiper-button-disabled {
  opacity: 0;
  transition: all 0.5s;
}
.event_arrow_next::before {
  content: "";
  display: block;
  width: 6px;
  height: 9px;
  background-image: url("../images/next_arrow_white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .event_arrow {
    display: none;
  }
}
/***************************************
イベント一覧
***************************************/
.archive_event_container .event_swiper_wrapper .event_slider_slide {
  margin-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .archive_event_container .event_swiper_wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 4%;
  }
  .archive_event_container .event_swiper_wrapper .event_slider_slide {
    width: calc((100% - 4%) / 2);
  }
}
@media screen and (min-width: 992px) {
  .archive_event_container .event_swiper_wrapper .event_slider_slide {
    width: calc((100% - 8%) / 3);
    margin-bottom: 4.8rem;
  }
}
/***************************************
イベント詳細
***************************************/
.siev_top_title {
  font-size: 1.29rem;
  letter-spacing: 0;
  text-align: center;
  width: 87%;
  margin: 0 auto 3.5rem;
}
.siev_eye_img {
  margin: 0 auto 5rem;
  max-width: 1000px;
}
.siev_eye_img img {
  height: 100%;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .siev_top_title {
    font-size: 1.4rem;
    margin-bottom: 4rem;
  }
  .siev_eye_img {
    width: 87%;
  }
}
@media screen and (min-width: 1200px) {
  .siev_top_title {
    font-size: 1.625rem;
    letter-spacing: 0.02em;
    margin-bottom: 4.6rem;
  }
}
/*||イベント-テーブル||*/
.siev_info_block {
  width: 87%;
  margin: 0 auto 2rem;
  max-width: 1000px;
}
.siev_info_head {
  font-size: 1.29rem;
  letter-spacing: 0.04em;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(0, 0, 0, 1);
  margin-bottom: 2.3rem;
}
.siev_info_table {
  margin-bottom: 4.5rem;
}
.siev_info_table tr {
  color: #000;
  display: flex;
  flex-direction: column;
}
.siev_info_table th {
  font-weight: 400;
  width: 100%;
  padding: 24px 0 6px;
}
.siev_info_table tr:first-child th {
  border-top: 1px solid rgba(220, 220, 220, 0.6);
}
.siev_info_table td {
  font-weight: 400;
  width: 100%;
  padding: 6px 0 24px;
  border-bottom: 1px solid rgba(220, 220, 220, 0.6);
}
@media screen and (min-width: 768px) {
  .siev_info_table tr {
    flex-direction: row;
  }
  .siev_info_table th {
    width: 18%;
    padding: 29px 0;
    border-bottom: 1px solid rgba(220, 220, 220, 0.6);
  }
  .siev_info_table tr:first-child td {
    border-top: 1px solid rgba(220, 220, 220, 0.6);
  }
  .siev_info_table td {
    width: 82%;
    padding: 29px 0;
  }
}
@media screen and (min-width: 1200px) {
  .siev_info_table {
    margin-bottom: 5rem;
  }
  .siev_info_head {
    font-size: 1.375rem;
    padding-top: 1.6rem;
    margin-bottom: 3.1rem;
  }
  .siev_info_table tr {
    font-size: 0.9375rem;
  }
}
/*||info-ボタン||*/
.siev_tel_block {
  width: 87%;
  padding-bottom: 5.8rem;
  border-bottom: 1px solid rgba(0, 0, 0, 1);
  margin: 0 auto 3.2rem;
  max-width: 1000px;
}
.siev_tel_btn {
  color: #fff;
  background-color: #026446;
  border: 1px solid rgba(2, 100, 70, 0.75);
  height: 54px;
  border-radius: 60px;
  width: 95%;
  margin: 0 auto;
  max-width: 360px;
  padding-left: 3.5rem;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 0;
  transition: all 0.5s;
  margin-bottom: 2.6rem;
}
.siev_tel_btn::before {
  content: "";
  display: block;
  width: 14px;
  height: 10px;
  background-repeat: no-repeat;
  background-image: url("../images/arrow_white.svg");
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translate(0%, -50%);
  transition: all 0.5s;
}
.siev_tel_btn:hover {
  color: #026446;
  background-color: #fff;
}
.siev_tel_btn:hover::before {
  background-image: url("../images/arrow_green.svg");
}
.siev_tel_head {
  text-align: center;
  margin-bottom: 1rem;
}
.siev_tel_box {
  display: flex;
  align-items: center;
  justify-content: center;
}
.siev_tel_img {
  width: 40px;
}
.siev_tel_number {
  display: block;
  font-size: 1.86rem;
  line-height: 1;
  color: #000;
  margin-left: 10px;
}
@media screen and (min-width: 992px) {
  .siev_tel_block {
    padding-bottom: 4.8rem;
    margin-bottom: 4.5rem;
  }
  .siev_tel_btn {
    font-size: 0.875rem;
    height: 65px;
    margin-bottom: 2.7rem;
  }
}
@media screen and (min-width: 1200px) {
  .siev_tel_block {
    padding-bottom: 7.5rem;
    margin-bottom: 4.6rem;
  }
  .siev_tel_head {
    font-size: 0.9375rem;
    margin-bottom: 1.2rem;
  }
  .siev_tel_img {
    width: 46px;
  }
  .siev_tel_number {
    font-size: 2rem;
    letter-spacing: 0.04em;
    margin-left: 15px;
  }
}
/*||siev_subhead_txt||*/
.siev_subhead_txt {
  line-height: 1.64;
  letter-spacing: 0.08em;
  width: 87%;
  margin: 0 auto 4rem;
  max-width: 1000px;
}
@media screen and (min-width: 768px) {
  .siev_subhead_txt {
    text-align: center;
  }
}
@media screen and (min-width: 1200px) {
  .siev_subhead_txt {
    font-size: 1.25rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
    margin-bottom: 6rem;
  }
}
/*||siev_subhead_img||*/
.siev_subhead_img {
  width: 87%;
  margin: 0 auto 4.4rem;
  max-width: 1000px;
}
.siev_subhead_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 1200px) {
  .siev_subhead_img {
    margin-bottom: 5rem;
  }
}
/*||event詳細-繰り返し内容||*/
.siev_repeat_block {
  width: 87%;
  margin: 0 auto 5.7rem;
  max-width: 1000px;
}
.siev_repeat_img {
  margin-bottom: 2rem;
}
.siev_repeat_img img {
  /*  width: 100%;
  height: 100%;*/
  max-width: 100%;
  object-fit: cover;
}
.siev_repeat_block > ul > li {
  margin-bottom: 5rem;
}
.siev_repeat_block > ul > li:last-child {
  margin-bottom: 0;
}
.siev_repeat_title {
  font-size: 1.43rem;
  letter-spacing: 0.01em;
  line-height: 1.4;
  padding: 3px 0 3px 12px;
  border-left: 2px solid #000;
  margin-bottom: 2.1rem;
}
.siev_repeat_txt {
  line-height: 1.78;
  letter-spacing: 0.02em;
}
.siev_repeat_btn {
  color: #fff;
  background-color: #026446;
  border: 1px solid rgba(2, 100, 70, 0.75);
  height: 54px;
  border-radius: 60px;
  width: 95%;
  margin: 0 auto;
  max-width: 360px;
  padding-left: 3.5rem;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 0;
  transition: all 0.5s;
  margin-top: 2.6rem;
}
.siev_repeat_btn::before {
  content: "";
  display: block;
  width: 14px;
  height: 10px;
  background-repeat: no-repeat;
  background-image: url("../images/arrow_white.svg");
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translate(0%, -50%);
  transition: all 0.5s;
}
.siev_repeat_btn:hover {
  color: #026446;
  background-color: #fff;
}
.siev_repeat_btn:hover::before {
  background-image: url("../images/arrow_green.svg");
}
@media screen and (min-width: 1200px) {
  .siev_repeat_block {
    margin-bottom: 8.7rem;
  }
  .siev_repeat_block > ul > li {
    margin-bottom: 7.2rem;
  }
  .siev_repeat_img {
    margin-bottom: 3.2rem;
  }
  .siev_repeat_title {
    font-size: 1.625rem;
    letter-spacing: 0.02em;
    padding: 3px 0 3px 18px;
    margin-bottom: 2.8rem;
  }
  .siev_repeat_txt {
    font-size: 1.125rem;
    line-height: 1.55;
  }
  .siev_repeat_btn {
    font-size: 0.875rem;
    height: 65px;
    margin-top: 3.7rem;
  }
}
/*||本文||*/
.siev_contents_block {
  width: 87%;
  margin: 0 auto 4.4rem;
  max-width: 1000px;
}
.siev_contents_block h2 {
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "MS P明朝", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.43rem;
  letter-spacing: 0.01em;
  line-height: 1.4;
  padding: 3px 0 3px 12px;
  border-left: 2px solid #000;
  margin-bottom: 2.1rem;
}
.siev_contents_block h3 {
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "MS P明朝", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.3rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 1);
  margin-bottom: 1.7rem;
}
.siev_contents_block h4 {
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "MS P明朝", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.29rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(150, 150, 150, 0.25);
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 1200px) {
  .siev_contents_block {
    margin-bottom: 5rem;
  }
  .siev_contents_block h2 {
    font-size: 1.625rem;
    letter-spacing: 0.02em;
    padding: 3px 0 3px 18px;
    margin-bottom: 2rem;
  }
  .siev_contents_block h3 {
    font-size: 1.5rem;
    padding-bottom: 1.2rem;
    margin-bottom: 2.5rem;
  }
  .siev_contents_block h4 {
    font-size: 1.375rem;
    padding-bottom: 1rem;
    margin-bottom: 2.3rem;
  }
}
/*||よくあるご質問||*/
.siev_faq_block {
  width: 87%;
  margin: 0 auto;
  max-width: 1000px;
}
.siev_faq_head {
  font-size: 1.43rem;
  letter-spacing: 0.01em;
  line-height: 1.4;
  padding: 3px 0 3px 12px;
  border-left: 2px solid #000;
  margin-bottom: 2.6rem;
}
.siev_faq_repeat_list > ul > li {
  padding: 1.5rem 0 2rem;
  border-bottom: 1px solid rgba(150, 150, 150, 0.25);
}
.siev_faq_repeat_list > ul > li:first-child {
  border-top: 1px solid rgba(150, 150, 150, 0.25);
}
.siev_faq_title_wrap {
  color: #000;
}
.siev_faq_title {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.siev_faq_title span {
  font-size: 1.43rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #000;
  border-radius: 50%;
}
.siev_faq_title_right {
  font-size: 1.07rem;
  letter-spacing: 0;
  line-height: 1.4;
  padding-top: 7px;
  padding-left: 4px;
  margin-bottom: 0;
}
.siev_faq_txt {
  display: flex;
  align-items: flex-start;
}
.siev_faq_txt span {
  font-size: 1.43rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #000;
}
.siev_faq_txt_right {
  font-size: 1rem;
  letter-spacing: 0.02;
  line-height: 1.42;
  padding-top: 6px;
  padding-left: 4px;
}
.siev_faq_txt_right_txt {
  margin-bottom: 0;
}
@media screen and (min-width: 1200px) {
  .siev_faq_head {
    font-size: 1.625rem;
    letter-spacing: 0.02em;
    padding: 3px 0 3px 18px;
    margin-bottom: 3.1rem;
  }
  .siev_faq_repeat_list > ul > li {
    padding: 1.7rem 0 1.9rem;
  }
  .siev_faq_title {
    margin-bottom: 0.5rem;
  }
  .siev_faq_title span {
    font-size: 1.375rem;
  }
  .siev_faq_title_right {
    font-size: 1rem;
    padding-top: 11px;
    padding-left: 12px;
  }
  .siev_faq_txt span {
    font-size: 1.375rem;
  }
  .siev_faq_txt_right {
    font-size: 0.9375rem;
    line-height: 1.53;
    padding-top: 8px;
    padding-left: 12px;
  }
}
/*||works上部-イベント申し込みボタン||*/
.siev_bottom_tel_block {
  width: 87%;
  margin: 4.2rem auto 5.8rem;
  max-width: 1000px;
}
@media screen and (min-width: 992px) {
  .siev_bottom_tel_block {
    margin: 5rem auto 7.8rem;
  }
}
@media screen and (min-width: 1200px) {
  .siev_bottom_tel_block {
    margin: 5rem auto 8.8rem;
  }
}
/*||siev_back_color||*/
.siev_back_color {
  background-color: #f3f1ed;
  padding: 5.2rem 0 4rem;
  margin-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .siev_back_color {
    padding: 7rem 0 5rem;
    margin-bottom: 7rem;
  }
}
@media screen and (min-width: 1200px) {
  .siev_back_color {
    padding: 8.2rem 0 6.2rem;
    margin-bottom: 8.9rem;
  }
}
/*||works||*/
.siev_works_wrap {
  padding-bottom: 5.6rem;
  border-bottom: 1px solid rgba(150, 150, 150, 0.25);
  margin-bottom: 5.3rem;
}
.siev_works_block {
  padding-left: 6.5%;
}
@media screen and (min-width: 768px) {
  .siev_works_wrap {
    padding-bottom: 7.6rem;
    margin-bottom: 7.3rem;
  }
  .siev_works_block {
    padding-left: 0;
  }
}
@media screen and (min-width: 1200px) {
  .siev_works_wrap {
    padding-bottom: 8.8rem;
    margin-bottom: 8rem;
  }
  .siev_works_wrap .page_section_title_box {
    margin-bottom: 5.8rem;
  }
}
@media screen and (min-width: 1500px) {
  .siev_works_wrap .works_title {
    font-size: 1.375rem;
    letter-spacing: 0.06em;
  }
}
/*||R+リノベについて||*/
.siev_reno_top_wrap {
  margin-bottom: 7rem;
}
.siev_reno_top_unit01 {
  margin-bottom: 3.2rem;
}
.siev_reno_top_unit01 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.siev_reno_top_unit02 {
  width: 87%;
  margin: 0 auto;
}
.siev_reno_top_title {
  font-size: 1.64rem;
  line-height: 1.56;
  margin-bottom: 1.7rem;
}
.siev_reno_top_txt {
  line-height: 1.78;
  text-align: justify;
  margin-bottom: 1.7rem;
}
@media screen and (min-width: 768px) {
  .siev_reno_top_wrap {
    display: flex;
    justify-content: space-between;
    width: 87%;
    margin: 0 auto 7rem;
  }
  .siev_reno_top_unit01 {
    width: 47%;
    margin-bottom: 0;
  }
  .siev_reno_top_unit02 {
    width: 46.5%;
    margin: 0;
  }
}
@media screen and (min-width: 992px) {
  .siev_reno_top_wrap {
    margin-bottom: 8rem;
  }
}
@media screen and (min-width: 1200px) {
  .siev_reno_block .page_section_title_box {
    margin-bottom: 6rem;
  }
  .siev_reno_top_wrap {
    width: 85.5%;
    margin-bottom: 10rem;
  }
  .siev_reno_top_unit01 {
    width: 52%;
  }
  .siev_reno_top_unit02 {
    width: 41.5%;
  }
  .siev_reno_top_title {
    font-size: 1.9rem;
    line-height: 1.58;
    margin-bottom: 2.6rem;
  }
  .siev_reno_top_txt {
    line-height: 1.75;
    letter-spacing: 0.03em;
    margin-bottom: 1.8rem;
  }
}
@media screen and (min-width: 1500px) {
  .siev_reno_top_wrap {
    align-items: center;
  }
  .siev_reno_top_title {
    font-size: 2.125rem;
  }
}
/*||siev_reno_list_wrap||*/
.siev_reno_list_wrap {
  width: 87%;
  margin: 0 auto 4rem;
  max-width: 1300px;
}
.siev_reno_list_head {
  font-size: 1.43rem;
  letter-spacing: 0.01em;
  line-height: 1.4;
  padding: 3px 0 3px 12px;
  border-left: 2px solid #000;
  margin-bottom: 3rem;
}
.siev_reno_list > ul > li {
  margin-bottom: 5.5rem;
}
.siev_reno_list > ul > li:last-child {
  margin-bottom: 0;
}
.siev_reno_unit01 {
  margin-bottom: 2.9rem;
}
.siev_reno_unit01 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.siev_reno_number {
  font-size: 1.29rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background-color: #026446;
  border-radius: 50%;
  margin-bottom: 1.8rem;
}
.siev_reno_title {
  font-size: 1.64rem;
  letter-spacing: 0.01rem;
  margin-bottom: 0.5rem;
}
.siev_reno_subtxt {
  font-size: 1.14rem;
  /*  letter-spacing: 0.08rem;*/
  margin-bottom: 1.5rem;
}
.siev_reno_txt {
  line-height: 1.78;
  letter-spacing: 0.01em;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .siev_reno_list > ul > li {
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(150, 150, 150, 0.25);
    margin-bottom: 4rem;
  }
  .siev_reno_item {
    display: flex;
    justify-content: space-between;
  }
  .siev_reno_unit01 {
    width: 40%;
    order: 2;
    margin-bottom: 0;
  }
  .siev_reno_unit02 {
    width: 55%;
    order: 1;
  }
}
@media screen and (min-width: 1200px) {
  .siev_reno_list_head {
    font-size: 1.625rem;
    letter-spacing: 0.02em;
    padding: 3px 0 3px 18px;
    margin-bottom: 3.7rem;
  }
  .siev_reno_list > ul > li {
    padding-bottom: 3.6rem;
    margin-bottom: 4.8rem;
  }
  .siev_reno_unit01 {
    width: 35.5%;
  }
  .siev_reno_unit02 {
    width: 53%;
    display: flex;
  }
  .siev_reno_number {
    font-size: 1.375rem;
    width: 52px;
    height: 52px;
  }
  .siev_reno_txt_box {
    width: calc(100% - 52px);
    padding-left: 5.3%;
  }
  .siev_reno_title {
    font-size: 1.9rem;
    letter-spacing: 0.08rem;
    margin-bottom: 1rem;
  }
  .siev_reno_subtxt {
    font-size: 1.125rem;
    letter-spacing: 0.08rem;
    margin-bottom: 2.7rem;
  }
  .siev_reno_txt {
    line-height: 1.75;
    letter-spacing: 0.03em;
  }
}
@media screen and (min-width: 1500px) {
  .siev_reno_title {
    font-size: 2.125rem;
  }
}
/*||R+リノベについて下部-イベント申し込みボタン||*/
.siev_bottom_reno_block {
  width: 87%;
  margin: 4rem auto 0;
  max-width: 1000px;
}
@media screen and (min-width: 1200px) {
  .siev_bottom_reno_block {
    margin: 5rem auto 0;
  }
}
/*||siev_form_top_block||*/
.siev_form_top_block {
  padding-bottom: 5.4rem;
  border-bottom: 1px solid rgba(150, 150, 150, 0.25);
  margin-bottom: 5.2rem;
}
.siev_form_top_contents {
  width: 87%;
  margin: 0 auto;
  max-width: 1000px;
}
@media screen and (min-width: 992px) {
  .siev_form_top_block {
    padding-bottom: 7.4rem;
    margin-bottom: 7.2rem;
  }
}
@media screen and (min-width: 1200px) {
  .siev_form_top_block {
    padding-bottom: 8.6rem;
    margin-bottom: 8rem;
  }
}
/*||siev_benefits_block||*/
.siev_benefits_block {
  width: 87%;
  margin: 0 auto 7rem;
  max-width: 1000px;
}
.siev_benefits_title {
  font-size: 1.29rem;
  margin-bottom: 1.9rem;
}
.siev_benefits_txt {
  line-height: 1.78;
  letter-spacing: 0.02em;
  text-align: justify;
  margin-bottom: 3rem;
}
.siev_benefits_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .siev_benefits_block {
    margin-bottom: 8.5rem;
  }
}
@media screen and (min-width: 1200px) {
  .siev_benefits_block {
    margin-bottom: 10rem;
  }
  .siev_benefits_title {
    font-size: 1.375rem;
  }
  .siev_benefits_txt {
    letter-spacing: 0.06em;
    line-height: 2;
  }
}
/*||予約フォーム||*/
.siev_form_tel_wrap {
  padding: 3.2rem 0 3.5rem;
  border-top: 1px solid rgba(180, 180, 180, 0.25);
  border-bottom: 1px solid rgba(180, 180, 180, 0.25);
  width: 87%;
  margin: 0 auto 1.6rem;
  max-width: 1000px;
}
.siev_form_tel_head {
  font-size: 1.14rem;
  color: #1b2024;
  text-align: center;
  margin-bottom: 1.6rem;
}
.siev_form_tel_box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.siev_form_tel_img {
  width: 40px;
}
.siev_form_tel_number {
  display: block;
  font-size: 1.86rem;
  line-height: 1;
  color: #000;
  margin-left: 10px;
}
.siev_form_tel_bottom {
  font-size: 0.93rem;
  text-align: center;
}
.siev_form {
  width: 87%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .siev_form_tel_wrap {
    padding-top: 0;
    border-top: none;
    padding-bottom: 4.8rem;
    margin-bottom: 1.1rem;
  }
}
@media screen and (min-width: 1200px) {
  .siev_form_block .page_section_title_box {
    margin-bottom: 5.6rem;
  }
  .siev_form_tel_head {
    font-size: 1.125rem;
    margin-bottom: 1.2rem;
  }
  .siev_form_tel_img {
    width: 46px;
  }
  .siev_form_tel_number {
    font-size: 2rem;
    letter-spacing: 0.04em;
    margin-left: 15px;
  }
  .siev_form_tel_bottom {
    font-size: 0.9375rem;
  }
}
/***************************************
スタッフ紹介一覧
***************************************/
.arstaff_block > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.arstaff_block > ul > li {
  width: calc((100% - 24px) / 2);
  margin-bottom: 0.4rem;
}
.arstaff_list_item {
  display: block;
}
.arstaff_list_img {
  aspect-ratio: 22 / 29;
  margin-bottom: 0.9rem;
}
.arstaff_list_img img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}
.arstaff_list_name {
  font-size: 1.07rem;
  letter-spacing: 0;
  color: #000;
  text-align: center;
  margin-bottom: 0;
}
.arstaff_list_type {
  font-size: 0.93rem;
  letter-spacing: 0;
  color: #787878;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .arstaff_block > ul > li {
    width: calc((100% - 48px) / 3);
  }
}
@media screen and (min-width: 992px) {
  .arstaff_block > ul {
    gap: 40px;
  }
  .arstaff_block > ul > li {
    width: calc((100% - 120px) / 4);
    margin-bottom: 2.2rem;
  }
  .arstaff_list_img {
    margin-bottom: 1.2rem;
  }
  .arstaff_list_name {
    font-size: 1.125rem;
    letter-spacing: 0.08em;
  }
  .arstaff_list_type {
    font-size: 0.875rem;
  }
}
/***************************************
スタッフ紹介詳細
***************************************/
.staff_unit01 {
  margin-bottom: 2rem;
}
.staff_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.staff_unit02 > ul > li {
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(150, 150, 150, 0.25);
  margin-bottom: 3rem;
}
.staff_unit02 > ul > li:last-child {
  /*padding-bottom: 0;
  border-bottom: none;*/
  margin-bottom: 0;
}
.staff_title {
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 0.5rem;
}
.staff_type {
  font-size: 1rem;
  letter-spacing: 0;
  color: #787878;
  text-align: center;
}
.staff_have_head {
  font-size: 1.14rem;
  margin-bottom: 2rem;
}
.staff_have_list > ul > li {
  margin-bottom: 0.5rem;
}
.staff_have_list > ul > li:last-child {
  margin-bottom: 0;
}
.staff_hobby_head {
  font-size: 1.14rem;
  margin-bottom: 2rem;
}
.staff_insta_block {
  margin-top: 3rem;
}
.staff_insta_link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  transition: all 0.5s;
}
.staff_insta_link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.single_staff_container .section_long_btn_box {
  margin-top: 7rem;
}
@media screen and (min-width: 992px) {
  .staff_item {
    display: flex;
    justify-content: space-between;
  }
  .staff_unit01 {
    width: 40%;
    margin-bottom: 0;
  }
  .staff_unit02 {
    width: 50%;
  }
  .staff_title {
    text-align: left;
  }
  .staff_type {
    text-align: left;
  }
  .staff_have_item {
    display: flex;
  }
  .staff_have_head {
    width: 30%;
    margin-bottom: 0;
  }
  .staff_have_list {
    width: 70%;
  }
}
@media screen and (min-width: 1200px) {
  .staff_title {
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.8rem;
  }
  .staff_type {
    font-size: 0.9375rem;
  }
  .staff_have_head {
    font-size: 1.125rem;
  }
  .staff_have_list > ul > li {
    font-size: 0.9375rem;
  }
  .staff_hobby_head {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
  }
  .staff_hobby_txt {
    font-size: 0.9375rem;
  }
  .single_staff_container .section_long_btn_box {
    margin-top: 11rem;
  }
}
/***************************************
column_container
***************************************/
.column_inner {
  width: 77%;
  margin: 0 auto 4.4rem;
}
.column_unit01 {
  margin-bottom: 0.9rem;
}
.column_unit01 .section_title_box {
  text-align: center;
  margin-bottom: 0;
}
.column_btn_pc {
  display: none;
}
.column_block > ul > li {
  border-bottom: 1px solid rgba(220, 220, 220, 0.6);
}
.column_item {
  display: block;
  padding: 2.5rem 0 1.9rem;
  position: relative;
}
.column_item::before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(243, 241, 237, 0.2);
  z-index: -1;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: right top;
  transform-origin: right top;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}
a:hover.column_item::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: left top;
  transform-origin: left top;
}
.column_date {
  font-size: 0.86rem;
  color: #787878;
  margin-bottom: 0.4rem;
}
.column_title {
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: #000;
  margin-bottom: 0;
}
@media screen and (min-width: 992px) {
  .column_inner {
    display: flex;
    width: 87%;
    margin-bottom: 0;
  }
  .column_unit01 {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 0;
  }
  .column_unit01 .section_title_box {
    text-align: left;
  }
  .column_btn_pc {
    display: block;
  }
  .column_btn_pc .section_short_btn {
    justify-content: flex-start;
  }
  .column_unit02 {
    width: 70%;
    margin-top: 0.6rem;
  }
  .column_block > ul > li:first-child {
    border-top: 1px solid rgba(220, 220, 220, 0.6);
  }
  .column_btn_sp {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .column_item {
    display: flex;
    padding: 2.8rem 1.2rem;
  }
  .column_date {
    font-size: 0.8125rem;
    margin-right: 2.4rem;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1500px) {
  .column_inner {
    width: 72%;
  }
}
/***************************************
投稿一覧
***************************************/
.archive_column_container .column_block > ul > li:first-child {
  border-top: 1px solid rgba(220, 220, 220, 0.6);
}
.archive_column_container .pagenation ul {
  margin-top: 5rem;
}
/*@media screen and (min-width: 992px) {
  .archive_column_container .column_block > ul > li:first-child {
    border-top: none;
  }
}*/
@media screen and (min-width: 1200px) {
  .archive_column_container .pagenation ul {
    margin-top: 7rem;
  }
}
/***************************************
投稿詳細
***************************************/
.single_date {
  font-size: 0.86rem;
  color: #787878;
  margin-bottom: 2rem;
}
.single_title {
  font-size: 1.29rem;
  letter-spacing: 0;
  margin-bottom: 2.5rem;
}
.single_eye_img {
  margin-bottom: 3rem;
}
.single_eye_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.siblog_heading {
  ne-height: 1.64;
  letter-spacing: 0.08em;
  /*    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(0, 0, 0, 1);*/
  margin-bottom: 4.5rem;
}
/*||目次||*/
.siblog_mokuji_block {
  background-color: #f3f1ed;
  padding: 3rem 0;
  margin-bottom: 4rem;
}
.siblog_mokuji_inner {
  width: 80%;
  margin: 0 auto;
}
.siblog_mokuji_head {
  font-size: 1.29rem;
  letter-spacing: 0.04em;
  padding-bottom: 1.3rem;
  border-bottom: 1px solid rgba(0, 0, 0, 1);
  margin-bottom: 2.5rem;
}
/* 目次番号カウンター初期化 */
.siblog_mokuji_list > ul {
  counter-reset: mokuji;
}
/* 各項目でカウントアップ */
.siblog_mokuji_list > ul > li {
  display: flex;
  margin-bottom: 1rem;
  counter-increment: mokuji;
}
.siblog_mokuji_list > ul > li:last-child {
  margin-bottom: 0;
}
.siblog_mokuji_item {
  color: #787878;
  display: flex;
  transition: all 0.5s;
}
.siblog_mokuji_item:hover {
  color: #000;
  transition: all 0.5s;
}
.siblog_mokuji_number {
  display: block;
  width: 32px;
  min-width: 32px;
}
/* 番号表示 */
.siblog_mokuji_number::before {
  /*  content: counter(mokuji, decimal-leading-zero);*/
  content: counter(mokuji, decimal-leading-zero) ".";
}
.siblog_mokuji_title {
  font-size: 1rem;
  /*  width: calc(100% - 32px);*/
  width: auto;
}
.siblog_mokuji_title /*||内容||*/
.siblog_repeat_block > ul > li {
  margin-bottom: 5rem;
}
.siblog_repeat_block > ul > li:last-child {
  margin-bottom: 0;
}
.siblog_repeat_title {
  font-size: 1.43rem;
  letter-spacing: 0.01em;
  line-height: 1.4;
  padding: 3px 0 3px 12px;
  border-left: 2px solid #000;
  margin-bottom: 2.1rem;
}
.siblog_repeat_contents {
  letter-spacing: 0.05em;
  line-height: 1.78;
}
.siblog_repeat_contents strong {
  background: linear-gradient(0deg, #49affc40 39%, transparent 40%);
}
.siblog_repeat_contents img.alignnone {
  display: block;
  margin: 2rem auto;
}
.single_container .section_long_btn_box {
  margin-top: 7rem;
}
@media screen and (min-width: 768px) {
  .single_title {
    font-size: 1.4rem;
    line-height: 1.5;
    margin-bottom: 4rem;
  }
}
@media screen and (min-width: 1200px) {
  .single_date {
    font-size: 0.8125rem;
    margin-bottom: 3rem;
  }
  .single_title {
    font-size: 1.625rem;
    letter-spacing: 0.02em;
    margin-bottom: 4.6rem;
  }
  .single_eye_img {
    margin-bottom: 4rem;
  }
  .siblog_heading {
    /* font-size: 1.25rem;*/
    font-size: 1.125rem;
    line-height: 1.7;
    letter-spacing: 0.05em;
    /*  padding-bottom: 4rem;*/
    margin-bottom: 7rem;
  }
  /*||目次||*/
  .siblog_mokuji_block {
    padding: 5rem 0 6rem;
    margin-bottom: 4.5rem;
  }
  .siblog_mokuji_inner {
    width: 70%;
  }
  .siblog_mokuji_head {
    font-size: 1.375rem;
    padding-bottom: 1.6rem;
    margin-bottom: 2.5rem;
  }
  .siblog_mokuji_number {
    width: 34px;
    min-width: 34px;
  }
  /*    .siblog_mokuji_title {
  width: calc(100% - 34px);
}*/
  /*||内容||*/
  .siblog_repeat_block > ul > li {
    margin-bottom: 8rem;
  }
  .siblog_repeat_title {
    font-size: 1.625rem;
    letter-spacing: 0.02em;
    padding: 3px 0 3px 18px;
    margin-bottom: 2.8rem;
  }
  .siblog_repeat_contents {
    font-size: 1.125rem;
    /*     line-height: 1.55;*/
    letter-spacing: 0.02em;
    /*    letter-spacing: 0.06em;
    line-height: 2;*/
  }
  .siblog_repeat_contents img.alignnone {
    margin-bottom: 3rem;
  }
  .single_container .section_long_btn_box {
    margin-top: 11rem;
  }
}
/***************************************
404 
***************************************/
.pg_search_container {
  overflow-x: clip;
}
.pgsearch_title {
  font-size: 1.3rem;
  line-height: 1.7;
  margin-bottom: 3rem;
}
.pgsearch_txt {
  margin-bottom: 2rem;
}
.pgsearch_url {
  word-break: break-all;
  margin-bottom: 4rem;
}
.pgsearch_btn {
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #026446;
  border: 1px solid #026446;
  color: #fff;
  height: 54px;
  width: 100%;
  max-width: 260px;
  border-radius: 45px;
  margin: 0 auto;
  margin-left: auto;
  position: relative;
  z-index: 0;
  transition: all 0.5s;
}
.pgsearch_btn:hover {
  color: #026446;
  background-color: #fff;
  opacity: 0.7;
  transition: all 0.5s;
}
@media screen and (min-width: 1200px) {
  .pgsearch_title {
    font-size: 1.5625rem;
  }
  .pgsearch_btn {
    font-size: 1rem;
    width: 280px;
    height: 60px;
  }
}
/***************************************
prev,next表示
***************************************/
/*||prev,next表示||*/
.single_nextbox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 0;
  width: 87%;
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
}
.single_prev, .single_next {
  margin-bottom: 0;
}
.single_link_btn, .single_nolink {
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.single_link_btn {
  color: #000;
  transition: all 0.5s;
}
.single_link_btn:hover {
  color: #000;
  opacity: 1;
  transition: all 0.5s;
}
.single_nolink {
  color: #b4b4b4;
  opacity: 0.7;
}
.single_nolink:hover {
  color: #b4b4b4;
}
.single_link_circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #026446;
  border: 1px solid rgba(17, 67, 138, 1);
  position: relative;
  transition: all 0.5s;
}
.single_link_btn:hover .single_link_circle {
  background-color: #fff;
  transition: all 0.5s;
}
.single_prev .single_link_circle {
  margin-right: 7px;
}
.single_prev .single_link_circle::before {
  content: "";
  display: block;
  width: 5px;
  height: 6px;
  background-image: url("../images/arrow_white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 49%;
  transform: translate(-50%, -50%) rotate(180deg);
  transition: all 0.5s;
}
.single_prev .single_link_btn:hover .single_link_circle::before {
  background-image: url("../images/arrow_blue.svg");
  transition: all 0.5s;
}
.single_next .single_link_circle {
  margin-left: 10px;
}
.single_next .single_link_circle::before {
  content: "";
  display: block;
  width: 5px;
  height: 6px;
  background-image: url("../images/arrow_white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 49%;
  transform: translate(-50%, -50%);
  transition: all 0.5s;
}
.single_next .single_link_btn:hover .single_link_circle::before {
  background-image: url("../images/arrow_blue.svg");
  transition: all 0.5s;
}
.single_menu {
  color: #000;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}
.single_menu:hover {
  color: #000;
  opacity: 0.7;
  transition: all 0.5s;
}
@media screen and (min-width: 768px) {
  .single_link_btn, .single_nolink {
    font-size: 1rem;
  }
  .single_link_circle {
    width: 38px;
    height: 38px;
  }
  .single_prev .single_link_circle {
    margin-right: 12px;
  }
  .single_prev .single_link_circle::before {
    width: 6px;
    height: 7px;
  }
  .single_next .single_link_circle {
    margin-left: 15px;
  }
  .single_next .single_link_circle::before {
    width: 6px;
    height: 7px;
  }
}
/************************
/*FORM(お問い合わせ)
************************/
#form-contact_box {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.pg_contact_txt1 {
  font-size: 0.9375rem;
  text-align: center;
  margin-bottom: 0;
}
.pg_contact_txt2 {
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4.7rem;
}
.cl-red {
  color: #026446;
  margin-right: 3px;
}
input[type="button"], input[type="text"], input[type="submit"], input[type="image"], textarea {
  -webkit-appearance: none;
  border-radius: 0;
}
/* FORM MODEL */ ::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #919191;
  letter-spacing: 0.1em;
  font-family: inherit;
}
:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #919191;
  letter-spacing: 0.1em;
  opacity: 1;
  font-family: inherit;
}
::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #919191;
  letter-spacing: 0.1em;
  opacity: 1;
  font-family: inherit;
}
:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #919191;
  letter-spacing: 0.1em;
  font-family: inherit;
}
::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #919191;
  letter-spacing: 0.1em;
  font-family: inherit;
}
::placeholder {
  /* Most modern browsers support this now. */
  color: #919191;
  letter-spacing: 0.1em;
  font-family: inherit;
}
select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
#form-contact_box .form-group {
  display: flex;
  border-bottom: 1px solid rgba(180, 180, 180, 0.25);
  padding-bottom: 1.1rem;
  margin-bottom: 1.1rem;
  flex-wrap: wrap;
}
#form-contact_box .form-group:last-child {
  margin-bottom: 0;
}
#form-contact_box .form-label {
  width: 25%;
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
#form-contact_box .form-imp__icon {
  color: #026446;
  margin-top: -1px;
  margin-left: 5px;
  font-size: 1rem;
}
#form-contact_box .wpcf7-form-control-wrap {
  display: block;
  width: 75%;
}
#form-contact_box input, #form-contact_box textarea, #form-contact_box select {
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 26px;
  display: block;
  width: 100%;
  outline: none;
  resize: none;
  margin: 0;
  padding: 22px 40px;
  border-radius: 0px;
  border: none;
  background-color: #f5f5f5;
}
/*||select矢印||*/
.form-group_2col_item {
  width: 75%;
  position: relative;
}
.form-group_2col_item::before {
  /*  content: "";
  display: block;
  width: 0;
  height: 0;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 7px solid #000;
  position: absolute;
  top: 31px;
  right: 20px;
  z-index: 1;*/
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 1px solid #000;
  border-left: 1px solid #000;
  transform: translate(0%, -50%) rotate(225deg);
  position: absolute;
  top: 46%;
  right: 33px;
  z-index: 1;
}
.form-group_2col_item.select-active::before {
  display: none;
}
#form-contact_box .form-group_2col_item .wpcf7-form-control-wrap {
  width: 100%;
}
.form-group_2col_item select {
  color: #959595;
}
.form-group_2col_item.select-active select {
  color: #000;
}
@media screen and (max-width: 576px) {
  .form-group_2col_item {
    width: 100%;
  }
  .form-group_2col_item::before {
    /* border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    border-top: 6px solid #000;
    top: 24px;*/
    width: 9px;
    height: 9px;
    right: 16px;
  }
}
/*||背景色有||*/
.contact_form_back #form-contact_box input, .contact_form_back #form-contact_box textarea, .contact_form_back #form-contact_box select {
  background-color: #fff;
}
.contact_form_back #form-contact_box .form-input__checkbox--round .wpcf7-list-item-label::before {
  background-color: #fff;
}
/*||背景色無||*/
/*.contact_form_back02 #form-contact_box input, .contact_form_back02 #form-contact_box textarea, .contact_form_back02 #form-contact_box select {
  background-color: #f7f7f7;
}*/
#form-contact_box input[type="checkbox"], #form-contact_box input[type="radio"] {
  width: auto;
  display: inline-block;
}
/*||住所||*/
.form-group_address_inner {
  width: 71%;
}
#form-contact_box .form-group_address .form-label {
  align-items: flex-start;
  padding-top: 1.2rem;
}
#form-contact_box .form-group_address .wpcf7-form-control-wrap:first-child {
  width: 48%;
  margin-bottom: 10px;
}
#form-contact_box .form-group_address .wpcf7-form-control-wrap:last-child {
  width: 100%;
}
@media screen and (max-width: 576px) {
  #form-contact_box .form-group_address .form-label {
    padding-top: 0;
  }
  .form-group_address #zip3 {
    width: 100%;
  }
}
/* CUSTOM CHECKBOX */
#form-contact_box .form-input__checkbox {
  margin-bottom: 0;
  width: 71%;
}
#form-contact_box .form-input__checkbox .wpcf7-form-control-wrap {
  width: 100%;
}
#form-contact_box .form-input__checkbox label {
  cursor: pointer;
}
#form-contact_box .form-input__checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
/* Create a custom checkbox */
#form-contact_box .form-input__checkbox .wpcf7-list-item {
  margin-right: 3.3rem;
  margin-left: 0;
}
#form-contact_box .form-input__checkbox .wpcf7-list-item.first, #form-contact_box .form-input__checkbox .wpcf7-list-item.last {
  margin-left: 0;
}
#form-contact_box .form-input__checkbox .wpcf7-list-item-label {
  position: relative;
  padding-left: 57px;
  line-height: 40px;
  padding-top: 0;
  top: 0;
}
#form-contact_box .form-input__checkbox .wpcf7-list-item-label::before, #form-contact_box .form-input__checkbox .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  transition: 0.2s;
}
#form-contact_box .form-input__checkbox .wpcf7-list-item-label::before {
  display: block;
  height: 40px;
  width: 40px;
  background-color: #f5f5f5;
  top: 50%;
  left: 0;
  transform: translate(0%, -50%);
  border: none;
}
/*||背景色あり||*/
.contact_form_back #form-contact_box .form-input__checkbox .wpcf7-list-item-label::before {
  background-color: #fff;
}
#form-contact_box .form-input__checkbox .wpcf7-list-item-label::after {
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  opacity: 0;
  background-color: #026446;
  border: none;
}
#form-contact_box .form-input__checkbox input:checked ~ .wpcf7-list-item-label::after {
  opacity: 1;
}
/*||ラジオボタン||*/
#form-contact_box .form-input__radio .wpcf7-list-item-label::before {
  border-radius: 50%;
}
#form-contact_box .form-input__radio .wpcf7-list-item-label::after {
  border-radius: 50%;
}
/*お問い合わせ内容*/
#form-contact_box .form-label.form-label_upmt {
  align-items: flex-start;
  padding-top: 1.2rem;
}
.form-group--agree {
  margin-top: 3.5rem;
  padding-left: 25%;
  margin-bottom: 4.8rem;
}
.form-group--last {
  padding-left: 25%;
}
.form-group--last_inner {
  position: relative;
  display: inline-block;
}
.form-group--last_inner::before {
  content: "";
  display: block;
  width: 14px;
  height: 10px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/arrow_white.svg");
  background-position: center;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translate(0%, -50%);
  transition: all 0.5s;
}
#form-contact_box input[type="submit"] {
  font-size: 0.875rem;
  line-height: 1;
  width: 360px;
  max-width: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
  font-weight: 400;
  background-color: #026446;
  height: 65px;
  color: #fff;
  border-radius: 60px;
  padding-right: 12rem;
}
.form-group--last .wpcf7-spinner {
  position: absolute;
}
@media screen and (max-width: 576px) {
  .pg_contact_txt1 {
    font-size: 0.93rem;
    text-align: left;
  }
  .pg_contact_txt2 {
    font-size: 0.93rem;
    justify-content: flex-start;
    margin-bottom: 3rem;
  }
  #form-contact_box .form-group {
    padding-bottom: 1.4rem;
    margin-bottom: 1.4rem;
  }
  #form-contact_box .form-label {
    font-size: 1.07rem;
    width: 100%;
    margin-bottom: 1.1rem;
  }
  #form-contact_box .wpcf7-form-control-wrap {
    width: 100%;
  }
  .form-group_address_inner {
    width: 100%;
  }
  #form-contact_box input, #form-contact_box textarea, #form-contact_box select {
    font-size: 0.86rem;
    padding: 10px 16px;
  }
  /* CUSTOM CHECKBOX */
  #form-contact_box .form-input__checkbox {
    width: 100%;
  }
  #form-contact_box .form-input__checkbox label {
    margin-bottom: 0;
  }
  #form-contact_box .form-input__checkbox .wpcf7-form-control.wpcf7-radio {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  #form-contact_box .form-input__checkbox .wpcf7-list-item {
    width: calc((100% - 10px) / 2);
    margin-right: 0;
  }
  #form-contact_box .form-input__checkbox .wpcf7-list-item-label {
    line-height: 30px;
    padding-left: 36px;
  }
  #form-contact_box .form-input__checkbox .wpcf7-list-item-label::before {
    height: 28px;
    width: 28px;
  }
  #form-contact_box .form-input__checkbox .wpcf7-list-item-label::after {
    width: 8px;
    height: 8px;
    left: 10px;
  }
  /*お問い合わせ内容*/
  #form-contact_box .form-label.form-label_upmt {
    padding-top: 0;
  }
  .form-group--agree {
    margin-top: 1.6rem;
    padding-left: 0;
    margin-bottom: 4.4rem;
  }
  .form-group--last {
    padding-left: 0;
  }
  .form-group--last_inner {
    display: block;
  }
  /*送信ボタン*/
  #form-contact_box input[type="submit"] {
    font-size: 1rem;
    width: 100%;
    height: 60px;
  }
}
/*||個人情報の取り扱いに同意する||*/
#form-contact_box .form-input__checkbox--round {
  width: 100%;
  padding-left: 0;
  margin-bottom: 0;
}
#form-contact_box .form-input__checkbox--round .wpcf7-list-item {
  margin-right: 0;
}
#form-contact_box .form-input__checkbox--round .wpcf7-form-control {
  justify-content: center;
}
#form-contact_box .form-input__checkbox--round .wpcf7-list-item-label {
  border-radius: 50%;
  line-height: 35px;
  padding-top: 0;
  font-size: 0.9375rem;
  position: relative;
  padding-left: 70px;
}
#form-contact_box .form-input__checkbox--round .wpcf7-list-item-label::before, #form-contact_box .form-input__checkbox--round .wpcf7-list-item-label::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
#form-contact_box .form-input__checkbox--round .wpcf7-list-item-label::before {
  left: 0;
  display: block;
  background-color: #f5f5f5;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
}
#form-contact_box .form-input__checkbox--round .wpcf7-list-item-label::after {
  left: 20px;
  width: 10px;
  height: 10px;
  opacity: 0;
  background-color: #026446;
  border-radius: 50%;
}
@media screen and (max-width: 576px) {
  #form-contact_box .form-input__checkbox--round .wpcf7-form-control .wpcf7-list-item {
    width: 100%;
  }
  #form-contact_box .form-input__checkbox--round .wpcf7-list-item-label {
    font-size: 0.93rem;
    padding-left: 50px;
  }
  #form-contact_box .form-input__checkbox--round .wpcf7-list-item-label::before {
    width: 35px;
    height: 35px;
  }
  #form-contact_box .form-input__checkbox--round .wpcf7-list-item-label::after {
    left: 12px;
  }
}
.f_note {
  font-size: 0.93rem;
  margin-bottom: 2rem;
}
.f_note a {
  color: #000;
  text-decoration: underline;
  transition: all 0.5s;
}
.f_note a:hover {
  color: #787878;
  transition: all 0.5s;
  text-decoration: underline;
}
@media screen and (min-width: 1200px) {
  .f_note {
    font-size: 0.9375rem;
    line-height: 1.84;
  }
}
.grecaptcha-badge {
  visibility: hidden;
}
/*.grecaptcha-badge {
   visibility: initial !important;
}*/
.form_grecaptcha {
  /*text-align: center;*/
  color: #777;
  font-size: 0.75rem;
  margin-top: 4rem;
  padding-left: 25%;
  margin-bottom: 0;
}
.form_grecaptcha a {
  text-decoration: underline;
}
@media screen and (max-width: 576px) {
  .form_grecaptcha {
    padding-left: 0;
  }
}
@media screen and (min-width: 768px) {
  .form_grecaptcha {
    margin-top: 6rem;
  }
}
/***************************************
guide_container
***************************************/
.guide_container {
  background-color: #f3f1ed;
  padding: 5.2rem 0 7rem;
  margin-bottom: 5.2rem;
}
@media screen and (min-width: 768px) {
  .guide_container {
    padding: 8rem 0 10rem;
    margin-bottom: 8rem;
  }
}
@media screen and (min-width: 1200px) {
  .guide_container {
    padding: 9.2rem 0 10rem;
    margin-bottom: 9.3rem;
  }
}
.guide_block {
  width: 77%;
  margin: 0 auto;
}
.guide_block .section_title_box {
  margin-bottom: 4rem;
}
.guide_block .section_title {
  text-align: center;
}
.guide_title {
  font-size: 1.64rem;
  line-height: 1.56;
  text-align: center;
  margin-bottom: 2rem;
}
.guide_txt {
  letter-spacing: 0.08em;
  line-height: 1.78;
  text-align: justify;
  margin-bottom: 4.1rem;
}
.guide_list {
  width: 87%;
  margin: 0 auto;
}
.guide_list > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14%;
}
.guide_list > ul > li {
  width: calc((100% - 14%) / 2);
  margin-bottom: 3.6rem;
}
.guide_list > ul > li:nth-last-child(2), .guide_list > ul > li:last-child {
  margin-bottom: 0;
}
.guide_list_item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.guide_list_img {
  width: 87px;
  margin-bottom: 1.2rem;
}
.guide_list_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.guide_list_title {
  letter-spacing: 0.08em;
  color: #000;
  margin-bottom: 1rem;
  position: relative;
}
.guide_list_title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  transform: scale(0, 1);
  transform-origin: left bottom;
  transition: 0.3s transform ease-in-out 0s, 0.3s bottom ease-in-out 0s;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
}
a:hover .guide_list_title::after {
  transform: scale(1, 1);
}
.guide_list_arrow {
  display: block;
  width: 46px;
  height: 26px;
  margin: 0 auto;
  border-radius: 13px;
  background-color: #000;
  position: relative;
  transition: all 0.5s;
}
a:hover .guide_list_arrow {
  background-color: #026446;
  transition: all 0.5s;
}
.guide_list_arrow::before {
  content: "";
  display: block;
  width: 12px;
  height: 9px;
  background-image: url("../images/arrow_white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s;
}
@media screen and (min-width: 768px) {
  .guide_block .section_title {
    text-align: left;
  }
  .guide_title {
    text-align: left;
  }
  .guide_list > ul {
    gap: 4%;
  }
  .guide_list > ul > li {
    width: calc((100% - 12%) / 4);
    margin-bottom: 0;
  }
}
@media screen and (min-width: 992px) {
  .guide_item {
    display: flex;
    justify-content: space-between;
  }
  .guide_title {
    width: 35%;
    margin-bottom: 0;
  }
  .guide_unit {
    width: 62.5%;
  }
}
@media screen and (min-width: 1200px) {
  .guide_block {
    width: 87%;
  }
  .guide_block .section_title_box {
    margin-bottom: 7.9rem;
  }
  .guide_title {
    font-size: 1.8rem;
    letter-spacing: 0.14rem;
    line-height: 1.58;
  }
  .guide_unit {
    width: 55.5%;
  }
  .guide_txt {
    letter-spacing: 0.07em;
    line-height: 2;
    margin-bottom: 4rem;
  }
  .guide_list {
    width: 98%;
  }
  .guide_list > ul {
    gap: 4%;
  }
  .guide_list > ul > li {
    width: calc((100% - 12%) / 4);
  }
  .guide_list_img {
    width: 99px;
    margin-bottom: 1rem;
  }
  .guide_list_title {
    letter-spacing: 0.07em;
    margin-bottom: 2rem;
  }
  .guide_list_arrow {
    width: 50px;
    height: 26px;
  }
  .guide_list_arrow::before {
    width: 14px;
    height: 10px;
  }
}
@media screen and (min-width: 1500px) {
  .guide_block {
    width: 72%;
  }
  .guide_title {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1700px) {
  .guide_title {
    font-size: 2.125rem;
  }
}
/***************************************

***************************************/
/**************************************
/* レスポンシブ改行
***************************************/
@media screen and (max-width: 575px) {
  .br-sp5 {
    display: block;
  }
  .br-pc5 {
    display: none;
  }
}
@media screen and (min-width: 576px) {
  .br-sp5 {
    display: none;
  }
  .br-pc5 {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .br-sp7 {
    display: inline-block;
  }
  .br-pc7 {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .br-sp7 {
    display: none;
  }
  .br-pc7 {
    display: block;
  }
}
@media screen and (max-width: 991px) {
  .br-pc9 {
    display: none;
  }
  .br-sp9 {
    display: block;
  }
}
@media screen and (min-width: 992px) {
  .br-pc9 {
    display: block;
  }
  .br-sp9 {
    display: none;
  }
}
@media screen and (max-width: 1199px) {
  .br-pc12 {
    display: none;
  }
  .br-sp12 {
    display: block;
  }
}
@media screen and (min-width: 1200px) {
  .br-pc12 {
    display: block;
  }
  .br-sp12 {
    display: none;
  }
}
@media screen and (max-width: 1499px) {
  .br-pc15 {
    display: none;
  }
  .br-sp15 {
    display: block;
  }
}
@media screen and (min-width: 1500px) {
  .br-pc15 {
    display: block;
  }
  .br-sp15 {
    display: none;
  }
}
@media screen and (max-width: 1799px) {
  .br-pc18 {
    display: none;
  }
  .br-sp18 {
    display: block;
  }
}
@media screen and (min-width: 1800px) {
  .br-pc18 {
    display: block;
  }
  .br-sp18 {
    display: none;
  }
}