@charset "UTF-8";
/*
Theme Name: 鈴ガーデン
Description: 
Version: 1.0
Tags: html5 css3(scss) javascript php mysql FontAwesome4.7.0
*/
@font-face {
  font-family: "Noto Sans JP", sans-serif;
  src: local("Noto Sans JP Thin");
  font-weight: 100;
}
@font-face {
  font-family: "Noto Sans JP", sans-serif;
  src: local("Noto Sans JP Light");
  font-weight: 300;
}
@font-face {
  font-family: "Noto Sans JP", sans-serif;
  src: local("Noto Sans JP Regular");
  font-weight: 400;
}
@font-face {
  font-family: "Noto Sans JP", sans-serif;
  src: local("Noto Sans JP Medium");
  font-weight: 500;
}
@font-face {
  font-family: "Noto Sans JP", sans-serif;
  src: local("Noto Sans JP bold");
  font-weight: 700;
}
@font-face {
  font-family: "Noto Sans JP", sans-serif;
  src: local("Noto Sans JP Black");
  font-weight: 900;
}
*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}
html:focus {
  outline: none;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

main {
  display: block;
  overflow: hidden;
}

.fontSerif {
  font-family: "Noto Sans JP", sans-serif;
}

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
/* ----------------------------------- */
/* コンテナ
/* ----------------------------------- */
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  transition: ease-in 0.1s;
}
@media screen and (min-width: 1025px) {
  .container {
    max-width: 1170px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .container {
    max-width: 970px;
    padding-left: 5%;
    padding-right: 5%;
  }
}
@media screen and (max-width: 768px) {
  .container {
    max-width: 750px;
  }
}

/* ----------------------------------- */
/* clearfix
/* ----------------------------------- */
.clearfix:before,
.clearfix:after,
.container:before,
.container:after {
  content: " ";
  display: table;
}

.clearfix:after,
.container:after {
  clear: both;
}

/* ----------------------------------- */
/* フォントサイズ・余白 */
/* ----------------------------------- */
.fs12 {
  font-size: 12px !important;
}

.fs14 {
  font-size: 14px !important;
}

.fs16 {
  font-size: 16px !important;
}

.fs18 {
  font-size: 18px !important;
}

.fs20 {
  font-size: 20px !important;
}

.fs22 {
  font-size: 22px !important;
}

.fs24 {
  font-size: 24px !important;
}

.fs28 {
  font-size: 28px !important;
}

.mt0 {
  margin-top: 0 !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb75 {
  margin-bottom: 75px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mb95 {
  margin-bottom: 95px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.mb110 {
  margin-bottom: 110px !important;
}

.mb120 {
  margin-bottom: 120px !important;
}

.w10p {
  width: 10% !important;
}

.w20p {
  width: 20% !important;
}

.w30p {
  width: 30% !important;
}

.w40p {
  width: 40% !important;
}

.w50p {
  width: 50% !important;
}

.w60p {
  width: 60% !important;
}

.w70p {
  width: 70% !important;
}

.w80p {
  width: 80% !important;
}

.w90p {
  width: 90% !important;
}

.w100p {
  width: 100% !important;
}

/* ----------------------------------- */
/* リンク */
/* ----------------------------------- */
a {
  color: #64937D;
  text-decoration: underline;
  transition: all ease 0.3s;
}
a:hover, a:focus {
  text-decoration: none;
  transition: all ease 0.3s;
}
a:focus, a:active, a:hover {
  outline: 0;
  text-decoration: none;
}
a img:hover {
  opacity: 0.8;
}

/* ----------------------------------- */
/* 配置 */
/* ----------------------------------- */
.alignnone {
  max-width: 100%;
}

.alignleft {
  display: inline;
  float: left;
}

.alignright {
  display: inline;
  float: right;
}

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

blockquote.alignleft,
img.alignleft {
  margin: 0 20px 20px 0;
}
blockquote.alignright,
img.alignright {
  margin: 0 0 20px 20px;
}
blockquote.aligncenter,
img.aligncenter {
  clear: both;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption.alignleft,
.wp-caption.alignright,
.wp-caption.aligncenter {
  margin-bottom: 20px;
}

/* ----------------------------------- */
/* イメージ */
/* ----------------------------------- */
img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
  flex-shrink: 0;
}
img[class*=align], img[class*=wp-image-], img[class*=attachment-] {
  height: auto;
}
img.alignleft, img.alignright, img.aligncenter {
  margin-bottom: 30px;
}
img.alignleft {
  display: inline;
  float: left;
  margin-right: 20px;
}
img.alignright {
  display: inline;
  float: right;
  margin-left: 20px;
}
img.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px !important;
}

/* ----------------------------------- */
/* ギャラリー */
/* ----------------------------------- */
.gallery {
  margin: 30px 0;
}
.gallery .gallery-item {
  display: inline-block;
  padding: 0 1.79104477%;
  text-align: center;
  vertical-align: top;
  width: 100%;
  margin: 0 0 15px;
}
.gallery .gallery-item .gallery-icon img {
  margin: 0 auto;
  width: 100%;
  height: auto;
  border: none !important;
}
.gallery .gallery-item .gallery-caption {
  color: #707070;
  display: block;
  text-align: left;
  font-size: 14px;
  line-height: 1.5;
  padding: 0.5em 0 0;
  margin: 0;
}
.gallery.gallery-columns-2 .gallery-item {
  max-width: 50%;
}
.gallery.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}
.gallery.gallery-columns-4 .gallery-item {
  max-width: 25%;
}
.gallery.gallery-columns-5 .gallery-item {
  max-width: 20%;
}
.gallery.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}
.gallery.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}
.gallery.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}
.gallery.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}
/* キャプション */
/* ----------------------------------- */
.wp-caption {
  max-width: 100%;
  margin: 0;
}
.wp-caption img {
  border-color: none;
}

/* ----------------------------------- */
/* ボタン */
/* ----------------------------------- */
.btnWrap {
  margin: 40px 0;
}

.btn {
  clear: both;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 60px;
  padding: 0 30px;
  margin: 30px 0 30px;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  touch-action: manipulation;
  text-decoration: none;
  transition: 0.3s ease-in;
  user-select: none;
  position: relative;
  border: 1px solid #FFFFFF;
  border-radius: 30px;
  color: #000000;
  background: #FFFFFF;
  width: 240px;
  box-shadow: 0 2px 7px 1px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.btn:hover, .btn:focus {
  text-decoration: none;
  color: #000000;
}
.btn.arrow:after {
  position: absolute;
  align-items: center;
  border: none;
  content: "";
  background: url("images/home/svg/right_green.svg") no-repeat;
  width: 17px;
  height: 5px;
  background-size: 17px;
  background-position: center;
  transform: none;
  right: 25px;
  font-size: 20px;
  border-radius: 0;
  top: 50%;
  margin-top: -3px;
  transition: 0.3s ease-in;
}
.btn.arrow:hover:after, .btn.arrow:focus:after {
  right: 15px;
}
.btn.arrowReverse:after {
  position: absolute;
  align-items: center;
  border: none;
  content: "\f105";
  font-family: FontAwesome;
  transform: none;
  color: #FFFFFF;
  right: 15px;
  font-size: 20px;
  border-radius: 0;
  top: 50%;
  margin-top: -15px;
  transition: 0.3s ease-in;
}
.btn.arrowReverse:hover:after, .btn.arrowReverse:focus:after {
  color: #fff;
}
.btn.reverse {
  text-decoration: none;
  color: #FFFFFF;
  background: #fff;
  border-color: #FFFFFF;
}
.btn.reverse:hover, .btn.reverse:focus {
  background: #FFFFFF;
  color: #fff;
}
.btn.btnLeft {
  margin: 0;
}
.btn.btnRight {
  margin: 0 0 0 auto;
}
.btn.btnCenter {
  margin-left: auto;
  margin-right: auto;
}
.btn.btnFull {
  max-width: none;
}
.btn.type2 {
  background: #0F3D2E;
  color: #fff;
  max-width: 290px;
  border-radius: 8px;
}
.btn.type2.arrow:after {
  background: url("images/home/svg/white_arrow.svg") no-repeat;
  background-size: 17px;
  background-position: center;
}
.btn.type3 {
  border-radius: 0px;
  height: 80px;
  width: 300px;
  box-shadow: none;
  border-bottom: #B2B2B2 solid 1px;
  padding: 25px 55px 25px 20px;
}
.btn.type3.arrow:after {
  background: url("images/home/svg/anchor_arrow.svg") no-repeat;
  width: 20px;
  height: 10px;
  background-size: 19px;
  background-position: center;
}
.btn.type3:hover, .btn.type3:focus {
  background-color: #EFFAF5;
}
.btn.type3:hover:after, .btn.type3:focus:after {
  right: 25px;
}
@media screen and (max-width: 768px) {
  .btn.type3 {
    width: 100%;
  }
}

/* ----------------------------------- */
/* カラム */
/* ----------------------------------- */
.column2Wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}
.column2Wrap.align-items {
  align-items: center;
}
.column2Wrap .columnBox {
  flex-basis: calc((100% - 30px * (2 - 1)) / 2);
  max-width: calc((100% - 30px * (2 - 1)) / 2);
}
.column2Wrap .columnBox p:last-of-type {
  margin-bottom: 0;
}
.column2Wrap .columnBox:nth-of-type(n + 3) {
  margin-top: 20px;
}
.column2Wrap.sp3_7 .columnBox:nth-of-type(odd) {
  flex-basis: 300px;
  max-width: 300px;
}
.column2Wrap.sp3_7 .columnBox:nth-of-type(even) {
  flex-basis: calc(100% - 320px);
  max-width: calc(100% - 320px);
}
.column2Wrap.sp7_3 .columnBox:nth-of-type(odd) {
  flex-basis: calc(100% - 320px);
  max-width: calc(100% - 320px);
}
.column2Wrap.sp7_3 .columnBox:nth-of-type(even) {
  flex-basis: 300px;
  max-width: 300px;
}
.column2Wrap.sp140 .columnBox:nth-of-type(-n + 2) {
  margin-top: 0;
}
.column2Wrap.sp140 .columnBox:nth-of-type(odd) {
  flex-basis: 140px;
  max-width: 140px;
}
.column2Wrap.sp140 .columnBox:nth-of-type(even) {
  flex-basis: calc(100% - 160px);
  max-width: calc(100% - 160px);
}
.column2Wrap.sp250 .columnBox:nth-of-type(odd) {
  flex-basis: 250px;
  max-width: 250px;
}
.column2Wrap.sp250 .columnBox:nth-of-type(even) {
  flex-basis: calc(100% - 270px);
  max-width: calc(100% - 270px);
}
.column2Wrap .column2Wrap .columnBox {
  flex-basis: calc((100% - 30px * (2 - 1)) / 2);
  max-width: calc((100% - 30px * (2 - 1)) / 2);
}

.column3Wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}
.column3Wrap.justify-center {
  justify-content: center;
}
.column3Wrap:after {
  content: "";
  display: block;
  width: calc((100% - 30px * (3 - 1)) / 3);
}
.column3Wrap .columnBox {
  flex-basis: calc((100% - 30px * (3 - 1)) / 3);
  max-width: calc((100% - 30px * (3 - 1)) / 3);
}
.column3Wrap .columnBox img {
  width: 100%;
  max-width: 100%;
}
.column3Wrap .columnBox p:last-child {
  margin-bottom: 0;
}
.column3Wrap .columnBox:nth-of-type(-n + 3) {
  margin-top: 0;
}

.column4Wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
}
.column4Wrap.justify-center {
  justify-content: center;
}
.column4Wrap .columnBox p:last-child {
  margin-bottom: 0;
}
.column4Wrap .columnBox img {
  max-width: 100%;
  width: 100%;
}

.column6Wrap {
  display: flex;
  flex-wrap: wrap;
}
.column6Wrap .columnBox {
  flex-basis: calc((100% - 50px) / 6);
  max-width: calc((100% - 50px) / 6);
  margin-right: 10px;
}
.column6Wrap .columnBox img {
  max-width: 100%;
  width: 100%;
}
.column6Wrap .columnBox:last-of-type {
  margin-right: 0;
}
.column6Wrap .columnBox:nth-of-type(n + 7) {
  margin-top: 20px;
}

.column1_1_2 .columnBox {
  flex-basis: calc((100% - 30px * (2 - 1)) / 2);
  max-width: calc((100% - 30px * (2 - 1)) / 2);
}
.column1_1_2 .columnBox:nth-of-type(-n + 2) {
  margin-top: 0;
}

.column1_3_3 .columnBox {
  flex-basis: calc((100% - 30px * (3 - 1)) / 3);
  max-width: calc((100% - 30px * (3 - 1)) / 3);
}
.column1_3_3 .columnBox:nth-of-type(n + 4) {
  margin-top: 20px;
}

.column2_3_3:after {
  content: "";
  display: block;
  width: calc((100% - 30px * (3 - 1)) / 3);
}
.column2_3_3 .columnBox {
  flex-basis: calc((100% - 30px * (3 - 1)) / 3);
  max-width: calc((100% - 30px * (3 - 1)) / 3);
}
.column2_3_3 .columnBox:nth-of-type(2) {
  margin-top: 0;
}
.column2_3_3 .columnBox:nth-of-type(n + 4) {
  margin-top: 20px;
}

.column2_4_4:after {
  width: calc((100% - 30px * (4 - 1)) / 4);
  content: "";
  display: block;
}
.column2_4_4:before {
  width: calc((100% - 30px * (4 - 1)) / 4);
  content: "";
  display: block;
  order: 1;
}
.column2_4_4 .columnBox {
  flex-basis: calc((100% - 30px * (4 - 1)) / 4);
  max-width: calc((100% - 30px * (4 - 1)) / 4);
}
.column2_4_4 .columnBox:nth-of-type(-n + 2) {
  margin-top: 0;
}
.column2_4_4 .columnBox:nth-of-type(-n + 4) {
  margin-top: 0;
}

.columnBox {
  overflow: hidden;
}
.columnBox img {
  align-self: baseline;
  max-width: 100%;
}
.columnBox p:last-of-type {
  margin: 0;
}

.borderBox .columnBox {
  padding: 15px 20px;
  border: 1px solid #eee;
  overflow: visible;
}
.borderBox .columnBox + .borderNone {
  border: none;
}

