@charset 'UTF-8';
/* --------------------------------------------------
      大項目
-----------------------------------------------------
  CSSリセット
  フォント読み込み設定
  基本設定
  htmlタグ共通設定
  レイアウト設定
  汎用パーツ
  オプションクラス
  ページネーション
  サイトフッター
  旧デザインスタイル設定
*/


/* -------------------------------------------------- */
/*    CSSリセット                                      */
/* -------------------------------------------------- */
p {margin:0;padding:0}ol,ul {list-style:none;margin:0;padding:0}
input,textarea {margin:0;font-size:100%;resize:none}
input[type="text"],input[type="date"],input[type="email"],input[type="number"],input[type="url"] {word-break:normal;white-space:nowrap;-webkit-appearance:none;-moz-appearance:none;-ms-appearance:none;-o-appearance:none;appearance:none}
table {width:100%;border-collapse:collapse;border-spacing:0;font-size:100%}
dl,dt,dd,th,td {margin:0;padding:0}
h1,h2,h3,h4,h5,h6 {font-weight:400;margin:0;padding:0}
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video,dialog {margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent}
img {margin:0;padding:0;vertical-align:middle;border:0;max-width:100%;height:auto}
table img {margin:0;padding:0;vertical-align:middle;border:0}
article,aside,dialog,figure,footer,header,hgroup,nav,section {display:block}
nav ul {list-style:none}
*,*:before,*:after {-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;-o-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
*:focus {outline:none!important}
label,select,button {cursor:pointer}
@media all and (-ms-high-contrast:none),(-ms-high-contrast:active) {select::-ms-expand {display:none}}
@media screen\0 {select::-ms-expand {display:none}}
a {outline:none;transition:0.3s;color:#000}
@media only screen and (min-width:1025px) {a:hover {text-decoration:none;opacity:.5}}
a:link,a:visited,a:active {text-decoration:none}


/* -------------------------------------------------- */
/*   フォント読み込み設定                               */
/* -------------------------------------------------- */
@font-face {
  font-family  : "HigureGothic";
  font-style   : normal;
  font-weight  : 400;
  src          : url("/wp/wp-content/themes/wp-templ/assets/fonts/HigureGothic-Regular.woff") format("woff");
  font-display : swap;
}

@font-face {
  font-family  : "HigureGothic";
  font-style   : bold;
  font-weight  : 700;
  src          : url("/wp/wp-content/themes/wp-templ/assets/fonts/HigureGothic-Bold.woff") format("woff");
  font-display : swap;
}

@font-face {
  font-family  : "HigureGothic";
  font-weight  : 900;
  src          : url("/wp/wp-content/themes/wp-templ/assets/fonts/HigureGothic-Black.woff") format("woff");
  font-display : swap;
}


/* -------------------------------------------------- */
/*    基本設定                                         */
/* -------------------------------------------------- */
/*
  root変数設定
  - font-family
  - font-size
  - color
  フォントサイズ指定
*/

/* root変数設定 */
:root {
  /* font-family */
  --base_font-family : 'Noto Sans JP', Helvetica, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ W3", "メイリオ", sans-serif;
  --ff-title     : "HigureGothic";

  /* font-size */
  --base_font-size  : 10px;
  --fs-site-ttl : 8.1rem; 
  --fs-page-ttl : 5.5rem;
  --fs-ttl-ll   : 3.6rem;
  --fs-ttl-l    : 3rem;

  --fs-ttl-m    : 2.2rem; 
  --fs-ttl-s    : 1.8rem; 
  --fs-txt      : 1.5rem; 
  --fs-en-ttl   : 1.4rem;
  --fs-txt-s    : 1.2rem; 
  --fs-small    : 1rem;

  /* color */
  --color-across-red   : #850000;
  --color-across-gray  : #5c5a5a;
  --color-iekoi-yellow : #e9b900;
  --color-actis-black  : #221815;
  --color-green-green  : #317e69;
}

/* フォントサイズ指定 */
.fs-site-ttl {
  font-size: var(--fs-site-ttl);
  letter-spacing: 0.25em;
}

.fs-page-ttl {
  font-size: var(--fs-page-ttl);
  letter-spacing: 0.25em;

}

.fs-ttl-ll {
  font-size: var(--fs-ttl-ll);
  letter-spacing: 0.25em;

}

.fs-ttl-l {
  font-size: var(--fs-ttl-l);
  letter-spacing: 0.25em;

}

.fs-ttl-m {
  font-size: var(--fs-ttl-m);
  letter-spacing: 0.25em;

}

.fs-ttl-s {
  font-size: var(--fs-ttl-s);
  letter-spacing: 0.25em;

}

.fs-txt {
  font-size: var(--fs-txt);
  letter-spacing: 0.25em;

}

.fs-en-ttl {
  font-size: var(--fs-en-ttl);
  letter-spacing: 0.25em;

}

.fs-txt {
  font-size: var(--fs-txt);
  letter-spacing: 0.25em;

}

.fs-txt-s {
  font-size: var(--fs-txt-s);
  letter-spacing: 0.25em;

}

.fs-small {
  font-size: var(--fs-small);
  letter-spacing: 0.25em;
}

@media (max-width: 767px) {
  .fs-page-ttl {
    font-size: var(--fs-ttl-ll);
    letter-spacing: 0.25em;
  }
  .fs-ttl-ll {
    font-size: var(--fs-ttl-l);
    letter-spacing: 0.25em;
  }

  .fs-ttl-l {
    font-size: var(--fs-ttl-m);
    letter-spacing: 0.25em;
  }

  .fs-ttl-m {
    font-size: var(--fs-ttl-s);
    letter-spacing: 0.25em;
  }

  .fs-ttl-s {
    font-size: var(--fs-txt);
    letter-spacing: 0.25em;
  }
}

/* -------------------------------------------------- */
/*    htmlタグ共通設定                                 */
/* -------------------------------------------------- */
html {
  font-size        : var(--base_font-size);
  text-size-adjust     : 100%;
  font-feature-settings: "palt";
  letter-spacing: 0.25em;
}

body {
  font-family : var(--base_font-family);
  font-size   : var(--fs-txt);
  width       : 100%;
  color: #000;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  letter-spacing: 0.25em;
  height: 100%;
  word-break: break-word;
  font-feature-settings: "palt";
}

p {
  line-height: 2em;
}

img {
  vertical-align: baseline;
}

main {
  padding-bottom: 120px;
}


/* -------------------------------------------------- */
/*    レイアウト設定                                   */
/* -------------------------------------------------- */
/*
  基本レイアウト
  コンテンツ横幅最大・最小指定
  共通レイアウト
  - メインビジュアル
  - シンプルなドキュメントレイアウト
  flexレイアウト
  - 上下左右センター配置
  - 上下左右センター配置 縦並び
  - 縦並び
  - 2カラム要素
  - 横並び 逆配置
*/

/* 基本レイアウト */
#wrap {
  width: 100%;
  overflow: hidden
}

.wcm {
  max-width: 1036px;
  padding: 0 20px;
  margin: 0 auto
}

.wcm1 {
  max-width: 880px;
  padding: 0 20px;
  margin: 0 auto
}

.wcm2 {
  max-width: 700px;
  margin: 0 auto
}

.txt-base {
  font-size: var(--fs-txt);
  line-height: 32px;
  line-height: 2.28571em;
}

.txt-base p {
  margin-top: 27px
}

.txt-base p:first-child {
  margin-top: 0
}

.full-screen{
  width      : 100%;
  height     : 100vh;
  min-height : 750px;
  max-height : 100%;
  background-size: cover;
  background-position: center;
}
.full-screen.margin20{
  width  : calc(100% - 40px);
  height : calc(100vh - 40px);
  margin :20px auto;
}
.full-screen.margin40{
  width  : calc(100% - 80px);
  height : calc(100vh - 80px);
  margin : 40px auto;

}
.full-screen.margin60{
  width  : calc(100% - 120px);
  height : calc(100vh - 120px);
  margin : 60px auto;
}
@media (max-width:767px) {
  .txt-base {
    line-height: 24.5px;
    line-height: 1.88462em
  }

  .txt-base p {
    margin-top: 24px
  }

  .txt-base p:first-child {
    margin-top: 0
  }
}

/* コンテンツ横幅最大・最小指定 */
.maxWidth-1600 {
  max-width: 1600px;
  width: calc(100% - 40px);
  margin: 0 auto;
}
.maxWidth-1200 {
  max-width: 1200px;
  width: calc(100% - 40px);
  margin: 0 auto;
}
.maxWidth-940 {
  max-width: 940px;
  width: calc(100% - 40px);
  margin: 0 auto;
}
.maxWidth-900 {
  max-width: 900px;
  width: calc(100% - 40px);
  margin: 0 auto;
}
.maxWidth-800 {
  max-width: 800px;
  margin: 0 auto;
}
.maxWidth-600 {
  max-width: 600px;
  margin: 0 auto;
}

.minWidth-1200 {
  min-width: 1200px;
  margin: 0 auto;
}
.minWidth-940 {
  min-width: 940px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .minWidth-1200,
  .minWidth-940 {
    min-width: initial;
  }
}

/* メインビジュアル */
.main-visual {
  width: 100%;
  height: 100vh;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.main-visual .catch{
  font-family: var(--ff-title);
  font-size: var(--fs-page-ttl);
  font-weight: bold;
  letter-spacing: 0.25em;
  margin-right: -0.25em;
  text-align: center;
}
.main-visual .en{
  font-family: var(--fs-en-ttl);
  font-weight: bold;
  letter-spacing: 0.25em;
  margin-right: -0.25em;
}
@media (max-width: 767px) {

  .main-visual .catch{
    font-size: var(--fs-ttl-ll);
  }
  .main-visual .en{
    font-weight: normal;
  }
}
/* シンプルなドキュメントレイアウト */

.layout-simple-doc {
  max-width: 900px;
  width: calc(100% - 40px);
  margin: 80px auto 0;
}

.layout-simple-doc:first-child {
  margin: 0 auto;
}

.layout-simple-doc>.title {
  display: flex;
  align-items: center;
  width: 100%;
  height: fit-content;
  padding: 12px 30px;
  position: relative;
  font-size: var(--fs-ttl-m);
  color: #fff;
  background-color: #5b5959;
  box-sizing: border-box;
}

.layout-simple-doc>.content {
  width: 100%;
  padding: 40px;
  line-height: 2;
  box-sizing: border-box;
  border: #5b5959 1px solid;
}

.layout-simple-doc>.content .sec {
  padding-left: 1rem;
  margin-top: 4rem;
}

.layout-simple-doc>.content .sec:first-child {
  margin-top: 0;
}

.layout-simple-doc>.content .sec>.sub-title {
  margin-left: -1.5rem;
}

.layout-simple-doc>.content .text {
  margin-top: 1em;
}

.layout-simple-doc>.content .text:first-child {
  margin-top: 0;
}

.layout-simple-doc>.content .sub-title {
  font-size: var(--fs-ttl-s);
  margin-bottom: 1em;
  line-height: 1.3;
  padding-left: 0.75em;
  border-left: 6px solid #5b5959;
  font-weight: 500;
}


@media screen and (max-width: 765px) {
  .layout-simple-doc>.content {
    padding: 20px;
  }
}

/* --- flexレイアウト -------------------- */

.flex {
  display: flex;
}

/* 上下左右センター配置 */
.f-centered {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 上下左右センター配置 縦並び */
.f-colmCentered {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/* 縦並び */
.f-colm {
  display: flex;
  flex-direction: column;
}
/* 2カラム要素 */
.f-2colm{
  display: flex;
}
.f-2colm .f-item {
  flex: 1;
}
/* 横並び 逆配置 */
.f-reverse {
  display: flex;
  flex-direction: row-reverse;
}
.f-list{
  display: flex;
  gap: 10px;
}
.f-list > .f-item{
  display: flex;
  flex: 1;
}
.f-list > .f-item .title,
.f-list > .f-item .text{
  display: flex;
  flex: 1;
}
.f-list > .f-item.dummy{
  opacity: 0;
}

@media (max-width: 767px) {
  .f-2colm,
  .f-list{
    flex-direction: column;
    align-items: center;
  }
}





/* -------------------------------------------------- */
/*    汎用パーツ                                       */
/* -------------------------------------------------- */
/*
  タグ
  ボタンデザイン
  - ボタン ベーシックデザイン
  - ボタン 角丸デザイン
  独自リストスタイル
  ブログカード シンプルデザイン
*/


/* タグ */
.tag {
  width: fit-content;
  padding: 6px 11px;
  color: #fff;
  font-size: var(--fs-en-ttl);
  line-height: 1;
}


/* --- ボタンデザイン  -------------------- */
/* ボタン ベーシックデザイン */
.btn-basic {
  display: block;
  max-width: 144px;
  height: 36px;
  line-height: 36px;
  width: 100%;
  background-color: #fff;
  color: #000;
  text-align: center;
  border: 1px solid #393939;
  font-size: var(--fs-small);
  transition: .3s;
  font-weight: bold;
  margin-left: auto;
  margin-right: auto;
}

.btn-basic.large {
  max-width: 480px;
  width: 90%;
}

.btn-basic:hover {
  background-color: #393939;
  color: #fff;
}

/* ボタン 角丸デザイン */
/* data-color属性で色の指定が可能 */
.btn-round {
  max-width: 570px;
  width: 90%;
  height: 55px;
  border: 1px solid #fff;
  background-color: #cfcfcf;
  margin: 40px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  font-size: var(--fs-ttl-s);
  font-weight: bold;
  position: relative;
  overflow: hidden;
}

.btn-round[data-color] {
  background-color: attr(data-color color);
}

.btn-round::after {
  content: "";
  position: absolute;
  height: 50%;
  width: 100%;
  bottom: 0;
  left: 0;
  background-color: #efefef;
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* 独自リストスタイル */
/*
  .cstm-list-style:単体向け
  .cstm-list-group:複数リスト向け
*/
.cstm-list-style,
.cstm-list-group>.whole {
  display: flex;
}

.cstm-list-style>.parts-head,
.cstm-list-group>.whole>.parts-head {
  display: inline-block;
  width: fit-content;
  letter-spacing: 0;
}

.cstm-list-style>.parts-tail,
.cstm-list-group>.whole>.parts-tail {
  display: inline-block;
  flex: 1;
  padding-left: 0.5em;
}


/* ブログカード シンプルデザイン*/
.blog-card-long {
  margin: 0 0 1.8rem;
}

.card-link {
  display: block;
  overflow: hidden;
  max-width: 400px;
  width: 90%;
  padding: 0;
  border-radius: 3px;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  color: #555;
  font-weight: bold;
  text-decoration: none !important;
  position: relative;
  letter-spacing: 0.25em;
}

.card-link:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
  color: #888;
  text-decoration: none;
  transform: translateY(-2px);
  opacity: 1;
}

.blog-card-label-long {
  z-index: 1;
  display: inline-block;
  position: absolute;
  background-color: #f99f48;
  top: 10px;
  left: 10px;
  max-width: 120px;
  height: 25px;
  padding: 0 0.5rem;
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  text-align: center;
  line-height: 25px;
  transform-origin: 50% 50%;
  animation: animScale 3.5s ease-out;
}

.card-link .blogcard-text {
  display: block;
  padding: 15px 13px;
  line-height: 1.6;
}

.card-link img {
  width: 100%;
}

.longcard-link {
  margin-bottom: 1.5em;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.25);
  position: relative;
}

.longcard-link::after {
  content: "関連記事";
  position: absolute;
  display: block;
  padding: 5px 10px;
  width: fit-content;
  background-color: #777;
  color: #fff;
  left: 0;
  top: 0;
  font-size: var(--fs-small);
  transition: .3s;
}

.longcard-link:hover::after {
  background-color: #f2dc26;
}

.longcard-link img {
  padding: 10px 10px 0;
  width: 100%;
  height: auto;
  max-width: initial;
  object-fit: cover;
  aspect-ratio: 3 / 2;
}

.longcard-img {
  position: relative;
}

.blogcard-title {
  font-size: 1em;
  font-weight: bold;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-card-excerpt-long {
  padding-top: .8em;
  font-size: .8em;
  line-height: 1.4;
  font-weight: normal;
  opacity: .8;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: justify;
}

.longcard-link .blogcard-decotext {
  overflow: hidden;
  position: absolute;
  font-weight: bold;
  display: block;
  padding: 5px 15px 2px 15px;
  width: fit-content;
  right: 10px;
  bottom: 5px;
  font-size: var(--fs-small);
  color: #777;
  border-bottom: 2px solid #777;
  transition: .5s;
}

.longcard-link:hover .blogcard-decotext {
  border-bottom: 2px solid #f2dc26;
  padding: 5px 15px 2px 0px;
  right: 10px;
}

.longcard-link .blogcard-decotext::after {
  content: "";
  transition: .3s;
  transform: rotate(-45deg);
  transform-origin: bottom;
  display: block;
  position: absolute;
  height: 0px;
  width: 2px;
  background-color: #777;
  right: 0;
  bottom: 0;
}

.longcard-link:hover .blogcard-decotext::after {
  height: 15px;
  background-color: #f2dc26;
}

@media only screen and (min-width: 481px) {
  .card-link {
    display: inline-block;
    max-width: 310px;
    margin-right: 20px;
  }

  .longcard-link {
    max-width: 750px;
    display: flex;
  }

  .longcard-img,
  .card-link.longcard-link .blogcard-content {
    display: flex;
    flex-direction: column;
    max-width: 600px;
  }

  .longcard-img {
    width: fit-content;
  }

  .blogcard-content {
    width: auto;
  }

  .longcard-img img {
    height: 150px;
    width: auto;
    max-width: initial;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    object-position: center;
    padding: 10px;
  }
}

@media screen and (max-width: 959px) {
  .blog-card-excerpt-long {
    display: none;
  }
}

/* END ブログカード シンプルデザイン*/

/* --- タイトル 設定 -------------------- */
h1, h2, h3, h4 {
  font-family: 'HigureGothic';
  font-weight: 900;
}

.c-title01 {
  font-family: 'HigureGothic';
}

.section-title {
  font-family: 'HigureGothic';
  font-size: var(--fs-ttl-l);
  letter-spacing: 0.24em;
  font-weight: 900;
  text-align: center;
  margin-bottom: 45px;
}

.section-title span {
  font-weight: 700;
  display: block;
  font-size: var(--fs-txt-s);
  margin-top: -2px;
  letter-spacing: 0.14em;
}

h1.section-title {
  padding-top: 120px;
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  h1.section-title {
    padding-top: 60px;
    margin-bottom: 20px;
  }
}

/* -------------------------------------------------- */
/*    オプションクラス                                  */
/* -------------------------------------------------- */

/* floatの解除 */
.clearfix:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
  line-height: 0
}

.clearfix {
  display: inline-block
}

* html .clearfix {
  height: 1%
}

.clearfix {
  display: block
}

.retina{
  zoom: 0.5;    
}


/* PS・SP表示切替 */
@media (min-width:768px) {
  .sp, .SP {
    display: none !important
  }
}

@media (max-width:767px) {
  .pc, .PC {
    display: none !important
  }
}

/* 文字色指定 */
.red {
  color: var(--color-across-red);
}
.yellow {
  color: var(--color-iekoi-yellow);
}
.gray {
  color: var(--color-across-gray);
}

/* -------------------------------------------------- */
/*    ページネーション                                 */
/* -------------------------------------------------- */

/* ページネーション共通設定 */
.cmn-pagenavi {
  text-align: center
}

.cmn-pagenavi .pagenavi-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 800px;
  margin: auto;
  gap: 10px;
}


.cmn-pagenavi .pagenavi-inner>* {
  display: inline-block;
  vertical-align: top
}

/*
.cmn-pagenavi .previouspostslink, .cmn-pagenavi .nextpostslink {
  display: none !important
}
*/

.cmn-pagenavi .nav-previous, .cmn-pagenavi .nav-next {
  position: relative;
  color: #5B5959;
  font-weight: 700;
  font-size: var(--fs-ttl-m);
  letter-spacing: .05em;
  cursor: pointer;
}



.cmn-pagenavi .nav-previous:after, .cmn-pagenavi .nav-next:after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  width: 6px;
  height: 6px;
  border-left: 1px solid #565654;
  border-top: 1px solid #565654;
  transform: rotate(-45deg)
}

.cmn-pagenavi .nav-previous.is-disable, .cmn-pagenavi .nav-next.is-disable {
  cursor: default;
  pointer-events: none;
  opacity: 1;
  color: #ADACAC
}

.cmn-pagenavi .nav-previous.is-disable:after, .cmn-pagenavi .nav-next.is-disable:after {
  border-color: #ABAAAA
}

.cmn-pagenavi .nav-previous a, .cmn-pagenavi .nav-next a {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0
}

.cmn-pagenavi .nav-previous {
  padding-left: 27px
}

.cmn-pagenavi .nav-previous:before {
  content: "Prev"
}

.cmn-pagenavi .nav-previous:after {
  left: 0
}

.cmn-pagenavi .nav-next {
  padding-right: 27px
}

.cmn-pagenavi .nav-next:before {
  content: "Next"
}

.cmn-pagenavi .nav-next:after {
  right: 0;
  transform: rotate(135deg)
}

.cmn-pagenavi .pagenavi-inner .wp-pagenavi {
  text-align: center;
  font-size: 0;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex: 1;
  justify-content: center;
  gap: 10px;
}

.cmn-pagenavi .pagenavi-inner .wp-pagenavi .is-disable {
  opacity: 0.5;
}

.wp-pagenavi a, .wp-pagenavi span {
  color: #5B5959;
  font-weight: 700;
  display: inline-block;
  vertical-align: top;
  font-size: var(--fs-ttl-s);
  letter-spacing: .05em;
}

.wp-pagenavi .page, .wp-pagenavi .current {
  width: 40px;
  height: 40px;
  line-height: 38px;
  border: 1px solid #898988
}

.wp-pagenavi .first, .wp-pagenavi .last {
  height: 40px;
  width: 40px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background-image: url(/wp/wp-content/themes/wp-templ/assets/img/common/navigation/pagination_two.svg);
  background-position: center;
  background-size: 60%;
  background-repeat: no-repeat;
  position: absolute;
}

.wp-pagenavi .first {
  left: 0px;
}

.wp-pagenavi .last {
  right: 0px;
}

.wp-pagenavi .previouspostslink, .wp-pagenavi .nextpostslink {
  height: 40px;
  width: 40px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background-image: url(/wp/wp-content/themes/wp-templ/assets/img/common/navigation/pagination_one.svg);
  background-position: center;
  background-size: 50%;
  background-repeat: no-repeat;
  position: absolute;
}

.wp-pagenavi .previouspostslink {
  left: 50px;
}

.wp-pagenavi .nextpostslink {
  right: 50px;
}

.wp-pagenavi .nextpostslink, .wp-pagenavi .last {

  transform: rotate(180deg);
}

.wp-pagenavi .pages {
  display: none !important
}

.wp-pagenavi .extend {
  border: 0;
  margin: 0;
  width: 40px;
  height: 40px;
  line-height: 38px;
  color: #000;
  display: block;
  opacity: 1;
  font-size: var(--fs-txt);
}

.wp-pagenavi span.current {
  background: #5B5959;
  border-color: #5B5959;
  color: #fff;
  opacity: 1
}
@media only screen and (min-width:1025px) {
  .cmn-pagenavi .nav-previous:hover, .cmn-pagenavi .nav-next:hover {
    opacity: 1;
    color: #ADACAC
  }

  .cmn-pagenavi .nav-previous:hover:after, .cmn-pagenavi .nav-next:hover:after {
    border-color: #ABAAAA
  }

  .wp-pagenavi a.page:hover {
    background: #5B5959;
    border-color: #5B5959;
    color: #fff;
    opacity: 1
  }
}
@media (max-width:767px) {
  .cmn-pagenavi .pagenavi-inner {
    width: calc(100% + 20px);
    left: -10px;
  }

  .cmn-pagenavi .nav-previous, .cmn-pagenavi .nav-next {
    font-size: var(--fs-txt);
  }
  .cmn-pagenavi .nav-previous:after, .cmn-pagenavi .nav-next:after {
    top: calc(50% - 3px);
    width: 5px;
    height: 5px
  }

  .cmn-pagenavi .nav-previous {
    padding-left: 19px
  }
  .cmn-pagenavi .nav-next {
    padding-right: 19px
  }
  
  .cmn-pagenavi .pagenavi-inner .wp-pagenavi {
    gap: 5px;
  }

  .wp-pagenavi a, .wp-pagenavi span {
    font-size: var(--fs-txt);
  }
  .wp-pagenavi .page, .wp-pagenavi .current {
    width: 28px;
    height: 28px;
    line-height: 25px
  }

  .wp-pagenavi .first, .wp-pagenavi .last {
    height: 28px;
    width: 28px;
    line-height: 28px;
  }

  .wp-pagenavi .previouspostslink, .wp-pagenavi .nextpostslink {
    height: 28px;
    width: 28px;
    line-height: 28px;
  }

  .wp-pagenavi .first {
    left: -5px;
  }

  .wp-pagenavi .last {
    right: -5px;
  }

  .wp-pagenavi .previouspostslink {
    left: 28px;
  }

  .wp-pagenavi .nextpostslink {
    right: 28px;
  }

  .wp-pagenavi .extend {
    width: 28px;
    height: 28px;
    line-height: 25px
  }
}
/* END ページネーション共通設定 */

/* 詳細ページ ページネーション */
.pagerLink ul {
  display: flex;
  justify-content: space-between
}

.pagerLink ul a {
  font-weight: 700;
  font-size: var(--fs-ttl-s);
  letter-spacing: .05em;
  color: #000
}

.pagerLink ul .prev a, .pagerLink ul .next a {
  position: relative
}

.pagerLink ul .prev a:after, .pagerLink ul .next a:after {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  width: 8px;
  height: 8px;
  border-left: 1px solid #000;
  border-top: 1px solid #000;
  transform: rotate(-45deg)
}

.pagerLink ul .dis a {
  pointer-events: none;
  color: gray
}

.pagerLink ul .dis a:after {
  border-left-color: gray;
  border-top-color: gray
}

.pagerLink ul .prev a {
  padding-left: 30px
}

.pagerLink ul .prev a:after {
  left: 0
}

.pagerLink ul .next a {
  padding-right: 30px
}

.pagerLink ul .next a:after {
  right: 0;
  transform: rotate(135deg)
}
@media (max-width:767px) {
  .pagerLink ul a {
    font-size: var(--fs-txt);
  }

  .pagerLink ul .prev a:after, .pagerLink ul .next a:after {
    top: calc(50% - 3px);
    width: 6px;
    height: 6px
  }
}
/* END 詳細ページ ページネーション */


/*  モデルハウスリンク */
.mod-model.kojima {
  background-image: url(/wp/wp-content/themes/wp-templ/assets/img/common/img_kojima.jpg);
}

/* -------------------------------------------------- */
/*    サイトフッター                                   */
/* -------------------------------------------------- */

/* go top ボタン */
.button-gotop {
  right: 10px;
  bottom: 10px;
  width: 80px;
  height: 80px;
  overflow: hidden;
  position: fixed;
  margin: 0 auto;
  font-size: 0;
  text-indent: -9999px;
  z-index: 10
}

.button-gotop a {
  width: 100%;
  height: 100%;
  background: url(/wp/wp-content/themes/wp-templ/assets/img/common/btn_gotop.webp) no-repeat 100% 0/100% auto;
  opacity: 0;
  transition: all 0.7s
}

.button-gotop a.show {
  opacity: 1;
  display: block
}

@media (max-width:767px) {
  .button-gotop {
    width: 50px;
    height: 53px;
    bottom: 40px;
    right: 0
  }

  .button-gotop a {
    background-image: url(/wp/wp-content/themes/wp-templ/assets/img/common/btn_gotop_sp.webp);
    background-size: 50px auto
  }
}

/* サイトフッターレイアウト */
.site-footer {
  position: initial;
  background-size: cover;
  background: #9f9b89;
  position: relative;
}

.site-footer .footer-inner {
  position: relative;
  color: #fff;
  padding: 115px 0;
}

.site-footer .footer-inner a,
.site-footer .footer-inner a:link {
  color: #fff;
}

.site-footer .footer-inner .wcm1 {
  position: relative;
  z-index: 2;
  max-width: initial;
}

.site-footer .f-logo {
  margin: 0 auto 50px;
  font-size: var(--fs-small);
  text-align: center;
}

.site-footer .f-logo img {
  width: 250px;
}

.site-footer .f-logo span {
  font-size: var(--fs-small);
  display: block;
  line-height: 1em;
  width: fit-content;
  margin: auto;
}

.site-footer .f-contact {
  display: flex;
  justify-content: center;
  gap: 54px;
  margin: 0 auto 35px;
  max-width: 1000px;
}

.site-footer .f-contact a {
  color: #fff;
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
  font-size: var(--fs-small);
  letter-spacing: 0.16em;
}

.site-footer .f-contact a div {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  aspect-ratio: 1 / 1;
  width: 72px;
  height: auto;
  margin-bottom: 5px;
}

.site-footer .f-contact a img {
  width: 100%;
}

.site-footer .f-desc {
  margin: 70px auto;
  text-align: center;
  font-size: var(--fs-small);
  letter-spacing: 0.16em;
}

.site-footer .f-desc br {
  display: none;
}


.site-footer .f-tel {
  display: block;
  width: fit-content;
  font-family: 'HigureGothic';
  text-align: center;
  color: #fff;
  margin: 24px auto 48px;
  letter-spacing: 0.16em;
}

.site-footer .f-tel .tel-title {
  font-size: var(--fs-small);
  line-height: 1em;

}

.site-footer .f-tel .tel-num {
  font-size: var(--fs-page-ttl);
  font-weight: 900;
  line-height: 1.5em;
}


.site-footer .f-list {
  font-weight: 500;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 80px;
  max-width: initial;
  margin: 0 auto 93px
}

.site-footer .f-list .item {
  width: initial;
  display: flex;
  flex-direction: column;
  font-size: 0;
  letter-spacing: 0
}

.site-footer .f-list .item>* {
  display: inline-block;
  vertical-align: middle
}

.site-footer .f-list .item .tag {
  background-color: initial;
  border: 1px solid #fff;
  width: fit-content;
  font-size: var(--fs-small);
  padding: 3px 12px;
  letter-spacing: 0.18em;
}

.site-footer .f-list .item p.place {
  font-size: var(--fs-ttl-s);
  line-height: 1.2em;
  font-weight: bold;
  display: flex;
  align-items: center;
  letter-spacing: 0.18em;
  margin: 10px 0 5px;
}

.site-footer .f-list .item p.place a {
  display: flex;
  align-items: center;
}

.site-footer .f-list .item p.place a::after {
  content: "";
  background-image: url(/wp/wp-content/themes/wp-templ/assets/img/common/footer_arrow.svg);
  background-repeat: no-repeat;
  background-position: center left;
  display: inline-block;
  height: 0.9em;
  width: 1em;
  margin-left: 1em;
  position: relative;
}

.site-footer .f-list .ttl {
  font-size: var(--fs-ttl-s);
  margin-bottom: 4px
}

.site-footer .f-list .desc {
  line-height: 1.7
}

.site-footer .copyright {
  text-align: center;
  font-size: var(--fs-small);
  font-weight: 500
}

@media (min-width:768px) {

  .site-footer .f-list .pic {
    margin-top: 15px;
    text-align: center
  }

  .site-footer .f-list .pic .img {
    max-width: 105px;
    display: inline-block
  }
}

@media only screen and (min-width:768px) and (max-width:860px) {
  .site-footer .f-list .pic {
    text-align: left
  }
}

@media (max-width:767px) {
  .site-footer {
    padding-bottom: 0px
  }

  .site-footer .footer-inner {
    padding: 90px 0;
  }

  .site-footer .f-logo {
    margin: 0 auto 22px;
  }

  .site-footer .f-list {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 320px;
    margin: 0 auto 20px
  }

  .site-footer .f-list .item {
    width: auto;
    margin-bottom: 22px
  }

  .site-footer .f-list .item:last-child {
    margin-bottom: 0
  }

  .site-footer .f-list .pic {
    width: 25%;
    text-align: center;
    font-size: var(--fs-txt-s);
  }

  .site-footer .f-list .pic .img {
    display: block;
    padding-right: 2px;
    width: 62px;
    margin: 3px auto 5px
  }

  .site-footer .f-list .info {
    width: 75%;
    padding-left: 21px
  }

  .site-footer .f-list .ttl {
    display: none
  }

  .site-footer .f-list .desc {
    line-height: 1.5
  }

  .site-footer .f-contact {
    margin-bottom: 54px;
  }

  .site-footer .f-desc {
    margin: 50px auto;
    font-size: var(--fs-small);
    transform: scale(0.9);
  }

  .site-footer .f-desc br {
    display: block;
  }

  .site-footer .copyright {
    font-size: var(--fs-small);
  }

}


/* -------------------------------------------------- */
/*    旧デザインスタイル設定                        */
/* -------------------------------------------------- */


/* --- ヘッダーメニュー -------------------- */

/* ヘッダー */
.header {
  position: fixed;
  left: auto;
  top: 0;
  z-index: 2000;
  width: 100%;
  height: 80px;
  padding: 19px 0
}

.header:after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  height: 100%;
  top: 0;
  background: #fff;
  opacity: 1;
  z-index: 2;
  transition: all 0.3s ease
}

