@charset "UTF-8";
/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　吉成建築 基本設定 base.scss

–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　フォント

–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*yakuhan ゴシック*/
@import url("https://cdn.jsdelivr.net/npm/yakuhanjp@3.4.1/dist/css/yakuhanjp-noto.min.css");
/*yakuhan 明朝*/
@import url("https://cdn.jsdelivr.net/npm/yakuhanjp@3.4.1/dist/css/yakuhanmp-noto.min.css");
/*NotoSansJP NotoSerifJP*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+JP:wght@400;700&display=swap");
/*Jost*/
@import url("https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600;700&display=swap");
/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　mixin　

–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　メディアクエリ

–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　変数　

–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*カラー*/
/*汎用カラー*/
/*フォント明朝*/
/*フォント line awesome*/
/* CSS Document */
/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　リセット

–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  /*    background:transparent;*/
}

/*行の高さをフォントサイズと同じにしています*/
body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

/*a要素のフォントサイズなどをリセットしフォントの縦方向の揃え位置を親要素のベースラインに揃えるようにしています*/
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* ins要素のデフォルトをセットし、色を変える場合はここで変更できるようにしています */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

/*IEではデフォルトで点線を下線表示する設定ではないので、下線がつくようにしています
また、マウスオーバー時にヘルプカーソルの表示が出るようにしています*/
abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*水平罫線のデフォルトである立体的な罫線を見えなくしています*/
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

/*縦方向の揃え位置を中央揃えに指定しています*/
input, select {
  vertical-align: middle;
}

/*画像を縦に並べたときに余白が出てしまわないよう*/
img {
  　　　vertical-align: top;
  　　　font-size: 0;
  　　　line-height: 0;
}

/* new HTML5 elements */
section, nav, article, aside, hgroup,
header, footer, figure, figcaption,
summary {
  display: block;
  margin: 0;
  padding: 0;
}

/* 以下個人的な変更点 */
th, td {
  vertical-align: middle;
}

img {
  vertical-align: bottom;
}

input, select {
  vertical-align: text-top;
  margin-left: 0;
}

/* Regular 400 Midium500  Semibold600  Bold700*/
.ns {
  font-family: "Noto Sans JP", sans-serif;
}

.min {
  font-family: "Noto Serif JP", serif;
}

.en-b {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.en-t {
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.jost {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.en {
  font-family: "Jost", sans-serif;
  font-weight: 500;
}

.example-gothic {
  font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

.example-min {
  font-family: YakuHanMP_Noto, "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　初期設定

–––––––––––––––––––––––––––––––––––––––––––––––––– */
html, body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, div, dl, dt, dd, table {
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  /*	overflow-y: scroll !important;*/
}

body {
  font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 180%;
  color: #666;
  font-size: 1.6em;
}

img {
  border: none;
}

/*img {
	width: 100%;
   height: auto;
	aspect-ratio: attr(width) / attr(height);
	image-rendering: -webkit-optimize-contrast;
  }*/
a {
  text-decoration: none;
  outline: none;
}

a:link {
  color: #3399ff;
}

a:visited {
  color: #3399ff;
}

a:hover {
  color: #3399ff;
}

a:active {
  color: #3399ff;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.pcno {
  display: none;
}

.anm-line {
  display: none;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　基本枠

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#wrap {
  margin: 0 auto;
  /*    background: url("../img/hd-decoline.svg") no-repeat left top;*/
  /*    background-size: 496px;*/
  padding-top: 200px;
  overflow: hidden;
}

.cons {
  max-width: 1150px;
  margin: 0 auto;
}

#content {
  line-height: 180%;
  /*    border: 1px solid #CCC;*/
}

/*アップボタン
----------------------------------------------------*/
#up {
  display: block;
  list-style: none;
  margin: 0 0 0 0;
  position: fixed;
  bottom: 20px;
  right: 10px;
  z-index: 99998;
  text-decoration: none;
  overflow: hidden;
  width: 38px;
  height: 60px;
  background: url(../img/up.png) no-repeat top center;
  background-size: 38px auto;
}

#up a {
  display: block;
  width: 100%;
  height: 100%;
}

#up {
  display: none !important;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　ヘッダ　 枠

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#head #hd-logo {
  width: 240px;
  margin: 35px 0 0 40px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
#head #hd-logo:hover {
  opacity: 0.5;
}

#head #menu-overlay {
  background-color: rgba(255, 255, 255, 0.8);
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0;
  position: fixed;
  z-index: -1;
  display: none;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　ヘッダ　 メニュー

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#head {
  /*background-color: #fff;*/
  position: fixed;
  z-index: 999;
  left: 0;
  right: 0;
  top: 0;
  transition: ease-in-out 0.5s;
  -moz-transition: ease-in-out 0.5s;
  -webkit-transition: ease-in-out 0.5s;
  -o-transition: ease-in-out 0.5s;
  -ms-transition: ease-in-out 0.5s;
}

#head ul {
  letter-spacing: -0.5em;
}

#head ul li {
  display: inline-block;
  vertical-align: top;
  letter-spacing: 0.01em;
}

#head nav {
  display: table-cell;
  vertical-align: middle;
  text-align: right;
  margin-right: 160px;
  margin-top: 6px;
}

#head nav li {
  margin-left: 30px;
  font-size: 14px;
}

#head nav > ul > li > a,
#head nav > ul > li > span {
  display: block;
  padding-top: 35px;
  padding-bottom: 35px;
  position: relative;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #666;
}

#head nav a.no-link {
  pointer-events: none;
  cursor: pointer;
}

#head nav > ul > li:hover > a,
#head nav > ul > li:hover > span {
  color: #6ab806;
}

#head nav > ul > li > a:before,
#head nav > ul > li > span:before {
  height: 2px;
  background-color: #6ab806;
  left: 0;
  bottom: 30px;
  position: absolute;
  z-index: 1;
  content: "";
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
  width: 0%;
}

#head nav > ul > li:hover > a:before,
#head nav > ul > li:hover > span:before {
  left: 0;
  width: 100%;
}

/*斜めライン*/
#head nav > ul > li > a:after,
#head nav > ul > li > span:after {
  position: absolute;
  left: -1px;
  top: 29px;
  width: 19px;
  height: 1px;
  background-color: #CCC;
  z-index: 1;
  content: "";
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/*#head nav > ul > li:hover > a:after,
#head nav > ul > li:hover > span:after{
    position: absolute;
    left: -1px;
    top: 29px;
    width: 100%;
    height: 2px;
    background-color:  imp.$clr-green3;
    z-index: 1;
    content: "";
    transform:rotate(-0deg); 
    transition: all 0.3s;
}*/
#head nav > ul > li:hover > a:after,
#head nav > ul > li:hover > span:after {
  position: absolute;
  left: 3px;
  top: 35px;
  width: 0px;
  height: 1px;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　ヘッダ　 メインメニュー サブメニュー

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#head nav .sub-menu {
  position: absolute;
  left: 91px;
  right: 91px;
  z-index: 4;
  text-align: left;
  background-color: #f7f7f7;
  display: none;
}

#head nav .sub-menu .blk {
  display: table;
  width: 100%;
}

/*左側 カテゴリー表示*/
#head nav .sub-menu .cat {
  display: table-cell;
  font-weight: bold;
  font-size: 28px;
  width: 34%;
  padding: 5% 0% 5% 4%;
  line-height: 1.4;
  padding-right: 0;
  /*    border: 1px solid #CCC;*/
}
#head nav .sub-menu .cat .en {
  font-size: 1.3vw;
  font-weight: 400;
  color: #888;
}
#head nav .sub-menu .cat .jp {
  font-size: 2.4vw;
  font-weight: 500;
  color: #333;
  text-indent: -0.4vw;
}
#head nav .sub-menu .cat .jp:first-letter {
  color: #90bc04;
}

/*
#head nav .sub-menu .cat span {
    font-family: 'Oswald', sans-serif;
font-weight: 400;
    display: block;
    font-size: 13px;
    color: #808080;
    margin-top: 5px;
}
*/
/*右側 各ページリンク*/
#head nav .sub-menu .sub {
  display: table-cell;
  padding: 5% 4% 5% 0%;
  vertical-align: middle;
}

#head nav .sub-menu .sub ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#head nav .sub-menu .sub li {
  width: 23%;
  margin: 0;
}
#head nav .sub-menu .sub li .ofi {
  margin-bottom: 0.3vw;
  aspect-ratio: 1.3;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#head nav .sub-menu .sub li .tex {
  font-size: 1vw;
  font-weight: 500;
}

#head nav .sub-menu .sub a {
  color: #333;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#head nav .sub-menu .sub a:hover {
  color: #90bc04;
}
#head nav .sub-menu .sub a:hover .ofi {
  -webkit-filter: brightness(130%);
          filter: brightness(130%);
}

/*
#head nav li:first-child {
    margin-left: 0px;
}
*/
/*
#head .menu-trigger,
#head .menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
#head .menu-trigger {
  position: relative;
  width: 30px;
  height: 13px;
    margin-top: 43px;
}
#head .menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #939495;
}
#head .menu-trigger span:nth-of-type(1) {
  top: 0;
}
#head .menu-trigger span:nth-of-type(2) {
  top: 11px;
}

#head #sp-btn.active .menu-trigger span:nth-of-type(1) {
  -webkit-transform: translateY(6px) rotate(-45deg);
  transform: translateY(6px) rotate(-45deg);
}
#head #sp-btn.active .menu-trigger span:nth-of-type(2) {
  -webkit-transform: translateY(-6px) rotate(45deg);
  transform: translateY(-6px) rotate(45deg);
}
*/
/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　固定バナー

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#fixban-wp {
  background: #f7f7f7;
  margin-right: 6%;
  margin-top: 220px;
  padding-top: 6%;
  padding-bottom: 6%;
  padding-left: 4%;
  padding-left: 2%;
  position: relative;
}

#fixban-wp .inner {
  background: #FFF;
  width: 88%;
  margin: 0 auto;
  padding: 5% 0;
}

#fixban {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#fixban .en {
  font-size: 3.6rem;
  color: #333;
  margin-bottom: 15px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#fixban .en:first-letter {
  color: #90bc04;
}
#fixban .jp {
  font-size: 1.8rem;
  letter-spacing: 1px;
  margin-bottom: 35px;
  color: #333;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#fixban .vm {
  font-size: 1.4rem;
  color: #6ab806;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  letter-spacing: 2px;
  border-bottom: 1px solid #6ab806;
  padding-bottom: 3px;
  display: inline-block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#fixban li {
  width: 33.333%;
  text-align: center;
}
#fixban li:nth-child(1) {
  border-right: 1px solid #e5e4e4;
}
#fixban li:nth-child(2) {
  border-right: 1px solid #e5e4e4;
}
#fixban li a {
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#fixban li a:hover { /*background: #EEE;*/ }
#fixban li a:hover .en {
  color: #90bc04;
}
#fixban li a:hover .jp {
  color: #90bc04;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　フッタ

–––––––––––––––––––––––––––––––––––––––––––––––––– */
footer {
  /*background: #EEE;*/
  padding: 200px 0 100px 0;
}
footer .cons {
  /*border: 1px solid #000;*/
  max-width: 90%;
}
footer address {
  font-style: normal;
}

/*　フッター上部
----------------------------------------------------*/
#ft-abv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 80px;
  /*フッターSNS*/
}
#ft-abv #ft-kazoku {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 3px;
}
#ft-abv #ft-logo {
  width: 254px;
  margin-bottom: 45px;
}
#ft-abv .rbox {
  /*border: 1px solid #CCC;*/
}
#ft-abv #ft-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Jost", sans-serif;
  font-weight: 500;
}
#ft-abv #ft-sns li {
  font-size: 1.6rem;
}
#ft-abv #ft-sns li:nth-child(1) {
  margin-right: 35px;
}
#ft-abv #ft-sns a {
  color: #666;
}
#ft-abv #ft-sns i {
  width: 25px;
  display: inline-block;
  margin-right: 0.5em;
  vertical-align: 2px;
}
#ft-abv #ft-sns i img {
  width: 100%;
  height: auto;
}
#ft-abv #ft-sns li:nth-child(2) i {
  width: 28px;
  vertical-align: 5px;
}

/*　フッター下部
----------------------------------------------------*/
#ft-bot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#ft-bot #ft-logotype {
  width: 160px;
  margin-bottom: 20px;
}
#ft-bot #ft-logotype img {
  width: 100%;
  height: auto;
}
#ft-bot #ft-tel {
  font-size: 2.2rem;
  margin-bottom: 7px;
  font-family: "Jost", sans-serif;
  font-weight: 500;
}
#ft-bot #ft-tel a {
  color: #666;
}
#ft-bot #adr {
  font-size: 1.4rem;
  line-height: 130%;
  font-weight: 500;
}
#ft-bot #copyright {
  font-size: 1.3rem;
  font-family: "Jost", sans-serif;
}
#ft-bot #ft-contact {
  width: 140px;
  text-align: center;
  font-size: 1.8rem;
  margin: 0 0 0 auto;
  border-left: 2px solid #6ab806;
  border-right: 2px solid #6ab806;
}
#ft-bot #ft-contact a {
  display: block;
  font-weight: 500;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　フッタナビ

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#ft-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 0 auto;
  /*border: 1px solid #CCC;*/
  width: 360px;
}

#ft-nav li {
  width: 48%;
  font-size: 1.4rem;
  letter-spacing: 1px;
  padding-left: 18px;
  position: relative;
  margin-bottom: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#ft-nav li:nth-child(even) {
  width: 100px;
  /*background: #ff8080; */
}

#ft-nav li:hover {
  padding-left: 23px;
  position: relative;
  margin-bottom: 20px;
}

#ft-nav li:after {
  position: absolute;
  left: 0;
  top: 50%;
  content: "";
  width: 100%;
  height: 1px;
  width: 12px;
  background-color: #CCC;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#ft-nav li:hover:after {
  position: absolute;
  left: 0;
  top: 50%;
  content: "";
  width: 100%;
  height: 1px;
  width: 17px;
  background-color: #6ab806;
}

#ft-nav li a {
  color: #666;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#ft-nav li a:hover {
  color: #6ab806;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　ショートカット　ボタン

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#shortcat {
  position: fixed;
  top: auto;
  bottom: 0;
  right: 0;
  z-index: 999;
  width: 500px;
  /*    width: 350px;*/
}
#shortcat ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#shortcat li {
  margin-top: 0;
  display: block;
  width: 33.333%;
  /*        width: 50%;*/
  border: none;
}
#shortcat a {
  display: block;
  font-size: 12px;
  width: 100%;
  line-height: 100%;
  height: 70px;
  color: #CCC;
  padding-top: 0;
  background-color: rgba(0, 0, 0, 0.7);
  font-size: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#shortcat a:hover {
  background: #000;
}
#shortcat i {
  font-size: 3em;
  margin-right: 7px;
  padding-top: 5px;
}
#shortcat span {
  line-height: 130%;
  letter-spacing: 2px;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　中ページ 共通パーツ

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#sec0, #sec1, #sec1b, #sec2, #sec3, #sec4, #sec5, #sec6, #sec7 {
  margin-bottom: 230px;
}

/*左右ボックス*/
.lbox {
  width: 48%;
}

.rbox {
  width: 48%;
}

/*　ページタイトル 外枠
----------------------------------------------------*/
.pg-tit-wp {
  padding: 0vw 6vw;
  margin-bottom: 180px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/*　ページタイトル
----------------------------------------------------*/
#pg-tit {
  font-size: 2.6rem;
  letter-spacing: 1px;
  font-weight: 500;
}
#pg-tit #cts-name {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #999;
  font-weight: 400;
  letter-spacing: 3px;
  position: relative;
}
#pg-tit #cts-name > span {
  padding-left: 35px;
}
#pg-tit #cts-name:after {
  position: absolute;
  left: 0;
  top: 50%;
  content: "";
  height: 1px;
  width: 20px;
  background-color: #999999;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: -1;
}
#pg-tit .en {
  letter-spacing: 0;
  font-size: 8rem;
  padding-right: 0.3em;
  display: inline-block;
  line-height: 116%;
}
#pg-tit .en:first-letter {
  color: #90bc04 !important;
}
#pg-tit .jp {
  letter-spacing: 0.2vw;
  display: inline-block;
  font-weight: 500;
  vertical-align: 0.4em;
}

/*　タイトル横 サブメニュー
----------------------------------------------------*/
.pg-tit-wp .subnav {
  width: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 40px;
}
.pg-tit-wp .subnav li {
  width: 47%;
  line-height: 40px;
  font-weight: 500;
}
.pg-tit-wp .subnav li:nth-child(1), .pg-tit-wp .subnav li:nth-child(2) {
  margin-bottom: 3.5%;
}
.pg-tit-wp .subnav a {
  display: block;
  color: #666;
  letter-spacing: 0;
  background: #FFF;
  white-space: nowrap;
  display: inline-block;
  /*transition: all 0.3s;*/
}
.pg-tit-wp .subnav a {
  padding-bottom: 0px; /* テキストと下線の間隔 */
  background-image: -webkit-gradient(linear, left top, left bottom, from(#90bc04), to(#90bc04));
  background-image: linear-gradient(#90bc04, #90bc04);
  background-repeat: no-repeat;
  background-position: bottom right; /* 下線の初期位置 */
  background-size: 0 1px; /* 下線のサイズ（横幅、高さ） */
  -webkit-transition: background-size 0.3s, color 0.3s;
  transition: background-size 0.3s, color 0.3s;
}
.pg-tit-wp .subnav a:hover {
  background-position: bottom left; /* 下線のホバー時位置 */
  background-size: 100% 2px; /* 下線の横幅を100%にする */
}
.pg-tit-wp .subnav a:hover {
  color: #90bc04;
}

/*　アンカーリンク リスト
----------------------------------------------------*/
.anc-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.anc-link li {
  margin-left: 4em;
}
.anc-link li:first-child {
  margin-left: 0;
}
.anc-link a {
  position: relative;
  color: #666;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding-left: 27px;
}
.anc-link a:hover {
  color: #6ab806;
}
.anc-link a:before {
  content: "";
  width: 20px;
  height: 2px;
  display: inline-block;
  background-color: #6ab806;
  position: absolute;
  top: 53%;
  left: 0;
}

.anc-link .btn2 {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#6ab806), to(#6ab806));
  background-image: linear-gradient(#6ab806, #6ab806);
  background-size: 0 1px;
}

.anc-link .btn2:hover {
  background-position: bottom left;
  background-size: 100% 1px;
}

/*　仕様系リストの外枠
----------------------------------------------------*/
.spec-clm {
  border-top: 1px solid #CCC;
  padding-bottom: 80px;
}
.spec-clm .tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 60px 0 60px;
}
.spec-clm .tit .ms3 {
  width: 30%;
  margin-bottom: 0;
}
.spec-clm .tit .tex {
  width: 70%;
}

/*　仕様系リスト  3列タイル
----------------------------------------------------*/
.tilelist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  /*align-items:center;*/
}
.tilelist li {
  width: 32%;
  margin-bottom: 2%;
}

/*　インデント リスト （先頭の・がインデント）
----------------------------------------------------*/
.cmnlist li {
  font-family: "Noto Sans JP", sans-serif;
  text-indent: -1em;
  padding-left: 1em;
  line-height: 140%;
  margin-bottom: 7px;
}

/*　画像パララックス用(gsap)
----------------------------------------------------*/
.gsp-para-wp {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 2;
  /*    border: 1px solid #e7e7e7;*/
}

.gsp-para-wp img {
  position: absolute;
  width: 100%;
  height: 112%;
  left: 0;
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

/*　写真object-fit
----------------------------------------------------*/
.ofi img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　見出し

–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*　セクションタイトル
----------------------------------------------------*/
.sec-tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 130px;
  position: relative;
}
.sec-tit .ms0 {
  color: #333;
}
.sec-tit .ms0:first-letter {
  color: #9dc814;
}
.sec-tit .line {
  width: 150px;
  height: 1px;
  background: #CCC;
  margin: 0 1em;
}
.sec-tit .en {
  font-size: 2.4rem;
  font-weight: 400;
  color: #999;
  letter-spacing: 2px;
}

.sec-tit:after {
  content: "";
  width: 40px;
  height: 3px;
  background-color: #333;
  margin-top: 25px;
  position: absolute;
  left: 0;
  top: 30px;
}

/*　見出しサイズ
----------------------------------------------------*/
.ms0 {
  font-size: 3.6rem;
  font-weight: 500;
  letter-spacing: 1px;
}

.ms1 {
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 45px;
  color: #333;
}

.ms2 {
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 140%;
  margin-bottom: 40px;
  color: #333;
}

.ms3 {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 140%;
  margin-bottom: 40px;
  color: #333;
}

.ms4 {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: #333;
}

.note {
  font-size: 1.4rem;
  margin-top: 20px;
  letter-spacing: 1px;
  color: #999;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　 写真  裁ち落としボックス

–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*　写真：右側  裁ち落としボックス
----------------------------------------------------*/
.r-phbox {
  padding-top: 1px;
  position: relative;
}
.r-phbox .cons {
  position: relative;
  z-index: 1;
  /*border: 1px solid #CCC;*/
}
.r-phbox .inner {
  width: 48%;
  min-height: 400px;
  padding-top: 80px;
  /*border: 1px solid #CCC;*/
}
.r-phbox .cutph {
  width: 48%;
  height: 380px;
  position: absolute;
  right: 0;
  top: 0;
}

/*　写真：左側  裁ち落としボックス
----------------------------------------------------*/
.l-phbox {
  padding-top: 1px;
  position: relative;
}
.l-phbox .cons {
  position: relative;
  z-index: 1;
  /* border: 1px solid #CCC;*/
}
.l-phbox .inner {
  width: 48%;
  min-height: 400px;
  padding-top: 80px;
  margin: 0 0 0 auto;
  /*border: 1px solid #CCC;*/
}
.l-phbox .cutph {
  width: 48%;
  height: 380px;
  position: absolute;
  left: 0;
  top: 0;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　ボタン

–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*　 一覧へボタン（グレイべた） ：
----------------------------------------------------*/
.bt-gray a {
  display: inline-block;
  background: #f7f7f7;
  color: #666;
  font-size: 1.4rem;
  padding: 8px 0 8px 20px;
  border-radius: 30px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.bt-gray a:hover {
  background: #555;
  color: #FFF;
}
.bt-gray i {
  font-size: 1.8em;
  vertical-align: -5px;
}
.bt-gray span {
  letter-spacing: 5px;
  padding: 0 35px;
}

/*　ボタン ： 効果１ ： 背景ベタ
----------------------------------------------------*/
a.btn1 {
  display: inline-block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  line-height: 36px;
  outline: none;
  color: #6ab806;
  background-color: #fff;
  position: relative;
  /*  border: 1px solid #1B85FB;*/
  -webkit-transition: color 0.5s ease;
  transition: color 0.5s ease;
}

a.btn1:hover {
  color: #fff !important;
}

a.btn1:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
}

a.btn1::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #6ab806;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

a.btn1 span {
  position: relative;
}

/*　ボタン ： 効果2 ： アンダーライン
----------------------------------------------------*/
.btn2 {
  padding-bottom: 3px; /* テキストと下線の間隔 */
  background-image: -webkit-gradient(linear, left top, left bottom, from(#000), to(#000));
  background-image: linear-gradient(#000, #000);
  background-repeat: no-repeat;
  background-position: bottom right; /* 下線の初期位置 */
  background-size: 0 1px; /* 下線のサイズ（横幅、高さ） */
  -webkit-transition: background-size 0.3s;
  transition: background-size 0.3s;
}

.btn2:hover {
  background-position: bottom left; /* 下線のホバー時位置 */
  background-size: 100% 1px; /* 下線の横幅を100%にする */
}

/*　 詳しく見る ボタン ：
----------------------------------------------------*/
.bt-dtl {
  width: 170px;
  font-size: 1.4rem;
  font-size: 1.6rem;
  margin-top: 40px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#CCC), to(#CCC));
  background-image: linear-gradient(#CCC, #CCC);
  background-repeat: no-repeat;
  background-position: bottom right; /* 下線の初期位置 */
  background-size: 100% 1px; /* 下線のサイズ（横幅、高さ） */
}

.bt-dtl a {
  width: 170px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 5px; /* テキストと下線の間隔 */
  background-image: -webkit-gradient(linear, left top, left bottom, from(#6ab806), to(#6ab806));
  background-image: linear-gradient(#6ab806, #6ab806);
  background-repeat: no-repeat;
  background-position: bottom right; /* 下線の初期位置 */
  background-size: 0 2px; /* 下線のサイズ（横幅、高さ） */
  color: #666;
  -webkit-transition: background-size 0.3s;
  transition: background-size 0.3s;
}

.bt-dtl a:hover {
  color: #6ab806;
  background-position: bottom left; /* 下線のホバー時位置 */
  background-size: 100% 2px; /* 下線の横幅を100%にする */
}

.bt-dtl i {
  font-size: 1.7em;
  color: #6ab806;
}

/*　囲い罫線 ボタン１ ：アイコンテキスト隣接 
----------------------------------------------------*/
/*サポートページ お問合わせ*/
.bt-boxline {
  display: inline-block;
  text-align: center;
  border: 1px solid #6ab806;
}
.bt-boxline a {
  display: block;
  font-weight: 500;
  padding: 20px 30px;
}
.bt-boxline i {
  font-size: 1.8em;
  vertical-align: -4px;
  margin-left: 7px;
}

/*　 囲い罫線 flex ボタン2 ：アイコン端 
----------------------------------------------------*/
.bt-boxlineflx {
  width: 100%;
  font-size: 1.4rem;
}

.bt-boxlineflx a {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.8rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5% 10%;
  padding: 25px 30px;
  border: 1px solid #6ab806;
}

.bt-boxlineflx a:hover {
  color: #6ab806;
  background-position: bottom left; /* 下線のホバー時位置 */
  background-size: 100% 2px; /* 下線の横幅を100%にする */
}

.bt-boxlineflx i {
  font-size: 1.7em;
  position: relative;
  z-index: 1;
}

.bt-boxlineflx .en {
  font-size: 1.5rem;
  font-weight: 400;
  margin-left: 10px;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　WPのページネーション

–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*ブログアーカイブのページネイション*/
.pagination {
  margin-top: 100px;
}

a.page-numbers,
.pagination .current {
  background: #CCC;
  text-decoration: none;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 5px;
  font-size: 18px;
  margin-right: 2px;
  color: #FFF;
}

.pagination .current {
  background: #9dc814;
  color: #FFF;
}

.pagination a:hover {
  background: #9dc814;
  color: #FFF;
}

.pagination .next,
.pagination .prev {
  width: 80px;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　共通パーツ 　404ページ

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#p404 #sec1 .en2 {
  font-size: 2.5em;
  margin-bottom: 1.5vw;
}
#p404 #sec1 .lead {
  font-size: 1.3em;
  line-height: 180%;
  letter-spacing: 0.1vw;
  margin-bottom: 3vw;
}
#p404 #sec1 .bt {
  width: 18vw;
}
#p404 #sec1 .bt a {
  text-align: center;
  display: block;
  background: #666;
  color: #FFF;
  line-height: 4vw;
  border-radius: 3vw;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#p404 #sec1 .bt a:hover {
  background: #000;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　汎用クラス

–––––––––––––––––––––––––––––––––––––––––––––––––– */
.red {
  color: #ff0000;
}

.none {
  display: none;
}

.clear {
  clear: both;
}

.clear-hr {
  clear: both;
  visibility: hidden;
  height: 0;
  margin: 0;
  border: none;
}

.sp-top80 {
  margin-top: 80px !important;
}

.sp-top1em {
  margin-top: 1em;
}

.sp-top2em {
  margin-top: 2em;
}

.sp-bot1em {
  margin-bottom: 1em;
}

.sp-bot2em {
  margin-bottom: 2em;
}

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

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

.sp-top-none {
  margin-top: 0 !important;
}

.sprite {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.gray {
  background: #f3f3f3;
}

.nt {
  font-size: 1.2rem;
  color: #666;
}

li.emp {
  height: 0;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.ytb {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.ytb iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

@media screen and (max-width: 1150px) {
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　初期設定 SP

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  .cons {
    max-width: auto;
    margin: 0 auto;
    width: 90%;
  }
}
/************************************************************************************

　スマホ設定

*************************************************************************************/
@media screen and (max-width: 670px) {
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　初期設定

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  html, body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, div, dl, dt, dd, table {
    margin: 0;
    padding: 0;
  }
  html {
    font-size: 62.5%;
  }
  body {
    font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    line-height: 180%;
    color: #666;
    font-size: 1.5em;
  }
  img {
    border: none;
  }
  img {
    width: 100%;
    height: auto;
    aspect-ratio: attr(width)/attr(height);
    image-rendering: -webkit-optimize-contrast;
  }
  a {
    text-decoration: none;
    outline: none;
  }
  a:link {
    color: #3399ff;
  }
  a:visited {
    color: #3399ff;
  }
  a:hover {
    color: #3399ff;
  }
  a:active {
    color: #3399ff;
  }
  * {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .pcno {
    display: block;
  }
  .spno {
    display: none;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　基本枠

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #wrap {
    margin: 0 auto;
    padding-top: 200px;
    padding-top: 0;
    overflow: hidden;
  }
  .cons {
    max-width: auto;
    width: 86%;
    margin: 0 auto;
  }
  #content {
    line-height: 180%;
    /*    border: 1px solid #CCC;*/
  }
  /*アップボタン
  ----------------------------------------------------*/
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　ヘッダ　 枠

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: static;
    margin-bottom: 150px;
  }
  #head #hd-logo {
    width: 200px;
    margin: 15px 0 0 5%;
  }
  #head #menu-overlay {
    background-color: rgba(255, 255, 255, 0.1);
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0;
    position: fixed;
    z-index: -1;
    display: none;
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　ヘッダ　 メニュー

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #head nav {
    display: none;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　ヘッダ　 メインメニュー サブメニュー

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  /*スマホ内容カット*/
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　固定バナー

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #fixban-wp {
    background: #f7f7f7;
    margin-right: 3%;
    margin-right: 0%;
    margin-top: 100px;
    padding-top: 10%;
    padding-bottom: 10%;
    padding-left: 0%;
    position: relative;
  }
  #fixban-wp .inner {
    background: #FFF;
    background: none;
    width: 86%;
    margin: 0 auto;
    padding: 0% 0;
  }
  #fixban {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #fixban .en {
    font-size: 1.4rem;
    margin-bottom: 0px;
    line-height: 100%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #fixban .en:first-letter {
    color: #90bc04;
  }
  #fixban .jp {
    font-size: 1.7rem;
    letter-spacing: 0px;
    margin-bottom: -5px;
    color: #333;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #fixban .vm {
    font-size: 1.1rem;
    color: #6ab806;
    letter-spacing: 0px;
    border-bottom: 1px solid #6ab806;
    padding-bottom: 0px;
    display: inline-block;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    line-height: 140%;
  }
  #fixban li {
    width: 33.333%;
    width: 100%;
    text-align: center;
  }
  #fixban li:nth-child(1) {
    border-right: none;
  }
  #fixban li:nth-child(2) {
    border-right: none;
    margin: 12px 0;
  }
  #fixban li a {
    display: block;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background: #FFF;
    padding: 20px 0;
  }
  #fixban li a:hover { /*background: #EEE;*/ }
  #fixban li a:hover .en {
    color: #90bc04;
  }
  #fixban li a:hover .jp {
    color: #90bc04;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　フッタ

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  footer {
    /*background: #EEE;*/
    padding: 70px 0 100px 0;
  }
  footer .cons {
    /*border: 1px solid #000;*/
    max-width: 90%;
  }
  footer address {
    font-style: normal;
  }
  /*　フッター上部
  ----------------------------------------------------*/
  #ft-abv {
    display: block;
    margin-bottom: 40px;
    /*フッターSNS*/
  }
  #ft-abv #ft-kazoku {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 3px;
  }
  #ft-abv #ft-logo {
    width: 220px;
    margin-bottom: 20px;
  }
  #ft-abv .lbox {
    margin-bottom: 40px;
  }
  #ft-abv #ft-sns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-family: "Jost", sans-serif;
    font-weight: 500;
  }
  #ft-abv #ft-sns li {
    font-size: 1.6rem;
  }
  #ft-abv #ft-sns li:nth-child(1) {
    margin-right: 35px;
  }
  #ft-abv #ft-sns a {
    color: #666;
    font-weight: 400;
  }
  #ft-abv #ft-sns i {
    width: 20px;
    display: inline-block;
    margin-right: 0.3em;
    vertical-align: 2px;
  }
  #ft-abv #ft-sns i img {
    width: 100%;
    height: auto;
  }
  #ft-abv #ft-sns li:nth-child(2) i {
    width: 23px;
    vertical-align: 5px;
  }
  /*　フッター下部
  ----------------------------------------------------*/
  #ft-bot {
    display: block;
  }
  #ft-bot #ft-logotype {
    width: 130px;
    margin-bottom: 10px;
  }
  #ft-bot #ft-tel {
    font-size: 2rem;
    margin-bottom: 3px;
    font-family: "Jost", sans-serif;
    font-weight: 400;
  }
  #ft-bot #ft-tel a {
    color: #666;
  }
  #ft-bot #adr {
    font-size: 1.4rem;
    line-height: 130%;
    font-weight: 500;
    margin-bottom: 10px;
  }
  #ft-bot #copyright {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
  #ft-bot #ft-contact {
    width: 100%;
    text-align: center;
    font-size: 1.5rem;
    border: none;
  }
  #ft-bot #ft-contact a {
    display: block;
    font-weight: 400;
    line-height: 50px;
    border: 1px solid #6ab806;
    border-radius: 8px;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　フッタナビ

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #ft-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 0 0 auto;
    width: 100%;
  }
  #ft-nav li {
    width: 46%;
    width: 32%;
    font-size: 1.3rem;
    letter-spacing: 0px;
    padding-left: 10px;
    position: relative;
    margin-bottom: 10px;
    /*    border: 1px solid #CCC;*/
  }
  #ft-nav li:nth-child(even) {
    width: 48%;
    width: 32%;
  }
  #ft-nav li:hover {
    padding-left: 10px;
    position: relative;
    margin-bottom: 20px;
  }
  #ft-nav li:after {
    width: 6px;
  }
  #ft-nav li:hover:after {
    width: 6px;
  }
  #ft-nav li a {
    color: #666;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #ft-nav li a:hover {
    color: #6ab806;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　ショートカット　ボタン

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #shortcat {
    width: 100%;
  }
  #shortcat li {
    width: 33.333%;
    /*        width: 50%;*/
  }
  #shortcat a {
    display: block;
    width: 100%;
    line-height: 100%;
    height: 55px;
    font-size: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #shortcat i {
    font-size: 2.9em;
    margin-right: 7px;
    padding-top: 5px;
  }
  #shortcat span {
    line-height: 130%;
    letter-spacing: 2px;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　中ページ 共通パーツ

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #sec0, #sec1, #sec1b, #sec2, #sec3, #sec4, #sec5, #sec6, #sec7 {
    margin-bottom: 100px;
  }
  /*左右ボックス*/
  .lbox {
    width: 100%;
  }
  .rbox {
    width: 100%;
  }
  /*　ページタイトル 外枠
  ----------------------------------------------------*/
  .pg-tit-wp {
    padding: 0vw 6vw;
    margin-bottom: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  /*　ページタイトル
  ----------------------------------------------------*/
  #pg-tit {
    font-size: 1.5rem;
    letter-spacing: 1px;
    font-weight: 500;
  }
  #pg-tit #cts-name {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: #999;
    font-weight: 400;
    letter-spacing: 3px;
    position: relative;
  }
  #pg-tit #cts-name > span {
    padding-left: 35px;
  }
  #pg-tit #cts-name:after {
    position: absolute;
    left: 0;
    top: 50%;
    content: "";
    height: 1px;
    width: 20px;
    background-color: #999999;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    z-index: -1;
  }
  #pg-tit .en {
    letter-spacing: 0;
    font-size: 8rem;
    font-size: 4.5rem;
    padding-right: 0.3em;
    display: inline-block;
    line-height: 116%;
  }
  #pg-tit .en:first-letter {
    color: #90bc04 !important;
  }
  #pg-tit .jp {
    letter-spacing: 0vw;
    display: inline-block;
    font-weight: 500;
    vertical-align: 0.4em;
  }
  #pg-tit br.pcno {
    display: none;
  }
  /*　タイトル横 サブメニュー
  ----------------------------------------------------*/
  .pg-tit-wp .subnav {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 40px;
  }
  .pg-tit-wp .subnav li {
    width: 45%;
    line-height: 25px;
    font-size: 1.2rem;
  }
  .pg-tit-wp .subnav li:nth-child(1), .pg-tit-wp .subnav li:nth-child(2) {
    margin-bottom: 3.5%;
  }
  .pg-tit-wp .subnav a {
    display: block;
    color: #666;
    letter-spacing: 0;
    background: #FFF;
    white-space: nowrap;
    display: inline-block;
    /*transition: all 0.3s;*/
  }
  .pg-tit-wp .subnav a {
    padding-bottom: 0px; /* テキストと下線の間隔 */
    background-image: -webkit-gradient(linear, left top, left bottom, from(#90bc04), to(#90bc04));
    background-image: linear-gradient(#90bc04, #90bc04);
    background-repeat: no-repeat;
    background-position: bottom right; /* 下線の初期位置 */
    background-size: 0 1px; /* 下線のサイズ（横幅、高さ） */
    -webkit-transition: background-size 0.3s, color 0.3s;
    transition: background-size 0.3s, color 0.3s;
  }
  .pg-tit-wp .subnav a:hover {
    background-position: bottom left; /* 下線のホバー時位置 */
    background-size: 100% 2px; /* 下線の横幅を100%にする */
  }
  .pg-tit-wp .subnav a:hover {
    color: #90bc04;
  }
  /*　アンカーリンク リスト
  ----------------------------------------------------*/
  .anc-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .anc-link li {
    margin-left: 0em;
    margin-right: 2rem;
  }
  .anc-link li:first-child {
    margin-left: 0;
  }
  .anc-link a {
    position: relative;
    color: #666;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    padding-left: 15px;
    font-size: 1.2rem;
  }
  .anc-link a:hover {
    color: #6ab806;
  }
  .anc-link a:before {
    content: "";
    width: 10px;
    height: 1px;
    top: 50%;
  }
  /*　仕様系リストの外枠
  ----------------------------------------------------*/
  .spec-clm {
    border-top: 1px solid #CCC;
    padding-bottom: 80px;
  }
  .spec-clm .tit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    padding: 60px 0 60px;
  }
  .spec-clm .tit .ms3 {
    width: 30%;
    margin-bottom: 0;
  }
  .spec-clm .tit .tex {
    width: 70%;
  }
  /*　仕様系リスト  3列タイル
  ----------------------------------------------------*/
  .tilelist {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    /*align-items:center;*/
  }
  .tilelist li {
    width: 32%;
    width: 48%;
    margin-bottom: 4%;
  }
  /*　インデント リスト （先頭の・がインデント）
  ----------------------------------------------------*/
  .cmnlist li {
    font-family: "Noto Sans JP", sans-serif;
    text-indent: -1em;
    padding-left: 1em;
    line-height: 140%;
    margin-bottom: 7px;
  }
  /*　画像パララックス用(gsap)
  ----------------------------------------------------*/
  .gsp-para-wp {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1;
  }
  .gsp-para-wp img {
    position: absolute;
    width: 100%;
    height: 112%;
    left: 0;
    bottom: 0;
    -o-object-fit: cover;
       object-fit: cover;
  }
  /*　写真object-fit
  ----------------------------------------------------*/
  .ofi img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 50% 50%;
       object-position: 50% 50%;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　見出し

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  /*　セクションタイトル
  ----------------------------------------------------*/
  .sec-tit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-bottom: 130px;
    margin-bottom: 75px;
    position: relative;
  }
  .sec-tit .ms0 {
    color: #333;
    letter-spacing: 2px !important;
    line-height: 130%;
    width: 100%;
  }
  .sec-tit .ms0:first-letter {
    color: #9dc814;
  }
  .sec-tit .line {
    width: 150px;
    height: 1px;
    background: #CCC;
    margin: 0 1em;
    display: none;
  }
  .sec-tit .en {
    font-size: 1.8rem !important;
    font-weight: 400;
    color: #999;
    letter-spacing: 1px !important;
    width: 100%;
    margin-bottom: 5px;
  }
  .sec-tit:after {
    content: "";
    width: 40px;
    height: 3px;
    background-color: #333;
    margin-top: 25px;
    position: absolute;
    left: 0;
    top: auto;
    bottom: -30px;
  }
  /*　見出しサイズ
  ----------------------------------------------------*/
  .ms0 {
    font-size: 3.6rem;
    font-size: 2.4rem;
    font-weight: 500;
    letter-spacing: 1px;
  }
  .ms1 {
    font-size: 3rem;
    font-size: 2.2rem;
    letter-spacing: 1px;
    margin-bottom: 25px;
    line-height: 140%;
  }
  .ms2 {
    font-size: 2.6rem;
    font-size: 2rem;
    letter-spacing: 1px;
    line-height: 140%;
    margin-bottom: 20px;
    color: #333;
  }
  .ms3 {
    font-size: 2.4rem;
    font-size: 1.8rem;
    letter-spacing: 1px;
    line-height: 140%;
    margin-bottom: 20px;
    color: #333;
  }
  .ms4 {
    font-size: 2rem;
    font-size: 1.6rem;
    line-height: 140%;
    letter-spacing: 0px;
    margin-bottom: 5px;
    color: #333;
  }
  .note {
    font-size: 1.2rem;
    margin-top: 15px;
    letter-spacing: 0px;
    line-height: 150%;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　 写真  裁ち落としボックス

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  /*　写真：右側  裁ち落としボックス
  ----------------------------------------------------*/
  .r-phbox {
    padding-top: 1px;
    position: relative;
  }
  .r-phbox .cons {
    position: relative;
    z-index: 1;
    /*border: 1px solid #CCC;*/
  }
  .r-phbox .inner {
    width: 48%;
    width: 100%;
    min-height: 0px;
    padding-top: 0px;
    /*border: 1px solid #CCC;*/
  }
  .r-phbox .cutph {
    width: 100%;
    height: 200px;
    position: relative;
  }
  /*　写真：左側  裁ち落としボックス
  ----------------------------------------------------*/
  .l-phbox {
    padding-top: 1px;
    position: relative;
  }
  .l-phbox .cons {
    position: relative;
    z-index: 1;
    /* border: 1px solid #CCC;*/
  }
  .l-phbox .inner {
    width: 100%;
    min-height: 100px;
    padding-top: 0px;
    margin: 0 0 0 auto;
    /*border: 1px solid #CCC;*/
  }
  .l-phbox .cutph {
    width: 48%;
    width: 100%;
    height: 10px;
    height: 200px;
    position: relative;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　ボタン

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  /*　 一覧へボタン（グレイべた） ：
  ----------------------------------------------------*/
  .bt-gray a {
    display: inline-block;
    background: #f7f7f7;
    color: #666;
    font-size: 1.2rem;
    padding: 4px 0 4px 15px;
    border-radius: 30px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .bt-gray a:hover {
    background: #555;
    color: #FFF;
  }
  .bt-gray i {
    font-size: 1.5em;
    vertical-align: -2px;
  }
  .bt-gray span {
    letter-spacing: 2px;
    padding: 0 15px;
  }
  /*　ボタン ： 効果１ ： 背景ベタ
  ----------------------------------------------------*/
  a.btn1 {
    display: inline-block;
    width: 100%;
    text-align: center;
    text-decoration: none;
    line-height: 36px;
    outline: none;
    color: #6ab806;
    background-color: #fff;
    position: relative;
    /*  border: 1px solid #1B85FB;*/
    -webkit-transition: color 0.5s ease;
    transition: color 0.5s ease;
  }
  a.btn1:hover {
    color: #fff !important;
  }
  a.btn1:hover::before {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  a.btn1::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #6ab806;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
  }
  a.btn1 span {
    position: relative;
  }
  /*　ボタン ： 効果2 ： アンダーライン
  ----------------------------------------------------*/
  .btn2 {
    padding-bottom: 3px; /* テキストと下線の間隔 */
    background-image: -webkit-gradient(linear, left top, left bottom, from(#000), to(#000));
    background-image: linear-gradient(#000, #000);
    background-repeat: no-repeat;
    background-position: bottom right; /* 下線の初期位置 */
    background-size: 0 1px; /* 下線のサイズ（横幅、高さ） */
    -webkit-transition: background-size 0.3s;
    transition: background-size 0.3s;
  }
  .btn2:hover {
    background-position: bottom left; /* 下線のホバー時位置 */
    background-size: 100% 1px; /* 下線の横幅を100%にする */
  }
  /*　 詳しく見る ボタン ：
  ----------------------------------------------------*/
  .bt-dtl {
    width: 150px;
    font-size: 1.3rem;
    margin-top: 30px;
  }
  .bt-dtl a {
    width: 150px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-bottom: 5px; /* テキストと下線の間隔 */
    background-image: -webkit-gradient(linear, left top, left bottom, from(#6ab806), to(#6ab806));
    background-image: linear-gradient(#6ab806, #6ab806);
    background-repeat: no-repeat;
    background-position: bottom right; /* 下線の初期位置 */
    background-size: 0 2px; /* 下線のサイズ（横幅、高さ） */
    color: #666;
    -webkit-transition: background-size 0.3s;
    transition: background-size 0.3s;
  }
  .bt-dtl a:hover {
    color: #6ab806;
    background-position: bottom left; /* 下線のホバー時位置 */
    background-size: 100% 2px; /* 下線の横幅を100%にする */
  }
  .bt-dtl i {
    font-size: 1.7em;
    color: #6ab806;
  }
  /*　囲い罫線 ボタン１ ：アイコンテキスト隣接 
  ----------------------------------------------------*/
  /*サポートページ お問合わせ*/
  .bt-boxline {
    display: inline-block;
    text-align: center;
    border: 1px solid #6ab806;
  }
  .bt-boxline a {
    display: block;
    font-weight: 500;
    padding: 20px 30px;
  }
  .bt-boxline i {
    font-size: 1.8em;
    vertical-align: -4px;
    margin-left: 7px;
  }
  /*　 囲い罫線 flex ボタン2 ：アイコン端 
  ----------------------------------------------------*/
  .bt-boxlineflx {
    width: 100%;
    font-size: 1.4rem;
  }
  .bt-boxlineflx a {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.5rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 25px 30px;
    padding: 5% 10%;
    border: 1px solid #6ab806;
  }
  .bt-boxlineflx a:hover {
    color: #6ab806;
    background-position: bottom left; /* 下線のホバー時位置 */
    background-size: 100% 2px; /* 下線の横幅を100%にする */
  }
  .bt-boxlineflx i {
    font-size: 1.5em;
    position: relative;
    z-index: 1;
  }
  .bt-boxlineflx .en {
    font-size: 1.2rem;
    margin-left: 5px;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　WPのページネーション

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  /*ブログアーカイブのページネイション*/
  .pagination {
    margin-top: 50px;
  }
  a.page-numbers,
  .pagination .current {
    background: #CCC;
    text-decoration: none;
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 5px;
    font-size: 14px;
    margin-right: 2px;
    color: #FFF;
  }
  .pagination .current {
    background: #9dc814;
    color: #FFF;
  }
  .pagination a:hover {
    background: #9dc814;
    color: #FFF;
  }
  .pagination .next,
  .pagination .prev {
    width: 50px;
    font-size: 13px;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　共通パーツ 　404ページ

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #p404 #sec1 .en2 {
    font-size: 1.8em;
    margin-bottom: 1.5vw;
  }
  #p404 #sec1 .lead {
    font-size: 1.1em;
    line-height: 180%;
    letter-spacing: 0.1vw;
    margin-bottom: 3vw;
  }
  #p404 #sec1 .bt {
    width: 50vw;
  }
  #p404 #sec1 .bt a {
    text-align: center;
    display: block;
    background: #666;
    color: #FFF;
    line-height: 10vw;
    border-radius: 10vw;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #p404 #sec1 .bt a:hover {
    background: #000;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　横ラインアニメ

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  .anm-line {
    display: block;
    height: 1px;
    width: 100px;
    margin-left: 5px;
    position: relative;
    overflow: hidden;
    background-color: #fff;
    margin-top: 10px;
  }
  .anm-line span {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 1px;
    width: 100px;
    background: -webkit-gradient(linear, left bottom, left top, from(#fff), color-stop(#333), to(#fff));
    background: linear-gradient(0deg, #fff, #333, #fff);
    -webkit-animation: drop 1.5s cubic-bezier(0.5, 0.05, 0.6, 0.15) infinite;
    animation: drop 1.5s cubic-bezier(0.5, 0.05, 0.6, 0.15) infinite;
    z-index: 1;
  }
  @-webkit-keyframes drop {
    0% {
      -webkit-transform: translateX(100%);
      transform: translateX(100%);
    }
    to {
      -webkit-transform: translateX(-100%);
      transform: translateX(-100%);
    }
  }
  @keyframes drop {
    0% {
      -webkit-transform: translateX(100%);
      transform: translateX(100%);
    }
    to {
      -webkit-transform: translateX(-100%);
      transform: translateX(-100%);
    }
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　汎用クラス

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  .red {
    color: #ff0000;
  }
  .none {
    display: none;
  }
  .clear {
    clear: both;
  }
  .clear-hr {
    clear: both;
    visibility: hidden;
    height: 0;
    margin: 0;
    border: none;
  }
  .sp-top80 {
    margin-top: 80px !important;
  }
  .sp-top1em {
    margin-top: 1em;
  }
  .sp-top2em {
    margin-top: 2em;
  }
  .sp-bot1em {
    margin-bottom: 1em;
  }
  .sp-bot2em {
    margin-bottom: 2em;
  }
  .sp-bot15 {
    margin-bottom: 15px !important;
  }
  .sp-top15 {
    margin-top: 15px !important;
  }
  .sp-top-none {
    margin-top: 0 !important;
  }
  .sprite {
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
  }
  .gray {
    background: #f3f3f3;
  }
  .nt {
    font-size: 1.2rem;
    color: #666;
  }
  li.emp {
    height: 0;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  .ytb {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
  }
  .ytb iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
  }
}
/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　ハンバーガーメニュー

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#nav-toggle {
  position: fixed;
  top: 33px;
  right: 40px;
  cursor: pointer;
  z-index: 99999;
  /*background:#CCC;*/
  width: 70px;
  height: 35px;
}

#nav-toggle > div {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

#nav-toggle span {
  position: absolute;
  width: 100%;
  height: 3px;
  left: 0;
  display: block;
  background: #666666;
  transition: top 0.5s ease, -webkit-transform 0.6s ease-in-out;
  -webkit-transition: top 0.5s ease, -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, top 0.5s ease;
  transition: transform 0.6s ease-in-out, top 0.5s ease, -webkit-transform 0.6s ease-in-out;
}

#nav-toggle span:nth-child(1) {
  top: 9px;
}

#nav-toggle span:nth-child(2) {
  top: 1vw;
  display: none;
}

#nav-toggle span:nth-child(3) {
  top: 23px;
}

#nav-toggle:hover span:nth-child(1) {
  top: 11px;
}

#nav-toggle:hover span:nth-child(3) {
  top: 21px;
}

.open #nav-toggle span {
  background: #CCC;
}

.open #nav-toggle span:nth-child(1) {
  top: 15px;
  -webkit-transform: rotate(25deg);
  transform: rotate(25deg);
}

.open #nav-toggle span:nth-child(2) {
  top: 15px;
  width: 0;
  left: 50%;
}

.open #nav-toggle span:nth-child(3) {
  top: 15px;
  -webkit-transform: rotate(-25deg);
  transform: rotate(-25deg);
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　グローバルメニュー　関連

–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*　グローバルメニュー　基本設定（外枠）
----------------------------------------------------*/
#gloval-nav {
  background: url(../img/gnav-bk.webp) 50% 50%;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.6s ease, visibility 0.6s ease;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* open */
.open {
  overflow: hidden;
}

.open #gloval-nav {
  visibility: visible;
  opacity: 1;
}

.open #gloval-nav li {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  transition: opacity 0.9s ease, -webkit-transform 1s ease;
  -webkit-transition: opacity 0.9s ease, -webkit-transform 1s ease;
  transition: transform 1s ease, opacity 0.9s ease;
  transition: transform 1s ease, opacity 0.9s ease, -webkit-transform 1s ease;
}

/*　グローバルメニュー　レイアウト 基本枠
----------------------------------------------------*/
#gloval-nav nav {
  background: none;
  width: 80vw;
  height: auto;
  text-align: left;
  padding-top: 1px;
  color: #FFF;
}

#gloval-nav nav .abvbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 0%;
}
#gloval-nav nav .abvbox .lbox {
  width: 21%;
}
#gloval-nav nav .abvbox .rbox {
  width: 70%;
}

/*　上段 左側ボックス
----------------------------------------------------*/
#gloval-nav nav .abvbox .lbox a {
  color: #FFF;
}
#gloval-nav nav .abvbox .lbox .logotex {
  font-size: 1.2vw;
  margin-bottom: 2%;
}
#gloval-nav nav .abvbox .lbox .logo {
  width: 100%;
  margin-bottom: 12%;
}
#gloval-nav nav .abvbox .lbox #logowp {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#gloval-nav nav .abvbox .lbox #logowp:hover {
  opacity: 0.5;
}

/* SNS*/
#gloval-nav nav .sns {
  font-size: 1vw;
  margin-bottom: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#gloval-nav nav .sns li {
  width: 48%;
}
#gloval-nav nav .sns li i {
  font-size: 2.3vw;
  margin-right: 0.2vw;
  vertical-align: -0.5vw;
}

/* subnav*/
#gloval-nav nav .subnav {
  font-size: 1.1vw;
}
#gloval-nav nav .subnav li {
  margin-bottom: 1%;
}
#gloval-nav nav .subnav li i {
  font-size: 2vw;
  margin-right: 0.4vw;
  vertical-align: -0.5vw;
}

/*　上段 右側ボックス
----------------------------------------------------*/
#gloval-nav nav .abvbox .rbox .main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
}
#gloval-nav nav .abvbox .rbox .main .grp {
  width: 23%;
  margin-bottom: 3vw;
}
#gloval-nav nav .abvbox .rbox .main dt {
  font-size: 1.4vw;
  color: #9dc814;
  font-weight: 400;
  padding-bottom: 1vw;
  margin-bottom: 0.8vw;
  position: relative;
  line-height: 100%;
}
#gloval-nav nav .abvbox .rbox .main dt:after {
  content: "";
  width: 1vw;
  height: 0.2vw;
  display: inline-block;
  background-color: #9dc814;
  position: absolute;
  bottom: 0;
  left: 0;
}
#gloval-nav nav .abvbox .rbox .main dd {
  line-height: 110%;
  margin-bottom: 0.7vw;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#gloval-nav nav .abvbox .rbox .main dd:hover {
  padding-left: 0.3vw;
}
#gloval-nav nav .abvbox .rbox .main dd a {
  color: #FFF;
  font-size: 1vw;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  line-height: 80% !important;
}
#gloval-nav nav .abvbox .rbox .main dd a:hover {
  color: #9dc814;
  /*padding-left: 0.3vw;*/
}

/*　下段 ボックス
----------------------------------------------------*/
#gloval-nav nav .botbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
#gloval-nav nav .botbox #logotype {
  width: 9vw;
  margin-bottom: 1.5%;
}
#gloval-nav nav .botbox .tel {
  font-size: 1.3vw;
}
#gloval-nav nav .botbox .adr {
  font-size: 1vw;
  letter-spacing: 0.1vw;
}

/*　下段 おさえバナー
----------------------------------------------------*/
#gloval-nav nav .botbox .ban {
  width: 25vw;
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 0 auto;
}
#gloval-nav nav .botbox .ban li {
  width: 48%;
}
#gloval-nav nav .botbox .ban a {
  font-size: 0.9vw;
  line-height: 3vw;
  border: 1px solid #CCC;
  text-align: center;
  display: block;
  font-size: 1vw;
  color: #f3f3f3;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#gloval-nav nav .botbox .ban a:hover {
  background: #f3f3f3;
  color: #333;
}

/*グローバルメニュー　動き
----------------------------------------------------*/
/*グローバルメイン*/
#gloval-nav .rbox {
  opacity: 0;
  -webkit-transform: translateX(200px);
  transform: translateX(200px);
  transition: opacity 0.2s ease, -webkit-transform 0.6s ease;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.6s ease;
  transition: transform 0.6s ease, opacity 0.2s ease;
  transition: transform 0.6s ease, opacity 0.2s ease, -webkit-transform 0.6s ease;
}

.open #gloval-nav .rbox {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  transition: opacity 0.9s ease, -webkit-transform 1s ease;
  -webkit-transition: opacity 0.9s ease, -webkit-transform 1s ease;
  transition: transform 1s ease, opacity 0.9s ease;
  transition: transform 1s ease, opacity 0.9s ease, -webkit-transform 1s ease;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

/*グローバルメイン*/
#gloval-nav .lbox {
  opacity: 0;
  -webkit-transform: translateX(200px);
  transform: translateX(200px);
  transition: opacity 0.2s ease, -webkit-transform 0.6s ease;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.6s ease;
  transition: transform 0.6s ease, opacity 0.2s ease;
  transition: transform 0.6s ease, opacity 0.2s ease, -webkit-transform 0.6s ease;
}

.open #gloval-nav .lbox {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  transition: opacity 0.9s ease, -webkit-transform 1s ease;
  -webkit-transition: opacity 0.9s ease, -webkit-transform 1s ease;
  transition: transform 1s ease, opacity 0.9s ease;
  transition: transform 1s ease, opacity 0.9s ease, -webkit-transform 1s ease;
}

/************************************************************************************

　スマホ設定

*************************************************************************************/
/************************************************************************************

　スマホ設定

*************************************************************************************/
@media screen and (max-width: 670px) {
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　スマホ　ハンバーガーメニュー

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #nav-toggle {
    position: fixed;
    top: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    padding-top: 15px;
  }
  #nav-toggle > div {
    width: 100%;
  }
  #nav-toggle span {
    width: 100%;
    height: 1px;
    left: 0;
    display: block;
    background: #333;
    position: absolute;
    transition: top 0.5s ease, -webkit-transform 0.6s ease-in-out;
    -webkit-transition: top 0.5s ease, -webkit-transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out, top 0.5s ease;
    transition: transform 0.6s ease-in-out, top 0.5s ease, -webkit-transform 0.6s ease-in-out;
  }
  #nav-toggle span:nth-child(1) {
    top: 5px;
  }
  #nav-toggle span:nth-child(3) {
    top: 15px;
  }
  #nav-toggle:hover span:nth-child(1) {
    top: 5px;
  }
  #nav-toggle:hover span:nth-child(3) {
    top: 15px;
  }
  .open #nav-toggle span {
    background: #FFF;
  }
  .open #nav-toggle span:nth-child(1) {
    top: 10px;
  }
  .open #nav-toggle span:nth-child(2) {
    top: 10px;
  }
  .open #nav-toggle span:nth-child(3) {
    top: 10px;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　グローバルメニュー　関連

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  /*　グローバルメニュー　基本設定（外枠）
  ----------------------------------------------------*/
  #gloval-nav {
    background: url(../img/gnav-bk.webp) 50% 50%;
    background-size: cover;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.6s ease, visibility 0.6s ease;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    display: block;
    overflow-y: scroll;
  }
  /* open */
  .open {
    overflow: hidden;
  }
  .open #gloval-nav {
    visibility: visible;
    opacity: 1;
  }
  .open #gloval-nav li {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    transition: opacity 0.9s ease, -webkit-transform 1s ease;
    -webkit-transition: opacity 0.9s ease, -webkit-transform 1s ease;
    transition: transform 1s ease, opacity 0.9s ease;
    transition: transform 1s ease, opacity 0.9s ease, -webkit-transform 1s ease;
  }
  /*　グローバルメニュー　レイアウト 基本枠
  ----------------------------------------------------*/
  #gloval-nav nav {
    background: none;
    width: 80%;
    height: auto;
    text-align: left;
    padding-top: 1px;
    color: #FFF;
    padding-top: 25%;
    padding-bottom: 25%;
    margin: 0 auto;
  }
  #gloval-nav nav .abvbox {
    display: block;
    margin-bottom: 0%;
  }
  #gloval-nav nav .abvbox .lbox {
    width: 100%;
  }
  #gloval-nav nav .abvbox .rbox {
    width: 100%;
  }
  /*　上段 左側ボックス
  ----------------------------------------------------*/
  #gloval-nav nav .abvbox .lbox {
    margin-bottom: 50px;
  }
  #gloval-nav nav .abvbox .lbox a {
    color: #FFF;
  }
  #gloval-nav nav .abvbox .lbox .logotex {
    font-size: 4.5vw;
    margin-bottom: 2%;
    letter-spacing: 2px;
  }
  #gloval-nav nav .abvbox .lbox .logo {
    width: 100%;
    margin-bottom: 7%;
  }
  /* SNS*/
  #gloval-nav nav .sns {
    font-size: 4vw;
    margin-bottom: 20%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #gloval-nav nav .sns li {
    width: 48%;
  }
  #gloval-nav nav .sns li i {
    font-size: 1.8em;
    margin-right: 0.5vw;
    vertical-align: -1.3vw;
  }
  #gloval-nav nav .sns a {
    color: #FFF;
  }
  /* 見積もり カタログ*/
  #gloval-nav nav .subnav {
    font-size: 4vw;
  }
  #gloval-nav nav .subnav li {
    margin-bottom: 4vw;
  }
  #gloval-nav nav .subnav li i {
    font-size: 1.8em;
    margin-right: 0.5vw;
    vertical-align: -1.3vw;
  }
  #gloval-nav nav .subnav a {
    display: block;
    border: 1px solid #CCC;
    text-align: center;
    line-height: 15vw;
    color: #FFF !important;
  }
  /*　上段 右側ボックス
  ----------------------------------------------------*/
  #gloval-nav nav .abvbox .rbox .main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 10%;
    border-bottom: 1px solid #666;
  }
  #gloval-nav nav .abvbox .rbox .main .grp {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-top: 1px solid #666;
    padding-top: 10%;
    margin-bottom: 5%;
  }
  #gloval-nav nav .abvbox .rbox .main dt {
    font-size: 4.8vw;
    letter-spacing: 3px;
    width: 100%;
    color: #9dc814;
    font-weight: 500;
    padding-bottom: 0;
    position: relative;
    line-height: 100%;
    margin-bottom: 5vw;
  }
  #gloval-nav nav .abvbox .rbox .main dt:after {
    display: none;
  }
  #gloval-nav nav .abvbox .rbox .main dd {
    width: 48%;
    line-height: 110%;
    margin-bottom: 5vw;
  }
  #gloval-nav nav .abvbox .rbox .main dd br {
    display: none;
  }
  #gloval-nav nav .abvbox .rbox .main dd a {
    color: #FFF;
    font-size: 3.5vw;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    line-height: 80% !important;
    position: relative;
    padding-left: 10px;
    white-space: nowrap;
  }
  #gloval-nav nav .abvbox .rbox .main dd a:before {
    content: "";
    width: 6px;
    height: 1px;
    display: inline-block;
    background-color: #CCC;
    position: absolute;
    top: 50%;
    left: 0;
  }
  #gloval-nav nav .abvbox .rbox .main dd a:hover {
    color: #9dc814;
    /*padding-left: 0.3vw;*/
  }
  /*　下段 ボックス
  ----------------------------------------------------*/
  #gloval-nav nav .botbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  #gloval-nav nav .botbox #logotype {
    width: 34vw;
    margin-bottom: 3%;
  }
  #gloval-nav nav .botbox .tel {
    font-size: 4.7vw;
    letter-spacing: 1px;
    font-family: "Jost", sans-serif;
    font-weight: 400;
  }
  #gloval-nav nav .botbox .adr {
    font-size: 3.2vw;
    letter-spacing: 1px;
  }
  #gloval-nav nav .botbox .rbox {
    margin-bottom: 10vw;
  }
  /*　下段 おさえバナー
  ----------------------------------------------------*/
  #gloval-nav nav .botbox .ban {
    width: 100%;
    margin-top: 0px;
    display: block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  #gloval-nav nav .botbox .ban li {
    width: 100%;
    margin-bottom: 4vw;
  }
  #gloval-nav nav .botbox .ban a {
    font-size: 4vw;
    line-height: 15vw;
    border: 1px solid #CCC;
    text-align: center;
    display: block;
    color: #f3f3f3;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #gloval-nav nav .botbox .ban a:hover {
    background: #f3f3f3;
    color: #333;
  }
  /*グローバルメニュー　動き
  ----------------------------------------------------*/
  /*グローバルメイン*/
  #gloval-nav .rbox {
    opacity: 0;
    -webkit-transform: translateX(200px);
    transform: translateX(200px);
    transition: opacity 0.2s ease, -webkit-transform 0.6s ease;
    -webkit-transition: opacity 0.2s ease, -webkit-transform 0.6s ease;
    transition: transform 0.6s ease, opacity 0.2s ease;
    transition: transform 0.6s ease, opacity 0.2s ease, -webkit-transform 0.6s ease;
  }
  .open #gloval-nav .rbox {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    transition: opacity 0.9s ease, -webkit-transform 1s ease;
    -webkit-transition: opacity 0.9s ease, -webkit-transform 1s ease;
    transition: transform 1s ease, opacity 0.9s ease;
    transition: transform 1s ease, opacity 0.9s ease, -webkit-transform 1s ease;
    -webkit-transition-delay: 0.1s;
            transition-delay: 0.1s;
  }
  /*グローバルメイン*/
  #gloval-nav .lbox {
    opacity: 0;
    -webkit-transform: translateX(200px);
    transform: translateX(200px);
    transition: opacity 0.2s ease, -webkit-transform 0.6s ease;
    -webkit-transition: opacity 0.2s ease, -webkit-transform 0.6s ease;
    transition: transform 0.6s ease, opacity 0.2s ease;
    transition: transform 0.6s ease, opacity 0.2s ease, -webkit-transform 0.6s ease;
  }
  .open #gloval-nav .lbox {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    transition: opacity 0.9s ease, -webkit-transform 1s ease;
    -webkit-transition: opacity 0.9s ease, -webkit-transform 1s ease;
    transition: transform 1s ease, opacity 0.9s ease;
    transition: transform 1s ease, opacity 0.9s ease, -webkit-transform 1s ease;
  }
}
/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　ページ遷移アニメーション
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.trn-anm::before {
  content: "";
  -webkit-animation-name: pageAnime;
          animation-name: pageAnime;
  background: #F7F7F7;
  position: fixed;
  z-index: 3;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 0;
          animation-delay: 0;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  pointer-events: none;
}

@-webkit-keyframes pageAnime {
  0% {
    -webkit-transform-origin: top;
            transform-origin: top;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  50% {
    -webkit-transform-origin: top;
            transform-origin: top;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  70% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  100% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
}

@keyframes pageAnime {
  0% {
    -webkit-transform-origin: top;
            transform-origin: top;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  50% {
    -webkit-transform-origin: top;
            transform-origin: top;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  70% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  100% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
}
/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　ページ遷移フェードアウト・イン

–––––––––––––––––––––––––––––––––––––––––––––––––– */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff; /* 背景カラー */
  z-index: 9999; /* 一番手前に */
  pointer-events: none; /* 他の要素にアクセス可能にするためにポインターイベントは無効に */
  opacity: 0; /* 初期値では非表示 */
  -webkit-transition: opacity 0.8s ease; /* アニメーション時間は 0.8秒 */
  transition: opacity 0.8s ease;
}

/*body要素に.fadeoutセレクタがある場合には、レイヤーが表示されるようにopacityを１に設定します。*/
body.fade::after {
  opacity: 1;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　  アニメーション

–––––––––––––––––––––––––––––––––––––––––––––––––– */
.fd {
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 0;
}

.fdon {
  opacity: 1;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

/*.fd2{
	transition:1.0s;
	opacity:0;
    transform: translateY(200);}


.fd2on{ 
  opacity: 1.0;
  transition-delay: 0.7s;
    transform: translateY(0);}*/
.fd2 {
  -webkit-transition: 0.8s;
  transition: 0.8s;
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}

.fd2on {
  opacity: 1;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
  margin-top: 0;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fd3 {
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 0;
  margin-top: 300px;
  padding-top: 300px;
}

.fd3on {
  opacity: 1;
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
  margin-top: 0px;
  padding-top: 0px;
}

.fdtex {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  opacity: 0;
}

.fdtexon {
  opacity: 1;
  -webkit-transition-delay: 1.1s;
          transition-delay: 1.1s;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　同仁社　アニメーション

–––––––––––––––––––––––––––––––––––––––––––––––––– */
.upper {
  -webkit-transition: 0.8s;
  transition: 0.8s;
  opacity: 0;
  -webkit-transform: translateY(-62px);
          transform: translateY(-62px);
}

.upperon {
  opacity: 1;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.lefty {
  -webkit-transition: 0.8s;
  transition: 0.8s;
  opacity: 0;
  margin-left: -50px;
}

.leftyon {
  opacity: 1;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
  margin-left: 0px;
}

.f-in {
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 0;
  margin-left: -100px;
}

.f-inon {
  opacity: 1;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
  margin-left: 0px;
}

.intlogo {
  -webkit-transition: 2s;
  transition: 2s;
  opacity: 0;
  margin-top: 0px;
}

.intlogoon {
  opacity: 1;
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
  margin-top: 0px;
}

.righty {
  -webkit-transition: 0.8s;
  transition: 0.8s;
  opacity: 0;
  margin-right: -39px;
}

.rightyon {
  opacity: 1;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
  margin-right: 0px !important;
}

.opc1 {
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 0;
  margin-top: 200px;
}

.opc1on {
  opacity: 1;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
  margin-top: 0px;
}

.opc2 {
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  /*	margin-top:200px;*/
}

.opc2on {
  opacity: 1;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
  margin-top: 0px;
}

.opc3 {
  -webkit-transition: 0.8s;
  transition: 0.8s;
  opacity: 0;
  /*	margin-top:300px;*/
}

.opc3on {
  opacity: 1;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
  margin-top: 0px;
}

/*写真引きアニメ　：　OK：　*/
.zmon {
  -webkit-animation: pht-ani 3s ease-out;
          animation: pht-ani 3s ease-out;
}

@-webkit-keyframes pht-ani {
  0% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 1;
    -webkit-filter: blur(150px);
            filter: blur(150px);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
}

@keyframes pht-ani {
  0% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 1;
    -webkit-filter: blur(150px);
            filter: blur(150px);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
}
.fdupon {
  -webkit-animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
          animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@-webkit-keyframes fadeup {
  0% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeup {
  0% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.wmask {
  position: relative;
  overflow: hidden;
}

.wmaskon:after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #EEE;
  -webkit-animation: wmask-mo 1s cubic-bezier(0.77, 0, 0.175, 1) 0.8s forwards;
          animation: wmask-mo 1s cubic-bezier(0.77, 0, 0.175, 1) 0.8s forwards;
}
@-webkit-keyframes wmask-mo {
  0% {
    left: 0;
    width: 100%;
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 1;
  }
}
@keyframes wmask-mo {
  0% {
    left: 0;
    width: 100%;
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 1;
  }
}

@-webkit-keyframes mask_fadeIn {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  45% {
    -webkit-transform: none;
            transform: none;
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: none;
            transform: none;
    -webkit-transform-origin: 100% 0;
            transform-origin: 100% 0;
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: 100% 0;
            transform-origin: 100% 0;
  }
}

@keyframes mask_fadeIn {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  45% {
    -webkit-transform: none;
            transform: none;
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: none;
            transform: none;
    -webkit-transform-origin: 100% 0;
            transform-origin: 100% 0;
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: 100% 0;
            transform-origin: 100% 0;
  }
}
.is-fadeIn {
  position: relative;
  overflow: hidden;
}

.is-fadeIn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #CCC;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-animation: mask_fadeIn 1s cubic-bezier(0.77, 0, 0.175, 1) 0s;
          animation: mask_fadeIn 1s cubic-bezier(0.77, 0, 0.175, 1) 0s;
  opacity: 1;
}

@-webkit-keyframes mask_fadeIn2 {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  45% {
    -webkit-transform: none;
            transform: none;
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: none;
            transform: none;
    -webkit-transform-origin: 100% 0;
            transform-origin: 100% 0;
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: 100% 0;
            transform-origin: 100% 0;
  }
}

@keyframes mask_fadeIn2 {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  45% {
    -webkit-transform: none;
            transform: none;
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: none;
            transform: none;
    -webkit-transform-origin: 100% 0;
            transform-origin: 100% 0;
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: 100% 0;
            transform-origin: 100% 0;
  }
}
.is-fadeIn2 {
  position: relative;
  overflow: hidden;
}

.is-fadeIn2:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #EEE;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-animation: mask_fadeIn 1s cubic-bezier(0.77, 0, 0.175, 1) 0.5s;
          animation: mask_fadeIn 1s cubic-bezier(0.77, 0, 0.175, 1) 0.5s;
  opacity: 1;
  border-radius: 0vw;
}

@-webkit-keyframes w_fadeIn {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  45% {
    -webkit-transform: none;
            transform: none;
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: none;
            transform: none;
    -webkit-transform-origin: 100% 0;
            transform-origin: 100% 0;
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: 100% 0;
            transform-origin: 100% 0;
  }
}

@keyframes w_fadeIn {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  45% {
    -webkit-transform: none;
            transform: none;
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: none;
            transform: none;
    -webkit-transform-origin: 100% 0;
            transform-origin: 100% 0;
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: 100% 0;
            transform-origin: 100% 0;
  }
}
.is-w_fadeIn {
  position: relative;
  overflow: hidden;
}

.is-w_fadeIn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #FFF;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-animation: w_fadeIn 1s cubic-bezier(0.77, 0, 0.175, 1) 0.5s;
          animation: w_fadeIn 1s cubic-bezier(0.77, 0, 0.175, 1) 0.5s;
  opacity: 1;
}

/************************************************************************************

　スマホ設定

*************************************************************************************/
@media screen and (max-width: 670px) {
  .upper {
    -webkit-transition: 0.8s;
    transition: 0.8s;
    opacity: 0;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  .upperon {
    opacity: 1;
    -webkit-transition-delay: 0.5s;
            transition-delay: 0.5s;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　家づくり コンセプト

–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*　SEC1
----------------------------------------------------*/
#p-concept #sec1 #mds {
  margin-bottom: 65px;
  color: #333;
}

#p-concept #sec1 .colum {
  margin-bottom: 155px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#p-concept #sec1 .colum .rbox {
  width: 480px;
  width: 42%;
}

#p-concept #sec1 #p1 {
  height: 460px;
}

#p-concept #sec1 #p2 {
  height: 460px;
}

#p-concept #sec1 .colum {
  font-size: 1.8rem;
  letter-spacing: 2px;
  line-height: 200%;
}

#p-concept #sec1 .tex {
  margin-bottom: 20px;
}

#p-concept #sec1 #colum2 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

#p-concept #sec1 #colum2 .lbox {
  width: 480px;
  width: 42%;
}

/*　SEC2
----------------------------------------------------*/
#p-concept #sec2 #logo-yb {
  width: 83%;
  margin: 0 auto;
  margin-bottom: -33px;
}
#p-concept #sec2 #logo-yb img {
  width: 100%;
  height: auto;
}

#p-concept #sec2 #mid-vis {
  margin-left: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#p-concept #sec2 #mid-vis .gsp-para-wp {
  height: 530px;
}
#p-concept #sec2 #mid-vis #midvis1 {
  width: 69.9%;
}
#p-concept #sec2 #mid-vis #midvis2 {
  width: 30%;
}

/*　SEC3 大切にしていること
----------------------------------------------------*/
#p-concept #sec3 .tit {
  text-align: center;
  margin-bottom: 200px;
  position: relative;
}
#p-concept #sec3 .tit .ms1 {
  text-align: left;
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  letter-spacing: 5px;
  line-height: 250%;
  margin: 0 auto;
}
#p-concept #sec3 .tit .en {
  font-size: clamp(60px, 15vw, 150px);
  line-height: 100%;
  opacity: 0.04;
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#p-concept #sec3 #cmt-dl .grp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 165px;
}
#p-concept #sec3 #cmt-dl .grp:last-child {
  margin-bottom: 0px;
}
#p-concept #sec3 #cmt-dl dt {
  width: 52%;
}
#p-concept #sec3 #cmt-dl dd {
  width: 37%;
}
#p-concept #sec3 #cmt-dl .gsp-para-wp {
  height: 420px;
}
#p-concept #sec3 #cmt-dl .en {
  color: #6ab806;
  margin-bottom: 5px;
}
#p-concept #sec3 #cmt-dl .en span {
  font-size: 1.9em;
}

/*　SEC4 家づくりのすすめ方
----------------------------------------------------*/
#p-concept #sec4 .lead {
  font-size: 3.3rem;
  margin-bottom: 100px;
  color: #9dc814;
  font-weight: 500;
}
#p-concept #sec4 .lead span {
  color: #333;
}
#p-concept #sec4 .lead:after {
  content: "";
  width: 40px;
  height: 3px;
  display: block;
  background-color: #333;
  margin-top: 25px;
}

#p-concept #sec4 #order-dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#p-concept #sec4 #order-dl .grp {
  width: 46%;
}
#p-concept #sec4 #order-dl dt {
  margin-bottom: 30px;
}
#p-concept #sec4 #order-dl .ofi {
  height: 330px;
  overflow: hidden;
}
#p-concept #sec4 #order-dl .tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 35px;
}
#p-concept #sec4 #order-dl .ms1 {
  margin-bottom: 0;
  letter-spacing: 3px;
  color: #333;
}
#p-concept #sec4 #order-dl .line {
  height: 1px;
  background: #CCC;
  min-width: 100px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0 1.3em;
}
#p-concept #sec4 #order-dl .en {
  font-size: 1.8rem;
  font-weight: 400;
}

/************************************************************************************

　スマホ設定

*************************************************************************************/
@media screen and (max-width: 670px) {
  /*　タブ
  ----------------------------------------------------*/
}
/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　家づくり ： デザイン

–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*　タブ
----------------------------------------------------*/
/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　SEC1 導入

–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*　
----------------------------------------------------*/
#p-design #sec1 {
  margin-bottom: 150px;
}
#p-design #sec1 .cutph {
  width: 48%;
  height: 700px;
}
#p-design #sec1 .inner {
  width: 45%;
  min-height: 700px;
  padding-top: 80px;
}
#p-design #sec1 .ms1 {
  margin-bottom: 65px;
}
#p-design #sec1 .honbun {
  font-size: 1.8rem;
  line-height: 220%;
  letter-spacing: 1px;
}
#p-design #sec1 .tex1, #p-design #sec1 .tex2 {
  margin-bottom: 40px;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　SEC2 リンク

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#p-design #sec2 #feel {
  border-top: 1px solid #CCC;
}
#p-design #sec2 #feel li {
  border-bottom: 1px solid #CCC;
  padding: 50px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#p-design #sec2 #feel dl {
  width: 63%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#p-design #sec2 #feel dt {
  width: 28%;
}
#p-design #sec2 #feel dd {
  width: 72%;
}
#p-design #sec2 #feel .bt-boxlineflx {
  width: 34%;
}
#p-design #sec2 #feel .ms3 {
  margin-bottom: 0;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　SEC3 吉成建築のデザイン

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#p-design #sec3 .sec-tit {
  display: block;
  margin-bottom: 145px;
  position: relative;
  padding-top: 30px;
}
#p-design #sec3 .sec-tit .ms0 {
  color: #333;
  /*font-size: 3.3rem;*/
  font-size: clamp(20px, 3.3vw, 33px);
  letter-spacing: 6px;
  line-height: 180%;
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  position: absolute;
  right: 18%;
  top: 0;
  white-space: nowrap;
}
#p-design #sec3 .sec-tit .ms0:first-letter {
  color: #333;
}
#p-design #sec3 .sec-tit .line {
  display: none;
}
#p-design #sec3 .sec-tit .en {
  font-size: clamp(70px, 15vw, 150px);
  line-height: 100%;
  font-weight: 500;
  color: #333;
  letter-spacing: 0px;
  position: absolute;
  right: 1.5%;
  top: -10px;
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  z-index: 1;
}
#p-design #sec3 .sec-tit .logo-yb {
  width: 730px;
  width: 60%;
}

#p-design #sec3 .sec-tit:after {
  display: none;
}

/*　
----------------------------------------------------*/
#p-design #sec3 #cmt-dl .grp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-bottom: 165px;
}
#p-design #sec3 #cmt-dl .grp:last-child {
  margin-bottom: 0px;
}
#p-design #sec3 #cmt-dl dt {
  width: 52%;
}
#p-design #sec3 #cmt-dl dd {
  width: 37%;
}
#p-design #sec3 #cmt-dl .gsp-para-wp {
  height: 420px;
}
#p-design #sec3 #cmt-dl .en {
  color: #6ab806;
  margin-bottom: 5px;
}
#p-design #sec3 #cmt-dl .en span {
  font-size: 1.9em;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　家づくり ： 性能・仕様

–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　SEC1 

–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*　
----------------------------------------------------*/
#p-pfm #sec0 #intro-dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 90px;
}
#p-pfm #sec0 #intro-dl dt {
  width: 40%;
}
#p-pfm #sec0 #intro-dl dd {
  width: 50%;
  font-size: 1.8rem;
  letter-spacing: 1px;
  line-height: 200%;
}
#p-pfm #sec0 #intro-dl .ms1 {
  margin-bottom: 0;
  line-height: 150%;
  letter-spacing: 2px;
}

/*　SEC0
----------------------------------------------------*/
#p-pfm #sec0 #mid-vis {
  margin-left: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 100px;
}
#p-pfm #sec0 #mid-vis .gsp-para-wp {
  height: 530px;
}
#p-pfm #sec0 #mid-vis #midvis1 {
  width: 30%;
}
#p-pfm #sec0 #mid-vis #midvis2 {
  width: 69.9%;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　SEC1  住宅性能

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#p-pfm #sec1 #seinou-list {
  margin-bottom: 10%;
  border-top: 1px solid #CCC;
}
#p-pfm #sec1 #seinou-list li {
  border-bottom: 1px solid #CCC;
  padding: 5% 4%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#p-pfm #sec1 #seinou-list dl {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#p-pfm #sec1 #seinou-list dt {
  width: 30%;
}
#p-pfm #sec1 #seinou-list dd {
  width: 65%;
  letter-spacing: 1px;
}
#p-pfm #sec1 #seinou-list .ms1 {
  margin-bottom: 0;
  border-bottom: 4px solid #333;
  padding-bottom: 20px;
  display: inline-block;
}
#p-pfm #sec1 #seinou-list .ms3 {
  margin-bottom: 30px;
}
#p-pfm #sec1 #seinou-list .note {
  font-size: 1.3rem;
  line-height: 100%;
  margin-top: 10px;
  letter-spacing: 0;
}
#p-pfm #sec1 #seinou-list li:nth-child(3) .icon {
  margin-left: -3.5%;
  margin-right: 40px;
}

#p-pfm #sec1 #seinou-list .spec {
  width: 42%;
  background: #f7f7f7;
  position: relative;
  padding-left: 4%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 230px;
}
#p-pfm #sec1 #seinou-list .spec .atai {
  display: block;
  width: 45%;
}
#p-pfm #sec1 #seinou-list .spec .atai dt {
  border: none;
  width: 100%;
  font-size: 3.6rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 10px;
}
#p-pfm #sec1 #seinou-list .spec .atai dd {
  border: none;
  width: 100%;
  font-size: 2.4rem;
  font-weight: 500;
  color: #90bc04;
  white-space: nowrap;
}
#p-pfm #sec1 #seinou-list .spec .tex {
  position: absolute;
  right: -20px;
  top: -20px;
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  font-size: 2rem;
  font-weight: 500;
  color: #FFF;
}
#p-pfm #sec1 #seinou-list .spec .tex span {
  background: #333;
  padding: 15px 5px;
  line-height: 210%;
}
#p-pfm #sec1 #seinou-list .spec .icon {
  width: 28%;
  text-align: center;
  margin-right: 23px;
  /*border: 1px solid #CCC;*/
}

#p-pfm #sec1 #sw {
  border: 3px solid #9dc814;
  padding: 4%;
  position: relative;
}
#p-pfm #sec1 #sw .ms1 {
  display: inline-block;
  border-bottom: 3px solid #333;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
#p-pfm #sec1 #sw .ms3 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}
#p-pfm #sec1 #sw #swph {
  width: 48%;
  position: absolute;
  right: 3%;
  bottom: 0;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　SEC2  職人の技術力

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#p-pfm #sec2 .inner {
  padding-top: 45px;
  width: 44%;
  height: 480px;
}
#p-pfm #sec2 .en {
  color: #f5f5f5;
  font-size: 120px;
  line-height: 100%;
  margin-top: 0;
  margin-left: -150px;
  margin-bottom: 20px;
}
#p-pfm #sec2 .ms1 {
  margin-bottom: 15px;
}
#p-pfm #sec2 .ms1:first-letter {
  color: #9dc814;
}
#p-pfm #sec2 .tex {
  line-height: 220%;
  letter-spacing: 1px;
}
#p-pfm #sec2 #p3 {
  height: 480px;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　SEC3  基本性能

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#p-pfm #sec3 .colum {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#p-pfm #sec3 .lbox {
  width: 30%;
}
#p-pfm #sec3 .rbox {
  width: 61%;
}
#p-pfm #sec3 .tit {
  width: 230px;
  text-align: center;
}
#p-pfm #sec3 .ms3 {
  border: 1px solid #CCC;
  margin-bottom: 10px;
  padding: 6% 0;
}

#p-pfm #sec3 .rbox table {
  width: 100%;
  margin-bottom: 30px;
  font-family: "Noto Sans JP", sans-serif;
  border-top: 1px solid #CCC;
}
#p-pfm #sec3 .rbox table tr {
  border-bottom: 1px solid #CCC;
}
#p-pfm #sec3 .rbox table th {
  text-align: left;
  vertical-align: top;
  font-weight: 500;
  padding: 4% 0;
  width: 31%;
}
#p-pfm #sec3 .rbox table td {
  padding: 4% 0;
  width: 69%;
}
#p-pfm #sec3 .rbox table .note {
  margin-top: 0;
}
#p-pfm #sec3 .rbox table span {
  font-size: 0.8em;
}
#p-pfm #sec3 .rbox table .idt {
  line-height: 140%;
  text-indent: -1em;
  padding-left: 1px;
  margin-bottom: 5px;
}

#p-pfm #sec3 .rbox .osae {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#p-pfm #sec3 .rbox .osae .tex {
  letter-spacing: 2px;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　SEC4 標準仕様

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#p-pfm #sec4 .shiyo-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#p-pfm #sec4 .shiyo-list li {
  width: 31%;
  margin-bottom: 10%;
}
#p-pfm #sec4 .shiyo-list .ofi {
  height: 250px;
  margin-bottom: 15px;
}
#p-pfm #sec4 .shiyo-list .name {
  font-size: 1.8rem;
  margin-bottom: 15px;
  line-height: 140%;
  font-weight: 500;
  color: #333;
}
#p-pfm #sec4 .shiyo-list .name span {
  font-size: 0.8em;
}
#p-pfm #sec4 .shiyo-list .tex {
  font-size: 1.4rem;
}
#p-pfm #sec4 .shiyo-list .note {
  font-size: 1.3rem;
  margin-top: 0;
  letter-spacing: 0;
  margin-top: 5px;
  line-height: 170%;
}
#p-pfm #sec4 .shiyo-list .dtl {
  font-size: 1.3rem;
  margin-top: 0;
  letter-spacing: 0;
  margin-top: 5px;
  line-height: 170%;
  font-family: "Noto Sans JP", sans-serif;
}
#p-pfm #sec4 .shiyo-list .dtl p {
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 2px;
}

#p-pfm #sec4 #sonota {
  border-top: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
  padding: 5% 0 3%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#p-pfm #sec4 #sonota .lbox {
  width: 20%;
}
#p-pfm #sec4 #sonota .rbox {
  width: 70%;
}
#p-pfm #sec4 #sonota .ms3 {
  border: 1px solid #CCC;
  text-align: center;
  padding: 7% 0;
  font-weight: 500;
}
#p-pfm #sec4 #sonota #nintei-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#p-pfm #sec4 #sonota #nintei-list li {
  width: 33%;
  line-height: 140%;
  text-indent: -1em;
  padding-left: 1em;
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 3%;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　SEC5

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#p-pfm #sec5 {
  padding: 200px 0;
  background: #f7f7f7;
}

#p-pfm #sec5 #zeh-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#p-pfm #sec5 #zeh-list li {
  background: #FFF;
  width: 31%;
  padding: 4%;
  text-align: center;
}
#p-pfm #sec5 #zeh-list .abv {
  border-top: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
  padding: 7px 0;
  margin-bottom: 35px;
}
#p-pfm #sec5 #zeh-list .mds {
  font-size: 2.8rem;
  font-weight: 500;
  margin-bottom: 15px;
  line-height: 140%;
  color: #90bc04;
}
#p-pfm #sec5 #zeh-list .mds span {
  font-size: 0.7em;
}
#p-pfm #sec5 #zeh-list .tex {
  margin-bottom: 45px;
}
#p-pfm #sec5 #zeh-list .icon {
  width: 130px;
  margin: 0 auto;
}

#p-pfm #sec5 .colum1,
#p-pfm #sec5 .colum2 {
  margin-bottom: 200px;
}

#p-pfm #sec5 .colum1 .ms3 {
  margin-bottom: 0;
}
#p-pfm #sec5 .colum1 .lead {
  font-size: 1.8rem;
  margin: -1.8em 0 75px 400px;
  letter-spacing: 1px;
  line-height: 200%;
}

/*メリットリスト
----------------------------------------------------*/
#p-pfm #sec5 .colum2 #merit-list li {
  background: #FFF;
  min-height: 520px;
}
#p-pfm #sec5 .colum2 #merit-list .ofi {
  margin-bottom: 0;
}
#p-pfm #sec5 .colum2 #merit-list .inner {
  padding: 7% 10% 7%;
}
#p-pfm #sec5 .colum2 #merit-list .mds {
  font-size: 1.8rem;
  margin-bottom: 10px;
  font-weight: 500;
}

#p-pfm #sec5 .colum3 #result-tab {
  border: none;
  border: 1px solid #CCCCCC;
  border-collapse: collapse;
  width: 100%;
  background: #FFF;
  text-align: center;
}
#p-pfm #sec5 .colum3 #result-tab th {
  border: none;
  border: 1px solid #CCCCCC;
  width: 25%;
  padding: 2% 1%;
  background: #f4f4f4;
}
#p-pfm #sec5 .colum3 #result-tab td {
  border: none;
  border: 1px solid #CCCCCC;
  padding: 2% 1%;
}
#p-pfm #sec5 .colum3 #result-tab .year {
  font-size: 2rem;
  font-weight: 500;
}

#p-pfm #sec5 #bn-swbf {
  width: 60%;
  margin: 0 auto;
  margin-top: 10%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#p-pfm #sec5 #bn-swbf:hover {
  opacity: 0.7;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　品質保証・メンテンナス

–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　イントロ

–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*　タブ
----------------------------------------------------*/
#p-support #sec0 #intro-dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 90px;
}
#p-support #sec0 #intro-dl dt {
  width: 40%;
}
#p-support #sec0 #intro-dl dd {
  width: 50%;
  font-size: 1.8rem;
  letter-spacing: 1px;
  line-height: 200%;
}
#p-support #sec0 #intro-dl .ms1 {
  margin-bottom: 0;
  line-height: 150%;
  letter-spacing: 2px;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　SEC1 吉成建築クオリティ

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#p-support #sec1 {
  /*background: #EEE;*/
  padding-top: 1px;
  margin-bottom: 180px;
}
#p-support #sec1 .cons {
  position: relative;
  z-index: 1;
}
#p-support #sec1 .inner {
  width: 50%;
  margin: 0 0 0 auto;
  min-height: 780px;
}
#p-support #sec1 .sec-tit {
  margin-top: 70px;
  margin-bottom: 100px;
}
#p-support #sec1 .sec-tit .line {
  width: 100px;
}

#p-support #sec1 #qlt-dl .grp {
  margin-bottom: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#p-support #sec1 #qlt-dl .grp:last-child {
  margin-bottom: 0px;
}
#p-support #sec1 #qlt-dl dt {
  width: 40%;
}
#p-support #sec1 #qlt-dl dd {
  width: 55%;
}

#p-support #sec1 #p1 {
  width: 43%;
  height: 850px;
  position: absolute;
  top: 0;
  left: 0;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　SEC1b  品質検査

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#p-support #sec1b {
  margin-bottom: 300px;
}
#p-support #sec1b .colum {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#p-support #sec1b .lbox {
  width: 30%;
}
#p-support #sec1b .lbox .ms3 {
  text-align: center;
  border: 1px solid #CCC;
  padding: 5% 0 6%;
}
#p-support #sec1b .tex1, #p-support #sec1b .tex2 {
  line-height: 220%;
}
#p-support #sec1b .tex1 {
  margin-bottom: 30px;
  font-weight: 500;
  font-size: 1.8rem;
}
#p-support #sec1b .tex2 {
  margin-bottom: 80px;
  letter-spacing: 1px;
}
#p-support #sec1b #kensa {
  height: 330px;
}

#p-support .kensa-step .grp {
  margin-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#p-support .kensa-step dt {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  width: 45px;
  height: 45px;
  border: 1px solid #333;
  position: relative;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#p-support .kensa-step dt:after {
  content: "";
  width: 50px;
  height: 1px;
  background-color: #333;
  position: absolute;
  top: 50%;
  right: -50px;
}
#p-support .kensa-step dd {
  font-size: 1.8rem;
  width: 77%;
  padding-top: 7px;
  font-family: "Noto Sans JP", sans-serif;
}
#p-support .kensa-step dd p {
  line-height: 140%;
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 5px;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　SEC2 35年保証

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#p-support #sec2 .colum1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 150px;
}
#p-support #sec2 .lbox {
  width: 35%;
}
#p-support #sec2 .rbox {
  width: 54%;
}
#p-support #sec2 #hoshousho {
  background: #f7f7f7;
  text-align: center;
  padding: 13% 0;
}
#p-support #sec2 #hoshousho img {
  width: 185px;
  height: auto;
}
#p-support #sec2 .tex {
  letter-spacing: 2px;
  line-height: 200%;
}

#p-support #sec2 .hoshou img {
  width: 100%;
  height: auto;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　SEC3 定期点検

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#p-support #sec3 {
  margin-bottom: 150px;
}
#p-support #sec3 #lead {
  margin-bottom: 140px;
  margin-top: -30px;
}
#p-support #sec3 .colum {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#p-support #sec3 .colum .lbox {
  width: 41%;
}
#p-support #sec3 .colum .rbox {
  width: 46%;
}
#p-support #sec3 .colum .ms3 {
  margin-bottom: 80px;
}
#p-support #sec3 .lbox .tex {
  line-height: 220%;
  letter-spacing: 2px;
  margin-bottom: 50px;
}
#p-support #sec3 .karte {
  background: #F7F7F7;
  padding: 5%;
}
#p-support #sec3 .karte img {
  width: 100%;
  height: auto;
}
#p-support #sec3 #santen {
  line-height: 50%;
  margin-left: 35px;
  margin: -5px 0 5px 35px;
}
#p-support #sec3 #otukiai {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 1px;
}

#p-support #sec3 .kensa-step .grp {
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#p-support #sec3 .kensa-step dt {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  width: 85px;
  height: 33px;
  border: 1px solid #333;
  position: relative;
  border-radius: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#p-support #sec3 .kensa-step dt:after {
  content: "";
  width: 45px;
  height: 1px;
  background-color: #333;
  position: absolute;
  top: 50%;
  right: -45px;
}
#p-support #sec3 .kensa-step dd {
  font-size: 1.6rem;
  width: 75%;
  padding-top: 5px;
  font-family: "Noto Sans JP", sans-serif;
}
#p-support #sec3 .kensa-step dd p {
  line-height: 140%;
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 5px;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　SEC4

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#p-support #sec4 {
  padding-top: 1px;
}
#p-support #sec4 .cons {
  position: relative;
  z-index: 1;
}
#p-support #sec4 .inner {
  width: 41%;
  min-height: 380px;
  padding-top: 80px;
}
#p-support #sec4 .tex {
  letter-spacing: 1px;
  line-height: 220%;
}

#p-support #sec4 #p2 {
  width: 50%;
  height: 380px;
  position: absolute;
  right: 0;
  top: 0;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　SEC5

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#p-support #sec5 .cons {
  border-top: 1px solid #CCC;
  padding-top: 75px;
}
#p-support #sec5 .colum {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#p-support #sec5 .mds1 {
  font-size: 1.8rem;
  letter-spacing: 1px;
  margin-bottom: 60px;
  font-weight: 500;
}
#p-support #sec5 .tel {
  font-size: 4.8rem;
}
#p-support #sec5 .tel a {
  color: #333;
}
#p-support #sec5 .mds2 {
  font-weight: 600;
  letter-spacing: 1px;
}
#p-support #sec5 .time {
  margin-top: 25px;
  font-weight: 600;
  letter-spacing: 1px;
}
#p-support #sec5 .hol {
  font-size: 1.4rem;
  margin-bottom: 20px;
}
#p-support #sec5 .rbox {
  width: 42%;
}

#p-support #sec5 .chui {
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 30px;
}
#p-support #sec5 .chui li {
  text-indent: -1em;
  padding-left: 1em;
  line-height: 130%;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

/*.bt-boxline{

    a{ 
        display: inline-block;
        border: 1px solid imp.$clr-green3;
        padding: 20px 30px;
    }


    i{ 
        font-size: 1.8em; 
        color: imp.$clr-green3;
        vertical-align: -4px;
        margin-left: 7px;
    }
}
*/
/************************************************************************************

　スマホ設定

*************************************************************************************/
@media screen and (max-width: 670px) {
  /*　タブ
  ----------------------------------------------------*/
}
/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　新築  注文住宅

–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　新築  注文住宅  ヴィジュアル

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#p-order #vis {
  margin-bottom: 200px;
}
#p-order #vis .cons {
  position: relative;
}
#p-order #vis #p1 {
  height: 650px;
}
#p-order #vis #logo-yd {
  width: 60%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  z-index: 99;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　新築  注文住宅  SEC1

–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*　SEC1
----------------------------------------------------*/
#p-order #sec1 {
  margin-bottom: 200px;
}
#p-order #sec1 .inner {
  padding-top: 5%;
  width: 42%;
  min-height: 570px;
}
#p-order #sec1 .ms1 {
  line-height: 180%;
}
#p-order #sec1 .honbun {
  font-size: 1.8rem;
  line-height: 200%;
  letter-spacing: 1px;
}
#p-order #sec1 #p2 {
  height: 570px;
}

#p-order #mid-vis {
  margin-right: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 240px;
}
#p-order #mid-vis .gsp-para-wp {
  height: 530px;
}
#p-order #mid-vis #midvis1 {
  width: 69.9%;
}
#p-order #mid-vis #midvis2 {
  width: 30%;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　新築  注文住宅  SEC2  こんなご希望

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#p-order #sec2 .ms2 span {
  color: #90bc04;
}

/*　感じる リンク
----------------------------------------------------*/
#p-order #sec2 #feel {
  border-top: 1px solid #CCC;
}
#p-order #sec2 #feel li {
  border-bottom: 1px solid #CCC;
  padding: 50px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#p-order #sec2 #feel dl {
  width: 63%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#p-order #sec2 #feel dt {
  width: 28%;
}
#p-order #sec2 #feel dd {
  width: 72%;
}
#p-order #sec2 #feel .bt-boxlineflx {
  width: 34%;
}
#p-order #sec2 #feel .ms3 {
  margin-bottom: 0;
}

/*希望リスト
----------------------------------------------------*/
/*#p-order #sec2 #hope-listwp{
    width: 134%;
    overflow: hidden;
}
*/
#p-order #sec2 #hope-list {
  margin-bottom: 140px;
}
#p-order #sec2 #hope-list .ofi {
  margin-bottom: 0;
}
#p-order #sec2 #hope-list .inner {
  padding: 25px 35px 25px 25px;
  display: inline-block;
  background: #FFF;
  margin-top: -30px;
  position: relative;
  z-index: 1;
}
#p-order #sec2 #hope-list .mds {
  font-size: 2rem;
  font-weight: 500;
  position: relative;
}
#p-order #sec2 #hope-list .mds:before {
  content: "";
  width: 18px;
  height: 1px;
  display: inline-block;
  background-color: #CCC;
  position: absolute;
  top: 13px;
  left: -25px;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　新築  注文住宅  SEC3    オーダーメイド

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#p-order #sec3 .sec-tit {
  margin-bottom: 0px;
}
#p-order #sec3 #kakaku {
  margin-top: 50px;
  margin-bottom: 130px;
  font-size: 1.4rem;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　新築  注文住宅  SEC4    家づくりのステップ

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#p-order #sec4 .cons {
  position: relative;
  z-index: 1;
  /* border: 1px solid #CCC;*/
}
#p-order #sec4 .inner {
  width: 50%;
  min-height: 400px;
  padding-top: 0px;
  margin: 0 0 0 auto;
}
#p-order #sec4 .cutph {
  width: 42%;
  height: 715px;
  position: absolute;
  left: 0;
  top: 150px;
}

#p-order #sec4 .workflow .grp {
  margin-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#p-order #sec4 .workflow dt {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  width: 45px;
  height: 45px;
  border: 1px solid #333;
  position: relative;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#p-order #sec4 .workflow dt:after {
  content: "";
  width: 50px;
  height: 1px;
  background-color: #333;
  position: absolute;
  top: 50%;
  right: -50px;
}
#p-order #sec4 .workflow dd {
  width: 77%;
  padding-top: 7px;
  font-family: "Noto Sans JP", sans-serif;
}
#p-order #sec4 .workflow dd .ms3 {
  margin-bottom: 0;
  line-height: 100%;
  margin-bottom: 10px;
}
#p-order #sec4 .workflow dd .ms3 span {
  font-size: 0.8em;
}
#p-order #sec4 .workflow dd .note {
  font-size: 1.3rem;
  margin-top: 0;
  letter-spacing: 0;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　新築  規格住宅

–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　新築  規格住宅  ヴィジュアル

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#p-pred #vis {
  margin-bottom: 200px;
}
#p-pred #vis .cons {
  position: relative;
}
#p-pred #vis #p1 {
  height: 650px;
}
#p-pred #vis #logo-trip {
  width: 45%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  z-index: 99;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　新築  規格住宅  SEC1

–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*　SEC1
----------------------------------------------------*/
#p-pred #sec1 {
  margin-bottom: 200px;
}
#p-pred #sec1 .inner {
  padding-top: 5%;
  width: 42%;
  min-height: 570px;
}
#p-pred #sec1 .ms1 {
  line-height: 180%;
}
#p-pred #sec1 .honbun {
  font-size: 1.8rem;
  line-height: 200%;
  letter-spacing: 1px;
}
#p-pred #sec1 .tex1 {
  margin-bottom: 50px;
}
#p-pred #sec1 #p2 {
  height: 550px;
  width: 50%;
}

#p-pred #mid-vis {
  margin-right: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 240px;
}
#p-pred #mid-vis .gsp-para-wp {
  height: 500px;
}
#p-pred #mid-vis #midvis1 {
  width: 69.9%;
}
#p-pred #mid-vis #midvis2 {
  width: 30%;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　新築  規格住宅  SEC2  こんなご希望

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#p-pred #sec2 .ms2 span {
  color: #90bc04;
}

#p-pred #sec2 .ms2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#p-pred #sec2 .ms2:after {
  content: "";
  height: 1px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background-color: #CCC;
  margin-left: 2rem;
}

/*希望リスト
----------------------------------------------------*/
#p-pred #sec2 #hope-list {
  margin-bottom: 140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#p-pred #sec2 #hope-list li {
  border: 2px solid #90bc04;
  padding: 3% 3% 5%;
  width: 31%;
  text-align: center;
  margin-bottom: 4%;
}
#p-pred #sec2 #hope-list .num {
  display: inline-block;
  font-size: 2rem;
  color: #90bc04;
  border-bottom: 3px solid #90bc04;
  padding-bottom: 5px;
  margin-bottom: 50px;
}
#p-pred #sec2 #hope-list .icon {
  width: 90px;
  height: 90px;
  margin: 0 auto;
  margin-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#p-pred #sec2 #hope-list .icon img {
  width: auto;
  height: auto;
  max-width: 90px;
  max-height: 90px;
}
#p-pred #sec2 #hope-list .ms3 {
  margin-bottom: 40px;
  font-weight: 500;
}
#p-pred #sec2 #hope-list li:nth-child(6) .ms3 {
  margin-bottom: 10px;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　新築  規格住宅  SEC3    プランニング

–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*ステップ コラム
----------------------------------------------------*/
#p-pred #sec3 .stp-colum {
  margin-bottom: 230px;
}
#p-pred #sec3 .stp-colum .tit-dl {
  margin-bottom: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#p-pred #sec3 .stp-colum .tit-dl dt {
  width: 15%;
  height: 52px;
  text-align: center;
  border: 2px solid #90bc04;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#p-pred #sec3 .stp-colum .tit-dl dt:after {
  content: "";
  width: 55%;
  height: 2px;
  display: inline-block;
  background-color: #90bc04;
  position: absolute;
  top: 50%;
  right: -55%;
}
#p-pred #sec3 .stp-colum .tit-dl dd {
  width: 75%;
  padding-top: 10px;
}
#p-pred #sec3 .stp-colum .tit-dl .en {
  font-size: 2.6rem;
}
#p-pred #sec3 .stp-colum .tit-dl .ms0 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}
#p-pred #sec3 .stp-colum .tit-dl .lead {
  font-size: 2rem;
}

/*ステップ1 外観
----------------------------------------------------*/
#p-pred #sec3 #step1 {
  position: relative;
}

#p-pred #sec3 #step1 #gaikan-list {
  /*    display:flex;
      flex-wrap:wrap;
      justify-content:space-between;*/
}
#p-pred #sec3 #step1 #gaikan-list li {
  width: 31%;
  width: 100%;
}
#p-pred #sec3 #step1 #gaikan-list .ms0 {
  margin-bottom: 10px;
  color: #333;
  font-family: "Jost", sans-serif;
}
#p-pred #sec3 #step1 #gaikan-list .ms0 span {
  font-size: 1.8rem;
  margin-left: 10px;
  font-family: "Noto Sans JP", sans-serif;
}
#p-pred #sec3 #step1 #gaikan-list .ph-abv {
  margin-bottom: 21px;
}
#p-pred #sec3 #step1 #gaikan-list:hover {
  cursor: -webkit-grab;
  cursor: grab;
}

#p-pred #sec3 #step1 #next,
#p-pred #sec3 #step1 #prev {
  width: 60px;
  height: 60px;
  border: 1px solid #CCC;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#p-pred #sec3 #step1 #next:hover,
#p-pred #sec3 #step1 #prev:hover {
  border: 1px solid #90bc04;
}

#p-pred #sec3 #step1 #next i,
#p-pred #sec3 #step1 #prev i {
  font-size: 2em;
  color: #CCC;
}

#p-pred #sec3 #step1 #next:hover i,
#p-pred #sec3 #step1 #prev:hover i {
  font-size: 2em;
  color: #90bc04;
}

#p-pred #sec3 #step1 #next {
  position: absolute;
  right: 70px;
  top: 0px;
}

#p-pred #sec3 #step1 #prev {
  position: absolute;
  right: 0;
  top: 0px;
}

/*ステップ2 間取り
----------------------------------------------------*/
#p-pred #sec3 #step2 .arrow {
  width: 75px;
  margin: 0 auto;
  margin-top: 25px;
  margin-bottom: 25px;
}

#p-pred #sec3 #step2 #choice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#p-pred #sec3 #step2 #choice .lbox {
  width: 40.5%;
}
#p-pred #sec3 #step2 #choice .rbox {
  width: 57%;
}
#p-pred #sec3 #step2 #choice .ofi {
  border: 1px solid #CCC;
  padding: 5%;
}
#p-pred #sec3 #step2 #choice .rbox .ofi {
  padding: 2%;
}
#p-pred #sec3 #step2 #choice .ms4 {
  font-size: 1.8rem;
}

#p-pred #sec3 #step2 #sample .graybox {
  background: #f7f7f7;
  padding: 5%;
}
#p-pred #sec3 #step2 #sample .inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}
#p-pred #sec3 #step2 #sample .lbox, #p-pred #sec3 #step2 #sample .rbox {
  background: #FFF;
  padding: 4%;
  position: relative;
}
#p-pred #sec3 #step2 #sample .en {
  position: absolute;
  left: 4%;
  top: 4%;
  font-size: 2.4rem;
  color: #333;
  font-weight: 600;
}
#p-pred #sec3 #step2 #sample .lead {
  text-align: center;
  font-size: 1.8rem;
}

/*ステップ3 断熱性
----------------------------------------------------*/
#p-pred #sec3 #step3 #ins-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#p-pred #sec3 #step3 #ins-list li {
  background: #f7f7f7;
  width: 32%;
  padding: 80px 2.5% 5%;
  text-align: center;
  position: relative;
}
#p-pred #sec3 #step3 #ins-list li:first-child {
  color: #CCC;
}
#p-pred #sec3 #step3 #ins-list .num {
  font-size: 2.4rem;
  font-family: "Jost", sans-serif;
  position: absolute;
  left: 15px;
  top: 15px;
  font-weight: 500;
}
#p-pred #sec3 #step3 #ins-list .en {
  font-size: 4.5rem;
  line-height: 100%;
  margin-bottom: 5px;
}
#p-pred #sec3 #step3 #ins-list .mds {
  font-size: 2.2rem;
  margin-bottom: 50px;
}
#p-pred #sec3 #step3 #ins-list .inner {
  background: #FFF;
  padding: 10% 7% 7%;
  border-radius: 10px;
  min-height: 260px;
}
#p-pred #sec3 #step3 #ins-list li:first-child .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#p-pred #sec3 #step3 #ins-list .name {
  font-size: 2.4rem;
  font-family: "Jost", sans-serif;
  margin-bottom: 15px;
  font-weight: 500;
}
#p-pred #sec3 #step3 #ins-list table {
  border-top: 1px solid #CCC;
  font-size: 1.4rem;
  line-height: 150%;
  width: 100%;
}
#p-pred #sec3 #step3 #ins-list tr {
  border-bottom: 1px solid #CCC;
}
#p-pred #sec3 #step3 #ins-list th {
  font-weight: 500;
  width: 25%;
  text-align: left;
  padding: 10px 0;
  vertical-align: top;
}
#p-pred #sec3 #step3 #ins-list td {
  width: 75%;
  text-align: left;
  padding: 10px 0;
}
#p-pred #sec3 #step3 #ins-list .kuni {
  font-size: 2.4rem;
  letter-spacing: 1px;
  line-height: 150%;
}
#p-pred #sec3 #step3 #ins-list .kuni span {
  font-size: 1.4rem;
}
#p-pred #sec3 #step3 #ins-list .batch {
  width: 100px;
  height: 100px;
  font-size: 1.8rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #90bc04;
  color: #FFF;
  line-height: 140%;
  border-radius: 50%;
  font-weight: 500;
  position: absolute;
  left: 50%;
  top: -50px;
  margin-left: -50px;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　新築  規格住宅  SEC4    コーディネート

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#p-pred #sec4 .cons {
  position: relative;
}
#p-pred #sec4 .sec-tit {
  margin-bottom: 50px !important;
}
#p-pred #sec4 #lead {
  font-size: 1.8rem;
  position: absolute;
  right: 0;
  top: -15px;
  color: #666666;
}
#p-pred #sec4 #kakaku {
  margin-bottom: 130px;
  font-size: 1.4rem;
}

#p-pred #sec4 .spec-clm .tit .ms3 {
  line-height: 100%;
}

#p-pred #sec4 .spec-clm .tit .ms3 span.op {
  font-size: 1.4rem;
  color: #999;
  font-weight: 400;
}

#p-pred #sec4 .tilelist li {
  width: 23.5%;
}
#p-pred #sec4 .tilelist .ofi {
  height: 230px;
  margin-bottom: 10px;
}
#p-pred #sec4 .tilelist .name {
  font-weight: 500;
  line-height: 150%;
}
#p-pred #sec4 .tilelist .tex {
  font-size: 1.4rem;
}

#p-pred #sec4 #fnt.tilelist li {
  width: 48.5%;
}
#p-pred #sec4 #fnt.tilelist .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#p-pred #sec4 #fnt.tilelist .ofi {
  width: 49.8%;
}

#p-pred #sec4 .intr-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 3%;
}
#p-pred #sec4 .intr-list li {
  width: 31.5%;
  background: #f7f7f7;
  padding: 4%;
}
#p-pred #sec4 .intr-list .ofi {
  height: 230px;
  margin-bottom: 10px;
}
#p-pred #sec4 .intr-list .name {
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 5px;
}
#p-pred #sec4 .intr-list .tex {
  font-size: 1.4rem;
  line-height: 160%;
}
#p-pred #sec4 .intr-list .inner-abv {
  margin-bottom: 50px;
  min-height: 360px;
}

#p-pred #sec4 #other {
  background: #f7f7f7;
  padding: 6% 9% 4%;
}
#p-pred #sec4 #other .tilelist li {
  width: 28.5%;
  margin-bottom: 5%;
}
#p-pred #sec4 #other .ms4 span {
  font-size: 1.4rem;
  color: #999;
  font-weight: 400;
  letter-spacing: 0;
  margin-left: 1em;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　モデルハウス

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#p-model #sec2,
#p-model #sec3 {
  margin-bottom: 150px;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　イントロ

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#p-model #sec0 #intro-dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 90px;
}
#p-model #sec0 #intro-dl dt {
  width: 40%;
}
#p-model #sec0 #intro-dl dd {
  width: 50%;
  font-size: 1.8rem;
  letter-spacing: 1px;
  line-height: 200%;
}
#p-model #sec0 #intro-dl .ms1 {
  margin-bottom: 0;
  line-height: 150%;
  letter-spacing: 2px;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　見学イベント

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#p-model #sec1 {
  margin-bottom: 350px;
}
#p-model #sec1 .cons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid #CCC;
  padding-top: 100px;
}
#p-model #sec1 .lbox {
  width: 260px;
}
#p-model #sec1 .rbox {
  width: 850px;
  overflow: hidden;
}

#js-iemiru-cms-index-page {
  width: 890px;
}

#iemiru-cms-index-page {
  padding: 0;
  width: auto !important;
}

.index-page__events-event.is-horizontal {
  /*border: 1px solid #CCC;*/
  /*    margin: 0 !important;
      padding: 0 !important;*/
}

/*　イベントタイトル
----------------------------------------------------*/
#p-model #sec1 .sec-tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  margin-bottom: 130px;
  position: relative;
}
#p-model #sec1 .sec-tit .ms0 {
  color: #333;
  letter-spacing: 6px;
  line-height: 130%;
  width: 100%;
}
#p-model #sec1 .sec-tit .ms0:first-letter {
  color: #9dc814;
}
#p-model #sec1 .sec-tit .line {
  width: 150px;
  height: 1px;
  background: #CCC;
  margin: 0 1em;
  display: none;
}
#p-model #sec1 .sec-tit .en {
  font-size: 2.4rem;
  font-weight: 400;
  color: #999;
  letter-spacing: 2px;
  width: 100%;
  margin-bottom: 5px;
}

#p-model #sec1 .sec-tit:after {
  content: "";
  width: 40px;
  height: 3px;
  background-color: #333;
  margin-top: 25px;
  position: absolute;
  left: 0;
  top: auto;
  bottom: -30px;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　 店舗 メインビジュアル

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#p-model .mainph-wp .en {
  font-size: 6rem;
  text-align: right;
  position: relative;
  z-index: 1;
  margin-bottom: -8px;
  margin-right: 20px;
  color: #000;
}
#p-model .mainph-wp .mainph {
  height: 630px;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　 店舗紹介部分

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#p-model .mdl-colum {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #CCC;
  padding-top: 7%;
  padding-bottom: 7%;
}
#p-model .mdl-colum .lbox {
  width: 8%;
}
#p-model .mdl-colum .cbox {
  width: 58%;
  padding-right: 3%;
}
#p-model .mdl-colum .rbox {
  width: 26%;
}
#p-model .mdl-colum .area {
  font-size: 1.8rem;
  font-weight: 500;
}
#p-model .mdl-colum .area span {
  border-bottom: 2px solid #333;
  padding-bottom: 15px;
}
#p-model .mdl-colum .ms1 {
  margin-bottom: 15px;
  line-height: 130%;
}
#p-model .mdl-colum .adr {
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 50px;
}
#p-model .mdl-colum .gmap {
  letter-spacing: 0;
  font-size: 1.2rem;
  display: inline-block;
  margin-left: 10px;
}
#p-model .mdl-colum .gmap a {
  display: block;
  border: 1px solid #CCC;
  color: #666;
  line-height: 100%;
  padding: 3px 13px 4px 8px;
  border-radius: 15px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#p-model .mdl-colum .gmap a:hover {
  background: #333;
  color: #FFF;
}
#p-model .mdl-colum .gmap i {
  font-size: 2rem;
  vertical-align: -3px;
}
#p-model .mdl-colum .time-tab {
  width: 100%;
  margin-top: -40px;
  margin-bottom: 50px;
}
#p-model .mdl-colum .time-tab th {
  text-align: left;
  position: relative;
  width: 22%;
  vertical-align: top;
  padding: 5px 0 5px 15px;
  font-weight: 500;
  letter-spacing: 1px;
}
#p-model .mdl-colum .time-tab th:before {
  content: "";
  width: 10px;
  height: 1px;
  display: inline-block;
  background-color: #333;
  position: absolute;
  top: 20px;
  left: 0;
}
#p-model .mdl-colum .time-tab td {
  padding: 5px 0;
}
#p-model .mdl-colum .honbun {
  margin-bottom: 30px;
}
#p-model .mdl-colum .bt {
  font-size: 1.8rem;
  width: 300px;
}
#p-model .mdl-colum .bt a {
  display: block;
  color: #FFF;
  background: #999;
  text-align: center;
  line-height: 65px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#p-model .mdl-colum .bt a:hover {
  background: #333;
}
#p-model .mdl-colum .bt i {
  font-size: 1.8em;
  vertical-align: -5px;
  margin-right: 5px;
}
#p-model .mdl-colum .note {
  margin-top: 5px;
  font-size: 1.3rem;
}
#p-model .mdl-colum .point li {
  font-family: "Noto Sans JP", sans-serif;
  text-indent: -1em;
  padding-left: 1em;
  line-height: 140%;
  margin-bottom: 7px;
}
#p-model .mdl-colum #honsha.point {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
#p-model .mdl-colum #honsha.point li {
  width: 50%;
  white-space: nowrap;
}

#p-model #lc-logo {
  margin-bottom: -25px;
}
#p-model #lc-logo img {
  width: 315px;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　お知らせ

–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*　タブ
----------------------------------------------------*/
#p-estimate .soon {
  border: 7px solid #EEE;
  text-align: center;
  padding: 100px 0;
}
#p-estimate .soon .en {
  font-size: 40px;
  margin-bottom: 30px;
}
#p-estimate .soon .tex {
  font-size: 20px;
}

/************************************************************************************

　スマホ設定

*************************************************************************************/
@media screen and (max-width: 670px) {
  /*　タブ
  ----------------------------------------------------*/
  #p-estimate .soon {
    border: 7px solid #EEE;
    text-align: center;
    padding: 50px 0;
  }
  #p-estimate .soon .en {
    font-size: 30px;
    margin-bottom: 30px;
  }
  #p-estimate .soon .tex {
    font-size: 14px;
  }
}
/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　会社紹介 私達について

–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*　タブ
----------------------------------------------------*/
/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　SEC1

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#p-about #sec1 {
  margin-bottom: 350px;
}
#p-about #sec1 .cons {
  position: relative;
  z-index: 1;
  /*border: 1px solid #CCC;*/
}
#p-about #sec1 .inner {
  width: 47%;
  min-height: 700px;
  padding-top: 60px;
  /*border: 1px solid #CCC;*/
}
#p-about #sec1 .cutph-wp {
  width: 48%;
  position: absolute;
  right: 0;
  top: 0;
}
#p-about #sec1 .cutph {
  width: 100%;
  height: 700px;
}
#p-about #sec1 .ms1 {
  line-height: 150%;
  color: #333;
}
#p-about #sec1 .honbun {
  font-size: 1.8rem;
  line-height: 220%;
}
#p-about #sec1 .honbun p {
  margin-bottom: 0px;
}
#p-about #sec1 .name {
  position: relative;
  z-index: 9;
  margin-top: 720px;
}
#p-about #sec1 .name dt {
  letter-spacing: 2px;
  margin-bottom: 10px;
}
#p-about #sec1 .name dd {
  font-size: 2.4rem;
  color: #333;
  letter-spacing: 10px;
  font-weight: 500;
}
#p-about #sec1 .name dd span {
  font-size: 1.6rem;
  margin-left: 15px;
  color: #999;
  font-weight: 400;
  letter-spacing: 1px;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　SEC2 

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#p-about #sec2 .inner {
  width: 40%;
  min-height: 580px;
  padding-top: 80px;
}
#p-about #sec2 .cutph {
  width: 46%;
  height: 580px;
}
#p-about #sec2 .ms3 {
  margin-bottom: 20px;
}
#p-about #sec2 .tex {
  font-size: 1.8rem;
  line-height: 200%;
  letter-spacing: 1px;
}

/*　経営理念タイトル
----------------------------------------------------*/
#p-about #sec2 .sec-tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  margin-bottom: 130px;
  position: relative;
}
#p-about #sec2 .sec-tit .ms0 {
  color: #333;
  letter-spacing: 6px;
  line-height: 130%;
  width: 100%;
}
#p-about #sec2 .sec-tit .ms0:first-letter {
  color: #9dc814;
}
#p-about #sec2 .sec-tit .line {
  width: 150px;
  height: 1px;
  background: #CCC;
  margin: 0 1em;
  display: none;
}
#p-about #sec2 .sec-tit .en {
  font-size: 2.4rem;
  font-weight: 400;
  color: #999;
  letter-spacing: 2px;
  width: 100%;
  margin-bottom: 5px;
}

#p-about #sec2 .sec-tit:after {
  content: "";
  width: 40px;
  height: 3px;
  background-color: #333;
  margin-top: 25px;
  position: absolute;
  left: 0;
  top: auto;
  bottom: -30px;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　SEC3  会社概要

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#p-about #sec3 .colum {
  margin-bottom: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
#p-about #sec3 .colum .lbox {
  width: 60%;
}
#p-about #sec3 .colum .rbox {
  width: 30%;
}
#p-about #sec3 .colum .ms3 {
  margin-bottom: 25px;
  margin-top: -10px;
}

#p-about #sec3 .colum table {
  width: 100%;
  border-top: 1px solid #CCC;
}
#p-about #sec3 .colum table tr {
  border-bottom: 1px solid #CCC;
}
#p-about #sec3 .colum table th {
  width: 33%;
  text-align: left;
  font-weight: 500;
  padding: 25px 0;
  letter-spacing: 1px;
  vertical-align: top;
}
#p-about #sec3 .colum table td {
  width: 67%;
  text-align: left;
  padding: 25px 0;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　SEC3  沿革

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#p-about #sec3 #colum4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 100px;
}
#p-about #sec3 #colum4 .lbox {
  width: 30%;
}
#p-about #sec3 #colum4 .rbox {
  width: 60%;
}
#p-about #sec3 #colum4 .tit {
  width: 230px;
  text-align: center;
}
#p-about #sec3 #colum4 .ms3 {
  border: 1px solid #CCC;
  margin-bottom: 10px;
  padding: 6% 0;
}

#p-about #sec3 #colum4 .rbox table {
  width: 100%;
  margin-bottom: 30px;
  font-family: "Noto Sans JP", sans-serif;
  border-top: 1px solid #CCC;
  /*    td.mth{ width: 10%;}*/
}
#p-about #sec3 #colum4 .rbox table tr {
  border-bottom: 1px solid #CCC;
}
#p-about #sec3 #colum4 .rbox table th {
  text-align: left;
  vertical-align: top;
  font-weight: 500;
  padding: 4% 0;
  width: 18%;
}
#p-about #sec3 #colum4 .rbox table th span {
  font-size: 0.8em;
}
#p-about #sec3 #colum4 .rbox table td {
  padding: 4% 0;
  vertical-align: top;
}
#p-about #sec3 #colum4 .rbox table td.dtl {
  width: 82%;
}
#p-about #sec3 #colum4 .rbox table .note {
  margin-top: 0;
}
#p-about #sec3 #colum4 .rbox table span {
  font-size: 0.8em;
}
#p-about #sec3 #colum4 .rbox table .idt {
  line-height: 140%;
  text-indent: -1em;
  padding-left: 1px;
  margin-bottom: 5px;
}

#p-about #sec3 #gmap {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
#p-about #sec3 #gmap iframe {
  width: 100%;
  height: 550px;
}

/************************************************************************************

　スマホ設定

*************************************************************************************/
@media screen and (max-width: 670px) {
  /*　タブ
  ----------------------------------------------------*/
}
/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　会社紹介 SDGs

–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*　SEC1
----------------------------------------------------*/
#p-sdgs #sec1 {
  margin-bottom: 90px;
}

#p-sdgs #sec1 .colum {
  font-size: 1.8rem;
  letter-spacing: 2px;
  line-height: 200%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#p-sdgs #sec1 .colum #mds {
  color: #333;
  line-height: 150%;
}
#p-sdgs #sec1 .colum .lbox {
  width: 40%;
}
#p-sdgs #sec1 .colum .rbox {
  width: 52%;
}
#p-sdgs #sec1 .colum #goals {
  width: 385px;
  margin-bottom: 50px;
}
#p-sdgs #sec1 .colum #goals img {
  width: 100%;
  height: auto;
}
#p-sdgs #sec1 .colum .tex {
  margin-bottom: 20px;
}

/*　SEC2
----------------------------------------------------*/
#p-sdgs #sec2 #mid-vis {
  margin-left: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#p-sdgs #sec2 #mid-vis .gsp-para-wp {
  height: 530px;
}
#p-sdgs #sec2 #mid-vis #midvis1 {
  width: 30%;
}
#p-sdgs #sec2 #mid-vis #midvis2 {
  width: 69.9%;
}

/*　SEC3 アクション
----------------------------------------------------*/
#p-sdgs #sec3 .tit {
  text-align: center;
  margin-bottom: 200px;
  position: relative;
}
#p-sdgs #sec3 .tit .ms1 {
  text-align: left;
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  letter-spacing: 5px;
  line-height: 250%;
  margin: 0 auto;
}
#p-sdgs #sec3 .tit .en {
  font-size: clamp(60px, 15vw, 150px);
  line-height: 100%;
  opacity: 0.04;
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#p-sdgs #sec3 #cmt-dl .grp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 165px;
}
#p-sdgs #sec3 #cmt-dl .grp:last-child {
  margin-bottom: 0px;
}
#p-sdgs #sec3 #cmt-dl dt {
  width: 40%;
}
#p-sdgs #sec3 #cmt-dl dd {
  width: 49%;
  position: relative;
}
#p-sdgs #sec3 #cmt-dl .gsp-para-wp {
  height: 460px;
}
#p-sdgs #sec3 #cmt-dl .en {
  width: 130px;
  text-align: center;
  color: #6ab806;
  margin-bottom: 5px;
  border-left: 2px solid #6ab806;
  border-right: 2px solid #6ab806;
  position: absolute;
  right: 0;
  top: 0;
}
#p-sdgs #sec3 #cmt-dl .en span {
  font-size: 1.9em;
}
#p-sdgs #sec3 #cmt-dl .ms3 {
  width: 70%;
  margin-bottom: 80px;
}
#p-sdgs #sec3 #cmt-dl .icon-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 3.5%;
}
#p-sdgs #sec3 #cmt-dl .icon-list li {
  width: 22%;
}
#p-sdgs #sec3 #cmt-dl .icon-list li img {
  width: 100%;
  height: auto;
}

/************************************************************************************

　スマホ設定

*************************************************************************************/
@media screen and (max-width: 670px) {
  /*　タブ
  ----------------------------------------------------*/
}
/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　スタッフ紹介

–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*　タブ
----------------------------------------------------*/
#p-staff .staff-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#p-staff .staff-list li {
  width: 25%;
  margin-bottom: 10%;
}
#p-staff .staff-list a {
  color: #666;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#p-staff .staff-list .ofi {
  aspect-ratio: 1;
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  overflow: hidden;
}
#p-staff .staff-list .ofi img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#p-staff .staff-list .inner {
  padding: 5%;
}
#p-staff .staff-list .name {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 6px;
  margin-bottom: 3px;
}
#p-staff .staff-list .frn .name {
  letter-spacing: 0px;
}
#p-staff .staff-list .pos {
  font-size: 1.4rem;
  letter-spacing: 1px;
  line-height: 140%;
}

#p-staff .staff-list a:hover {
  color: #9dc814;
}
#p-staff .staff-list a:hover .ofi {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}
#p-staff .staff-list a:hover .ofi img {
  -webkit-transform: scale(1.06);
          transform: scale(1.06);
}

#p-staff .posmds {
  font-size: 2.4rem;
  line-height: 100%;
  margin-bottom: 30px;
  letter-spacing: 3px;
  font-weight: 500;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　スタッフ紹介 詳細ページ

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#p-staff.detail #prf-wp {
  width: 1080px;
  padding: 6%;
}
#p-staff.detail .en {
  font-size: 3rem;
  letter-spacing: 10px;
  color: #000;
  margin-bottom: 50px;
}
#p-staff.detail .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  padding-top: 1px;
}
#p-staff.detail #facebox {
  width: 30%;
  margin-top: -80px;
}
#p-staff.detail .ofi {
  margin-bottom: 10px;
}
#p-staff.detail .name {
  font-size: 2rem;
  color: #333;
  font-weight: 500;
  line-height: 130%;
  margin-bottom: 5px;
  letter-spacing: 3px;
}
#p-staff.detail .pos {
  letter-spacing: 0px;
  font-size: 1.4rem;
  line-height: 140%;
}
#p-staff.detail .pos br {
  display: none;
}
#p-staff.detail .pos br.block {
  display: block;
}
#p-staff.detail #mainbox {
  width: 63%;
}

#p-staff.detail #prf-dl {
  font-size: 1.4rem;
}
#p-staff.detail #prf-dl .grp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 30px;
}
#p-staff.detail #prf-dl dt {
  width: 20%;
  font-weight: 500;
  color: #333;
  line-height: 140%;
  position: relative;
}
#p-staff.detail #prf-dl dt span:after {
  content: "";
  width: 20px;
  height: 3px;
  display: block;
  background-color: #333;
  margin-top: 10px;
}
#p-staff.detail #prf-dl dd {
  width: 80%;
  line-height: 160%;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

会社情報 ： 採用情報

–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　SEC 0

–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*　
----------------------------------------------------*/
#p-recruit #sec0 #intro-dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 90px;
}
#p-recruit #sec0 #intro-dl dt {
  width: 40%;
}
#p-recruit #sec0 #intro-dl dd {
  width: 50%;
  font-size: 2.4rem;
  letter-spacing: 1px;
  line-height: 200%;
  margin-top: -10px;
}
#p-recruit #sec0 #intro-dl .ms1 {
  margin-bottom: 0;
  line-height: 150%;
  letter-spacing: 2px;
}

/*　アンカーリンク リスト
----------------------------------------------------*/
#p-recruit #sec0 .anc-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 100px;
  width: 77%;
  min-width: 840px;
}
#p-recruit #sec0 .anc-link li {
  margin-left: 0;
  width: 20.5%;
  margin-bottom: 2%;
}

/*　 求める人物像
----------------------------------------------------*/
#p-recruit #sec0 #wants {
  background: #f7f7f7;
  background: url("../img/company/recruit/logo-yd.svg") no-repeat 0% 111% #F7F7F7;
  background-size: 100%;
  margin-left: 5%;
  padding-top: 10%;
  padding-left: 3%;
  padding-bottom: 13%;
  padding-right: 4%;
  position: relative;
}

#p-recruit #sec0 #wants .inner {
  width: 88%;
  margin: 0 auto;
}

#p-recruit #sec0 #wants-dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#p-recruit #sec0 #wants-dl .grp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 47%;
}
#p-recruit #sec0 #wants-dl dt {
  width: 25%;
}
#p-recruit #sec0 #wants-dl dd {
  width: 70%;
  line-height: 220%;
  letter-spacing: 1px;
}
#p-recruit #sec0 #wants-dl .mds {
  display: inline-block;
  border-bottom: 1px solid #333;
  padding-bottom: 7px;
  margin-bottom: 30px;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　SEC 1 社長メッセージ

–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*　
----------------------------------------------------*/
#p-recruit #sec1 .colum {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#p-recruit #sec1 .lbox {
  width: 37%;
}
#p-recruit #sec1 .rbox {
  width: 51%;
}
#p-recruit #sec1 .ofi {
  aspect-ratio: 1.1;
  margin-bottom: 15px;
}
#p-recruit #sec1 .pos {
  margin-bottom: 5px;
}
#p-recruit #sec1 .name {
  font-size: 2.2rem;
  letter-spacing: 6px;
}
#p-recruit #sec1 .ms3 .honbun {
  line-height: 220%;
}
#p-recruit #sec1 .honbun .tex {
  margin-bottom: 2em;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　SEC 2

–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*　
----------------------------------------------------*/
#p-recruit #sec2 .cons {
  position: relative;
}

#p-recruit #sec2 #joblist {
  /*        display:flex;
      flex-wrap:wrap;
      justify-content:space-between;*/
  cursor: -webkit-grab;
  cursor: grab;
}
#p-recruit #sec2 #joblist li {
  width: 100%;
}
#p-recruit #sec2 #joblist .ofi {
  aspect-ratio: 1.6;
  margin-bottom: -25px;
}
#p-recruit #sec2 #joblist .ms4 {
  background: #9dc814;
  color: #FFF;
  display: inline-block;
  padding: 2% 5% 2%;
  position: relative;
  z-index: 1;
}
#p-recruit #sec2 #joblist .mds {
  font-size: 1.8rem;
  margin-bottom: 3px;
}
#p-recruit #sec2 #next,
#p-recruit #sec2 #prev {
  width: 60px;
  height: 60px;
  border: 1px solid #CCC;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#p-recruit #sec2 #next:hover,
#p-recruit #sec2 #prev:hover {
  border: 1px solid #90bc04;
}

#p-recruit #sec2 #next i,
#p-recruit #sec2 #prev i {
  font-size: 2em;
  color: #CCC;
}

#p-recruit #sec2 #next:hover i,
#p-recruit #sec2 #prev:hover i {
  font-size: 2em;
  color: #90bc04;
}

#p-recruit #sec2 #next {
  position: absolute;
  right: 70px;
  top: 170px;
}

#p-recruit #sec2 #prev {
  position: absolute;
  right: 0;
  top: 170px;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　SEC 3 人を知る

–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*　
----------------------------------------------------*/
#p-recruit #sec3 .colum {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#p-recruit #sec3 .colum .lbox {
  padding-top: 460px;
  position: relative;
}
#p-recruit #sec3 .colum .rbox {
  width: 42%;
}
#p-recruit #sec3 .colum .num {
  font-size: 7.2rem;
  color: #90bc04;
  font-weight: 500;
  position: absolute;
  top: -15px;
  right: 20px;
  z-index: 1;
  font-family: "Jost", sans-serif;
}
#p-recruit #sec3 .colum .cutph {
  position: absolute;
  left: auto;
  right: 0;
  top: 0;
  width: 720px;
  height: 460px;
}
#p-recruit #sec3 .colum .en {
  font-size: 7.2rem;
  color: #90bc04;
  font-weight: 500;
  line-height: 100%;
  margin-top: -40px;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}
#p-recruit #sec3 .colum .name {
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 6px;
  margin-bottom: 20px;
}
#p-recruit #sec3 .colum .pos {
  font-size: 2.2rem;
  letter-spacing: 2px;
}
#p-recruit #sec3 .colum .year {
  font-size: 1.6rem;
  letter-spacing: 2px;
}
#p-recruit #sec3 .colum .cmnlist {
  margin-bottom: 30px;
}
#p-recruit #sec3 .colum .honbun {
  line-height: 200%;
  letter-spacing: 1px;
}
#p-recruit #sec3 .colum #sch-tit {
  font-size: 1.8rem;
  margin-bottom: 50px;
}

#p-recruit #sec3 #sch-dl {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#9dc814), to(#9dc814));
  background-image: linear-gradient(#9dc814, #9dc814);
  background-repeat: no-repeat;
  background-position: 20% 0px; /* 下線の初期位置 */
  background-size: 1px 100%; /* 下線のサイズ（横幅、高さ） */
}
#p-recruit #sec3 #sch-dl .grp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 30px;
}
#p-recruit #sec3 #sch-dl dt {
  width: 16%;
  letter-spacing: 2px;
}
#p-recruit #sec3 #sch-dl dd {
  width: 73%;
  position: relative;
}
#p-recruit #sec3 #sch-dl .mds {
  font-weight: 500;
}
#p-recruit #sec3 #sch-dl .tex {
  font-size: 1.4rem;
  line-height: 150%;
  letter-spacing: 1px;
}
#p-recruit #sec3 #sch-dl dd:before {
  content: "";
  width: 10px;
  height: 10px;
  display: inline-block;
  background-color: #FFF;
  border: 3px solid #90bc04;
  border-radius: 50%;
  position: absolute;
  top: 7px;
  left: -12%;
  z-index: 1;
}

#p-recruit #sec3 #substaff {
  border-top: 1px solid #CCC;
  margin-top: 150px;
}
#p-recruit #sec3 #substaff > li {
  border-bottom: 1px solid #CCC;
  padding: 6% 0;
}
#p-recruit #sec3 #substaff .lbox {
  width: 46%;
  padding-top: 0px;
}
#p-recruit #sec3 #substaff .rbox {
  width: 46%;
}
#p-recruit #sec3 #substaff ofi {
  height: 340px;
}
#p-recruit #sec3 #substaff .num {
  position: static;
  line-height: 100%;
  margin-bottom: 30px;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　SEC 4 環境を知る

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#p-recruit #sec4 #env-dl {
  width: 91%;
}
#p-recruit #sec4 #env-dl .grp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 100px;
}
#p-recruit #sec4 #env-dl .grp:last-child {
  margin-bottom: 0;
}
#p-recruit #sec4 #env-dl dt {
  width: 30%;
  position: relative;
}
#p-recruit #sec4 #env-dl dd {
  width: 58%;
}
#p-recruit #sec4 #env-dl .tilelist {
  margin-top: 20px;
}
#p-recruit #sec4 #env-dl .tilelist li {
  width: 49%;
}
#p-recruit #sec4 #env-dl #goals {
  margin-top: 20px;
  width: 80%;
}
#p-recruit #sec4 #env-dl dt:after {
  content: "";
  width: 30%;
  height: 1px;
  display: inline-block;
  background-color: #CCC;
  position: absolute;
  top: 10px;
  right: -30%;
}
#p-recruit #sec4 #env-dl #goals img {
  width: 100%;
  height: auto;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　SEC 5 数字で見る

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#p-recruit #sec5 {
  background: #f7f7f7;
  padding: 12% 0;
  margin-bottom: 300px;
}

#p-recruit #sec5 #suuli-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#p-recruit #sec5 #suuli-list li {
  width: 48.5%;
  margin-bottom: 5%;
}
#p-recruit #sec5 #suuli-list .tex {
  font-size: 2rem;
  margin-top: 10px;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　SEC6  オープンカンパニー

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#p-recruit #sec6 .inner {
  padding-top: 0px;
  width: 42%;
  height: 680px;
  padding-top: 1px;
}
#p-recruit #sec6 .en {
  color: #f5f5f5;
  font-size: 120px;
  line-height: 100%;
  margin-top: -170px;
  margin-left: -180px;
  margin-bottom: 60px;
}
#p-recruit #sec6 .ms1 {
  margin-bottom: 30px;
}
#p-recruit #sec6 .ms1:first-letter {
  color: #9dc814;
}
#p-recruit #sec6 .lead {
  font-size: 1.8rem;
  margin-bottom: 5px;
  font-weight: 500;
  letter-spacing: 1px;
}
#p-recruit #sec6 .tex {
  line-height: 220%;
  letter-spacing: 1px;
}
#p-recruit #sec6 .cutph {
  height: 680px;
}
#p-recruit #sec6 .tilelist {
  margin-top: 20px;
}
#p-recruit #sec6 .tilelist li {
  width: 48%;
}
#p-recruit #sec6 .tilelist .ofi {
  aspect-ratio: 1.4;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　SEC7  募集要項

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#p-recruit #sec7 .cons {
  position: relative;
}

/*　タイトル
----------------------------------------------------*/
#p-recruit #sec7 .sec-tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  margin-bottom: 130px;
  position: absolute;
  left: 0;
  top: 0;
}
#p-recruit #sec7 .sec-tit .ms0 {
  color: #333;
  letter-spacing: 6px;
  line-height: 130%;
  width: 100%;
}
#p-recruit #sec7 .sec-tit .ms0:first-letter {
  color: #9dc814;
}
#p-recruit #sec7 .sec-tit .line {
  width: 150px;
  height: 1px;
  background: #CCC;
  margin: 0 1em;
  display: none;
}
#p-recruit #sec7 .sec-tit .en {
  font-size: 2.4rem;
  font-weight: 400;
  color: #999;
  letter-spacing: 2px;
  width: 100%;
  margin-bottom: 5px;
}

#p-recruit #sec7 .sec-tit:after {
  content: "";
  width: 40px;
  height: 3px;
  background-color: #333;
  margin-top: 25px;
  position: absolute;
  left: 0;
  top: auto;
  bottom: -30px;
}

/*　 アコーディオン部分
----------------------------------------------------*/
.accordion-container {
  margin: 0 0 0 auto;
  border-bottom: 1px solid #CCC;
  width: 70%;
}

.accordion-container .accordion-title {
  position: relative;
  padding: 4% 2%;
  padding-right: 70px;
  padding-left: 50px;
  color: #000;
  font-size: 30px;
  font-weight: 500;
  cursor: pointer;
  border-top: 1px solid #CCC;
  background-size: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  line-height: 145%;
}

.accordion-container .accordion-title:hover,
.accordion-container .accordion-title:active,
.accordion-title.open {
  /*  background-color: #00aaa7;*/
  color: #90bc04;
}

.accordion-container .accordion-title::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  width: 22px;
  height: 2px;
  /*縦線に*/
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  background: #CCC;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.accordion-container .accordion-title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  /*横線*/
  width: 22px;
  height: 2px;
  background: #CCC;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.accordion-container .accordion-title.open::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.accordion-container .accordion-title.open::after {
  opacity: 0;
}

.accordion-content {
  background: #f7f7f7;
  padding: 6%;
  border-radius: 10px;
  margin-bottom: 6%;
  line-height: 180%;
}

.accordion-content .note {
  font-size: 14px;
  color: #333;
  line-height: 150%;
  margin-top: 10px;
}

.accordion-title span {
  position: relative;
}

.accordion-title span:before {
  content: "";
  width: 20px;
  height: 2px;
  display: inline-block;
  background-color: #90bc04;
  position: absolute;
  top: 50%;
  left: -40px;
}

/*　 募集要項 テーブル
----------------------------------------------------*/
.rec-tab {
  border-top: 1px solid #CCC;
  width: 100%;
}
.rec-tab tr {
  border-bottom: 1px solid #CCC;
}
.rec-tab th {
  padding: 3% 0;
  vertical-align: top;
  text-align: left;
  width: 20%;
}
.rec-tab td {
  padding: 3% 0;
  width: 80%;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　家づくり コンセプト

–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*　SEC1
----------------------------------------------------*/
#p-renov #sec1 #mds {
  margin-bottom: 65px;
  color: #333;
}

#p-renov #sec1 .colum {
  margin-bottom: 155px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  /*align-items:center;*/
  font-size: 1.8rem;
  letter-spacing: 1px;
  line-height: 200%;
}
#p-renov #sec1 .colum .lbox {
  width: 40%;
}
#p-renov #sec1 .colum .rbox {
  width: 48%;
}
#p-renov #sec1 .colum #p1 {
  height: 210px;
}
#p-renov #sec1 .colum #mds {
  line-height: 160%;
  margin-bottom: 40px;
}
#p-renov #sec1 .colum .tex {
  margin-bottom: 20px;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　ビフォア アフター

–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*　　ビフォア アフター　メニュー*/
#p-renov #sec1 #bfaf-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 3%;
}
#p-renov #sec1 #bfaf-nav li {
  width: 32%;
  width: 16%;
  width: 19%;
  font-size: 2.2rem;
}
#p-renov #sec1 #bfaf-nav a {
  text-align: center;
  display: block;
  background: #f7f7f7;
  color: #333;
  line-height: 100%;
  padding: 1.3vw 0;
  border-radius: 3vw;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#p-renov #sec1 #bfaf-nav a:hover {
  background: #333;
  color: #FFF;
}
#p-renov #sec1 #bfaf-nav .point {
  font-size: 0.8em;
  font-weight: 500;
}
#p-renov #sec1 #bfaf-nav .point span {
  font-size: 0.8em;
}

/*　　ビフォア アフター 　リスト*/
#p-renov #sec1 #bfaf-list {
  /*width: 80%;*/
  /*border: 1px solid #CCC;*/
}
#p-renov #sec1 #bfaf-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #f7f7f7;
  padding: 3%;
}
#p-renov #sec1 #bfaf-list .lbox {
  width: 48%;
  position: relative;
  background: #FFF;
}
#p-renov #sec1 #bfaf-list .rbox {
  width: 48%;
  position: relative;
  background: #FFF;
}
#p-renov #sec1 #bfaf-list .en {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 99;
  font-size: 2rem;
  width: 120px;
  line-height: 50px;
  background: #333;
  text-align: center;
  color: #FFF;
}
#p-renov #sec1 #bfaf-list .rbox .en {
  background: #90bc04;
}
#p-renov #sec1 #bfaf-list .ofi {
  height: 400px;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　中段ビジュアル

–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*　SEC2
----------------------------------------------------*/
#p-renov #sec2 #mid-vis {
  margin-right: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#p-renov #sec2 #mid-vis .gsp-para-wp {
  height: 530px;
}
#p-renov #sec2 #mid-vis #midvis1 {
  width: 69.9%;
}
#p-renov #sec2 #mid-vis #midvis2 {
  width: 30%;
}

/*　SEC3 大切にしていること
----------------------------------------------------*/
#p-renov #sec3 #cmt-dl .grp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-bottom: 165px;
}
#p-renov #sec3 #cmt-dl .grp:last-child {
  margin-bottom: 0px;
}
#p-renov #sec3 #cmt-dl dt {
  width: 52%;
}
#p-renov #sec3 #cmt-dl dd {
  width: 37%;
}
#p-renov #sec3 #cmt-dl .gsp-para-wp {
  height: 420px;
}
#p-renov #sec3 #cmt-dl .en {
  color: #6ab806;
  margin-bottom: 5px;
}
#p-renov #sec3 #cmt-dl .en span {
  font-size: 1.9em;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　SEC4 問い合わせ

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#p-renov #sec4 .cons {
  border-top: 1px solid #CCC;
  padding-top: 75px;
}
#p-renov #sec4 .colum {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#p-renov #sec4 .mds1 {
  font-size: 1.8rem;
  letter-spacing: 1px;
  margin-bottom: 60px;
  font-weight: 500;
}
#p-renov #sec4 .tel {
  font-size: 4.8rem;
}
#p-renov #sec4 .tel a {
  color: #333;
}
#p-renov #sec4 .mds2 {
  font-weight: 600;
  letter-spacing: 1px;
}
#p-renov #sec4 .time {
  margin-top: 25px;
  font-weight: 600;
  letter-spacing: 1px;
}
#p-renov #sec4 .hol {
  font-size: 1.4rem;
  margin-bottom: 20px;
}
#p-renov #sec4 .rbox {
  width: 42%;
}

#p-renov #sec4 .chui {
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 30px;
}
#p-renov #sec4 .chui li {
  text-indent: -1em;
  padding-left: 1em;
  line-height: 130%;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　SEC5  インスタバナー

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#p-renov #sec5 {
  position: relative;
}

#p-renov #sec5 .cons {
  height: 500px;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#p-renov #sec5 .cons .inner {
  text-align: center;
  color: #FFF;
}
#p-renov #sec5 .cons .icon i {
  font-size: 6rem;
}
#p-renov #sec5 .cons .tex {
  margin-bottom: 20px;
}
#p-renov #sec5 .cons .en {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: 3px;
}

/*写真ループ*/
#p-renov #sec5 #ph-loop {
  position: absolute;
  left: 0;
  top: 0;
}

#p-renov #sec5 #ph-loop li {
  width: 739px;
}

#p-renov #sec5 #ph-loop .ofi {
  height: 500px;
}

/*インスタボタン*/
#p-renov #sec5 .bt-boxline {
  display: inline-block;
  text-align: center;
  border: 2px solid #FFF;
  border-radius: 50px;
  overflow: hidden;
}
#p-renov #sec5 .bt-boxline a {
  display: block;
  font-weight: 500;
  padding: 10px 50px;
}
#p-renov #sec5 .bt-boxline i {
  font-size: 1.8em;
  vertical-align: -4px;
  margin-left: 7px;
}

/*インスタボタン 動き*/
#p-renov #sec5 a.btn1 {
  display: inline-block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  line-height: 36px;
  outline: none;
  color: #FFF;
  background-color: transparent;
  position: relative;
  -webkit-transition: color 0.5s ease;
  transition: color 0.5s ease;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　不動産 一覧

–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*　不動産リスト
----------------------------------------------------*/
#p-est .est-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#p-est .est-list li {
  width: 31%;
  margin-bottom: 10%;
}
#p-est .est-list a {
  color: #666;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#p-est .est-list .ofi {
  height: 250px;
  margin-bottom: 4%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#p-est .est-list .cat {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  display: inline-block;
  border: 1px solid #CCC;
  padding: 0px 15px;
  border-radius: 15px;
  margin-bottom: 15px;
  line-height: 27px;
}
#p-est .est-list .name {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 130%;
  margin-bottom: 2px;
}
#p-est .est-list .price {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 2px;
}
#p-est .est-list .spec {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
}
#p-est .est-list a:hover {
  color: #90bc04;
}
#p-est .est-list a:hover .cat {
  border: 1px solid #90bc04;
}
#p-est .est-list a:hover .ofi {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　不動産 記事詳細 メインスライド  タイトル カテゴリ

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#slidevis .cat {
  font-size: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  display: inline-block;
  border: 1px solid #CCC;
  padding: 5px 30px 5px;
  margin-bottom: 20px;
}
#slidevis .ms1 {
  margin-bottom: 30px;
  line-height: 120%;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　不動産 記事詳細 メインスライド

–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*建売スライド 外枠*/
#slidevis {
  width: 1000px;
  overflow: hidden;
  margin: 0 auto;
  margin-bottom: 35px;
}

/*建売スライド メイン画像*/
#slidevis .slider {
  margin-bottom: 15px;
}

#slidevis .slider li {
  height: 667px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  background-color: #f3f3f3;
  position: relative;
}

#slidevis .slider li:hover {
  cursor: pointer;
}

#slidevis .slider li .tex {
  text-align: left;
  background: #FFF;
  display: inline-block;
  position: absolute;
  left: 1%;
  bottom: 1.5%;
  padding: 3px 10px;
  max-width: 98%;
}

#slidevis .slider li .tex {
  display: none;
}

/*スライド  サムネイル ナビ
----------------------------------------------------*/
#slidevis .thumb {
  width: 1020px;
}

#slidevis .thumb li {
  height: 104px;
  margin-right: 15px;
  background-position: 50% 50%;
  background-size: cover;
}

#slidevis .thumb li:hover {
  cursor: pointer;
}

/* スライド 送りボタン
----------------------------------------------------*/
.arrow_box {
  position: relative;
}

.prev-arrow,
.next-arrow {
  display: block;
  width: 50px;
  height: 70px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.prev-arrow {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  margin-right: 20px;
}

.prev-arrow::before,
.next-arrow::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  border-right: 2px solid #CCC;
  border-top: 2px solid #CCC;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.next-arrow {
  position: absolute;
  right: 0;
  top: -550px;
}

.prev-arrow {
  position: absolute;
  left: 0;
  top: -550px;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　見出し

–––––––––––––––––––––––––––––––––––––––––––––––––– */
.sec-tit.est {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  margin-bottom: 130px;
  position: relative;
}
.sec-tit.est .ms0 {
  color: #333;
  letter-spacing: 6px;
  line-height: 130%;
  width: 100%;
  font-size: 2rem;
}
.sec-tit.est .ms0:first-letter {
  color: #9dc814;
}
.sec-tit.est .line {
  width: 150px;
  height: 1px;
  background: #CCC;
  margin: 0 1em;
  display: none;
}
.sec-tit.est .en {
  font-size: 1.8rem;
  font-weight: 400;
  color: #999;
  letter-spacing: 2px;
  width: 100%;
  margin-bottom: 0px;
}

.sec-tit.est:after {
  content: "";
  width: 20px;
  height: 3px;
  background-color: #333;
  margin-top: 25px;
  position: absolute;
  left: 0;
  top: auto;
  bottom: -20px;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　共通 コラム

–––––––––––––––––––––––––––––––––––––––––––––––––– */
.e-colum {
  padding: 70px 0 70px 25%;
  position: relative;
  border-bottom: 1px solid #CCC;
}
.e-colum .est-sectit-wp {
  position: absolute;
  left: 0;
  top: 70px;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　基本情報

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#est-info {
  border-top: 1px solid #CCC;
  margin-top: 100px;
  padding-left: 18%;
  padding-bottom: 50px;
}
#est-info .colum {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#est-info .lbox {
  width: 28%;
}
#est-info .rbox {
  width: 65%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

#est-info .price {
  display: block;
}
#est-info .price dt {
  border: 1px solid #CCC;
  text-align: center;
  line-height: 40px;
  margin-bottom: 15px;
  font-size: 1.4rem;
  letter-spacing: 2px;
}
#est-info .price dd {
  font-size: 4rem;
  font-size: 2.5rem;
  /*  font-family: "Jost", sans-serif;*/
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 140%;
  color: #333;
}
#est-info .price dd span {
  font-size: 2.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  margin-left: 5px;
}

.est-infotab {
  width: 46%;
  line-height: 140%;
  font-size: 1.4rem;
}
.est-infotab th {
  width: 35%;
  text-align: left;
  vertical-align: top;
  padding-left: 22px;
  padding-bottom: 30px;
  position: relative;
  letter-spacing: 1px;
  font-weight: 500;
}
.est-infotab th:before {
  content: "";
  width: 12px;
  height: 1px;
  display: inline-block;
  background-color: #666;
  position: absolute;
  top: 7px;
  left: 0;
}
.est-infotab td {
  width: 60%;
  vertical-align: top;
  padding-bottom: 30px;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　フリー入力欄

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#est-free {
  padding: 120px 0 120px 0;
  border-bottom: 1px solid #CCC;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　区画図

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#est-block .tilelist li {
  width: 100%;
  text-align: center;
  border: 1px solid #CCC;
}
#est-block .tilelist figure {
  padding: 5%;
}
#est-block .tilelist figure img {
  max-width: 750px !important;
  max-height: 750px !important;
  width: auto;
  height: auto;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　間取り図

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#est-floor .tilelist li {
  width: 410px;
  margin-bottom: 20px;
}
#est-floor .tilelist .en {
  font-size: 2.4rem;
  margin-bottom: 5px;
}
#est-floor .tilelist figure {
  border: 1px solid #CCC;
  width: 410px;
  height: 410px;
  border: 1px solid #CCC;
  padding: 5%;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
}
#est-floor .tilelist figure img {
  max-width: 300px !important;
  max-height: 300px !important;
  width: auto;
  height: auto;
}

/*luminousでbaseに入れている影響で開いた画像が変形するのを回避*/
.lum-img {
  width: auto;
  height: auto;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　グーグル・マップ
–––––––––––––––––––––––––––––––––––––––––––––––––– */
#p-est.detail #est-gmap iframe {
  width: 100%;
  height: 500px;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　物件概要

–––––––––––––––––––––––––––––––––––––––––––––––––– */
.head-border {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.head-border:after {
  content: "";
  height: 1px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background-color: #666;
  margin-left: 1rem;
}

#est-outline {
  background: #f7f7f7;
  padding: 8%;
  margin-top: 70px;
}
#est-outline .ms4 {
  margin-bottom: 60px;
  letter-spacing: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#est-outline .ms4:after {
  content: "";
  height: 1px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background-color: #CCC;
  margin-left: 3rem;
}
#est-outline .ms4:first-letter {
  color: #90bc04;
}
#est-outline .ms4 span.en {
  font-size: 1.8rem;
  margin-left: 10px;
  letter-spacing: 0;
}
#est-outline .ms4 span.grn {
  color: #90bc04;
}
#est-outline .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

#est-outline .est-outlinetab {
  width: 46%;
}
#est-outline .est-outlinetab th {
  letter-spacing: 1px;
  width: 25%;
  text-align: left;
  vertical-align: top;
  font-weight: 500;
  padding-bottom: 20px;
}
#est-outline .est-outlinetab td {
  width: 75%;
  padding-bottom: 20px;
}

/*備考*/
#est-outline .biko-wp {
  border-bottom: 1px solid #CCC;
  border-top: 1px solid #CCC;
  padding: 2% 0;
  margin-top: 2%;
}
#est-outline .biko-wp .mds {
  font-weight: 500;
  border: 1px solid #CCC;
  width: 100px;
  text-align: center;
}
#est-outline .biko-wp .bikomain {
  margin-left: 150px;
  margin-top: -1.8em;
}

#p-est #ent-nav {
  padding-top: 70px;
}

/************************************************************************************

　スマホ設定

*************************************************************************************/
@media screen and (max-width: 670px) {
  /*　タブ
  ----------------------------------------------------*/
}
/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　不動産  一覧

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#p-works #ban-voice {
  width: 60%;
  margin: 0 auto;
}

/*　不動産リスト
----------------------------------------------------*/
#p-works .works-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#p-works .works-list li {
  width: 31%;
  margin-bottom: 10%;
}
#p-works .works-list a {
  color: #666;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#p-works .works-list .ofi {
  height: 250px;
  margin-bottom: 4%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#p-works .works-list .owner {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  margin-bottom: 1px;
}
#p-works .works-list .name {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 130%;
  margin-bottom: 10px;
}
#p-works .works-list .cat {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 15px;
  line-height: 27px;
}
#p-works .works-list .cat span {
  display: inline-block;
  border: 1px solid #CCC;
  padding: 0px 15px;
  border-radius: 15px;
  margin-bottom: 15px;
  line-height: 27px;
  margin-right: 5px;
}
#p-works .works-list a:hover {
  color: #90bc04;
}
#p-works .works-list a:hover .cat span {
  border: 1px solid #90bc04;
}
#p-works .works-list a:hover .ofi {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　不動産  記事詳細

–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*　タイトル上 オーナー
----------------------------------------------------*/
#p-works.detail .owner {
  font-size: 1.5rem;
  margin-bottom: 15px;
}
#p-works.detail .owner span {
  font-size: 1.8rem;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  margin-right: 10px;
}

/*　タイトル ボックス
----------------------------------------------------*/
#p-works.detail .titwp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 1px;
  margin-bottom: 35px;
}
#p-works.detail .titwp .tit {
  width: 70%;
}
#p-works.detail .titwp .ctg {
  width: 18%;
  width: auto;
  max-width: 30%;
  margin-top: -7px;
  font-size: 1.4rem;
  line-height: 150%;
}
#p-works.detail .titwp .ctg .en {
  font-size: 1.5rem;
  color: #90bc04;
  margin-right: 20px;
}
#p-works.detail .titwp .ctg li {
  border-bottom: 1px solid #CCC;
  padding: 10px 0;
  text-indent: -3.5em;
  padding-left: 3.5em;
}
#p-works.detail .titwp .ms1 {
  margin-bottom: 0;
}

/*　メインボックス
----------------------------------------------------*/
#p-works.detail #work-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 100px;
}
#p-works.detail #work-main .lbox {
  width: 27%;
}
#p-works.detail #work-main .rbox {
  width: 60%;
}
#p-works.detail #work-main .en-mds {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  margin-bottom: 85px;
  color: #333;
  position: relative;
}
#p-works.detail #work-main .en-mds:after {
  content: "";
  width: 20px;
  height: 3px;
  display: inline-block;
  background-color: #333;
  position: absolute;
  bottom: -10px;
  left: 0;
}
#p-works.detail #work-main .rbox .lead {
  font-size: 2.4rem;
  margin-bottom: 30px;
  font-weight: 500;
  line-height: 150%;
}
#p-works.detail #work-main .honbun {
  line-height: 220%;
}

/*　オーナーボイス
----------------------------------------------------*/
#p-works.detail #ownervoice {
  padding-top: 100px;
  line-height: 220%;
}

#p-works.detail #ov-tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}
#p-works.detail #ov-tit .jp {
  border-left: 1px solid #CCC;
  padding: 0 15px;
}
#p-works.detail #ov-tit .en {
  font-size: 1.4rem;
  border-left: 1px solid #CCC;
  padding-left: 15px;
}

#p-works.detail #ov-tit:after {
  content: "";
  height: 1px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background-color: #CCC;
  margin-left: 3rem;
}

/*　基本情報テーブル
----------------------------------------------------*/
#p-works.detail .work-tab {
  font-size: 1.4rem;
  border-top: 1px solid #CCC;
  width: 100%;
}
#p-works.detail .work-tab tr {
  border-bottom: 1px solid #CCC;
}
#p-works.detail .work-tab th {
  width: 35%;
  text-align: left;
  vertical-align: top;
  padding: 10px 0;
  font-weight: 500;
  color: #333;
  padding-left: 15px;
}
#p-works.detail .work-tab td {
  width: 65%;
  padding: 10px 0;
  padding-right: 15px;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　工場・倉庫 / 店舗

–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*　ページタイトル
----------------------------------------------------*/
/*#p-factory .pg-tit-wp #pg-tit .en{margin-right: -550px;}*/
/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　工場・倉庫 / 店舗 ：イントロ

–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*　ヴィジュアル
----------------------------------------------------*/
#p-factory #sec0 .cutph {
  height: 700px;
  width: 48%;
}
#p-factory #sec0 .inner {
  width: 42%;
  min-height: 700px;
  padding-top: 50px;
}
#p-factory #sec0 .mds {
  font-size: 6rem;
  font-weight: 500;
  color: #90bc04;
  letter-spacing: 6px;
  line-height: 140%;
  margin-bottom: 5px;
}
#p-factory #sec0 .en {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 50px;
}
#p-factory #sec0 .ms1 {
  line-height: 150%;
  letter-spacing: 2px;
  margin-bottom: 5px;
}
#p-factory #sec0 .honbun {
  font-size: 1.8rem;
  line-height: 200%;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

/*　アンカーリンク リスト
----------------------------------------------------*/
#p-factory #sec0 .anc-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#p-factory #sec0 .anc-link li {
  margin-left: 0em;
  margin-right: 2em;
  margin-bottom: 1em;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　工場・倉庫 / 店舗 ： SEC1 ：ゲリラ豪雨台風対策

–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*　上部説明
----------------------------------------------------*/
#p-factory #sec1 .colum1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 70px;
}
#p-factory #sec1 .colum1 .lbox {
  width: 46%;
}
#p-factory #sec1 .colum1 .rlbox {
  width: 46%;
}
#p-factory #sec1 .colum1 .ms3 {
  margin-bottom: 30px;
}
#p-factory #sec1 .colum1 .greenbox {
  border: 1px solid #90bc04;
  padding: 5%;
  position: relative;
}
#p-factory #sec1 .colum1 .greenbox .lead {
  font-size: 1.8rem;
  color: #90bc04;
  margin-bottom: 20px;
  font-weight: 500;
}
#p-factory #sec1 .colum1 .greenbox .tex {
  font-size: 1.4rem;
  line-height: 170%;
}
#p-factory #sec1 .colum1 .batch {
  font-size: 1.6rem;
  width: 115px;
  height: 115px;
  border-radius: 50%;
  background: #333;
  color: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  line-height: 140%;
  font-weight: 500;
  position: absolute;
  right: 25px;
  top: -25px;
}

/*　下部 写真部分
----------------------------------------------------*/
#p-factory #sec1 .colum2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#p-factory #sec1 .colum2 .lbox {
  width: 45%;
}
#p-factory #sec1 .colum2 .rlbox {
  width: 45%;
}
#p-factory #sec1 .colum2 .ms4 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
#p-factory #sec1 .colum2 .tex {
  font-size: 1.4rem;
}
#p-factory #sec1 .colum2 .lbox .tilelist li {
  width: 31%;
  margin-bottom: 5%;
}
#p-factory #sec1 .colum2 .lbox .ofi {
  height: 130px;
}
#p-factory #sec1 .colum2 .rbox .tilelist li {
  width: 48.5%;
}
#p-factory #sec1 .colum2 .rbox .ofi {
  height: 300px;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　工場・倉庫 / 店舗 ： SEC2 ：外壁塗装施工事例

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#p-factory #sec2 #ex-dl {
  border-top: 1px solid #CCC;
}
#p-factory #sec2 #ex-dl .grp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #CCC;
  padding: 6% 0;
}
#p-factory #sec2 #ex-dl dt {
  width: 31%;
}
#p-factory #sec2 #ex-dl dd {
  width: 64%;
}
#p-factory #sec2 #ex-dl dd img {
  width: 100%;
  height: auto;
}
#p-factory #sec2 #ex-dl .tex {
  font-size: 2rem;
  letter-spacing: 1px;
  line-height: 180%;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　工場・倉庫 / 店舗 ： SEC3 以下共通  タイルリスト

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#p-factory .tilelist.fac li {
  width: 31.5%;
}
#p-factory .tilelist.fac .ofi {
  height: 250px;
  margin-bottom: 15px;
}
#p-factory .tilelist.fac .name {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 5px;
}
/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　工場・倉庫 / 店舗 ： SEC3 ：工場内間仕切りブース

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#p-factory #sec3 .ms3 {
  margin-bottom: 0;
}
#p-factory #sec3 .lead {
  width: 46%;
  margin-left: 400px;
  margin-top: -4em;
  letter-spacing: 1px;
  line-height: 180%;
  margin-bottom: 50px;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　工場・倉庫 / 店舗 ： SEC6 ：休憩室・喫煙室

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#p-factory #sec6 {
  margin-bottom: 0;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　工場・倉庫 / 店舗 ： SEC7 店舗

–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*　ヴィジュアル
----------------------------------------------------*/
#p-factory #sec7 {
  margin-bottom: 140px;
}
#p-factory #sec7 .cutph {
  height: 700px;
  width: 48%;
}
#p-factory #sec7 .inner {
  width: 42%;
  min-height: 700px;
  padding-top: 90px;
}
#p-factory #sec7 .mds {
  font-size: 6rem;
  font-weight: 500;
  color: #90bc04;
  letter-spacing: 6px;
  line-height: 140%;
  margin-bottom: 5px;
}
#p-factory #sec7 .en {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 50px;
}
#p-factory #sec7 .ms1 {
  line-height: 150%;
  letter-spacing: 2px;
  margin-bottom: 5px;
}
#p-factory #sec7 .honbun {
  font-size: 1.8rem;
  line-height: 200%;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　工場・倉庫 / 店舗 ： SEC8 店舗

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#p-factory #sec8 {
  margin-bottom: 230px;
}
#p-factory #sec8 .cons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#p-factory #sec8 .lbox {
  width: 29%;
}
#p-factory #sec8 .rbox {
  width: 60%;
}
#p-factory #sec8 .ms1 {
  line-height: 150%;
  letter-spacing: 3px;
}

#p-factory #sec8 .joken {
  border-top: 1px solid #CCC;
}
#p-factory #sec8 .joken .grp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #CCC;
  padding: 4% 0;
}
#p-factory #sec8 .joken dt {
  width: 48%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#p-factory #sec8 .joken dd {
  width: 48%;
}
#p-factory #sec8 .joken .num {
  border: 1px solid #9dc814;
  text-align: center;
  font-size: 1.8rem;
  width: 30%;
  line-height: 37px;
  letter-spacing: 3px;
}
#p-factory #sec8 .joken .ms4 {
  margin-bottom: 0;
  width: 64%;
}

/************************************************************************************

　スマホ設定

*************************************************************************************/
@media screen and (max-width: 670px) {
  /*　タブ
  ----------------------------------------------------*/
}
/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　不動産 インデックス

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#p-sitelog .lead {
  margin-bottom: 60px;
  font-size: 2rem;
  letter-spacing: 2px;
  font-weight: 500;
}

/*　不動産リスト
----------------------------------------------------*/
#p-sitelog .works-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#p-sitelog .works-list li {
  width: 31%;
  margin-bottom: 10%;
}
#p-sitelog .works-list a {
  color: #666;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#p-sitelog .works-list .ofi {
  height: 250px;
  margin-bottom: 4%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#p-sitelog .works-list .name {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 130%;
  margin-bottom: 17px;
}
#p-sitelog .works-list .cat {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 10px;
  line-height: 27px;
}
#p-sitelog .works-list .cat span {
  display: inline-block;
  border: 1px solid #CCC;
  padding: 0px 15px;
  border-radius: 15px;
  margin-bottom: 15px;
  line-height: 27px;
  margin-right: 5px;
}
#p-sitelog .works-list a:hover {
  color: #90bc04;
}
#p-sitelog .works-list a:hover .cat span {
  border: 1px solid #90bc04;
}
#p-sitelog .works-list a:hover .ofi {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}

#p-sitelog .works-list .latest {
  /*    border: 1px solid #EEE;*/
  background-image: -webkit-gradient(linear, left top, left bottom, from(#EEE), to(#EEE));
  background-image: linear-gradient(#EEE, #EEE);
  background-repeat: no-repeat;
  background-position: 4px 0px; /* 下線の初期位置 */
  background-size: 1px 100%; /* 下線のサイズ（横幅、高さ） */
}
#p-sitelog .works-list .latest .grp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 1.4rem;
  margin-bottom: 10px;
  line-height: 140%;
  padding-left: 25px;
}
#p-sitelog .works-list .latest .grp:nth-child(1) {
  color: #90bc04;
}
#p-sitelog .works-list .latest .grp:nth-child(1) dt:before {
  background-color: #90bc04;
}
#p-sitelog .works-list .latest .grp {
  display: none;
}
#p-sitelog .works-list .latest .grp:nth-child(1) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#p-sitelog .works-list .latest .grp:nth-child(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#p-sitelog .works-list .latest .grp:nth-child(3) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#p-sitelog .works-list .latest dt {
  width: 34%;
  position: relative;
}
#p-sitelog .works-list .latest dd {
  width: 62%;
}
#p-sitelog .works-list .latest dt:before {
  content: "";
  width: 10px;
  height: 10px;
  display: inline-block;
  background-color: #CCC;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: -25px;
  margin-top: -5px;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　不動産 記事ページ

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#p-sitelog.detail #sec1 {
  margin-bottom: 0;
}
#p-sitelog.detail .bt-boxline {
  width: 400px;
  display: block;
  margin: 0 auto;
  margin-top: 65px;
}

#p-sitelog.detail .project-tit {
  margin-bottom: 30px;
  position: relative;
}
#p-sitelog.detail .project-tit .ms0 {
  line-height: 130%;
  width: 65%;
}

#p-sitelog.detail .project-tit .cat {
  width: 50%;
  position: absolute;
  right: 0;
  top: 0;
  text-align: right;
  font-size: 1.4rem;
}
#p-sitelog.detail .project-tit .cat li {
  border: 1px solid #CCC;
  display: inline-block;
  padding: 0.5% 2%;
  margin-left: 10px;
}
#p-sitelog.detail .project-tit .cat .en {
  margin-right: 0.5em;
  color: #90bc04;
  font-size: 1.5rem;
  font-weight: 500;
}

#p-sitelog.detail #log-list-wp {
  border-top: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
  padding: 7% 7% 7% 16%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#CCC), to(#CCC));
  background-image: linear-gradient(#CCC, #CCC);
  background-repeat: no-repeat;
  background-position: 7% 0px; /* 下線の初期位置 */
  background-size: 1px 100%; /* 下線のサイズ（横幅、高さ） */
}

#p-sitelog.detail #log-list li {
  border: 1px solid #CCC;
  padding: 5%;
  margin-bottom: 7%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
#p-sitelog.detail #log-list li:last-child {
  margin-bottom: 0;
}
#p-sitelog.detail #log-list .lbox {
  width: 44%;
}
#p-sitelog.detail #log-list .rbox {
  width: 50%;
}
#p-sitelog.detail #log-list .ofi {
  height: 230px;
}
#p-sitelog.detail #log-list .num {
  font-size: 2.4rem;
  color: #90bc04;
  font-weight: 500;
  border-bottom: 1px solid #CCC;
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-family: "Jost", sans-serif;
}
#p-sitelog.detail #log-list .date {
  font-size: 1.8rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
}
#p-sitelog.detail #log-list .name {
  font-size: 3rem;
  letter-spacing: 2px;
  font-weight: 500;
}
#p-sitelog.detail #log-list li:before {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  background-color: #333;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: -12.9%;
  margin-top: -10px;
  z-index: 1;
}
#p-sitelog.detail #log-list li:after {
  content: "";
  width: 12.1%;
  height: 1px;
  display: inline-block;
  background-color: #CCC;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: -12%;
  margin-top: -1px;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　お知らせ   インデックス

–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*　お知らせ リスト
----------------------------------------------------*/
#p-info #info-list li {
  margin-bottom: 7%;
}
#p-info #info-list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #666;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#p-info #info-list .lbox {
  width: 40%;
}
#p-info #info-list .rbox {
  width: 53.5%;
  border-bottom: 1px solid #CCC;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#p-info #info-list .ofi {
  height: 280px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#p-info #info-list .cat {
  margin-bottom: 30px;
}
#p-info #info-list .cat span {
  font-size: 1.3rem;
  display: inline-block;
  background: #333;
  padding: 10px 30px 12px 40px;
  color: #FFF;
  position: relative;
  border-radius: 50px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#p-info #info-list .cat span:before {
  content: "";
  width: 10px;
  height: 10px;
  display: inline-block;
  background-color: #FFF;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 20px;
  margin-top: -5px;
}
#p-info #info-list .ms3 {
  margin-bottom: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#p-info #info-list .date {
  margin-top: auto;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  letter-spacing: 2px;
  padding-bottom: 15px;
}
#p-info #info-list .date span {
  color: #90bc04;
  font-weight: 500;
  margin-right: 15px;
}

#p-info #info-list li a:hover {
  color: #90bc04;
}
#p-info #info-list li a:hover .ms3 {
  color: #90bc04;
}
#p-info #info-list li a:hover .cat span {
  background: #90bc04;
}
#p-info #info-list li a:hover .ofi {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　お知らせ   記事ページ

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#p-info.detail .mainphoto {
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: 10%;
}

#p-info.detail .tit {
  border-bottom: 1px solid #CCC;
  margin-bottom: 120px;
  margin-bottom: 10%;
  padding-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#p-info.detail .tit .cat {
  width: 24%;
}
#p-info.detail .tit .cat span {
  font-size: 1.3rem;
  display: inline-block;
  background: #333;
  padding: 10px 30px 12px 40px;
  color: #FFF;
  position: relative;
  border-radius: 50px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#p-info.detail .tit .cat span:before {
  content: "";
  width: 10px;
  height: 10px;
  display: inline-block;
  background-color: #FFF;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 20px;
  margin-top: -5px;
}
#p-info.detail .tit .inner {
  width: 73%;
}
#p-info.detail .tit .ms1 {
  margin-bottom: 20px;
  line-height: 130%;
}
#p-info.detail .tit .date {
  margin-top: auto;
  font-size: 1.8rem;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  letter-spacing: 2px;
  padding-bottom: 15px;
}
#p-info.detail .tit .date span {
  color: #90bc04;
  font-weight: 500;
  margin-right: 15px;
}

/*　WP 本文欄
----------------------------------------------------*/
.ent-mainbox {
  max-width: 900px;
  margin: 0 auto;
  line-height: 220%;
  /* border: 1px solid #CCC;*/
}
.ent-mainbox h2 {
  font-size: 2.6rem;
  font-weight: 500;
  margin-bottom: 40px;
  color: #333;
}
.ent-mainbox h2:after {
  content: "";
  width: 50px;
  height: 2px;
  display: block;
  background-color: #333;
  margin-top: 15px;
}
.ent-mainbox h3 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 5px;
  color: #333;
}
.ent-mainbox img {
  width: auto !important;
  max-width: 100% !important;
  padding-right: 5px !important;
}
.ent-mainbox .gallery {
  pointer-events: none;
}
.ent-mainbox .gallery-icon {
  padding-right: 5px !important;
}
.ent-mainbox .gallery img {
  width: 100%;
  height: auto;
  border: none !important;
  padding-right: 0 !important;
}
.ent-mainbox video {
  width: 100% !important;
  height: auto !important;
}
.ent-mainbox .wp-video {
  width: 100% !important;
  height: auto !important;
}

#ent-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 150px;
  margin-bottom: 100px;
}
#ent-nav li {
  font-size: 1.8rem;
  margin-left: 3em;
  letter-spacing: 2px;
}
#ent-nav i {
  font-size: 1.7em;
  vertical-align: -5px;
  color: #90bc04;
}
#ent-nav a {
  color: #666;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#ent-nav a:hover {
  color: #90bc04;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　お知らせ  最近の記事リスト

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#p-info.detail #latest-wp {
  border-top: 1px solid #CCC;
  padding-top: 40px;
}

#p-info.detail #latest-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#p-info.detail #latest-list li {
  width: 23%;
  line-height: 140%;
}
#p-info.detail #latest-list a {
  color: #666;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#p-info.detail #latest-list .ofi {
  height: 170px;
  margin-bottom: 12px;
}
#p-info.detail #latest-list .cat {
  font-size: 1.2rem;
  margin-bottom: 3px;
  color: #6ab806;
  position: relative;
  padding-left: 10px;
}
#p-info.detail #latest-list .cat:before {
  content: "";
  width: 6px;
  height: 6px;
  display: inline-block;
  background-color: #6ab806;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  margin-top: -2px;
  left: 0;
}
#p-info.detail #latest-list .title {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 5px;
  color: #333;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#p-info.detail #latest-list .title br {
  display: none;
}
#p-info.detail #latest-list .date {
  font-size: 1.2rem;
  letter-spacing: 1px;
}
#p-info.detail #latest-list .date span {
  margin-right: 0.5em;
}

#p-info.detail #latest-list a:hover {
  color: #6ab806;
}
#p-info.detail #latest-list a:hover .title {
  color: #6ab806;
}

/************************************************************************************

　スマホ設定

*************************************************************************************/
@media screen and (max-width: 670px) {
  /*　タブ
  ----------------------------------------------------*/
}
/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　トップ

–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*　タブ
----------------------------------------------------*/
#p-top #wrap {
  padding-top: 100px;
}

/*　セクションタイトル
----------------------------------------------------*/
#p-top .sec-tit {
  margin-bottom: 100px;
}
#p-top .sec-tit .ms0 {
  font-size: 4.8rem;
  letter-spacing: 10px;
}
#p-top .sec-tit .line {
  width: 185px;
  margin: 0 1.5em;
}
#p-top .sec-tit .en {
  ont-size: 2.6rem;
}

#p-top .sec-tit:after {
  content: "";
  width: 40px;
  height: 3px;
  background-color: #333;
  margin-top: 25px;
  position: absolute;
  left: 0;
  top: 35px;
}

/*　セクションタイトル Bタイプ
----------------------------------------------------*/
#p-top .sec-tit.b {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  margin-bottom: 130px;
}
#p-top .sec-tit.b .ms0 {
  line-height: 130%;
  width: 100%;
}
#p-top .sec-tit.b .line {
  display: none;
}
#p-top .sec-tit.b .en {
  width: 100%;
  margin-bottom: 5px;
}

#p-top .sec-tit.b:after {
  position: absolute;
  left: 0;
  top: auto;
  bottom: -30px;
}

/*　メインビジュアル
----------------------------------------------------*/
#p-top #topvis {
  width: 93%;
  margin: 0 auto;
  height: 78vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin-bottom: 245px;
}
#p-top #topvis #logo-yd {
  width: 740px;
  position: absolute;
  bottom: -42px;
  right: 50px;
  z-index: 10;
}
#p-top #topvis .photo {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #f7f7f7;
}
#p-top #topvis .tex {
  font-size: 3rem;
  color: #FFF;
  font-weight: 400;
  letter-spacing: 6px;
  line-height: 220%;
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　共通パーツ

–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　SEC1 イントロ

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#p-top #sec1 .cons {
  max-width: 900px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 290px;
}
#p-top #sec1 .lbox {
  width: 61.5%;
}
#p-top #sec1 .rbox {
  width: 25%;
  position: relative;
  padding-top: 70px;
}
#p-top #sec1 .ms3 {
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  color: #333;
  letter-spacing: 3px;
  line-height: 220%;
  margin: 0 0 0 auto;
  margin-bottom: 155px;
  width: 100%;
}
#p-top #sec1 .en {
  font-weight: normal;
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  color: #999999;
  font-size: 2.2rem;
  letter-spacing: 2px;
  position: absolute;
  left: 15px;
  top: 105px;
  line-height: 100%;
}
#p-top #sec1 .en span {
  position: relative;
}
#p-top #sec1 .en span:before {
  content: "";
  width: 220px;
  height: 1px;
  display: inline-block;
  background-color: #CCC;
  position: absolute;
  top: -10px;
  left: 50%;
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
#p-top #sec1 .cutph {
  aspect-ratio: 1;
}
#p-top #sec1 .bt-dtl {
  margin: 0 0 0 auto;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　SEC2 施工事例

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#p-top #sec2 .cons {
  position: relative;
}
#p-top #sec2 .bt-gray {
  position: absolute;
  right: 0;
  top: 10px;
}

#p-top #sec2 .topwork li {
  width: 48%;
  width: 100%;
}
#p-top #sec2 .topwork a {
  color: #666;
}
#p-top #sec2 .topwork a:hover {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #90bc04;
}
#p-top #sec2 .topwork a:hover .ofi {
  -webkit-filter: brightness(130%);
          filter: brightness(130%);
}
#p-top #sec2 .topwork .cat-wp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 5px;
  font-size: 1.8rem;
}
#p-top #sec2 .topwork .cat {
  color: #333;
  padding-left: 44px;
  position: relative;
}
#p-top #sec2 .topwork .cat:before {
  content: "";
  width: 55px;
  height: 1px;
  display: inline-block;
  background-color: #000;
  position: absolute;
  bottom: -30px;
  left: 22px;
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  z-index: 1;
}
#p-top #sec2 .topwork .date {
  color: #999;
  letter-spacing: 2px;
}
#p-top #sec2 .topwork .ofi {
  aspect-ratio: 1.5;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#p-top #sec2 .topwork .inner {
  background: #FFF;
  font-size: 1.3rem;
  width: 80%;
  padding: 5%;
  padding-left: 0;
  margin-top: -7%;
  position: relative;
  z-index: 1;
}
#p-top #sec2 .topwork .name {
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 500;
}
#p-top #sec2 .topwork .owner, #p-top #sec2 .topwork .type {
  padding-left: 20px;
  position: relative;
  letter-spacing: 2px;
}
#p-top #sec2 .topwork .owner:before, #p-top #sec2 .topwork .type:before {
  content: "";
  width: 10px;
  height: 1px;
  display: inline-block;
  background-color: #CCC;
  position: absolute;
  top: 50%;
  left: 0px;
}
/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　SEC3 体験する

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#p-top #sec3 .cons {
  padding-bottom: 6%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f7f7f7), to(#f7f7f7));
  background-image: linear-gradient(#f7f7f7, #f7f7f7);
  background-repeat: no-repeat;
  background-position: 6vw 7vw;
  background-size: 100% 100%;
}
#p-top #sec3 .lbox {
  width: 52.5%;
}
#p-top #sec3 .rbox {
  width: 40%;
  padding-right: 7%;
  padding-top: 11%;
}
#p-top #sec3 .cutph {
  aspect-ratio: 1.4;
}
#p-top #sec3 #p2 {
  width: 35%;
  position: relative;
  z-index: 1;
  margin-bottom: -12%;
  margin-left: 15%;
}
#p-top #sec3 .bt-boxlineflx {
  margin-bottom: 15px;
}
#p-top #sec3 .bt-boxlineflx a {
  border: 2px solid #6ab806;
}

#p-top #mid-vis {
  margin-right: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 300px;
  margin-bottom: 0px;
}
#p-top #mid-vis .gsp-para-wp {
  height: 530px;
}
#p-top #mid-vis #midvis1 {
  width: 69.9%;
}
#p-top #mid-vis #midvis2 {
  width: 30%;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　SEC4 お知らせ

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#p-top #sec4 {
  margin-bottom: 150px;
}
#p-top #sec4 .cons {
  position: relative;
  padding-left: 25%;
}
#p-top #sec4 .sec-tit {
  position: absolute;
  left: 0;
  top: 0;
}
#p-top #sec4 .bt-gray {
  position: absolute;
  left: 0;
  top: 200px;
}

#p-top #sec4 #info-dl .grp a {
  border-bottom: 1px solid #e9e8e8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 5% 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#p-top #sec4 #info-dl .grp:first-child a {
  padding-top: 0;
}
#p-top #sec4 #info-dl .grp a:hover .ms4 {
  color: #90bc04;
}
#p-top #sec4 #info-dl .grp a:hover dt {
  color: #90bc04;
}
#p-top #sec4 #info-dl dt {
  font-family: "Jost", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 2px;
  color: #999;
  width: 20%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#p-top #sec4 #info-dl dd {
  width: 78%;
}
#p-top #sec4 #info-dl .cat {
  font-size: 1.3rem;
  padding-left: 22px;
  color: #90bc04;
  margin-bottom: 3px;
  position: relative;
  letter-spacing: 2px;
}
#p-top #sec4 #info-dl .cat:before {
  content: "";
  width: 15px;
  height: 2px;
  display: inline-block;
  background-color: #90bc04;
  position: absolute;
  top: 50%;
  left: 0;
}
#p-top #sec4 #info-dl .ms4 {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 140%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　SEC5 吉成建築にできること サービス

–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*　サービス コラム
----------------------------------------------------*/
#p-top .sv-colum {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 8%;
  margin-bottom: 150px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f7f7f7), to(#f7f7f7));
  background-image: linear-gradient(#f7f7f7, #f7f7f7);
  background-repeat: no-repeat;
  background-position: 6vw 12vw;
  background-size: 100% 100%;
}
#p-top .sv-colum .lbox {
  width: 65%;
  padding-top: 5%;
}
#p-top .sv-colum .rbox {
  width: 29%;
  padding-right: 5%;
  /*        border: 1px solid #CCC;*/
}
#p-top .sv-colum .cutph {
  aspect-ratio: 1.3;
}
#p-top .sv-colum .lead {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #666;
}
#p-top .sv-colum .logo {
  margin-bottom: 5px;
  width: 100%;
}
#p-top .sv-colum .logo img {
  width: 100%;
  height: auto;
}
#p-top .sv-colum .tex {
  font-size: 1.5rem;
  line-height: 180%;
}
#p-top .sv-colum .tex span {
  white-space: nowrap;
}

/*　サービス コラム  トリップ（反転）
----------------------------------------------------*/
#p-top #trip.sv-colum {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  background-position: 0vw 12vw;
  background-size: 92% 100%;
}
#p-top #trip.sv-colum .rbox {
  width: 29%;
  padding-left: 5%;
  padding-right: 0;
}
#p-top #trip.sv-colum #logo-trip {
  width: 105px;
}

/*　サービス タイトル1（住宅）
----------------------------------------------------*/
#p-top .sv-tit {
  position: relative;
  margin-bottom: 50px;
}
#p-top .sv-tit dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#p-top .sv-tit .num {
  text-align: center;
  font-size: 8rem;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  color: #9dc814;
  vertical-align: text-top;
  line-height: 100%;
  margin-left: -0.9em;
  margin-bottom: 20px;
}
#p-top .sv-tit .num span {
  font-size: 0.5em;
  vertical-align: text-top;
}
#p-top .sv-tit .ms0 {
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  letter-spacing: 10px;
  color: #333;
}
#p-top .sv-tit .ms0 span {
  border-left: 1px solid #666;
  padding-left: 5px;
}
#p-top .sv-tit .en {
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  font-family: "Jost", sans-serif;
  color: #999;
  font-weight: 500;
  letter-spacing: 3px;
  margin-left: 7px;
}

/*　リノベーション 不動産情報
----------------------------------------------------*/
#p-top #sec5 .sv-colum2 {
  margin-bottom: 150px;
}

#p-top #sec5 #reno-est {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#p-top #sec5 #reno-est li {
  width: 46%;
  /* border: 1px solid #CCC;*/
}
#p-top #sec5 #reno-est .abv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 60px;
}
#p-top #sec5 #reno-est .abv .lbox {
  width: 22%;
}
#p-top #sec5 #reno-est .abv .rbox {
  width: 72%;
  background: #FFF;
  padding-top: 13%;
}
#p-top #sec5 #reno-est .abv dl {
  padding-left: 30px;
}
#p-top #sec5 #reno-est .ms0 {
  font-size: 2.8rem;
  letter-spacing: 1px;
}
#p-top #sec5 #reno-est .ms0 span {
  border-left: none;
  padding-left: 0px;
  position: relative;
}
#p-top #sec5 #reno-est .ms0 span:after {
  content: "";
  width: 1px;
  height: 8vw;
  display: inline-block;
  background-color: #CCC;
  position: absolute;
  bottom: -9vw;
  left: 20px;
}
#p-top #sec5 #reno-est .num {
  margin-left: -0.2em;
}
#p-top #sec5 #reno-est .cutph {
  aspect-ratio: 0.75;
}
#p-top #sec5 #reno-est .bot {
  position: relative;
}
#p-top #sec5 #reno-est .tex {
  font-size: 1.5rem;
  color: #666;
}
#p-top #sec5 #reno-est .bt-dtl {
  margin: 0 0 0 auto;
  position: absolute;
  right: 0;
  top: 0;
}

/*　工場 倉庫 店舗
----------------------------------------------------*/
#p-top #sec5 .sv-colum3 {
  margin-bottom: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
#p-top #sec5 .sv-colum3 .lbox {
  width: 34%;
}
#p-top #sec5 .sv-colum3 .rbox {
  width: 58%;
}
#p-top #sec5 .sv-colum3 .photo-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#p-top #sec5 .sv-colum3 .photo-list li {
  width: 49.5%;
}
#p-top #sec5 .sv-colum3 .cutph {
  aspect-ratio: 0.8;
}

/*工場 倉庫 店舗 タイトル*/
#p-top #sec5 .sv-colum3 .sv-tit {
  position: relative;
  margin-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#p-top #sec5 .sv-colum3 .sv-tit dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
#p-top #sec5 .sv-colum3 .sv-tit dt {
  width: 100%;
}
#p-top #sec5 .sv-colum3 .sv-tit dd {
  width: 100%;
}
#p-top #sec5 .sv-colum3 .sv-tit .num {
  text-align: center;
  font-size: 8rem;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  color: #9dc814;
  vertical-align: text-top;
  line-height: 100%;
  margin: 0 30px 0 0;
  display: inline-block;
}
#p-top #sec5 .sv-colum3 .sv-tit .num span {
  font-size: 0.5em;
  vertical-align: text-top;
}
#p-top #sec5 .sv-colum3 .sv-tit .ms0 {
  -webkit-writing-mode: horizontal-tb;
  -ms-writing-mode: lr-tb;
  writing-mode: horizontal-tb;
  letter-spacing: 0px;
  font-size: 2.8rem;
}
#p-top #sec5 .sv-colum3 .sv-tit .ms0 span {
  border-left: none;
  padding-left: 5px;
}
#p-top #sec5 .sv-colum3 .sv-tit .en {
  -webkit-writing-mode: horizontal-tb;
  -ms-writing-mode: lr-tb;
  writing-mode: horizontal-tb;
  font-family: "Jost", sans-serif;
  letter-spacing: 1px;
  margin-left: 7px;
  margin-bottom: 10px;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　SEC6 デザイン 性能 品質    カット

–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*#p-top #sec6{
    margin-bottom: 280px;

    .cons{
        display:flex;
        flex-wrap:wrap;
        justify-content:space-between;
        align-items:center;
        border-top: 1px solid #CCC;
        padding-top: 5%;
    }

    .sec-tit{ margin-bottom: 60px;}

    .ms0{ letter-spacing: 0;  }
    .lead{ }


    .lbox{ 
        width: 40%;}

    .rbox{ 
        width: 50%;}


}


#p-top #sec6 .dtl-list{
    display:flex;
flex-wrap:wrap;
justify-content:space-between;
align-items:center;


    li{ 
        width: 48.5%;
        border: 2px solid imp.$clr-green2;
        margin-bottom: 3%;
    }

     li a{
         padding:  20px;
         text-align: left;
         position: relative;
         z-index: 1;
    }

    li a:hover{ color: #FFF !important;}

    i{ font-size: 1.9em; margin-right: 10px; vertical-align: -5px;}

    .btn1::before {z-index: -1;}

}
*/
/* ––––––––––––––––––––––––––––––––––––––––––––––––––

　　SEC7 私達について

–––––––––––––––––––––––––––––––––––––––––––––––––– */
#p-top #sec7 {
  margin-bottom: 150px;
  padding: 14%;
  padding: 12% 0;
  background: #f7f7f7;
}
#p-top #sec7 .cons {
  position: relative;
}
#p-top #sec7 .ms0 {
  letter-spacing: 0;
}
#p-top #sec7 .ms3 {
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 4px;
  line-height: 190%;
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  font-family: "Noto Sans JP", sans-serif;
  position: absolute;
  right: 5.5%;
  top: -5%;
}

#p-top #sec7 .colum {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#p-top #sec7 .colum .lbox {
  width: 61%;
}
#p-top #sec7 .colum .rbox {
  width: 32%;
  padding-top: 10%;
}
#p-top #sec7 .colum #p-about {
  aspect-ratio: 1.5;
}
#p-top #sec7 .colum .sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #CCC;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
#p-top #sec7 .colum .sns .tex {
  font-size: 1.2rem;
  padding-right: 60px;
}
#p-top #sec7 .colum .icon {
  width: 25px;
  vertical-align: top;
  line-height: 100%;
}
#p-top #sec7 .colum #p-lcc img {
  width: 100%;
  height: auto;
}

#p-top #sec7 #abt-link {
  font-size: 1.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 50px;
}
#p-top #sec7 #abt-link a {
  color: #333;
  padding-left: 23px;
  position: relative;
  white-space: nowrap;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#p-top #sec7 #abt-link a:before {
  content: "";
  width: 12px;
  height: 1px;
  display: inline-block;
  background-color: #666;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#p-top #sec7 #abt-link a:hover {
  color: #90bc04;
}
#p-top #sec7 #abt-link a:hover:before {
  background-color: #90bc04;
}
#p-top #sec7 #abt-link li {
  width: 38%;
  margin-bottom: 15px;
}

/************************************************************************************

　スマホ設定

*************************************************************************************/
@media screen and (max-width: 670px) {
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　家づくり コンセプト

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  /*　SEC1
  ----------------------------------------------------*/
  #p-concept #sec1 #mds {
    margin-bottom: 30px;
  }
  #p-concept #sec1 .colum {
    margin-bottom: 155px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #p-concept #sec1 .colum .rbox {
    width: 100%;
  }
  #p-concept #sec1 #p1 {
    height: auto;
    aspect-ratio: 1.5;
    margin-top: 30px;
  }
  #p-concept #sec1 #p2 {
    height: auto;
    aspect-ratio: 1.5;
    margin-top: 30px;
  }
  #p-concept #sec1 .colum {
    font-size: 1.5rem;
    letter-spacing: 0px;
    line-height: 200%;
    margin-bottom: 30px;
  }
  #p-concept #sec1 .tex {
    margin-bottom: 20px;
  }
  #p-concept #sec1 #colum2 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  #p-concept #sec1 #colum2 .lbox {
    width: 100%;
  }
  /*　SEC2
  ----------------------------------------------------*/
  #p-concept #sec2 #logo-yb {
    width: 83%;
    margin: 0 auto;
    margin-bottom: -33px;
  }
  #p-concept #sec2 #logo-yb img {
    width: 100%;
    height: auto;
  }
  #p-concept #sec2 #mid-vis {
    margin-left: 7%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #p-concept #sec2 #mid-vis .gsp-para-wp {
    height: 530px;
    height: 150px;
  }
  #p-concept #sec2 #mid-vis #midvis1 {
    width: 69.9%;
  }
  #p-concept #sec2 #mid-vis #midvis2 {
    width: 30%;
  }
  /*　SEC3 大切にしていること
  ----------------------------------------------------*/
  #p-concept #sec3 .tit {
    text-align: center;
    margin-bottom: 100px;
    position: relative;
  }
  #p-concept #sec3 .tit .ms1 {
    text-align: left;
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    letter-spacing: 5px;
    line-height: 250%;
    margin: 0 auto;
  }
  #p-concept #sec3 .tit .en {
    font-size: clamp(60px, 15vw, 150px);
    line-height: 100%;
    opacity: 0.04;
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  #p-concept #sec3 #cmt-dl .grp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-bottom: 80px;
  }
  #p-concept #sec3 #cmt-dl .grp:last-child {
    margin-bottom: 0px;
  }
  #p-concept #sec3 #cmt-dl dt {
    width: 52%;
    width: 100%;
  }
  #p-concept #sec3 #cmt-dl dd {
    width: 37%;
    width: 100%;
  }
  #p-concept #sec3 #cmt-dl .gsp-para-wp {
    height: 420px;
    height: 200px;
  }
  #p-concept #sec3 #cmt-dl .en {
    color: #6ab806;
    margin-bottom: 5px;
  }
  #p-concept #sec3 #cmt-dl .en span {
    font-size: 1.5em;
  }
  #p-concept #sec3 #cmt-dl .tex {
    margin-bottom: 30px;
  }
  /*　SEC4 家づくりのすすめ方
  ----------------------------------------------------*/
  #p-concept #sec4 .lead {
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #9dc814;
    font-weight: 500;
  }
  #p-concept #sec4 .lead span {
    color: #333;
  }
  #p-concept #sec4 .lead:after {
    content: "";
    width: 25px;
    height: 2px;
    display: block;
    background-color: #333;
    margin-top: 15px;
  }
  #p-concept #sec4 #order-dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #p-concept #sec4 #order-dl .grp {
    width: 100%;
  }
  #p-concept #sec4 #order-dl .grp:nth-child(1) {
    margin-bottom: 100px;
  }
  #p-concept #sec4 #order-dl dt {
    margin-bottom: 10px;
  }
  #p-concept #sec4 #order-dl dd p br {
    display: none;
  }
  #p-concept #sec4 #order-dl .ofi {
    height: 200px;
    overflow: hidden;
  }
  #p-concept #sec4 #order-dl .tit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 20px;
  }
  #p-concept #sec4 #order-dl .ms1 {
    font-size: 2rem;
    letter-spacing: 2px;
  }
  #p-concept #sec4 #order-dl .ms4 {
    font-size: 1.8rem;
    margin-bottom: 3px;
  }
  #p-concept #sec4 #order-dl .line {
    height: 1px;
    background: #CCC;
    min-width: 10px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin: 0 1.3em;
  }
  #p-concept #sec4 #order-dl .en {
    font-size: 1.8rem;
    font-weight: 400;
  }
}
/************************************************************************************

　スマホ設定

*************************************************************************************/
@media screen and (max-width: 670px) {
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　家づくり ： デザイン

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　SEC1 導入

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  /*　
  ----------------------------------------------------*/
  #p-design #sec1 {
    margin-bottom: 50px;
  }
  #p-design #sec1 .cutph {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    position: relative;
    margin-top: 50px;
  }
  #p-design #sec1 .inner {
    width: 100%;
    min-height: auto;
    padding-top: 0px;
  }
  #p-design #sec1 .ms1 {
    margin-bottom: 30px;
  }
  #p-design #sec1 .honbun {
    font-size: 1.5rem;
    line-height: 180%;
    letter-spacing: 1px;
  }
  #p-design #sec1 .tex1, #p-design #sec1 .tex2 {
    margin-bottom: 30px;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　SEC2 リンク

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #p-design #sec2 #feel {
    border-top: 1px solid #CCC;
  }
  #p-design #sec2 #feel li {
    border-bottom: 1px solid #CCC;
    padding: 25px 0;
    display: block;
  }
  #p-design #sec2 #feel dl {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 15px;
  }
  #p-design #sec2 #feel dt {
    width: 100%;
  }
  #p-design #sec2 #feel dd {
    width: 100%;
  }
  #p-design #sec2 #feel .bt-boxlineflx {
    width: 100%;
  }
  #p-design #sec2 #feel .ms3 {
    margin-bottom: 0;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　SEC3 吉成建築のデザイン

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #p-design #sec3 .sec-tit {
    display: block;
    margin-bottom: 0px;
    position: relative;
    padding-top: 0px;
  }
  #p-design #sec3 .sec-tit .ms0 {
    color: #333;
    font-size: clamp(20px, 3.3vw, 33px);
    letter-spacing: 2px;
    line-height: 180%;
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    position: static;
    text-align: center;
    font-size: 1.5rem;
  }
  #p-design #sec3 .sec-tit .ms0 br {
    display: none;
  }
  #p-design #sec3 .sec-tit .ms0:first-letter {
    color: #333;
  }
  #p-design #sec3 .sec-tit .line {
    display: none;
  }
  #p-design #sec3 .sec-tit .en {
    font-size: 50px;
    line-height: 100%;
    position: static;
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    text-align: center;
    margin-bottom: 30px;
  }
  #p-design #sec3 .sec-tit .logo-yb {
    width: 100%;
  }
  #p-design #sec3 .sec-tit:after {
    display: none;
  }
  /*　
  ----------------------------------------------------*/
  #p-design #sec3 #cmt-dl .grp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    margin-bottom: 70px;
  }
  #p-design #sec3 #cmt-dl .grp:last-child {
    margin-bottom: 0px;
  }
  #p-design #sec3 #cmt-dl dt {
    width: 100%;
  }
  #p-design #sec3 #cmt-dl dd {
    width: 100%;
  }
  #p-design #sec3 #cmt-dl .gsp-para-wp {
    height: 200px;
    margin-bottom: 10px;
  }
  #p-design #sec3 #cmt-dl .en {
    color: #6ab806;
    margin-bottom: 5px;
  }
  #p-design #sec3 #cmt-dl .en span {
    font-size: 1.9em;
  }
}
/************************************************************************************

　スマホ設定

*************************************************************************************/
@media screen and (max-width: 670px) {
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　家づくり ： 性能・仕様

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　SEC1 

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  /*　
  ----------------------------------------------------*/
  #p-pfm #sec0 #intro-dl {
    display: block;
    margin-bottom: 30px;
  }
  #p-pfm #sec0 #intro-dl dt {
    width: 100%;
    margin-bottom: 10px;
  }
  #p-pfm #sec0 #intro-dl dd {
    width: 100%;
    font-size: 1.5rem;
    letter-spacing: 1px;
    line-height: 180%;
  }
  #p-pfm #sec0 #intro-dl .ms1 {
    margin-bottom: 0;
    line-height: 150%;
    letter-spacing: 2px;
  }
  /*　SEC0
  ----------------------------------------------------*/
  #p-pfm #sec0 #mid-vis {
    margin-left: 7%;
    margin-top: 50px;
  }
  #p-pfm #sec0 #mid-vis .gsp-para-wp {
    height: 200px;
  }
  #p-pfm #sec0 #mid-vis #midvis1 {
    width: 30%;
  }
  #p-pfm #sec0 #mid-vis #midvis2 {
    width: 69.9%;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　SEC1  住宅性能

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #p-pfm #sec1 #seinou-list {
    margin-bottom: 10%;
    border-top: 1px solid #CCC;
  }
  #p-pfm #sec1 #seinou-list li {
    border-bottom: 1px solid #CCC;
    padding: 15% 0%;
    display: block;
  }
  #p-pfm #sec1 #seinou-list dl {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 50px;
  }
  #p-pfm #sec1 #seinou-list dt {
    width: 30%;
    width: 100%;
    text-align: center;
  }
  #p-pfm #sec1 #seinou-list dd {
    width: 63%;
    width: 100%;
    letter-spacing: 1px;
  }
  #p-pfm #sec1 #seinou-list dd .note {
    white-space: nowrap;
  }
  #p-pfm #sec1 #seinou-list .ms1 {
    margin-bottom: 50px;
    border-bottom: 3px solid #333;
    padding-bottom: 5px;
    display: inline-block;
  }
  #p-pfm #sec1 #seinou-list .ms3 {
    margin-bottom: 15px;
  }
  #p-pfm #sec1 #seinou-list .note {
    font-size: 1.3rem;
    line-height: 100%;
    margin-top: 10px;
    letter-spacing: 0;
  }
  #p-pfm #sec1 #seinou-list li:nth-child(3) .icon {
    margin-left: -3.5%;
    width: 32%;
    text-align: center;
    margin-right: 15px;
  }
  #p-pfm #sec1 #seinou-list .spec {
    width: 100%;
    background: #f7f7f7;
    position: relative;
    padding-left: 7%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 150px;
  }
  #p-pfm #sec1 #seinou-list .spec .atai {
    width: 45%;
    margin-bottom: 0;
  }
  #p-pfm #sec1 #seinou-list .spec .atai dt {
    border: none;
    width: 100%;
    font-size: 2.5rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 0px;
  }
  #p-pfm #sec1 #seinou-list .spec .atai dd {
    border: none;
    width: 100%;
    font-size: 1.6rem;
    color: #90bc04;
    white-space: nowrap;
    text-align: center;
  }
  #p-pfm #sec1 #seinou-list .spec .tex {
    position: absolute;
    right: -10px;
    top: -20px;
    font-size: 1.3rem;
  }
  #p-pfm #sec1 #seinou-list .spec .tex span {
    background: #333;
    padding: 10px 5px;
    line-height: 230%;
    white-space: nowrap;
  }
  #p-pfm #sec1 #seinou-list .spec .icon {
    width: 25%;
    text-align: center;
    margin-right: 15px;
  }
  #p-pfm #sec1 #sw {
    border: 2px solid #9dc814;
    padding: 8%;
    padding-bottom: 0;
    position: relative;
  }
  #p-pfm #sec1 #sw .ms1 {
    display: inline-block;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 1.8rem;
  }
  #p-pfm #sec1 #sw .ms1 span {
    font-size: 1.4rem;
  }
  #p-pfm #sec1 #sw .ms3 {
    font-size: 1.6rem;
    margin-bottom: 5px;
  }
  #p-pfm #sec1 #sw .tex {
    font-size: 1.4rem;
  }
  #p-pfm #sec1 #sw .tex br {
    display: none;
    line-height: 150%;
  }
  #p-pfm #sec1 #sw .bt-dtl {
    margin-bottom: 40px;
    margin-top: 20px;
  }
  #p-pfm #sec1 #sw #swph {
    width: 100%;
    position: static;
    right: 3%;
    bottom: 0;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　SEC2  職人の技術力

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #p-pfm #sec2 .inner {
    padding-top: 0px;
    width: 100%;
    height: auto;
  }
  #p-pfm #sec2 .en {
    color: #f5f5f5;
    font-size: 19vw;
    line-height: 100%;
    margin-top: 0;
    margin-left: 0px;
    margin-bottom: -25px;
  }
  #p-pfm #sec2 .ms1 {
    margin-bottom: 15px;
  }
  #p-pfm #sec2 .ms1:first-letter {
    color: #9dc814;
  }
  #p-pfm #sec2 .tex {
    line-height: 180%;
    letter-spacing: 1px;
    margin-bottom: 50px;
  }
  #p-pfm #sec2 #p3 {
    height: auto;
    aspect-ratio: 1;
    position: relative;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　SEC3  基本性能

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #p-pfm #sec3 .colum {
    display: block;
  }
  #p-pfm #sec3 .lbox {
    width: 100%;
  }
  #p-pfm #sec3 .rbox {
    width: 100%;
  }
  #p-pfm #sec3 .tit {
    width: 230px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 30px;
  }
  #p-pfm #sec3 .ms3 {
    border: 1px solid #CCC;
    margin-bottom: 10px;
    padding: 6% 0;
  }
  #p-pfm #sec3 .rbox table {
    width: 100%;
    margin-bottom: 30px;
    font-family: "Noto Sans JP", sans-serif;
    border-top: 1px solid #CCC;
    font-size: 1.3rem;
  }
  #p-pfm #sec3 .rbox table tr {
    border-bottom: 1px solid #CCC;
  }
  #p-pfm #sec3 .rbox table th {
    text-align: left;
    vertical-align: top;
    font-weight: 500;
    padding: 4% 0;
    width: 35%;
    line-height: 150%;
  }
  #p-pfm #sec3 .rbox table td {
    padding: 4% 0;
    width: 65%;
  }
  #p-pfm #sec3 .rbox table .note {
    margin-top: 0;
  }
  #p-pfm #sec3 .rbox table span {
    font-size: 0.8em;
  }
  #p-pfm #sec3 .rbox table .idt {
    line-height: 140%;
    text-indent: -1em;
    padding-left: 1px;
    margin-bottom: 5px;
  }
  #p-pfm #sec3 .rbox .osae {
    display: block;
  }
  #p-pfm #sec3 .rbox .osae .tex {
    letter-spacing: 0px;
    text-align: center;
    margin-bottom: 20px;
  }
  #p-pfm #sec3 .rbox .osae .bt-boxline {
    width: 100%;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　SEC4 標準仕様

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #p-pfm #sec4 .shiyo-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #p-pfm #sec4 .shiyo-list li {
    width: 100%;
    margin-bottom: 10%;
    border-top: 1px solid #CCC;
    padding-top: 15%;
    padding-bottom: 5%;
  }
  #p-pfm #sec4 .shiyo-list .ofi {
    height: 250px;
    margin-bottom: 25px;
  }
  #p-pfm #sec4 .shiyo-list .name {
    font-size: 1.8rem;
    margin-bottom: 5px;
    line-height: 140%;
    font-weight: 500;
    color: #333;
  }
  #p-pfm #sec4 .shiyo-list .name span {
    font-size: 0.8em;
  }
  #p-pfm #sec4 .shiyo-list .tex {
    font-size: 1.4rem;
  }
  #p-pfm #sec4 .shiyo-list .note {
    font-size: 1.3rem;
    margin-top: 0;
    letter-spacing: 0;
    margin-top: 5px;
    line-height: 170%;
  }
  #p-pfm #sec4 .shiyo-list .dtl {
    font-size: 1.3rem;
    margin-top: 0;
    letter-spacing: 0;
    margin-top: 5px;
    line-height: 170%;
    font-family: "Noto Sans JP", sans-serif;
  }
  #p-pfm #sec4 .shiyo-list .dtl p {
    text-indent: -1em;
    padding-left: 1em;
    margin-bottom: 2px;
  }
  #p-pfm #sec4 #sonota {
    border-top: 1px solid #CCC;
    border-bottom: 1px solid #CCC;
    padding: 15% 0 13%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #p-pfm #sec4 #sonota .lbox {
    width: 100%;
  }
  #p-pfm #sec4 #sonota .rbox {
    width: 100%;
  }
  #p-pfm #sec4 #sonota .ms3 {
    border: none;
    text-align: left;
    padding: 0;
  }
  #p-pfm #sec4 #sonota #nintei-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #p-pfm #sec4 #sonota #nintei-list li {
    width: 48%;
    line-height: 140%;
    text-indent: -1em;
    padding-left: 1em;
    font-family: "Noto Sans JP", sans-serif;
    margin-bottom: 3%;
    font-size: 1.4rem;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　SEC5

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #p-pfm #sec5 {
    padding: 100px 0;
    background: #f7f7f7;
  }
  #p-pfm #sec5 #zeh-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #p-pfm #sec5 #zeh-list li {
    width: 100%;
    padding: 15%;
    margin-bottom: 10%;
  }
  #p-pfm #sec5 #zeh-list .abv {
    padding: 7px 0;
    margin-bottom: 20px;
  }
  #p-pfm #sec5 #zeh-list .mds {
    font-size: 2.4rem;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 140%;
    color: #90bc04;
  }
  #p-pfm #sec5 #zeh-list .mds span {
    font-size: 0.7em;
  }
  #p-pfm #sec5 #zeh-list .tex {
    margin-bottom: 45px;
  }
  #p-pfm #sec5 #zeh-list .icon {
    width: 100px;
    margin: 0 auto;
  }
  #p-pfm #sec5 .colum1,
  #p-pfm #sec5 .colum2 {
    margin-bottom: 100px;
  }
  #p-pfm #sec5 .colum1 .ms3 {
    margin-bottom: 5px;
  }
  #p-pfm #sec5 .colum1 .lead {
    font-size: 1.5rem;
    margin: 0;
    letter-spacing: 1px;
    line-height: 180%;
    margin-bottom: 50px;
  }
  #p-pfm #sec5 .colum1 .lead br {
    display: none;
  }
  /*メリットリスト
  ----------------------------------------------------*/
  #p-pfm #sec5 .colum2 #merit-list li {
    background: #FFF;
    min-height: 460px;
  }
  #p-pfm #sec5 .colum2 #merit-list .ofi {
    margin-bottom: 0;
  }
  #p-pfm #sec5 .colum2 #merit-list .inner {
    padding: 7% 10% 7%;
  }
  #p-pfm #sec5 .colum2 #merit-list .mds {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 500;
  }
  #p-pfm #sec5 .colum3 .lead {
    margin-bottom: 30px;
  }
  #p-pfm #sec5 .colum3 #result-tab {
    border: none;
    border: 1px solid #CCCCCC;
    border-collapse: collapse;
    width: 100%;
    background: #FFF;
    text-align: center;
    font-size: 1.4rem;
  }
  #p-pfm #sec5 .colum3 #result-tab th {
    border: none;
    border: 1px solid #CCCCCC;
    width: 25%;
    padding: 2% 1%;
    background: #f4f4f4;
    font-size: 1.2rem;
    white-space: nowrap;
  }
  #p-pfm #sec5 .colum3 #result-tab td {
    border: none;
    border: 1px solid #CCCCCC;
    padding: 2% 1%;
    white-space: nowrap;
  }
  #p-pfm #sec5 .colum3 #result-tab .year {
    font-size: 1.4rem;
    font-weight: 500;
  }
  #p-pfm #sec5 #bn-swbf {
    width: 100%;
    margin: 0 auto;
    margin-top: 10%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #p-pfm #sec5 #bn-swbf:hover {
    opacity: 0.7;
  }
}
/************************************************************************************

　スマホ設定

*************************************************************************************/
@media screen and (max-width: 670px) {
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　品質保証・メンテンナス

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　イントロ

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  /*　タブ
  ----------------------------------------------------*/
  #p-support #sec0 #intro-dl {
    display: block;
    margin-bottom: 50px;
  }
  #p-support #sec0 #intro-dl dt {
    width: 100%;
    margin-bottom: 15px;
  }
  #p-support #sec0 #intro-dl dd {
    width: 100%;
    font-size: 1.5rem;
    letter-spacing: 1px;
    line-height: 200%;
  }
  #p-support #sec0 #intro-dl .ms1 {
    margin-bottom: 0;
    line-height: 150%;
    letter-spacing: 1px;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　SEC1 吉成建築クオリティ

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #p-support #sec1 {
    padding-top: 1px;
    margin-bottom: 180px;
  }
  #p-support #sec1 .cons {
    position: relative;
    z-index: 1;
  }
  #p-support #sec1 .inner {
    width: 100%;
    margin: 0 0 0 auto;
    min-height: 0px;
  }
  #p-support #sec1 .sec-tit {
    margin-top: 0px;
    margin-bottom: 100px;
  }
  #p-support #sec1 .sec-tit .line {
    width: 100px;
  }
  #p-support #sec1 #qlt-dl .grp {
    margin-bottom: 50px;
    display: block;
  }
  #p-support #sec1 #qlt-dl .grp:last-child {
    margin-bottom: 50px;
  }
  #p-support #sec1 #qlt-dl dt {
    width: 100%;
  }
  #p-support #sec1 #qlt-dl dd {
    width: 100%;
  }
  #p-support #sec1 #qlt-dl .ms3 {
    margin-bottom: 5px;
  }
  #p-support #sec1 #p1 {
    width: 100%;
    height: 300px;
    position: relative;
    margin-bottom: 100px;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　SEC1b  品質検査

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #p-support #sec1b {
    margin-bottom: 100px;
  }
  #p-support #sec1b .colum {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #p-support #sec1b .lbox {
    width: 100%;
  }
  #p-support #sec1b .rbox {
    width: 100%;
  }
  #p-support #sec1b .lbox .ms3 {
    text-align: center;
    border: 1px solid #CCC;
    padding: 5% 0 6%;
  }
  #p-support #sec1b .tex1, #p-support #sec1b .tex2 {
    line-height: 180%;
  }
  #p-support #sec1b .tex1 {
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 1.6rem;
  }
  #p-support #sec1b .tex2 {
    margin-bottom: 40px;
    letter-spacing: 0px;
  }
  #p-support #sec1b #kensa {
    height: 200px;
    margin-bottom: 50px;
  }
  #p-support .kensa-step .grp {
    margin-bottom: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #p-support .kensa-step dt {
    font-size: 1.5rem;
    width: 35px;
    height: 35px;
    border: 1px solid #333;
    position: relative;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #p-support .kensa-step dt:after {
    content: "";
    width: 30px;
    height: 1px;
    position: absolute;
    top: 50%;
    right: -30px;
  }
  #p-support .kensa-step dd {
    font-size: 1.5rem;
    width: 77%;
    padding-top: 7px;
  }
  #p-support .kensa-step dd p {
    line-height: 140%;
    text-indent: -1em;
    padding-left: 1em;
    margin-bottom: 5px;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　SEC2 35年保証

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #p-support #sec2 .colum1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 150px;
  }
  #p-support #sec2 .lbox {
    width: 100%;
  }
  #p-support #sec2 .rbox {
    width: 100%;
  }
  #p-support #sec2 #hoshousho {
    background: #f7f7f7;
    padding: 13% 0;
    margin-bottom: 20px;
  }
  #p-support #sec2 #hoshousho img {
    width: 50%;
    height: auto;
  }
  #p-support #sec2 .tex {
    letter-spacing: 0px;
    line-height: 190%;
  }
  #p-support #sec2 .hoshou {
    overflow: hidden;
    overflow-x: scroll;
    margin-top: -100px;
  }
  #p-support #sec2 .hoshou img {
    width: 270%;
    height: auto;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　SEC3 定期点検

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #p-support #sec3 {
    margin-bottom: 100px;
  }
  #p-support #sec3 #lead {
    margin-bottom: 50px;
    margin-top: -10px;
  }
  #p-support #sec3 .colum {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #p-support #sec3 .colum .lbox {
    width: 100%;
  }
  #p-support #sec3 .colum .rbox {
    width: 100%;
  }
  #p-support #sec3 .colum .ms3 {
    margin-bottom: 20px;
  }
  #p-support #sec3 .lbox {
    margin-bottom: 100px;
  }
  #p-support #sec3 .lbox .tex {
    line-height: 180%;
    letter-spacing: 1px;
    margin-bottom: 20px;
  }
  #p-support #sec3 .karte {
    background: #F7F7F7;
    padding: 5%;
  }
  #p-support #sec3 #santen {
    line-height: 50%;
    margin: -5px 0 5px 30px;
  }
  #p-support #sec3 #otukiai {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 1px;
  }
  #p-support #sec3 .kensa-step .grp {
    margin-bottom: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #p-support #sec3 .kensa-step dt {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 1.3rem;
    width: 60px;
    height: 33px;
    border: 1px solid #333;
    position: relative;
    border-radius: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #p-support #sec3 .kensa-step dt:after {
    content: "";
    width: 30px;
    height: 1px;
    background-color: #333;
    position: absolute;
    top: 50%;
    right: -30px;
  }
  #p-support #sec3 .kensa-step dd {
    font-size: 1.5rem;
    width: 70%;
    padding-top: 5px;
    font-family: "Noto Sans JP", sans-serif;
  }
  #p-support #sec3 .kensa-step dd p {
    line-height: 140%;
    text-indent: -1em;
    padding-left: 1em;
    margin-bottom: 5px;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　SEC4

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #p-support #sec4 {
    padding-top: 1px;
  }
  #p-support #sec4 .cons {
    position: relative;
    z-index: 1;
  }
  #p-support #sec4 .inner {
    width: 100%;
    min-height: 0px;
    padding-top: 0px;
  }
  #p-support #sec4 .tex {
    letter-spacing: 1px;
    line-height: 180%;
  }
  #p-support #sec4 .ms3 {
    margin-bottom: 10px;
  }
  #p-support #sec4 #p2 {
    width: 100%;
    height: 300px;
    position: relative;
    margin-bottom: 30px;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　SEC5

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #p-support #sec5 .cons {
    border-top: 1px solid #CCC;
    padding-top: 50px;
  }
  #p-support #sec5 .colum {
    display: block;
  }
  #p-support #sec5 .mds1 {
    font-size: 1.6rem;
    letter-spacing: 1px;
    margin-bottom: 30px;
  }
  #p-support #sec5 .tel {
    font-size: 3.5rem;
  }
  #p-support #sec5 .tel a {
    color: #333;
  }
  #p-support #sec5 .time {
    margin-top: 10px;
    font-weight: 600;
    letter-spacing: 1px;
  }
  #p-support #sec5 .hol {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  #p-support #sec5 .lbox {
    width: 100%;
    margin-bottom: 50px;
  }
  #p-support #sec5 .rbox {
    width: 100%;
  }
  #p-support #sec5 .bt-boxline {
    width: 100%;
  }
  #p-support #sec5 .chui {
    font-family: "Noto Sans JP", sans-serif;
    margin-bottom: 30px;
  }
  #p-support #sec5 .chui li {
    text-indent: -1em;
    padding-left: 1em;
    line-height: 130%;
    margin-bottom: 10px;
    font-size: 1.2rem;
  }
}
/************************************************************************************

　スマホ設定

*************************************************************************************/
@media screen and (max-width: 670px) {
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　新築  注文住宅

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　新築  注文住宅  ヴィジュアル

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #p-order #vis {
    margin-bottom: 30px;
    width: 107.5%;
  }
  #p-order #vis .cons {
    position: relative;
  }
  #p-order #vis #p1 {
    height: auto;
    aspect-ratio: 1.4;
  }
  #p-order #vis #logo-yd {
    width: 60%;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    z-index: 99;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　新築  注文住宅  SEC1

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  /*　SEC1
  ----------------------------------------------------*/
  #p-order #sec1 {
    margin-bottom: 1px;
  }
  #p-order #sec1 .inner {
    padding-top: 0;
    width: 100%;
    min-height: 0px;
  }
  #p-order #sec1 .ms1 {
    line-height: 150%;
    margin-bottom: 10px;
  }
  #p-order #sec1 .honbun {
    font-size: 1.5rem;
    line-height: 180%;
    letter-spacing: 1px;
    margin-bottom: 100px;
  }
  #p-order #sec1 #p2 {
    height: auto;
    aspect-ratio: 1;
  }
  #p-order #mid-vis {
    margin-right: 0%;
    margin-bottom: 100px;
  }
  #p-order #mid-vis .gsp-para-wp {
    height: 200px;
  }
  #p-order #mid-vis #midvis1 {
    width: 50%;
  }
  #p-order #mid-vis #midvis2 {
    width: 50%;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　新築  注文住宅  SEC2  こんなご希望

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #p-order #sec2 .ms2 {
    font-size: 1.8rem;
  }
  #p-order #sec2 .ms2 span {
    color: #90bc04;
  }
  /*希望リスト
  ----------------------------------------------------*/
  #p-order #sec2 #hope-list {
    width: 85%;
    margin: 0 auto;
    margin-bottom: 70px;
  }
  #p-order #sec2 #hope-list .ofi {
    margin-bottom: -15px;
  }
  #p-order #sec2 #hope-list .inner {
    padding: 10px 25px 10px 15px;
    display: inline-block;
    background: #FFF;
    margin-top: 0px;
    position: relative;
    z-index: 1;
  }
  #p-order #sec2 #hope-list .mds {
    font-size: 1.5rem;
    line-height: 150%;
  }
  #p-order #sec2 #hope-list .mds:before {
    content: "";
    width: 10px;
    height: 1px;
    display: inline-block;
    background-color: #CCC;
    position: absolute;
    top: 13px;
    left: -15px;
  }
  /*　感じる リンク
  ----------------------------------------------------*/
  #p-order #sec2 #feel {
    border-top: 1px solid #CCC;
  }
  #p-order #sec2 #feel li {
    border-bottom: 1px solid #CCC;
    padding: 25px 0;
    display: block;
  }
  #p-order #sec2 #feel dl {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 15px;
  }
  #p-order #sec2 #feel dt {
    width: 100%;
  }
  #p-order #sec2 #feel dd {
    width: 100%;
  }
  #p-order #sec2 #feel .bt-boxlineflx {
    width: 100%;
  }
  #p-order #sec2 #feel .ms3 {
    margin-bottom: 0;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　新築  注文住宅  SEC3    オーダーメイド

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #p-order #sec3 .sec-tit {
    margin-bottom: 0px;
  }
  #p-order #sec3 #kakaku {
    margin-top: 50px;
    margin-bottom: 50px;
    font-size: 1.2rem;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　新築  注文住宅  SEC4    家づくりのステップ

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #p-order #sec4 .cons {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  #p-order #sec4 .inner {
    width: 100%;
    min-height: 0px;
    padding-top: 0px;
    margin: 0 0 0 auto;
  }
  #p-order #sec4 .cutph {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    position: relative;
    margin-top: -100px;
  }
  #p-order #sec4 .workflow .grp {
    margin-bottom: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #p-order #sec4 .workflow dt {
    font-size: 1.5rem;
    width: 35px;
    height: 35px;
    border: 1px solid #333;
    position: relative;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #p-order #sec4 .workflow dt:after {
    content: "";
    width: 30px;
    height: 1px;
    background-color: #333;
    position: absolute;
    top: 50%;
    right: -30px;
  }
  #p-order #sec4 .workflow dd {
    width: 77%;
    padding-top: 7px;
    font-family: "Noto Sans JP", sans-serif;
  }
  #p-order #sec4 .workflow dd .ms3 {
    margin-bottom: 0;
    line-height: 100%;
    margin-bottom: 10px;
  }
  #p-order #sec4 .workflow dd .ms3 span {
    font-size: 0.8em;
  }
  #p-order #sec4 .workflow dd .note {
    font-size: 1.3rem;
    margin-top: 0;
    letter-spacing: 0;
  }
}
/************************************************************************************

　スマホ設定

*************************************************************************************/
@media screen and (max-width: 670px) {
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　新築  規格住宅

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　新築  規格住宅  ヴィジュアル

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #p-pred #vis {
    margin-bottom: 30px;
    width: 107.5%;
  }
  #p-pred #vis .cons {
    position: relative;
  }
  #p-pred #vis #p1 {
    height: auto;
    aspect-ratio: 1.4;
  }
  #p-pred #vis #logo-trip {
    width: 45%;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    z-index: 99;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　新築  規格住宅  SEC1

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  /*　SEC1
  ----------------------------------------------------*/
  #p-pred #sec1 {
    margin-bottom: 1px;
  }
  #p-pred #sec1 .inner {
    padding-top: 0;
    width: 100%;
    min-height: 0px;
  }
  #p-pred #sec1 .ms1 {
    line-height: 150%;
    margin-bottom: 10px;
  }
  #p-pred #sec1 .honbun {
    font-size: 1.5rem;
    line-height: 180%;
    letter-spacing: 1px;
    margin-bottom: 100px;
  }
  #p-pred #sec1 #p2 {
    position: relative;
    height: auto;
    aspect-ratio: 1;
    width: 100%;
  }
  #p-pred #mid-vis {
    margin-right: 0%;
    margin-bottom: 100px;
  }
  #p-pred #mid-vis .gsp-para-wp {
    height: 200px;
  }
  #p-pred #mid-vis #midvis1 {
    width: 50%;
  }
  #p-pred #mid-vis #midvis2 {
    width: 50%;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　新築  規格住宅  SEC2  こんなご希望

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #p-pred #sec2 .ms2 span {
    color: #90bc04;
  }
  #p-pred #sec2 .ms2 {
    display: block;
    font-size: 1.8rem;
  }
  #p-pred #sec2 .ms2:after {
    display: none;
  }
  /*希望リスト
  ----------------------------------------------------*/
  #p-pred #sec2 #hope-list {
    margin-bottom: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #p-pred #sec2 #hope-list li {
    border: 2px solid #90bc04;
    padding: 7% 3% 7%;
    width: 100%;
    text-align: center;
    margin-bottom: 4%;
    position: relative;
  }
  #p-pred #sec2 #hope-list .num {
    display: inline-block;
    width: 70px;
    font-size: 1.4rem;
    font-weight: 500;
    background: #90bc04;
    color: #FFF;
    border-bottom: none;
    position: absolute;
    left: 0;
    top: 0;
  }
  #p-pred #sec2 #hope-list .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #p-pred #sec2 #hope-list .icon img {
    width: auto;
    height: auto;
    max-width: 60px;
    max-height: 60px;
  }
  #p-pred #sec2 #hope-list .ms3 {
    margin-bottom: 10px;
    font-size: 1.8rem;
  }
  #p-pred #sec2 #hope-list li:nth-child(6) .ms3 {
    margin-bottom: 10px;
  }
  #p-pred #sec2 #hope-list .tex {
    font-size: 1.4rem;
    line-height: 140%;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　新築  規格住宅  SEC3    プランニング

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  /*ステップ コラム
  ----------------------------------------------------*/
  #p-pred #sec3 .stp-colum {
    margin-bottom: 100px;
  }
  #p-pred #sec3 .stp-colum .tit-dl {
    margin-bottom: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #p-pred #sec3 .stp-colum .tit-dl dt {
    width: 15%;
    width: 100%;
    height: 40px;
    border: 2px solid #90bc04;
    margin-bottom: 10px;
  }
  #p-pred #sec3 .stp-colum .tit-dl dt:after {
    display: none;
  }
  #p-pred #sec3 .stp-colum .tit-dl dd {
    width: 75%;
    width: 100%;
    padding-top: 10px;
  }
  #p-pred #sec3 .stp-colum .tit-dl .en {
    font-size: 2rem;
  }
  #p-pred #sec3 .stp-colum .tit-dl .ms0 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    letter-spacing: 0;
  }
  #p-pred #sec3 .stp-colum .tit-dl .lead {
    font-size: 1.5rem;
    line-height: 150%;
  }
  /*ステップ1 外観
  ----------------------------------------------------*/
  #p-pred #sec3 #step1 {
    position: relative;
  }
  #p-pred #sec3 #step1 #gaikan-list {
    width: 80%;
  }
  #p-pred #sec3 #step1 #gaikan-list li {
    width: 100%;
  }
  #p-pred #sec3 #step1 #gaikan-list .ms0 {
    margin-bottom: 10px;
    color: #333;
    font-family: "Jost", sans-serif;
  }
  #p-pred #sec3 #step1 #gaikan-list .ms0 span {
    font-size: 1.8rem;
    margin-left: 10px;
    font-family: "Noto Sans JP", sans-serif;
  }
  #p-pred #sec3 #step1 #gaikan-list .ph-abv {
    margin-bottom: 21px;
  }
  #p-pred #sec3 #step1 #next,
  #p-pred #sec3 #step1 #prev {
    display: none;
  }
  /*ステップ2 間取り
  ----------------------------------------------------*/
  #p-pred #sec3 #step2 .arrow {
    width: 40px;
    margin: 0 auto;
    margin-top: 25px;
    margin-bottom: 25px;
  }
  #p-pred #sec3 #step2 #choice {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #p-pred #sec3 #step2 #choice .lbox {
    width: 100%;
    margin-bottom: 20px;
  }
  #p-pred #sec3 #step2 #choice .rbox {
    width: 100%;
  }
  #p-pred #sec3 #step2 #choice .ofi {
    border: 1px solid #CCC;
    padding: 5%;
  }
  #p-pred #sec3 #step2 #choice .rbox .ofi {
    padding: 2%;
  }
  #p-pred #sec3 #step2 #choice .ms4 {
    font-size: 1.5rem;
    margin-bottom: 5px;
  }
  #p-pred #sec3 #step2 #sample .graybox {
    background: #f7f7f7;
    padding: 7%;
  }
  #p-pred #sec3 #step2 #sample .inner {
    width: 100%;
    display: block;
    margin-bottom: 0px;
  }
  #p-pred #sec3 #step2 #sample .lbox, #p-pred #sec3 #step2 #sample .rbox {
    background: #FFF;
    padding: 12%;
    position: relative;
    margin-bottom: 20px;
  }
  #p-pred #sec3 #step2 #sample .en {
    position: absolute;
    left: 4%;
    top: 4%;
    font-size: 2rem;
  }
  #p-pred #sec3 #step2 #sample .lead {
    text-align: left;
    font-size: 1.5rem;
    line-height: 150%;
  }
  #p-pred #sec3 #step2 #sample .ms4 {
    font-size: 1.5rem;
    margin-bottom: 5px;
  }
  /*ステップ3 断熱性
  ----------------------------------------------------*/
  #p-pred #sec3 #step3 #ins-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #p-pred #sec3 #step3 #ins-list li {
    background: #f7f7f7;
    width: 100%;
    padding: 15% 5% 10%;
    text-align: center;
    position: relative;
    margin-bottom: 10%;
  }
  #p-pred #sec3 #step3 #ins-list li:first-child {
    color: #CCC;
  }
  #p-pred #sec3 #step3 #ins-list li:last-child {
    margin-bottom: 0;
  }
  #p-pred #sec3 #step3 #ins-list .num {
    font-size: 2.4rem;
    font-family: "Jost", sans-serif;
    position: absolute;
    left: 15px;
    top: 15px;
    font-weight: 500;
  }
  #p-pred #sec3 #step3 #ins-list .en {
    font-size: 3rem;
    margin-bottom: 5px;
  }
  #p-pred #sec3 #step3 #ins-list .mds {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
  #p-pred #sec3 #step3 #ins-list .inner {
    background: #FFF;
    padding: 8% 7% 10%;
    border-radius: 10px;
    min-height: 0px;
  }
  #p-pred #sec3 #step3 #ins-list li:first-child .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #p-pred #sec3 #step3 #ins-list .name {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  #p-pred #sec3 #step3 #ins-list table {
    border-top: 1px solid #CCC;
    font-size: 1.4rem;
    line-height: 150%;
    width: 100%;
  }
  #p-pred #sec3 #step3 #ins-list tr {
    border-bottom: 1px solid #CCC;
  }
  #p-pred #sec3 #step3 #ins-list th {
    font-weight: 500;
    width: 25%;
    text-align: left;
    padding: 10px 0;
    vertical-align: top;
  }
  #p-pred #sec3 #step3 #ins-list td {
    width: 75%;
    text-align: left;
    padding: 10px 0;
  }
  #p-pred #sec3 #step3 #ins-list .kuni {
    font-size: 2.4rem;
    letter-spacing: 1px;
    line-height: 150%;
  }
  #p-pred #sec3 #step3 #ins-list .kuni span {
    font-size: 1.4rem;
  }
  #p-pred #sec3 #step3 #ins-list .batch {
    width: 100px;
    height: 30px;
    font-size: 1.3rem;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #90bc04;
    color: #FFF;
    line-height: 140%;
    border-radius: 0;
    font-weight: 500;
    position: absolute;
    left: auto;
    right: 0;
    top: 0;
    margin-left: auto;
  }
  #p-pred #sec3 #step3 #ins-list .batch br {
    display: none;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　新築  規格住宅  SEC4    コーディネート

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #p-pred #sec4 .cons {
    position: relative;
  }
  #p-pred #sec4 .sec-tit {
    margin-bottom: 50px !important;
  }
  #p-pred #sec4 #lead {
    font-size: 1.5rem;
    position: static;
    margin-top: 0px;
    margin-bottom: 10px;
  }
  #p-pred #sec4 #kakaku {
    margin-bottom: 50px;
    font-size: 1.2rem;
  }
  #p-pred #sec4 .spec-clm .tit .ms3 span.op {
    font-size: 1.2rem;
    color: #999;
    font-weight: 400;
  }
  .spec-clm .tit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: block;
    padding: 50px 0 30px;
  }
  .spec-clm .tit .ms3 {
    width: 100%;
    margin-bottom: 10px;
  }
  .spec-clm .tit .tex {
    width: 100%;
    font-size: 1.4rem;
    line-height: 140%;
  }
  #p-pred #sec4 .tilelist li {
    width: 48%;
    margin-bottom: 10%;
  }
  #p-pred #sec4 .tilelist .ofi {
    height: auto;
    aspect-ratio: 1;
    margin-bottom: 10px;
  }
  #p-pred #sec4 .tilelist .name {
    font-weight: 500;
    line-height: 150%;
  }
  #p-pred #sec4 .tilelist .tex {
    font-size: 1.2rem;
    line-height: 150%;
  }
  #p-pred #sec4 .intr-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 3%;
  }
  #p-pred #sec4 .intr-list li {
    width: 100%;
    background: none;
    padding: 0%;
    margin-bottom: 10%;
    position: relative;
  }
  #p-pred #sec4 .intr-list .ofi {
    height: auto;
    aspect-ratio: 1;
    margin-bottom: 10px;
  }
  #p-pred #sec4 .intr-list .name {
    font-weight: 500;
    line-height: 150%;
    margin-bottom: 5px;
  }
  #p-pred #sec4 .intr-list .tex {
    font-size: 1.2rem;
    line-height: 150%;
  }
  #p-pred #sec4 .intr-list .inner-abv {
    margin-bottom: 0px;
    min-height: 0;
    width: 48%;
    float: left;
  }
  #p-pred #sec4 .intr-list .inner-bot {
    width: 48%;
    float: right;
  }
  #p-pred #sec4 .intr-list .ms4 {
    margin-bottom: 7px;
  }
  #p-pred #sec4 #other {
    background: #FFF;
    padding: 0%;
  }
  #p-pred #sec4 #other .tilelist li {
    width: 48%;
    margin-bottom: 10%;
  }
  #p-pred #sec4 #other .ms4 span {
    font-size: 1.2rem;
  }
  #p-pred #sec4 #fnt.tilelist li {
    width: 100%;
  }
  #p-pred #sec4 #fnt.tilelist .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #p-pred #sec4 #fnt.tilelist .ofi {
    width: 49.8%;
  }
}
/************************************************************************************

　スマホ設定

*************************************************************************************/
@media screen and (max-width: 670px) {
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　モデルハウス

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #p-model #sec2,
  #p-model #sec3 {
    margin-bottom: 20%;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　イントロ

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #p-model #sec0 #intro-dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: block;
    margin-bottom: 50px;
  }
  #p-model #sec0 #intro-dl dt {
    width: 100%;
    margin-bottom: 10px;
  }
  #p-model #sec0 #intro-dl dd {
    width: 100%;
    font-size: 1.5rem;
    letter-spacing: 1px;
    line-height: 180%;
  }
  #p-model #sec0 #intro-dl .ms1 {
    margin-bottom: 0;
    line-height: 150%;
    letter-spacing: 2px;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　見学イベント

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #p-model #sec1 {
    margin-bottom: 100px;
  }
  #p-model #sec1 .cons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-top: 1px solid #CCC;
    padding-top: 100px;
  }
  #p-model #sec1 .lbox {
    width: 100%;
    position: relative;
    margin-bottom: -40px;
  }
  #p-model #sec1 .rbox {
    width: 100%;
    overflow: hidden;
  }
  .lbox .bt-gray {
    position: absolute;
    right: 0;
    top: 50px;
  }
  #js-iemiru-cms-index-page {
    width: 100%;
  }
  #iemiru-cms-index-page {
    padding: 0;
    width: auto !important;
  }
  .index-page__events-event.is-horizontal {
    border: 1px solid #CCC;
  }
  /*　イベントタイトル
  ----------------------------------------------------*/
  #p-model #sec1 .sec-tit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-bottom: 130px;
    position: relative;
  }
  #p-model #sec1 .sec-tit .ms0 {
    color: #333;
    letter-spacing: 6px;
    line-height: 130%;
    width: 100%;
  }
  #p-model #sec1 .sec-tit .ms0:first-letter {
    color: #9dc814;
  }
  #p-model #sec1 .sec-tit .line {
    width: 150px;
    height: 1px;
    background: #CCC;
    margin: 0 1em;
    display: none;
  }
  #p-model #sec1 .sec-tit .en {
    font-size: 2.4rem;
    font-weight: 400;
    color: #999;
    letter-spacing: 2px;
    width: 100%;
    margin-bottom: 5px;
  }
  #p-model #sec1 .sec-tit:after {
    content: "";
    width: 40px;
    height: 3px;
    background-color: #333;
    margin-top: 25px;
    position: absolute;
    left: 0;
    top: auto;
    bottom: -30px;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　 店舗 メインビジュアル

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #p-model .mainph-wp .en {
    font-size: 3.5rem;
    text-align: right;
    position: relative;
    z-index: 1;
    margin-bottom: -8px;
    margin-right: 0px;
    color: #000;
  }
  #p-model .mainph-wp .mainph {
    height: auto;
    aspect-ratio: 1.4;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　 店舗紹介部分

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #p-model .mdl-colum {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-bottom: 1px solid #CCC;
    padding-top: 7%;
    padding-bottom: 20%;
    position: relative;
  }
  #p-model .mdl-colum .lbox {
    width: 100%;
  }
  #p-model .mdl-colum .cbox {
    width: 100%;
    padding-right: 3%;
  }
  #p-model .mdl-colum .rbox {
    width: 30%;
    position: absolute;
    right: 15px;
    top: -25px;
  }
  #p-model .mdl-colum .rbox .ofi {
    height: 70px;
  }
  #p-model .mdl-colum .area {
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 3px;
    margin-bottom: 15px;
  }
  #p-model .mdl-colum .area span {
    border-bottom: 2px solid #333;
    padding-bottom: 0;
    border: 1px solid #CCC;
    padding: 2px 10px;
  }
  #p-model .mdl-colum .ms1 {
    font-size: 2rem;
    margin-bottom: 5px;
    line-height: 130%;
  }
  #p-model .mdl-colum .adr {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0px;
    margin-bottom: 20px;
  }
  #p-model .mdl-colum .gmap {
    letter-spacing: 0;
    font-size: 1.2rem;
    display: block;
    width: 130px;
    margin-left: 0px;
    margin-top: 10px;
    text-align: center;
  }
  #p-model .mdl-colum .gmap a {
    display: block;
    border: 1px solid #CCC;
    color: #666;
    line-height: 100%;
    padding: 3px 13px 4px 8px;
    border-radius: 15px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #p-model .mdl-colum .gmap a:hover {
    background: #333;
    color: #FFF;
  }
  #p-model .mdl-colum .gmap i {
    font-size: 2rem;
    vertical-align: -3px;
  }
  #p-model .mdl-colum .time-tab {
    width: 100%;
    margin-top: 0px;
    margin-bottom: 50px;
    font-size: 1.3rem;
  }
  #p-model .mdl-colum .time-tab th {
    text-align: left;
    position: relative;
    width: 25%;
    vertical-align: top;
    padding: 0px 0 0px 15px;
    font-weight: 500;
    letter-spacing: 1px;
  }
  #p-model .mdl-colum .time-tab th:before {
    content: "";
    width: 10px;
    height: 1px;
    display: inline-block;
    background-color: #333;
    position: absolute;
    top: 13px;
    left: 0;
  }
  #p-model .mdl-colum .time-tab td {
    padding: 0px 0;
  }
  #p-model .mdl-colum .honbun {
    margin-bottom: 30px;
  }
  #p-model .mdl-colum .bt {
    font-size: 1.5rem;
    width: 100%;
  }
  #p-model .mdl-colum .bt a {
    display: block;
    color: #FFF;
    background: #999;
    text-align: center;
    line-height: 50px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #p-model .mdl-colum .bt a:hover {
    background: #333;
  }
  #p-model .mdl-colum .bt i {
    font-size: 1.8em;
    vertical-align: -5px;
    margin-right: 5px;
  }
  #p-model .mdl-colum .note {
    margin-top: 8px;
    font-size: 1.1rem;
  }
  #p-model .mdl-colum .point li {
    font-family: "Noto Sans JP", sans-serif;
    text-indent: -1em;
    padding-left: 1em;
    line-height: 140%;
    margin-bottom: 7px;
  }
  #p-model .mdl-colum #honsha.point {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
  }
  #p-model .mdl-colum #honsha.point li {
    width: 100%;
    white-space: nowrap;
    white-space: normal;
  }
  #p-model #lc-logo {
    margin-bottom: -20px;
  }
  #p-model #lc-logo img {
    width: 180px;
  }
  #p-model #sec6 .mdl-colum {
    padding-bottom: 10%;
  }
  #p-model #sec6 #shirakawa {
    padding-top: 90% !important;
  }
  #p-model #sec6 #shirakawa .rbox {
    right: 0;
    top: 5%;
    width: 100%;
  }
  #p-model #sec6 #shirakawa .rbox .ofi {
    height: auto;
    aspect-ratio: 1.4;
  }
}
/************************************************************************************

　スマホ設定

*************************************************************************************/
@media screen and (max-width: 670px) {
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　会社紹介 私達について

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　SEC1

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #p-about #sec1 {
    margin-bottom: 100px;
  }
  #p-about #sec1 .cons {
    position: relative;
    z-index: 1;
  }
  #p-about #sec1 .inner {
    width: 100%;
    min-height: 0px;
    padding-top: 0px;
  }
  #p-about #sec1 .cutph-wp {
    width: 100%;
    position: static;
    margin-top: 50px;
  }
  #p-about #sec1 .cutph {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 1.3;
    margin-bottom: 10px;
  }
  #p-about #sec1 .ms1 {
    line-height: 150%;
    color: #333;
  }
  #p-about #sec1 .honbun {
    font-size: 1.5rem;
    line-height: 180%;
  }
  #p-about #sec1 .honbun p br {
    display: none;
  }
  #p-about #sec1 .name {
    width: 86%;
    margin: 0 auto;
  }
  #p-about #sec1 .name dt {
    font-size: 1.3rem;
    letter-spacing: 0px;
    margin-bottom: 0px;
  }
  #p-about #sec1 .name dd {
    font-size: 1.8rem;
    letter-spacing: 5px;
  }
  #p-about #sec1 .name dd span {
    font-size: 1.2rem;
    margin-left: 15px;
    letter-spacing: 1px;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　SEC2 

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #p-about #sec2 .inner {
    width: 100%;
    min-height: 0px;
    padding-top: 0px;
  }
  #p-about #sec2 .cutph {
    width: 100%;
    height: auto;
    aspect-ratio: 1.3;
    position: relative;
  }
  #p-about #sec2 .ms3 {
    margin-bottom: 10px;
  }
  #p-about #sec2 .tex {
    font-size: 1.5rem;
    line-height: 180%;
    letter-spacing: 0px;
    margin-bottom: 50px;
  }
  /*　経営理念タイトル
  ----------------------------------------------------*/
  #p-about #sec2 .sec-tit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-bottom: 80px;
    position: relative;
  }
  #p-about #sec2 .sec-tit .ms0 {
    color: #333;
    letter-spacing: 6px;
    line-height: 130%;
    width: 100%;
  }
  #p-about #sec2 .sec-tit .ms0:first-letter {
    color: #9dc814;
  }
  #p-about #sec2 .sec-tit .line {
    width: 150px;
    height: 1px;
    background: #CCC;
    margin: 0 1em;
    display: none;
  }
  #p-about #sec2 .sec-tit .en {
    font-size: 2.4rem;
    font-weight: 400;
    color: #999;
    letter-spacing: 2px;
    width: 100%;
    margin-bottom: 5px;
  }
  #p-about #sec2 .sec-tit:after {
    content: "";
    width: 40px;
    height: 3px;
    background-color: #333;
    margin-top: 25px;
    position: absolute;
    left: 0;
    top: auto;
    bottom: -30px;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　SEC3  会社概要

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #p-about #sec3 .colum {
    margin-bottom: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  #p-about #sec3 .colum .lbox {
    width: 100%;
  }
  #p-about #sec3 .colum .rbox {
    width: 100%;
  }
  #p-about #sec3 .colum .ms3 {
    margin-bottom: 15px;
    margin-top: 0px;
  }
  #p-about #sec3 .colum table {
    width: 100%;
    border-top: 1px solid #CCC;
    margin-bottom: 20px;
    font-size: 1.4rem;
  }
  #p-about #sec3 .colum table tr {
    border-bottom: 1px solid #CCC;
  }
  #p-about #sec3 .colum table th {
    width: 33%;
    text-align: left;
    font-weight: 500;
    padding: 20px 0;
    padding-right: 6%;
    letter-spacing: 1px;
    vertical-align: top;
    line-height: 150%;
  }
  #p-about #sec3 .colum table td {
    width: 67%;
    text-align: left;
    padding: 20px 0;
    vertical-align: top;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　SEC3  沿革

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #p-about #sec3 #colum4 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 30px;
  }
  #p-about #sec3 #colum4 .lbox {
    width: 100%;
    text-align: center;
  }
  #p-about #sec3 #colum4 .rbox {
    width: 100%;
  }
  #p-about #sec3 #colum4 .tit {
    width: 230px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 30px;
  }
  #p-about #sec3 #colum4 .ms3 {
    border: 1px solid #CCC;
    margin-bottom: 10px;
    padding: 4% 0;
  }
  #p-about #sec3 #colum4 .rbox table {
    width: 100%;
    margin-bottom: 30px;
    font-family: "Noto Sans JP", sans-serif;
    border-top: 1px solid #CCC;
    font-size: 1.3rem;
  }
  #p-about #sec3 #colum4 .rbox table tr {
    border-bottom: 1px solid #CCC;
  }
  #p-about #sec3 #colum4 .rbox table th {
    text-align: left;
    vertical-align: top;
    font-weight: 500;
    padding: 4% 0;
    width: 32%;
  }
  #p-about #sec3 #colum4 .rbox table th span {
    font-size: 0.8em;
  }
  #p-about #sec3 #colum4 .rbox table td {
    padding: 4% 0;
    vertical-align: top;
  }
  #p-about #sec3 #colum4 .rbox table td.mth {
    width: 10%;
  }
  #p-about #sec3 #colum4 .rbox table td.dtl {
    width: auto;
  }
  #p-about #sec3 #colum4 .rbox table .note {
    margin-top: 0;
  }
  #p-about #sec3 #colum4 .rbox table span {
    font-size: 0.8em;
  }
  #p-about #sec3 #colum4 .rbox table .idt {
    line-height: 140%;
    text-indent: -1em;
    padding-left: 1px;
    margin-bottom: 5px;
  }
  #p-about #sec3 #gmap {
    -webkit-filter: grayscale(100%);
            filter: grayscale(100%);
  }
  #p-about #sec3 #gmap iframe {
    width: 100%;
    height: 400px;
  }
}
/************************************************************************************

　スマホ設定

*************************************************************************************/
@media screen and (max-width: 670px) {
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　会社紹介 SDGs

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  /*　SEC1
  ----------------------------------------------------*/
  #p-sdgs #sec1 {
    margin-bottom: 30px;
  }
  #p-sdgs #sec1 .colum {
    font-size: 1.8rem;
    letter-spacing: 1px;
    line-height: 160%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #p-sdgs #sec1 .colum #mds {
    margin-bottom: 15px;
  }
  #p-sdgs #sec1 .colum .lbox {
    width: 100%;
  }
  #p-sdgs #sec1 .colum .rbox {
    width: 100%;
  }
  #p-sdgs #sec1 .colum #goals {
    width: 100%;
    margin-bottom: 70px;
  }
  #p-sdgs #sec1 .colum .tex {
    margin-bottom: 20px;
    font-size: 1.5rem;
  }
  /*　SEC2
  ----------------------------------------------------*/
  #p-sdgs #sec2 #mid-vis {
    margin-left: 7%;
  }
  #p-sdgs #sec2 #mid-vis .gsp-para-wp {
    height: 180px;
  }
  #p-sdgs #sec2 #mid-vis #midvis1 {
    width: 50%;
  }
  #p-sdgs #sec2 #mid-vis #midvis2 {
    width: 50%;
  }
  /*　SEC3 アクション
  ----------------------------------------------------*/
  #p-sdgs #sec3 .tit {
    text-align: center;
    margin-bottom: 200px;
    position: relative;
  }
  #p-sdgs #sec3 .tit .ms1 {
    text-align: left;
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    letter-spacing: 5px;
    line-height: 250%;
    margin: 0 auto;
  }
  #p-sdgs #sec3 .tit .en {
    font-size: clamp(60px, 15vw, 150px);
    line-height: 100%;
    opacity: 0.04;
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  #p-sdgs #sec3 #cmt-dl {
    border-top: 1px solid #CCC;
    padding-top: 50px;
  }
  #p-sdgs #sec3 #cmt-dl .grp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #CCC;
  }
  #p-sdgs #sec3 #cmt-dl .grp:last-child {
    margin-bottom: 0px;
  }
  #p-sdgs #sec3 #cmt-dl dt {
    width: 100%;
  }
  #p-sdgs #sec3 #cmt-dl dd {
    width: 100%;
    position: relative;
  }
  #p-sdgs #sec3 #cmt-dl .gsp-para-wp {
    height: 200px;
  }
  #p-sdgs #sec3 #cmt-dl .en {
    width: 70px;
    font-size: 1.2rem;
    text-align: center;
    color: #6ab806;
    margin-bottom: 5px;
    border-left: 1px solid #6ab806;
    border-right: 1px solid #6ab806;
    position: absolute;
    right: 0;
    top: 0;
  }
  #p-sdgs #sec3 #cmt-dl .en span {
    font-size: 1.3em;
  }
  #p-sdgs #sec3 #cmt-dl .ms3 {
    width: 80%;
    margin-bottom: 30px;
  }
  #p-sdgs #sec3 #cmt-dl .icon-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 30px;
    margin-bottom: 30px;
  }
  #p-sdgs #sec3 #cmt-dl .icon-list li {
    width: 22%;
  }
}
/************************************************************************************

　スマホ設定

*************************************************************************************/
@media screen and (max-width: 670px) {
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　スタッフ紹介

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  /*　タブ
  ----------------------------------------------------*/
  #p-staff .staff-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #p-staff .staff-list li {
    width: 50%;
    margin-bottom: 10%;
  }
  #p-staff .staff-list a {
    color: #666;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #p-staff .staff-list .ofi {
    aspect-ratio: 1;
    -webkit-filter: grayscale(0%);
            filter: grayscale(0%);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    overflow: hidden;
  }
  #p-staff .staff-list .ofi img {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #p-staff .staff-list .inner {
    padding: 8%;
    padding-left: 0;
  }
  #p-staff .staff-list .name {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 6px;
    line-height: 100%;
    margin-bottom: 7px;
  }
  #p-staff .staff-list .pos {
    font-size: 1.1rem;
    letter-spacing: 0px;
  }
  #p-staff .staff-list a:hover {
    color: #9dc814;
  }
  #p-staff .staff-list a:hover .ofi {
    -webkit-filter: grayscale(0%);
            filter: grayscale(0%);
  }
  #p-staff .staff-list a:hover .ofi img {
    -webkit-transform: scale(1.06);
            transform: scale(1.06);
  }
  #p-staff .posmds {
    font-size: 1.8rem;
    line-height: 100%;
    margin-bottom: 15px;
    letter-spacing: 3px;
    font-weight: 500;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　スタッフ紹介 詳細ページ

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #p-staff.detail #prf-wp {
    width: 100%;
    border: 1px solid #CCC;
    padding: 8%;
  }
  #p-staff.detail .en {
    font-size: 2.5rem;
    letter-spacing: 7px;
    color: #000;
    margin-bottom: 50px;
  }
  #p-staff.detail .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    padding-top: 1px;
  }
  #p-staff.detail #facebox {
    width: 70%;
    margin-top: 0px;
    margin: 0 auto;
    margin-bottom: 50px;
  }
  #p-staff.detail .ofi {
    margin-bottom: 10px;
  }
  #p-staff.detail .name {
    font-size: 2rem;
    color: #333;
    font-weight: 500;
    line-height: 130%;
    margin-bottom: 3px;
    letter-spacing: 3px;
  }
  #p-staff.detail .pos {
    letter-spacing: 1px;
  }
  #p-staff.detail .pos br {
    display: block;
  }
  #p-staff.detail #mainbox {
    width: 100%;
  }
  #p-staff.detail #prf-dl {
    font-size: 1.4rem;
  }
  #p-staff.detail #prf-dl .grp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 30px;
  }
  #p-staff.detail #prf-dl dt {
    width: 26%;
    font-weight: 500;
    line-height: 140%;
    position: relative;
    font-size: 1.2rem;
  }
  #p-staff.detail #prf-dl dt span:after {
    content: "";
    width: 20px;
    height: 3px;
    display: block;
    background-color: #333;
    margin-top: 10px;
  }
  #p-staff.detail #prf-dl dd {
    width: 74%;
    line-height: 160%;
    font-size: 1.3rem;
  }
}
/************************************************************************************

　スマホ設定

*************************************************************************************/
@media screen and (max-width: 670px) {
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  会社情報 ： 採用情報

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　SEC 0

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  /*　
  ----------------------------------------------------*/
  #p-recruit #sec0 #intro-dl {
    display: block;
    margin-bottom: 50px;
  }
  #p-recruit #sec0 #intro-dl dt {
    width: 100%;
  }
  #p-recruit #sec0 #intro-dl dd {
    width: 100%;
    font-size: 1.5rem;
    letter-spacing: 1px;
    line-height: 150%;
    margin-top: 0px;
  }
  #p-recruit #sec0 #intro-dl .ms0 {
    font-size: 2.2rem;
    margin-bottom: 10px;
  }
  /*　アンカーリンク リスト
  ----------------------------------------------------*/
  #p-recruit #sec0 .anc-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 100px;
    width: 100%;
    min-width: 0px;
  }
  #p-recruit #sec0 .anc-link li {
    margin-left: 0;
    margin-right: 0;
    width: 48%;
    margin-bottom: 2%;
  }
  /*　 求める人物像
  ----------------------------------------------------*/
  #p-recruit #sec0 #wants {
    background: #f7f7f7;
    background: url("../img/company/recruit/logo-yd.svg") no-repeat 0% 111% #F7F7F7;
    background-size: 100%;
    margin-left: 7%;
    padding-top: 10%;
    padding-left: 3%;
    padding-bottom: 13%;
    padding-right: 4%;
    position: relative;
  }
  #p-recruit #sec0 #wants .inner {
    width: 88%;
    margin: 0 auto;
  }
  #p-recruit #sec0 #wants-dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #p-recruit #sec0 #wants-dl .grp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
  }
  #p-recruit #sec0 #wants-dl .grp:first-child {
    margin-bottom: 50px;
  }
  #p-recruit #sec0 #wants-dl dt {
    width: 30%;
  }
  #p-recruit #sec0 #wants-dl dd {
    font-size: 1.5rem;
    width: 65%;
    line-height: 180%;
    letter-spacing: 0px;
  }
  #p-recruit #sec0 #wants-dl dd p br {
    display: none;
  }
  #p-recruit #sec0 #wants-dl .mds {
    display: inline-block;
    border-bottom: 1px solid #333;
    padding-bottom: 7px;
    margin-bottom: 30px;
    font-size: 1.2rem;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　SEC 1 社長メッセージ

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  /*　
  ----------------------------------------------------*/
  #p-recruit #sec1 .colum {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #p-recruit #sec1 .lbox {
    width: 100%;
    margin-bottom: 50px;
  }
  #p-recruit #sec1 .rbox {
    width: 100%;
  }
  #p-recruit #sec1 .ofi {
    aspect-ratio: 1.1;
    margin-bottom: 15px;
  }
  #p-recruit #sec1 .pos {
    margin-bottom: 0px;
  }
  #p-recruit #sec1 .name {
    font-size: 2rem;
    letter-spacing: 6px;
  }
  #p-recruit #sec1 .ms3 {
    margin-bottom: 10px;
  }
  #p-recruit #sec1 .honbun {
    line-height: 180%;
  }
  #p-recruit #sec1 .honbun .tex {
    margin-bottom: 1.5em;
  }
  #p-recruit #sec1 .honbun .tex br {
    display: none;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　SEC 2

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  /*　
  ----------------------------------------------------*/
  #p-recruit #sec2 .cons {
    position: relative;
  }
  #p-recruit #sec2 #joblist {
    width: 85%;
    cursor: -webkit-grab;
    cursor: grab;
  }
  #p-recruit #sec2 #joblist li {
    width: 100%;
  }
  #p-recruit #sec2 #joblist .ofi {
    aspect-ratio: 1.6;
    margin-bottom: -25px;
  }
  #p-recruit #sec2 #joblist .ms4 {
    background: #9dc814;
    color: #FFF;
    display: inline-block;
    padding: 2% 5% 2%;
    position: relative;
    z-index: 1;
  }
  #p-recruit #sec2 #joblist .mds {
    font-size: 1.8rem;
    margin-bottom: 3px;
  }
  #p-recruit #sec2 #next,
  #p-recruit #sec2 #prev {
    width: 60px;
    height: 60px;
    border: 1px solid #CCC;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 50%;
    cursor: pointer;
    display: none;
  }
  #p-recruit #sec2 #next i,
  #p-recruit #sec2 #prev i {
    font-size: 2em;
    color: #90bc04;
  }
  #p-recruit #sec2 #next {
    position: absolute;
    right: 70px;
    top: 170px;
  }
  #p-recruit #sec2 #prev {
    position: absolute;
    right: 0;
    top: 170px;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　SEC 3 人を知る

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  /*　
  ----------------------------------------------------*/
  #p-recruit #sec3 .colum {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #p-recruit #sec3 .colum .lbox {
    padding-top: 365px;
    margin-bottom: 50px;
    position: relative;
  }
  #p-recruit #sec3 .colum .rbox {
    width: 100%;
  }
  #p-recruit #sec3 .colum .num {
    font-size: 4.2rem;
    position: absolute;
    top: -15px;
    right: 20px;
    z-index: 1;
  }
  #p-recruit #sec3 .colum .cutph {
    position: absolute;
    left: auto;
    right: 0;
    top: 0;
    width: 110%;
    height: 350px;
  }
  #p-recruit #sec3 .colum .en {
    font-size: 4rem;
    color: #90bc04;
    font-weight: 500;
    line-height: 100%;
    margin-top: -40px;
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
  }
  #p-recruit #sec3 .colum .name {
    font-size: 2.2rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }
  #p-recruit #sec3 .colum .pos {
    font-size: 1.5rem;
    letter-spacing: 1px;
  }
  #p-recruit #sec3 .colum .year {
    font-size: 1.3rem;
    letter-spacing: 1px;
  }
  #p-recruit #sec3 .colum .cmnlist {
    margin-bottom: 30px;
    font-size: 1.1rem;
  }
  #p-recruit #sec3 .colum .honbun {
    line-height: 200%;
    letter-spacing: 1px;
  }
  #p-recruit #sec3 .colum #sch-tit {
    font-size: 1.6rem;
    margin-bottom: 25px;
  }
  #p-recruit #sec3 #sch-dl {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#9dc814), to(#9dc814));
    background-image: linear-gradient(#9dc814, #9dc814);
    background-repeat: no-repeat;
    background-position: 24% 0px; /* 下線の初期位置 */
    background-size: 1px 100%; /* 下線のサイズ（横幅、高さ） */
  }
  #p-recruit #sec3 #sch-dl .grp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 30px;
  }
  #p-recruit #sec3 #sch-dl dt {
    width: 18%;
    letter-spacing: 1px;
    font-size: 1.4rem;
  }
  #p-recruit #sec3 #sch-dl dd {
    width: 70%;
    position: relative;
  }
  #p-recruit #sec3 #sch-dl .mds {
    font-weight: 500;
  }
  #p-recruit #sec3 #sch-dl .tex {
    font-size: 1.4rem;
    line-height: 150%;
    letter-spacing: 1px;
  }
  #p-recruit #sec3 #sch-dl dd:before {
    content: "";
    width: 10px;
    height: 10px;
    display: inline-block;
    background-color: #FFF;
    border: 3px solid #90bc04;
    border-radius: 50%;
    position: absolute;
    top: 7px;
    left: -12%;
    z-index: 1;
  }
  #p-recruit #sec3 #substaff {
    border-top: 1px solid #CCC;
    margin-top: 75px;
  }
  #p-recruit #sec3 #substaff > li {
    border-bottom: 1px solid #CCC;
    padding: 15% 0;
  }
  #p-recruit #sec3 #substaff .lbox {
    width: 100%;
    padding-top: 0px;
    margin-bottom: 15px;
  }
  #p-recruit #sec3 #substaff .rbox {
    width: 100%;
  }
  #p-recruit #sec3 #substaff ofi {
    height: 340px;
  }
  #p-recruit #sec3 #substaff .honbun {
    line-height: 180%;
  }
  #p-recruit #sec3 #substaff .num {
    position: static;
    line-height: 100%;
    margin-bottom: 30px;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　SEC 4 環境を知る

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #p-recruit #sec4 #env-dl {
    width: 100%;
    border-top: 1px solid #CCC;
  }
  #p-recruit #sec4 #env-dl .grp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: block;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 0;
    border-bottom: 1px solid #CCC;
    padding: 15% 0;
  }
  #p-recruit #sec4 #env-dl .grp:last-child {
    margin-bottom: 0;
  }
  #p-recruit #sec4 #env-dl dt {
    width: 100%;
    position: relative;
  }
  #p-recruit #sec4 #env-dl dd {
    width: 100%;
  }
  #p-recruit #sec4 #env-dl dd br {
    display: none;
  }
  #p-recruit #sec4 #env-dl .tilelist {
    margin-top: 20px;
  }
  #p-recruit #sec4 #env-dl .tilelist li {
    width: 49%;
  }
  #p-recruit #sec4 #env-dl #goals {
    margin-top: 20px;
    width: 80%;
  }
  #p-recruit #sec4 #env-dl dt:after {
    content: "";
    width: 30%;
    height: 1px;
    display: inline-block;
    background-color: #CCC;
    position: absolute;
    top: 10px;
    right: -30%;
    display: none;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　SEC 5 数字で見る

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #p-recruit #sec5 {
    background: #f7f7f7;
    padding: 12% 0;
    margin-bottom: 100px;
  }
  #p-recruit #sec5 #suuli-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #p-recruit #sec5 #suuli-list li {
    width: 100%;
    margin-bottom: 10%;
  }
  #p-recruit #sec5 #suuli-list .ofi {
    background: #FFF;
    padding: 0 6%;
  }
  #p-recruit #sec5 #suuli-list .tex {
    font-size: 1.5rem;
    margin-top: 5px;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　SEC6  オープンカンパニー

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #p-recruit #sec6 .inner {
    padding-top: 0px;
    width: 100%;
    height: auto;
    padding-top: 1px;
  }
  #p-recruit #sec6 .en {
    font-size: 60px;
    margin-top: 0px;
    margin-left: 0px;
    margin-bottom: 10px;
    color: #9dc814;
  }
  #p-recruit #sec6 .ms1 {
    margin-bottom: 50px;
  }
  #p-recruit #sec6 .ms1:first-letter {
    color: #9dc814;
  }
  #p-recruit #sec6 .lead {
    font-size: 1.8rem;
    margin-bottom: 5px;
    font-weight: 500;
    letter-spacing: 1px;
  }
  #p-recruit #sec6 .tex {
    line-height: 220%;
    letter-spacing: 1px;
  }
  #p-recruit #sec6 .cutph {
    height: auto;
    aspect-ratio: 1.5;
    position: relative;
  }
  #p-recruit #sec6 .tilelist {
    margin-top: 30px;
    margin-bottom: 40px;
  }
  #p-recruit #sec6 .tilelist li {
    width: 48%;
  }
  #p-recruit #sec6 .tilelist .ofi {
    aspect-ratio: 1.4;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　SEC7  募集要項

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #p-recruit #sec7 .cons {
    position: relative;
  }
  /*　タイトル
  ----------------------------------------------------*/
  #p-recruit #sec7 .sec-tit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-bottom: 100px;
    position: relative;
  }
  #p-recruit #sec7 .sec-tit .ms0 {
    color: #333;
    letter-spacing: 6px;
    line-height: 130%;
    width: 100%;
  }
  #p-recruit #sec7 .sec-tit .ms0:first-letter {
    color: #9dc814;
  }
  #p-recruit #sec7 .sec-tit .line {
    width: 150px;
    height: 1px;
    background: #CCC;
    margin: 0 1em;
    display: none;
  }
  #p-recruit #sec7 .sec-tit .en {
    font-size: 2.4rem;
    font-weight: 400;
    color: #999;
    letter-spacing: 2px;
    width: 100%;
    margin-bottom: 5px;
  }
  #p-recruit #sec7 .sec-tit:after {
    content: "";
    width: 40px;
    height: 3px;
    background-color: #333;
    margin-top: 25px;
    position: absolute;
    left: 0;
    top: auto;
    bottom: -30px;
  }
  /*　 アコーディオン部分
  ----------------------------------------------------*/
  .accordion-container {
    margin: 0 0 0 auto;
    border-bottom: 1px solid #CCC;
    width: 116%;
    margin-left: -8%;
  }
  .accordion-container .accordion-title {
    position: relative;
    padding: 8% 2%;
    padding-right: 35px;
    padding-left: 30px;
    color: #000;
    font-size: 1.5rem;
    font-weight: 500;
    cursor: pointer;
    border-top: 1px solid #CCC;
    background-size: 20px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    line-height: 145%;
  }
  .accordion-container .accordion-title:hover,
  .accordion-container .accordion-title:active,
  .accordion-title.open {
    /*  background-color: #00aaa7;*/
    color: #90bc04;
  }
  .accordion-container .accordion-title::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    width: 15px;
    height: 2px;
    /*縦線に*/
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    background: #CCC;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .accordion-container .accordion-title::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    /*横線*/
    width: 15px;
    height: 2px;
    background: #CCC;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .accordion-container .accordion-title.open::before {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .accordion-container .accordion-title.open::after {
    opacity: 0;
  }
  .accordion-content {
    background: #f7f7f7;
    padding: 10% 7%;
    border-radius: 0px;
    margin-bottom: 0%;
    line-height: 180%;
  }
  .accordion-content .note {
    font-size: 12px;
    color: #333;
    line-height: 150%;
    margin-top: 10px;
  }
  .accordion-title span {
    position: relative;
  }
  .accordion-title span:before {
    content: "";
    width: 10px;
    height: 2px;
    display: inline-block;
    background-color: #90bc04;
    position: absolute;
    top: 50%;
    left: -15px;
  }
  /*　 募集要項 テーブル
  ----------------------------------------------------*/
  .rec-tab {
    border-top: 1px solid #CCC;
    width: 100%;
    font-size: 1.4rem;
  }
  .rec-tab tr {
    border-bottom: 1px solid #CCC;
  }
  .rec-tab th {
    padding: 7% 0;
    vertical-align: top;
    text-align: left;
    width: 25%;
    padding-right: 5%;
    line-height: 150%;
  }
  .rec-tab td {
    padding: 7% 0;
    width: 75%;
  }
}
/************************************************************************************

　スマホ設定

*************************************************************************************/
@media screen and (max-width: 670px) {
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　家づくり コンセプト

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  /*　SEC1
  ----------------------------------------------------*/
  #p-renov #sec1 #mds {
    margin-bottom: 65px;
    color: #333;
  }
  #p-renov #sec1 .colum {
    margin-bottom: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    font-size: 1.5rem;
    letter-spacing: 0px;
    line-height: 180%;
  }
  #p-renov #sec1 .colum .lbox {
    width: 100%;
  }
  #p-renov #sec1 .colum .rbox {
    width: 100%;
  }
  #p-renov #sec1 .colum #p1 {
    height: 210px;
    margin-bottom: 30px;
  }
  #p-renov #sec1 .colum #mds {
    line-height: 160%;
    margin-bottom: 40px;
  }
  #p-renov #sec1 .colum .tex {
    margin-bottom: 20px;
  }
  #p-renov #sec1 .colum .tex br {
    display: none;
  }
  #p-renov #sec1 .colum .rbox p br {
    display: none;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　ビフォア アフター

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  /*　　ビフォア アフター　メニュー*/
  #p-renov #sec1 #bfaf-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-bottom: 2%;
  }
  #p-renov #sec1 #bfaf-nav li {
    width: 32%;
    font-size: 2.2rem;
    margin-bottom: 2%;
  }
  #p-renov #sec1 #bfaf-nav a {
    text-align: center;
    display: block;
    background: #f7f7f7;
    color: #333;
    line-height: 100%;
    padding: 3vw 0;
    border-radius: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    font-size: 1.8rem;
  }
  #p-renov #sec1 #bfaf-nav a:hover {
    background: #333;
    color: #FFF;
  }
  #p-renov #sec1 #bfaf-nav .point {
    font-size: 0.8em;
    font-weight: 500;
  }
  #p-renov #sec1 #bfaf-nav .point span {
    font-size: 0.8em;
  }
  /*　　ビフォア アフター 　リスト*/
  #p-renov #sec1 #bfaf-list {
    /*width: 80%;*/
    /*border: 1px solid #CCC;*/
  }
  #p-renov #sec1 #bfaf-list li {
    display: block;
    background: #FFF;
    padding: 0%;
  }
  #p-renov #sec1 #bfaf-list .lbox {
    width: 100%;
    position: relative;
    background: #FFF;
    margin-bottom: 15px;
  }
  #p-renov #sec1 #bfaf-list .rbox {
    width: 100%;
    position: relative;
    background: #FFF;
  }
  #p-renov #sec1 #bfaf-list .en {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 99;
    font-size: 1.8rem;
    width: 100px;
    line-height: 40px;
    background: #333;
    text-align: center;
    color: #FFF;
  }
  #p-renov #sec1 #bfaf-list .rbox .en {
    background: #90bc04;
  }
  #p-renov #sec1 #bfaf-list .ofi {
    height: auto;
    aspect-ratio: 1.6;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　中段ビジュアル

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  /*　SEC2
  ----------------------------------------------------*/
  #p-renov #sec2 #mid-vis {
    margin-right: 7%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #p-renov #sec2 #mid-vis .gsp-para-wp {
    height: 200px;
  }
  #p-renov #sec2 #mid-vis #midvis1 {
    width: 69.9%;
  }
  #p-renov #sec2 #mid-vis #midvis2 {
    width: 30%;
  }
  /*　SEC3 大切にしていること
  ----------------------------------------------------*/
  #p-renov #sec3 #cmt-dl .grp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    flex-direction: column-reverse;
    margin-bottom: 100px;
  }
  #p-renov #sec3 #cmt-dl .grp:last-child {
    margin-bottom: 0px;
  }
  #p-renov #sec3 #cmt-dl dt {
    width: 100%;
  }
  #p-renov #sec3 #cmt-dl dd {
    width: 100%;
  }
  #p-renov #sec3 #cmt-dl .gsp-para-wp {
    height: auto;
    aspect-ratio: 1.5;
    margin-top: 30px;
  }
  #p-renov #sec3 #cmt-dl .en {
    color: #6ab806;
    margin-bottom: 5px;
  }
  #p-renov #sec3 #cmt-dl .en span {
    font-size: 1.9em;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　SEC4 問い合わせ

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #p-renov #sec4 .cons {
    border-top: 1px solid #CCC;
    padding-top: 50px;
  }
  #p-renov #sec4 .colum {
    display: block;
  }
  #p-renov #sec4 .mds1 {
    font-size: 1.6rem;
    letter-spacing: 1px;
    margin-bottom: 30px;
  }
  #p-renov #sec4 .tel {
    font-size: 3.5rem;
  }
  #p-renov #sec4 .tel a {
    color: #333;
  }
  #p-renov #sec4 .time {
    margin-top: 10px;
    font-weight: 600;
    letter-spacing: 1px;
  }
  #p-renov #sec4 .hol {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  #p-renov #sec4 .lbox {
    width: 100%;
    margin-bottom: 50px;
  }
  #p-renov #sec4 .rbox {
    width: 100%;
  }
  #p-renov #sec4 .bt-boxline {
    width: 100%;
  }
  #p-renov #sec4 .chui {
    font-family: "Noto Sans JP", sans-serif;
    margin-bottom: 30px;
  }
  #p-renov #sec4 .chui li {
    text-indent: -1em;
    padding-left: 1em;
    line-height: 130%;
    margin-bottom: 10px;
    font-size: 1.2rem;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　SEC5  インスタバナー

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #p-renov #sec5 {
    position: relative;
  }
  #p-renov #sec5 .cons {
    height: 400px;
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #p-renov #sec5 .cons .inner {
    text-align: center;
    color: #FFF;
  }
  #p-renov #sec5 .cons .icon i {
    font-size: 6rem;
  }
  #p-renov #sec5 .cons .tex {
    margin-bottom: 20px;
  }
  #p-renov #sec5 .cons .en {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 3px;
  }
  /*写真ループ*/
  #p-renov #sec5 #ph-loop {
    position: absolute;
    left: 0;
    top: 0;
  }
  #p-renov #sec5 #ph-loop li {
    width: 500px;
  }
  #p-renov #sec5 #ph-loop .ofi {
    height: 400px;
  }
  /*インスタボタン*/
  #p-renov #sec5 .bt-boxline {
    display: inline-block;
    text-align: center;
    border: 2px solid #FFF;
    border-radius: 50px;
    overflow: hidden;
  }
  #p-renov #sec5 .bt-boxline a {
    display: block;
    font-weight: 500;
    padding: 10px 50px;
  }
  #p-renov #sec5 .bt-boxline i {
    font-size: 1.8em;
    vertical-align: -4px;
    margin-left: 7px;
  }
  /*インスタボタン 動き*/
  #p-renov #sec5 a.btn1 {
    display: inline-block;
    width: 100%;
    text-align: center;
    text-decoration: none;
    line-height: 36px;
    outline: none;
    color: #FFF;
    background-color: transparent;
    position: relative;
    -webkit-transition: color 0.5s ease;
    transition: color 0.5s ease;
  }
}
/************************************************************************************

　スマホ設定

*************************************************************************************/
@media screen and (max-width: 670px) {
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　不動産 一覧

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  /*　不動産リスト
  ----------------------------------------------------*/
  #p-est .est-list {
    display: block;
  }
  #p-est .est-list li {
    width: 100%;
    margin-bottom: 20%;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　不動産 記事詳細 メインスライド  タイトル カテゴリ

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #slidevis .cat {
    font-size: 1.3rem;
    font-family: "Noto Sans JP", sans-serif;
    display: inline-block;
    border: 1px solid #CCC;
    padding: 3px 20px 3px;
    margin-bottom: 20px;
  }
  #slidevis .ms1 {
    margin-bottom: 30px;
    line-height: 120%;
    font-size: 2rem;
    letter-spacing: 0;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　不動産 記事詳細 メインスライド

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  /*　　メインスライド
  ----------------------------------------------------*/
  /*スライド 外枠*/
  #slidevis {
    width: 100%;
    overflow: hidden;
    overflow: visible;
    margin: 0 auto;
    margin-bottom: 30px;
  }
  /*スライド メイン画像*/
  #slidevis .slider {
    margin-bottom: 10px;
    width: 116%;
    margin-left: -8%;
  }
  #slidevis .slider li {
    height: auto;
    aspect-ratio: 1;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    background-color: #f3f3f3;
    background-color: #FFF;
    position: relative;
  }
  #slidevis .slider li:hover {
    cursor: pointer;
  }
  #slidevis .slider li .tex {
    text-align: left;
    background: #FFF;
    display: inline-block;
    position: absolute;
    left: 2%;
    bottom: 2%;
    padding: 3px 10px;
    max-width: 98%;
    font-size: 12px;
  }
  #slidevis .slider li .tex {
    display: none;
  }
  /*スライド ナビ画像*/
  #slidevis .thumb {
    width: 101%;
  }
  #slidevis .thumb li {
    height: auto;
    aspect-ratio: 1;
    margin-right: 0.3%;
    background-position: 50% 50%;
    background-size: cover;
  }
  #slidevis .thumb li:hover {
    cursor: pointer;
  }
  /* スライド 送りボタン
  ----------------------------------------------------*/
  .arrow_box {
    position: relative;
  }
  .prev-arrow,
  .next-arrow {
    display: block;
    width: 50px;
    height: 70px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
  }
  .prev-arrow {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    margin-right: 20px;
  }
  .prev-arrow::before,
  .next-arrow::before {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    border-right: 2px solid #FFF;
    border-top: 2px solid #FFF;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .next-arrow {
    position: absolute;
    right: -8%;
    top: -80vw;
  }
  .prev-arrow {
    position: absolute;
    left: -8%;
    top: -80vw;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　見出し

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  .sec-tit.est {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-bottom: 60px;
    position: relative;
  }
  .sec-tit.est .ms0 {
    color: #333;
    letter-spacing: 6px;
    line-height: 130%;
    width: 100%;
    font-size: 2rem;
  }
  .sec-tit.est .ms0:first-letter {
    color: #9dc814;
  }
  .sec-tit.est .line {
    width: 150px;
    height: 1px;
    background: #CCC;
    margin: 0 1em;
    display: none;
  }
  .sec-tit.est .en {
    font-size: 1.8rem;
    font-weight: 400;
    color: #999;
    letter-spacing: 2px;
    width: 100%;
    margin-bottom: 0px;
  }
  .sec-tit.est:after {
    content: "";
    width: 20px;
    height: 3px;
    background-color: #333;
    margin-top: 25px;
    position: absolute;
    left: 0;
    top: auto;
    bottom: -20px;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　共通 コラム

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  .e-colum {
    padding: 0;
    padding: 10% 0;
    position: relative;
    border-bottom: 1px solid #CCC;
  }
  .e-colum .est-sectit-wp {
    position: static;
    margin-bottom: 0;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　基本情報

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #est-info {
    border-top: 1px solid #CCC;
    margin-top: 50px;
    padding-left: 0%;
    padding-bottom: 50px;
  }
  #est-info .colum {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #est-info .lbox {
    width: 100%;
  }
  #est-info .rbox {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  #est-info .price {
    display: block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 30px;
  }
  #est-info .price dt {
    width: 30%;
    border: 1px solid #CCC;
    text-align: center;
    line-height: 35px;
    margin-bottom: 0;
    font-size: 1.2rem;
    letter-spacing: 2px;
    height: 38px;
  }
  #est-info .price dd {
    width: 60%;
    font-size: 3.5rem;
    font-size: 2rem;
  }
  #est-info .price dd span {
    font-size: 2rem;
    margin-left: 5px;
  }
  .est-infotab {
    width: 100%;
    line-height: 140%;
    font-size: 1.4rem;
  }
  .est-infotab th {
    width: 35%;
    text-align: left;
    vertical-align: top;
    padding-left: 22px;
    padding-bottom: 15px;
    position: relative;
    letter-spacing: 1px;
    font-weight: 500;
  }
  .est-infotab th:before {
    content: "";
    width: 12px;
    height: 1px;
    display: inline-block;
    background-color: #666;
    position: absolute;
    top: 7px;
    left: 0;
  }
  .est-infotab td {
    width: 60%;
    vertical-align: top;
    padding-bottom: 15px;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　フリー入力欄

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #est-free {
    padding: 20% 0 20% 0;
    border-bottom: 1px solid #CCC;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　区画図

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #est-block .tilelist li {
    width: 100%;
    text-align: center;
    border: 1px solid #CCC;
  }
  #est-block .tilelist figure {
    padding: 5%;
  }
  #est-block .tilelist figure img {
    max-width: 300px !important;
    max-height: 300px !important;
    width: auto;
    height: auto;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　間取り図

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #est-floor .tilelist {
    display: block;
  }
  #est-floor .tilelist li {
    width: 100%;
    margin-bottom: 20px;
  }
  #est-floor .tilelist .en {
    font-size: 2.4rem;
    margin-bottom: 5px;
  }
  #est-floor .tilelist figure {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    border: 1px solid #CCC;
    display: block;
    overflow: hidden;
    padding: 5%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #est-floor .tilelist figure img {
    max-width: 300px !important;
    max-height: 300px !important;
    width: auto;
    height: auto;
  }
  /*luminousでbaseに入れている影響で開いた画像が変形するのを回避*/
  .lum-img {
    width: auto;
    height: auto;
  }
  /*img {
  	width: 100%;
     height: auto;
  	aspect-ratio: attr(width) / attr(height);
  	image-rendering: -webkit-optimize-contrast;
    }*/
  /*.lum-lightbox-inner img {
          max-width: none;
          max-height: none;
  }

   .lum-lightbox-position-helper{
            width: 100%;
        }*/
  .lum-lightbox-position-helper img {
    max-width: 100% !important;
    max-height: 500px !important;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　グーグル・マップ

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #p-est.detail #est-gmap iframe {
    width: 100%;
    height: 350px;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　物件概要

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  .head-border {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .head-border:after {
    content: "";
    height: 1px;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    background-color: #666;
    margin-left: 1rem;
  }
  #est-outline {
    background: #f7f7f7;
    padding: 20% 7%;
    margin-top: 70px;
    width: 116%;
    margin-left: -8%;
  }
  #est-outline .ms4 {
    margin-bottom: 20px;
    letter-spacing: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #est-outline .ms4:after {
    display: none;
  }
  #est-outline .ms4:first-letter {
    color: #90bc04;
  }
  #est-outline .ms4 span.en {
    font-size: 1.4rem;
    margin-left: 10px;
    letter-spacing: 0;
  }
  #est-outline .ms4 span.grn {
    color: #90bc04;
  }
  #est-outline .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  #est-outline .est-outlinetab {
    width: 100%;
    font-size: 1.4rem;
    line-height: 140%;
    border-top: 1px solid #DDD;
    margin-bottom: -1px;
  }
  #est-outline .est-outlinetab tr {
    border-bottom: 1px solid #DDD;
  }
  #est-outline .est-outlinetab th {
    letter-spacing: 0px;
    width: 30%;
    text-align: left;
    vertical-align: top;
    font-weight: 500;
    padding: 15px 0;
  }
  #est-outline .est-outlinetab td {
    width: 70%;
    padding: 15px 0;
  }
  /*備考*/
  #est-outline .biko-wp {
    border-bottom: 1px solid #DDD;
    border-top: none;
    padding: 3% 0;
    margin-top: 2%;
    font-size: 1.4rem;
  }
  #est-outline .biko-wp .mds {
    font-weight: 500;
    border: 1px solid #DDD;
    width: 70px;
    text-align: center;
  }
  #est-outline .biko-wp .bikomain {
    margin-left: 30%;
    margin-top: -2em;
  }
  #p-est #ent-nav {
    padding-top: 50px;
  }
}
/************************************************************************************

　スマホ設定

*************************************************************************************/
@media screen and (max-width: 670px) {
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　不動産  一覧

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #p-works #ban-voice {
    width: 100%;
    margin: 0 auto;
  }
  /*　不動産リスト
  ----------------------------------------------------*/
  #p-works .works-list {
    display: block;
  }
  #p-works .works-list li {
    width: 100%;
    margin-bottom: 10%;
  }
  #p-works .works-list a:hover .ofi {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　不動産  記事詳細

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  /*　タイトル上 オーナー
  ----------------------------------------------------*/
  #p-works.detail .owner {
    font-size: 1.5rem;
    margin-bottom: 5px;
  }
  #p-works.detail .owner span {
    font-size: 1.8rem;
    font-family: "Jost", sans-serif;
    font-weight: 500;
    margin-right: 10px;
  }
  /*　タイトル ボックス
  ----------------------------------------------------*/
  #p-works.detail .titwp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-top: 1px;
    margin-bottom: 35px;
  }
  #p-works.detail .titwp .tit {
    width: 100%;
    margin-bottom: 20px;
  }
  #p-works.detail .titwp .ctg {
    width: 100%;
    max-width: 100%;
    margin-top: -7px;
    font-size: 1.4rem;
  }
  #p-works.detail .titwp .ctg .en {
    font-size: 1.5rem;
    color: #90bc04;
    margin-right: 20px;
  }
  #p-works.detail .titwp .ctg li {
    border-bottom: 1px solid #CCC;
    padding: 7px 0;
    text-indent: -3.5em;
    padding-left: 3.5em;
  }
  #p-works.detail .titwp .ms1 {
    margin-bottom: 0;
  }
  /*　メインボックス
  ----------------------------------------------------*/
  #p-works.detail #work-main {
    display: block;
    margin-top: 100px;
  }
  #p-works.detail #work-main .lbox {
    width: 100%;
    margin-bottom: 100px;
  }
  #p-works.detail #work-main .rbox {
    width: 100%;
  }
  #p-works.detail #work-main .en-mds {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
  #p-works.detail #work-main .en-mds:after {
    content: "";
    width: 20px;
    height: 3px;
    display: inline-block;
    background-color: #333;
    position: absolute;
    bottom: -10px;
    left: 0;
  }
  #p-works.detail #work-main .rbox .lead {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 500;
    line-height: 150%;
  }
  #p-works.detail #work-main .honbun {
    line-height: 220%;
  }
  /*　オーナーボイス
  ----------------------------------------------------*/
  #p-works.detail #ownervoice {
    padding-top: 100px;
    line-height: 220%;
  }
  #p-works.detail #ov-tit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 15px;
  }
  #p-works.detail #ov-tit .jp {
    border-left: 1px solid #CCC;
    padding: 0 10px;
    line-height: 20px;
  }
  #p-works.detail #ov-tit .en {
    font-size: 1.2rem;
    border-left: 1px solid #CCC;
    padding-left: 10px;
    line-height: 20px;
  }
  #p-works.detail #ov-tit:after {
    content: "";
    height: 1px;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    background-color: #CCC;
    margin-left: 2rem;
  }
  /*　基本情報テーブル
  ----------------------------------------------------*/
  #p-works.detail .work-tab {
    font-size: 1.4rem;
    border-top: 1px solid #CCC;
    width: 100%;
  }
  #p-works.detail .work-tab tr {
    border-bottom: 1px solid #CCC;
  }
  #p-works.detail .work-tab th {
    width: 35%;
    text-align: left;
    vertical-align: top;
    padding: 10px 0;
    font-weight: 500;
    color: #333;
    padding-left: 15px;
  }
  #p-works.detail .work-tab td {
    width: 65%;
    padding: 10px 0;
    padding-right: 15px;
  }
  #p-works.detail #ent-nav {
    padding-top: 100px;
  }
}
/************************************************************************************

　スマホ設定

*************************************************************************************/
@media screen and (max-width: 670px) {
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　工場・倉庫 / 店舗

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  /*　ページタイトル
  ----------------------------------------------------*/
  /*#p-factory .pg-tit-wp #pg-tit .en{margin-right: -240px;}*/
  /*　ページタイトル
  ----------------------------------------------------*/
  #p-factory #pg-tit .en {
    font-size: 3.6rem;
  }
  #p-factory #pg-tit .jp {
    letter-spacing: 0vw;
    display: inline-block;
    font-weight: 500;
    vertical-align: 0.4em;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　工場・倉庫 / 店舗 ：イントロ

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  /*　ヴィジュアル
  ----------------------------------------------------*/
  #p-factory #sec0 .cutph {
    height: auto;
    aspect-ratio: 1;
    width: 100%;
  }
  #p-factory #sec0 .inner {
    width: 100%;
    min-height: 700px;
    padding-top: 50px;
  }
  #p-factory #sec0 .mds {
    font-size: 4rem;
    font-weight: 500;
    color: #90bc04;
    letter-spacing: 6px;
    line-height: 140%;
    margin-bottom: 5px;
  }
  #p-factory #sec0 .en {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 50px;
  }
  #p-factory #sec0 .ms1 {
    line-height: 150%;
    letter-spacing: 2px;
    margin-bottom: 5px;
  }
  #p-factory #sec0 .honbun {
    font-size: 1.5rem;
    line-height: 180%;
    letter-spacing: 0px;
    margin-bottom: 30px;
  }
  /*　アンカーリンク リスト
  ----------------------------------------------------*/
  #p-factory #sec0 .anc-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #p-factory #sec0 .anc-link li {
    margin-left: 0em;
    margin-right: 2em;
    margin-bottom: 1em;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　工場・倉庫 / 店舗 ： SEC1 ：ゲリラ豪雨台風対策

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  /*　上部説明
  ----------------------------------------------------*/
  #p-factory #sec1 .colum1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 70px;
  }
  #p-factory #sec1 .colum1 .lbox {
    width: 100%;
    margin-bottom: 30px;
  }
  #p-factory #sec1 .colum1 .rlbox {
    width: 100%;
  }
  #p-factory #sec1 .colum1 .ms3 {
    margin-bottom: 15px;
  }
  #p-factory #sec1 .colum1 .ms3 br {
    display: none;
  }
  #p-factory #sec1 .colum1 .greenbox {
    border: 1px solid #90bc04;
    padding: 12% 10%;
    position: relative;
  }
  #p-factory #sec1 .colum1 .greenbox .lead {
    font-size: 1.8rem;
    color: #90bc04;
    margin-bottom: 10px;
    font-weight: 500;
    letter-spacing: 1px;
  }
  #p-factory #sec1 .colum1 .greenbox .lead br {
    display: none;
  }
  #p-factory #sec1 .colum1 .greenbox .tex {
    font-size: 1.4rem;
    line-height: 170%;
  }
  #p-factory #sec1 .colum1 .batch {
    font-size: 1.2rem;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #333;
    color: #FFF;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    line-height: 140%;
    font-weight: 500;
    position: absolute;
    right: 10px;
    top: -35px;
  }
  /*　下部 写真部分
  ----------------------------------------------------*/
  #p-factory #sec1 .colum2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #p-factory #sec1 .colum2 .lbox {
    width: 100%;
    margin-bottom: 30px;
  }
  #p-factory #sec1 .colum2 .rlbox {
    width: 100%;
  }
  #p-factory #sec1 .colum2 .ms4 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  #p-factory #sec1 .colum2 .tex {
    font-size: 1.4rem;
  }
  #p-factory #sec1 .colum2 .lbox .tilelist li {
    width: 47%;
    margin-bottom: 5%;
  }
  #p-factory #sec1 .colum2 .lbox .ofi {
    height: 130px;
  }
  #p-factory #sec1 .colum2 .rbox .tilelist li {
    width: 100%;
  }
  #p-factory #sec1 .colum2 .rbox .ofi {
    height: 200px;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　工場・倉庫 / 店舗 ： SEC2 ：外壁塗装施工事例

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #p-factory #sec2 #ex-dl {
    border-top: 1px solid #CCC;
  }
  #p-factory #sec2 #ex-dl .grp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-bottom: 1px solid #CCC;
    padding: 10% 0;
  }
  #p-factory #sec2 #ex-dl dt {
    width: 100%;
  }
  #p-factory #sec2 #ex-dl dd {
    width: 100%;
  }
  #p-factory #sec2 #ex-dl .ms1 {
    font-size: 2rem;
  }
  #p-factory #sec2 #ex-dl .tex {
    font-size: 1.5rem;
    letter-spacing: 1px;
    line-height: 150%;
    margin-bottom: 20px;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　工場・倉庫 / 店舗 ： SEC3 以下共通  タイルリスト

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #p-factory .tilelist.fac li {
    width: 100%;
    margin-bottom: 15%;
  }
  #p-factory .tilelist.fac .ofi {
    height: auto;
    aspect-ratio: 1.5;
    margin-bottom: 15px;
  }
  #p-factory .tilelist.fac .name {
    font-size: 1.7rem;
    letter-spacing: 1px;
    font-weight: 500;
    line-height: 100%;
    margin-bottom: 10px;
  }
  #p-factory .tilelist.fac .tex {
    font-size: 1.4rem;
    line-height: 150%;
  }
  #p-factory .tilelist.fac .tex br {
    display: none;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　工場・倉庫 / 店舗 ： SEC3 ：工場内間仕切りブース

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #p-factory #sec3 .ms3 {
    margin-bottom: 10px;
  }
  #p-factory #sec3 .lead {
    width: 100%;
    margin-left: 0px;
    margin-top: 0;
    letter-spacing: 0px;
    line-height: 180%;
    margin-bottom: 50px;
  }
  #p-factory #sec3 .lead br {
    display: none;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　工場・倉庫 / 店舗 ： SEC7 店舗

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  /*　ヴィジュアル
  ----------------------------------------------------*/
  #p-factory #sec7 {
    margin-bottom: 100px;
  }
  #p-factory #sec7 .cutph {
    height: auto;
    aspect-ratio: 1;
    width: 100%;
  }
  #p-factory #sec7 .inner {
    width: 100%;
    min-height: 0;
    padding-top: 0px;
  }
  #p-factory #sec7 .mds {
    font-size: 4rem;
    font-weight: 500;
    color: #90bc04;
    letter-spacing: 6px;
    line-height: 140%;
    margin-bottom: 5px;
  }
  #p-factory #sec7 .en {
    font-size: 2rem;
    margin-bottom: 50px;
  }
  #p-factory #sec7 .ms1 {
    line-height: 150%;
    letter-spacing: 2px;
    margin-bottom: 5px;
  }
  #p-factory #sec7 .honbun {
    font-size: 1.5rem;
    line-height: 180%;
    letter-spacing: 0;
    margin-bottom: 50px;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　工場・倉庫 / 店舗 ： SEC8 店舗

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #p-factory #sec8 .cons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #p-factory #sec8 .lbox {
    width: 100%;
    margin-bottom: 50px;
  }
  #p-factory #sec8 .rbox {
    width: 100%;
  }
  #p-factory #sec8 .ms1 {
    line-height: 150%;
    letter-spacing: 3px;
  }
  #p-factory #sec8 .joken {
    border-top: 1px solid #CCC;
  }
  #p-factory #sec8 .joken .grp {
    display: block;
    position: relative;
    padding: 7% 0;
    padding-left: 25%;
  }
  #p-factory #sec8 .joken dt {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: left;
  }
  #p-factory #sec8 .joken dd {
    width: 100%;
    font-size: 1.4rem;
  }
  #p-factory #sec8 .joken .num {
    border: 1px solid #9dc814;
    border: none;
    text-align: left;
    font-size: 1.4rem;
    width: 100%;
    line-height: 100%;
    letter-spacing: 0px;
    position: absolute;
    left: 0;
    top: 27%;
    font-weight: 500;
    color: #90bc04;
  }
  #p-factory #sec8 .joken .ms4 {
    margin-bottom: 0;
    width: 100%;
  }
}
/************************************************************************************

　スマホ設定

*************************************************************************************/
@media screen and (max-width: 670px) {
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  現場日記 インデックス

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #p-sitelog .lead {
    margin-bottom: 60px;
    font-size: 2rem;
    letter-spacing: 2px;
    font-weight: 500;
  }
  /*　現場日記リスト
  ----------------------------------------------------*/
  #p-sitelog .works-list {
    display: block;
  }
  #p-sitelog .works-list li {
    width: 100%;
    margin-bottom: 15%;
  }
  #p-sitelog .works-list .ofi {
    height: 250px;
    margin-bottom: 4%;
  }
  #p-sitelog .works-list a:hover {
    color: #90bc04;
  }
  #p-sitelog .works-list a:hover .cat span {
    border: 1px solid #90bc04;
  }
  #p-sitelog .works-list a:hover .ofi {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  #p-sitelog .works-list .name {
    margin-bottom: 10px;
  }
  #p-sitelog .works-list .latest {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#EEE), to(#EEE));
    background-image: linear-gradient(#EEE, #EEE);
    background-repeat: no-repeat;
    background-position: 4px 0px; /* 下線の初期位置 */
    background-size: 1px 100%; /* 下線のサイズ（横幅、高さ） */
  }
  #p-sitelog .works-list .latest .grp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    font-size: 1.4rem;
    margin-bottom: 10px;
    line-height: 140%;
    padding-left: 25px;
  }
  #p-sitelog .works-list .latest .grp:nth-child(1) {
    color: #90bc04;
  }
  #p-sitelog .works-list .latest .grp:nth-child(1) dt:before {
    background-color: #90bc04;
  }
  #p-sitelog .works-list .latest .grp {
    display: none;
  }
  #p-sitelog .works-list .latest .grp:nth-child(1) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #p-sitelog .works-list .latest .grp:nth-child(2) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #p-sitelog .works-list .latest .grp:nth-child(3) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #p-sitelog .works-list .latest dt {
    width: 40%;
    position: relative;
  }
  #p-sitelog .works-list .latest dd {
    width: 60%;
  }
  #p-sitelog .works-list .latest dt:before {
    content: "";
    width: 10px;
    height: 10px;
    display: inline-block;
    background-color: #CCC;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: -25px;
    margin-top: -5px;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　現場日記 記事ページ

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #p-sitelog.detail #sec1 {
    margin-bottom: 0;
  }
  #p-sitelog.detail .bt-boxline {
    width: 100%;
    display: block;
    margin: 0 auto;
    margin-top: 65px;
  }
  #p-sitelog.detail .project-tit {
    margin-bottom: 20px;
    position: relative;
  }
  #p-sitelog.detail .project-tit .ms0 {
    line-height: 130%;
    width: 100%;
    font-size: 2rem;
    margin-bottom: 15px;
  }
  #p-sitelog.detail .project-tit .cat {
    width: 100%;
    position: static;
    text-align: left;
    font-size: 1.4rem;
  }
  #p-sitelog.detail .project-tit .cat li {
    border: none;
    border-bottom: 1px solid #CCC;
    display: block;
    padding: 0;
    padding: 5px 0;
    margin-left: 0px;
  }
  #p-sitelog.detail .project-tit .cat .en {
    margin-right: 1.4em;
    color: #90bc04;
    font-size: 1.5rem;
    font-weight: 500;
  }
  /*　記事 ログスト
  ----------------------------------------------------*/
  #p-sitelog.detail #log-list-wp {
    border-top: 1px solid #CCC;
    border-bottom: 1px solid #CCC;
    padding: 10% 0% 10% 13%;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#CCC), to(#CCC));
    background-image: linear-gradient(#CCC, #CCC);
    background-repeat: no-repeat;
    background-position: 10px 0px; /* 下線の初期位置 */
    background-size: 1px 100%; /* 下線のサイズ（横幅、高さ） */
  }
  #p-sitelog.detail #log-list li {
    border: 1px solid #CCC;
    padding: 8%;
    margin-bottom: 10%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  #p-sitelog.detail #log-list li:last-child {
    margin-bottom: 0;
  }
  #p-sitelog.detail #log-list .lbox {
    width: 100%;
  }
  #p-sitelog.detail #log-list .rbox {
    width: 100%;
  }
  #p-sitelog.detail #log-list .ofi {
    height: auto;
    aspect-ratio: 1.5;
  }
  #p-sitelog.detail #log-list .num {
    font-size: 1.8rem;
    color: #90bc04;
    font-weight: 500;
    border-bottom: 1px solid #CCC;
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-family: "Jost", sans-serif;
  }
  #p-sitelog.detail #log-list .date {
    font-size: 1.2rem;
    margin-bottom: 0px;
    letter-spacing: 1px;
  }
  #p-sitelog.detail #log-list .name {
    font-size: 1.6rem;
    letter-spacing: 0px;
    margin-bottom: 30px;
    line-height: 150%;
  }
  #p-sitelog.detail #log-list li:before {
    content: "";
    width: 14px;
    height: 14px;
    display: inline-block;
    background-color: #333;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: -14%;
    margin-top: -7px;
    z-index: 1;
  }
  #p-sitelog.detail #log-list li:after {
    content: "";
    width: 12.1%;
    height: 1px;
    display: inline-block;
    background-color: #CCC;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: -12%;
    margin-top: -1px;
  }
  #p-sitelog.detail .bt-boxline a {
    padding: 4% 0%;
  }
}
/************************************************************************************

　スマホ設定

*************************************************************************************/
@media screen and (max-width: 670px) {
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　お知らせ   インデックス

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  /*　お知らせ リスト
  ----------------------------------------------------*/
  #p-info #info-list li {
    margin-bottom: 0;
    padding: 15% 0;
    border-bottom: 1px solid #DDD;
  }
  #p-info #info-list a {
    display: block;
  }
  #p-info #info-list .lbox {
    width: 100%;
  }
  #p-info #info-list .rbox {
    width: 100%;
    border-bottom: none;
    display: block;
  }
  #p-info #info-list .ofi {
    height: auto;
    aspect-ratio: 1.4;
  }
  #p-info #info-list .cat {
    margin-bottom: 20px;
    margin-top: -35px;
  }
  #p-info #info-list .cat span {
    font-size: 1.3rem;
    display: inline-block;
    background: #90bc04;
    padding: 0px 20px 0px 20px;
    line-height: 35px;
    color: #FFF;
    position: relative;
    border-radius: 0;
    font-weight: 500;
  }
  #p-info #info-list .cat span:before {
    content: "";
    width: 10px;
    height: 10px;
    display: inline-block;
    background-color: #FFF;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 20px;
    margin-top: -5px;
    display: none;
  }
  #p-info #info-list .ms3 {
    margin-bottom: 10px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    letter-spacing: 0;
  }
  #p-info #info-list .ms3 br {
    display: none;
  }
  #p-info #info-list .date {
    padding-bottom: 0;
  }
  #p-info #info-list .date span {
    color: #90bc04;
    font-weight: 500;
    margin-right: 15px;
  }
  #p-info #info-list li a:hover {
    color: #90bc04;
  }
  #p-info #info-list li a:hover .ms3 {
    color: #90bc04;
  }
  #p-info #info-list li a:hover .cat span {
    background: #90bc04;
  }
  #p-info #info-list li a:hover .ofi {
    -webkit-transform: scale(1.04);
            transform: scale(1.04);
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　お知らせ   記事ページ

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #p-info.detail .mainphoto {
    max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 10%;
  }
  #p-info.detail .tit {
    display: block;
    border-bottom: 1px solid #CCC;
    padding-bottom: 0px;
    margin-bottom: 50px;
  }
  #p-info.detail .tit .cat {
    width: 100%;
    margin-bottom: 20px;
  }
  #p-info.detail .tit .cat span {
    font-size: 1.3rem;
    display: inline-block;
    background: #333;
    padding: 4px 30px 6px 40px;
    color: #FFF;
    position: relative;
    border-radius: 50px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #p-info.detail .tit .cat span:before {
    content: "";
    width: 10px;
    height: 10px;
    display: inline-block;
    background-color: #FFF;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 20px;
    margin-top: -5px;
  }
  #p-info.detail .tit .inner {
    width: 100%;
  }
  #p-info.detail .tit .ms1 {
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 130%;
  }
  #p-info.detail .tit .date {
    margin-top: auto;
    font-size: 1.4rem;
    font-family: "Jost", sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    padding-bottom: 15px;
  }
  #p-info.detail .tit .date span {
    color: #90bc04;
    font-weight: 500;
    margin-right: 15px;
  }
  .ent-mainbox {
    max-width: 900px;
    margin: 0 auto;
    line-height: 220%;
    /* border: 1px solid #CCC;*/
  }
  .ent-mainbox h2 {
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 40px;
    color: #333;
  }
  .ent-mainbox h2:after {
    content: "";
    width: 40px;
    height: 2px;
    display: block;
    background-color: #333;
    margin-top: 15px;
  }
  .ent-mainbox h3 {
    font-size: 2rem;
    font-size: 1.8rem;
    line-height: 150%;
    margin-bottom: 5px;
  }
  .ent-mainbox img {
    margin-bottom: 7px;
  }
  .ent-mainbox .gallery {
    pointer-events: none;
  }
  .ent-mainbox .gallery-item {
    width: 100% !important;
    /*         border: 1px solid #CCC;*/
  }
  .ent-mainbox .gallery dt {
    width: 100% !important;
  }
  .ent-mainbox .gallery-icon {
    padding-right: 0px !important;
    width: 100% !important;
  }
  .ent-mainbox .gallery img {
    width: 100%;
    height: auto;
    border: none !important;
    padding-right: 0 !important;
    margin-bottom: 0;
  }
  /*WP送りボタン */
  #ent-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 150px;
    margin-bottom: 100px;
  }
  #ent-nav li {
    font-size: 1.5rem;
    margin-left: 2em;
    letter-spacing: 2px;
  }
  #ent-nav li:first-child {
    margin-left: 0;
  }
  #ent-nav i {
    font-size: 1.7em;
    vertical-align: -5px;
    color: #90bc04;
  }
  #ent-nav a {
    color: #666;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #ent-nav a:hover {
    color: #90bc04;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　お知らせ  最近の記事リスト

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #p-info.detail #latest-wp {
    border-top: 1px solid #CCC;
    padding-top: 40px;
  }
  #p-info.detail #latest-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #p-info.detail #latest-list li {
    width: 46%;
    line-height: 140%;
    margin-bottom: 15%;
  }
  #p-info.detail #latest-list a {
    color: #666;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #p-info.detail #latest-list .ofi {
    height: auto;
    aspect-ratio: 1.4;
    margin-bottom: 12px;
  }
  #p-info.detail #latest-list .cat {
    font-size: 1.1rem;
    margin-bottom: 3px;
    color: #6ab806;
    position: relative;
    padding-left: 10px;
  }
  #p-info.detail #latest-list .cat:before {
    content: "";
    width: 6px;
    height: 6px;
    display: inline-block;
    background-color: #6ab806;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    margin-top: -2px;
    left: 0;
  }
  #p-info.detail #latest-list .title {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 5px;
    line-height: 150%;
    color: #333;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #p-info.detail #latest-list .title br {
    display: none;
  }
  #p-info.detail #latest-list .date {
    font-size: 1rem;
    letter-spacing: 0px;
  }
  #p-info.detail #latest-list .date span {
    margin-right: 0.5em;
  }
  #p-info.detail #latest-list a:hover {
    color: #6ab806;
  }
  #p-info.detail #latest-list a:hover .title {
    color: #6ab806;
  }
}
/************************************************************************************

　スマホ設定

*************************************************************************************/
@media screen and (max-width: 670px) {
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　トップ

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  /*　
  ----------------------------------------------------*/
  #p-top #wrap {
    padding-top: 0;
  }
  #p-top #head {
    margin-bottom: 25px;
  }
  /*　セクションタイトル
  ----------------------------------------------------*/
  #p-top .sec-tit {
    margin-bottom: 100px;
  }
  #p-top .sec-tit .ms0 {
    font-size: 2.4rem;
    letter-spacing: 10px;
  }
  #p-top .sec-tit .line {
    width: 185px;
    margin: 0 1.5em;
  }
  #p-top .sec-tit .en {
    ont-size: 2.6rem;
  }
  #p-top .sec-tit:after {
    content: "";
    width: 40px;
    height: 3px;
    background-color: #333;
    margin-top: 25px;
    position: absolute;
    left: 0;
    top: 65px;
  }
  /*　セクションタイトル Bタイプ
  ----------------------------------------------------*/
  #p-top .sec-tit.b {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-bottom: 130px;
    margin-bottom: 90px;
  }
  #p-top .sec-tit.b .ms0 {
    line-height: 130%;
    width: 100%;
  }
  #p-top .sec-tit.b .line {
    display: none;
  }
  #p-top .sec-tit.b .en {
    width: 100%;
    margin-bottom: 5px;
  }
  #p-top .sec-tit.b:after {
    position: absolute;
    left: 0;
    top: auto;
    bottom: -30px;
  }
  /*　メインビジュアル
  ----------------------------------------------------*/
  #p-top #topvis {
    width: 100%;
    margin: 0 auto;
    height: 75vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    margin-bottom: 200px;
  }
  #p-top #topvis #logo-yd {
    width: 90%;
    position: absolute;
    bottom: -6%;
    right: 5%;
    z-index: 10;
  }
  #p-top #topvis .photo {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 75vh;
    background: #f7f7f7;
    overflow: hidden;
  }
  #p-top #topvis .tex {
    font-size: 2.3rem;
    font-weight: 400;
    letter-spacing: 6px;
    line-height: 220%;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　共通パーツ

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　SEC1 イントロ

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #p-top #sec1 .cons {
    max-width: 900px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-bottom: 150px;
  }
  #p-top #sec1 .lbox {
    width: 100%;
  }
  #p-top #sec1 .rbox {
    width: 100%;
    position: relative;
    padding-top: 0px;
    margin-bottom: 50px;
  }
  #p-top #sec1 .ms3 {
    font-weight: 400;
    letter-spacing: 3px;
    line-height: 220%;
    margin: 0 0 0 auto;
    margin-bottom: 100px;
    margin-right: 40px;
  }
  #p-top #sec1 .en {
    font-weight: normal;
    color: #999999;
    font-size: 1.8rem;
    letter-spacing: 2px;
    position: absolute;
    left: 30px;
    top: 50px;
  }
  #p-top #sec1 .en span {
    position: relative;
  }
  #p-top #sec1 .en span:before {
    content: "";
    width: 150px;
    height: 1px;
    display: inline-block;
    background-color: #CCC;
    position: absolute;
    top: -10px;
    left: 50%;
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  #p-top #sec1 .cutph {
    aspect-ratio: 1;
    position: relative;
  }
  #p-top #sec1 .bt-dtl {
    margin: 0 0 0 auto;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　SEC2 施工事例

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #p-top #sec2 {
    margin-bottom: 100px;
  }
  #p-top #sec2 .cons {
    position: relative;
  }
  #p-top #sec2 .bt-gray {
    position: absolute;
    right: 0;
    top: 40px;
  }
  #p-top #sec2 .sec-tit {
    margin-bottom: 60px;
  }
  #p-top #sec2 .topwork {
    width: 90%;
    margin: 0 auto;
  }
  #p-top #sec2 .topwork li {
    width: 48%;
    width: 100%;
  }
  #p-top #sec2 .topwork a {
    color: #666;
  }
  #p-top #sec2 .topwork a:hover {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    color: #90bc04;
  }
  #p-top #sec2 .topwork a:hover .ofi {
    -webkit-filter: brightness(130%);
            filter: brightness(130%);
  }
  #p-top #sec2 .topwork .cat-wp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 5px;
    font-size: 1.3rem;
  }
  #p-top #sec2 .topwork .cat {
    color: #333;
    padding-left: 30px;
    position: relative;
  }
  #p-top #sec2 .topwork .cat:before {
    content: "";
    width: 50px;
    height: 1px;
    display: inline-block;
    background-color: #000;
    position: absolute;
    bottom: -30px;
    left: 15px;
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    z-index: 1;
  }
  #p-top #sec2 .topwork .date {
    color: #999;
    letter-spacing: 1px;
  }
  #p-top #sec2 .topwork .ofi {
    aspect-ratio: 1.5;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #p-top #sec2 .topwork .inner {
    background: #FFF;
    font-size: 1.3rem;
    width: 75%;
    padding: 5%;
    padding-left: 0;
    margin-top: -7%;
    position: relative;
    z-index: 1;
    line-height: 160%;
  }
  #p-top #sec2 .topwork .name {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 500;
  }
  #p-top #sec2 .topwork .owner, #p-top #sec2 .topwork .type {
    font-size: 1.2rem;
    padding-left: 10px;
    letter-spacing: 1px;
  }
  #p-top #sec2 .topwork .owner:before, #p-top #sec2 .topwork .type:before {
    content: "";
    width: 7px;
    height: 1px;
    display: inline-block;
    background-color: #CCC;
    position: absolute;
    top: 50%;
    left: 0px;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　SEC3 体験する

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #p-top #sec3 {
    margin-bottom: 150px;
  }
  #p-top #sec3 .cons {
    padding-bottom: 10%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#f7f7f7), to(#f7f7f7));
    background-image: linear-gradient(#f7f7f7, #f7f7f7);
    background-repeat: no-repeat;
    background-position: 25px 50px;
    background-size: 100% 100%;
  }
  #p-top #sec3 .lbox {
    width: 100%;
  }
  #p-top #sec3 .rbox {
    width: 100%;
    padding-top: 5%;
    padding-right: 7%;
    margin-bottom: 25px;
  }
  #p-top #sec3 .cutph {
    aspect-ratio: 1.4;
  }
  #p-top #sec3 #p2 {
    width: 30%;
    border: 1px solid #CCC;
    position: relative;
    z-index: 1;
    margin-bottom: 0;
    margin-left: 0;
    position: absolute;
    right: 20%;
    bottom: -3%;
  }
  #p-top #sec3 #p3 {
    width: 93%;
  }
  #p-top #sec3 .bt-boxlineflx {
    margin-bottom: 12px;
  }
  #p-top #sec3 .bt-boxlineflx a {
    border: 2px solid #6ab806;
  }
  #p-top #mid-vis {
    margin-right: 7%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 150px;
    margin-bottom: 0px;
  }
  #p-top #mid-vis .gsp-para-wp {
    height: 200px;
  }
  #p-top #mid-vis #midvis1 {
    width: 65%;
  }
  #p-top #mid-vis #midvis2 {
    width: 35%;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　SEC4 お知らせ

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #p-top #sec4 {
    margin-bottom: 50px;
  }
  #p-top #sec4 .cons {
    position: relative;
    padding-left: 0%;
  }
  #p-top #sec4 .sec-tit {
    position: relative;
    left: 0;
    top: 0;
  }
  #p-top #sec4 .bt-gray {
    position: absolute;
    left: auto;
    right: 0;
    top: 40px;
  }
  #p-top #sec4 #info-dl .grp a {
    border-bottom: 1px solid #e9e8e8;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 5% 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #p-top #sec4 #info-dl .grp:first-child a {
    padding-top: 0;
  }
  #p-top #sec4 #info-dl .grp a:hover .ms4 {
    color: #90bc04;
  }
  #p-top #sec4 #info-dl .grp a:hover dt {
    color: #90bc04;
  }
  #p-top #sec4 #info-dl dt {
    font-size: 1.1rem;
    letter-spacing: 0px;
    width: 20%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #p-top #sec4 #info-dl dd {
    width: 75%;
  }
  #p-top #sec4 #info-dl .cat {
    font-size: 1.2rem;
    padding-left: 15px;
    margin-bottom: 1px;
    position: relative;
    letter-spacing: 2px;
  }
  #p-top #sec4 #info-dl .cat:before {
    content: "";
    width: 10px;
    height: 1px;
  }
  #p-top #sec4 #info-dl .ms4 {
    font-size: 1.5rem;
    line-height: 150%;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　SEC5 吉成建築にできること サービス

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #p-top #sec5 {
    margin-bottom: 50px;
  }
  /*　サービス コラム
  ----------------------------------------------------*/
  #p-top .sv-colum {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-bottom: 20%;
    margin-bottom: 100px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#f7f7f7), to(#f7f7f7));
    background-image: linear-gradient(#f7f7f7, #f7f7f7);
    background-repeat: no-repeat;
    background-position: 40px 70px;
    background-size: 100% 100%;
    width: 110%;
    padding-right: 10%;
  }
  #p-top .sv-colum .lbox {
    width: 100%;
    padding-top: 5%;
  }
  #p-top .sv-colum .rbox {
    width: 100%;
    padding-right: 5%;
  }
  #p-top .sv-colum .cutph {
    aspect-ratio: 1.3;
    margin-bottom: 20px;
  }
  #p-top .sv-colum .lead {
    font-size: 1.4rem;
    margin-top: -30px;
    margin-bottom: 40px;
    color: #666;
  }
  #p-top .sv-colum .logo {
    width: 220px;
    margin-bottom: 10px;
  }
  #p-top .sv-colum .tex {
    font-size: 1.5rem;
    line-height: 180%;
  }
  #p-top .sv-colum .tex span {
    white-space: nowrap;
  }
  /*　サービス コラム  トリップ（反転）
  ----------------------------------------------------*/
  #p-top #trip.sv-colum {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    background-position: 40px 70px;
    background-size: 100% 100%;
  }
  #p-top #trip.sv-colum .rbox {
    width: 100%;
    padding-left: 0%;
    padding-right: 0;
  }
  #p-top #trip.sv-colum #logo-trip {
    width: 105px;
  }
  /*　サービス タイトル1（住宅）
  ----------------------------------------------------*/
  /*#p-top .sv-tit{
      position: relative;
      margin-bottom: 50px;


      dl{
          display: flex;
          justify-content: center;
      }

      .num{ 
          text-align: center;
          font-size: 5.5rem;
          font-family: "Jost", sans-serif;
          font-weight: 500;
          color: imp.$clr-green1;
          vertical-align: text-top;
          line-height: 100%;
          margin-left: -0.9em;
          margin-bottom: 20px;
      }


      .num span{ font-size: 0.5em; vertical-align: text-top;}

      .ms0{
          -webkit-writing-mode:horizontal-tb;
          -ms-writing-mode:lr-tb;
          writing-mode:horizontal-tb;

          letter-spacing: 10px;
          color: #333;
      }

      .ms0 span{ 
          border-left: 1px solid #666;
          padding-left: 5px;
      }

      .en{
          -webkit-writing-mode:horizontal-tb;
          -ms-writing-mode:lr-tb;
          writing-mode:horizontal-tb;
          font-family: "Jost", sans-serif;
          color: #999;
          font-weight:500;
          letter-spacing: 3px;
          margin-left: 7px;

      }
  }
  */
  /*　サービス タイトル1（住宅）
  ----------------------------------------------------*/
  #p-top .sv-tit {
    position: relative;
    margin-bottom: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #p-top .sv-tit dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  #p-top .sv-tit dt {
    width: 100%;
  }
  #p-top .sv-tit dd {
    width: 100%;
  }
  #p-top .sv-tit .num {
    text-align: center;
    font-size: 5.5rem;
    font-family: "Jost", sans-serif;
    font-weight: 500;
    color: #9dc814;
    vertical-align: text-top;
    line-height: 100%;
    margin: 0 15px 0 0;
    display: inline-block;
  }
  #p-top .sv-tit .num span {
    font-size: 0.5em;
    vertical-align: text-top;
  }
  #p-top .sv-tit .ms0 {
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    letter-spacing: 0px;
    font-size: 2rem;
  }
  #p-top .sv-tit .ms0 span {
    border-left: none;
    padding-left: 5px;
  }
  #p-top .sv-tit .en {
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    font-family: "Jost", sans-serif;
    letter-spacing: 1px;
    margin-left: 7px;
    margin-bottom: 0px;
    font-size: 1.4rem;
    font-weight: 400;
  }
  /*　リノベーション 不動産情報
  ----------------------------------------------------*/
  #p-top #sec5 .sv-colum2 {
    margin-bottom: 0px;
  }
  #p-top #sec5 #reno-est {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #p-top #sec5 #reno-est li {
    width: 100%;
    margin-bottom: 100px;
  }
  #p-top #sec5 #reno-est .abv {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-bottom: 60px;
  }
  #p-top #sec5 #reno-est .abv .lbox {
    width: 100%;
  }
  #p-top #sec5 #reno-est .abv .rbox {
    width: 100%;
    padding-top: 0%;
    margin-bottom: 15px;
  }
  #p-top #sec5 #reno-est .abv dl {
    padding-left: 0px;
  }
  #p-top #sec5 #reno-est .ms0 span:after {
    display: none;
  }
  #p-top #sec5 #reno-est .num {
    margin-left: 0;
  }
  #p-top #sec5 #reno-est .cutph {
    aspect-ratio: 1.5;
    height: auto;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
  #p-top #sec5 #reno-est .bot {
    position: relative;
    padding: 0;
    margin: 0;
    margin-top: -70px;
  }
  #p-top #sec5 #reno-est .tex {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 25px;
  }
  #p-top #sec5 #reno-est .tex br {
    display: none;
  }
  #p-top #sec5 #reno-est .bt-dtl {
    position: static;
    margin: 0;
  }
  /*リノベーション タイトル*/
  #p-top #sec5 .sv-colum2 #reno-est .sv-tit {
    position: relative;
    margin-bottom: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #p-top #sec5 .sv-colum2 #reno-est .sv-tit dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  #p-top #sec5 .sv-colum2 #reno-est .sv-tit dt {
    width: 100%;
  }
  #p-top #sec5 .sv-colum2 #reno-est .sv-tit dd {
    width: 100%;
  }
  #p-top #sec5 .sv-colum2 #reno-est .sv-tit .num {
    text-align: center;
    font-size: 5.5rem;
    font-family: "Jost", sans-serif;
    font-weight: 500;
    color: #9dc814;
    vertical-align: text-top;
    line-height: 100%;
    margin: 0 15px 0 0;
    display: inline-block;
  }
  #p-top #sec5 .sv-colum2 #reno-est .sv-tit .num span {
    font-size: 0.5em;
    vertical-align: text-top;
  }
  #p-top #sec5 .sv-colum2 #reno-est .sv-tit .ms0 {
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    letter-spacing: 0px;
    font-size: 2rem;
  }
  #p-top #sec5 .sv-colum2 #reno-est .sv-tit .ms0 span {
    border-left: none;
    padding-left: 5px;
  }
  #p-top #sec5 .sv-colum2 #reno-est .sv-tit .en {
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    font-family: "Jost", sans-serif;
    letter-spacing: 1px;
    margin-left: 7px;
    margin-bottom: 0px;
    font-size: 1.4rem;
    font-weight: 400;
  }
  /*　工場 倉庫 店舗
  ----------------------------------------------------*/
  #p-top #sec5 .sv-colum3 {
    margin-bottom: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  #p-top #sec5 .sv-colum3 .lbox {
    width: 100%;
    margin-bottom: 30px;
  }
  #p-top #sec5 .sv-colum3 .rbox {
    width: 100%;
    margin-bottom: 15px;
  }
  #p-top #sec5 .sv-colum3 .photo-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #p-top #sec5 .sv-colum3 .photo-list li {
    width: 49.5%;
  }
  #p-top #sec5 .sv-colum3 .cutph {
    aspect-ratio: 0.8;
  }
  /*工場 倉庫 店舗 タイトル*/
  #p-top #sec5 .sv-colum3 .sv-tit {
    position: relative;
    margin-bottom: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #p-top #sec5 .sv-colum3 .sv-tit dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  #p-top #sec5 .sv-colum3 .sv-tit dt {
    width: 100%;
  }
  #p-top #sec5 .sv-colum3 .sv-tit dd {
    width: 100%;
  }
  #p-top #sec5 .sv-colum3 .sv-tit .num {
    text-align: center;
    font-size: 5.5rem;
    font-family: "Jost", sans-serif;
    font-weight: 500;
    color: #9dc814;
    vertical-align: text-top;
    line-height: 100%;
    margin: 0 15px 0 0;
    display: inline-block;
  }
  #p-top #sec5 .sv-colum3 .sv-tit .num span {
    font-size: 0.5em;
    vertical-align: text-top;
  }
  #p-top #sec5 .sv-colum3 .sv-tit .ms0 {
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    letter-spacing: 0px;
    font-size: 2rem;
  }
  #p-top #sec5 .sv-colum3 .sv-tit .ms0 span {
    border-left: none;
    padding-left: 5px;
  }
  #p-top #sec5 .sv-colum3 .sv-tit .en {
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    font-family: "Jost", sans-serif;
    letter-spacing: 1px;
    margin-left: 7px;
    margin-bottom: 0px;
    font-size: 1.4rem;
    font-weight: 400;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　SEC6 デザイン 性能 品質

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #p-top #sec6 {
    margin-bottom: 100px;
  }
  #p-top #sec6 .cons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-top: 1px solid #CCC;
    padding-top: 15%;
  }
  #p-top #sec6 .sec-tit {
    margin-bottom: 60px;
  }
  #p-top #sec6 .ms0 {
    letter-spacing: 0;
  }
  #p-top #sec6 .lead {
    margin-bottom: 30px;
  }
  #p-top #sec6 .lead br {
    display: none;
  }
  #p-top #sec6 .lbox {
    width: 100%;
  }
  #p-top #sec6 .rbox {
    width: 100%;
  }
  #p-top #sec6 .dtl-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #p-top #sec6 .dtl-list li {
    width: 100%;
    border: 2px solid #90bc04;
    margin-bottom: 3%;
  }
  #p-top #sec6 .dtl-list li a {
    padding: 10px 20px;
    text-align: left;
    position: relative;
    z-index: 1;
  }
  #p-top #sec6 .dtl-list li a:hover {
    color: #FFF !important;
  }
  #p-top #sec6 .dtl-list i {
    font-size: 1.9em;
    margin-right: 10px;
    vertical-align: -5px;
  }
  #p-top #sec6 .dtl-list .btn1::before {
    z-index: -1;
  }
  /* ––––––––––––––––––––––––––––––––––––––––––––––––––

  　　SEC7 私達について

  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  #p-top #sec7 {
    margin-bottom: 75px;
    padding: 20% 0% 15%;
    background: #f7f7f7;
  }
  #p-top #sec7 .cons {
    position: relative;
  }
  #p-top #sec7 .ms0 {
    letter-spacing: 0;
  }
  #p-top #sec7 .ms3 {
    font-size: 1.9rem;
    font-weight: 400;
    letter-spacing: 4px;
    line-height: 220%;
    position: static;
    margin: 0 auto;
    margin-bottom: 40px;
  }
  #p-top #sec7 .colum {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #p-top #sec7 .colum .lbox {
    width: 100%;
  }
  #p-top #sec7 .colum .rbox {
    width: 100%;
    padding-top: 10%;
  }
  #p-top #sec7 .colum #p-about {
    aspect-ratio: 1.5;
  }
  #p-top #sec7 .colum .sns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-bottom: 1px solid #CCC;
    padding-bottom: 20px;
    margin-bottom: 0px;
  }
  #p-top #sec7 .colum .sns .tex {
    font-size: 1.2rem;
    padding-right: 50px;
  }
  #p-top #sec7 .colum .icon {
    width: 25px;
    vertical-align: top;
    line-height: 100%;
  }
  #p-top #sec7 #abt-link {
    font-size: 1.4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 30px;
  }
  #p-top #sec7 #abt-link a {
    color: #333;
    padding-left: 23px;
    position: relative;
    white-space: nowrap;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #p-top #sec7 #abt-link a:before {
    content: "";
    width: 12px;
    height: 1px;
    display: inline-block;
    background-color: #666;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #p-top #sec7 #abt-link a:hover {
    color: #90bc04;
  }
  #p-top #sec7 #abt-link a:hover:before {
    background-color: #90bc04;
  }
  #p-top #sec7 #abt-link li {
    width: 45%;
    margin-bottom: 15px;
  }
}