@media screen and (min-width: 1025px) {
  .column2Wrap.lp3_7 .columnBox:first-of-type {
    flex-basis: calc((100% - 60px) / 3);
    max-width: calc((100% - 60px) / 3);
  }
  .column2Wrap.lp3_7 .columnBox:last-of-type {
    flex-basis: calc((100% - 60px) / 3 * 2 + 30px);
    max-width: calc((100% - 60px) / 3 * 2 + 30px);
  }
  .column2Wrap.lp7_3 .columnBox:first-of-type {
    flex-basis: calc((100% - 60px) / 3 * 2 + 30px);
    max-width: calc((100% - 60px) / 3 * 2 + 30px);
  }
  .column2Wrap.lp7_3 .columnBox:last-of-type {
    flex-basis: calc((100% - 60px) / 3);
    max-width: calc((100% - 60px) / 3);
  }
  .column3Wrap:after {
    content: "";
    display: block;
    width: calc((100% - 30px * (3 - 1)) / 3);
  }
  .column3Wrap .columnBox:nth-of-type(n + 4) {
    margin-top: 20px;
  }
  .column4Wrap:after {
    width: calc((100% - 30px * (4 - 1)) / 4);
    content: "";
    display: block;
  }
  .column4Wrap:before {
    width: calc((100% - 30px * (4 - 1)) / 4);
    content: "";
    display: block;
    order: 1;
  }
  .column4Wrap .columnBox {
    flex-basis: calc((100% - 30px * (4 - 1)) / 4);
    max-width: calc((100% - 30px * (4 - 1)) / 4);
  }
  .column4Wrap .columnBox:nth-of-type(n + 5) {
    margin-top: 20px;
  }
  .column1_2_3 .columnBox {
    flex-basis: calc((100% - 30px * (3 - 1)) / 3);
    max-width: calc((100% - 30px * (3 - 1)) / 3);
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .column3Wrap .columnBox {
    flex-basis: calc((100% - 30px * (2 - 1)) / 2);
    max-width: calc((100% - 30px * (2 - 1)) / 2);
  }
  .column3Wrap .columnBox:nth-of-type(n + 3) {
    margin-top: 20px;
  }
  .column4Wrap .columnBox {
    flex-basis: calc((100% - 30px * (2 - 1)) / 2);
    max-width: calc((100% - 30px * (2 - 1)) / 2);
  }
  .column4Wrap .columnBox:nth-of-type(n + 3) {
    margin-top: 20px;
  }
  .column1_1_2 .columnBox {
    flex-basis: 100%;
    max-width: 100%;
  }
  .column1_1_2 .columnBox:nth-of-type(n + 2) {
    margin-top: 20px;
  }
  .column1_3_3 .columnBox {
    flex-basis: calc((100% - 30px * (3 - 1)) / 3);
    max-width: calc((100% - 30px * (3 - 1)) / 3);
  }
  .column1_3_3 .columnBox:nth-of-type(n + 3) {
    margin-top: 0;
  }
  .column1_2_3 .columnBox {
    flex-basis: calc((100% - 30px * (2 - 1)) / 2);
    max-width: calc((100% - 30px * (2 - 1)) / 2);
  }
  .column2_4_4:after {
    width: calc((100% - 30px * (4 - 1)) / 4);
    content: "";
    display: block;
  }
  .column2_4_4:before {
    width: calc((100% - 30px * (4 - 1)) / 4);
    content: "";
    display: block;
    order: 1;
  }
  .column2_4_4 .columnBox {
    flex-basis: calc((100% - 30px * (4 - 1)) / 4);
    max-width: calc((100% - 30px * (4 - 1)) / 4);
  }
  .column2_4_4 .columnBox:nth-of-type(-n + 2) {
    margin-top: 0;
  }
  .column2_4_4 .columnBox:nth-of-type(-n + 4) {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .column2Wrap .columnBox {
    flex-basis: 100%;
    max-width: 100%;
  }
  .column2Wrap .columnBox:nth-of-type(n + 3) {
    margin-top: 0;
  }
  .column2Wrap .columnBox:nth-of-type(n + 2) {
    margin-top: 20px;
  }
  .column2Wrap.sp3_7 .columnBox:nth-of-type(odd) {
    flex-basis: 100%;
    max-width: 100%;
  }
  .column2Wrap.sp3_7 .columnBox:nth-of-type(even) {
    flex-basis: 100%;
    max-width: 100%;
  }
  .column2Wrap.sp7_3 .columnBox:nth-of-type(odd) {
    flex-basis: 100%;
    max-width: 100%;
  }
  .column2Wrap.sp7_3 .columnBox:nth-of-type(even) {
    flex-basis: 100%;
    max-width: 100%;
  }
  .column2Wrap {
    /* &.lp3_7 {
              .columnBox {
                  &:nth-of-type(odd) {
                      flex-basis: 100%;
                      max-width: 100%;
                  }
                  &:nth-of-type(even) {
                      flex-basis: 100%;
                      max-width: 100%;
                  }
              }
          }
          &.lp7_3 {
              .columnBox {
                  &:nth-of-type(odd) {
                      flex-basis: 100%;
                      max-width: 100%;
                  }
                  &:nth-of-type(even) {
                      flex-basis: 100%;
                      max-width: 100%;
                  }
              }
          } */
  }
  .column2Wrap.sp140 .columnBox:nth-of-type(odd) {
    flex-basis: 100%;
    max-width: 100%;
  }
  .column2Wrap.sp140 .columnBox:nth-of-type(even) {
    flex-basis: 100%;
    max-width: 100%;
  }
  .column2Wrap.sp140 .columnBox:nth-of-type(n + 2) {
    margin-top: 20px;
  }
  .column2Wrap.sp250 .columnBox:nth-of-type(odd) {
    flex-basis: 100%;
    max-width: 100%;
  }
  .column2Wrap.sp250 .columnBox:nth-of-type(even) {
    flex-basis: 100%;
    max-width: 100%;
  }
  .column2Wrap.sp250 .columnBox:nth-of-type(n + 2) {
    margin-top: 20px;
  }
  .column3Wrap .columnBox {
    flex-basis: 100%;
    max-width: 100%;
  }
  .column3Wrap .columnBox:nth-of-type(n + 2) {
    margin-top: 20px;
  }
  .column3Wrap.justify-center .columnBox:nth-of-type(n + 2) {
    margin-top: 0;
  }
  .column4Wrap .columnBox {
    flex-basis: 100%;
  }
  .column4Wrap .columnBox:nth-of-type(n + 2) {
    margin-top: 20px;
  }
  .column6Wrap {
    justify-content: space-between;
  }
  .column6Wrap .columnBox {
    flex-basis: calc(50% - 5px);
    max-width: calc(50% - 5px);
  }
  .column6Wrap .columnBox:nth-of-type(n + 4) {
    margin-top: 0;
  }
  .column6Wrap .columnBox:nth-of-type(n + 7) {
    margin-top: 0;
  }
  .column6Wrap .columnBox:nth-of-type(n + 3) {
    margin-top: 20px;
  }
  .column1_1_2 .columnBox {
    flex-basis: 100%;
    max-width: 100%;
  }
  .column1_1_2 .columnBox:nth-of-type(n + 2) {
    margin-top: 20px;
  }
  .column1_3_3 .columnBox {
    flex-basis: 100%;
    max-width: 100%;
  }
  .column1_3_3 .columnBox:nth-of-type(n + 4) {
    margin-top: 0;
  }
  .column2_3_3 .columnBox {
    flex-basis: calc((100% - 30px * (2 - 1)) / 2);
    max-width: calc((100% - 30px * (2 - 1)) / 2);
  }
  .column2_3_3 .columnBox:nth-of-type(n + 4) {
    margin-top: 0;
  }
  .column2_3_3 .columnBox:nth-of-type(n + 3) {
    margin-top: 20px;
  }
  .column2_4_4 .columnBox {
    flex-basis: calc((100% - 30px * (2 - 1)) / 2);
    max-width: calc((100% - 30px * (2 - 1)) / 2);
  }
  .column2_4_4 .columnBox:nth-of-type(n + 2) {
    margin-top: 0;
  }
  .column2_4_4 .columnBox:nth-of-type(n + 3) {
    margin-top: 20px;
  }
  .order1 {
    order: 1;
  }
  .order2 {
    order: 2;
  }
}
/* ---------------------------------------------------------------- */
/* ヘッダー */
/* ---------------------------------------------------------------- */
.bgw {
  background: #fff;
}

#header {
  height: 100px;
  padding-bottom: 5px;
  z-index: 5;
  position: absolute;
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid #FFFFFF;
  top: 0;
}
#header #headerCnt {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 auto;
  overflow: hidden;
  border-bottom: 1px solid #FFFFFF;
  padding: 0 0 0 60px;
}
#header #headerCnt #logoArea {
  flex-basis: 248px;
  width: 248px;
  height: 100px;
  align-self: center;
}
#header #headerCnt #logoArea #logo {
  margin: 0 !important;
  height: 100%;
  width: 100%;
  display: block;
}
#header #headerCnt #logoArea #logo a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
#header #headerCnt #logoArea #logo a img {
  max-width: 248px;
  height: auto;
}
#header #headerCnt #logoArea a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
#header #headerCnt #logoArea a img {
  max-width: 230px;
  height: auto;
}
#header #headerCnt #headerContact {
  display: inline-flex;
  margin-left: auto;
}
#header #headerCnt #headerContact .header_naviArea {
  display: flex;
}
#header #headerCnt #headerContact .header_naviArea .header_naviArea_inner {
  padding-right: 25px;
  border-right: #FFFFFF solid 1px;
  padding-top: 5px;
}
#header #headerCnt #headerContact .header_naviArea .header_naviArea_inner ul {
  display: flex;
  justify-content: flex-end;
  margin: 11px 0;
}
#header #headerCnt #headerContact .header_naviArea .header_naviArea_inner ul li {
  list-style: none;
  margin-right: 35px;
}
#header #headerCnt #headerContact .header_naviArea .header_naviArea_inner ul li:last-child {
  margin-right: 0;
}
#header #headerCnt #headerContact .header_naviArea .header_naviArea_inner ul li a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 14px;
  position: relative;
  z-index: 6;
}
@media print, screen and (min-width: 768px) {
  #header #headerCnt #headerContact .header_naviArea .header_naviArea_inner ul li a:hover, #header #headerCnt #headerContact .header_naviArea .header_naviArea_inner ul li a:focus {
    opacity: 0.7;
  }
}
#header #headerCnt #headerContact .header_naviArea .header_subcontact {
  width: 160px;
}
#header #headerCnt #headerContact .header_naviArea .header_subcontact .header_contactArea {
  border-bottom: #FFFFFF solid 1px;
  height: 50%;
}
#header #headerCnt #headerContact .header_naviArea .header_subcontact .header_contactArea:last-child {
  border-bottom: none;
}
#header #headerCnt #headerContact .header_naviArea .header_subcontact .header_contactArea a {
  font-size: 16px;
  font-weight: 400;
  color: #FFFFFF;
  width: 100%;
  height: 100%;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-left: 15px;
}
#header #headerCnt #headerContact .header_naviArea .header_subcontact .header_contactArea a::before {
  content: "";
  position: absolute;
  background: url("images/home/svg/icon_tel.svg") no-repeat;
  background-size: 15px;
  background-position: center;
  width: 15px;
  height: 15px;
  top: 18px;
  left: 16.3px;
}
#header #headerCnt #headerContact .header_naviArea .header_subcontact .header_contactArea a.h_contact {
  font-size: 14px;
}
#header #headerCnt #headerContact .header_naviArea .header_subcontact .header_contactArea a.h_contact::before {
  background: url("images/home/svg/icon_contact.svg") no-repeat;
  background-size: 20px;
  background-position: center;
  width: 20px;
  height: 18.26px;
  left: 14.5px;
}
@media print, screen and (min-width: 768px) {
  #header #headerCnt #headerContact .header_naviArea .header_subcontact .header_contactArea a:hover, #header #headerCnt #headerContact .header_naviArea .header_subcontact .header_contactArea a:focus {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1160px) {
  #header #headerCnt #logoArea {
    flex-basis: 180px;
    width: 180px;
  }
  #header #headerCnt #logoArea #logo a img {
    max-width: 180px;
  }
  #header #headerCnt #headerContact .header_naviArea .header_naviArea_inner ul li {
    margin-right: 20px;
  }
  #header #headerCnt #headerContact .header_naviArea .header_naviArea_inner ul li a {
    font-size: 12px !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #header .header_naviArea_inner {
    display: none;
  }
  #header .header_subcontact {
    border-left: #FFFFFF solid 1px;
  }
}
@media screen and (max-width: 768px) {
  #header {
    height: 60px !important;
    border-bottom: 1px solid #FFFFFF;
    padding-bottom: 0;
  }
  #header #headerCnt {
    max-width: 750px;
    justify-content: space-between;
    height: 60px;
    padding: 0 15px;
    border-bottom: none;
  }
  #header #headerCnt #logoArea {
    margin-left: 0;
    flex-basis: 172px;
    width: 172px;
    height: 60px;
  }
  #header #headerCnt #logoArea #logo a img {
    max-width: 172px;
  }
  #header #headerCnt #logoArea a img {
    max-width: 172px;
  }
  #header #headerCnt #headerContact {
    flex-basis: 100%;
    width: 100%;
  }
  #header #headerCnt #headerContact .header_naviArea {
    display: none !important;
  }
  #header.fixed {
    position: fixed;
    background: #ffffff;
  }
  #header.fixed #logo {
    margin: 6px 0 0 0px !important;
  }
}
#header.fixed {
  width: 100%;
  position: fixed;
  margin: 0 auto;
  z-index: 5;
  height: 100px;
  top: 0;
  transition: ease-in 0.1s;
  box-shadow: 1px 1px 15px #eee;
  background: #FFFFFF;
  opacity: 0.9;
  overflow: hidden;
}
#header.fixed + #main {
  margin-top: 70px !important;
}
#header.fixed #headerCnt #logoArea #logo a {
  background: url("images/home/svg/logo_b.svg") no-repeat;
  background-size: 248px;
  background-position: center;
  width: 248px;
  height: 100%;
}
#header.fixed #headerCnt #logoArea #logo a img {
  display: none;
}
@media screen and (max-width: 768px) {
  #header.fixed #headerCnt #logoArea #logo a {
    background-size: 172px;
    background-position: center;
    width: 172px;
  }
}
#header.fixed #headerCnt #logoArea a {
  background: url("images/home/svg/logo_b.svg") no-repeat;
  background-size: 248px;
  background-position: center;
  width: 248px;
  height: 41px;
}
#header.fixed #headerCnt #logoArea a img {
  display: none;
}
@media screen and (max-width: 768px) {
  #header.fixed #headerCnt #logoArea a {
    background-size: 172px;
    background-position: center;
    width: 172px;
  }
}
#header.fixed #headerCnt #headerContact .header_naviArea .header_naviArea_inner ul li a {
  color: #333333;
  position: relative;
  z-index: 6;
}
#header.fixed #headerCnt #headerContact .header_naviArea .header_naviArea_inner ul li.mega_menubtn .mega_menu_backgrand {
  backdrop-filter: none;
}
#header.fixed #headerCnt #headerContact .header_naviArea .header_naviArea_inner ul li.mega_menubtn .mega_menu .mega_menu_inner {
  backdrop-filter: blur(50px);
  background: #FFFFFF;
  opacity: 1;
}
#header.fixed #headerCnt #headerContact .header_naviArea .header_subcontact {
  border-left: #333333 solid 1px;
}
#header.fixed #headerCnt #headerContact .header_naviArea .header_subcontact .header_contactArea:first-child {
  border-bottom: #333333 solid 1px;
}
#header.fixed #headerCnt #headerContact .header_naviArea .header_subcontact .header_contactArea a {
  color: #333333;
}
#header.fixed #headerCnt #headerContact .header_naviArea .header_subcontact .header_contactArea a::before {
  background: url("images/home/svg/h_hover_tel.svg") no-repeat;
  background-size: 15px;
  background-position: center;
}
#header.fixed #headerCnt #headerContact .header_naviArea .header_subcontact .header_contactArea a.h_contact::before {
  background: url("images/home/svg/h_hover_contact.svg") no-repeat;
  background-size: 15px;
  background-position: center;
}
#header.fixed #headerCnt #headerContact #drawerNaviWrap {
  border-left: #333333 solid 1px;
}
#header.fixed #headerCnt #headerContact #drawerNaviWrap .drawerNaviBtnWrap .drawerNaviBtn:after {
  color: #333333;
}
#header.fixed #headerCnt #headerContact #drawerNaviWrap .drawerNaviBtnWrap .drawerNaviBtn span {
  background: #333333;
}
@media screen and (max-width: 1160px) {
  #header.fixed #headerCnt #logoArea {
    flex-basis: 180px;
    width: 180px;
  }
  #header.fixed #headerCnt #logoArea #logo a {
    background-size: 180px;
    background-position: center;
    width: 180px;
  }
}

.single #header {
  width: 100%;
  position: fixed;
  margin: 0 auto;
  z-index: 5;
  height: 100px;
  top: 0;
  transition: ease-in 0.1s;
  box-shadow: 1px 1px 15px #eee;
  background: #FFFFFF;
  opacity: 0.9;
  overflow: hidden;
}
.single #header + #main {
  margin-top: 70px !important;
}
.single #header #headerCnt #logoArea #logo a {
  background: url("images/home/svg/logo_b.svg") no-repeat;
  background-size: 248px;
  background-position: center;
  width: 248px;
  height: 100%;
}
.single #header #headerCnt #logoArea #logo a img {
  display: none;
}
@media screen and (max-width: 768px) {
  .single #header #headerCnt #logoArea #logo a {
    background-size: 172px;
    background-position: center;
    width: 172px;
    height: 100%;
  }
}
.single #header #headerCnt #logoArea a {
  background: url("images/home/svg/logo_b.svg") no-repeat;
  background-size: 248px;
  background-position: center;
  width: 248px;
  height: 41px;
}
.single #header #headerCnt #logoArea a img {
  display: none;
}
@media screen and (max-width: 768px) {
  .single #header #headerCnt #logoArea a {
    background-size: 172px;
    background-position: center;
    width: 172px;
  }
}
.single #header #headerCnt #headerContact .header_naviArea .header_naviArea_inner ul li a {
  color: #333333;
  position: relative;
  z-index: 6;
}
.single #header #headerCnt #headerContact .header_naviArea .header_naviArea_inner ul li.mega_menubtn .mega_menu_backgrand {
  backdrop-filter: none;
}
.single #header #headerCnt #headerContact .header_naviArea .header_naviArea_inner ul li.mega_menubtn .mega_menu .mega_menu_inner {
  backdrop-filter: blur(50px);
  background: #FFFFFF;
  opacity: 1;
}
.single #header #headerCnt #headerContact .header_naviArea .header_subcontact {
  border-left: #333333 solid 1px;
}
.single #header #headerCnt #headerContact .header_naviArea .header_subcontact .header_contactArea:first-child {
  border-bottom: #333333 solid 1px;
}
.single #header #headerCnt #headerContact .header_naviArea .header_subcontact .header_contactArea a {
  color: #333333;
}
.single #header #headerCnt #headerContact .header_naviArea .header_subcontact .header_contactArea a::before {
  background: url("images/home/svg/h_hover_tel.svg") no-repeat;
  background-size: 15px;
  background-position: center;
}
.single #header #headerCnt #headerContact .header_naviArea .header_subcontact .header_contactArea a.h_contact::before {
  background: url("images/home/svg/h_hover_contact.svg") no-repeat;
  background-size: 15px;
  background-position: center;
}
.single #header #headerCnt #headerContact #drawerNaviWrap {
  border-left: #333333 solid 1px;
}
.single #header #headerCnt #headerContact #drawerNaviWrap .drawerNaviBtnWrap .drawerNaviBtn:after {
  color: #333333;
}
.single #header #headerCnt #headerContact #drawerNaviWrap .drawerNaviBtnWrap .drawerNaviBtn span {
  background: #333333;
}

/*----------------*/
/*mega_menu*/
.mega_menubtn:hover ~ .header_box a {
  color: #d5d5d5;
}

.mega_menubtn:hover .mega_menu {
  display: block;
}
.mega_menubtn:hover .mega_menu_backgrand {
  display: block;
}

.mega_menu {
  position: fixed;
  width: 100%;
  padding-top: 101px;
  z-index: 5;
  height: 150px;
  top: 0;
  left: 0;
  display: none;
}
.mega_menu .mega_menu_inner {
  backdrop-filter: blur(50px);
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  padding-top: 12px;
}
.mega_menu .mega_menu_inner .mega_box {
  margin-right: 75px;
}
.mega_menu .mega_menu_inner .mega_box:last-child {
  margin-right: 0;
}
.mega_menu .mega_menu_inner .mega_box a {
  position: relative;
}
.mega_menu .mega_menu_inner .mega_box a::after {
  content: "";
  position: absolute;
  width: 17px;
  height: 4px;
  background: url("images/home/right_p.svg") no-repeat;
  background-size: 17px;
  background-position: center;
  top: 8px;
  right: -30px;
}

.mega_menu_backgrand {
  backdrop-filter: blur(50px);
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  height: 150px;
  display: none;
  z-index: -1;
}

/* ---------------------------------------------------------------- */
/* ヘッダーメニュー */
/* ---------------------------------------------------------------- */
/* SPメニュー */
/* ----------------------------------- */
.admin-bar #navi_contents.navi_contents-on {
  padding-top: 46px !important;
}

.openSpNavi {
  width: 100%;
  height: 100%;
  overflow: hidden !important;
}

#drawerNaviWrap {
  font-weight: 400;
  border-left: #FFFFFF solid 1px;
}
#drawerNaviWrap .drawerNaviBtnWrap {
  width: 100px;
  height: 100px;
  position: relative;
  cursor: pointer;
}
#drawerNaviWrap .drawerNaviBtn {
  display: block;
  position: absolute;
  top: 30px;
  left: 50%;
  width: 50px;
  margin-left: -25px;
  height: 13px;
  transition: all 0.5s;
  z-index: 3;
}
#drawerNaviWrap .drawerNaviBtn:after {
  content: "MENU";
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  font-weight: 400;
  color: #FFFFFF;
}
#drawerNaviWrap .drawerNaviBtn span {
  display: block;
  position: absolute;
  left: 0;
  width: 50px;
  height: 1px;
  background-color: #FFFFFF;
  border-radius: 2px;
  transition: all 0.5s;
}
#drawerNaviWrap .drawerNaviBtn span:nth-child(1) {
  top: 0;
}
#drawerNaviWrap .drawerNaviBtn span:nth-child(2) {
  top: 10px;
}
#drawerNaviWrap .drawer-nav {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  -webkit-overflow-scrolling: touch;
  transition: background-color 0.4s ease, opacity 0.4s ease, visibility 0.4s;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: -1;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
#drawerNaviWrap .drawer-nav .drawerInner {
  padding: 40px 0 90px;
}
#drawerNaviWrap .drawer-nav .drawerNavClose {
  opacity: 0;
}
#drawerNaviWrap .drawer-nav .drawernav__logo {
  margin-bottom: 63px;
}
#drawerNaviWrap .drawer-nav .drawernav__logo a {
  width: 100%;
  height: 100%;
  display: block;
}
#drawerNaviWrap .drawer-nav .drawernav__Wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
#drawerNaviWrap .drawer-nav .drawernav__Wrap .drawernav__col {
  max-width: 33.3%;
  flex-basis: 33.3%;
  padding-right: 15px;
}
#drawerNaviWrap .drawer-nav .drawernav__Wrap .drawernav__col ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
#drawerNaviWrap .drawer-nav .drawernav__Wrap .drawernav__col ul.sub-menu {
  padding-top: 10px;
}
#drawerNaviWrap .drawer-nav .drawernav__Wrap .drawernav__col ul li {
  padding: 8px 0;
}
#drawerNaviWrap .drawer-nav .drawernav__Wrap .drawernav__col ul li.pagelinks a {
  font-size: 16px;
}
#drawerNaviWrap .drawer-nav .drawernav__Wrap .drawernav__col ul li a {
  font-size: 18px;
  color: #FFFFFF;
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: block;
}
@media print, screen and (min-width: 768px) {
  #drawerNaviWrap .drawer-nav .drawernav__Wrap .drawernav__col ul li a:hover, #drawerNaviWrap .drawer-nav .drawernav__Wrap .drawernav__col ul li a:focus {
    opacity: 0.7;
  }
}
#drawerNaviWrap .drawer-nav .drawernav_btn {
  display: flex;
  flex-wrap: wrap;
  gap: 0 30px;
}
#drawerNaviWrap .drawer-nav .drawernav_btn .box a {
  margin: 10px auto;
}
#drawerNaviWrap.open .drawerNavClose {
  line-height: 1;
  position: fixed;
  width: 100px;
  height: 100px;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 10px;
  z-index: 999;
  opacity: 1;
  cursor: pointer;
}
#drawerNaviWrap.open .drawerNavClose img {
  position: relative;
}
#drawerNaviWrap.open .drawerNavClose:after {
  content: "CLOSE";
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  position: absolute;
  width: 100%;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  font-size: 14px;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}
#drawerNaviWrap.open .drawer-nav {
  visibility: visible;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 999;
  transition: background-color 0.4s ease, opacity 0.4s ease, visibility 0.4s;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  #drawerNaviWrap {
    position: absolute;
    top: 0;
    right: 0;
  }
  #drawerNaviWrap .drawerNaviBtnWrap {
    width: 60px;
    height: 60px;
  }
  #drawerNaviWrap .drawerNaviBtnWrap .drawerNaviBtn {
    width: 30px;
    margin-left: -15px;
    top: 15px;
  }
  #drawerNaviWrap .drawerNaviBtnWrap .drawerNaviBtn::after {
    bottom: -22px;
  }
  #drawerNaviWrap .drawerNaviBtnWrap .drawerNaviBtn span {
    width: 30px;
  }
  #drawerNaviWrap .drawer-nav .drawernav__logo a img {
    max-width: 250px;
  }
  #drawerNaviWrap .drawer-nav .drawernav__Wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  #drawerNaviWrap .drawer-nav .drawernav__Wrap .drawernav__col {
    max-width: 100%;
    flex-basis: 100%;
  }
  #drawerNaviWrap .drawer-nav .drawernav__Wrap .drawernav__col ul li a {
    font-size: 16px;
  }
  #drawerNaviWrap.open .drawerNavClose {
    top: 5px;
    right: 5px;
    width: 60px;
    height: 60px;
  }
  #drawerNaviWrap.open .drawerNavClose::after {
    font-size: 12px;
    bottom: 0;
  }
  #drawerNaviWrap.open .drawerNavClose img {
    max-width: 30px;
  }
}
/* ----------------------------------- */
/* PCメニュー */
/* ----------------------------------- */
#mainNaviArea {
  display: block;
  margin: 0;
  padding: 0;
  background: #FFFFFF;
}
#mainNaviArea #mainNavi {
  padding: 0;
}
#mainNaviArea #mainNavi ul {
  margin: 0;
  padding: 0;
  width: 100%;
  position: relative;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#mainNaviArea #mainNavi ul > li {
  font-size: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
  flex: 1 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