.header .inHeader {
  margin: 0 auto;
  position: relative;
  z-index: 2000;
  text-align: right;
  font-size: 0;
  font-size: 0rem
}

.header .h-logo {
  opacity: 1;
  text-align: center;
  transition: all 0.3s ease;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 55;
  width: 245px;
  margin: 0 auto
}

.header .h-logo a {
  display: block
}
@media (max-width:767px) {
  .header {
    height: 50px;
    padding: 0 15px
  }

  .header .h-logo {
    width: 143px;
    top: 10px
  }

}

.list-social {
  font-size: 0;
  font-size: 0rem;
  padding: 9px 100px 9px 20px;
  position: relative;
  z-index: 1001;
  display: inline-block
}



.list-social li {
  display: inline-block;
  vertical-align: middle;
  margin-right: 21px
}

.list-social li:last-child {
  margin-right: 0
}

.list-social li .img-social {
  display: block;
  position: relative;
  height: 22px
}

.list-social li .img-social:before, .list-social li .img-social:after {
  display: block;
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%
}

.list-social li .img-social:before {
  opacity: 0
}

.list-social li .img-social:after {
  opacity: 1
}

.list-social li .img-social.img-twitter {
  width: 22px
}

.list-social li .img-social.img-twitter:before {
  background-image: url(/wp/wp-content/themes/wp-templ/assets/img/common/ico/ico_twitter_white.svg)
}