#mainNaviArea #mainNavi ul > li a {
  justify-content: center;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-self: center;
  text-align: center;
  font-size: 16px;
  color: #fff;
  margin: 0;
  padding: 0;
  text-decoration: none;
  line-height: 1.2;
}
#mainNaviArea #mainNavi ul > li a:hover, #mainNaviArea #mainNavi ul > li a:focus, #mainNaviArea #mainNavi ul > li a:active {
  cursor: pointer;
  color: #F00;
}
#mainNaviArea #mainNavi ul > li a span {
  flex-basis: 100%;
  font-size: 12px;
}
#mainNaviArea #mainNavi ul > li.current > a {
  color: #F00 !important;
}
#mainNaviArea #mainNavi ul > li ul.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: block;
  text-align: left;
  z-index: 0;
  padding: 0;
  margin: 0;
  height: 0;
  width: 180px;
}
#mainNaviArea #mainNavi ul > li ul.sub-menu li {
  overflow: hidden;
  padding: 0;
  margin: 0;
  height: 0;
  width: 180px;
}
#mainNaviArea #mainNavi ul > li ul.sub-menu li a {
  margin: 0;
  opacity: 0;
  padding: 0 10px;
  font-size: 14px;
  display: block;
  text-align: left;
  position: relative;
}
#mainNaviArea #mainNavi ul > li:hover, #mainNaviArea #mainNavi ul > li:focus {
  transition: 0.3s ease-in-out;
}
#mainNaviArea #mainNavi ul > li:hover ul.sub-menu, #mainNaviArea #mainNavi ul > li:focus ul.sub-menu {
  z-index: 1;
  height: 100%;
  opacity: 1;
}
#mainNaviArea #mainNavi ul > li:hover ul.sub-menu li, #mainNaviArea #mainNavi ul > li:focus ul.sub-menu li {
  padding: 0;
  height: auto;
  opacity: 1;
  width: 180px;
  text-align: left;
  background: #FFFFFF;
  border-bottom: #ccc 1px solid;
}
#mainNaviArea #mainNavi ul > li:hover ul.sub-menu li a, #mainNaviArea #mainNavi ul > li:focus ul.sub-menu li a {
  padding: 10px;
  opacity: 1;
  display: block;
  border-bottom: 1px solid #FFFFFF;
  transition: 0.3s ease-in-out;
}
#mainNaviArea #mainNavi ul > li:hover ul.sub-menu li a:last-of-type, #mainNaviArea #mainNavi ul > li:focus ul.sub-menu li a:last-of-type {
  border: none;
}
#mainNaviArea #mainNavi ul > li:hover ul.sub-menu li a:after, #mainNaviArea #mainNavi ul > li:focus ul.sub-menu li a:after {
  position: absolute;
  align-items: center;
  border: none;
  content: "\f0a9";
  font-family: FontAwesome;
  transform: none;
  color: #fff;
  right: 15px;
  font-size: 14px;
  border-radius: 0;
  top: 27%;
  transition: 0.3s ease-in;
}
#mainNaviArea #mainNavi ul > li:hover ul.sub-menu li a:hover, #mainNaviArea #mainNavi ul > li:hover ul.sub-menu li a:focus, #mainNaviArea #mainNavi ul > li:focus ul.sub-menu li a:hover, #mainNaviArea #mainNavi ul > li:focus ul.sub-menu li a:focus {
  color: #FFFFFF;
  background: #fff;
}
#mainNaviArea #mainNavi ul > li:hover ul.sub-menu li a:hover:after, #mainNaviArea #mainNavi ul > li:hover ul.sub-menu li a:focus:after, #mainNaviArea #mainNavi ul > li:focus ul.sub-menu li a:hover:after, #mainNaviArea #mainNavi ul > li:focus ul.sub-menu li a:focus:after {
  color: #FFFFFF;
}
#mainNaviArea #mainNavi ul > li:hover ul.sub-menu li:last-of-type a, #mainNaviArea #mainNavi ul > li:focus ul.sub-menu li:last-of-type a {
  border-bottom: none;
}
#mainNaviArea #mainNavi ul > li.current-menu-item > a {
  color: #c7c7c7 !important;
}
#mainNaviArea #mainNavi ul > li.current-menu-item > a ul.sub-menu > a {
  color: #c7c7c7 !important;
  background: #fff;
}
#mainNaviArea #mainNavi ul > li.current-menu-item > a ul.sub-menu > a:hover, #mainNaviArea #mainNavi ul > li.current-menu-item > a ul.sub-menu > a:focus {
  color: #c7c7c7 !important;
}
#mainNaviArea #mainNavi ul > li.current-menu-parent > ul li.current-menu-item a {
  color: #c7c7c7 !important;
  background: #fff;
}

.admin-bar #mainNaviArea.fixed {
  top: 32px !important;
}
.admin-bar #mainNaviArea.fixed + #main {
  margin-top: 70px !important;
}

@media screen and (max-width: 768px) {
  #mainNaviArea {
    display: none;
  }
}
/* ---------------------------------------------------------------- */
/* フッターエリア */
/* ---------------------------------------------------------------- */
#footer {
  clear: both;
  position: relative;
  background: #f5f5f5;
  padding: 60px 0 0;
}
#footer #footerCntWrap {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 0 150px;
  margin-bottom: 90px;
}
#footer #footerCnt {
  margin: 0;
}
#footer #footerCnt .footerLogo {
  max-width: 253px;
  margin-bottom: 30px;
}
#footer #footerCnt .footerLogo a {
  width: 100%;
  height: 100%;
  display: block;
}
#footer #footerCnt .footerLogo a img {
  max-width: 253px;
}
#footer #footerCnt p {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}
#footer #footerCnt .f_link {
  color: #333333;
  text-decoration: none;
}
#footer #footerNaviWrap {
  display: flex;
  gap: 0 154px;
}
#footer #footerNaviWrap p {
  font-size: 14px;
  font-weight: bold;
  margin: 0 0 10px;
}
#footer #footerNaviWrap .naviBox {
  padding-top: 100px;
}
#footer #footerNaviWrap .naviBox ul {
  margin: 0;
  padding: 0;
}
#footer #footerNaviWrap .naviBox ul li {
  display: block;
  color: #333333;
  line-height: 1.9;
}
#footer #footerNaviWrap .naviBox ul li a {
  text-decoration: none;
  font-size: 14px;
  color: #333333;
}
#footer #footerNaviWrap .naviBox ul li a:hover {
  color: #333333;
  opacity: 0.6;
}
#footer #copyright {
  flex-basis: 100%;
  width: 100%;
  text-align: center;
  padding: 25px 15px;
}
#footer #copyright p {
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  margin: 0;
}
#footer #copyright .copyrightwrap {
  display: flex;
  justify-content: center;
  margin-bottom: 23px;
}
#footer #copyright .copyrightwrap .copyrightcol {
  margin: 0 10px;
}
#footer #copyright .copyrightwrap .copyrightcol.copyright_privacy {
  position: relative;
}
#footer #copyright .copyrightwrap .copyrightcol.copyright_privacy::after {
  position: absolute;
  content: "｜";
  font-size: 12px;
  top: 5px;
  right: -15px;
}
#footer #copyright .copyrightwrap .copyrightcol a {
  font-size: 12px;
  color: #333;
  text-decoration: none;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #footer {
    padding: 60px 0 0;
  }
  #footer #footerNaviWrap {
    flex-basis: calc(100% - 350px);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 0px;
  }
  #footer #footerNaviWrap .naviBox {
    padding-top: 60px;
  }
  #footer #footerNaviWrap .naviBox ul {
    margin: 0;
    padding: 0;
  }
  #footer #footerNaviWrap .naviBox ul li {
    display: block;
    color: #333333;
    line-height: 1.9;
  }
  #footer #footerNaviWrap .naviBox ul li a {
    text-decoration: none;
    font-size: 14px;
    color: #333333;
  }
  #footer #footerNaviWrap .naviBox ul li a:hover {
    color: #333333;
  }
}
@media screen and (max-width: 768px) {
  #footer {
    padding: 50px 0 60px;
  }
  #footer #footerNaviWrap {
    display: none;
  }
  #footer #copyright {
    padding-bottom: 175px;
  }
  #footer #copyright .copyrightwrap {
    margin-bottom: 15px;
  }
  #footer #copyright .copyrightwrap:nth-child(2) {
    margin-bottom: 10px;
  }
}

/* ---------------------------------------------------------------- */
/* サイドバー  */
/* ---------------------------------------------------------------- */
#sidebar .widget-area {
  display: none;
}
#sidebar .widget img {
  max-width: 100%;
}

/* ---------------------------------------------------------------- */
/* ページナビ */
/* ---------------------------------------------------------------- */
.wp-pagenavi {
  position: relative;
  text-align: center;
  padding: 0 0;
  margin: 75px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
}
.wp-pagenavi a,
.wp-pagenavi span {
  color: #333;
  width: 37px;
  height: 37px;
  border: #707070 solid 1px;
  padding: 0;
  text-decoration: none;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
}
.wp-pagenavi a:hover,
.wp-pagenavi a:focus {
  color: #64937D;
}
.wp-pagenavi span.current {
  color: #64937D;
  font-weight: 700;
}
.wp-pagenavi span.pages {
  display: none;
}
.wp-pagenavi .nextpostslink {
  background: url("images/common/nextpostslink.svg") no-repeat;
  background-size: 10px;
  background-position: center center;
  width: 10px;
  height: 10px;
}
.wp-pagenavi .previouspostslink {
  background: url("images/common/previouspostslink.svg") no-repeat;
  background-size: 10px;
  background-position: center center;
  width: 10px;
  height: 10px;
}
.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink {
  font-size: 20px;
  color: #333;
  border: none;
}
.wp-pagenavi .nextpostslink:hover, .wp-pagenavi .nextpostslink:focus,
.wp-pagenavi .previouspostslink:hover,
.wp-pagenavi .previouspostslink:focus {
  color: #64937D;
  background: none;
  border: none;
}

.wp-pagenavi .last {
  display: none;
}

.wp-pagenavi .first {
  display: none;
}

/* ---------------------------------------------------------------- */
/* ページトップ ボタン */
/* ---------------------------------------------------------------- */
#pagetopArea {
  position: absolute;
  right: 15%;
  top: 156px;
}
#pagetopArea a {
  font-size: 14px;
  font-weight: 100;
  text-align: center;
  width: 100%;
  height: 36px;
  color: #333333;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  position: relative;
  font-weight: 400;
}
#pagetopArea a::before {
  position: absolute;
  content: "";
  background: url("images/home/svg/pagetop.svg") no-repeat;
  background-size: 30px;
  width: 30px;
  height: 25px;
  top: -11px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #pagetopArea {
    right: 5%;
    top: 60px;
  }
}
@media screen and (max-width: 768px) {
  #pagetopArea {
    right: 5%;
    top: 60px;
  }
}
/* ---------------------------------------------------------------- */
/* CTA固定ボタン */
/* ---------------------------------------------------------------- */
#fixedBtnSpArea {
  width: 100%;
  opacity: 0;
  z-index: 10;
  position: fixed;
  bottom: -50px;
  transition: 0.6s;
  background-color: #FFFFFF;
}
#fixedBtnSpArea.fixedsp {
  opacity: 1;
  transition: 0.6s;
  bottom: 0;
}
#fixedBtnSpArea #fixedBtnSp {
  display: none !important;
}
#fixedBtnSpArea #fixedBtnSp ul {
  margin: 0 0 0 0;
  padding: 0;
  height: 50px;
  width: 100%;
  overflow: hidden;
  display: flex;
}
#fixedBtnSpArea #fixedBtnSp ul li {
  list-style: none;
  flex-basis: 100%;
  border-right: #333333 solid 1px;
}
#fixedBtnSpArea #fixedBtnSp ul li:last-child {
  border-right: none;
}
#fixedBtnSpArea #fixedBtnSp ul li a {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  color: #333333;
  justify-content: center;
  align-items: stretch;
  margin: 0;
  padding: 20px 10px 0;
  font-size: 10px;
  font-weight: 400;
  text-decoration: none;
  background-repeat: no-repeat;
  background-size: auto 20px;
  background-position: center 10px;
}
#fixedBtnSpArea #fixedBtnSp ul li a:hover, #fixedBtnSpArea #fixedBtnSp ul li a:focus {
  background-color: #333333;
  color: #FFFFFF;
}
#fixedBtnSpArea #fixedBtnSp ul li + li {
  border-left: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  #fixedBtnSpArea #fixedBtnSp {
    display: block !important;
  }
}

/* ---------------------------------------------------------------- */
/* HOME */
/* ---------------------------------------------------------------- */
#indexPage p {
  text-align: justify;
  text-justify: inter-ideograph;
}
/* ---------------------------- */
/* inc/news */
/* ---------------------------- */
#newsArea {
  background: #f5f5f5;
}
#newsArea .news_inner {
  display: grid;
  grid-template-columns: 318px 1fr;
  gap: 0 30px;
}
#newsArea .news_inner .conttll span {
  font-size: 48px;
  color: #999999;
  font-weight: 100;
}
#newsArea .news_inner .conttll .conttllh3 {
  font-size: 18px;
  margin: 0;
  font-weight: 400;
}
#newsArea .news_inner .news_article {
  padding-top: 15px;
}
#newsArea .news_inner .news_article .postListWrap {
  display: block;
  margin-bottom: 30px;
}
#newsArea .news_inner .news_article .postListWrap .postBox {
  border-bottom: #EFEFEF solid 1px;
}
#newsArea .news_inner .news_article .postListWrap .postBox a {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  text-decoration: none;
  color: #333;
  width: 100%;
  height: 100%;
  font-size: 16px;
  font-weight: 400;
  padding: 20px 0 25px;
}
#newsArea .news_inner .news_article .postListWrap .postBox a:hover {
  border-bottom: #efefef solid 1px;
  transition: all 2s;
}
#newsArea .news_inner .news_article .postListWrap .postBox a .permaLinkWrap {
  max-width: calc(100% - 135px);
  flex-basis: calc(100% - 135px);
}
#newsArea .news_inner .news_article .postListWrap .postBox a .permaLinkWrap .news_time {
  display: flex;
}
#newsArea .news_inner .news_article .postListWrap .postBox a .permaLinkWrap .news_time time {
  margin-right: 24px;
  padding-top: 3px;
  font-weight: 400;
  color: #333;
}
#newsArea .news_inner .news_article .postListWrap .postBox a .permaLinkWrap .news_time .category-name {
  margin: 0;
  background: #FFFFFF;
  width: auto;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: #707070 solid 1px;
  font-size: 14px;
  color: #333;
  font-weight: 500;
  padding: 0 10px;
}
#newsArea .news_inner .news_article .postListWrap .postBox a .thumbnail {
  max-width: 120px;
  flex-basis: 120px;
  width: 100%;
  padding-bottom: 10%;
  position: relative;
  overflow: hidden;
  transition: 0.7s ease;
}
#newsArea .news_inner .news_article .postListWrap .postBox a .thumbnail:hover img {
  transform: scale(1.2);
  transition: 0.7s ease;
}
#newsArea .news_inner .news_article .postListWrap .postBox a .thumbnail img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 768px) {
  #newsArea {
    padding: 130px 0 34px;
  }
  #newsArea .news_inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px 0;
  }
  #newsArea .news_inner .conttll {
    margin: 0 auto;
    text-align: center;
  }
  #newsArea .news_inner .conttll span {
    font-size: 40px;
  }
  #newsArea .news_inner .news_article {
    padding-top: 0;
  }
}
/* ---------------------------- */
/* お知らせ一覧 */
/* ---------------------------- */
.news-postListWrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 30px;
  margin-bottom: 75px;
}
.news-postListWrap .postBox a {
  width: 100%;
  height: 100%;
  display: block;
  text-decoration: none;
  color: #333333;
}
.news-postListWrap .postBox a .thumbnail {
  position: relative;
  width: 100%;
  padding-bottom: 60%;
  overflow: hidden;
  margin-bottom: 20px;
}
.news-postListWrap .postBox a .thumbnail img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-postListWrap .postBox a .permaLinkWrap .box {
  display: flex;
  gap: 0 20px;
  margin-bottom: 20px;
}
.news-postListWrap .postBox a .permaLinkWrap .box time {
  font-size: 14px;
  font-weight: 400;
}
.news-postListWrap .postBox a .permaLinkWrap .box object {
  width: auto;
  height: 24px;
  border: #707070 solid 1px;
}
.news-postListWrap .postBox a .permaLinkWrap .box object a {
  width: 100%;
  padding: 0 12px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
}
.news-postListWrap .postBox a .permaLinkWrap p {
  margin: 0;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .news-postListWrap {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 0;
  }
}
/* ---------------------------------------------------------------- */
/* メインスライダー  */
/* ---------------------------------------------------------------- */
.top-fvSwiperWrap {
  position: relative;
}

.top-fvSwiper {
  height: 100vh;
}
.top-fvSwiper::after {
  content: "";
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}
.top-fvSwiper .swiper-wrapper .swiper-slide .slideimg_box {
  position: relative;
  padding-bottom: 100vh;
  overflow: hidden;
  width: 100%;
}
.top-fvSwiper .swiper-wrapper .swiper-slide .slideimg_box img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-slide-active .swiper-slide__item,
.swiper-slide-duplicate-active .swiper-slide__item,
.swiper-slide-prev .swiper-slide__item {
  animation: zoomanime 5s linear 0s normal both;
}

@keyframes zoomanime {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.3);
  }
}
.main_img {
  position: absolute;
  background: none;
  z-index: 3;
  bottom: 74px;
  left: 60px;
}
.main_img h2 {
  font-size: 48px;
  color: #fff;
  font-weight: 400;
  margin: 0;
  line-height: 1.45;
}
.main_img h2 span {
  font-size: 32px;
}
.main_img p {
  font-size: 24px;
  font-weight: 400;
  margin: 0;
  line-height: 1.45;
  color: #fff;
}

.snsbar {
  position: absolute;
  top: 125px;
  z-index: 0;
  right: 37px;
  display: flex;
  z-index: 3;
  gap: 0 20px;
}
.snsbar .snsbox a {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 768px) {
  .snsbar {
    top: 70px;
    right: 15px;
  }
  .top-fvSwiperWrap .main_img {
    top: 125px;
    bottom: auto;
    left: 15px;
  }
  .top-fvSwiperWrap .main_img h2 {
    font-size: 34px;
  }
  .top-fvSwiperWrap .main_img h2 span {
    font-size: 20px;
  }
  .top-fvSwiperWrap .main_img p {
    font-size: 16px;
  }
}
/* ---------------------------------------------------------------- */
/* floating_banner  */
/* ---------------------------------------------------------------- */
.floating_banner {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 4;
}
.floating_banner a {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 767px) {
  .floating_banner {
    bottom: 60px;
  }
  .floating_banner a {
    position: relative;
  }
  .floating_banner a .bannerclosebtn {
    position: absolute;
    top: -10px;
    right: -10px;
  }
}
/* ---------------------------- */
/* #slidebannerArea */
/* ---------------------------- */
#slidebannerArea {
  background: #efefef;
  padding: 34px 0 30px;
}

.banner-fvSwiper {
  padding-bottom: 50px;
}
.banner-fvSwiper .swiper-wrapper .swiper-slide {
  border-radius: 4px;
}
.banner-fvSwiper .swiper-wrapper .swiper-slide .box {
  border-radius: 4px;
}
.banner-fvSwiper .swiper-wrapper .swiper-slide .box a {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 4px;
}
.banner-fvSwiper .swiper-wrapper .swiper-slide .box a img {
  border-radius: 4px;
}
.banner-fvSwiper .swiper-wrapper .swiper-slide .box a:hover, .banner-fvSwiper .swiper-wrapper .swiper-slide .box a:focus {
  opacity: 1;
}
.banner-fvSwiper .swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
}
.banner-fvSwiper .swiper-pagination-bullet-active {
  background: #64937D;
}

/* ---------------------------- */
/* .content base */
/* ---------------------------- */
.content {
  padding: 120px 0;
}
.content .entitle {
  font-size: 48px;
  font-weight: 100;
  color: #999999;
  line-height: 1.4;
  display: block;
}
.content .entitle._center {
  text-align: center;
}
.content .title {
  font-size: 48px;
  line-height: 1.6;
  font-weight: 400;
}
.content .title._center {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .content {
    padding: 60px 0;
  }
  .content .title {
    font-size: 28px;
  }
}
/* ---------------------------- */
/* content01 */
/* ---------------------------- */
#content01 {
  background: url("images/home/concept_bg.jpg") no-repeat;
  background-position: center;
  background-size: cover;
}
#content01 .inner {
  background: rgba(255, 255, 255, 0.95);
  padding: 60px;
  text-align: center;
}
#content01 .inner .entitle {
  margin: 0 0 30px;
}
#content01 .inner .title {
  font-size: 40px;
  text-align: center;
  margin: 0 0 30px;
}
#content01 .inner p {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 767px) {
  #content01 .inner {
    padding: 45px 25px;
  }
  #content01 .inner .entitle {
    margin: 0 0 10px;
  }
  #content01 .inner .title {
    font-size: 28px;
    margin: 0 0 20px;
  }
  #content01 .inner p {
    font-size: 14px;
    text-align: left;
  }
}
/* ---------------------------- */
/* #content02 */
/* ---------------------------- */
#conceptArealink {
  height: 1px;
  display: block;
  padding-top: 80px;
  margin-top: -80px;
}

#content02 {
  background: #f8f8f8;
}
#content02 .box {
  padding-bottom: 60px;
}
#content02 .box .entitle {
  margin: 0 0 10px;
}
#content02 .box .title {
  margin: 0 0 10px;
}
#content02 .box p {
  font-size: 14px;
  font-weight: 400;
  color: #333333;
  margin: 0;
}
#content02 .inner {
  display: grid;
  grid-template-columns: 60% 1fr;
  gap: 0 80px;
  max-width: 1920px;
  margin: 0 auto;
}
#content02 .inner .imgbox {
  position: relative;
  width: 100%;
  padding-bottom: 432px;
  overflow: hidden;
}
#content02 .inner .imgbox img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#content02 .inner .linkbox {
  padding-right: 130px;
}
#content02 .inner .linkbox ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#content02 .inner .linkbox ul li {
  border-bottom: #d6d6d6 solid 1px;
}
#content02 .inner .linkbox ul li a {
  width: 100%;
  height: 100%;
  padding: 30px 65px 30px 0;
  display: block;
  text-decoration: none;
  color: #333333;
  font-size: 16px;
  font-weight: 400;
  position: relative;
}
#content02 .inner .linkbox ul li a::after {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  background: url("images/home/svg/green_circle_icon.svg") no-repeat;
  background-position: center;
  background-size: 40px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  right: 20px;
  transition: all 0.5s;
}
@media print, screen and (min-width: 768px) {
  #content02 .inner .linkbox ul li a:hover::after, #content02 .inner .linkbox ul li a:focus::after {
    right: 5px;
    transition: all 0.5s;
  }
}

@media screen and (min-width: 768px) and (max-width: 1310px) {
  #content02 .inner {
    gap: 0 40px;
  }
  #content02 .inner .linkbox {
    padding-right: 15px;
  }
}
@media screen and (max-width: 768px) {
  #content02 .box {
    padding-bottom: 20px;
  }
  #content02 .box .entitle {
    text-align: center;
  }
  #content02 .box .title {
    margin: 0 0 17px;
    text-align: center;
  }
  #content02 .inner {
    padding: 0 15px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }
  #content02 .inner .imgbox {
    padding-bottom: 207px;
  }
  #content02 .inner .linkbox {
    padding-right: 0;
  }
}
/* ---------------------------- */
/* #content04 */
/* ---------------------------- */
#content04 {
  position: relative;
  z-index: 1;
  background: #fff;
}
#content04::after {
  content: "";
  position: absolute;
  background-color: #F8F8F8;
  z-index: -1;
  width: 100%;
  height: 73%;
  bottom: 0;
}
#content04 .inr {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0 80px;
}
#content04 .inr .cont4txtbox {
  padding-top: 90px;
}
#content04 .inr .cont4txtbox .entitle {
  margin: 0 0 5px;
}
#content04 .inr .cont4txtbox .title {
  margin: 0 0 22px;
  line-height: 1.4;
}
#content04 .inr .cont4txtbox .txt {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}
#content04 .inr .content04imgbox {
  max-width: 55%;
  flex-basis: 55%;
}

@media screen and (max-width: 1290px) {
  #content04 {
    padding-top: 0;
  }
  #content04 .inr {
    gap: 0 30px;
  }
  #content04 .inr .content04imgbox {
    max-width: 45%;
    flex-basis: 45%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #content04 {
    padding-top: 0;
  }
  #content04 .inr {
    gap: 20px 0;
    justify-content: center;
  }
  #content04 .inr .content04imgbox {
    max-width: 100%;
    flex-basis: 100%;
    order: 1;
  }
  #content04 .inr .cont4txtbox {
    order: 2;
    padding-top: 0;
  }
}
@media screen and (max-width: 768px) {
  #content04 {
    padding-top: 0;
  }
  #content04 .inr {
    gap: 20px 0;
    justify-content: center;
  }
  #content04 .inr .content04imgbox {
    max-width: 100%;
    flex-basis: 100%;
    order: 1;
  }
  #content04 .inr .cont4txtbox {
    order: 2;
    padding-top: 0;
  }
  #content04 .entitle {
    margin: 0 0 10px;
    text-align: center;
  }
  #content04 .title {
    margin: 0 0 10px;
    text-align: center;
    font-size: 24px;
  }
  #content04 .txt {
    text-align: center;
    margin: 0 0 30px;
  }
}
/* ---------------------------- */
/* #content05 */
/* ---------------------------- */
#content05 {
  padding-top: 0;
  position: relative;
  background: #f5f5f5;
}
#content05 .content05imgbox {
  background: url("images/home/contact.jpg") no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  height: 400px;
}
#content05 .content05_inner {
  background: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  bottom: 0;
  width: 940px;
  padding: 40px 70px;
  display: grid;
  grid-template-columns: 1fr 290px;
  gap: 0 70px;
}
#content05 .content05_inner .leftbox h2 {
  font-size: 32px;
  font-weight: 400;
  text-align: center;
  line-height: 1.4;
  margin: 0;
}
#content05 .content05_inner .leftbox h2 span {
  color: #64937D;
}
#content05 .content05_inner .rightbox p {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  margin: 0 0 10px;
}
#content05 .content05_inner .rightbox .btnbox a {
  width: 100%;
  max-width: 290px;
  border-radius: 8px;
  background: #0F3D2E;
  font-size: 14px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  text-decoration: none;
  height: 60px;
  border: #0F3D2E solid 1px;
  position: relative;
  padding-left: 20px;
}
#content05 .content05_inner .rightbox .btnbox a::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  display: block;
  background: url(images/home/svg/line_w.svg) no-repeat;
  background-position: center;
  background-size: 27px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  left: 50%;
  margin-left: -100px;
}
@media print, screen and (min-width: 768px) {
  #content05 .content05_inner .rightbox .btnbox a:hover, #content05 .content05_inner .rightbox .btnbox a:focus {
    background: #fff;
    color: #0F3D2E;
  }
  #content05 .content05_inner .rightbox .btnbox a:hover::before, #content05 .content05_inner .rightbox .btnbox a:focus::before {
    background: url(images/home/svg/line_g.svg) no-repeat;
    background-position: center;
    background-size: 27px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  #content05 .content05imgbox {
    background-attachment: scroll;
  }
  #content05 .content05_inner {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #content05 {
    padding-bottom: 220px;
  }
  #content05 .content05imgbox {
    background: url("images/home/contact.jpg") no-repeat;
    background-attachment: scroll;
    background-position: center;
    background-size: cover;
    height: 250px;
  }
  #content05 .content05_inner {
    padding: 25px 27px;
    grid-template-columns: 1fr;
    width: 90%;
    gap: 20px 0;
    bottom: -70px;
  }
}
/* ---------------------------- */
/* #content06 */
/* ---------------------------- */
#content06 {
  background: #F8F8F8;
  padding: 60px 0;
}
#content06 .entitle {
  margin: 0 0 10px;
}
#content06 .title {
  margin: 0 0 30px;
  font-size: 18px;
}
#content06 .content06inr {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 40px;
  margin: 0 auto;
}
#content06 .content06inr .box {
  border-radius: 8px;
  height: 135px;
  position: relative;
  overflow: hidden;
}
#content06 .content06inr .box::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: url("images/home/qanda.jpg") no-repeat;
  background-position: center;
  background-size: cover;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
#content06 .content06inr .box a {
  width: 100%;
  height: 100%;
  display: block;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  position: relative;
}
#content06 .content06inr .box a::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: rgba(51, 51, 51, 0.6);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 8px;
  z-index: 1;
}
#content06 .content06inr .box a .txtbox {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
#content06 .content06inr .box a .txtbox p {
  text-align: center;
  margin: 0;
}
#content06 .content06inr .box._02::after {
  background: url("images/home/company.jpg") no-repeat;
  background-position: center;
  background-size: cover;
}
@media print, screen and (min-width: 768px) {
  #content06 .content06inr .box:hover::after, #content06 .content06inr .box:focus::after {
    transform: scale(1.1);
  }
}

@media screen and (max-width: 768px) {
  #content06 .content06inr {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px 0;
    max-width: 100%;
  }
  #content06 .content06inr .box {
    border-radius: 8px;
    height: 101px;
  }
  #content06 .content06inr .box::after {
    background: url("images/home/qanda.jpg") no-repeat;
    background-position: top center;
    background-size: cover;
  }
}
/* ---------------------------- */
/* #content07 */
/* ---------------------------- */
#content07 .title {
  font-size: 18px;
}
#content07 .cont7txt {
  text-align: center;
}

.accordion-container {
  margin: 40px auto;
  width: 100%;
}
.accordion-container .accordion-list {
  margin-bottom: 25px;
}
.accordion-container .accordion-list:first-child {
  margin-top: 10px;
}
.accordion-container .accordion-list .accordion-title {
  cursor: pointer;
  font-size: 18px;
  padding: 0 20px 20px;
  position: relative;
  font-weight: bold;
  border-bottom: #B2B2B2 solid 1px;
}
.accordion-container .accordion-list .accordion-title::before {
  position: absolute;
  content: "Q.";
  font-size: 18px;
  font-weight: 700;
  color: #64937D;
  left: 0;
  top: 0;
}
.accordion-container .accordion-list .accordion-title::after {
  position: absolute;
  content: "";
  top: 0;
  right: 25px;
  height: 30px;
  width: 30px;
  background: url("images/home/svg/plus.svg") no-repeat;
  background-position: center;
  background-size: 18px;
  transition: all 0.3s ease-in-out;
}
.accordion-container .accordion-list .accordion-title.open::after {
  transform: rotate(180deg) !important;
  background: url("images/home/svg/minus.svg") no-repeat;
  background-position: center;
  background-size: 30px;
}
.accordion-container .accordion-list .accordion-title h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  border-bottom: none;
  padding-bottom: 0;
}
.accordion-container .accordion-list .accordion-title h3::before {
  display: none;
}
.accordion-container .accordion-list .accordion-text {
  display: none;
  padding: 25px 20px 0;
  position: relative;
}
.accordion-container .accordion-list .accordion-text::before {
  position: absolute;
  content: "A.";
  font-size: 18px;
  font-weight: 500;
  color: #0F3D2E;
  left: 0;
  top: 23px;
}
.accordion-container .accordion-list .accordion-text .a_text {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .accordion-container .accordion-list .accordion-title {
    padding-right: 40px;
  }
  .accordion-container .accordion-list .accordion-title::after {
    right: 10px;
  }
}
/* ---------------------------------------------------------------- */
/* コンテンツ共通 */
/* ---------------------------------------------------------------- */
/* ニュースリストベース */
/* ---------------------------- */
/* ---------------------------- */
/* カスタム投稿一覧 */
/* ---------------------------- */
.postListWrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 30px;
  margin-bottom: 75px;
}
.postListWrap .postBox a {
  width: 100%;
  height: 100%;
  display: block;
  text-decoration: none;
  color: #333333;
}
.postListWrap .postBox a .thumbnail {
  position: relative;
  width: 100%;
  padding-bottom: 60%;
  overflow: hidden;
  margin-bottom: 10px;
}
.postListWrap .postBox a .thumbnail img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.postListWrap .postBox a .permalinkWrap time {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 2px;
}
.postListWrap .postBox a .permalinkWrap p {
  margin: 0;
  font-size: 16px;
}
@media print, screen and (min-width: 768px) {
  .postListWrap .postBox a:hover .thumbnail img, .postListWrap .postBox a:focus .thumbnail img {
    transform: scale(1.1);
    transition: transform 0.3s ease;
  }
}

@media screen and (max-width: 768px) {
  .postListWrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 15px;
  }
}
/* ---------------------------------------------------------------- */
/* inc/works 施工事例 */
/* ---------------------------------------------------------------- */
#worksArea .entitle {
  margin: 0 0 10px;
}
#worksArea .title {
  font-size: 18px;
  margin: 0 0 30px;
}

.works-postListWrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 20px;
}
.works-postListWrap .postBox a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  color: #333;
}
.works-postListWrap .postBox a .thumbnail {
  position: relative;
  width: 100%;
  padding-bottom: 65%;
  overflow: hidden;
  margin-bottom: 10px;
}
.works-postListWrap .postBox a .thumbnail img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.7s ease;
}
.works-postListWrap .postBox a .permalinkWrap .tll {
  margin: 0 0 5px;
  font-size: 16px;
  font-weight: 400;
}
.works-postListWrap .postBox a .permalinkWrap .permalink_bottom {
  display: inline;
}
.works-postListWrap .postBox a .permalinkWrap .permalink_bottom ul {
  margin: 0;
  padding: 0;
  display: inline;
  list-style: none;
}
.works-postListWrap .postBox a .permalinkWrap .permalink_bottom ul li {
  color: #999999;
  display: inline-block;
  font-size: 14px;
  position: relative;
  padding-left: 10px;
  margin-right: 15px;
}
.works-postListWrap .postBox a .permalinkWrap .permalink_bottom ul li::before {
  content: "#";
  position: absolute;
  font-size: 14px;
  left: 0;
  top: 0;
  display: block;
}
.works-postListWrap .postBox a .permalinkWrap .permalink_bottom ul li a {
  font-size: 14px;
  color: #999999;
  text-decoration: none;
}
.works-postListWrap .postBox a .permalinkWrap .area {
  margin: 0;
  color: #999999;
  position: relative;
  padding-left: 15px;
  font-size: 14px;
  font-weight: 400;
  display: block;
  margin-right: 5px;
}
.works-postListWrap .postBox a .permalinkWrap .area::before {
  content: "";
  position: absolute;
  left: 0;
  width: 10px;
  height: 15px;
  background: url(images/home/svg/adress_g.svg) no-repeat;
  background-position: center;
  background-size: 10px;
  top: 4px;
  display: block;
}
@media print, screen and (min-width: 768px) {
  .works-postListWrap .postBox a:hover .thumbnail img, .works-postListWrap .postBox a:focus .thumbnail img {
    transform: scale(1.1);
    transition: 0.7s ease;
    opacity: 1;
  }
}

@media screen and (max-width: 768px) {
  #worksArea .entitle {
    text-align: center;
  }
  #worksArea .title {
    text-align: center;
    margin: 0 0 20px;
  }
  .works-postListWrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 15px;
  }
  .works-postListWrap .postBox a {
    font-size: 14px;
  }
  .works-postListWrap .postBox a .permalinkWrap .permalink_bottom {
    display: inline-block;
  }
  .works-postListWrap .postBox a .permalinkWrap .permalink_bottom ul {
    display: inline-block;
  }
  .works-postListWrap .postBox a .permalinkWrap .permalink_bottom ul li {
    display: inline-block;
  }
  .works-postListWrap .postBox a .permalinkWrap .permalink_bottom ul li a {
    font-size: 12px;
  }
  .works-postListWrap .postBox a .permalinkWrap .area {
    font-size: 12px;
  }
}
/* ---------------------------------------------------------------- */
/* カスタム投稿一覧 */
/* ---------------------------------------------------------------- */
.category-list {
  margin-bottom: 60px;
}
.category-list .categories {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.category-list .categories li {
  background-color: #0F3D2E;
  height: 33px;
  transition: all ease 0.3s;
}
.category-list .categories li a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}
@media print, screen and (min-width: 768px) {
  .category-list .categories li:hover, .category-list .categories li:focus {
    background-color: #64937D;
    transition: all ease 0.3s;
  }
}

@media screen and (max-width: 768px) {
  .category-list {
    margin-bottom: 40px;
  }
  .category-list .categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 15px;
  }
  .category-list .categories li a {
    font-size: 14px;
  }
}
/* ---------------------------------------------------------------- */
/*  投稿詳細 */
/* ---------------------------------------------------------------- */
#singlePage #mainCnt {
  margin-top: 108px;
}

@media screen and (max-width: 768px) {
  #singlePage #mainCnt {
    margin-top: 68px;
  }
}
/* ---------------------------------------------------------------- */
/*  施工事例詳細 */
/* ---------------------------------------------------------------- */
#detailcnt,
#suggestioncnt {
  margin-bottom: 70px;
}

#before_after .before_after_wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 40px;
  margin-bottom: 40px;
  position: relative;
}
#before_after .before_after_wrap::after {
  content: "";
  width: 36px;
  height: 36px;
  position: absolute;
  background: url(images/common/before_after_icon.svg) no-repeat;
  background-position: center;
  background-size: 36px;
  left: 50%;
  top: 150px;
  transform: translateX(-50%);
  display: block;
}
#before_after .before_after_wrap .col .imgbox {
  position: relative;
  margin-bottom: 20px;
}
#before_after .before_after_wrap .col .imgbox::before {
  position: absolute;
  content: "BEFORE";
  width: 90px;
  height: 33px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  color: #111111;
  background-color: #EFFAF5;
  top: 0;
  left: 0;
}
#before_after .before_after_wrap .col:nth-child(2) .imgbox::before {
  content: "AFTER";
  background-color: #0F3D2E;
  color: #fff;
}

@media screen and (max-width: 768px) {
  #detailcnt,
  #suggestioncnt {
    margin-bottom: 30px;
  }
  #before_after .before_after_wrap {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    margin-bottom: 20px;
  }
  #before_after .before_after_wrap::after {
    display: none;
  }
}
/* ---------------------------------------------------------------- */
/*  ブログ/コラム */
/* ---------------------------------------------------------------- */
#columnArea span {
  font-size: 48px;
  color: #999999;
  font-weight: 100;
}
#columnArea .title {
  font-size: 18px;
  margin: 0 0 40px;
  font-weight: 400;
}

.column-postListWrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 20px;
}
.column-postListWrap .postBox .thumbnail {
  position: relative;
  padding-bottom: 60%;
  overflow: hidden;
  width: 100%;
  margin-bottom: 10px;
}
.column-postListWrap .postBox .thumbnail a {
  width: 100%;
  height: 100%;
  display: block;
}
.column-postListWrap .postBox .thumbnail a img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.column-postListWrap .postBox .permalinkWrap a {
  color: #333;
  text-decoration: none;
}
.column-postListWrap .postBox .permalinkWrap a p {
  font-size: 16px;
  font-weight: 400;
  margin: 0 0 10px;
}
.column-postListWrap .postBox .permalinkWrap .column_cat {
  width: auto;
  height: 24px;
  display: inline-block;
}
.column-postListWrap .postBox .permalinkWrap .column_cat a {
  width: 100%;
  height: 100%;
  font-size: 14px;
  color: #999999;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .column-postListWrap {
    display: flex;
    gap: 0;
  }
  .column-postListWrap._02 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px 0;
  }
}
/* ---------------------------------------------------------------- */
/*  ブログ/コラム詳細 */
/* ---------------------------------------------------------------- */
#singlePage.column #postCnt {
  margin-bottom: 30px;
}

.connection-section {
  border: #64937D solid 1px;
  padding: 32px 20px 20px;
  position: relative;
}
.connection-section h2 {
  position: absolute;
  background-color: #64937D;
  color: #fff;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  width: 220px;
  height: 34px;
  top: -17px;
  left: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.connection-postListWrap {
  display: grid;
  gap: 20px 0;
}
.connection-postListWrap .postBox a {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0 17px;
  align-items: center;
  color: #64937D;
}
.connection-postListWrap .postBox a .permalinkWrap p {
  color: #64937D;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}

/* ---------------------------------------------------------------- */
/*  目次 */
/* ---------------------------------------------------------------- */
.b-time {
  color: #64937D;
  font-size: 16px;
}

#toc_container {
  height: auto;
  width: 100%;
  max-height: 580px;
  overflow: hidden;
  transition: 0.5s ease;
  position: relative;
}
#toc_container #details_button {
  display: none;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #64937D;
  display: none;
  position: absolute;
  z-index: 1;
  cursor: pointer;
  border: none;
  text-align: center;
  color: #333;
}
#toc_container #details_button::before {
  content: "";
  width: 100%;
  height: 100px;
  position: absolute;
  left: 0;
  top: -100px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 95%);
}
#toc_container #details_button::after {
  content: "\f107";
  font-family: FontAwesome;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 39px;
  color: #64937D;
}

#toc_container.show {
  max-height: none;
  overflow: visible;
  transition: 0.5s ease;
}
#toc_container.show #details_button {
  height: 45px;
}
#toc_container.show #details_button::before {
  content: none;
}
#toc_container.show #details_button::after {
  content: none;
}

#toc_container {
  border-width: 6px 1px 1px;
  border-style: solid;
  border-color: #64937D;
  border-radius: 4px;
  padding: 30px 20px;
  margin-bottom: 40px;
}
#toc_container .toc_title {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 26.5px;
  padding: 0 0 17.5px;
  border-bottom: 1px solid #64937D;
  display: flex;
  align-items: center;
  gap: 14px;
}
#toc_container .toc_list {
  counter-reset: number_1 0;
  margin-bottom: 0 !important;
}
#toc_container .toc_list li {
  padding: 0;
}
#toc_container .toc_list li::after {
  content: none;
}
#toc_container .toc_list li a {
  margin-bottom: 16px;
  text-decoration: none;
  color: #222222;
}
#toc_container .toc_list li ul {
  margin-bottom: 0 !important;
}
#toc_container .toc_list li ul li a {
  display: block;
  margin-bottom: 18px;
}
#toc_container .toc_list > li > a {
  font-size: 16px;
  font-weight: 500;
  display: flex;
  justify-content: flex-start;
  gap: 11px;
}
#toc_container .toc_list > li > a::before {
  counter-increment: number_1 1;
  content: counter(number_1) "";
  color: #fff;
  background-color: #64937D;
  border-radius: calc(infinity * 1px);
  width: 30px;
  height: 30px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  flex-shrink: 0;
  align-items: center;
  padding-bottom: 3px;
}
#toc_container .toc_list > li > ul {
  counter-reset: number_2 0;
  padding-left: 2.4em;
}
#toc_container .toc_list > li > ul > li > a {
  font-size: 14px;
}
#toc_container .toc_list > li > ul > li > a::before {
  counter-increment: number_2 1;
  content: counter(number_2) "｜";
  font-size: 14px;
  font-weight: 500;
  color: #64937D;
}
#toc_container .toc_list > li > ul > li > ul {
  list-style: circle;
  padding-left: 2.8em;
}
#toc_container .toc_list > li > ul > li > ul li::marker {
  color: #64937D;
}
#toc_container .toc_list > li > ul > li > ul > li a {
  font-size: 12px;
}
#toc_container .toc_list > li > ul > li > ul > li > ul {
  list-style: none;
}
#toc_container .toc_list > li > ul > li > ul > li > ul > li {
  padding-left: 1em;
  position: relative;
}
#toc_container .toc_list > li > ul > li > ul > li > ul > li > a::before {
  position: absolute;
  top: 0.8em;
  left: 0px;
  transform: translateY(-50%);
  width: 0px;
  height: 0px;
  border: 0.3em solid transparent;
  border-left: 0.4em solid #64937D;
  content: "";
}
#toc_container .toc_list > li > ul > li > ul > li > ul > li > ul {
  padding-left: 1.4em;
  list-style: square;
}
@media screen and (min-width: 1025px) {
  #toc_container {
    padding: 30px;
    width: 800px;
  }
  #toc_container .toc_list > li > a {
    font-size: 20px;
  }
  #toc_container .toc_list > li > ul > li a {
    font-size: 18px;
  }
  #toc_container .toc_list > li > ul > li > ul > li > a {
    font-size: 16px;
  }
  #toc_container .toc_list > li > ul > li > ul > li > ul > li a {
    font-size: 14px;
  }
}