.list-social li .img-social.img-twitter:after {
  background-image: url(/wp/wp-content/themes/wp-templ/assets/img/common/ico/ico_twitter_darkgray.svg)
}

.list-social li .img-social.img-youtube {
  width: 29px
}

.list-social li .img-social.img-youtube:before {
  background-image: url(/wp/wp-content/themes/wp-templ/assets/img/common/ico/ico_youtube_white.svg)
}

.list-social li .img-social.img-youtube:after {
  background-image: url(/wp/wp-content/themes/wp-templ/assets/img/common/ico/ico_youtube_darkgray.svg)
}

.list-social li .img-social.img-insta {
  width: 22px
}

.list-social li .img-social.img-insta:before {
  background-image: url(/wp/wp-content/themes/wp-templ/assets/img/common/ico/ico_insta_white.svg)
}

.list-social li .img-social.img-insta:after {
  background-image: url(/wp/wp-content/themes/wp-templ/assets/img/common/ico/ico_insta_darkgray.svg)
}

.list-social li .img-social.img-fb {
  width: 11px
}

.list-social li .img-social.img-fb:before {
  background-image: url(/wp/wp-content/themes/wp-templ/assets/img/common/ico/ico_fb_white.svg)
}

.list-social li .img-social.img-fb:after {
  background-image: url(/wp/wp-content/themes/wp-templ/assets/img/common/ico/ico_fb_darkgray.svg)
}