/* ---------------------------- */
/* contactusArea */
/* ---------------------------- */
#contactusArea {
  padding-bottom: 50px;
}
#contactusArea .entitle {
  margin: 0 0 16px;
  text-align: center;
}
#contactusArea .title {
  font-size: 25px;
  margin: 0 0 18px;
  text-align: center;
}
#contactusArea .txt {
  font-size: 18px;
  text-align: center;
  margin: 0 0 30px;
}
#contactusArea .txt span {
  color: #64937D;
}
#contactusArea .contactusWrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}
#contactusArea .contactusWrap .contactuscol {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
#contactusArea .contactusWrap .contactuscol:first-child {
  border-right: #707070 solid 1px;
}
#contactusArea .contactusWrap .contactuscol img {
  margin: 0 auto 13px;
  display: block;
  text-align: center;
}
#contactusArea .contactusWrap .contactuscol .tollfree {
  text-decoration: none;
  font-size: 33px;
  color: #333333;
  font-weight: 100;
}
#contactusArea .contactusWrap .contactuscol .cous_txt {
  font-size: 14px;
  margin-top: 5px;
  text-align: center;
  font-weight: 400;
}
#contactusArea .contactusWrap .contactuscol .btnbox .contactusbtn {
  width: 290px;
  max-width: 290px;
  height: 60px;
  background: #0F3D2E;
  border-radius: 8px;
  border: #0F3D2E solid 1px;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 14px;
  text-align: center;
  margin: 25px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
#contactusArea .contactusWrap .contactuscol .btnbox .contactusbtn::after {
  content: "";
  position: absolute;
  background: url("images/home/svg/white_arrow.svg") no-repeat;
  background-size: 17px;
  background-position: center;
  top: 24px;
  right: 10%;
  width: 20px;
  height: 10px;
  transition: 0.3s ease-in;
}
@media print, screen and (min-width: 768px) {
  #contactusArea .contactusWrap .contactuscol .btnbox .contactusbtn:hover, #contactusArea .contactusWrap .contactuscol .btnbox .contactusbtn:focus {
    background-color: #fff;
    color: #0F3D2E;
  }
  #contactusArea .contactusWrap .contactuscol .btnbox .contactusbtn:hover::after, #contactusArea .contactusWrap .contactuscol .btnbox .contactusbtn:focus::after {
    right: 5%;
    transition: 0.3s ease-in;
    background: url("images/home/svg/right_green.svg") no-repeat;
    background-size: 17px;
    background-position: center;
  }
}

@media screen and (max-width: 768px) {
  #contactusArea .title {
    font-size: 24px;
    margin-bottom: 14px;
  }
  #contactusArea .txt {
    font-size: 14px;
    margin-bottom: 30px;
  }
  #contactusArea .txt span {
    font-size: 14px;
  }
  #contactusArea .contactusWrap {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
  #contactusArea .contactusWrap .contactuscol {
    padding: 30px 0;
  }
  #contactusArea .contactusWrap .contactuscol:first-child {
    padding: 0 0 30px;
    border-right: none;
    border-bottom: #707070 solid 1px;
  }
  #contactusArea .contactusWrap .contactuscol .cous_txt {
    margin-bottom: 0;
  }
  #contactusArea .contactusWrap .contactuscol img {
    margin-bottom: 11px;
  }
}
/* ---------------------------- */
/* ページヘッダー */
/* ---------------------------- */
#cnts .pageTitle {
  font-weight: 400;
}

#mainCnt .pageTitle_box {
  position: relative;
  width: 100%;
  height: 380px;
  z-index: 0;
}
#mainCnt .pageTitle_box::after {
  content: "";
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}
#mainCnt .pageTitle_box .pageTitle_imgbox {
  width: 100%;
  position: relative;
  overflow: hidden;
  height: 380px;
}
#mainCnt .pageTitle_box .pageTitle_imgbox img {
  height: 100%;
  width: 100%;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
}
#mainCnt .pageTitle_box .pageTitle_tllbox {
  width: 100%;
  position: absolute;
  height: 380px;
  z-index: 1;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding-top: 173px;
}
#mainCnt .pageTitle_box .pageTitle_tllbox .pageTitle {
  color: #FFFFFF;
  line-height: 1.67;
  text-transform: uppercase;
  font-size: 48px;
  font-weight: 100;
  margin: 0 0 7px;
}
#mainCnt .pageTitle_box .pageTitle_tllbox .pageTitle.jp {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
}

@media screen and (max-width: 768px) {
  #mainCnt .pageTitle_box .pageTitle_tllbox .pageTitle {
    font-size: 32px;
  }
}
/* ---------------------------- */
/* コンセプト */
/* ---------------------------- */
#concept01,
#concept02,
#concept03,
#concept04 {
  height: 1px;
  display: block;
  padding-top: 80px;
  margin-top: -80px;
}

.hidden {
  display: none;
}

.visible {
  display: block;
}

.accordion .conseptWrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.accordion .conseptWrap .conseptcol01 {
  max-width: 50%;
  flex-basis: 50%;
  padding-bottom: 25%;
  position: relative;
  overflow: hidden;
}
.accordion .conseptWrap .conseptcol01 img {
  height: 100%;
  position: absolute;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.accordion .conseptWrap .conseptcol02 {
  max-width: 50%;
  flex-basis: 50%;
  padding: 60px;
  background: #FFFFFF;
}
.accordion .conseptWrap .conseptcol02.bkf8 {
  background: #f8f8f8;
}
.accordion .conseptWrap .conseptcol02 .conseptsubtll {
  font-size: 24px;
  font-weight: 400;
  margin: 0;
}
.accordion .conseptWrap .conseptcol02 .conseptsubtll span {
  font-size: 48px;
  font-weight: 100;
  margin-left: 27px;
  color: #64937D;
}
.accordion .conseptWrap .conseptcol02 h3 {
  margin: 0 0 20px;
}
.accordion .conseptWrap .conseptcol02 .accordion-button {
  width: 290px;
  height: 60px;
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  background: #FFFFFF;
  position: relative;
  transform: 0.3s ease;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 7px 1px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}
.accordion .conseptWrap .conseptcol02 .accordion-button::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background: url("images/common/svg/b_arrow.svg") no-repeat;
  background-position: center;
  background-size: 11px;
  display: block;
  top: 50%;
  right: 32px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transition: all 0.5s;
}
@media print, screen and (min-width: 768px) {
  .accordion .conseptWrap .conseptcol02 .accordion-button:hover::after, .accordion .conseptWrap .conseptcol02 .accordion-button:focus::after {
    right: 22px;
    transition: all 0.5s;
  }
}

.accordion-content {
  background: #FFFFFF;
  color: #333333;
}
.accordion-content.bkf8 {
  background: #f8f8f8;
}
.accordion-content .content_open_inner {
  padding-top: 40px;
}
.accordion-content .content_open_inner .content_open_inner_txt {
  margin: 15px 0 30px;
  font-size: 14px;
  font-weight: 400;
}
.accordion-content .content_open_inner h6 {
  font-weight: 500;
}
.accordion-content .content_open_inner .content_open_inner_txt02 {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}
.accordion-content .close-button {
  width: 290px;
  height: 60px;
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  background: #FFFFFF;
  position: relative;
  transform: 0.3s ease;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 7px 1px rgba(0, 0, 0, 0.1);
  margin: 20px auto 0;
  display: block;
  text-align: center;
}
.accordion-content .close-button::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background: url("images/common/conceptbtn.svg") no-repeat;
  background-position: center;
  background-size: 19px;
  display: block;
  top: 22px;
  right: 32px;
  transform: rotate(180deg);
  transition: all 0.2s;
}

@media screen and (max-width: 768px) {
  .accordion .conseptWrap .conseptcol01 {
    max-width: 100%;
    flex-basis: 100%;
    padding-bottom: 60%;
  }
  .accordion .conseptWrap .conseptcol02 {
    max-width: 100%;
    flex-basis: 100%;
    padding: 30px 30px 50px;
  }
  .accordion .conseptWrap .conseptcol02 .accordion-button {
    margin: 0 auto;
  }
}
/* ---------------------------- */
/* 鈴ガーデンの強み */
/* ---------------------------- */
#onayami {
  position: relative;
}
#onayami::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 65px;
  display: block;
  background: url(images/common/onayami_arrow.svg) no-repeat;
  background-position: center;
  background-size: 24px;
  bottom: -10px;
  left: 51%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  z-index: 1;
}
#onayami::after {
  content: "";
  position: absolute;
  display: block;
  left: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 45px solid transparent;
  border-left: 45px solid transparent;
  border-top: 42px solid #f8f8f8;
  border-bottom: 0;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  bottom: -41px;
}
#onayami .onayami_title {
  font-size: 28px;
  text-align: center;
  font-weight: 400;
  margin: 0 0 20px;
}
#onayami .onayami_title span {
  color: #64937D;
  font-size: 38px;
}
#onayami .wrap {
  display: flex;
  justify-content: center;
  gap: 0 20px;
  margin-bottom: 20px;
}
#onayami .wrap .onayami_box {
  background-color: #fff;
  padding: 20px;
  width: 100%;
  max-width: 300px;
  max-height: 115px;
}
#onayami .wrap .onayami_box p {
  display: flex;
  align-items: center;
  gap: 0 15px;
  margin: 0;
}
#onayami .wrap._02 .onayami_box {
  max-height: 90px;
}

#onayami_bottom {
  background-color: #64937D;
  padding: 60px 0;
  background-image: url(images/common/concept/onayami.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#onayami_bottom .onayami_bottom_inr {
  display: flex;
  justify-content: center;
  align-items: baseline;
}
#onayami_bottom .txt {
  font-size: 34px;
  font-weight: 700;
  text-align: center;
  color: #fff;
}
#onayami_bottom .txt span {
  padding: 0 7px;
  display: inline;
  background: linear-gradient(transparent 50%, rgba(15, 61, 46, 0.3) 50%);
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  #onayami_bottom {
    background-image: url(images/common/concept/onayami.png);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: 100% auto;
  }
}
@media screen and (max-width: 768px) {
  #onayami {
    position: relative;
  }
  #onayami::before {
    background-size: 20px;
    bottom: -13px;
    left: 52%;
  }
  #onayami::after {
    content: "";
    border-right: 40px solid transparent;
    border-left: 40px solid transparent;
    border-top: 38px solid #f8f8f8;
    bottom: -38px;
  }
  #onayami .onayami_title {
    font-size: 26px;
  }
  #onayami .onayami_title span {
    font-size: 32px;
  }
  #onayami .wrap {
    display: block;
    margin-bottom: 20px;
  }
  #onayami .wrap .onayami_box {
    margin-bottom: 20px;
    background-color: #fff;
    padding: 20px;
    width: 100%;
    max-width: 100%;
    max-height: auto;
  }
  #onayami .wrap .onayami_box p {
    display: flex;
    align-items: center;
    gap: 0 15px;
  }
  #onayami .wrap._02 .onayami_box {
    max-height: 90px;
  }
  #onayami_bottom {
    padding: 50px 0 107px;
    background-image: url(images/common/concept/onayami_sp.png);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: 193px;
  }
  #onayami_bottom .txt {
    font-size: 28px;
    margin: 0;
  }
}
/* ---------------------------- */
/* 会社概要 */
/* ---------------------------- */
.company_title {
  color: #64937D;
  border-bottom: none !important;
  margin: 0 0 20px;
  font-size: 26px !important;
  padding-bottom: 0 !important;
}
.company_title::before {
  display: none !important;
}

.company720 {
  max-width: 720px;
  margin: 0 auto 60px;
  display: block;
}

@media screen and (max-width: 768px) {
  .company720 {
    max-width: 100%;
    margin: 0 auto 40px;
  }
}
/* ---------------------------- */
/* サービス‧料金表 */
/* ---------------------------- */
#page01,
#page02,
#page03,
#page04,
#page05,
#page06,
#page07,
#page08,
#page09,
#page10,
#page11,
#page12,
#page13,
#page14,
#companypege01 {
  height: 1px;
  display: block;
  padding-top: 100px;
  margin-top: -100px;
}

.menu4wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 95px;
  margin-bottom: 90px;
}
.menu4wrap.menu3wrap {
  grid-template-columns: repeat(3, 1fr);
}
.menu4wrap.menu2wrap {
  justify-content: center;
  display: flex;
  justify-content: center;
}
.menu4wrap .columnBox {
  position: relative;
}
.menu4wrap .columnBox::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 10px;
  background: url(images/home/svg/anchor_arrow.svg) no-repeat;
  background-position: center;
  background-size: 19px;
  display: block;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
.menu4wrap .columnBox a {
  width: 100%;
  height: 100%;
  display: block;
  text-decoration: none;
  padding-bottom: 20px;
}
.menu4wrap .columnBox a .imgbox {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: #F8F8F8 solid 2px;
  margin: 0 auto 15px;
}
.menu4wrap .columnBox a p {
  font-size: 16px;
  margin: 0;
  text-align: center;
  color: #111111;
}
@media print, screen and (min-width: 768px) {
  .menu4wrap .columnBox:hover a .imgbox, .menu4wrap .columnBox:focus a .imgbox {
    border: #0F3D2E solid 2px;
  }
}

/*追加*/
.price-info {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .price-info {
    flex-direction: column;
    gap: 8px;
  }
}
/*追加*/
.menufvSwiperwrap {
  position: relative;
  overflow: hidden;
}
.menufvSwiperwrap .menu-fvSwiper {
  position: inherit;
  overflow: visible;
  padding-bottom: 60px;
}
.menufvSwiperwrap .menu-fvSwiper .swiper-wrapper .swiper-slide {
  height: auto;
}
.menufvSwiperwrap .menu-fvSwiper .swiper-wrapper .swiper-slide .box {
  height: 100%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding-bottom: 40px;
  background-color: #fff;
}
.menufvSwiperwrap .menu-fvSwiper .swiper-wrapper .swiper-slide .box .imgbox {
  position: relative;
  width: 100%;
  padding-bottom: 60%;
  overflow: hidden;
}
.menufvSwiperwrap .menu-fvSwiper .swiper-wrapper .swiper-slide .box .imgbox img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.menufvSwiperwrap .menu-fvSwiper .swiper-wrapper .swiper-slide .box .txtbox {
  padding: 16px 20px 0;
}
.menufvSwiperwrap .menu-fvSwiper .swiper-wrapper .swiper-slide .box .txtbox h4 {
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 15px;
}
.menufvSwiperwrap .menu-fvSwiper .swiper-wrapper .swiper-slide .box .txtbox p {
  text-align: left;
}
.menufvSwiperwrap .menu-fvSwiper .swiper-wrapper .swiper-slide .box .txtbox .menutxt {
  margin: 0 0 10px;
  border-bottom: #B2B2B2 solid 1px;
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
}
.menufvSwiperwrap .menu-fvSwiper .swiper-wrapper .swiper-slide .box .txtbox .menutxt span {
  color: #64937D;
  font-size: 18px;
  display: inline-block;
}
.menufvSwiperwrap .menu-fvSwiper .swiper-wrapper .swiper-slide .box .txtbox .menutxt2 {
  margin: 0 0 10px;
  border-bottom: #B2B2B2 solid 1px;
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
}
.menufvSwiperwrap .menu-fvSwiper .swiper-wrapper .swiper-slide .box .txtbox .menutxt3 {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.86;
  margin: 0;
}
.menufvSwiperwrap .menu-fvSwiper .menu-button-prev,
.menufvSwiperwrap .menu-fvSwiper .menu-button-next {
  width: 25px;
  height: 25px;
  z-index: 3;
}
.menufvSwiperwrap .menu-fvSwiper .menu-button-prev.swiper-button-disabled,
.menufvSwiperwrap .menu-fvSwiper .menu-button-next.swiper-button-disabled {
  display: none !important;
}
.menufvSwiperwrap .menu-fvSwiper .menu-button-prev::after,
.menufvSwiperwrap .menu-fvSwiper .menu-button-next::after {
  display: none;
}
.menufvSwiperwrap .menu-fvSwiper .menu-button-prev {
  background: url(images/common/menu/prev.svg) no-repeat;
  background-position: center;
  background-size: 25px;
  left: 12%;
}
.menufvSwiperwrap .menu-fvSwiper .menu-button-next {
  background: url(images/common/menu/next.svg) no-repeat;
  background-position: center;
  background-size: 25px;
  right: 16%;
}

.menu_cta_wrap {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 8px;
  background-color: #D9EAE2;
  padding: 30px 40px 20px 118px;
  display: grid;
  grid-template-columns: 35% 1fr;
  align-items: center;
  gap: 0 25px;
  background-image: url(images/common/menu/cta_img.svg);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 105px;
  margin-bottom: 40px;
}
.menu_cta_wrap .menu_cta_box._02 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 30px;
}
.menu_cta_wrap .menu_cta_box .menu_cta_col .menu_cta_btn a {
  padding: 15px 40px 15px 70px;
  width: 100%;
  max-width: 100%;
  height: 51px;
  background-color: #0F3D2E;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  position: relative;
}
.menu_cta_wrap .menu_cta_box .menu_cta_col .menu_cta_btn a::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 20px;
  background: url(images/common/menu/icon_mail.svg) no-repeat;
  background-position: center;
  background-size: 27px;
  display: block;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  left: 50%;
  margin-left: -70px;
}
@media print, screen and (min-width: 768px) {
  .menu_cta_wrap .menu_cta_box .menu_cta_col .menu_cta_btn a:hover, .menu_cta_wrap .menu_cta_box .menu_cta_col .menu_cta_btn a:focus {
    background-color: #fff;
    color: #0F3D2E;
  }
  .menu_cta_wrap .menu_cta_box .menu_cta_col .menu_cta_btn a:hover::before, .menu_cta_wrap .menu_cta_box .menu_cta_col .menu_cta_btn a:focus::before {
    background: url(images/common/menu/icon_mail_g.svg) no-repeat;
    background-position: center;
    background-size: 27px;
  }
}
.menu_cta_wrap .menu_cta_box .menu_cta_col .menu_cta_btn._02 a::before {
  background: url(images/common/menu/icon_line.svg) no-repeat;
  background-position: center;
  background-size: 20px;
  margin-left: -60px;
}
@media print, screen and (min-width: 768px) {
  .menu_cta_wrap .menu_cta_box .menu_cta_col .menu_cta_btn._02 a:hover::before, .menu_cta_wrap .menu_cta_box .menu_cta_col .menu_cta_btn._02 a:focus::before {
    background: url(images/common/menu/icon_line_g.svg) no-repeat;
    background-position: center;
    background-size: 20px;
    margin-left: -60px;
  }
}

.menutxt4 {
  font-size: 18px;
  font-weight: 400;
  margin: 0 !important;
  line-height: 1.6;
}

.menutxt5 {
  font-size: 14px;
  font-weight: 400;
  margin: 0 0 10px !important;
  text-align: center !important;
}

.menu_wrap {
  margin-bottom: 60px;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .menu_cta_wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }
}
@media screen and (max-width: 768px) {
  .menu4wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
  }
  .menu4wrap.menu3wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .menu4wrap .columnBox a p {
    font-size: 14px;
  }
  .menufvSwiperwrap .menu-fvSwiper {
    padding-bottom: 40px;
  }
  .menufvSwiperwrap .menu-fvSwiper .menu-button-prev {
    left: 6%;
  }
  .menufvSwiperwrap .menu-fvSwiper .menu-button-next {
    right: 6%;
  }
  .menu_cta_wrap {
    background-color: #D9EAE2;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    background-image: none;
  }
  .menu_cta_wrap .menu_cta_box {
    background-image: url(images/common/menu/cta_img.svg);
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: 78px;
    padding: 20px 20px 20px 85px;
  }
  .menu_cta_wrap .menu_cta_box._02 {
    background-image: none;
    padding: 20px;
    background-color: #fff;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px 0;
    border-radius: 0 0 16px 16px;
  }
  .menu_wrap {
    margin-bottom: 40px;
  }
  .menutxt4 {
    font-size: 15px;
  }
}
/* ---------------------------- */
/* こだわり子ページ */
/* ---------------------------- */
.consept_childpagesubtll {
  font-size: 24px;
  font-weight: 400;
  margin: 0 auto 80px !important;
  text-align: center !important;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.consept_childpagesubtll::after {
  content: "CONCEPT";
  font-size: 120px;
  font-weight: 100;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  color: #f8f8f8;
  z-index: -1;
}
.consept_childpagesubtll span {
  font-size: 48px;
  font-weight: 100;
  color: #64937D;
  margin-left: 20px;
  line-height: 1;
}
.consept_childpagesubtll.consept_childpagesubtll02 {
  align-items: flex-end;
  margin: 0 auto 100px !important;
}
.consept_childpagesubtll.consept_childpagesubtll02 span {
  margin: 0 5px;
}

.consept_childpagetll {
  text-align: center;
  font-size: 28px;
  font-weight: 400;
  margin: 0 0 60px;
}

.consept_childpagetxt {
  font-size: 14px;
  font-weight: 400;
  margin: 0 0 85px !important;
}

@media screen and (max-width: 768px) {
  .consept_childpagesubtll {
    font-size: 22px;
    margin: 0 auto 60px !important;
  }
  .consept_childpagesubtll::after {
    font-size: 80px;
  }
  .consept_childpagetll {
    font-size: 26px;
  }
  .consept_childpagetxt {
    margin: 0 0 60px !important;
  }
}
.consept_aboutbox {
  margin-top: 60px;
}

/* ---------------------------- */
/* about */
/* ---------------------------- */
#aboutPage {
  background: #fff;
}

.about_company {
  background: #f8f8f8;
  padding: 120px 0;
}

.about__page {
  background: #FFFFFF;
  padding: 120px 0;
}

.about__page02 {
  padding: 120px 0;
}

.about__page03 {
  background: #efefef;
  padding: 120px 0;
}

.aboutpagetll {
  font-size: 24px !important;
  font-weight: 400;
  color: #333333;
  text-align: center;
  position: relative;
  margin: 0 0 63px;
  z-index: 0;
}
.aboutpagetll.aboutpagetll02 {
  margin: 0 0 80px;
}
.aboutpagetll.aboutpagetll02::before {
  content: "MATERIAL";
  color: #fff;
}
.aboutpagetll.aboutpagetll03 {
  margin: 0 0 80px;
}
.aboutpagetll.aboutpagetll03::before {
  content: "PEACE";
  color: #fff;
}
.aboutpagetll.aboutpagetll04 {
  margin: 0 0 50px;
}
.aboutpagetll.aboutpagetll04::before {
  content: "POINT";
  color: #fff;
}
.aboutpagetll::before {
  content: "DUTY";
  font-size: 120px;
  font-weight: 100;
  color: #f8f8f8;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  z-index: -1;
}
.aboutpagetll span {
  font-size: 48px;
  font-weight: 100;
  color: #64937D;
}

.about__pageinner {
  background: #f8f8f8;
  border-radius: 8px;
  padding: 34px 240px 43px 40px;
  position: relative;
  margin: 0 60px 30px 0;
}
.about__pageinner.about__pageinner03 {
  background: #FFFFFF;
}
.about__pageinner.about__pageinner04 {
  background: #FFFFFF;
  padding: 34px 40px 43px 40px;
}
.about__pageinner.about__pageinner05 {
  margin-bottom: 110px;
}
.about__pageinner .about__pageinnerimgbox {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  border-radius: 8px;
}
.about__pageinner .about__pageinnerimgbox img {
  border-radius: 8px;
}
@media screen and (min-width: 768px) {
  .about__pageinner .about__pageinnerimgbox img {
    width: 240px;
    height: 144px;
  }
}
.about__pageinner p {
  font-size: 14px;
  margin: 0 !important;
}
.about__pageinner p.abouttxt {
  margin-bottom: 20px !important;
}

.about__pageinnersubtll {
  font-size: 14px;
  font-weight: 100;
  margin: 0 !important;
}
.about__pageinnersubtll .about__pageinnernumber {
  font-size: 28px;
  color: #64937D;
  margin-left: 10px;
}
.about__pageinnersubtll .about__pageinnernumber02 {
  font-size: 20px;
  font-weight: 400;
  color: #222222;
  margin-left: 5px;
}

.about__pageinnertll {
  font-size: 22px !important;
  font-weight: 400;
  margin: 11px 0 20px;
}

.about__pageinner02 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
}
.about__pageinner02 .about__pagebox {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 15px;
}
.about__pageinner02 .about__pagebox .about__imgbox {
  position: relative;
  padding-bottom: 144px;
  overflow: hidden;
  margin-bottom: 12px;
  border-radius: 8px;
  width: 100%;
}
.about__pageinner02 .about__pagebox .about__imgbox img {
  position: absolute;
  border-radius: 8px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 768px) {
  .about_company {
    padding: 90px 0;
  }
  .about__page {
    padding-bottom: 90px;
  }
  .about__page02 {
    padding: 90px 0;
  }
  .about__page03 {
    padding: 90px 0;
  }
  .aboutpagetll {
    font-size: 22px !important;
  }
  .aboutpagetll::before {
    font-size: 75px;
  }
  .aboutpagetll span {
    font-size: 44px;
  }
  .aboutpagetll.aboutpagetll02 {
    margin-bottom: 60px;
  }
  .aboutpagetll.aboutpagetll02::before {
    font-size: 60px;
  }
  .aboutpagetll.aboutpagetll03 {
    margin-bottom: 60px;
  }
  .about__pageinner {
    padding: 70px 20px 20px;
    margin-right: 0;
    margin-top: 190px;
  }
  .about__pageinner.about__pageinner00 {
    margin-top: 180px;
  }
  .about__pageinner.about__pageinner04 {
    padding: 34px 20px 43px 20px;
    margin-top: 20px;
  }
  .about__pageinner.about__pageinner05 {
    margin-bottom: 60px;
  }
  .about__pageinner .about__pageinnerimgbox {
    top: -135px;
    left: 50%;
    right: auto;
    transform: translateY(0%) translateX(-50%);
    -webkit-transform: translateY(0%) translateX(-50%);
    width: 85%;
  }
  .about__pageinner .about__pageinnerimgbox img {
    width: 100%;
  }
  .about__pageinnertll {
    font-size: 20px !important;
  }
  .about__pageinner02 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px 0;
  }
}
.mh_txt {
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 24px;
  text-align: center !important;
}
.mh_txt span {
  color: #64937D;
}

.mh_week {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 20px;
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 24px;
}
.mh_week .mh_week {
  width: 100px;
  background: #F5F5F5;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 10px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 4px;
  color: #1A1A1A;
  height: 34px;
  margin-bottom: 0;
}
.mh_week .mh_week2 {
  width: 100px;
  background: #F5F5F5;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 10px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 4px;
  color: #64937D;
  height: 34px;
  margin-bottom: 0;
}

.w_box {
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.16);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 60px;
  background: #fff;
}

.model_box {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0 20px;
}
.model_box .model_imgbox {
  border-radius: 8px;
}
.model_box .model_imgbox img {
  border-radius: 8px;
}

.imgobox {
  position: relative;
  width: 100%;
  padding-bottom: 60%;
  overflow: hidden;
}
.imgobox img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 768px) {
  .mh_txt {
    font-size: 16px;
  }
  .w_box {
    padding: 30px 15px;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px 0;
  }
  .model_box {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px 0;
  }
  .mh_week {
    display: flex;
    justify-content: center;
    gap: 0 10px;
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 24px;
  }
  .mh_week .mh_week {
    width: 85px;
    font-size: 12px;
  }
  .mh_week .mh_week2 {
    width: 85px;
    font-size: 12px;
  }
}
/* ---------------------------- */
/* 資金計画について/financial-plan */
/* ---------------------------- */
.financialplan__page {
  background: linear-gradient(180deg, #F8F8F8 0%, #F8F8F8 45%, #fff 45%, #fff 100%);
  padding: 40px 0 80px;
}
.financialplan__page.financialplan__page02 {
  background: #F8F8F8;
  margin-bottom: 90px;
}

.about__pageinner.financialplan__inner {
  background: #fff;
}

.financialplan__number {
  font-size: 48px;
  color: #64937D;
  font-weight: 100;
  margin: 0 auto;
  text-align: center;
  display: block;
}

.financialplanpagetll {
  text-align: center;
  font-size: 24px;
  margin: 0 0 10px;
  position: relative;
  z-index: 0;
}
.financialplanpagetll.financialplanpagetll02::before {
  content: "LOAN";
}
.financialplanpagetll.financialplanpagetll03::before {
  content: "SUBSIDY";
}
.financialplanpagetll::before {
  content: "PRICE";
  font-size: 120px;
  font-weight: 100;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: -1;
}

.financialplanpagetxt {
  position: relative;
  z-index: 0;
}

.financialplan__col {
  max-width: calc(100% - 385px);
  flex-basis: calc(100% - 385px);
}

.financialplan__col02 {
  max-width: 337px;
  flex-basis: 337px;
}

.financialplan__box {
  display: flex;
  flex-wrap: wrap;
}

.financialplan__boxlist {
  margin-right: 50px;
}

.financial-planimgbox {
  background: url("images/common/sakushi_modelhouse.jpg") no-repeat;
  background-size: 100%;
  background-attachment: fixed;
  background-position: center;
  height: 400px;
  z-index: 0;
}
.financial-planimgbox.financial-planimgbox02 {
  background: url("images/home/soudankai.jpg") no-repeat;
  background-size: 100%;
  background-attachment: fixed;
  background-position: center;
}

.white_shadow_box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-radius: 16px;
  box-shadow: 0 2px 7px 1px rgba(0, 0, 0, 0.1);
  padding: 35px 30px;
}

.financial__plancat {
  border-radius: 8px;
  max-width: 48%;
  flex-basis: 48%;
  padding-bottom: 30%;
  position: relative;
  overflow: hidden;
}
.financial__plancat img {
  border-radius: 8px;
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.financial__plancat02 {
  max-width: 48%;
  flex-basis: 48%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.financial__plancattll {
  margin: 0 0 5px;
  text-align: center;
}
.financial__plancattll span {
  color: #64937D;
}

.financial__plancattxt {
  font-size: 20px;
  font-weight: 400;
  margin: 0 !important;
}
.financial__plancattxt.financial__plancattxt02 {
  margin-bottom: 20px !important;
}
.financial__plancattxt .fptxt {
  font-size: 14px;
  font-weight: 100;
  margin-right: 7px;
}
.financial__plancattxt .fptxt02 {
  font-size: 28px;
  font-weight: 100;
  color: #64937D;
  margin-right: 7px;
}

@media screen and (max-width: 990px) {
  .financialplan__page {
    padding-bottom: 40px;
  }
  .financialplan__col {
    max-width: 100%;
    flex-basis: 100%;
    order: 2;
  }
  .financialplan__col02 {
    max-width: 100%;
    flex-basis: 100%;
    order: 1;
    margin-bottom: 20px;
  }
  .financialplan__col03 {
    margin-bottom: 40px;
  }
  .financialplan__col03:last-child {
    margin-bottom: 0;
  }
  .financialplanpagetll {
    font-size: 22px !important;
  }
  .financialplanpagetll::before {
    font-size: 80px;
  }
  .financial__plancat {
    max-width: 100%;
    flex-basis: 100%;
    margin-bottom: 20px;
    padding-bottom: 55%;
  }
  .financial__plancat02 {
    max-width: 100%;
    flex-basis: 100%;
  }
  .financial__plancattll {
    font-size: 22px !important;
  }
  .financial__plancattxt {
    font-size: 16px;
  }
  .financial__plancattxt .fptxt02 {
    font-size: 22px;
  }
}
@media screen and (max-width: 768px) {
  .financialplan__page {
    padding-bottom: 40px;
  }
  .financialplan__col {
    max-width: 100%;
    flex-basis: 100%;
    order: 2;
  }
  .financialplan__col02 {
    max-width: 100%;
    flex-basis: 100%;
    order: 1;
    margin-bottom: 20px;
  }
  .financialplan__col03 {
    margin-bottom: 40px;
  }
  .financialplan__col03:last-child {
    margin-bottom: 0;
  }
  .financialplanpagetll {
    font-size: 22px !important;
  }
  .financialplanpagetll::before {
    font-size: 80px;
  }
  .financial__plancat {
    max-width: 100%;
    flex-basis: 100%;
    margin-bottom: 20px;
    padding-bottom: 60%;
  }
  .financial__plancat02 {
    max-width: 100%;
    flex-basis: 100%;
  }
  .financial-planimgbox {
    background-attachment: scroll;
    background-size: 100% auto;
    height: 250px;
  }
  .financial__plancattll {
    font-size: 22px !important;
  }
  .financial__plancattxt {
    font-size: 16px;
  }
  .financial__plancattxt .fptxt02 {
    font-size: 22px;
  }
}
/* ---------------------------- */
/* 土地探しをお考えの方/ land*/
/* ---------------------------- */
#step01,
#step02,
#step03,
#step04,
#point01,
#point02,
#point03 {
  height: 1px;
  display: block;
  padding-top: 80px;
  margin-top: -80px;
}

.land__tabinner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 45px;
}

.land__tabbox {
  width: 25%;
  position: relative;
  height: 130px;
}
.land__tabbox.land__tabbox02 {
  width: 33.3%;
}
.land__tabbox::before {
  position: absolute;
  content: "";
  background: url("images/common/accordion02.svg") no-repeat;
  background-position: center;
  background-size: 15px;
  width: 15px;
  height: 15px;
  display: block;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
.land__tabbox::after {
  content: "";
  background: #999999;
  width: 1px;
  height: 80px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.land__tabbox:last-child::after {
  display: none;
}
.land__tabbox a {
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-weight: 400;
  color: #333333;
}
@media print, screen and (min-width: 768px) {
  .land__tabbox a:hover, .land__tabbox a:focus {
    color: #333333 !important;
    opacity: 0.8;
  }
}
.land__tabbox a p {
  text-align: center;
  line-height: 1.4;
}

.land__tabtxt {
  font-size: 10px;
  font-weight: 100;
}
.land__tabtxt.land__tabtxt03 {
  margin-right: 10px;
}

.land__tabtxt02 {
  font-size: 24px;
  font-weight: 100;
  color: #64937D;
}

.land__graybox {
  background: #F8F8F8;
  padding: 53px 30px 60px;
  margin-bottom: 180px;
}

.land__inner {
  background: #FFFFFF;
  padding: 62px 30px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  margin-bottom: 50px;
}
.land__inner.land__inner02 {
  margin-bottom: 0;
}
.land__inner.land__inner02::after {
  display: none;
}
.land__inner::after {
  position: absolute;
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 30px solid transparent;
  border-left: 30px solid transparent;
  border-top: 30px solid #FFFFFF;
  border-bottom: 0;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}

.land__imgbox {
  max-width: 240px;
  flex-basis: 240px;
}

.land__txtbox {
  max-width: calc(100% - 270px);
  flex-basis: calc(100% - 270px);
}
.land__txtbox h2 {
  font-size: 22px !important;
  margin: 0 0 20px;
}

.land__imgtllbox {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .land__tabbox {
    height: 110px;
  }
  .land__tabbox::after {
    height: 110px;
  }
  .land__tabbox a {
    justify-content: flex-start;
    padding: 0 5px;
  }
  .land__tabbox a p {
    font-size: 12px;
  }
  .land__tabtxt02 {
    font-size: 18px;
  }
  .land__graybox {
    padding: 53px 15px 60px;
    margin-bottom: 60px;
  }
  .land__inner {
    padding: 40px 20px;
  }
  .land__imgtllbox {
    margin-bottom: 20px;
  }
  .land__imgbox {
    max-width: 100%;
    flex-basis: 100%;
    margin-bottom: 20px;
  }
  .land__txtbox {
    max-width: 100%;
    flex-basis: 100%;
  }
}
/* ---------------------------- */
/* スタッフ/ Staff*/
/* ---------------------------- */
.staffs__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.staffs__txtBox {
  max-width: calc(100% - 310px);
  flex-basis: calc(100% - 310px);
}

.staffs__imgBox {
  max-width: 250px;
  flex-basis: 250px;
}

.staffs__tllbox {
  border-bottom: #999999 solid 1px;
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-bottom: 7px;
}
.staffs__tllbox::before {
  position: absolute;
  content: "";
  background: #64937D;
  width: 40px;
  height: 1px;
  left: 0;
  display: block;
  bottom: -1px;
}
.staffs__tllbox h4 {
  margin-bottom: 15px;
}

.staffs__left {
  font-size: 28px;
  font-weight: 400;
}
.staffs__left span {
  font-size: 14px;
  margin-left: 20px;
}

.staffs__box {
  border: #999999 solid 1px;
  padding: 32px 30px 42px;
  position: relative;
}
.staffs__box span {
  position: absolute;
  width: 200px;
  height: 30px;
  font-size: 16px;
  font-weight: 700;
  background: #64937D;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  padding-left: 12px;
  top: -15px;
  left: 30px;
}
.staffs__box p {
  margin: 0 !important;
}

@media screen and (max-width: 768px) {
  .staffs__imgBox {
    max-width: 100%;
    flex-basis: 100%;
    order: 1;
    margin-bottom: 20px;
  }
  .staffs__txtBox {
    max-width: 100%;
    flex-basis: 100%;
    order: 2;
  }
  .staffs__tllbox {
    flex-direction: column;
    align-items: flex-start;
  }
  .staffs__box {
    padding: 32px 20px 42px;
  }
}
/* ---------------------------- */
/* Q&A */
/* ---------------------------- */
.s_03 .accordion_one {
  margin: 0 auto 8.7px;
  border-radius: 8px;
  border: #d5d5d5 solid 1px;
}

.s_03 .accordion_one .accordion_header {
  background-color: #FFFFFF;
  color: #333333;
  font-size: 16px;
  font-weight: 400;
  padding: 32px 70px 27px;
  position: relative;
  z-index: 1;
  cursor: pointer;
  transition-duration: 0.2s;
  border-radius: 8px;
}
.s_03 .accordion_one .accordion_header::before {
  position: absolute;
  content: "Q.";
  font-size: 19px;
  font-weight: 500;
  color: #333;
  top: 27px;
  left: 33px;
}

.s_03 .accordion_one .accordion_header:hover {
  opacity: 0.8;
}

.s_03 .accordion_one .accordion_header .i_box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 5%;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  box-sizing: border-box;
  transform: rotate(0deg);
  transform-origin: center center;
  transition-duration: 0.2s;
}

.s_03 .accordion_one .accordion_header.stay {
  border-bottom: #d5d5d5 solid 1px;
  border-radius: 8px 8px 0 0;
}

.s_03 .accordion_one .accordion_header.stay.open {
  border-radius: 8px;
  border-bottom: none;
}

.s_03 .accordion_one .accordion_header.stay .i_box {
  transform: rotate(0deg);
}

.s_03 .accordion_one .accordion_header .i_box .one_i {
  display: block;
  width: 18px;
  height: 18px;
  transform: rotate(0deg);
  transform-origin: center center;
  transition-duration: 0.2s;
  position: relative;
  background: url("images/common/accordion02.svg") no-repeat;
  background-position: center;
  background-size: 20px;
}

.s_03 .accordion_one .accordion_header.open {
  border-radius: 8px 8px 0 0;
  border-bottom: #d5d5d5 solid 1px;
}

.s_03 .accordion_one .accordion_header.stay .i_box .one_i {
  transform: rotate(180deg);
}

.s_03 .accordion_one .accordion_header.stay.open .i_box .one_i {
  transform: rotate(45deg);
}

.s_03 .accordion_one .accordion_header.open .i_box {
  transform: rotate(-180deg);
}

.s_03 .accordion_one .accordion_header.stay.open .i_box {
  transform: rotate(315deg);
}

.s_03 .accordion_one .accordion_inner {
  display: none;
  box-sizing: border-box;
  border-radius: 0 0 8px 8px;
}

.s_03 .accordion_one .accordion_inner.stay {
  display: block;
  border-radius: 0 0 8px 8px;
}

.s_03 .accordion_one .accordion_inner .box_one {
  background: #FFFFFF;
  padding: 26px 70px 53px;
  position: relative;
  border-radius: 0 0 8px 8px;
}
.s_03 .accordion_one .accordion_inner .box_one::before {
  position: absolute;
  content: "A.";
  font-size: 18px;
  font-weight: 500;
  color: #64937D;
  top: 23px;
  left: 33px;
}

.s_03 .accordion_one .accordion_inner p.txt_a_ac {
  margin: 0;
  color: #333;
}

@media screen and (max-width: 768px) {
  .s_03 .accordion_one .accordion_header {
    padding: 32px 55px 27px 70px;
  }
  .s_03 .accordion_one .accordion_inner .box_one {
    padding: 26px 50px 40px 70px;
  }
}
/* ---------------------------- */
/* 会社概要 / Company*/
/* ---------------------------- */
#company02 {
  height: 1px;
  display: block;
  padding-top: 80px;
  margin-top: -80px;
}