@media only screen and (min-width:768px){
  .list-social li {
    margin-right: 12px
  }
}

@media (max-width:767px) {
  .list-social {
    display: block;
    padding: 0;
    text-align: left;
    margin: 50px -30px 28px;
    padding-left: 30px;
    padding-bottom: 37px;
    border-bottom: 1px solid #5b5959
  }

  .list-social li {
    margin-right: 14px
  }
}

/* メニュー内レイアウト */
.layerMenu {
  width: 100%;
  height: 100%;
  z-index: 1000;
  position: fixed;
  right: -100%;
  top: 0;
  background: #ebebeb
}

.layerMenu .inLayer {
  position: relative;
  height: 100%;
  overflow: auto
}

.layerMenu .inLayer .layerTop {
  margin: 22px 0 62px 33px
}

.layerMenu .inLayer .layerBottom .logo-menu-sp {
  max-width: 170px;
  margin: 0 auto 53px
}

.layerMenu .inLayer .layerBottom .col-menu {
  border-right: solid 1px #5B5959;
  padding: 0 10px 0 35px
}


.layerMenu .inLayer .layerBottom .col-menu:last-child {
  border-right: 0
}

.layerMenu .inLayer .layerBottom .col-menu.col-1 {
  padding: 0 45px;
  width: 30.76%;
  padding-right: 47px
}

.layerMenu .inLayer .layerBottom .col-menu.col-1 .img-menu {
  margin-top: 75px
}

.layerMenu .inLayer .layerBottom .col-menu.col-2 {
  width: 23%
}

.layerMenu .inLayer .layerBottom .col-menu.col-3 {
  width: 23.2%
}

.layerMenu .inLayer .layerBottom .col-menu.col-4 {
  width: 23.04%;
  position: relative
}

.layerMenu .inLayer .layerBottom .col-menu.col-4 .list-btn-menu {
  width: 100%;
  margin-top: 20px;
}

.layerMenu .inLayer .layerBottom .col-menu.col-4 .list-btn-menu li {
  margin-top: 35px
}

.layerMenu .inLayer .layerBottom .col-menu.col-4 .list-btn-menu li:last-child {
  margin-bottom: 0
}

.layerMenu .inLayer .layerBottom .col-menu.col-4 .list-btn-menu li .darkgray-btn {
  font-size: var(--fs-txt);
  height: 50px;
  line-height: 47px
}

.layerMenu .inLayer .list-phone {
  text-align: left;
  font-size: 0;
  font-size: 0rem
}

.layerMenu .inLayer .list-phone li:last-child {
  margin-right: 0;
  margin-bottom: 0
}

@media only screen and (max-width:980px) {
  .layerMenu .inLayer .layerTop {
    margin-left: 15px
  }
}
@media only screen and (min-width:768px) and (max-width:980px) {
  .layerMenu .inLayer .list-phone li {
    margin-right: 12px
  }
}

@media (min-width:768px) {
  .layerMenu .inLayer .layerBottom {
    display: flex;
    flex-wrap: wrap;
    margin: 0 30px 0 21px
  }
  .layerMenu .inLayer .list-phone li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 35px
  }

  .layerMenu .inLayer .list-phone li.kojima-tel {
    max-width: 32.96%;
    width: 100%
  }

  .layerMenu .inLayer .list-phone li.kabatake-tel {
    max-width: 38.2%;
    width: 100%
  }
}

@media (max-width:767px) {
  .layerMenu {
    padding-top: 15px;
    padding-bottom: 30px
  }
  
  .layerMenu .inLayer .layerBottom {
    margin: 0 30px
  }

  .layerMenu .inLayer .layerBottom .col-menu {
    border: 0;
    padding: 0 30px !important
  }

  .layerMenu .inLayer .layerBottom .col-menu.col-1 {
    width: 100%
  }

  .layerMenu .inLayer .layerBottom .col-menu.col-2 {
    width: 100%
  }

  .layerMenu .inLayer .layerBottom .col-menu.col-3 {
    width: 100%
  }

  .layerMenu .inLayer .layerBottom .col-menu.col-4 {
    width: 100%
  }

  .layerMenu .inLayer .layerBottom .col-menu.col-4 .list-btn-menu {
    position: relative;
    padding: 0;
    margin: 0 -20px 68px;
    width: auto
  }

  .layerMenu .inLayer .layerBottom .col-menu.col-4 .list-btn-menu li {
    width: 100%;
    margin-bottom: 30px
  }

  .layerMenu .inLayer .layerBottom .col-menu.col-4 .list-btn-menu li a {
    max-width: 100%
  }

  .layerMenu .inLayer .list-phone {
    margin: 0 auto 26px;
    max-width: 245px
  }

  .layerMenu .inLayer .list-phone li {
    display: block;
    margin: 0 0 16px
  }
}

.menu-content {
  margin-bottom: 18px
}

.menu-content:last-child {
  margin-bottom: 0
}

.menu-content .title-menu {
  font-size: var(--fs-ttl-m);
  font-family: serif;
  text-align: left;
  font-weight: 600;
  letter-spacing: -1.2px;
  line-height: 1.7
}

.menu-content .list-menu {
  text-align: left
}

.menu-content .list-menu li {
  margin-bottom: 1px;
  position: relative;
  padding-left: 15px
}

.menu-content .list-menu li:before {
  position: absolute;
  content: '';
  left: 0;
  top: 11px;
  width: 7px;
  height: 1px;
  background: #ccc
}

.menu-content .list-menu li:after {
  position: absolute;
  content: '';
  left: 0;
  top: 11px;
  height: 1px;
  background: #a30000;
  transition: all 0.3s;
  width: 0
}

.menu-content .list-menu li:last-child {
  margin-bottom: 0
}

.menu-content .list-menu li:hover:after {
  width: 7px
}

.menu-content .list-menu li a {
  font-weight: 400;
  font-size: var(--fs-txt);
  letter-spacing: 2.2px
}

@media only screen and (min-device-width:768px) and (max-device-width:1024px) {
  .menu-content .title-menu {
    font-size: var(--fs-ttl-m)
  }
  .menu-content .list-menu li a {
    font-size: var(--fs-txt-s);
  }
}

@media (max-width:767px) {
  .menu-content {
    margin-bottom: 26px
  }

  .menu-content:last-child {
    margin-bottom: 26px
  }

  .menu-content .title-menu {
    font-size: var(--fs-ttl-s);
    letter-spacing: .4px;
    margin-bottom: -2px
  }

  .menu-content .list-menu {
    display: none
  }

  .menu-content .list-menu li {
    margin-bottom: 2px
  }

  .menu-content .list-menu li a {
    font-size: var(--fs-txt-s);
  }
}

.menu-content .list-menu li a:hover {
  opacity: .7;
  color: #000
}

.img-menu a {
  display: block;
  margin-bottom: 22px
}

.img-menu a:last-child {
  margin-bottom: 0
}

@media (max-width:767px) {
  .img-menu {
    text-align: center;
    margin: 0 -25px
  }
}

/* ハンバーガーボタン */
.hamberger {
  position: fixed;
  right: 25px;
  top: 27px;
  z-index: 1001;
  line-height: 1;
  font-size: 0;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s
}

.hamberger:hover {
  opacity: .7
}

.hamberger span {
  display: block;
  width: 30px;
  height: 2px;
  margin-bottom: 10px;
  background: #000;
  transition: 0.3s ease all
}

.hamberger span:last-child {
  margin-bottom: 0
}

.hamberger.active span {
  width: 28px
}

.hamberger.active .ham {
  transform: rotate(45deg) translateY(9px) translateX(9px)
}

.hamberger.active .ber {
  transform: rotate(-45deg)
}

.hamberger.active .ger {
  display: none
}

@media (max-width:767px) {
  .hamberger {
    right: 12px;
    top: 15px
  }

  .hamberger span {
    width: 23px;
    margin-bottom: 7px;
    height: 1px
  }

  .hamberger.active {
    top: 27px;
    right: 20px
  }

  .hamberger.active .ham {
    transform: rotate(45deg) translateY(6px) translateX(6px)
  }

  .hamberger {
    display: block
  }
}


.layerOn {
  overflow: hidden
}

.layerOn .layerMenu {
  right: 0
}

.layerOn .list-social li .img-social:before {
  opacity: 1
}

.layerOn .list-social li .img-social:after {
  opacity: 0
}

.layerOn .list-social li .img-social.img-twitter:before {
  background-image: url(/wp/wp-content/themes/wp-templ/assets/img/common/ico/ico_twitter_darkgray.svg)
}

.layerOn .list-social li .img-social.img-twitter:after {
  background-image: url(/wp/wp-content/themes/wp-templ/assets/img/common/ico/ico_twitter_black.svg)
}

.layerOn .list-social li .img-social.img-youtube:before {
  background-image: url(/wp/wp-content/themes/wp-templ/assets/img/common/ico/ico_youtube_darkgray.svg)
}

.layerOn .list-social li .img-social.img-youtube:after {
  background-image: url(/wp/wp-content/themes/wp-templ/assets/img/common/ico/ico_youtube_black.svg)
}

.layerOn .list-social li .img-social.img-insta:before {
  background-image: url(/wp/wp-content/themes/wp-templ/assets/img/common/ico/ico_insta_darkgray.svg)
}

.layerOn .list-social li .img-social.img-insta:after {
  background-image: url(/wp/wp-content/themes/wp-templ/assets/img/common/ico/ico_insta_black.svg)
}

.layerOn .list-social li .img-social.img-fb:before {
  background-image: url(/wp/wp-content/themes/wp-templ/assets/img/common/ico/ico_fb_darkgray.svg)
}

.layerOn .list-social li .img-social.img-fb:after {
  background-image: url(/wp/wp-content/themes/wp-templ/assets/img/common/ico/ico_fb_black.svg)
}

.layerOn .hamberger span {
  background: #000
}

@media only screen and (min-width:1025px) {
  .layerOn .list-social li .img-social:hover {
    opacity: 1
  }

  .layerOn .list-social li .img-social:hover:before {
    opacity: 0
  }

  .layerOn .list-social li .img-social:hover:after {
    opacity: 1
  }
}

#top .header:after {
  opacity: 0
}

#top .header .h-logo {
  opacity: 0
}

#top .hamberger span {
  background: #fff
}

#top .list-social li .img-social:before {
  opacity: 1
}

#top .list-social li .img-social:after {
  opacity: 0
}

#top.fixHeader .header {
  position: fixed;
  left: 0;
  top: 0
}

#top.fixHeader .header:after {
  opacity: 1
}

#top.fixHeader .header .h-logo {
  opacity: 1
}

#top.fixHeader .hamberger span {
  background: #000
}

#top.fixHeader .list-social li .img-social:before {
  opacity: 0
}

#top.fixHeader .list-social li .img-social:after {
  opacity: 1
}

#top.layerOn .list-social li .img-social:before {
  opacity: 1
}

#top.layerOn .list-social li .img-social:after {
  opacity: 0
}

#top.layerOn .hamberger span {
  background: #000
}

@media only screen and (min-width:1025px) {
  #top.layerOn .list-social li .img-social:hover {
    opacity: 1
  }

  #top.layerOn .list-social li .img-social:hover:before {
    opacity: 0
  }

  #top.layerOn .list-social li .img-social:hover:after {
    opacity: 1
  }
}

/*  メニュー　ロゴ部分 */
.header {
  width: 100%;
  height: initial;
  padding: 9px 0;

}

.header:after {
  background: rgba(255, 255, 255, 0.9);
}

.header .h-logo {
  width: 220px;
  padding: 9px 0px 9px;
}

.mainImg {
  margin-top: 58px;
}

#top .header .inHeader>.h-c-name {
  opacity: 0;
}

#top.fixHeader .header .inHeader>.h-c-name {
  opacity: 1;
}

.header .h-c-name {
  font-family: serif;
  position: absolute;
  top: 0px;
  left: 25px;
  color: #333;
  font-size: var(--fs-ttl-m);
  text-align: center;
  line-height: 1em;
}

.header .h-c-name span {
  font-size: var(--fs-txt);
  letter-spacing: .5em;
}

.layerName .h-c-name {
  position: static;
  text-align: left;
  padding-top: 20px;
  padding-left: 45px;
}

.layerName .h-c-name span {
  padding-left: 1em;
}

@media (max-width: 767px) {
  .menu-content .list-menu {
    display: block;
  }

  .header .h-c-name {
    font-size: var(--fs-txt-s);
    top: 12px;
    left: 0px;
    text-align: left;
  }

  .header .h-c-name span {
    font-size: var(--fs-small);
    letter-spacing: .0em;
  }

  #top .header .h-logo {
    width: 200px;
  }

  .layerMenu .inLayer .layerBottom .logo-menu-sp {
    max-width: 35px;
    margin: 0 auto 53px;
  }

  .layerBottom .h-c-name {
    left: 15px;
  }
}

.hamberger {
  top: 20px;
  right: initial;
  left: calc(100vw - 57px);
}

.hamberger span {
  width: 24px;
  margin-bottom: 8px;
}

.hamberger.active span {
  width: 24px;
}

.hamberger.active .ham {
  transform: rotate(45deg) translateY(7px) translateX(7px);
}

.layerMenu {
  top: 58px;
  height: calc(100% - 58px);
  background-color: rgba(255, 255, 255, 0.9);
}

.layerMenu .inLayer {
  position: relative;
  height: 100%;
  padding-top: 40px;
  overflow: auto;
}

.layerMenu .inLayer .layerBottom {
  max-width: 1500px;
  margin: auto;
  padding-top: 5vh;
}

.layerMenu .inLayer .layerBottom .col-menu.col-2,
.layerMenu .inLayer .layerBottom .col-menu.col-3 {
  width: 37%;
}

.layerMenu .inLayer .layerBottom .col-menu.col-4 {
  width: 26%;
}

.menu-content {
  margin-bottom: 28px;
}

.menu-content .title-menu {
  line-height: 1;
}

.menu-content .list-menu {
  margin-top: 10px;
}

.menu-content .title-menu span {
  font-size: var(--fs-txt);
  font-family: sans-serif;
  font-weight: 400;
  padding-left: 0.5em;
  display: inline-block;
}

.hamberger {
  left: calc(100vw - 66px);
}

.hamberger.active {
  left: calc(100vw - 54px);
}

.hamberger span {
  height: 1px;
}

.hamberger .ham {
  width: 35px;
}

.hamberger .ber {
  width: 30px;
  margin-left: auto;
}