.companywrapper {
  margin-bottom: 60px;
}

.companyfloat {
  width: 100%;
  margin-inline: auto;
}

.companyfloat__img {
  float: right;
  width: 360px;
  margin-left: 60px;
}

.companyrightimgbox {
  margin-left: 0;
  margin-right: auto;
  text-align: right;
}
.companyrightimgbox p {
  margin: 0 0 5px !important;
  text-align: right !important;
}

.bb {
  border-bottom: #333 solid 1px;
  padding-bottom: 2px;
}

.company__showroom {
  display: grid;
  gap: 5px;
  grid-template-columns: repeat(2, auto);
  grid-template-rows: repeat(6, auto);
  margin-bottom: 5px;
}
.company__showroom .showroomcol {
  width: 100%;
  padding-bottom: 80%;
  position: relative;
  overflow: hidden;
}
.company__showroom .showroomcol img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 1025px) {
  .company__showroom {
    grid-template-columns: repeat(4, auto);
    grid-template-rows: repeat(3, auto);
  }
}

.showroom__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  box-shadow: 0 2px 7px 1px rgba(0, 0, 0, 0.1);
  margin-bottom: 60px;
}

.showroom__imgbox {
  max-width: 65%;
  flex-basis: 65%;
  width: 100%;
  padding-bottom: 30%;
  position: relative;
  overflow: hidden;
}
.showroom__imgbox img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.showroom__txtbox {
  max-width: 35%;
  flex-basis: 35%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.showroom__txtbox h2 {
  margin: 0 0 23px;
}
.showroom__txtbox p {
  margin: 0 0 10px !important;
}

.access__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 33px;
}

.access__col {
  max-width: 380px;
  flex-basis: 380px;
}
.access__col h4 {
  margin: 0 0 15px;
}
.access__col .link {
  text-decoration: none;
  color: #333;
}

.access__col02 {
  max-width: calc(100% - 420px);
  flex-basis: calc(100% - 420px);
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .showroom__imgbox {
    max-width: 100%;
    flex-basis: 100%;
    padding-bottom: 40%;
  }
  .showroom__txtbox {
    max-width: 100%;
    flex-basis: 100%;
    padding: 20px;
  }
}
@media screen and (max-width: 768px) {
  .companyfloat__img {
    float: none;
    width: 100%;
    margin-left: 0px;
  }
  .companyfloat__img img {
    margin-bottom: 10px;
  }
  .showroom__imgbox {
    max-width: 100%;
    flex-basis: 100%;
    padding-bottom: 60%;
  }
  .showroom__txtbox {
    max-width: 100%;
    flex-basis: 100%;
    padding: 20px;
  }
  .access__col {
    max-width: 100%;
    flex-basis: 100%;
    order: 2;
  }
  .access__col02 {
    max-width: 100%;
    flex-basis: 100%;
    order: 1;
    margin-bottom: 20px;
  }
}
/* ---------------------------- */
/* サイトマップ/saitemao */
/* ---------------------------- */
.site__map {
  border-bottom: rgba(153, 153, 153, 0.7) solid 1px;
  padding: 17px 0 17px 40px;
}
.site__map a {
  width: 100%;
  height: 100%;
  display: block;
  text-decoration: none;
  color: #333;
  font-weight: 400;
  font-size: 16px;
  position: relative;
}
.site__map a::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  background: url("images/common/sitemap_arrow.svg") no-repeat;
  background-size: 10px;
  background-position: center;
  left: -20px;
  display: block;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}

/* ---------------------------------------------------------------- */
/* パンくず */
/* ---------------------------------------------------------------- */
.pcm-breadcrumbs {
  margin: 7px 0 110px;
}
.pcm-breadcrumbs__list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  list-style: none;
  padding-left: 0 !important;
}
.pcm-breadcrumbs__item::marker {
  display: none !important;
}
.pcm-breadcrumbs__item:not(:last-child)::after {
  content: ">";
  padding: 0 6px;
}
.pcm-breadcrumbs__link {
  color: #575757 !important;
  text-decoration: none !important;
}
.pcm-breadcrumbs__link:hover {
  text-decoration: underline !important;
}
@media screen and (min-width: 1025px) {
  .pcm-breadcrumbs {
    max-width: 1170px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .pcm-breadcrumbs {
    max-width: 970px;
    padding-left: 5%;
    padding-right: 5%;
  }
}
@media screen and (max-width: 768px) {
  .pcm-breadcrumbs {
    max-width: 750px;
    margin-bottom: 90px;
  }
}

/* ---------------------------------------------------------------- */
/* 詳細ページ */
/* ---------------------------------------------------------------- */
.postPage #postCnt {
  margin: 20px 0 0;
  min-height: 300px;
}
.postPage #postCnt.worksCnt {
  min-height: auto;
  margin-bottom: 10px;
}
.postPage h1 {
  font-size: 28px;
  margin: 0 0 40px;
}
.postPage .titleh2 {
  font-size: 28px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 20px;
}
.postPage .titleh2::first-letter {
  color: #64937D;
}
.postPage .titleh2._center {
  text-align: center;
}
.postPage .titleh3 {
  font-size: 24px;
  font-weight: 400;
  position: relative;
  border-bottom: #999999 solid 1px;
  padding-bottom: 12.5px;
  margin: 0 0 30px;
}
.postPage .titleh3::before {
  position: absolute;
  content: "";
  background: #64937D;
  width: 40px;
  height: 1px;
  left: 0;
  display: block;
  bottom: -1px;
}
.postPage .titleh3._center {
  text-align: center;
}
.postPage .titleh3._center::before {
  left: 50%;
  transform: translateY(0%) translateX(-50%);
  -webkit-transform: translateY(0%) translateX(-50%);
  bottom: -1px;
}
.postPage .titleh4 {
  font-size: 22px;
  font-weight: 400;
  position: relative;
  margin: 0 0 20px;
}
.postPage .titleh4::before {
  content: "";
  position: absolute;
  background: #111111;
  width: 30px;
  height: 1px;
  left: 0;
  bottom: -0.5px;
}
.postPage .titleh5 {
  font-size: 20px;
  font-weight: 400;
  padding-left: 20px;
  position: relative;
  margin: 0 0 10px;
}
.postPage .titleh5::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  left: 0;
  top: 9px;
  display: block;
  background: #64937D;
}
.postPage .titleh6 {
  font-size: 18px;
  font-weight: 400;
  margin: 0 0 30px;
}
.postPage h3 {
  font-size: 24px;
  font-weight: 400;
  position: relative;
  border-bottom: #999999 solid 1px;
  padding-bottom: 12.5px;
}
.postPage h3::before {
  position: absolute;
  content: "";
  background: #64937D;
  width: 40px;
  height: 1px;
  left: 0;
  display: block;
  bottom: -1px;
}
.postPage h3.textCenter {
  text-align: center;
}
.postPage h3.textCenter::before {
  left: 50%;
  transform: translateY(0%) translateX(-50%);
  bottom: -1px;
}
@media screen and (max-width: 768px) {
  .postPage h1 {
    font-size: 26px;
  }
  .postPage .titleh2 {
    font-size: 24px;
  }
  .postPage .titleh3 {
    font-size: 22px;
  }
  .postPage .titleh4 {
    font-size: 20px;
  }
  .postPage .titleh5 {
    font-size: 18px;
  }
  .postPage .titleh6 {
    font-size: 16px;
  }
}
.postPage h1,
.postPage h2,
.postPage h3,
.postPage h4,
.postPage h5,
.postPage h6 {
  line-height: 1.4;
}
.postPage .box:nth-of-type(n + 2) {
  margin-top: 60px;
}
.postPage p {
  margin: 0 0 20px;
  text-align: justify;
  text-align: inter-ideograph;
}
.postPage p img {
  max-width: 100%;
  margin-bottom: 0;
}
.postPage p.tableAtt {
  margin: -20px 0 20px;
}
.postPage .bold {
  font-weight: bold;
}
.postPage .medium {
  font-weight: 500;
}
.postPage .small {
  font-size: 14px;
}
.postPage .linkWrap {
  display: flex;
  flex-wrap: wrap;
  margin: 15px 0 0;
  align-items: flex-start;
}
.postPage .imgWrap + .imgWrap {
  margin-top: 20px;
}
.postPage .textLeft {
  text-align: left;
}
.postPage .textCenter {
  text-align: center;
}
.postPage .textRight {
  text-align: right;
}
.postPage code {
  font-family: "Noto Sans JP", sans-serif;
}
.postPage pre {
  overflow: auto;
  background: #efefef;
  padding: 15px;
  border-radius: 8px;
  font-family: "Noto Sans JP", sans-serif;
}
.postPage a {
  position: relative;
}
.postPage a:hover, .postPage a:focus {
  text-decoration: none;
}
.postPage a.textBlank {
  position: relative;
  margin-right: 30px;
  display: inline-block;
}
.postPage a.textBlank:before {
  content: "\f08e";
  position: absolute;
  display: block;
  font: 14px/1 FontAwesome;
  right: -25px;
  top: 5px;
}
.postPage a.textArrow {
  text-decoration: none;
  color: #FFFFFF;
}
.postPage a.textArrow:hover {
  color: #64937D;
  text-decoration: underline;
}
.postPage a.textArrow:after {
  display: inline-block;
  content: "\f0a9";
  font: 16px/1 FontAwesome;
  margin-left: 10px;
  text-decoration: none;
}
.postPage a.textArrowR {
  text-decoration: none;
  color: #64937D;
}
.postPage a.textArrowR:hover, .postPage a.textArrowR:focus {
  color: #FFFFFF;
  text-decoration: underline;
}
.postPage a.textArrowR:after {
  display: inline-block;
  content: "\f0a9";
  font: 16px/1 FontAwesome;
  margin-left: 10px;
  text-decoration: none;
}
.postPage table {
  margin: 0 0 30px;
  width: 100%;
  border-collapse: collapse;
}
.postPage table caption {
  font-size: 18px;
  font-weight: bold;
  text-align: left;
  margin: 0;
}
.postPage table tr {
  border-bottom: #999999 solid 1px;
}
.postPage table tr th,
.postPage table tr td {
  padding: 15px 0;
  width: auto;
  line-height: 1.4;
}
.postPage table tr th {
  font-weight: 400;
  vertical-align: top;
  min-width: 190px;
  text-align: left;
  width: auto;
}
.postPage table tr th.tw250 {
  min-width: 250px;
}
.postPage table tr th.w200 {
  width: 200px;
}
.postPage table tr th.thLeft {
  text-align: left;
}
.postPage table tr th.w70 {
  min-width: 70px;
}
.postPage table tr td {
  border-left: none;
}
.postPage table tr td ul {
  display: inline-block;
  margin: 0;
}
.postPage table tr td ul li {
  display: inline-block;
  margin-right: 20px;
}
.postPage table tr td ul li:last-child {
  margin-right: 0;
}
.postPage table tr .tw15p {
  width: 15%;
}
.postPage table tr .tw30p {
  width: 30%;
}
.postPage table tr .tw33p {
  width: 33.333%;
  min-width: inherit;
}
.postPage table tr .tw50p {
  width: 50%;
  min-width: inherit;
}
.postPage table tr .tw70p {
  width: 70%;
}
.postPage table tr .tw200 {
  width: 200px;
}
.postPage table tr .tw210 {
  width: 210px;
}
.postPage table.type2 {
  border: 1px solid #111111;
  border-collapse: collapse;
}
.postPage table.type2 tr {
  border-bottom: 1px solid #f8f8f8;
}
.postPage table.type2 tr:nth-child(odd) {
  background-color: inherit;
}
.postPage table.type2 tr th,
.postPage table.type2 tr td {
  border-collapse: collapse;
}
.postPage table.type2 tr th {
  background: #111111;
  text-align: center !important;
  vertical-align: middle;
  font-weight: 500;
  color: #fff;
}
.postPage table.type2 tr th + th {
  border-left: 1px solid #fff !important;
}
.postPage table.type2 tr td {
  text-align: center;
}
.postPage table.type2 tr td + td {
  border-left: 1px solid #111111;
}
.postPage table.type2 tr td:nth-of-type(1) {
  border-left: none;
}
.postPage .tableSc {
  overflow: inherit;
  white-space: normal;
  width: 100%;
}
.postPage .tableSc table {
  width: 100%;
}
.postPage .tableSc table tr {
  border-bottom: 1px solid #333333;
}
.postPage .tableSc table tr:nth-of-type(odd) {
  background: none;
}
.postPage .tableSc table tr th,
.postPage .tableSc table tr td {
  display: table-cell;
  border-collapse: collapse;
  width: inherit;
}
.postPage .tableSc table tr th {
  text-align: left;
  vertical-align: middle;
  min-width: inherit;
}
.postPage .tableSc table tr th + th {
  border-left: 1px solid #333;
}
.postPage .tableSc table tr td + td {
  border-left: 1px solid #333;
}
.postPage .tableSc table tr td:nth-of-type(1) {
  border-left: none;
}
.postPage blockquote {
  background: #ccc;
  width: 100%;
  border-radius: 8px;
  padding: 30px;
  margin: 0 0 60px;
  position: relative;
}
.postPage blockquote:before {
  content: "\f10d";
  position: absolute;
  display: block;
  font: 20px/1 FontAwesome;
  color: #FFFFFF;
  left: 10px;
  top: 10px;
}
.postPage blockquote:after {
  content: "\f10e";
  position: absolute;
  display: block;
  font: 20px/1 FontAwesome;
  color: #FFFFFF;
  right: 10px;
}
.postPage blockquote p {
  margin: 0 0 15px;
}
.postPage blockquote p:last-child {
  margin-bottom: 0;
}
.postPage dl {
  margin: 0 0 30px;
}
.postPage dl dt {
  font-weight: bold;
}
.postPage dl dd {
  margin: 0;
  margin-bottom: 15px;
}
.postPage ul {
  margin: 0 0 20px 5px;
  padding: 0;
}
.postPage ul li {
  list-style: none;
  position: relative;
  padding: 0;
}
.postPage ul li ul {
  padding: 0 0 10px;
  margin: 10px 0 0 1em;
}
.postPage ul.iconList li {
  padding: 0 0 0 15px;
}
.postPage ul.iconList li:before {
  position: absolute;
  left: 0;
  top: 10px;
  content: "";
  width: 5px;
  height: 5px;
  background: #64937D;
  border-radius: 50%;
}
.postPage ul.number {
  margin-left: 30px;
}
.postPage ul.number li {
  list-style-type: decimal-leading-zero;
}
.postPage ul.number li::marker {
  color: #64937D;
  font-weight: 500;
}
.postPage ol {
  margin: 0 0 20px 15px;
  padding: 0 0 0 1em;
}
.postPage ol li {
  margin: 0;
  padding: 0;
}
.postPage ol li:last-child {
  margin: 0 0 10px;
}
.postPage ol li ol {
  margin: 10px 0;
  padding: 0 0 0 1em;
}
.postPage address {
  font-style: normal;
}
.postPage hr.red {
  border-bottom: 1px solid #c65871 !important;
  margin-bottom: 50px;
}
.postPage .gmapWrap {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: hidden;
}
.postPage .gmapWrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.postPage .youtubeWrap {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: hidden;
}
.postPage .youtubeWrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .postPage table tr th,
  .postPage table tr td {
    display: block;
    width: 100%;
    padding: 10px 0;
  }
  .postPage table tr th + td,
  .postPage table tr td + td {
    border-left: 0;
  }
  .postPage table tr th {
    min-width: 1px;
    text-align: left;
    padding-top: 25px;
  }
  .postPage table tr th.w200 {
    width: 100%;
  }
  .postPage table tr th.w70 {
    width: 100%;
  }
  .postPage table tr td {
    padding-bottom: 25px;
  }
  .postPage table tr .tw15p {
    width: 100%;
  }
  .postPage table tr .tw30p {
    width: 100%;
  }
  .postPage table tr .tw33p {
    width: 100%;
  }
  .postPage table tr .tw50p {
    width: 100%;
  }
  .postPage table tr .tw70p {
    width: 100%;
  }
  .postPage table tr .tw200 {
    width: 100%;
  }
  .postPage table tr .tw210 {
    width: 100%;
  }
  .postPage table.type2 tr th,
  .postPage table.type2 tr td {
    display: table-cell;
    width: auto;
  }
  .postPage table.type2 tr th {
    min-width: 1px;
  }
  .postPage .tableSc {
    overflow: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .postPage .tableSc tr th,
  .postPage .tableSc tr td {
    padding: 10px;
  }
  .postPage .bg_white_box .columnBox.pd_sp_15 {
    padding: 15px;
  }
}

.scroll_table_wrapper {
  position: relative;
}
.scroll_table_wrapper::after {
  position: absolute;
  top: 30%;
  right: 0;
  content: "";
  width: 66px;
  height: 60px;
  margin-top: -30px;
  background: url("images/common/scroll_arrow.svg") no-repeat;
  background-position: top 0 right 0;
  background-size: 66px;
  transition: all ease 0.3s;
  pointer-events: none;
  display: none;
}

.freedial {
  position: relative;
  color: #333;
  text-decoration: none;
  padding-left: 40px;
  margin-right: 25px;
}
.freedial::before {
  position: absolute;
  left: 0;
  content: "";
  width: 33px;
  height: 20px;
  background: url("images/common/freedial.svg") no-repeat;
  background-position: center;
  background-size: 33px;
  transition: all ease 0.3s;
  pointer-events: none;
}

.kasoutel {
  position: relative;
  color: #333;
  text-decoration: none;
  padding-left: 20px;
  margin-right: 25px;
}
.kasoutel::before {
  position: absolute;
  left: 0;
  content: "";
  width: 20px;
  height: 20px;
  background: url("images/common/kasou_tel.svg") no-repeat;
  background-position: center;
  background-size: 16px;
  transition: all ease 0.3s;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .scroll_table_wrapper::after {
    display: block;
  }
  .table_inner {
    width: 1008px;
  }
}
/* ---------------------------------------------------------------- */
/* フォーム設定 */
/* ---------------------------------------------------------------- */
/* フォームナビ */
/* ---------------------------- */
.c_txt {
  font-size: 26px;
  font-weight: 400;
  color: #64937D;
  text-align: center;
  margin: 0 0 40px;
  line-height: 1.8;
}

.c_box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 40px;
  margin-bottom: 60px;
}
.c_box .c_col {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  background: #fff;
  border: #111111 solid 1px;
  height: 82px;
}
.c_box .c_col a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: url(images/common/contact/contact_tel_b.png) no-repeat;
  background-position: center;
  background-size: 270px;
}
.c_box .c_col:nth-child(2) {
  background: #169b19;
  border: #169b19 solid 1px;
}
.c_box .c_col:nth-child(2) a {
  background: url(images/common/contact/contact_line_w.png) no-repeat;
  background-position: center;
  background-size: 161px;
}
@media print, screen and (min-width: 768px) {
  .c_box .c_col:hover, .c_box .c_col:focus {
    background: #111111;
  }
  .c_box .c_col:hover a, .c_box .c_col:focus a {
    background: url(images/common/contact/contact_tel_w.png) no-repeat;
    background-position: center;
    background-size: 270px;
  }
  .c_box .c_col:hover:nth-child(2), .c_box .c_col:focus:nth-child(2) {
    background: #fff;
  }
  .c_box .c_col:hover:nth-child(2) a, .c_box .c_col:focus:nth-child(2) a {
    background: url(images/common/contact/contact_line_g.png) no-repeat;
    background-position: center;
    background-size: 161px;
  }
}

@media screen and (max-width: 768px) {
  .c_txt {
    font-size: 26px;
  }
  .c_box {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px 0;
    margin-bottom: 40px;
  }
}
ul.formFlow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 20px;
  height: 56px;
  margin: 30px auto 68px;
  padding: 0;
  max-width: 775px;
  position: relative;
}
ul.formFlow::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #333;
  display: block;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  left: 0;
  z-index: -1;
}
ul.formFlow li {
  display: inline-flex;
  justify-content: center;
  background: #FFFFFF;
  color: #333333;
  list-style: none;
  padding: 0;
  margin: 0 !important;
  height: 56px;
  font-size: 16px;
  font-weight: 500;
  align-items: center;
  position: relative;
  border-radius: 4px;
  border: #333 solid 1px;
}
ul.formFlow li span {
  position: absolute;
  border-radius: 50%;
  content: "";
  background: #333;
  color: #FFFFFF;
  width: 22px;
  height: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: 400;
  top: -11px;
}
ul.formFlow li.visited {
  background: #999;
  color: #fff;
}
ul.formFlow li.active {
  background: #333;
  color: #FFFFFF;
  position: relative;
}
ul.formFlow li::after {
  content: "01";
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
ul.formFlow li.second::after {
  content: "02";
}
ul.formFlow li.third::after {
  content: "03";
}

/* ---------------------------- */
/* フォームエレメント */
/* ---------------------------- */
.formwrap {
  display: flex;
  flex-wrap: wrap;
}
.formwrap .formcol02 {
  margin-left: 60px;
  font-size: 16px;
  font-weight: 400;
  color: #ed0000;
}

@media screen and (max-width: 768px) {
  .formwrap {
    display: flex;
    flex-wrap: wrap;
  }
  .formwrap .formcol02 {
    margin-left: 0;
    font-size: 14px;
  }
}
#autozip {
  display: none !important;
}