.hamberger .ger {
  width: 25px;
  margin-left: auto;
}

@media (max-width: 767px) {
  .header {
    height: 50px;
    padding: 0 15px;
  }

  .header .h-logo {
    padding: 4px 0px 9px;
  }

  .hamberger {
    left: calc(100vw - 39px);
    top: 17px;
  }


  .hamberger.active {
    top: 17px;
  }

  .hamberger.active .ham {
    transform: rotate(45deg) translateY(0px) translateX(13px);
  }

  .layerMenu {
    top: 50px;
    height: calc(100% - 50px);
  }

  .layerMenu .inLayer .layerBottom {
    padding-top: initial;
  }

  .layerMenu .inLayer .layerBottom .col-menu.col-2,
  .layerMenu .inLayer .layerBottom .col-menu.col-3,
  .layerMenu .inLayer .layerBottom .col-menu.col-4 {
    width: 100%;
  }

}


.img-menu {
  text-align: left;
}

.img-menu a {
  display: inline;
}

.img-menu p {
  margin-bottom: 22px;
}

.img-menu p:last-child {
  margin-bottom: 0;
}

.layerMenu .inLayer .layerBottom .col-menu.col-4 .list-btn-menu li .darkgray-btn {

  color: rgba(255, 255, 255, 0);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.layerMenu .inLayer .layerBottom .col-menu.col-4 .list-btn-menu li .darkgray-btn span {
  display: block;
  height: 100%;
  overflow: hidden;
  text-indent: 100%;
}

.layerMenu .inLayer .layerBottom .col-menu.col-4 .list-btn-menu li .darkgray-btn span:before {
  content: none;
}

.layerMenu .inLayer .layerBottom .col-menu.col-4 .list-btn-menu li .darkgray-btn.const-area {
  background-image: url(/wp/wp-content/themes/wp-templ/assets/img/common/menu_area.png);
  cursor: pointer;
  transition: .3s;
  background-color: #888;
  width: 100%;
  max-width: 100%;
}

.layerMenu .inLayer .layerBottom .col-menu.col-4 .list-btn-menu li .darkgray-btn.const-area:hover {
  background-color: #fff;
}

.layerMenu .inLayer .layerBottom .col-menu.col-4 .list-btn-menu li .darkgray-btn.catalog_link {
  background-image: url(/wp/wp-content/themes/wp-templ/assets/img/common/menu_catalog.png);
}

.layerMenu .inLayer .layerBottom .col-menu.col-4 .list-btn-menu li .darkgray-btn.contact_link {
  background-image: url(/wp/wp-content/themes/wp-templ/assets/img/common/menu_contact.png);
}

.layerMenu .inLayer .layerBottom .col-menu.col-4 .list-btn-menu li .darkgray-btn.tel_link {
  background-image: url(/wp/wp-content/themes/wp-templ/assets/img/common/menu_tel.png);
}

@media only screen and (min-width: 1025px) {
  .layerMenu .inLayer .layerBottom .col-menu.col-4 .list-btn-menu li .darkgray-btn.const-area:hover {
    background-image: url(/wp/wp-content/themes/wp-templ/assets/img/common/menu_area_r.png);
  }

  .layerMenu .inLayer .layerBottom .col-menu.col-4 .list-btn-menu li .darkgray-btn.catalog_link:hover {
    background-image: url(/wp/wp-content/themes/wp-templ/assets/img/common/menu_catalog_r.png);
  }

  .layerMenu .inLayer .layerBottom .col-menu.col-4 .list-btn-menu li .darkgray-btn.contact_link:hover {
    background-image: url(/wp/wp-content/themes/wp-templ/assets/img/common/menu_contact_r.png);
  }

  .layerMenu .inLayer .layerBottom .col-menu.col-4 .list-btn-menu li .darkgray-btn.tel_link:hover {
    background-image: url(/wp/wp-content/themes/wp-templ/assets/img/common/menu_tel_r.png);
  }
}

@media (max-width: 767px) {
  .img-menu {
    text-align: center;
  }

  #menu_news.menu-content .list-menu {
    display: block;
  }
}


/* 旧汎用ボタン darkgray-btn */

.darkgray-btn {
  position: relative;
  display: block;
  max-width: 190px;
  background: #5B5959;
  height: 55px;
  text-align: center;
  line-height: 49px;
  font-weight: 700;
  color: #fff;
  font-size: var(--fs-small);
  letter-spacing: .13em;
  border: solid 1px #5B5959
}

.darkgray-btn:before, .darkgray-btn:after {
  content: "";
  position: absolute;
  display: block;
  border-color: #5B5959;
  box-sizing: border-box;
  border-style: solid;
  width: 20px;
  height: 20px;
  transition: all 0.3s ease-in-out
}

.darkgray-btn:before {
  top: -7px;
  left: -7px;
  border-width: 1px 0 0 1px;
  z-index: 5
}

.darkgray-btn:after {
  bottom: -7px;
  right: -7px;
  border-width: 0 1px 1px 0
}

.darkgray-btn.is-center {
  margin: 0 auto
}

.darkgray-btn.wh-transparent {
  background: transparent;
  color: #fff;
  border: solid 1px #fff
}

.darkgray-btn.wh-transparent:before, .darkgray-btn.wh-transparent:after {
  border-color: #fff
}

.darkgray-btn span {
  position: relative;
  padding-left: 21px
}

.darkgray-btn span:before {
  position: absolute;
  content: '';
  background: url(/wp/wp-content/themes/wp-templ/assets/img/common/ico/ico_arr_red.svg) center center no-repeat;
  background-size: 100% 100%;
  width: 8px;
  height: 10px;
  left: 0;
  top: 50%;
  transform: translate(0, -50%)
}

.darkgray-btn .txt-en {
  font-weight: 700;
  letter-spacing: 0em;
  padding-right: 5px
}

.darkgray-btn .txt-ja {
  font-family: Helvetica, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ W3", "メイリオ", sans-serif;
  font-size: var(--fs-ttl-s);
  letter-spacing: .13em
}

@media only screen and (min-width:1025px) {
  .darkgray-btn:hover {
    background: #f1f1f1;
    color: #5B5959;
    opacity: 1;
    border: solid 1px #f1f1f1
  }

  .darkgray-btn:hover:before, .darkgray-btn:hover:after {
    width: calc(100% + 14px);
    height: calc(100% + 14px);
    border-color: #f1f1f1
  }

  .darkgray-btn.hv-white:hover {
    background: #fff;
    border-color: #fff
  }

  .darkgray-btn.hv-white:hover:before, .darkgray-btn.hv-white:hover:after {
    border-color: #fff
  }
}
@media (max-width:767px) {
  .darkgray-btn {
    max-width: 135px;
    font-size: var(--fs-txt);
    height: 41px;
    line-height: 39px
  }

  .darkgray-btn:before, .darkgray-btn:after {
    width: 17px;
    height: 17px
  }

  .darkgray-btn span {
    padding-left: 16px
  }

  .darkgray-btn .txt-en {
    padding-right: 6px;
    font-size: var(--fs-txt);
  }
}

/* 旧汎用ボタン c-btn01 */
.c-btn01 .txt {
  display: inline-block;
  color: #333;
  font-size: var(--fs-txt-s);
  letter-spacing: .04em;
  font-weight: 500;
  position: relative;
  padding: 0 9px 5px 0;
  border-bottom: 1px solid #a30000;
  position: relative;
  cursor: pointer
}

.c-btn01 .txt-en {
  font-weight: 700
}

.c-btn01 .txt .red-arr {
  position: absolute;
  content: '';
  width: 87%;
  height: 1px;
  background: #333;
  bottom: -1px;
  right: 0;
  transition: all 0.5s
}

.c-btn01 .txt .red-arr:before {
  position: absolute;
  content: '';
  width: 9px;
  height: 1px;
  background: #333;
  right: -1px;
  top: -3px;
  transform: rotate(45deg);
  transition: all 0.5s
}

.c-btn01 .txt.is-white {
  color: #fff
}

.c-btn01 .txt.is-white .red-arr {
  background: #fff
}

.c-btn01 .txt.is-white .red-arr:before {
  background: #fff
}

@media only screen and (min-width:1025px) {
  .c-btn01 .txt:hover .red-arr {
    width: 0
  }

  .c-btn01 .txt:hover .red-arr:before {
    background: #a30000;
    transition-delay: 0.25s
  }
}

@media (max-width:767px) {
  .c-btn01 .txt .red-arr:before {
    width: 6px;
    top: -3px
  }
}

/* 旧汎用タイトル title01 */
.c-title01 {
  font-family: serif;
  font-size: var(--fs-ttl-ll);
  line-height: 45px;
  line-height: 1.07143em;
  font-weight: 600;
  color: #333
}

.c-title01.is-smaller01 {
  font-size: var(--fs-ttl-l);
  line-height: 38px;
  line-height: 1.1875em;
  font-weight: 500
}

.c-title01.is-black {
  color: #000
}

.c-title01.is-white {
  color: #fff
}

.c-title01.is-center {
  text-align: center
}

@media (max-width:767px) {
  .c-title01 {
    font-size: var(--fs-ttl-m);
    line-height: 35px;
    line-height: 1.75em
  }

  .c-title01.is-smaller01 {
    font-size: var(--fs-ttl-m);
    line-height: 28px;
    line-height: 1.4em;
  }
}

.group-title01 {
  text-align: center;
  color: #000
}

.group-title01 .c-title01, .group-title01 .subttl {
  display: block
}

.group-title01 .subttl {
  font-size: var(--fs-en-ttl);
  line-height: 22px;
  line-height: 1.57143em;
  letter-spacing: 0em;
  font-weight: 500
}

@media (max-width:767px) {
  .group-title01 .c-title01 {
    font-size: var(--fs-ttl-m);
    line-height: 28px;
    line-height: 1.4em;
    letter-spacing: .01em
  }

  .group-title01 .subttl {
    font-size: var(--fs-txt-s);
    line-height: 18px;
    line-height: 1.5em
  }
}

/* 旧汎用タイトル c-title02 */

.c-title02 {
  font-family: serif;
  font-size: var(--fs-ttl-l);
  line-height: 32px;
  line-height: 1.23077em;
  letter-spacing: 0em;
  font-weight: 700
}

.c-title02.is-center {
  text-align: center
}

@media (max-width:767px) {
  .c-title02 {
    font-size: var(--fs-ttl-s);
    line-height: 25px;
    line-height: 1.38889em
  }
}

/* 旧汎用タイトル c-title03 */
.c-title03 {
  font-weight: 700;
  font-size: var(--fs-ttl-ll);
  line-height: 40px;
  line-height: 1.14286em;
  letter-spacing: 0em;
  font-weight: 700
}

.c-title03.is-center {
  text-align: center
}

@media (max-width:767px) {
  .c-title03 {
    font-size: var(--fs-ttl-m);
    line-height: 30px;
    line-height: 1.2em;
    letter-spacing: .01em
  }
}

/* 旧汎用タイトル c-title04 */
.c-title04 {
  font-family: serif;
  font-size: var(--fs-ttl-s);
  line-height: 25px;
  line-height: 1.38889em;
  letter-spacing: 0em;
  font-weight: 700
}

.c-title04.is-center {
  text-align: center
}

@media (max-width:767px) {
  .c-title04 {
    font-size: var(--fs-txt);
    line-height: 30px;
    line-height: 2em
  }
}

/* 旧レイアウト メインビジュアル */
.mainVisual {
  position: relative;
  height: 500px;
  width: 100%;
  margin-top: 80px
}

.mainVisual .mainSlider {
  position: relative;
  height: 100%
}

.mainVisual .mainSlider .owl-stage-outer {
  pointer-events: none;
}

.mainVisual .mainSlider .owl-stage-outer, .mainVisual .mainSlider .owl-stage, .mainVisual .mainSlider .owl-item {
  height: 100%
}

.mainVisual .mainSlider .owl-dots {
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  margin-top: 0;
  z-index: 55;
  bottom: 16px
}

.mainVisual .mainSlider .owl-dots .owl-dot {
  padding: 5px 5px;
  width: 20px;
  height: 20px;
  border-radius: 10px
}

.mainVisual .mainSlider .owl-dots .owl-dot span {
  display: block;
  border-radius: 10px;
  width: 10px;
  height: 10px;
  border: 1px solid #fff;
  background: #fff
}

.mainVisual .mainSlider .owl-dots .owl-dot.active span {
  background: #000
}

.mainVisual .mainSlider .owl-nav.disabled+.owl-dots {
  margin-top: 0
}

.mainVisual .mainSlider .item {
  width: 100%;
  height: 100%
}

.mainVisual .catch {
  position: absolute;
  left: 0;
  right: 0;
  top: 67px;
  z-index: 999;
  text-align: left
}

.mainVisual .catch .wcm {
  max-width: 946px
}

.mainVisual .catch .b-head {
  font-weight: 700;
  font-size: 58px;
  font-size: 5.8rem;
  line-height: 58px;
  line-height: 1em;
  letter-spacing: .01em;
  color: #fff;
  position: relative;
  z-index: 1
}

.mainVisual .catch .sub-head {
  margin-top: 0;
  font-family: serif;
  color: #fff;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 35px;
  line-height: 1.45833em;
  letter-spacing: 0em;
  font-weight: 700
}

@media (max-width:767px) {
  .mainVisual {
    height: 420px;
    margin-top: 50px
  }

  .mainVisual .mainSlider .owl-dots {
    bottom: 9px
  }

  .mainVisual .mainSlider .owl-dots .owl-dot {
    padding: 5px 5px;
    width: 14px;
    height: 14px
  }

  .mainVisual .mainSlider .owl-dots .owl-dot span {
    margin: 0 auto;
    width: 7px;
    height: 7px
  }

  .mainVisual .mainSlider .owl-dots .owl-dot.active span {
    background: #000
  }

  .mainVisual .mainSlider .owl-nav.disabled+.owl-dots {
    margin-top: 0
  }

  .mainVisual .catch {
    top: 62px;
    padding: 0 20px
  }

  .mainVisual .catch .b-head {
    font-size: 29px;
    font-size: 2.9rem;
    line-height: 29px;
    line-height: 1em;
    letter-spacing: .01em
  }

  .mainVisual .catch .sub-head {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 20px;
    line-height: 1.66667em
  }
}

/* 旧mod タブ表示 */
.mod-tabs {
  position: relative;
  border: 1px solid #5B5959;
  background: #fff
}

.mod-tabs #tabs {
  position: relative;
  z-index: 22;
  display: flex;
  flex-wrap: wrap
}

.mod-tabs #tabs li {
  text-align: center;
  flex: 1;
  position: relative
}

.mod-tabs #tabs li a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #fff;
  margin: 0;
  font-weight: 700;
  background: #ADACAC;
  color: #fff;
  padding: 10px 10px;
  position: relative;
  height: 100%;
  min-height: 70px;
}

.mod-tabs #tabs li .txt {
  position: relative;
  z-index: 99;
  transition: 0.3s ease all
}

.mod-tabs #tabs li .txt sup {
  vertical-align: super;
  font-size: smaller;
  font-weight: 700;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 0;
  display: inline-block
}

.mod-tabs #tabs li .txt-en {
  font-weight: 700;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 30px;
  line-height: 1.36364em;
  letter-spacing: .01em;
  font-weight: 700
}

.mod-tabs #tabs li:last-child a {
  margin: 0;
  border-right: 0
}

.mod-tabs #tabs li.is-active a {
  color: #333;
  background: #fff
}

@media only screen and (min-width:1025px) {
  .mod-tabs #tabs li.is-active a:hover {
    color: #333;
    background: #fff
  }
}

.mod-tabs .tabs-container {
  position: relative
}

.mod-tabs .tabs-content {
  display: none;
  padding: 43px 30px 50px
}

.mod-tabs .tabs-content:first-child {
  display: block
}

@media (max-width:767px) {
  .mod-tabs #tabs li a {
    padding: 5px 5px;
    height: 100%;
    min-height: 50px
  }

  .mod-tabs #tabs li .txt sup {
    font-size: 10px;
    font-size: 1rem
  }

  .mod-tabs #tabs li .txt-en {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 26px;
    line-height: 1.625em
  }

  .mod-tabs .tabs-content {
    padding: 34px 13px 21px
  }
}

/* 旧mod モデルハウスリンク */

.mod-model {
  background: url(/wp/wp-content/themes/wp-templ/assets/img/common/img01_mdhouse.jpg) no-repeat center top;
  background-size: cover;
  padding: 73px 0 81px;
  text-align: center
}

.mod-model .c-title01 {
  color: #fff;
  letter-spacing: .02em;
  margin-bottom: 44px
}

.mod-model-log01 {
  margin-bottom: 20px
}

.mod-model-txt01 {
  color: #fff;
  padding-left: 5px;
  margin-bottom: 38px;
  font-size: var(--fs-ttl-s);
  line-height: 20px;
  line-height: 1.25em;
  letter-spacing: .18em;
  font-weight: 500
}

.mod-model .darkgray-btn .txt-en {
  padding-right: 17px
}

@media (max-width:767px) {
  .mod-model {
    padding: 42px 0 34px;
    background-image: url(/wp/wp-content/themes/wp-templ/assets/img/common/img01_mdhouse_sp.jpg)
  }

  .mod-model .c-title01 {
    letter-spacing: .02em;
    margin-bottom: 19px
  }

  .mod-model-log01 {
    margin-bottom: 16px
  }

  .mod-model-log01 img {
    max-width: 105px
  }

  .mod-model-txt01 {
    padding-left: 0;
    margin-bottom: 19px;
    font-size: var(--fs-txt-s);
    line-height: 20px;
    line-height: 1.53846em
  }

  .mod-model .darkgray-btn .txt-en {
    padding-right: 6px
  }
}


/* 旧mod お問合せリンク */

.mod-contact {
  text-align: center;
  background: #333;
  padding: 69px 0 105px
}

.mod-contact .c-title01 {
  color: #fff;
  letter-spacing: .02em;
  margin-bottom: 48px
}

.mod-contact-txt01 {
  color: #fff;
  padding-left: 5px;
  margin-bottom: 11px;
  font-size: var(--fs-ttl-s);
  line-height: 20px;
  line-height: 1.25em;
  letter-spacing: .18em;
  font-weight: 500
}

.mod-contact-tel01 {
  margin-bottom: 40px
}

.mod-contact-tel01 a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: var(--fs-ttl-m);
  line-height: 30px;
  line-height: 1.25em;
  letter-spacing: 0em;
  font-weight: 700
}

.mod-contact-tel01 a span {
  font-size: var(--fs-ttl-ll);
  line-height: 38px;
  line-height: 1em;
  letter-spacing: .01em
}

@media (min-width:768px) {
  .mod-contact-tel01 a {
    cursor: default;
    pointer-events: none
  }
}

.mod-contact-bnr01 {
  text-align: center;
  max-width: 657px;
  margin: 0 auto
}

.mod-contact-bnr01 a {
  display: block;
  cursor: pointer
}

@media (max-width:767px) {
  .mod-contact {
    padding: 44px 0 80px
  }

  .mod-contact .c-title01 {
    letter-spacing: .02em;
    margin-bottom: 18px
  }

  .mod-contact-txt01 {
    padding-left: 5px;
    margin-bottom: 9px;
    font-size: var(--fs-txt);
    line-height: 20px;
    line-height: 1.42857em;
    letter-spacing: .16em
  }

  .mod-contact-tel01 {
    margin-bottom: 27px
  }

  .mod-contact-tel01 a {
    font-size: var(--fs-ttl-s);
    line-height: 17px;
    line-height: 1em
  }

  .mod-contact-tel01 a span {
    font-size: var(--fs-ttl-m);
    line-height: 24px;
    line-height: 1em;
    letter-spacing: .05em
  }

  .mod-contact-bnr01 {
    padding: 0 17px
  }
}


/* ボタンのデザイン変更 */
.darkgray-btn {
  height: 42px;
  max-width: 450px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: sans-serif;
  color: #fff;
  font-size: var(--fs-txt);
  font-weight: 400;
  line-height: initial;
  background: #888;
  letter-spacing: 0.3em;
  border: solid 1px;
  border-color: #888;
}

.darkgray-btn .txt-en {
  font-family: sans-serif;
  font-weight: 400;
  padding-left: 12px;
  padding-right: 0;
  letter-spacing: 0.3em;
}