#formArea dl {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#formArea dl dt {
  flex-basis: 250px;
  display: flex;
  font-weight: 400;
}
#formArea dl dt p {
  margin: 0;
}
#formArea dl dd {
  flex-basis: calc(100% - 280px);
}
#formArea dl dd p {
  margin: 0;
}
#formArea dl dd.fb100 {
  flex-basis: 100%;
}
#formArea .att {
  color: #eb001b;
  font-size: 16px;
  font-weight: 400;
}
#formArea .att2 {
  width: 40px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ddd;
  font-size: 12px;
  margin-right: 8px;
  font-weight: 500;
  color: #707070;
  border-radius: 10px;
}
#formArea .error {
  margin: 0;
}
#formArea .radio_wrap {
  margin-top: 10px;
}
#formArea input[type=tel],
#formArea input[type=text],
#formArea input[type=email],
#formArea input[type=number],
#formArea textarea {
  padding: 10px 20px;
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 0;
  border: 1px solid #d9d9d9;
}
#formArea input[type=tel]:focus,
#formArea input[type=text]:focus,
#formArea input[type=email]:focus,
#formArea input[type=number]:focus,
#formArea textarea:focus {
  background: #fff;
}
#formArea input[type=tel]:hover,
#formArea input[type=text]:hover,
#formArea input[type=email]:hover,
#formArea input[type=number]:hover,
#formArea textarea:hover {
  background: #fff;
}
#formArea input[type=tel] + input,
#formArea input[type=text] + input,
#formArea input[type=email] + input,
#formArea input[type=number] + input,
#formArea textarea + input {
  margin-top: 10px;
}
#formArea input[type=tel]::-moz-placeholder, #formArea input[type=text]::-moz-placeholder, #formArea input[type=email]::-moz-placeholder, #formArea input[type=number]::-moz-placeholder, #formArea textarea::-moz-placeholder {
  color: #d9d9d9;
}
#formArea input[type=tel]::placeholder,
#formArea input[type=text]::placeholder,
#formArea input[type=email]::placeholder,
#formArea input[type=number]::placeholder,
#formArea textarea::placeholder {
  color: #d9d9d9;
}
#formArea input[type=number].short {
  width: 60px;
}
#formArea input[type=text],
#formArea input[type=email] {
  width: 100%;
}
#formArea input[type=text] .short,
#formArea input[type=email] .short {
  max-width: 150px;
}
#formArea select {
  padding: 0.4em 0 0.3em 0.5em;
  margin-bottom: 5px;
  display: block;
  border-color: #e7e7e7;
}
#formArea select option {
  word-wrap: normal;
}
#formArea input[type=text].short {
  width: 200px;
  text-align: left;
  margin-bottom: 0;
}
#formArea input[type=text].hasDatepicker {
  margin: 5px 0;
}
#formArea input[type=text].hasDatepicker:hover, #formArea input[type=text].hasDatepicker:focus {
  background: #fff;
}
#formArea .mwform-checkbox-field {
  display: inline-block;
  width: auto;
  margin: 5px 5px;
  font-size: 14px;
}
#formArea input[type=checkbox] {
  border: 1px solid #aaaaaa;
  vertical-align: -8px;
  -webkit-appearance: none;
  position: relative;
  margin-right: 5px;
  border-radius: 3px;
  -webkit-box-sizing: border-box;
  width: 26px;
  height: 26px;
  /*Other Browser*/
  background: #e2e2e2;
  /*For Old WebKit*/
  /*For Modern Browser*/
  background: linear-gradient(to bottom, #ffffff 0%, #e2e2e2 100%);
}
#formArea input[type=checkbox]:checked {
  /*Other Browser*/
  background: #FFFFFF;
  /*For Old WebKit*/
  /*For Modern Browser*/
  background: linear-gradient(to bottom, #FFFFFF 0%, #FFFFFF 100%);
  border: 1px solid #aaaaaa;
}
#formArea input[type=checkbox]:checked:before {
  position: absolute;
  left: 2px;
  top: 16px;
  display: block;
  -webkit-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.5);
  content: "";
  width: 10px;
  height: 4px;
  background: #ffffff;
  -webkit-transform: rotate(45deg);
  -webkit-transform-origin: right center;
}
#formArea input[type=checkbox]:checked:after {
  display: block;
  position: absolute;
  left: 9px;
  top: 16px;
  content: "";
  -webkit-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.5);
  width: 16px;
  height: 3px;
  background: #ffffff;
  -webkit-transform: rotate(-53deg);
  -webkit-transform-origin: left center;
}
#formArea .mwform-zip-field input {
  width: inherit;
}
#formArea .mwform-tel-field input {
  margin: 0 !important;
  width: auto;
}
#formArea .mwform-radio-field {
  display: inline-block;
  margin: 0 15px 5px 0;
}
#formArea .mwform-radio-field input {
  margin: 0 15px 0 0;
}
#formArea input[type=file] {
  margin-bottom: 10px;
}
#formArea .inline_wrap select {
  display: inline-block;
}
#formArea input[type=radio] {
  display: none;
}
#formArea .wpcf7-list-item.first {
  margin-left: 0;
}
#formArea .wpcf7-list-item-label::before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-right: 6px;
  border-width: 1px;
  border-style: solid;
  border-radius: 50%;
  padding: 2px;
  background-clip: content-box;
  background-color: transparent;
}
#formArea input[type=radio]:not(:checked) + .wpcf7-list-item-label::before {
  border-color: #64937D;
  background-color: transparent;
}
#formArea input[type=radio]:checked + .wpcf7-list-item-label::before {
  border-color: #64937D;
  background-color: #64937D;
}
#formArea input[type=submit],
#formArea input[type=button] {
  width: 240px;
  height: 60px;
  border-radius: 30px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border: none;
  background-color: #111;
  padding: 20px;
  display: block;
  margin: 0 auto;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  color: #fff;
}
@media print, screen and (min-width: 768px) {
  #formArea input[type=submit]:hover, #formArea input[type=submit]:focus,
  #formArea input[type=button]:hover,
  #formArea input[type=button]:focus {
    background-color: #fff;
    color: #111;
  }
}
#formArea input[type=submit].wpcf7-previous,
#formArea input[type=button].wpcf7-previous {
  background-color: #fff;
  color: #111;
}
@media print, screen and (min-width: 768px) {
  #formArea input[type=submit].wpcf7-previous:hover, #formArea input[type=submit].wpcf7-previous:focus,
  #formArea input[type=button].wpcf7-previous:hover,
  #formArea input[type=button].wpcf7-previous:focus {
    background-color: #111;
    color: #fff;
  }
}
#formArea .form-buttons {
  display: flex;
  justify-content: center;
  gap: 0 20px;
}
#formArea .form-buttons p {
  display: flex;
  justify-content: center;
  gap: 0 20px;
}
#formArea .btnArea {
  display: flex;
  justify-content: space-between;
}
#formArea .btnArea .submitArea {
  flex-basis: 100%;
}
#formArea .btnArea .submitArea .wpcf7-submit {
  width: 240px;
  height: 60px;
  border-radius: 30px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border: none;
  background-color: #111;
  padding: 20px;
  display: block;
  margin: 0 auto;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  color: #fff;
}
@media print, screen and (min-width: 768px) {
  #formArea .btnArea .submitArea .wpcf7-submit:hover, #formArea .btnArea .submitArea .wpcf7-submit:focus {
    background-color: #fff;
    color: #111;
  }
}
#formArea .btnArea .returnArea {
  flex-basis: 100%;
  display: none;
}
#formArea .btnArea .returnArea .cf7msm-multistep {
  width: 240px;
  height: 60px;
  border-radius: 30px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border: none;
  background-color: #111;
  padding: 20px;
  display: block;
  margin: 0 auto;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #formArea dl {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0;
  }
  #formArea dl dt {
    flex-basis: 100%;
    padding: 5px 0 0 0;
    margin: 0 0 15px;
  }
  #formArea dl dd {
    flex-basis: 100%;
    margin-bottom: 15px;
    align-self: center;
  }
  #formArea select {
    margin-bottom: 5px;
  }
  #formArea .mwform-tel-field input[type=text] {
    max-width: 30%;
  }
  #formArea .mwform-checkbox-field {
    display: block;
    width: 100%;
  }
  #formArea .mwform-radio-field {
    margin: 5px 0 10px;
  }
  #formArea .mwform-radio-field .mwform-radio-field-text {
    margin-right: 15px;
  }
  #formArea .mwform-radio-field input {
    margin: 0;
  }
  #formArea .btnArea {
    flex-wrap: wrap;
  }
  #formArea .btnArea .submitArea {
    flex-basis: 100%;
    margin: 0 0 25px;
  }
  #formArea .mw_wp_form_confirm .btnArea .submitArea {
    margin-left: 0;
  }
  #formArea .mw_wp_form_confirm .btnArea .submitArea .submit {
    margin: 0 auto;
  }
  #formArea .mw_wp_form_confirm .btnArea .returnArea {
    display: block;
    margin-right: 0;
    margin-bottom: 20px;
  }
  #formArea .mw_wp_form_confirm .btnArea .returnArea .return {
    margin: 0 auto;
  }
  #formArea .form-buttons {
    display: block;
  }
  #formArea .form-buttons p {
    display: block;
  }
}

/* ---------------------------------------------------------------- */
/* effectFade */
/* ---------------------------------------------------------------- */
.effectFade.effectFadeUp {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}
.effectFade.effectActive {
  opacity: 1;
  transform: translate(0, 0);
}
.effectFade.td1 {
  transition-delay: 0.1s;
}
.effectFade.td2 {
  transition-delay: 0.2s;
}
.effectFade.td3 {
  transition-delay: 0.3s;
}
.effectFade.td4 {
  transition-delay: 0.4s;
}
.effectFade.effectShow {
  opacity: 1;
  transition-delay: 0s;
  transition: 0.3s ease-in;
}

.coming {
  text-align: center !important;
  margin: 50px 0;
  font-size: 16px;
}

.page-id-119 .formcol02 {
  display: none;
}

.page-id-119 .confirm_none {
  display: none;
}

.page-id-257 .formcol02 {
  display: none;
}

.page-id-251 .formcol02 {
  display: none;
}

.page-id-452 .confirm_none {
  display: none;
}

/* for IE */
.new-label {
  position: absolute;
  width: 45px;
  height: 45px;
  background: #e0529b;
  color: #ffffff;
  border-radius: 50%;
  top: -4%;
  left: -2%;
  margin: 0;
  font-size: 12px;
  z-index: 2;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bannerbtnWrap .bannerbtn {
  width: 290px;
  height: 60px;
  max-width: 290px;
  border-radius: 8px;
  background: #64937D;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  padding-right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  position: relative;
  margin: 0 auto;
}
.bannerbtnWrap .bannerbtn.bannerbtn02 {
  justify-content: flex-start;
  padding: 0 70px 0 16px;
  width: 330px;
  max-width: 330px;
}
.bannerbtnWrap .bannerbtn::after {
  position: absolute;
  align-items: center;
  border: none;
  content: "";
  background: url("images/home/right_w.svg") no-repeat;
  width: 17px;
  height: 5px;
  background-size: 17px;
  background-position: center;
  transform: none;
  right: 25px;
  font-size: 20px;
  border-radius: 0;
  top: 50%;
  margin-top: -3px;
  transition: 0.3s ease-in;
}
.bannerbtnWrap .bannerbtn:hover, .bannerbtnWrap .bannerbtn:focus {
  color: #fff;
}
.bannerbtnWrap .bannerbtn:hover:after, .bannerbtnWrap .bannerbtn:focus:after {
  right: 15px;
}
.bannerbtnWrap .bannerbtn.bannerbtn02 {
  margin: 0 auto;
  justify-content: flex-start;
  padding-left: 18px;
}
.bannerbtnWrap .bannerbtn.bannerbtn03 {
  margin: 0 auto;
  padding-right: 0;
}
.bannerbtnWrap .bannerbtn.bannerbtn03::after {
  display: none;
}

@media screen and (max-width: 768px) {
  .bannerbtnWrap .bannerbtn {
    margin: 0 auto;
  }
}
/* ---------------------------------------------------------------- */
/* effectFade */
/* ---------------------------------------------------------------- */
.bgtxt-pagetll._02 {
  margin: 0 0 21px;
}
.bgtxt-pagetll._02 .bg-txt {
  transform: translateY(-30%) translateX(-50%);
}

.bg-txt02 {
  text-align: center !important;
  font-weight: 400;
  margin: 0 0 40px !important;
  position: relative;
  z-index: 0;
}

#reserveArea,
#water,
#interior,
#exterior {
  height: 1px;
  display: block;
  padding-top: 80px;
  margin-top: -80px;
}

@media screen and (max-width: 768px) {
  .postPage .bgtxt-pagetll .bg-txt {
    font-size: 75px !important;
  }
}
/* ---------------------------------------------------------------- */
/**/
/* ---------------------------------------------------------------- */
.sh_txt1 {
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 60px !important;
  text-align: center;
}
.sh_txt1 span {
  color: #64937D;
  font-weight: 500;
  font-size: 20px;
}
.sh_txt1 .sh_txt1_big {
  font-size: 40px;
}
.sh_txt1._02 {
  margin: 0 0 15px !important;
}

.benefitswrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 35px;
  margin-bottom: 90px;
}
.benefitswrap .benefitsbox {
  background: #F5F5F5;
  padding: 23px;
  border-radius: 8px;
}
.benefitswrap .benefitsbox span {
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 5px;
  color: #64937D;
  display: block;
  text-align: center;
  font-family: "Roboto", sans-serif;
}
.benefitswrap .benefitsbox .benefitstll {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 7px;
}
.benefitswrap .benefitsbox .benefitstxt {
  font-size: 18px;
  text-align: center;
  font-weight: 500;
  margin: 0;
}
.benefitswrap .benefitsbox .benefits_num {
  font-size: 14px;
  font-weight: 100;
  text-align: center !important;
  margin: 0 0 10px !important;
  line-height: 1;
}
.benefitswrap .benefitsbox .benefits_num span {
  font-size: 22px;
  font-weight: 100;
  color: #64937D;
  display: inline-block;
  margin-bottom: 0;
}

.sh_txt_underline {
  position: relative;
  text-align: center !important;
  font-weight: 500;
  margin: 0 0 15px !important;
}
.sh_txt_underline::after {
  content: "";
  position: absolute;
  width: 216px;
  height: 1px;
  background: #64937D;
  display: block;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  bottom: -5px;
}
.sh_txt_underline span {
  color: #64937D;
  font-size: 18px;
  font-weight: 700;
}

.check {
  margin: 0 !important;
}
.check li {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 15px 0 !important;
}
.check li img {
  margin-right: 5px;
}

.fulfillingwrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: #707070 solid 1px;
}
.fulfillingwrap .fulfillingbox {
  position: relative;
  padding: 40px;
}
.fulfillingwrap .fulfillingbox::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 80%;
  background: #707070;
  display: block;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.fulfillingwrap .fulfillingbox:nth-of-type(3n)::after {
  display: none;
}
.fulfillingwrap .fulfillingbox .fulfillingrtll {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 10px;
}
.fulfillingwrap .fulfillingbox .fulfillingtxt {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  text-align: center;
}
.fulfillingwrap._02 {
  border-bottom: none;
}

.bg_columngray {
  background: #F5F5F5;
  padding: 20px;
}

.bg_boxgray {
  background: #F5F5F5;
  border-radius: 8px;
  padding: 30px;
}

.bg_boxwhite {
  background: #fff;
  border-radius: 8px;
  padding: 30px;
}

.bg_columnwhite {
  background: #fff;
  padding: 20px;
}

.gray_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: center;
}
.gray_list.column3 li {
  background: #F5F5F5;
  padding: 10px 15px;
  margin: 0 0 20px;
  border-radius: 8px;
  text-align: center;
  align-content: center;
}
@media screen and (min-width: 768px) {
  .gray_list.column3 li {
    width: calc(33.3333333333% - 20px);
  }
}
@media screen and (max-width: 767px) {
  .gray_list.column3 li {
    width: 100%;
  }
}
.gray_list.column3:after {
  content: "";
  display: block;
  width: calc(33.3333333333% - 20px);
}

.accent_color1 {
  color: #64937D;
}

.characterbox {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 40px;
  margin-bottom: 50px;
}
.characterbox .charactercol {
  position: relative;
}
.characterbox .charactercol::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background: #999999;
  display: block;
  right: -20px;
  top: 0;
}
.characterbox .charactercol p {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  padding: 10px 0;
}
.characterbox .charactercol:last-child::after {
  display: none;
}

@media screen and (max-width: 768px) {
  .benefitswrap {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px 0;
    margin-bottom: 60px;
  }
  .fulfillingwrap {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px 0;
  }
  .fulfillingwrap .fulfillingbox {
    border-bottom: #707070 solid 1px;
  }
  .fulfillingwrap .fulfillingbox::after {
    display: none;
  }
  .fulfillingwrap .fulfillingbox:last-child {
    border-bottom: none;
  }
  .check li {
    align-items: flex-start;
  }
  .check li img {
    max-width: 15px;
    padding-top: 5px;
  }
}
.break-word {
  word-break: break-all;
  overflow-wrap: break-word;
}

/* ---------------------------------------------------------------- */
/* sdd.scss */
/* ---------------------------------------------------------------- */
.postPage img {
  border-radius: 4px;
}
.postPage .box.bg_gray {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-top: 120px;
  padding-bottom: 120px;
}
.postPage .box:nth-of-type(n + 2) {
  margin-top: 120px;
}
.postPage h3 {
  font-size: 24px;
  font-weight: 400;
  position: relative;
  border-bottom: #999999 solid 1px;
  padding-bottom: 12.5px;
}

@media screen and (max-width: 768px) {
  .postPage .box.bg_gray {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .postPage .box:nth-of-type(n + 2) {
    margin-top: 90px;
  }
}
img:has(+ :is(h1, h2, h3, h4, h5, h6, p)) {
  margin-bottom: 20px;
}

.img200, .img150, .img100 {
  display: flex;
  width: auto !important;
  margin-left: auto;
  margin-right: auto;
}

.img100 {
  max-height: 100px !important;
}

.img150 {
  max-height: 150px !important;
}

.img200 {
  max-height: 200px !important;
}

.bg_gray {
  background: #f8f8f8;
}
.bg_gray .bg-txt {
  color: #fff !important;
}

.bg_white_box .columnBox {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
}

.padding_base {
  padding: 53px 30px 60px;
}

.bgtxt-pagetll {
  font-size: 24px !important;
  font-weight: 400;
  color: #333333;
  text-align: center;
  position: relative;
  margin: 0 0 63px;
  z-index: 0;
}
.bgtxt-pagetll .color {
  font-size: 48px;
  font-weight: 100;
  color: #64937D;
}
.bgtxt-pagetll .bg-txt {
  font-size: 120px;
  font-weight: 100;
  color: #f8f8f8;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: -1;
}

.pageInLink {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 45px;
}
.pageInLink.link03 .pageInLink_inr {
  width: 33.3333333333%;
}
.pageInLink.link04 .pageInLink_inr {
  width: 25%;
}

.pageInLink_inr {
  position: relative;
  height: 130px;
}
.pageInLink_inr::before {
  position: absolute;
  content: "";
  background: url("images/common/accordion02.svg") no-repeat;
  background-position: center;
  background-size: 15px;
  width: 15px;
  height: 15px;
  display: block;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
.pageInLink_inr::after {
  content: "";
  background: #999999;
  width: 1px;
  height: 80px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.pageInLink_inr:last-child::after {
  display: none;
}
.pageInLink_inr a {
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-weight: 400;
  color: #333;
}
.pageInLink_inr a p {
  text-align: center;
  line-height: 1.4;
}

@media print, screen and (min-width: 768px) {
  .pageInLink_inr a:hover, .pageInLink_inr a:focus {
    color: #333 !important;
    opacity: 0.8;
  }
}
.pageInLink__tabtxt {
  font-size: 10px;
  font-weight: 100;
}

.pageInLink__tabtxt02 {
  font-size: 24px;
  font-weight: 100;
  color: #64937D;
}

.imgCircle img {
  width: 150px !important;
  height: 150px !important;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.imgCircle.side .columnBox {
  display: flex;
  align-content: center;
  align-items: center;
}
.imgCircle.side .columnBox img {
  margin-right: 10px;
}
.imgCircle.stack .columnBox img {
  display: flex;
  margin-left: auto;
  margin-right: auto;
}

.white_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: center;
}
.white_list.column3 li {
  background: #fff;
  padding: 10px 15px;
  margin: 0 0 20px;
  border-radius: 8px;
  text-align: center;
  align-content: center;
}
@media screen and (min-width: 768px) {
  .white_list.column3 li {
    width: calc(33.3333333333% - 20px);
  }
}
@media screen and (max-width: 767px) {
  .white_list.column3 li {
    width: 100%;
  }
}
.white_list.column3:after {
  content: "";
  display: block;
  width: calc(33.3333333333% - 20px);
}/*# sourceMappingURL=style.css.map */