.darkgray-btn span:before {
  content: initial;
}

.lineup-section .list-lineup .lineup-detail .darkgray-btn {
  line-height: initial;
}

.darkgray-btn::before,
.darkgray-btn::after {
  content: initial;
}

@media (max-width: 767px) {

  .darkgray-btn,
  #wrap div .darkgray-btn {
    max-width: 300px;
  }
}

/* --- リストテンプレート -------------------- */

.sec-list-cat .ttl {
  text-align: center;
  line-height: 30px;
  letter-spacing: .2em;
  text-indent: 3px
}

.sec-list-cat .lst-cate {
  margin-top: 12px;
  margin-left: -12px;
  margin-right: -12px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center
}

.sec-list-cat .lst-cate.is-left {
  justify-content: flex-start
}

.sec-list-cat .lst-cate li {
  width: 25%;
  padding: 0 12px;
  margin: 6px 0
}

.item .sec-list-cat .lst-cate li {
  width: 30%;
}

.sec-list-cat .lst-cate li .btn-cat, .sec-list-cat .lst-cate li a {
  display: block;
  position: relative;
  z-index: 1;
  background: #333;
  padding: 4px 10px;
  font-size: var(--fs-ttl-s);
  color: #fff;
  font-weight: 700;
  font-weight: 700;
  text-align: center
}

.sec-list-cat .lst-cate li.active a {
  color: #333;
  background: #fff;
  transition: .3s
}

.sec-list-cat .lst-cate li.active a:before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 1px solid #333;
  z-index: -1
}

@media (max-width:767px) {
  .sec-list-cat .ttl {
    font-size: var(--fs-txt);
  }

  .sec-list-cat .lst-cate {
    margin-top: 7px;
    margin-left: -10px;
    margin-right: -10px
  }

  .sec-list-cat .lst-cate li {
    width: 50%;
    padding: 0 10px;
    margin: 5px 0
  }

  .sec-list-cat .lst-cate li .btn-cat, .sec-list-cat .lst-cate li a {
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: var(--fs-txt-s);
  }
}

/* リスト　アイテム設定 */
.list-items {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.list-items.is-center {
  justify-content: center
}

.list-items .item {
  margin-bottom: 50px
}

@media (min-width:768px) {
  .list-items .item {
    width: 29.92%;
    margin: 0 2%;
  }

  .list-items .item:nth-child(3n) {
    margin-right: 0
  }
}

.list-items .item a {
  height: 100%;
  display: block;
  overflow: hidden;
  background: #f1f1f1
}

.list-items .item .img-item .thumb-img {
  position: relative
}

.list-items .item .img-item .thumb-img:before {
  display: block;
  content: " ";
  width: 100%;
  padding-top: 86.57718%
}

.list-items .item .img-item .thumb-img>.content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0
}

.list-items .item-title {
  color: #fff;
  font-size: var(--fs-ttl-s);
  font-weight: 700;
  text-align: center;
  padding: 7px 10px;
  font-weight: 700;
  background: #5B5959
}

.list-items .item-desc {
  font-size: var(--fs-txt);
  text-align: center;
  letter-spacing: 2px;
  padding: 13px 7px 16px
}

@media (max-width:767px) {
  .list-items .item {
    width: 90%;
    margin: auto;
  }

  .list-items .item .img-item .thumb-img {
    position: relative
  }

  .list-items .item .img-item .thumb-img:before {
    display: block;
    content: " ";
    width: 100%;
    padding-top: 86.15385%
  }

  .list-items .item .img-item .thumb-img>.content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0
  }

  .list-items .item:nth-child(2n) {
    margin-right: 0
  }

  .list-items .item-title {
    font-size: var(--fs-txt-s);
  }

  .list-items .item-desc {
    letter-spacing: 0;
    font-size: var(--fs-txt-s);
  }

  .list-items .item.works-item {
    margin-bottom: 22px
  }

  .list-items .item.works-item .item-title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    min-height: 40px;
    padding: 5px 10px;
    font-size: var(--fs-txt-s);
    line-height: 14px;
    line-height: 1.16667em
  }

  .list-items .item.works-item .item-desc {
    text-align: left;
    font-size: var(--fs-txt-s);
    line-height: 18px;
    line-height: 1.5em;
    padding: 5px 0
  }
}

/* 旧汎用　コラムリスト */


@media (min-width:768px) {
  .list-column {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px
  }
}

@media only screen and (min-width:768px) and (max-width:980px) {
  .list-column {
    margin-left: -8px;
    margin-right: -8px
  }
}

@media (min-width:768px) {
  .list-column.is-center {
    justify-content: center
  }
}

@media (min-width:768px) {
  .list-column .item {
    margin-bottom: 50px;
    width: 25%;
    padding: 0 13px 0 12px
  }
}

@media only screen and (min-width:768px) and (max-width:980px) {
  .list-column .item {
    padding-left: 8px;
    padding-right: 8px
  }
}

.list-column .item a {
  position: relative;
  display: block;
  overflow: hidden
}

@media (min-width:768px) {
  .list-column .item a {
    height: 100%;
    padding-bottom: 26px
  }
}

.list-column .item .thumb-img {
  background-color: #fff;
  position: relative
}

.list-column .item .thumb-img:before {
  display: block;
  content: " ";
  width: 100%;
  padding-top: 100%
}

.list-column .item .thumb-img>.content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0
}

@media (min-width:768px) {
  .list-column .cates {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2
  }
}

.list-column .date {
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: .05em;
  margin-bottom: 1px
}

@media (min-width:768px) {
  .list-column .item-row {
    padding: 15px 20px 0
  }
}

.list-column .item-title {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: .05em
}

@media (min-width:768px) {
  .list-column .item-title {
    border-bottom: 1px solid #fff;
    padding-bottom: 18px
  }

  .list-column .item-title span {
    overflow: hidden;
    width: 100%;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: normal
  }
}

.list-column .item-desc {
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: .05em;
  line-height: 1.67
}

@media (min-width:768px) {
  .list-column .item-desc {
    padding: 0 20px;
    margin-top: 15px;
    overflow: hidden;
    width: 100%;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: normal
  }
}

@media (max-width:767px) {
  .list-column .item {
    margin-bottom: 36px
  }

  .list-column .item:last-child {
    margin-bottom: 0
  }

  .list-column .img-item {
    float: left;
    width: 90px
  }

  .list-column .item-row {
    float: right;
    width: calc(100% - 105px)
  }

  .list-column .cates {
    margin-bottom: 7px
  }

  .list-column .item-desc {
    clear: both;
    width: 100%;
    overflow: hidden;
    width: 100%;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: normal;
    margin-top: 11px
  }
}

.hv-img-zoom {
  overflow: hidden;
  backface-visibility: hidden
}

.hv-img-zoom .img-item {
  overflow: hidden
}

.hv-img-zoom .img-zoom {
  transition: 0.4s ease all
}

@media only screen and (min-width:1025px) {
  .hv-img-zoom:hover {
    opacity: 1;
    color: #000
  }

  .hv-img-zoom:hover .img-zoom {
    transform: scale(1.08);
    opacity: 1
  }
}

.cates {
  font-size: 0;
  letter-spacing: 0
}

.cates span {
  font-weight: 500;
  display: inline-block;
  vertical-align: top;
  background: #5B5959;
  color: #fff;
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: .05em;
  line-height: 1.5;
  margin: 0 2px 2px 0;
  padding: 2px 10px 4px
}

.cates span:last-child {
  margin-right: 0
}

@media (max-width:767px) {
  .cates span {
    font-size: 11px;
    font-size: 1.1rem
  }
}

.c-meta>* {
  display: inline-block;
  vertical-align: top
}

.c-meta .cates {
  margin-right: 12px
}

@media (max-width:767px) {
  .c-meta .cates {
    margin-right: 10px
  }

  .c-meta .cates span {
    font-size: 10px;
    font-size: 1rem;
    padding-left: 8px;
    padding-right: 8px
  }
}

.c-meta .date {
  margin-top: 2px;
  color: #5B5959;
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: .05em
}

@media (max-width:767px) {
  .c-meta .date {
    font-size: 10px;
    font-size: 1rem
  }
}

/* 旧汎用　ラインナップアンカー */

.list-items-anchor .item {
  margin-bottom: 0
}

.list-items-anchor .item-title {
  padding: 6px 30px;
  background: #333;
  position: relative
}

.list-items-anchor .item-title:before {
  position: absolute;
  content: '';
  right: 9px;
  top: 50%;
  width: 15px;
  height: 15px;
  background: url(/wp/wp-content/themes/wp-templ/assets/img/common/ico/ico_arr01_down.svg) no-repeat center center;
  background-size: 100% 100%;
  margin-top: -7px
}

@media screen and (-ms-high-contrast:active), (-ms-high-contrast:none) {
  .list-items-anchor .item-title:before {
    margin-top: -8px
  }
}

.list-items-anchor .item-desc {
  padding: 15px 7px 16px
}

@media (max-width:767px) {
  .list-items-anchor .item {
    margin-bottom: 45px;
    margin-right: 0;
    width: 100%
  }

  .list-items-anchor .item:last-child {
    margin-bottom: 0
  }

  .list-items-anchor .item a {
    display: flex;
    flex-wrap: wrap;
    overflow: inherit
  }

  .list-items-anchor .item-title {
    padding: 6px 6px
  }

  .list-items-anchor .item-title:before {
    display: none
  }

  .list-items-anchor .item-desc {
    padding: 8px 0 2px;
    text-align: left
  }

  .list-items-anchor .item-desc p {
    overflow: hidden;
    width: 100%;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: normal
  }

  .list-items-anchor .item .img-item {
    width: 50%
  }

  .list-items-anchor .item .inner {
    padding-left: 6px;
    width: 50%
  }

  .list-items-anchor .item .c-btn01 {
    line-height: 1;
    text-align: right
  }
}


/* サムネイル */
.thumb-img {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  overflow: hidden
}

.thumb-img img {
  position: absolute;
  left: -9999px
}

/* js-image */
.js-image {
  display: block;
  background: #fff top center no-repeat;
  background-position: center center;
  background-size: cover;
  overflow: hidden
}

.js-image img {
  position: absolute;
  left: -9999px
}