@charset "UTF-8";

:root {
  --main-color: #8c2228;
  --font-color: #222;
  --green-color: #a0d230;
  --brown1-color: #645f52;
  --brown2-color: #9a9589;
}

/*-------------------------------
	Reset
-------------------------------*/
html {
  box-sizing: border-box;
}

* {
  box-sizing: inherit;
}

*:before, *:after {
  box-sizing: inherit;
}

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, 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, sub {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
}

del {
  text-decoration: line-through;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 100%;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

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

input, textarea {
  margin: 0;
  font-size: 100%;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  font-size: 0;
  line-height: 0;
  border: 0;
}

object, embed, video {
  max-width: 100%;
}

address, caption, cite, code, dfn, em, th, var {
  font-style: normal;
  font-weight: normal;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

/*-------------------------------
Font
-------------------------------*/
html {
  font-size: 16px;
  font-family: "Helvetica Neue", Arial, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  word-break: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

body {
  font-size: 1rem;
  color: #222;
  line-height: 1.8;
  text-align: left;
}

_:lang(x)::-ms-backdrop, body {
  font-family: "メイリオ", Meiryo, sans-serif;
}

/*IE11用文字スタイルハック*/
i {
  font-weight: 900;
}

.serif {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

/*-------------------------------
Font Option
-------------------------------*/
.f-normal {
  font-weight: normal;
  font-weight: 400;
}

.f-bold {
  font-weight: bold;
  font-weight: 700;
}

.f-italic {
  font-style: italic;
}

.f-s {
  font-size: 0.875rem;
}

/*14px*/
.f-2s {
  font-size: 0.75rem;
}

/*12px*/
.f-3s {
  font-size: 0.625rem;
}

/*10px*/
.f-l {
  font-size: 1.125rem
}

/*18px*/
.f-2l {
  font-size: 1.25rem;
}

/*20px*/
.f-3l {
  font-size: 1.5rem;
}

/*24px*/
sup {
  font-size: 0.5rem;
  vertical-align: top;
}

sub {
  font-size: 0.5rem;
  vertical-align: baseline;
}

.note {
  padding-left: 1rem;
  text-indent: -1rem;
}

/*-------------------------------
	Link
-------------------------------*/
html, body {
  scroll-padding-top: 100px;
}

a {
  color: #111;
  text-decoration: none;
  transition: all 0.1s;
}

a:hover {
  text-decoration: none;
  /* color: var(--brown2-color); */
  transition: all 0.3s;
}

.link-btn {
  transition: all 0.1s;
}

.link-btn:hover {
  opacity: 0.8;
  transition: all 0.3s;
}

.link-btn2 {
  transition: all 0.5s;
}

.link-btn2:hover {
  transform: scale(1.1, 1.1);
}

button {
  display: block;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

@media screen and (min-width: 480px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/*-------------------------------
Clearfix
-------------------------------*/
.cf:after {
  content: " ";
  display: block;
  clear: both;
}

.flc {
  overflow: hidden;
  zoom: 1;
}

/*-------------------------------
Float
-------------------------------*/
.float-left {
  display: inline;
  float: left;
}

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

/* ---------------------------------------------
Margin
--------------------------------------------- */
.mt00 {
  margin-top: 0 !important;
}

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

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

.mt12 {
  margin-top: 12px !important;
}

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

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

.mt25 {
  margin-top: 25px !important;
}

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

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

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

.mt45 {
  margin-top: 45px !important;
}

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

.mr00 {
  margin-right: 0 !important;
}

.mr05 {
  margin-right: 5px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mr12 {
  margin-right: 12px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.mr35 {
  margin-right: 35px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.mr45 {
  margin-right: 45px !important;
}

.mr50 {
  margin-right: 50px !important;
}

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

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

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

.mb12 {
  margin-bottom: 12px !important;
}

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

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

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

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

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

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

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

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

.ml00 {
  margin-left: 0 !important;
}

.ml05 {
  margin-left: 5px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.ml12 {
  margin-left: 12px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.ml30 {
  margin-left: 35px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.ml45 {
  margin-left: 45px !important;
}

.ml50 {
  margin-left: 50px !important;
}

/* ---------------------------------------------
Align
--------------------------------------------- */
.align-left {
  text-align: left;
}

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

.align-right {
  text-align: right;
}

.valign-top {
  vertical-align: top !important;
}

.valign-middle {
  vertical-align: middle !important;
}

.valign-bottom {
  vertical-align: bottom !important;
}

/* ---------------------------------------------
Others
--------------------------------------------- */
.display-block {
  display: block !important;
}

.inline-block {
  display: inline;
  display: inline-block !important;
}

.inline {
  display: inline !important;
}

.listDisc li {
  list-style-position: outside;
  list-style-type: disc;
  margin-left: 25px;
}

.listCircle li {
  list-style-position: outside;
  list-style-type: circle;
  margin-left: 25px;
}

.listSquare li {
  list-style-position: outside;
  list-style-type: square;
  margin-left: 25px;
}

.listDecimal li {
  list-style-position: outside;
  list-style-type: decimal;
  margin-left: 30px;
}

/*-------------------------------
	Field
-------------------------------*/
body {
  background-color: #fff;
}

/*body { background-color: #faf8f8;}*/
body.home {
  background-color: #fff;
}

.wrapper {
  width: 100%;
}

.main-block {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 1200px) {
  .main-block {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/*@media only screen and (max-width: 768px) {
	body { padding-bottom: 89px;}
}*/

.pagetop {
  width: 42px;
  height: 42px;
  background-color: var(--brown2-color);
  position: fixed;
  right: 0;
  bottom: 10px;
  z-index: 10000;
  opacity: 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: .3s;
}

.pagetop span {
  position: relative;
  display: inline-block;
  width: 15.7px;
  height: 9.4px;
}

.pagetop span::before,
.pagetop span::after {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 1px);
  width: 2px;
  height: 12px;
  border-radius: 9999px;
  background-color: #fff;
  transform-origin: 50% 1px;
}

.pagetop span::before {
  transform: rotate(45deg);
}

.pagetop span::after {
  transform: rotate(-45deg);
}

.pagetop:hover {
  text-decoration: none;
  background-color: #dfb155;
  transition: .1s;
}

.pagetop .material-icons {
  font-size: 24px;
  color: #fff;
}

.page-main-box {
  width: 100%;
  /*background:#faf8f8;*/
}

.bread {
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  padding: 10px 10px 0;
  font-size: 14px;
}

.bread li {
  display: inline-block;
}

.bread li a {
  color: #8c2228;
  background: url(./img/arrow02.png) no-repeat right center;
  padding-right: 15px;
  margin-right: 10px;
  text-decoration: underline;
}

.main-title {
  width: 100%;
  height: 160px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: #e7e3d9;
  line-height: 1.2;
  color: var(--brown1-color);
  text-align: center;
}

/*.main-title{margin-top: 60px;text-align: center;padding: 0 30px;text-align: center;}*/
.main-title .first {
  font-size: 1.5rem;
}

.main-title .second {
  font-size: 0.875rem;
}

.content-block {
  width: 100%;
  margin-top: 40px;
  /*background-image: url(./img/sub_bg.png);
  background-repeat: repeat-y;
  background-position: center top;
  background-size: 100vw auto;*/
}

.content-box {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

.main-field {
  padding: 45px 50px;
  font-size: 18px;
}

.common-title01 {
  font-size: 26px;
  padding-bottom: 5px;
  border-bottom: 1px solid #ebe2e2;
  position: relative;
  line-height: 1.4;
}

.common-title01:after {
  content: '';
  width: 120px;
  height: 1px;
  background-color: #b11c1c;
  position: absolute;
  bottom: -1px;
  left: 0;
}

.common-textbox {
  margin-top: 1.2em;
}

.common-textbox p:not(:first-child) {
  margin-top: 1em;
}

@media only screen and (max-width: 1200px) {
  .content-block {
    padding: 0 20px;
  }
}

@media only screen and (max-width: 768px) {
  .main-title {
    height: 140px;
  }

  .main-title .first {
    font-size: 1.25rem;
  }

  .main-title .second {
    font-size: 0.75rem;
  }

  /*.main-title{margin-top: 50px;}*/
  .content-block {
    margin-top: 30px;
  }

  .main-field {
    font-size: 16px;
    padding: 30px 20px 50px;
  }

  .common-title01 {
    font-size: 22px;
  }

  .pagetop {
    border: 1px solid #fff;
  }

  .common-textbox {
    margin-top: 1em;
  }
}

.pagenation {
  margin-top: 1.5rem;
}

.error-404 {
  width: 100%;
  text-align: center;
  margin: 3rem auto 0;
}

.youtube-box {
  position: relative;
  width: 100%;
  max-width: 560px;
  padding-top: 56.25%;
  margin: 0 auto 0;
}

.youtube-box iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.sc-oji-banner a {
  display: block;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

.land-banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

.side-nav {
  position: fixed;
  bottom: 60px;
  right: 0;
  width: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  z-index: 10001;
}

.side-nav a {
  width: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: var(--brown1-color);
  color: #fff;
  font-size: 0.875rem;
  padding: 5px 5px 15px;
  border-radius: 6px 0 0 6px;
}

.side-nav a:last-child {
  background-color: var(--brown2-color);
}

.side-nav a .icon {
  display: block;
  width: 20px;
  height: 20px;
  transform: translateX(1px);
}

.side-nav a .txt {
  writing-mode: vertical-rl;
}

@media only screen and (max-width: 768px) {
  .side-nav {
    bottom: 60px;
    right: 5px;
    width: 50px;
    gap: 10px;
  }

  .side-nav a {
    width: 50px;
    height: 50px;
    padding: 5px;
    border-radius: 40px;
  }

  .side-nav a .icon {
    width: 26px;
    height: 26px;
    transform: translateX(0);
  }

  .side-nav a .icon img {
    width: 26px;
    height: 26px;
  }

  .side-nav a .txt {
    display: none;
  }
}

.pen {
  pointer-events: none;
}

/*-------------------------------
	Header
-------------------------------*/
.header {
  background-color: #fff;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2);
}

.header-block {
  width: 100%;
  max-width: 1400px;
  height: 80px;
  padding-top: 10px;
  padding-bottom: 10px;
  margin: 0 auto;
  transition: all 0.4s;
}

.header-top {
  position: relative;
}

.header-top .txt {
  font-size: 14px;
  letter-spacing: -0.5px;
}

.header-top .link a {
  width: 130px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
}

.header-top .link .header-contact {
  background-color: #867060;
  top: 0;
  right: 130px;
  border-right: 1px solid #dcd4cf;
}

.header-top .link .header-document {
  background-color: #867060;
  top: 0;
  right: 0;
}

.header-main {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.header-main .logo {
  max-width: 180px;
  padding-bottom: 5px;
}

.header-main .gnav {
  background-color: #fff;
  margin-left: auto;
}

.header-main .gnav .gnav-list {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 1.5rem;
}

.header-main .gnav .gnav-list>li {
  position: relative;
}

.header-main .header-tel {
  width: 260px;
  height: 60px;
  background-color: #111;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-main .gnav .gnav-list>li>a {
  padding: 0 10px;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  position: relative;
}

.header-main .gnav .gnav-list>li>a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  border-bottom: solid 2px #8c2228;
  transition: all .3s;
  /* transform: scale(0, 1); */
  /* transform-origin: center top; */
}

.header-main .gnav .gnav-list>li.current>a::after,
.header-main .gnav .gnav-list>li>a:hover::after {
  width: 100%;
}

.header-main .gnav .gnav-list>li ul {
  position: absolute;
  top: 100%;
  left: 0;
  width: 200px;
  z-index: 10;
  visibility: hidden;
  opacity: 0;
  transition: .2s ease-in-out;
  margin: 0;
  padding-top: 16px;
}

.header-main .gnav .gnav-list>li ul.ex01 {
  width: 220px;
}

.header-main .gnav .gnav-list>li ul.ex02 {
  width: 300px;
  font-size: 0.9rem;
}

.header-main .gnav .gnav-list>li ul.ex03 {
  width: 270px;
  font-size: 0.9rem;
  left: auto;
  right: 0;
}

.header-main .gnav .gnav-list>li ul li.long {
  font-size: 0.75rem;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.header-main .gnav .gnav-list>li ul.ex03 li.long {
  font-size: 0.75rem;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.header-main .gnav .gnav-list>li ul li {
  width: 100%;
  float: none;
  margin: 0;
}

.header-main .gnav .gnav-list>li ul li a {
  display: block;
  background: #fff;
  height: auto;
  padding: 5px 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border: 1px solid #c7bcb5;
  transition: .2s;
  line-height: 1.3;
}

.header-main .gnav .gnav-list>li ul li a:hover {
  color: #fff;
  background-color: #c7bcb5;
}

.header-main .gnav .gnav-list>li ul li:not(:first-child) a {
  border-top: none;
}

.header-main .gnav .gnav-list>li:hover ul {
  visibility: visible;
  opacity: 1;
}

.openbtn {
  display: none;
  position: fixed;
  z-index: 99999;
  top: 10px;
  right: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
}

.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 11px;
  height: 3px;
  border-radius: 2px;
  background-color: #333;
  width: 55%;
}

/*×に変化*/
.openbtn span:nth-of-type(1) {
  top: 12px;
}

.openbtn span:nth-of-type(2) {
  top: 22px;
}

.openbtn span:nth-of-type(3) {
  top: 32px;
}

.openbtn.active span:nth-of-type(1) {
  top: 16px;
  left: 12px;
  transform: translateY(6px) rotate(-45deg);
  width: 55%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 28px;
  left: 12px;
  transform: translateY(-6px) rotate(45deg);
  width: 55%;
}

.sp-menu {
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  right: -105%;
  padding-top: 30px;
  padding-bottom: 30px;
  z-index: 99998;
  background-color: var(--green-color);
  transition: all 0.6s;
}

.sp-menu.panelactive {
  right: 0;
}

.sp-menu-list {
  background-color: var(--green-color);
  position: fixed;
  z-index: 99998;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.sp-menu-list ul {
  width: 90%;
  max-width: 380px;
  margin: 0 auto;
  padding: 30px 0 40px;
}

.sp-menu-list ul li {
  list-style: none;
  border-bottom: 1px solid var(--font-color);
  padding-bottom: 2px;
}

.sp-menu-list a {
  display: block;
  width: 100%;
  color: var(--font-color);
  text-align: left;
}

.sp-menu-list a.sp-menu-logo {
  display: block;
  width: 180px;
  height: auto;
  margin: 0 auto 0;
  padding: 0;
}

@media only screen and (max-width: 1400px) {
  .header-block {
    padding-left: 10px;
  }

  .header-main .gnav {
    margin: 0 20px 0 20px;
  }
}

@media only screen and (max-width: 1200px) {
  .header-block {
    height: 70px;
  }

  .header-top .txt {
    font-size: 12px;
  }

  .header-top .link {
    display: none;
  }

  .header-main .logo {
    max-width: 150px;
    padding-bottom: 5px;
  }

  .header-main .gnav {
    display: none;
  }

  .header-main .header-tel {
    display: none;
  }

  .openbtn {
    display: block;
  }

  .sp-menu {
    display: block;
  }
}

.sp-menu-list ul .tit {
  position: relative;
  cursor: pointer;
  padding: 1rem 0.8rem;
}

.sp-menu-list ul .tit2 {
  padding: 1rem 0.8rem;
  position: relative;
  cursor: pointer;
  /*margin-top: 10px;*/
}

.sp-menu-list ul .tit::after {
  display: block;
  content: '';
  width: 21px;
  height: 13px;
  background-image: url('../img/sp_menu_arrow.webp');
  background-repeat: no-repeat;
  background-position: 0;
  position: absolute;
  right: 10px;
  top: 45%;
  transform: rotate(-180deg) translateY(0);
  transition: .3s;
}

.sp-menu-list ul .tit.active::after {
  transform: rotate(0deg) translateY(-50%);
  transform-origin: 50% 0;
}

.sp-menu-list ul .cnt {
  margin-top: 5px;
  display: none;
}

.sp-menu-list ul .cnt.active {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.sp-menu-list ul .cnt a {
  display: block;
  padding: 15px 15px 15px 35px;
  background-color: rgba(255, 255, 255, 0.8);
  position: relative;
  border-bottom: 1px solid var(--green-color);
}

.sp-menu-list ul .cnt a::before {
  display: inline-block;
  content: '→';
  font-size: 1rem;
  color: var(--green-color);
  position: absolute;
  top: 12px;
  left: 15px;
}

/*-------------------------------
	Footer
-------------------------------*/
.footer {
  width: 100%;
  margin-top: 140px;
}

.footer-sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.footer .copyright {
  font-size: 12px;
  text-align: center;
  padding: 0 0 30px;
}

.footer-main-link .footer-logo {
  width: 75%;
  max-width: 340px;
  margin: 30px auto 1em;
}

.footer-main-link .location {
  text-align: center;
  margin-top: 30px;
}

.footer-main-link .links-block {
  padding-top: 60px;
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-main-link .links-block .links-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 70px;
}

.footer-main-link .links-block .links-line .links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  line-height: 1.4;
}

.footer-main-link .links-block .links-line .links li {
  border-bottom: 1px solid var(--brown2-color);
  padding-top: 2px;
  padding-bottom: 8px;
}

.footer-main-link .links-block .links-line .links li.second {
  margin-left: 1rem;
}

.footer-main-link .links-block .links-line .links a {
  text-decoration: none;
  font-size: 0.875rem;
  line-height: 1.5;
}

.footer-main-link .links-block .links-line .links .first a {
  font-weight: 700;
}

/*.footer-main-link .links-block .links-line .links .second{
  padding-left: 1rem;
}*/
.footer-main-link .links-block .links-line .links.ex2 {
  display: none;
}

@media only screen and (max-width: 768px) {
  .footer {
    margin-top: 70px;
  }

  .footer-main-link .footer-logo {
    margin: 60px auto 1em;
  }

  .footer-main-link .links-block {
    padding-top: 40px;
    padding-bottom: 40px;
    gap: 40px;
  }

  .footer-main-link .links-block .links-line {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
}

@media only screen and (max-width: 480px) {
  .footer-main-link .links-block {
    gap: 30px;
  }

  .footer-main-link .links-block .links-line {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-main-link .links-block .links-line .links.ex1 {
    display: none;
  }

  .footer-main-link .links-block .links-line .links.ex2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    text-align: left;
  }

  .footer-main-link .links-block .links-line .links a {
    display: block;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .footer-main-link .links-block .links-line .links.ex2 a {
    text-align: center;
  }
}

.under-block {
  width: 100%;
  padding-top: 27%;
  margin-top: 100px;
  background: #fff url(./img/under_block_bk.webp) no-repeat top center;
  background-size: contain;
  overflow: hidden;
}

.under-block .bk {
  width: 100%;
}

.under-block .outer {
  padding-top: 50px;
  padding-bottom: 50px;
}

.under-block .inner {
  width: 100vw;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}

.under-block .inner .tel-block {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 60px;
  box-shadow: 0px 0px 20px 3px rgba(0, 0, 0, 0.15);
  text-align: center;
  z-index: 1;
  width: 50%;
  position: absolute;
  left: 0;
}

.under-block .inner .tel-block .tel img {
  width: 80%;
  max-width: 400px;
}

.under-block .inner .tel-block .time {
  font-size: 0.75rem;
}

.under-block .inner .forms-block {
  /*width: 120%;*/
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: calc(50% + 50px);
  position: relative;
  z-index: 2;
  margin-left: -50px;
}

.under-block .inner .forms-block a {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--brown1-color);
  color: #fff;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  position: relative;
  transition: .3s;
}

.under-block .inner .forms-block a .detail {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  font-size: 1.125rem;
}

.under-block .inner .forms-block a .detail .icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.under-block .inner .forms-block a.document {
  &:hover {
    background-color: #9f9988;
  }
}

.under-block .inner .forms-block a.hall {
  background-color: var(--brown2-color);
  border-top: none;

  &:hover {
    background-color: #d1cabc;
  }
}

.under-block .inner .forms-block a .arrow {
  display: block;
  width: 30px;
  height: auto;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}

@media only screen and (max-width: 768px) {
  .under-block {
    padding-top: 25%;
    margin-top: 60px;
  }

  .under-block .inner {
    justify-content: center;
    flex-direction: column;
  }

  .under-block .inner .tel-block {
    width: 90%;
    margin-inline: auto;
    padding: 30px 10px;
    position: relative;
  }

  .under-block .inner .tel-block .tel img {
    width: 90%;
  }

  .under-block .inner .forms-block {
    margin-top: 30px;
    width: 100%;
    margin-left: 0;
  }

  .under-block .inner .forms-block a {
    height: 70px;
  }

  .under-block .inner .forms-block a .detail {
    font-size: 1rem;
  }

  .under-block .inner .forms-block a .arrow {
    width: 24px;
  }
}


/*-------------------------------
	Home
-------------------------------*/
.home-slide {
  width: 100%;
  height: calc(100vh - 80px);
  /*height: 780px;*/
  position: relative;
}

/*.home-slide:after{content: '';display: block;width: 100%;height: 15px;background: url(./img/upper_shadow01.png) repeat-x 0 0;position: absolute;top: 0;left: 0;z-index: 1;}*/
.home-slide .mark {
  width: 100%;
  max-width: 291px;
  height: auto;
  position: absolute;
  top: 0;
  left: 3%;
  z-index: 2;
}

.vegas-overlay {
  opacity: 0.4 !important;
}

.home-slide .txt {
  display: block;
  width: 65vw;
  max-width: 540px;
  height: auto;
  position: absolute;
  bottom: 12vh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.home-slide .bn {
  display: block;
  width: 25vw;
  max-width: 200px;
  height: auto;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
}

.home-slide .swiper {
  width: 100%;
  height: 100vh;
}

.home-slide .swiper {
  width: 100%;
  height: calc(100vh - 80px);
}

.home-slide .swiper .swiper-slide img {
  width: 100%;
  height: calc(100vh - 80px);
  object-fit: cover;
}

@media only screen and (max-width: 768px) {
  .home-slide {
    height: calc(100vh - 70px);
  }

  .home-slide .swiper {
    height: calc(100vh - 70px);
  }

  .home-slide .swiper .swiper-slide img {
    height: calc(100vh - 70px);
  }

  .home-slide .txt {
    width: 80vw;
    bottom: 40%;
    /*transform: translate(-50% -50%);*/
  }
}

.home-title {
  font-weight: 700;
  font-size: 1.25rem;
  text-align: center;
  position: relative;
  margin-bottom: 50px;
}

.home-title::after {
  display: block;
  content: '';
  width: 2px;
  height: 30px;
  background-color: var(--font-color);
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
}

.home-link-btn {
  width: 100%;
  max-width: 220px;
  margin: 50px auto 0;
  padding: 12px 15px;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid var(--font-color);
  background-color: #fff;
  border-radius: 100px;
  transition: .3s;
}

.home-link-btn span {
  position: relative;
  padding-left: 10px;
}

.home-link-btn span::before {
  display: block;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid var(--font-color);
  border-right: 0;
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
  transition: .3s;
}

.home-link-btn:hover {
  background-color: var(--font-color);
  color: #efefef;
}

.home-link-btn:hover span::before {
  border-left: 8px solid #efefef;
}

@media only screen and (max-width: 768px) {
  .home-title {
    font-size: 1.125rem;
    margin-bottom: 50px;
  }
}

.home-event {
  margin-top: 80px;
}

.home-event .list {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.home-event .list li a {
  display: block;
  /*box-shadow: 0px 0px 10px -2px rgba(0, 0, 0, 0.25);*/
}

.home-event .list li a .item-img {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.home-event .list li a .item-img::before {
  content: "";
  padding-top: 100%;
  display: block;
}

.home-event .list li a .item-img img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  transition: .3s;
}

.home-event .list li a .item-img img:hover {
  opacity: 0.85;
}

.home-event .list li a .item-title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  background-color: #fff;
  padding: 15px;
  line-height: 1.4;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .home-event {
    margin-top: 60px;
  }

  .home-event .list {
    margin-top: 60px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .home-event .list li {
    width: 100%;
    max-width: 380px;
    margin-inline: auto;
  }
}

.home-information {
  margin-top: 80px;
}

.home-information .list {
  width: 100%;
  max-width: 900px;
  margin: 60px auto 0;
}

.home-information .list li {
  padding: 20px 10px;
  border-bottom: 1px solid var(--font-color);
}

.home-information .list li a {
  text-decoration: none;
  display: flex;
  justify-content: start;
  gap: 40px;
}

.home-information-link {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.home-information-link .home-link-btn {
  margin: 0;
}

@media only screen and (max-width: 768px) {
  .home-information {
    margin-top: 60px;
  }

  .home-information .list li {
    padding: 0 0;
  }

  .home-information .list li a {
    padding: 17px 0;
    gap: 30px;
  }
}

.home-concept {
  background: #efefef url(./img/home/home_concept_bk.webp) no-repeat top center;
  background-size: contain;
  padding: 100px 0 120px;
  margin-top: 70px;
}

.home-concept .main-block .list {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.home-concept .main-block .list li a img {
  box-shadow: 0px 0px 12px -2px rgba(0, 0, 0, 0.25);
}

@media only screen and (max-width: 768px) {
  .home-concept {
    padding: 50px 0 60px;
    margin-top: 50px;
  }

  .home-concept .main-block .list {
    margin-top: 60px;
    grid-template-columns: 1fr;
    gap: 20px;
    place-items: center;
  }

  .home-concept .main-block .list li {
    width: 100%;
    max-width: 380px;
  }

  .home-concept .main-block .list li a img {
    box-shadow: 0px 0px 10px -2px rgba(0, 0, 0, 0.25);
  }
}

.home-modelhouse {
  padding: 100px 0 120px;
}

.home-modelhouse .list {
  margin-top: 80px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 25px;
}

.home-modelhouse .list li {
  width: 31%;
  background-color: #fff;
  box-shadow: 0px 0px 15px -1px rgba(0, 0, 0, 0.3);
  position: relative;
}

/*.home-modelhouse .list{
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  gap: 25px;
}
.home-modelhouse .list li{
  background-color: #fff;
  box-shadow: 0px 0px 15px -1px rgba(0, 0, 0, 0.3);
  position: relative;
}
.home-modelhouse .list li:nth-child(1):nth-last-child(2) {
  grid-column: 2 / 3;
}
.home-modelhouse .list li:nth-child(2):nth-last-child(1) {
  grid-column: 3 / 4;
}*/
.home-modelhouse .list li img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.home-modelhouse .list li .title-box {
  width: 35%;
  height: 100%;
  /* background-color: rgba(255, 255, 255, 0.94); */
  padding: 20px 15px;
  position: absolute;
  top: 0;
  right: 0;
  writing-mode: vertical-rl;
  text-orientation: upright;
  display: flex;
  align-items: center;
  line-height: 1.2;
}

.home-modelhouse .list li .title-box .inner {
  height: 100%;
}

.home-modelhouse .list li .title-box .tit1 {
  font-weight: 700;
  font-size: 1.1rem;
  /*font-size: 1.125rem;*/
}

.home-modelhouse .list li .title-box .tit2 {
  /*margin-top: auto;*/
  font-size: 0.875rem;
  margin-right: 10px;
  margin-top: 30%;
  display: flex;
  justify-content: end;
  align-items: end;
}

.home-modelhouse .banner {
  text-align: center;
  margin-top: 50px;
}

@media only screen and (max-width: 768px) {
  .home-modelhouse {
    padding: 50px 0 70px;
  }

  .home-modelhouse .list {
    margin-top: 60px;
    flex-direction: column;
    gap: 20px;
    /*place-items: center;*/
  }

  /*.home-modelhouse .list{
    margin-top: 60px;
    grid-template-columns: 1fr;
    gap: 20px;
    place-items: center;
  }*/
  .home-modelhouse .list li {
    width: 100%;
    max-width: 380px;
  }

  .home-modelhouse .list li img {
    height: 220px;
  }

  .home-modelhouse .list li .title-box {
    width: 30%;
    padding: 15px 10px;
  }

  .home-modelhouse .list li .title-box .tit1 {
    font-size: 0.95rem;
  }

  .home-modelhouse .list li .title-box .tit2 {
    font-size: 0.75rem;
    margin-right: 5px;
  }

  .home-modelhouse .banner {
    margin-top: 30px;
  }
}

.home-sekou {
  padding: 100px 0 120px;
  background: #efefef url(./img/home/home_sekou_bk.webp) no-repeat top center;
  background-size: cover;
}

.home-sekou .list {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.home-sekou .list li {
  /* box-shadow: 0px 0px 15px -1px rgba(0, 0, 0, 0.3); */
}

.home-sekou .list li a {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.home-sekou .list li a img {
  width: 100%;
  height: auto;
}

.home-sekou .list li a .txt {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  /* background-color: rgba(255, 255, 255, 0.9); */
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 1.125rem;
  text-align: center;
  line-height: 1.4;
  padding: 10px;
}

@media only screen and (max-width: 768px) {
  .home-sekou {
    padding: 50px 0 70px;
  }

  .home-sekou .list {
    margin-top: 60px;
    grid-template-columns: 1fr;
    gap: 20px;
    place-items: center;
  }

  .home-sekou .list li {
    width: 100%;
    max-width: 380px;
  }

  .home-sekou .list li a .txt {
    height: 60px;
    font-size: 1rem;
  }
}


.home-plans {
  padding: 100px 0 0;
}

.home-plans .plans-swiper {
  margin-top: 80px;
  margin-bottom: 50px;
}

.home-plans .plans-swiper .swiper-slide {
  text-align: center;
}

.home-plans .plans-swiper .swiper-slide .txt {
  text-align: center;
  margin-top: 10px;
  line-height: 1.4;
}

.home-plans .swiper-container {
  position: relative;
}

.home-plans .swiper-container .swiper-pagination {
  bottom: -40px;
}

.home-plans .home-link-btn {
  margin-top: 70px;
}

@media only screen and (max-width: 768px) {
  .home-plans {
    padding: 50px 0 0;
  }

  .home-plans .plans-swiper {
    margin-top: 60px;
    margin-bottom: 40px;
  }

  .home-plans .plans-swiper .swiper-slide .txt {
    margin-top: 7px;
  }

  .home-plans .swiper-container .swiper-pagination {
    bottom: -30px;
  }
}

.home-avance {
  padding: 100px 0 120px;
}

.home-avance .list {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.home-avance .list li div.pen .top-title {
  width: 200px;
  height: 100px;
  margin-inline: auto;
  border-top-left-radius: 250px;
  border-top-right-radius: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  line-height: 1.4;
  transform: translateY(20px);
  z-index: 1;
  position: relative;
}

.home-avance .list li div.pen .top-title.c1 {
  background-color: #e0eec1;
}

.home-avance .list li div.pen .top-title.c2 {
  background-color: #cce692;
}

.home-avance .list li div.pen .top-title.c3 {
  background-color: #b5da62;
}

.home-avance .list li div.pen .top-title.c4 {
  background-color: #a0d230;
}

.home-avance .list li div.pen .inner {
  z-index: 2;
  position: relative;
  box-shadow: 0px 5px 15px -5px rgba(0, 0, 0, 0.35);
}

.home-avance .list li div.pen .inner .title {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  text-align: center;
  line-height: 1.4;
  font-weight: 700;
  padding: 5px 5px;
}

@media only screen and (max-width: 1000px) {
  .home-avance .list li div.pen .top-title {
    width: 160px;
    height: 90px;
  }
}

@media only screen and (max-width: 768px) {
  .home-avance {
    padding: 50px 0 60px;
  }

  .home-avance .list li div.pen .top-title {
    width: 200px;
    height: 100px;
  }

  .home-avance .list {
    margin-top: 60px;
    grid-template-columns: 1fr;
    place-items: center;
    gap: 20px;
  }

  .home-avance .list li {
    width: 100%;
    max-width: 380px;
  }
}

.home-customervoice {
  padding: 100px 0 120px;
  background: #efefef url(./img/home/home_sekou_bk.webp) no-repeat top center;
  background-size: cover;
}

.home-customervoice .list {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.home-customervoice .list li a {
  display: flex;
  flex-direction: column;
}

.home-customervoice .list li a .img {
  position: relative;
  overflow: hidden;
}

.home-customervoice .list li a .img .label {
  display: inline-block;
  padding: 7px 12px;
  line-height: 1.2;
  color: #fff;
  background-color: var(--font-color);
  text-align: center;
  font-size: 0.75rem;
  position: absolute;
  top: 0;
  left: 0;
}

.home-customervoice .list li a .txt {
  line-height: 1.4;
  margin-top: 10px;
}

@media only screen and (max-width: 768px) {
  .home-customervoice {
    padding: 50px 0 70px;
  }

  .home-customervoice .list {
    margin-top: 60px;
    grid-template-columns: 1fr;
    gap: 30px;
    place-items: center;
  }

  .home-customervoice .list li {
    width: 100%;
    max-width: 380px;
  }
}

.home-company {
  padding: 100px 0 0;
}

.home-company .list {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.home-company .list2 {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

@media only screen and (max-width: 768px) {
  .home-company {
    padding: 50px 0 0;
  }

  .home-company .list {
    margin-top: 60px;
    grid-template-columns: 1fr;
    gap: 20px;
    place-items: center;
  }

  .home-company .list li {
    width: 100%;
    max-width: 380px;
  }

  .home-company .list2 {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    place-items: center;
  }

  .home-company .list2 li {
    width: 100%;
    max-width: 380px;
  }
}

.home_sponsorship {
  padding: 100px 0 0;
}

.home_sponsorship .list {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.home_sponsorship .list img {
  width: 100%;
  height: auto;
}

.home_sponsorship .list img.s1 {
  max-width: 130px;
}

.home_sponsorship .list img.s2 {
  max-width: 140px;
}

.home_sponsorship .list img.s3 {
  max-width: 201px;
}

@media only screen and (max-width: 768px) {
  .home_sponsorship {
    padding: 60px 0 0;
  }

  .home_sponsorship .list {
    gap: 10px;
  }
}

.home-bn {
  width: 100%;
  max-width: 900px;
  margin: 60px auto 60px;
  display: grid;
  gap: 20px;
}

@media only screen and (max-width: 900px) {
  .home-bn {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media only screen and (max-width: 600px) {
  .home-bn {
    margin: 40px auto 40px;
  }
}

.home-bunjouchi .inner {
  width: 100%;
  max-width: 900px;
  margin: 100px auto 80px;
}

.home-bunjouchi .inner .list {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 33px;
  margin-top: 80px;
}

.home-bunjouchi .inner .list li {
  width: 50%;
}

.home-bunjouchi .inner .list li .tit {
  margin-top: 30px;
}

.home-bunjouchi .inner .list li .sec1 {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.home-bunjouchi .inner .list li .sec1 p {
  line-height: 1.4;
  padding: 5px 15px 4px;
  border-radius: 100px;
}

.home-bunjouchi .inner .list li .sec1 p.kukaku {
  background-color: #0680ba;
  color: #fff;
}

.home-bunjouchi .inner .list li .sec1 p.location {
  border: 1px solid #555;
}

.home-bunjouchi .inner .list li .sec2 {
  margin-top: 10px;
}

.home-bunjouchi .inner .list li .sec2 .t1 {
  display: inline-block;
  border: 1px solid #555;
  padding: 5px 5px 3px;
  line-height: 1.2;
  font-size: 0.9rem;
  margin-top: 10px;
}

.home-bunjouchi .inner .list li .sec2 .p1 {
  font-weight: bold;
  font-size: 1.125rem;
  line-height: 1.4;
}

.home-bunjouchi .inner .list li .sec3 {
  color: #0680ba;
  margin-top: 10px;
  line-height: 1.4;
}

.home-bunjouchi .inner .list li a img {
  max-height: 365px;
  object-fit: cover;
  width: 100%;
  object-position: center;
}




@media only screen and (max-width: 768px) {
  .home-bunjouchi .inner {
    margin: 70px auto 40px;
  }

  .home-bunjouchi .inner .list {
    flex-direction: column;
    gap: 30px;
    margin-top: 60px;
  }

  .home-bunjouchi .inner .list li {
    width: 100%;
  }

  .home-bunjouchi .inner .list li .tit {
    margin-top: 20px;
  }

  .home-bunjouchi .inner .list li .sec1 {
    margin-top: 15px;
  }
}



/*-------------------------------
	Customer Voice
-------------------------------*/
.customervoice-top-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.customervoice-top-list li:not(:first-child) {
  margin-top: 50px;
}

.customervoice-top-list li .thumb {
  width: 42.23%;
  max-width: 380px;
}

.customervoice-top-list li .cont {
  width: 54%;
}

.customervoice-top-list li .cont .title {
  font-weight: bold;
  font-size: 24px;
  color: #8c2228;
  line-height: 1.4;
}

.customervoice-top-list li .cont .name {
  margin-top: 15px;
}

.customervoice-top-list li .cont .btn {
  margin-top: 5px;
  display: block;
  width: 140px;
  padding: 5px 10px 5px 15px;
  background: #b04848 url(./img/arrow04.png) no-repeat 10px 11px;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  border-radius: 4px;
  text-align: center;
}

.customervoice-md {
  width: 100%;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  background-position: center center;
  background-size: cover;
  border-radius: 5px;
}

.customervoice-md.md01 {
  background-image: url(./img/customervoice/customervoice01_md.jpg);
}

.customervoice-md.md02 {
  background-image: url(./img/customervoice/customervoice02_md.jpg);
}

.customervoice-md .txt {
  display: inline-block;
  padding: 40px 30px;
  background-color: rgba(255, 255, 255, 0.7);
  font-size: 30px;
  line-height: 1.5;
  font-weight: bold;
}

.customervoice-md .name {
  display: inline-block;
  padding: 5px;
  background-color: rgba(255, 255, 255, 0.6);
  margin-top: 20px;
  line-height: 1.4;
}

.customervoice-title01 {
  font-weight: bold;
  font-size: 28px;
  color: #a37a29;
  margin-top: 50px;
  line-height: 1.5;
}

.customervoice-title02 {
  font-weight: bold;
  font-size: 1.4em;
  color: #a37a29;
  margin-top: 50px;
  line-height: 1.5;
  position: relative;
  padding-left: 1.2em;
}

.customervoice-title02::before {
  content: '';
  display: block;
  width: 1em;
  height: 1em;
  position: absolute;
  top: 0.25em;
  left: 0;
  background-image: url(./img/customervoice/cv_icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.customervoice-title02.yt::before {
  background-image: url(./img/customervoice/yt_icon.svg);
}

.customervoice-content p {
  margin-top: 25px;
}

.customervoice-content .img-left {
  display: block;
  float: left;
  margin: 0 40px 20px 0;
}

.customervoice-content .img-right {
  display: block;
  float: right;
  margin: 0 0 20px 40px;
}

.customervoice-content .ex-box {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.customervoice-content .ex-box .txt-box {
  flex: 1 0 0;
}

.customervoice-content .ex-box .txt-box p:first-child {
  margin-top: 0;
}

.customervoice-content .ex-box .img-box {
  display: flex;
  justify-content: flex-end;
  flex-flow: column;
  gap: 10px;
  width: 300px;
  margin: 0 0 20px 40px;
}

.customervoice-under-link {
  margin-top: 80px;
  text-align: center;
}

.customervoice-under-link .sp {
  display: none;
}

.customervoice-hero {
  width: 100%;
}

.customervoice-hero>img {
  border-radius: 6px;
}

.ccustomervoice-youtube {
  width: 100%;
  max-width: 800px;
  margin: 25px auto 0;
  aspect-ratio: 16 / 9;
}

.ccustomervoice-youtube iframe {
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 768px) {
  .customervoice-top-list li {
    flex-direction: column;
  }

  .customervoice-top-list li .thumb {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
  }

  .customervoice-top-list li .cont {
    width: 100%;
    margin-top: 20px;
    text-align: center;
  }

  .customervoice-top-list li .cont .title {
    font-size: 20px;
    line-height: 1.5;
  }

  .customervoice-top-list li .cont .name {
    margin-top: 10px;
  }

  .customervoice-top-list li .cont .btn {
    margin: 15px auto 0;
  }

  .customervoice-md {
    height: 420px;
  }

  .customervoice-md .txt {
    padding: 30px 30px;
    ;
    font-size: 26px;
  }

  .customervoice-title01 {
    font-size: 24px;
    margin-top: 40px;
    line-height: 1.6;
  }

  .customervoice-content p {
    margin-top: 25px;
  }

  .customervoice-content .img-left {
    display: block;
    width: 100%;
    max-width: 430px;
    float: none;
    margin: 0 auto 30px auto;
  }

  .customervoice-content .img-right {
    display: block;
    width: 100%;
    max-width: 430px;
    float: none;
    margin: 0 auto 30px auto;
  }

  .customervoice-content .ex-box {
    flex-direction: column;
    margin-top: 30px;
  }

  .customervoice-content .ex-box .img-box {
    justify-content: center;
    flex-flow: row;
    gap: 10px;
    width: 100%;
    margin: 30px 0 0 0;
  }

  .customervoice-content .ex-box .img-box img {
    display: block;
    width: 48%;
    max-width: 300px;
  }

  .customervoice-under-link {
    margin-top: 40px;
  }

  .customervoice-under-link .pc {
    display: none;
  }

  .customervoice-under-link .sp {
    display: inline-block;
  }
}

@media only screen and (max-width: 480px) {
  .customervoice-top-list li .cont {
    text-align: left;
  }

  .customervoice-md {
    height: 340px;
    padding: 0 20px;
  }

  .customervoice-md .txt {
    padding: 10px 15px;
    ;
    font-size: 22px;
  }

  .ccustomervoice-youtube {
    margin: 20px auto 0;
  }
}

@media only screen and (max-width: 380px) {
  .customervoice-md {
    height: 300px;
    padding: 15px;
  }

  .customervoice-md .txt {
    padding: 10px 10px;
    ;
    font-size: 22px;
  }
}

/*-------------------------------
	Company
-------------------------------*/
.company-md {
  width: 100%;
}

.company-box {
  margin-top: 40px;
}

.company-list {
  margin-top: 30px;
  border-top: 1px solid #ebe2e2;
}

.company-list li {
  border-bottom: 1px solid #ebe2e2;
  display: flex;
  justify-content: space-between;
}

.company-list li .tit {
  width: 30%;
  background-color: #faf8f8;
  padding: 25px 15px 25px;
}

.company-list li .cont {
  width: 70%;
  padding: 25px 15px 25px;
}

.company-list li .cont a {
  text-decoration: underline;
}

.company-map {
  width: 100%;
  margin-top: 50px;
}

.company-map .inner {
  margin-top: 30px;
}

.company-map iframe {
  display: block;
  width: 100%;
  height: 400px;
}

.company-box .banner {
  margin-top: 30px;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .company-box {
    margin-top: 30px;
  }

  .company-list li {
    flex-direction: column;
  }

  .company-list li .tit {
    width: 100%;
    background-color: #faf8f8;
    padding: 20px 12px 20px;
  }

  .company-list li .cont {
    width: 100%;
    padding: 20px 12px 20px;
  }

  .company-map {
    margin-top: 40px;
  }

  .company-box .banner {
    margin-top: 20px;
  }
}

/*-------------------------------
	About-company
-------------------------------*/
.about-company-hero {
  width: 100%;
}

.about-company-box {
  margin-top: 70px;
}

.about-company-title01 {
  font-size: 26px;
  line-height: 1.4;
  position: relative;
  padding-left: 70px;
}

.about-company-title01::before {
  display: block;
  content: '・・・';
  font-weight: 700;
  font-size: 1.5em;
  color: #ff7700;
  line-height: 1;
  letter-spacing: -0.5em;
  position: absolute;
  top: 0px;
  left: -5px;
}

.about-company-textbox {
  margin-top: 1.2em;
  display: grid;
  grid-template-columns: 1fr 30%;
  gap: 2em;
}

.about-company-textbox p:not(:first-child) {
  margin-top: 1em;
}

.about-company-textbox .img {
  padding-top: 0.5em;
}

.about-company-imgbox {
  text-align: center;
  margin-top: 30px;
}

.about-company-box .img {
  margin-top: 2em;
  margin-bottom: 1.5em;
  text-align: center;
}

.about-company-box .img2 {
  margin-top: 3em;
  margin-bottom: 3.5em;
  text-align: center;
}

.about-company-box .img3 {
  margin-top: 1em;
  margin-bottom: 1em;
  text-align: center;
}

.about-company-box .ti01 {
  font-weight: 700;
  font-size: 32px;
  color: #8c2228;
}

.about-company-box .te01 {
  font-weight: 700;
  color: #8c2228;
}

.about-company-box .te02 {
  margin-top: 1.5em;
  background-color: #fbf0f1;
  padding: 1.5em;
  font-weight: 700;
  color: #8c2228;
}

/*.common-title01{font-size: 26px;padding-bottom: 5px;border-bottom: 1px solid #ebe2e2;position: relative;line-height: 1.4;}
.common-title01:after{content: '';width: 120px;height: 1px;background-color: #b11c1c;position: absolute;bottom: -1px;left: 0;}
.common-textbox{margin-top: 1.2em;}
.common-textbox p:not(:first-child){margin-top: 1em;}

common-textbox{margin-top: 1em;}*/


.about-company-top-title {
  font-weight: bold;
  font-size: 1.8rem;
  text-align: center;
  border-top: 6px dotted #ff7700;
  border-bottom: 6px dotted #ff7700;
  padding: 1em 0.5em;
  line-height: 1.6;
}

.about-company-title02 {
  margin-bottom: 1.5em;
}

.about-company-title02 span {
  display: inline-block;
  padding: 0.7em 1em;
  font-weight: bold;
  color: #fff;
  background-color: #8c2228;
  border-radius: 100px;
  line-height: 1;
}

.about-company-box .link-box {
  margin-top: -1em;
  margin-bottom: 2em;
}

.about-company-list {
  margin-top: 3em;
}

.about-company-list li {
  margin-top: 1.8em;
}

.about-company-list li .head {
  border-bottom: 2px solid #ff7700;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 0.5em;
}

.about-company-list li .head .num {
  color: #ff7700;
  font-weight: bold;
  padding: 0.5em;
  position: relative;
}

.about-company-list li .head .num span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  background-color: #ff7700;
  color: #fff;
  border-radius: 50%;
  line-height: 0;
  position: absolute;
  top: 14px;
  left: 68px;
}

.about-company-list li .head .tit {
  font-weight: bold;
  font-size: 1.125rem;
  padding: 0.5em;
}

.about-company-list li .cont {
  margin-top: 0.6em;
}

.about-company-last {
  font-weight: bold;
  margin-top: 2.5em;
}

.about-company-voice {
  margin-top: 2em;
  padding: 1.5em;
  background-color: #fcf1e9;
  border-radius: 10px;
}

.about-company-voice .notice {
  font-weight: bold;
  font-size: 1.4rem;
  color: #8c2228;
  text-align: center;
}

.about-company-voice .notice span {
  background: linear-gradient(transparent 60%, #ffde4d 30%);
}

.about-company-voice .list {
  margin-top: 0.5em;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5em;
}

.about-company-voice .list li {
  font-weight: bold;
  position: relative;
  display: inline-block;
  margin: 1.5em 0;
  padding: 1em;
  background: #fcc3ad;
  border-radius: 15px;
  line-height: 1.5;
}

.about-company-voice .list li:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #fcc3ad;
}

.about-company-box .img-box {
  margin-top: 2em;
  margin-bottom: 1.5em;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2em;
}

@media only screen and (max-width: 768px) {
  .about-company-box {
    margin-top: 50px;
  }

  .about-company-title01 {
    font-size: 22px;
    padding-left: 35px;
  }

  .about-company-title01::before {
    content: '・';
    font-size: 2.6em;
    letter-spacing: -0.9em;
    top: -10px;
    left: -15px;
  }

  .about-company-textbox {
    margin-top: 1em;
    grid-template-columns: none;
    gap: 1.5em;
  }

  .about-company-textbox .img {
    padding-top: 0;
    text-align: center;
  }

  .about-company-imgbox {
    margin-top: 20px;
  }

  .about-company-box .ti01 {
    font-size: 26px;
  }

  .about-company-box .te02 {
    margin-top: 1em;
  }

  .about-company-box .img2 {
    margin-top: 2.5em;
    margin-bottom: 3em;
  }

  .about-company-top-title {
    font-size: 1.5rem;
    text-align: center;
    border-top: 5px dotted #ff7700;
    border-bottom: 5px dotted #ff7700;
    padding: 0.7em 0.3em;
  }

  .about-company-list li .head {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .about-company-list li .head .num {
    padding: 0;
  }

  .about-company-list li .head .num span {
    font-size: 0.875rem;
    width: 22px;
    height: 22px;
    position: absolute;
    top: 3px;
    left: 55px;
  }

  .about-company-list li .head .tit {
    padding: 0;
  }

  .about-company-list li .cont {
    margin-top: 0.5em;
  }

  .about-company-voice .notice {
    font-size: 1.25rem;
  }

  .about-company-voice .list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1em;
  }

  .about-company-voice .list li {
    margin: 0.5em 0;
  }

  .about-company-box .img-box {
    grid-template-columns: 1fr;
    gap: 1em;
  }
}

/*-------------------------------
	Staff
-------------------------------*/
.staff-top-list {
  margin-top: -10px;
}

.staff-top-list>li {
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
}

.staff-top-list>li .cont {
  width: 76%;
  order: 2;
}

.staff-top-list>li .img-box {
  width: 20%;
  max-width: 180px;
  order: 1;
}

.staff-top-list>li .cont .name {
  font-size: 14px;
  line-height: 1.4;
}

.staff-top-list>li .cont .name .position {
  font-size: 14px;
}

.staff-top-list>li .cont .name .tit {
  font-size: 24px;
}

.staff-top-list>li .cont .name .alfa {
  font-size: 14px;
}

.staff-top-list>li .cont .inner-list {
  margin-top: 20px;
}

.staff-top-list>li .cont .inner-list li {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
}

.staff-top-list>li .cont .inner-list li .tit02 {
  width: 20%;
}

.staff-top-list>li .cont .inner-list li .tit02 span {
  display: block;
  background-color: #c8afa3;
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  border-radius: 20px;
}

.staff-top-list>li .cont .inner-list li .cont02 {
  width: 77%;
}

.staff-top-list>li .img-box .btn {
  margin-top: 10px;
}

.staff-top-list>li .img-box .btn a {
  display: block;
  padding: 5px 10px 5px 15px;
  background: #b04848 url(./img/arrow04.png) no-repeat 34% 11px;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  border-radius: 4px;
  text-align: center;
}

.staff-md {
  display: flex;
  justify-content: center;
  align-items: center;
}

.staff-md .name {
  width: 25%;
  margin: 0 10px;
  line-height: 1.4;
}

.staff-md .name .position {
  font-size: 16px;
}

.staff-md .name .tit {
  font-size: 28px;
}

.staff-md .name .alfa {
  font-size: 16px;
}

.staff-md .img {
  width: 30%;
  margin: 0 10px;
}

.staff-main-list {
  margin-top: 40px;
  border-top: 1px dotted #c9ab9e;
}

.staff-main-list li {
  padding: 25px 0;
  border-bottom: 1px dotted #c9ab9e;
}

.staff-main-list li .tit {
  font-weight: bold;
  font-size: 20px;
  background-image: url(./img/icon_maru01.png);
  background-position: 0 8px;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  padding-left: 28px;
}

.staff-main-list li .cont {
  margin-top: 10px;
}

.staff-main-list li .cont p:not(:first-child) {
  margin-top: 20px;
}

.staff-back-btn {
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 30px auto 0;
  padding: 10px 10px;
  background-color: #b04848;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  border-radius: 4px;
  text-align: center;
}

.staff-back-btn span {
  background: url(./img/arrow04.png) no-repeat 0 4px;
  padding-left: 15px;
}

.staff-back-btn:hover {
  color: #fff !important;
  text-decoration: none;
}

@media only screen and (max-width: 768px) {
  .staff-top-list>li {
    padding: 20px 0;
    flex-direction: column;
    border-bottom: 1px dotted #c9ab9e;
  }

  .staff-top-list>li .cont {
    width: 100%;
    order: 2;
    margin-top: 15px;
  }

  .staff-top-list>li .cont .name .tit {
    text-align: center;
  }

  .staff-top-list>li .cont .name .alfa {
    text-align: center;
  }

  .staff-top-list>li .img-box {
    width: 100%;
    max-width: 180px;
    margin: 0 auto;
    order: 1;
  }

  .staff-top-list>li .cont .inner-list {
    margin-top: 15px;
  }

  .staff-top-list>li .cont .inner-list li {
    margin-top: 10px;
    flex-direction: column;
  }

  .staff-top-list>li .cont .inner-list li .tit02 {
    width: 30%;
  }

  .staff-top-list>li .cont .inner-list li .cont02 {
    width: 100%;
  }

  .staff-md .name {
    width: 35%;
  }

  .staff-md .img {
    width: 40%;
  }

  .staff-main-list {
    margin-top: 30px;
  }

  .staff-main-list li {
    padding: 18px 0;
  }

  .staff-main-list li .tit {
    font-size: 18px;
    background-position: 0 6px;
    background-size: 18px 18px;
    padding-left: 24px;
  }

  .staff-main-list li .cont p:not(:first-child) {
    margin-top: 15px;
  }
}

@media only screen and (max-width: 480px) {
  .staff-md {
    justify-content: space-between;
  }

  .staff-md .name {
    width: 50%;
  }

  .staff-md .img {
    width: 48%;
  }
}

/*-------------------------------
	After Service
-------------------------------*/
.after-list li {
  position: relative;
  background-color: #f5eee6;
  padding: 8px;
  border-radius: 12px;
}

.after-list li:after {
  display: block;
  content: '';
  width: 80px;
  height: 20px;
  background: url(./img/afterservice/afterservice_arrow.png) no-repeat 0 0;
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
}

.after-list li:not(:first-child) {
  margin-top: 50px;
}

.after-list li:last-child:after {
  display: none;
}

.after-list li .inner {
  border: 2px dotted #fff;
  border-radius: 10px;
  padding: 20px;
}

.after-list li .inner .title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.after-list li .inner .title .num {
  width: 60px;
  height: 60px;
  background-color: #b24349;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  color: #fff;
  font-weight: bold;
  border-radius: 35px;
  line-height: 1.2;
}

.after-list li .inner .title .num .upper {
  font-size: 14px;
  padding-top: 5px;
}

.after-list li .inner .title .num .lower {
  font-size: 20px;
}

.after-list li .inner .title .tit {
  font-size: 26px;
  font-weight: bold;
  margin-left: 20px;
  line-height: 1.4;
}

.after-list li .inner .title .tit span {
  display: block;
}

.after-list li .inner .title .tit .label {
  display: inline-block;
  font-size: 14px;
  color: #fff;
  padding: 5px 0px 5px 10px;
  background-color: #ee3131;
  border-radius: 3px;
}

.after-list li .inner .cont01 {
  margin-top: 20px;
}

.after-list li .inner .cont02 {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}

.after-list li .inner .cont02 .text {
  width: 68%;
}

.after-list li .inner .cont02 .img {
  width: 28%;
  max-width: 230px;
}

.after-event {
  margin-top: 80px;
}

.after-event .title {
  margin-top: 60px;
  font-weight: bold;
  font-size: 28px;
  color: #a37a29;
  line-height: 1.5;
}

.after-event .text {
  margin-top: 30px;
}

.after-event-list {
  border-top: 1px dotted #c9ab9e;
  margin-top: 30px;
}

.after-event-list li {
  padding: 25px 0 35px;
  border-bottom: 1px dotted #c9ab9e;
}

.after-event-list li .tit {
  font-weight: bold;
  font-size: 20px;
  background-image: url(./img/icon_maru01.png);
  background-position: 0 8px;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  padding-left: 28px;
  margin-bottom: 15px;
}

.after-event-list li .img {
  text-align: center;
  margin-top: 30px;
}

@media only screen and (max-width: 768px) {
  .after-list li .inner .title .num {
    width: 50px;
    height: 50px;
  }

  .after-list li .inner .title .num .upper {
    font-size: 12px;
    padding-top: 5px;
  }

  .after-list li .inner .title .num .lower {
    font-size: 18px;
  }

  .after-list li .inner .title .tit {
    font-size: 22px;
    margin-left: 15px;
  }

  .after-list li .inner .title .tit .label {
    font-size: 12px;
    color: #fff;
    padding: 4px 0px 4px 8px;
  }

  .after-list li .inner .cont02 {
    margin-top: 15px;
    flex-direction: column;
  }

  .after-list li .inner .cont02 .text {
    width: 100%;
  }

  .after-list li .inner .cont02 .img {
    width: 100%;
    margin: 20px auto 0;
  }

  .after-event {
    margin-top: 60px;
  }

  .after-event .text {
    margin-top: 20px;
  }

  .after-event .title {
    font-size: 24px;
    margin-top: 40px;
    line-height: 1.6;
  }

  .after-event-list li {
    padding: 20px 0 30px
  }

  .after-event-list li .tit {
    font-size: 18px;
    background-position: 0 6px;
    background-size: 18px 18px;
    padding-left: 24px;
  }
}

/*-------------------------------
	Privacy
-------------------------------*/
.privacy-list {
  border-top: 1px dotted #c9ab9e;
  margin-top: 40px;
}

.privacy-list>li {
  border-bottom: 1px dotted #c9ab9e;
  padding: 35px 0 40px;
}

.privacy-list>li .title {
  font-weight: bold;
  font-size: 20px;
  border-left: 10px solid #c8afa3;
  padding-left: 8px;
  line-height: 1.4;
}

.privacy-list>li .text {
  margin-top: 20px;
}

.privacy-list>li ol {
  margin: 30px 0 0 40px;
  list-style-position: outside;
  list-style-type: decimal;
}

.privacy-list>li ol>li {
  margin-top: 4px;
}

.privacy-list>li .inner {
  margin-top: 30px;
  background: #eeeae9;
  padding: 15px 20px;
}

.privacy-list>li .inner .tit {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.privacy-list>li .inner a {
  text-decoration: underline;
  color: #8c2228;
}

.privacy-list>li .inner div br {
  display: none;
}

@media only screen and (max-width: 768px) {
  .privacy-list {
    margin-top: 30px;
  }

  .privacy-list>li {
    padding: 30px 0 35px;
  }

  .privacy-list>li .text {
    margin-top: 15px;
  }

  .privacy-list>li ol {
    margin: 25px 0 0 30px;
  }

  .privacy-list>li .inner {
    margin-top: 30px;
    background: #eeeae9;
    padding: 15px 20px;
  }

  .privacy-list>li .inner .tit {
    font-weight: bold;
    margin-bottom: 0.5rem;
  }

  .privacy-list>li .inner a {
    text-decoration: underline;
    color: #8c2228;
  }

  .privacy-list>li .inner div {
    margin-top: 5px;
  }

  .privacy-list>li .inner div br {
    display: block;
  }
}

/*-------------------------------
	Sitemap
-------------------------------*/
.sitemap-block>ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.sitemap-block>ul>li {
  width: 31%;
  margin-right: 2.33%;
}

.sitemap-block>ul>li.home {
  width: 100%;
  margin-right: 0;
}

.sitemap-block>ul>li a {
  display: block;
  font-weight: bold;
  padding: 15px 0;
}

.sitemap-block>ul>li a .material-icons {
  font-size: 22px;
  font-weight: bold;
  transition: all .3s;
  color: #d31831;
  vertical-align: -5px;
}

.sitemap-block>ul>li a:hover .material-icons {
  transform: translateX(10px);
}

.sitemap-block>ul>li>ul.second>li>a {
  font-weight: normal;
  padding: 5px 0;
  margin-left: 20px;
  background-image: url(./img/arrow02.png);
  background-repeat: no-repeat;
  background-position: 0 16px;
  padding-left: 10px;
  line-height: 1.6;
  font-size: 1rem;
}

@media only screen and (max-width: 768px) {
  .sitemap .main-field {
    padding: 20px 20px 20px;
  }

  .sitemap-block>ul>li {
    width: 46%;
    margin-right: 2%;
  }
}

@media only screen and (max-width: 480px) {
  .sitemap-block>ul>li {
    width: 100%;
    margin-right: 0;
  }
}

/*-------------------------------
	Reason
-------------------------------*/
.reason-box:not(:first-child) {
  margin-top: 80px;
}

.reason-box .head {
  padding: 15px 0;
  border-top: 1px dotted #867061;
  border-bottom: 1px dotted #867061;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.reason-box .head .pointnum {
  width: 90px;
  height: 90px;
  background-color: #867061;
  padding: 5px;
  display: flex;
  justify-content: center;
  flex-flow: column;
  align-items: center;
  font-weight: bold;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  line-height: 1;
}

.reason-box .head .pointnum .upper {
  font-size: 20px;
}

.reason-box .head .pointnum .lower {
  font-size: 34px;
}

.reason-box .head .title {
  flex: 1 0 0;
  margin-left: 15px;
  font-weight: bold;
  font-size: 30px;
  line-height: 1.4;
  letter-spacing: 0.1em;
}

.reason-box .text-box {
  margin-top: 30px;
}

.reason-box .text-box p:not(:first-child) {
  margin-top: 30px;
}

.reason-box .worries {
  margin: 50px 0 50px;
  text-align: center;
}

.reason-box .worries .sp {
  display: none;
}

.reason-box .img-box01 {
  margin: 50px 0 50px;
  text-align: center;
  display: flex;
  justify-content: space-between;
}

.reason-box .img-box01 img {
  width: 50%;
  max-width: 440px;
}

.reason-box .img-box02 {
  margin: 50px 0 50px;
  text-align: center;
  display: flex;
  justify-content: center;
}

.reason-box .img-box02 img {
  width: 50%;
  max-width: 360px;
  margin: 0 10px;
}

.reason-box .md {
  margin-top: 30px;
  font-weight: bold;
  font-size: 26px;
  color: #a37a29;
  line-height: 1.4;
}

@media only screen and (max-width: 768px) {
  .reason-box:not(:first-child) {
    margin-top: 60px;
  }

  .reason-box .head {
    padding: 10px 0;
    align-items: flex-start;
  }

  .reason-box .head .pointnum {
    width: 60px;
    height: 60px;
  }

  .reason-box .head .pointnum .upper {
    font-size: 16px;
  }

  .reason-box .head .pointnum .lower {
    font-size: 26px;
  }

  .reason-box .head .title {
    font-size: 24px;
    letter-spacing: 0;
  }

  .reason-box .text-box {
    margin-top: 25px;
  }

  .reason-box .worries {
    margin: 40px 0 40px
  }

  .reason-box .worries .pc {
    display: none;
  }

  .reason-box .worries .sp {
    display: inline-block;
  }

  .reason-box .img-box01 {
    margin: 40px 0 40px;
    flex-direction: column;
  }

  .reason-box .img-box01 img {
    display: block;
    width: 100%;
    margin: 15px auto 0;
  }

  .reason-box .img-box02 {
    margin: 40px 0 40px;
    flex-direction: column;
  }

  .reason-box .img-box02 img {
    display: block;
    width: 100%;
    margin: 15px auto 0;
  }

  .reason-box .md {
    margin-top: 20px;
    font-size: 22px;
    line-height: 1.6;
  }
}

/*-------------------------------
	Model House
-------------------------------*/
.modelhouse-top-list li {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.modelhouse-top-list li .img {
  width: 24.45%;
  max-width: 220px;
}

.modelhouse-top-list li .cont {
  flex: 1 0 0;
  margin-left: 20px;
  line-height: 1.4;
}

.modelhouse-top-list li .cont .title {
  font-weight: bold;
  font-size: 28px;
}

.modelhouse-top-list li .cont .name {
  font-weight: bold;
  font-size: 20px;
  margin-top: 10px;
}

.modelhouse-top-list li .cont .btn {
  display: block;
  width: 100%;
  max-width: 160px;
  padding: 8px 10px;
  background-color: #b04848;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  border-radius: 4px;
  text-align: center;
  position: absolute;
  bottom: 0;
  right: 0;
}

.modelhouse-top-list li .cont .btn span {
  background: url(./img/arrow04.png) no-repeat 0 4px;
  padding-left: 15px;
}

.modelhouse-block .text-box {
  margin-top: 40px;
}

.modelhouse-block .text-box p:not(:first-child) {
  margin-top: 30px;
}

.modelhouse-block .img-box {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.modelhouse-block .img-box img {
  width: 48.89%;
  max-width: 440px;
  margin-top: 10px;
}

.modelhouse-box {
  margin-top: 50px;
}

.modelhouse-box .img-box02 {
  margin-top: 40px;
  text-align: center;
}

.modelhouse-box .youtube-box {
  margin-top: 50px;
}

.modelhouse-voice {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.modelhouse-voice img {
  width: 43.78%;
  max-width: 394px;
  margin: 10px 10px 0;
}

.modelhouse-information {
  margin-top: 40px;
  border-top: 1px solid #ebe2e2;
}

.modelhouse-information li {
  border-bottom: 1px solid #ebe2e2;
  display: flex;
  justify-content: space-between;
}

.modelhouse-information li .tit {
  width: 30%;
  background-color: #faf8f8;
  padding: 25px 15px 25px;
}

.modelhouse-information li .cont {
  width: 70%;
  padding: 25px 15px 25px;
}

.modelhouse-information li .cont a {
  text-decoration: underline;
}

.modelhouse-banner {
  display: block;
  width: 100%;
  max-width: 526px;
  margin: 40px auto 0;
}

.modelhouse-box .inner {
  margin-top: 30px;
}

.modelhouse-box .inner .tit {
  font-weight: bold;
  font-size: 22px;
}

.modelhouse-box .inner .txt {
  margin-top: 10px;
}

.modelhouse-box .inner .img {
  margin-top: 30px;
}

.modelhouse-box .inner .btn {
  margin: 30px 0 30px;
  padding-bottom: 30px;
  border-bottom: 1px dotted #8c2228;
}

.modelhouse-box .inner .btn a {
  display: block;
  width: 60%;
  line-height: 1;
  padding: 15px 10px;
  background-color: #8c2228;
  color: #fff;
  margin: 0 auto;
  text-align: center;
  border-radius: 4px;
}

.modelhouse-gallery {
  margin-top: 0;
  margin-left: -2.33%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.modelhouse-gallery li {
  width: 31%;
  max-width: 284px;
  margin-left: 2.33%;
  margin-top: 30px;
}

.single-modelhouses .modelhouse-block h2,
.single-modelhouses .modelhouse-block h3 {
  margin-top: 2.2em;
  margin-bottom: 1em;
  font-size: 26px;
  padding-bottom: 5px;
  border-bottom: 1px solid #ebe2e2;
  position: relative;
  line-height: 1.4;
}

.single-modelhouses .modelhouse-block h2::after,
.single-modelhouses .modelhouse-block h3::after {
  content: '';
  width: 120px;
  height: 1px;
  background-color: #b11c1c;
  position: absolute;
  bottom: -1px;
  left: 0;
}

.single-modelhouses .modelhouse-block ul {
  list-style-type: disc;
  padding-left: 1.2em;
}

.single-modelhouses .modelhouse-block ul li {
  margin-top: 0.2em;
}

.single-modelhouses .modelhouse-block ul.modelhouse-information {
  padding-left: 0;
}

.single-modelhouses .modelhouse-block ul.modelhouse-information li {
  margin-top: 0;
}

.single-modelhouses .modelhouse-block .wp-block-image {
  margin-top: 2em;
  display: block;
}

.single-modelhouses .modelhouse-block .wp-block-embed {
  display: block;
  width: 100%;
  max-width: 760px;
  margin: 2em auto 1.5em;
}

.single-modelhouses .modelhouse-block .modelhouse-md+p {
  margin-top: 2em;
}

@media only screen and (max-width: 768px) {
  .modelhouse-top-list {
    margin-top: 30px;
  }

  .modelhouse-top-list li {
    margin-top: 0;
    flex-direction: column;
    padding: 20px 0;
  }

  .modelhouse-top-list li:not(:first-child) {
    border-top: 1px dotted #867061;
  }

  .modelhouse-top-list li .img {
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
  }

  .modelhouse-top-list li .cont {
    width: 100%;
    margin: 20px 0 0 0;
    text-align: center;
  }

  .modelhouse-top-list li .cont .title {
    font-size: 24px;
  }

  .modelhouse-top-list li .cont .name {
    font-size: 18px;
  }

  .modelhouse-top-list li .cont .btn {
    position: relative;
    margin: 20px auto 0;
  }

  .modelhouse-top-list li .cont .title br {
    display: none;
  }

  .modelhouse-block .text-box {
    margin-top: 30px;
  }

  .modelhouse-block .text-box p:not(:first-child) {
    margin-top: 25px;
  }

  .modelhouse-block .img-box {
    margin-top: 30px;
    flex-direction: column;
  }

  .modelhouse-block .img-box img {
    display: block;
    width: 100%;
    max-width: 440px;
    margin: 10px auto 0;
  }

  .modelhouse-box {
    margin-top: 40px;
  }

  .modelhouse-box .img-box02 {
    margin-top: 30px;
  }

  .modelhouse-box .youtube-box {
    margin-top: 30px;
  }

  .modelhouse-voice {
    margin-top: 30px;
    flex-direction: column;
  }

  .modelhouse-voice img {
    width: 100%;
    max-width: 394px;
    margin: 10px auto 0;
  }

  .modelhouse-information {
    margin-top: 30px
  }

  .modelhouse-information li {
    flex-direction: column;
  }

  .modelhouse-information li .tit {
    width: 100%;
    background-color: #faf8f8;
    padding: 20px 12px 20px;
  }

  .modelhouse-information li .cont {
    width: 100%;
    padding: 20px 12px 20px;
  }

  .modelhouse-box .inner {
    margin-top: 25px;
  }

  .modelhouse-box .inner .tit {
    font-size: 18px;
    line-height: 1.4;
  }

  .modelhouse-box .inner .img {
    margin-top: 20px;
  }

  .modelhouse-box .inner .btn {
    margin: 25px 0 25px;
    padding-bottom: 20px;
  }

  .modelhouse-box .inner .btn a {
    display: block;
    width: 100%;
  }

  .single-modelhouses .modelhouse-block h2,
  .single-modelhouses .modelhouse-block h3 {
    margin-top: 1.75em;
    margin-bottom: 0.6em;
    font-size: 22px;
  }

  .single-modelhouses .modelhouse-block .wp-block-image {
    margin-top: 1.5em;
  }

  .single-modelhouses .modelhouse-block .wp-block-embed {
    margin: 1.5em auto 1.2em;
  }

  .single-modelhouses .modelhouse-block .modelhouse-md+p {
    margin-top: 1.5em;
  }
}

@media only screen and (max-width: 480px) {
  .modelhouse-gallery {
    margin-top: 20px;
    margin-left: 0;
    justify-content: space-between;
  }

  .modelhouse-gallery li {
    width: 48.5%;
    max-width: 284px;
    margin-left: 0;
    margin-top: 10px;
  }
}

.modelhouse-mujin-md {
  font-size: 30px;
  text-align: center;
  margin: 20px 0 40px;
  font-weight: bold;
}

.modelhouse-mujin-md span {
  border-bottom: 3px solid #FBA628;
}

.modelhouse-mujin-top-sp {
  display: none;
}

.modelhouse-mujin-block {
  margin-top: 60px;
}

/*.modelhouse-mujin-last{margin-bottom: 80px;}*/
.modelhouse-mujin-block .title {
  padding: 20px;
  line-height: 1;
  font-weight: bold;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  background-color: #004076;
  font-size: 24px;
  margin-bottom: 20px;
}

.modelhouse-mujin-block .list li {
  position: relative;
  padding-left: 18px;
  margin-top: 5px;
}

.modelhouse-mujin-block .list li:before {
  display: block;
  content: '';
  width: 12px;
  height: 12px;
  background-color: #EEA908;
  /*background-image: url(./img/modelhouse/modelhouse_asahi_mujin_icon.svg);
    background-size: contain;
    background-repeat: no-repeat;*/
  position: absolute;
  top: 10px;
  left: 0;
  border-radius: 50%;
}

.modelhouse-mujin-block .link-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.modelhouse-mujin-block .link-box a {
  width: 49%;
  max-width: 430px;
  transition: .3s;
  margin-top: 10px;
}

.modelhouse-mujin-block .link-box a:hover {
  opacity: 0.8;
}

.modelhouse-mujin-block .inner-box {
  margin-top: 40px;
}

.modelhouse-mujin-block .title02 {
  font-weight: bold;
  line-height: 1.2;
  border-left: 10px solid #004076;
  padding: 5px 0 4px 10px;
  margin-bottom: 20px;
  font-size: 20px;
}

.modelhouse-mujin-block .inner-box .modelhouse-sp {
  display: none;
}

.modelhouse-mujin-block .inner-box .flow {
  text-align: center;
}

.modelhouse-mujin-block .inner-box .flow-link {
  margin-top: 20px;
  line-height: 1.4;
}

.modelhouse-mujin-block .inner-box .flow-link a {
  color: #004076;
  text-decoration: underline;
}

.modelhouse-mujin-block .inner-box .video, .video-block {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-width: 700px;
  margin: 30px auto 0;
}

.modelhouse-mujin-block .inner-box .video iframe, .video-block iframe {
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 768px) {
  .modelhouse-mujin-md {
    font-size: 22px;
    text-align: left;
    margin: 0 0 30px;
    line-height: 1.4;
  }

  .modelhouse-mujin-md span {
    border-bottom: 2px solid #FBA628;
  }

  .modelhouse-mujin-block {
    margin-top: 40px;
  }

  /*.modelhouse-mujin-last{margin-bottom: 50px;}*/
  .modelhouse-mujin-block .title {
    padding: 15px 10px;
    font-size: 20px;
  }

  .modelhouse-mujin-block .link-box {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: -10px;
  }

  .modelhouse-mujin-block .link-box a {
    width: 100%;
    max-width: 430px;
  }

  .modelhouse-mujin-block .inner-box {
    margin-top: 30px;
  }

  .modelhouse-mujin-block .title02 {
    margin-bottom: 15px;
    font-size: 18px;
  }

  .video-block {
    margin: 20px auto 0;
  }
}

@media only screen and (max-width: 480px) {
  .modelhouse-mujin-top-pc {
    display: none;
  }

  .modelhouse-mujin-top-sp {
    display: inline;
  }

  .modelhouse-mujin-block .inner-box .modelhouse-pc {
    display: none;
  }

  .modelhouse-mujin-block .inner-box .modelhouse-sp {
    display: inline;
  }
}

/*-------------------------------
	Technostructure
-------------------------------*/
.technostructure-box {
  margin-top: 70px;
}

.technostructure-box.first {
  margin-top: 0;
}

.technostructure-box .title {
  font-weight: bold;
  font-size: 30px;
  position: relative;
  line-height: 1.4;
  padding-bottom: 15px;
}

.technostructure-box .title:before {
  display: block;
  content: '';
  width: 100%;
  height: 1px;
  background-color: #ccc;
  position: absolute;
  bottom: 0;
  left: 0;
}

.technostructure-box .title:after {
  display: block;
  content: '';
  width: 100px;
  height: 1px;
  background-color: #8c2228;
  position: absolute;
  bottom: 0;
  left: 0;
}

.technostructure-box .text p {
  margin-top: 40px;
}

.technostructure-box .text .img01,
.technostructure-box .text .img02 {
  margin-top: 40px;
  text-align: center;
}

.technostructure-box .text .img01 .sp {
  display: none;
}

.technostructure-box .technostructure-outerlink {
  margin-top: 1em;
}

.technostructure-box .technostructure-outerlink a {
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 340px;
  height: 50px;
  margin-inline: auto;
  border-radius: 4px;
  background-color: #8c2228;
  color: #fff;
}

.technostructure-box .yt-box {
  margin-top: 3em;
  text-align: center;
}

.technostructure-box .yt-box .inner {
  width: 100%;
  max-width: 700px;
  margin-inline: auto;
  aspect-ratio: 16 / 9;
}

.technostructure-box .yt-box .inner iframe {
  width: 100%;
  height: 100%;
}

.technostructure-box .yt-box .tit {
  text-align: center;
  font-weight: bold;
  font-size: 1.25rem;
  color: #7B2B30;
}

.technostructure-box .add {
  padding: 18px 20px;
  background-color: #f3f3f3;
  border-radius: 5px;
  margin-top: -5px;
}

.kaseru-box {
  margin-top: 3em;
}

.kaseru-title {
  font-weight: 700;
  font-size: 1.8rem;
  text-align: center;
  letter-spacing: -0.05em;
  line-height: 1.5;
}

.kaseru-title span {
  font-size: 2.6rem;
  letter-spacing: -0.08em;
  color: var(--main-color);
}

.kaseru-content {
  margin-top: 1.5em;
  display: grid;
  grid-template-columns: 1fr 40%;
  gap: 1em;
}

.kaseru-content>div {
  display: grid;
  place-items: center;
}

.kaseru-btn {
  display: block;
  width: min(100%, 400px);
  margin: 1em auto 0;
  line-height: 1;
  background-color: #e99c37;
  color: #fff;
  text-align: center;
  padding: 1em 0.5em;
  border-radius: 60px;
}

.kaseru-btn:hover {
  background-color: #ffbc64;
}

@media only screen and (max-width: 768px) {
  .technostructure-box {
    margin-top: 50px;
  }

  .technostructure-box .title {
    font-size: 26px;
    padding-bottom: 10px;
  }

  .technostructure-box .text p {
    margin-top: 30px;
  }

  .technostructure-box .text .img01,
  .technostructure-box .text .img02 {
    margin-top: 30px;
    text-align: center;
  }

  .technostructure-box .text .img01 .pc {
    display: none;
  }

  .technostructure-box .text .img01 .sp {
    display: inline-block;
  }

  .technostructure-box .yt-box .tit {
    font-size: 1.1rem;
    line-height: 1.5;
  }

  .technostructure-box .add {
    padding: 15px 16px;
    margin-top: -5px;
  }

  .kaseru-title {
    font-size: 1.6rem;
    line-height: 1.4;
    letter-spacing: 0;
  }

  .kaseru-title span {
    font-size: 2rem;
    letter-spacing: 0;
  }

  .kaseru-title span.sp {
    display: block;
  }

  .kaseru-content {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .kaseru-btn {
    margin: 0 auto 0;
  }
}

.standard-box {
  width: 100%;
  padding: 30px;
  background: #F6DA4A;
  margin-top: 50px;
}

.standard-box .title {
  text-align: center;
}

.standard-box .title .sp {
  display: none;
}

.standard-list {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 50px;
}

.standard-add {
  margin-top: 40px;
  text-align: center;
}

.standard-add .sp {
  display: none;
}

.standard-text {
  margin-top: 30px;
}

.standard-under {
  margin-top: 40px;
}

.standard-btn {
  background-color: #e6000b !important;
}

@media only screen and (max-width: 640px) {
  .standard-box {
    padding: 20px 10px;
    margin-top: 30px;
  }

  .standard-box .title .pc {
    display: none;
  }

  .standard-box .title .sp {
    display: inline;
  }

  .standard-list {
    margin-top: 30px;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 20px;
  }

  .standard-list li {
    max-width: 276px;
    margin: 0 auto;
  }

  .standard-add {
    margin-top: 20px;
    text-align: center;
  }

  .standard-add .pc {
    display: none;
  }

  .standard-add .sp {
    display: inline;
  }

  .standard-text {
    margin-top: 20px;
  }

  .standard-under {
    margin-top: 30px;
  }

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

.avance-top-md {
  text-align: center;
}

.avance-top-md .sp {
  display: none;
}

@media only screen and (max-width: 768px) {
  .avance-top-md .pc {
    display: none;
  }

  .avance-top-md .sp {
    display: inline-block;
    width: 80%;
  }
}

.avance-top-card {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px 50px;
}

.avance-top-card .thumb a img {
  border-radius: 10px;
}

.avance-top-card .cont {
  margin-top: 20px;
  /*display: grid;
  grid-template-columns: 60% 40%;
  gap:10px;*/
}

.avance-top-card .cont .detail .tit {
  display: flex;
  flex-direction: column;
  gap: 5px;
  line-height: 1.2;
}

.avance-top-card .cont .detail .tit .first {
  font-weight: 700;
  font-size: 1.6rem;
}

.avance-top-card .cont .detail .tit .second {
  font-size: 0.875rem;
}

.avance-top-card .cont .detail .txt {
  font-size: 1rem;
  margin-top: 15px;
  line-height: 1.4;
}

.avance-top-card .btn {
  margin-top: 20px;
}

.avance-top-card .btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 200px;
  margin-inline: auto;
  line-height: 1;
  padding: 15px 5px;
  background-color: var(--font-color);
  color: #fff;
  font-size: 0.75rem;
  border-radius: 50px;
  transition: .3s;
}

.avance-top-card .btn a:hover {
  background-color: #555
}

@media only screen and (max-width: 768px) {
  .avance-top-card {
    margin-top: 40px;
    grid-template-columns: 1fr;
    gap: 50px;
    place-items: center;
  }

  .avance-top-card li {
    max-width: 500px;
  }

  .avance-top-card .cont {
    margin-top: 20px;
    /*grid-template-columns: 63% 37%;*/
  }

  .avance-top-card .cont .detail .tit {
    display: flex;
    flex-direction: column;
    gap: 5px;
    line-height: 1.2;
  }

  .avance-top-card .cont .detail .tit .first {
    font-size: 1.4rem;
  }

  .avance-top-card .cont .detail .txt {
    font-size: 0.9rem;
  }

  .avance-top-card .btn {
    margin-top: 10px;
  }
}

.avance-common-title {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.avance-common-title .first span {
  font-size: 1.125rem;
}

.avance-common-title .first span.ex {
  display: block;
  font-size: 1rem;
  line-height: 1.2;
}

.avance-common-title .second {
  font-size: 1.125rem;
}

@media only screen and (max-width: 768px) {
  .avance-common-title .second {
    font-size: 0.9rem;
  }
}

.avance-md {
  margin-top: 40px;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.4;
}

.avance-plus-list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  padding: 15px;
  background-color: var(--font-color);
}

.avance-plus-list li {
  color: #fff;
  line-height: 1.4;
}

.avance-plus-list li .img {
  position: relative;
}

.avance-plus-list li .img .label {
  display: inline-block;
  padding: 5px;
  line-height: 1;
  font-size: 0.75rem;
  color: var(--font-color);
  background-color: #fcf516;
  position: absolute;
  top: 0;
  left: 0;
}

.avance-plus-list li .txt {
  margin-top: 10px;
  text-align: center;
  font-size: 0.875rem;
}

.avance-plus-list li .txt span {
  display: inline-block;
  background-color: #fff;
  color: var(--font-color);
  padding: 3px 3px 2px;
  margin-left: 3px;
  margin-right: 3px;
}

.avance-plus-text {
  margin-top: 40px;
}

.avance-plus-img {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.avance-plus-img .caution {
  font-size: 0.75rem;
  line-height: 1.4;
  text-indent: -0.75rem;
  padding-left: 0.75rem;
}

.avance-plus-equipment {
  margin-top: 40px;
}

.avance-plus-equipment .tit {
  font-size: 1.25rem;
  text-align: center;
  padding-bottom: 20px;
  position: relative;
}

.avance-plus-equipment .tit::after {
  display: block;
  content: '';
  width: 80px;
  height: 1px;
  background: #8c2228;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.avance-plus-equipment .list {
  margin-top: 40px;
  border-top: 1px solid #caabab;
}

.avance-plus-equipment .list li {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  border-bottom: 1px solid #caabab;
  background-color: #fff;
}

.avance-plus-equipment .list li:nth-child(odd) {
  background-color: #f8f3f3;
}

.avance-plus-equipment .list li .item {
  padding: 15px 15px 15px 30px;
  position: relative;
  line-height: 1.4;
}

.avance-plus-equipment .list li .item::before {
  display: block;
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 20px;
  background-color: var(--main-color);
  position: absolute;
  top: 22px;
  left: 10px;
}

@media only screen and (max-width: 768px) {
  .avance-md {
    margin-top: 30px;
    font-size: 1.25rem;
    color: var(--font-color);
  }

  .avance-plus-list {
    margin: 30px auto 0;
    width: 100%;
    max-width: 410px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .avance-plus-list li {
    color: #fff;
    line-height: 1.4;
  }

  .avance-plus-list li .img {
    position: relative;
  }

  .avance-plus-list li .img .label {
    display: inline-block;
    padding: 5px;
    line-height: 1;
    font-size: 0.875rem;
    color: var(--font-color);
    background-color: #fcf516;
    position: absolute;
    top: 0;
    left: 0;
  }

  .avance-plus-list li .txt {
    margin-top: 10px;
    text-align: center;
    font-size: 0.875rem;
  }

  .avance-plus-list li .txt span {
    display: inline-block;
    background-color: #fff;
    color: var(--font-color);
    padding: 3px 3px 2px;
    margin-left: 3px;
    margin-right: 3px;
  }

  .avance-plus-text {
    margin-top: 20px;
  }

  .avance-plus-text {
    margin-top: 30px;
  }

  .avance-plus-img {
    margin-top: 40px;
  }

  .avance-plus-equipment {
    margin-top: 30px;
  }

  .avance-plus-equipment .tit {
    font-size: 1.125rem;
    line-height: 1.4;
  }

  .avance-plus-equipment .list {
    margin-top: 30px;
  }

  .avance-plus-equipment .list li {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .avance-plus-equipment .list li:nth-child(odd) {
    background-color: #fff;
  }

  .avance-plus-equipment .list li .item {
    padding: 10px 10px 10px 25px;
    position: relative;
  }

  .avance-plus-equipment .list li .item:nth-child(odd) {
    background-color: #f8f3f3;
    border-bottom: 1px solid #caabab;
  }

  .avance-plus-equipment .list li .item::before {
    width: 8px;
    height: 8px;
    top: 16px;
    left: 10px;
  }
}

.avance-common-title2 {
  border-left: 8px solid var(--main-color);
  padding-left: 8px;
  line-height: 1.4;
  font-weight: bold;
  font-size: 1.4rem;
  margin-top: 30px;
  display: flex;
  justify-content: start;
  gap: 10px;
  margin-bottom: -20px;
}

.avance-common-title2 .second {
  font-size: 0.875rem;
  background-color: var(--main-color);
  color: #fff;
  border-radius: 30px;
  padding: 2px 15px 2px;
  line-height: 1;
  display: flex;
  justify-content: start;
  align-items: center;
}

.avance-common-box {
  margin-top: 50px;
}

.avance-common-box .tit {
  position: relative;
  font-weight: bold;
  line-height: 1.4;
  padding-left: 20px;
  font-size: 1.25rem;
}

.avance-common-box .tit::before {
  content: '';
  display: block;
  width: 15px;
  height: 5px;
  background-color: #eba100;
  position: absolute;
  top: 12px;
  left: 0;
}

.avance-common-box .txt {
  margin-top: 15px;
}

.avance-common-box .avance-avance-img {
  text-align: center;
  margin-top: 30px;
}

.avance-common-box .avance-avance-img .img1 {
  width: 100%;
  max-width: 700px;
  height: auto;
}

.avance-common-box .avance-avance-img .img2 {
  width: 100%;
  max-width: 400px;
  height: auto;
}

.avance-common-box .avance-avance-img.img3 .pc {
  width: 100%;
  max-width: 800px;
  height: auto;
}

.avance-common-box .avance-avance-img.img3 .sp {
  display: none;
  width: 100%;
  max-width: 421px;
  height: auto;
}

.avance-eco-img {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

.avance-common-box.column2 {
  display: grid;
  grid-template-columns: 1fr 25%;
  /*align-items: center;*/
  gap: 2.5rem;
}

.avance-common-box.ex {
  margin-top: 0px !important;
}

@media only screen and (max-width: 768px) {
  .avance-common-title2 {
    border-left: 7px solid var(--main-color);
    font-size: 1.3em;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    display: block;
  }

  .avance-common-title2 span {
    display: block;
  }

  .avance-common-title2 .second {
    display: inline-block;
    font-size: 0.875rem;
    line-height: 1.2;
    padding: 5px 10px;
    flex: 1;
  }

  .avance-common-box .tit {
    font-size: 1.125rem;
  }

  .avance-common-box .tit::before {
    width: 12px;
    height: 5px;
    top: 11px;
  }

  .avance-common-box .avance-avance-img {
    margin-top: 20px;
  }

  .avance-common-box .avance-avance-img.img3 .pc {
    display: none;
    width: 100%;
    max-width: 800px;
    height: auto;
  }

  .avance-common-box .avance-avance-img.img3 .sp {
    display: inline;
  }

  .avance-eco-img {
    gap: 20px;
    margin-top: 30px;
  }

  .avance-common-box.column2 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .avance-common-box.column2 {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 1.5rem;
  }

  .avance-common-box.column2 img {
    width: 100%;
    max-width: 250px;
    height: auto;
  }
}

.smart-avance-img1 {
  text-align: center;
  margin-top: 40px;
}

.smart-avance-img2 {
  text-align: center;
  margin-top: 30px;
}

.smart-avance-img2 .pc {
  width: 100%;
  max-width: 700px;
  height: auto;
}

.smart-avance-img2 .sp {
  display: none;
}

@media only screen and (max-width: 768px) {
  .smart-avance-img1 {
    margin-top: 30px;
  }

  .smart-avance-img2 {
    margin-top: 20px;
  }

  .smart-avance-img2 .pc {
    display: none;
  }

  .smart-avance-img2 .sp {
    width: 100%;
    max-width: 300px;
    display: inline;
  }
}

/*-------------------------------
	Contact
-------------------------------*/
.contact-box {
  margin-top: 50px;
}

.hissu {
  display: inline-block;
  background-color: #d32225;
  line-height: 1;
  padding: 5px;
  color: #fff;
  font-weight: bold;
  font-size: 11px;
  border-radius: 3px;
  vertical-align: 2px;
}

.contact-text {
  width: 100%;
}

.contact-text p:not(:first-child) {
  margin-top: 15px;
}

.contact-text .banner {
  text-align: center;
  margin-top: 20px;
  padding-bottom: 20px;
}

.contact-text .banner img {
  width: 100%;
  max-width: 680px;
}

/* .contact-text{display: flex;justify-content: space-between;}
.contact-text .cont{flex:1 0 0;}
.contact-text .img{width: 227px;margin-left: 20px;} */
.form-list {
  margin-top: 10px;
}

.form-list li {
  padding: 20px 0 20px;
  border-bottom: 1px dotted #e6bfbf;
}

.form-list .error {
  display: block;
  margin-top: 0.2em;
  font-weight: bold;
  padding: 0.2em 0.4em;
  background: #FFDDDE;
}

.form-list .tit01 {
  font-weight: bold;
  color: #7D282D;
}

.form-list .cont01 {
  margin-top: 1em;
}

.form-list .mid {
  padding-top: 1.5rem;
  font-weight: bold;
  color: #7D282D;
  font-size: 1.04rem;
}

.form-list input, .form-list select, .form-list textarea {
  background-color: #fafafa;
}

.form-list input:focus, .form-list select:focus, .form-list textarea:focus {
  background-color: #fff;
}

.form-list .size01 input, .form-list .size02 input, .form-list .textarea-size01 textarea {
  width: 99.5%;
  border: 1px solid #cacaca;
  -webkit-border-radius: 3px 3px;
  border-radius: 3px 3px;
  padding: 5px 8px;
}

.form-list .size01 label {
  display: block;
}

.form-list .size02 input {
  width: 150px;
}

.wpcf7-list-item {
  margin: 0 20px 0 0;
  padding: 0;
}

.form-list .checkbox-size01 .horizontal-item {
  display: block;
  text-align: left;
  margin-top: 0.3em;
  margin-left: 0.2rem !important;
}

.form-list .checkbox-size01 .horizontal-item:first-child {
  margin-left: 0.6em;
}

.form-list .checkbox-size01 input[type=checkbox] {
  display: inline-block;
  width: 18px;
  height: 18px;
  vertical-align: -3px;
}

.form-list .select-size01 select {
  display: inline-block;
  min-width: 80px;
  height: 24px;
  margin-left: 0.4rem;
}

.form-list .textarea-size01 textarea {
  height: 180px;
}

/*.wpcf7-radio{
  display: flex;
  justify-content: start;
  align-items: center;
}
.wpcf7-radio .wpcf7-list-item{
  margin-right: 1.5em;
}
.wpcf7-radio .wpcf7-list-item label{
  display: flex;
  justify-content: start;
  align-items: center;
}*/
.form-list .radio .wpcf7-list-item {
  margin-right: 2em !important;
}

.form-list .radio input[type=radio] {
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: -1px;
}

.form-list .select br {
  display: none;
}

.form-list .select {
  display: flex;
}

.form-list .select select {
  border: 1px solid #aaa;
  padding: 0.5em;
  border-radius: 3px;
  margin-right: 1em;
  font-size: 1rem;
}

.form-list li .daytime div:not(:first-child) {
  margin-top: 0.5em;
}

.form-list li .daytime select {
  display: inline-block;
  width: 220px;
  height: 32px;
  padding: 0.2rem;
  border: 1px solid #aaa;
  border-radius: 3px;
  background-color: #fff;
}



.form-list .form-notes {
  font-size: 0.875rem;
  color: #d41014;
}

.wpcf7-not-valid-tip {
  font-size: 14px;
  font-weight: bold;
}

.form-btnbox {
  text-align: center;
  margin-top: 2em;
}

.form-btnbox .submit-btn, .form-btnbox .back-btn {
  display: inline-block;
}

.form-btnbox .submit-btn input, .form-btnbox .back-btn input, .form-btnbox button.submit-btn {
  display: inline-block;
  width: 140px;
  padding: 0.6em 0;
  margin: 0.4em 0.3em;
  border: none;
  border-radius: 3px;
  color: #fff;
  font-size: 1.02em;
  text-align: center;
  background-color: none;
  cursor: pointer;
  transition: all 0.7s;
}

.form-btnbox .submit-btn input, .form-btnbox button.submit-btn {
  background-color: #FB4F4F;
}

.form-btnbox .back-btn input {
  background-color: #A0A0A0;
}

.form-btnbox .submit-btn input:hover, .form-btnbox button.submit-btn:hover {
  background-color: #FF6F6F;
  transition: all 0.1s;
}

.form-btnbox .back-btn input:hover {
  background-color: #C3C3C3;
  transition: all 0.1s;
}

.contact-thanks01 {
  margin-top: 1.5rem;
}

.contact-finish01 {
  font-weight: bold;
  color: #d32225;
}

.mw_wp_form_confirm .extra,
.mw_wp_form_confirm .form-list .form-notes {
  display: none;
}

.mw_wp_form_confirm .cont01 {
  padding: 0.6rem;
  background: #fff4f4;
}

.form-script br, .form-script p {
  display: none;
}

.form-btn-box {
  margin-top: 30px;
  text-align: center;
}

.form-btn-box .wpcf7-submit {
  display: block;
  width: 100%;
  max-width: 200px;
  background-color: #eb7200;
  color: #fff;
  font-weight: bold;
  text-align: center;
  transition: .2s;
  padding: 10px;
  border: none;
  border-radius: 4px;
  margin: 0 auto;
  cursor: pointer;
}

.form-btn-box .wpcf7-submit:hover {
  background-color: #ff9e42;
  transition: .3s;
}

.thanks-text {
  margin-top: 30px;
}

.thanks-text .thanks-md {
  font-weight: bold;
  font-size: 20px;
  color: #8c2228;
}

.thanks-text p:not(:first-child) {
  margin-top: 30px;
}

.thanks-youtube {
  margin-top: 35px;
  padding-top: 15px;
  border-top: 1px solid #ccc;
}

.thanks-youtube .inner {
  width: 100%;
  max-width: 740px;
  margin: 30px auto 0;
  aspect-ratio: 16 / 9;
}

.thanks-youtube .inner iframe {
  width: 100%;
  height: 100%;
}

.form-list li .wpcf7-validates-as-date.nichiji {
  display: block;
  padding: 0.4rem;
  border: 1px solid #aaa;
  border-radius: 3px;
  width: 180px;
}

.form-list li .daytime select {
  display: inline-block;
  width: 220px;
  height: 32px;
  padding: 0.2rem;
  border: 1px solid #aaa;
  border-radius: 3px;
  background-color: #fff;
}

.form-list li .daytime>div:not(:first-child) {
  margin-top: 0.5em;
}

@media only screen and (max-width: 768px) {
  .form-in {
    padding: 0.3rem 0;
  }

  .wpcf7-list-item {
    display: block !important;
    padding: 5px 0;
  }

  .contact-text .banner {
    padding-bottom: 5px;
  }

}

@media only screen and (max-width: 480px) {
  .contact-input, .contact-confirm {
    padding: 1.5em 0.8em;
  }

  .form-btnbox {
    margin-top: 1.4em;
  }

}

.wpcf7-checkbox.shiryou {
  display: grid;
  grid-template-columns: repeat(3, 30%);
  gap: 5%;
  justify-items: start;
  align-items: strat;
}

/*.wpcf7-checkbox.shiryou{display: flex;flex-wrap: wrap;justify-content: flex-start;margin-top: -10px;}*/
.wpcf7-checkbox.shiryou .wpcf7-list-item>label {
  display: block;
  margin-top: 10px;
}

.wpcf7-checkbox.shiryou .wpcf7-list-item>label:before {
  display: block;
  content: '';
  background-position: left;
  background-size: content;
  background-repeat: no-repeat;
}

.wpcf7-checkbox.shiryou .wpcf7-list-item:nth-child(1)>label:before {
  width: 200px;
  height: 200px;
  background-image: url(./img/document/shiryou_img04.webp);
}

.wpcf7-checkbox.shiryou .wpcf7-list-item:nth-child(2)>label:before {
  width: 200px;
  height: 200px;
  background-image: url(./img/document/shiryou_img05.webp);
}

.wpcf7-checkbox.shiryou .wpcf7-list-item:nth-child(3)>label:before {
  width: 200px;
  height: 200px;
  background-image: url(./img/document/shiryou_img06.webp);
}

/*.wpcf7-checkbox.shiryou .wpcf7-list-item:nth-child(4) > label:before{width: 200px;height: 200px;background-image: url(./img/document/shiryou_img07.webp);}*/
.wpcf7-checkbox.shiryou .wpcf7-list-item {
  margin-right: 5px;
}

@media only screen and (max-width: 768px) {
  .wpcf7-checkbox.shiryou {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .wpcf7-checkbox.shiryou .wpcf7-list-item>label {
    margin-top: 5px;
  }
}


/*-------------------------------
	News
-------------------------------*/
.news-list {
  border-top: 1px dotted #aaa;
}

.news-list li {
  padding: 25px 0;
  border-bottom: 1px dotted #aaa;
}

.news-list li .title {
  font-size: 24px;
}

.news-list li .title a {
  text-decoration: none;
}

.news-list li .date .material-icons {
  font-size: 20px;
  vertical-align: -2px;
}

.news-list li a {
  color: #8c2228;
  text-decoration: underline;
}

.news-list2 {
  border-top: 1px dotted #aaa;
}

.news-list2 li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.5em;
  padding: 1.5em 0;
  border-bottom: 1px dotted #aaa;
}

.news-list2 li a {
  text-decoration: none;
  color: #8c2228;
}

.news-list2 li .thumbnail img {
  width: 140px;
  height: 140px;
  object-fit: cover;
}

.news-list2 li .cont .date {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.news-list2 li .cont .date .material-icons {
  font-size: 20px;
  vertical-align: -2px;
}

.news-list2 li .cont .title {
  font-size: 1.125rem;
}


/*-------------------------------
	Sekou
-------------------------------*/
.sekou-notes {
  font-size: 16px;
}

.sekou-box {
  margin-top: 50px;
}

.sekou-box.first {
  margin-top: 10px;
}

.sekou-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-left: -2.33%;
}

.sekou-list li {
  width: 31%;
  padding: 0.5rem;
  margin-top: 30px;
  margin-left: 2.33%;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.3) 0px 2px 8px 0px;
}

.sekou-list li .img {
  text-align: center;
  width: 100%;
  overflow: hidden;
}

.sekou-list li .img>img {
  width: 100%;
  transition: .5s;
}

.sekou-list-ex li .img {
  width: 100%;
  height: 200px;
}

.sekou-list-ex li .img>img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.sekou-list li .tit {
  color: #8D282D;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 10px;
  line-height: 1.5;
}

.reform-sekou .sekou-list li .tit {
  font-size: 16px;
  line-height: 1.4;
}

.sekou-list li a:hover .img>img {
  transform: scale(1.1, 1.1);
}

.sekou-list .new {
  display: inline-block;
  font-size: 12px;
  color: #fff;
  margin-left: 6px;
  background-color: rgb(230, 74, 74);
  padding: 3px 5px;
  line-height: 1;
  font-weight: normal;
  border-radius: 3px;
  vertical-align: 2px;
}

.sekou-list .btn {
  width: 100%;
  background-color: #f29a3d;
  text-align: center;
  padding: 3px 3px;
  color: #fff;
  border-radius: 3px;
  font-size: 14px;
  margin-top: auto;
  /*margin-top: 14px;*/
  font-weight: bold;
  /*position: absolute;
  bottom: 10px;
  left: 0;*/
}

.sekou-list .btn span {
  background-image: url(./img/arrow04.png);
  background-repeat: no-repeat;
  background-position: 0 5px;
  padding-left: 15px;
}

.sekou-list li a {
  display: flex;
  flex-direction: column;
  height: 100%;
}



.sekou-nav {
  margin-top: 20px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  border: 1px solid #eecfd0;
  background-color: #f8f1f1;
  border-radius: 5px;
  padding: 10px 20px;
}

.sekou-nav li {
  margin: 5px 25px 5px 0;
}

.sekou-nav li a {
  padding: 5px 0;
  display: block;
  position: relative;
}

.sekou-nav li a .material-icons {
  font-size: 20px;
  color: #f29a3d;
  margin-right: 3px;
  vertical-align: -3px;
}

.sekou-nav li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  border-bottom: solid 2px #8c2228;
  transition: all .3s;
}

.sekou-nav li a:hover::after {
  width: 100%;
}

.sekou-single {
  margin-top: 40px;
}

.sekou-item {
  margin-top: 25px;
}

.sekou-item ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.sekou-item ul li {
  width: 32%;
}

.sekou-item ul li img {
  width: 100%;
  height: 216px;
  object-fit: cover;
}

.sekou-content .caption {
  margin-top: 6px;
  color: #8D282D;
  background-color: #f0e9e9;
  padding: 4px 8px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 3px;
}

.sekou-top-title {
  font-weight: bold;
  font-size: 20px;
  color: #8D282D;
  background-color: #f0e9e9;
  padding: 10px;
  line-height: 1.4;
  border-radius: 4px;
  margin-top: 30px;
}

.sekou-customer-name {
  font-weight: bold;
  font-size: 20px;
  border-left: 7px solid #8D282D;
  color: #8D282D;
  padding-left: 10px;
  margin: 30px 0 30px;
}


.sekou-customer-block {
  margin-top: 40px;
  background-color: #F7F3EF;
  padding: 1.5rem;
  font-size: 16px !important;
}

.sekou-customer-img .wp-block-image {
  margin-bottom: 0 !important;
}

.sekou-customer-img img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  min-height: 200px;
}

.sekou-customer-title {
  padding: 0.5rem;
  background-color: #E6E0DA;
  font-weight: bold;
}

.sekou-customer-text p {
  margin-top: 10px;
}

.sekou-customer-text a {
  text-decoration: underline;
  color: #8c2228;
}

.sekou-customer-text a:hover {
  text-decoration: none;
  color: #b3464b;
}

@media only screen and (max-width: 768px) {
  .sekou-list {
    justify-content: space-between;
    margin-left: 0;
  }

  .sekou-list li {
    width: 48%;
    margin-left: 0;
  }

  .sekou-list .btn {
    margin-top: 15px;
  }

  .sekou-item {
    margin-top: 0;
  }

  .sekou-item ul li {
    width: 48%;
  }

  .sekou-item ul li img {
    margin-top: 25px;
  }

  .sekou-top-title {
    margin-top: 20px;
  }

  .sekou-customer-name {
    font-size: 18px;
    padding-left: 8px;
    margin: 20px 0 20px;
  }

  .sekou-list-ex li .img {
    height: 180px;
  }

  .sekou-list-ex li .img>img {
    height: 180px;
  }
}

@media only screen and (max-width: 480px) {
  .sekou-list li {
    width: 100%;
    max-width: 380px;
    margin: 30px auto 0;
  }

  .sekou-item ul li {
    width: 100%;
  }

  .sekou-item ul li img {
    margin-top: 20px;
  }

  .sekou-list-ex li .img {
    height: 200px;
  }

  .sekou-list-ex li .img>img {
    height: 200px;
  }
}

.reform-sekou-single-title {
  text-align: center;
  font-weight: bold;
  font-size: 36px;
  margin-top: 10px;
  position: relative;
}

.reform-sekou-single-title:after {
  display: block;
  content: '';
  width: 100px;
  height: 1px;
  background-color: #F19A44;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.reform-sekou-single-hero {
  text-align: center;
  margin-top: 60px;
}

.reform-sekou-single-title02 {
  background-color: #F19A44;
  color: #fff;
  font-weight: bold;
  font-size: 22px;
  line-height: 1.4;
  border-radius: 4px;
  text-align: center;
  padding: 10px;
}

.reform-sekou-single-mt {
  margin-top: 50px;
}

.reform-sekou-single-contents .list {
  margin-top: 10px;
}

.reform-sekou-single-contents .list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dotted #F19A44;
}

.reform-sekou-single-contents .list li .tit {
  width: 20%;
  position: relative;
  padding-left: 25px;
  font-weight: bold;
}

.reform-sekou-single-contents .list li .tit:before {
  display: block;
  content: '';
  width: 10px;
  height: 10px;
  background-color: #F19A44;
  position: absolute;
  top: 10px;
  left: 10px;
}

.reform-sekou-single-contents .list li .cont {
  width: 77%;
}

.reform-sekou-single-onayami .text {
  margin-top: 25px;
}

.reform-sekou-single-images .list {
  margin-top: -15px;
}

.reform-sekou-single-images .list li {
  margin-top: 40px;
}

.reform-sekou-single-images .list li .tit {
  border-left: 7px solid #F19A44;
  padding-left: 10px;
  line-height: 1.4;
}

.reform-sekou-single-images .list li .img {
  margin-top: 15px;
}

@media only screen and (max-width: 768px) {
  .reform-sekou-single-title {
    font-size: 26px;
    margin-top: 0;
    line-height: 1.4;
  }

  .reform-sekou-single-title:after {
    width: 70px;
  }

  .reform-sekou-single-hero {
    margin-top: 50px;
  }

  .reform-sekou-single-title02 {
    font-size: 20px;
    padding: 6px;
  }

  .reform-sekou-single-mt {
    margin-top: 40px;
  }

  .reform-sekou-single-contents .list li {
    flex-direction: column;
  }

  .reform-sekou-single-contents .list li .tit {
    width: 100%;
    padding-left: 20px;
  }

  .reform-sekou-single-contents .list li .tit:before {
    top: 8px;
    left: 5px;
  }

  .reform-sekou-single-contents .list li .cont {
    width: 100%;
    margin-top: 5px;
    padding-left: 5px;
  }

  .reform-sekou-single-onayami .text {
    margin-top: 20px;
  }

  .reform-sekou-single-images .list li {
    margin-top: 30px;
  }
}

/*-------------------------------
	Ceremony
-------------------------------*/
.ceremony-list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-left: -2%;
}

.ceremony-list li {
  width: 23%;
  margin-left: 2%;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 0 6px rgba(84, 84, 84, 0.35);
  padding: 15px;
  margin-top: 20px;
}

.ceremony-list li .img {
  text-align: center;
}

.ceremony-list li .tit {
  font-weight: bold;
  font-size: 16px;
  color: #8c2228;
  margin-top: 10px;
}

@media only screen and (max-width:768px) {
  .ceremony-list {
    margin-left: -2.33%;
  }

  .ceremony-list li {
    width: 31%;
    margin-left: 2.33%;
  }
}

@media only screen and (max-width:480px) {
  .ceremony-list {
    margin-left: 0;
    justify-content: space-between;
  }

  .ceremony-list li {
    width: 48%;
    margin-left: 0;
  }
}

/*-------------------------------
	Plan
-------------------------------*/
.plan-top-list {
  margin-top: 30px;
  border-top: 1px solid #ebe2e2;
}

.plan-top-list li {
  padding: 25px 0;
  border-bottom: 1px solid #ebe2e2;
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 20px;
}

.plan-top-list li .img img {
  object-fit: cover;
  width: 100%;
  height: 240px;
}

.plan-top-list li .cont {
  position: relative;
  padding-bottom: 30px;
}

.plan-top-list li .cont .tit01 {
  margin-bottom: 25px;
}

.plan-top-list li .cont .tit01 a {
  font-size: 20px;
  color: #8c2228;
}

.plan-top-list li .cont .items {
  margin-top: 10px;
  display: flex;
  justify-content: flex-start;
}

.plan-top-list li .cont .items .tit02 {
  width: 120px;
  height: auto;
  font-size: 14px;
  color: #fff;
  text-align: center;
  padding: 4px;
  background-color: #b6a9a9;
  line-height: 1.4;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.plan-top-list li .cont .items .cnt {
  flex: 1 0 0%;
  margin-left: 10px;
}

.plan-top-list li .cont .btn {
  display: block;
  width: 90px;
  line-height: 1.4;
  background-color: #8c2228;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 14px;
  color: #fff;
  border-radius: 3px;
}

.plan-top-list li .cont .btn span {
  background-image: url(./img/arrow04.png);
  ;
  background-repeat: no-repeat;
  background-position: 0 5px;
  padding-left: 15px;
}

@media only screen and (max-width: 768px) {
  .plan-top-list li {
    padding: 20px 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    place-items: center;
  }

  .plan-top-list li .img {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }

  .plan-top-list li .cont {
    width: 100%;
    margin: 30px 0 0 0;
  }

  .plan-top-list li .cont .tit01 {
    margin-bottom: 20px;
  }

  .plan-top-list li .cont .tit01 a {
    font-size: 22px;
  }

  .plan-top-list li .cont .items .tit02 {
    font-size: 13px;
    padding: 4px 3px;
  }

  .plan-top-list li .cont .btn {
    display: block;
    width: 50%;
    background-color: #8c2228;
    padding: 7px;
    position: relative;
    margin: 20px auto 0;
    text-align: center;
  }
}

.plan-lead {
  margin-top: 50px;
}

.plan-img {
  margin-top: 40px;
}

.plan-floorplan {
  margin-top: 40px;
}

.plan-floorplan {
  margin-top: 40px;
}

.plan-property {
  margin-top: 40px;
}

.plan-repayment {
  margin-top: 50px;
}

.plan-property .land-main-list,
.plan-repayment .land-main-list {
  margin-top: 20px;
}

.plan-repayment-text {
  margin-top: 20px;
  font-size: 1rem;
  line-height: 1.4;
}

.plan-floorplan-detail {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.plan-floorplan-detail li {
  border-left: 1px solid #e3b45c;
  padding: 0 20px;
}

.plan-floorplan-detail li:first-child,
.plan-floorplan-detail li:nth-child(4n) {
  border-left: none;
}

.plan-floorplan-detail li .tit {
  font-size: 1rem;
  font-weight: bold;
  color: #eda31b;
}

.plan-floorplan-detail li .txt {
  margin-top: 5px;
  font-size: 1rem;
}

@media only screen and (max-width: 768px) {
  .plan-lead {
    margin-top: 40px;
  }

  .plan-repayment {
    margin-top: 40px;
  }

  .plan-property .land-main-list,
  .plan-repayment .land-main-list {
    margin-top: 20px;
  }

  .plan-repayment-text {
    font-size: 0.9rem;
  }

  .plan-floorplan-detail {
    margin-top: 15px;
    grid-template-columns: 1fr;
  }

  .plan-floorplan-detail li {
    border-left: none;
    border-bottom: 1px solid #e3b45c;
    padding: 15px 0;
  }

  .plan-floorplan-detail li:nth-child(4n) {
    border-bottom: 1px solid #e3b45c;
  }

  .plan-floorplan-detail li:last-child {
    border-bottom: none;
  }

  .plan-floorplan-detail li .txt {
    margin-top: 0;
  }
}


/*-------------------------------
	Land
-------------------------------*/
.land-top-md {
  text-align: center;
  font-size: 36px;
  padding: 30px 10px 30px;
}

.land-top-list {
  margin-top: 30px;
  border-top: 1px solid #ebe2e2;
}

.land-top-list li {
  padding: 25px 0;
  border-bottom: 1px solid #ebe2e2;
  display: flex;
  justify-content: space-between;
}

.land-top-list li .img {
  border: 1px solid #ddd;
  width: 27.78%;
  max-width: 250px;
}

.land-top-list li .img .noimg {
  display: block;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 20px;
  border: 1px solid #ddd;
  background-color: #ccc;
  width: 100%;
  height: 100%;
  max-height: 252px;
}

.land-top-list li .cont {
  flex: 1 0 0%;
  margin-left: 30px;
  position: relative;
  padding-bottom: 30px;
}

.land-top-list li .cont .tit01 {
  margin-bottom: 25px;
}

.land-top-list li .cont .tit01 a {
  font-weight: bold;
  font-size: 24px;
  color: #8c2228;
}

.land-top-list li .cont .items {
  margin-top: 10px;
  display: flex;
  justify-content: flex-start;
}

.land-top-list li .cont .items .tit02 {
  width: 80px;
  height: 30px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  padding: 4px;
  background-color: #b6a9a9;
  line-height: 1.4;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.land-top-list li .cont .items .cnt {
  flex: 1 0 0%;
  margin-left: 10px;
}

.land-top-list li .cont .btn {
  display: block;
  width: 90px;
  line-height: 1.4;
  background-color: #8c2228;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 14px;
  color: #fff;
  border-radius: 3px;
}

.land-top-list li .cont .btn span {
  background-image: url(./img/arrow04.png);
  ;
  background-repeat: no-repeat;
  background-position: 0 5px;
  padding-left: 15px;
}

.land-head {
  border-left: 2px solid #e4babb;
  position: relative;
  padding-left: 10px;
  display: flex;
  justify-content: space-between;
}

.land-head:before {
  display: block;
  content: '';
  width: 2px;
  height: 30%;
  background-color: #8c2228;
  position: absolute;
  top: 0;
  left: -2px;
}

.land-head .land-title01 {
  font-weight: bold;
  font-size: 30px;
  flex: 1;
}

.land-head .btn {
  display: block;
  width: 110px;
  height: 34px;
  line-height: 1;
  background-color: #eb7200;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 17px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  margin-top: 10px;
}

.land-head .btn span {
  background-image: url(./img/arrow04.png);
  background-repeat: no-repeat;
  background-position: 0 2px;
  padding-left: 15px;
}

.land-content {
  margin-top: 40px;
}

.land-main-list {
  border-top: 1px solid #caabab;
}

.land-main-list li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #caabab;
  background-color: #fff;
}

.land-main-list li:nth-child(odd) {
  background-color: #f8f3f3;
}

.land-main-list li .tit {
  width: 25%;
  padding: 15px;
  border-right: 1px dotted #caabab;
}

.land-main-list li .tit span {
  border-left: 4px solid #8c2228;
  padding-left: 10px;
}

.land-main-list li .cont {
  width: 75%;
  padding: 15px 15px 15px 30px;
}

.land-main-douga {
  margin-top: 60px;
}

.land-main-douga .inner {
  position: relative;
  width: 100%;
  max-width: 600px;
  padding-top: 56.25%;
  margin: 30px auto 0;
}

.land-main-douga .inner iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.land-main-box {
  margin-top: 60px;
}

.land-main-kukaku-img {
  margin-top: 30px;
  text-align: center;
}

.land-main-kukaku-img li {
  margin-top: 20px;
  text-align: center;
}

.land-under-btn {
  display: block;
  width: 100%;
  max-width: 300px;
  height: 40px;
  margin: 40px auto 0;
  line-height: 1;
  background-color: #eb7200;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 22px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
}

.land-under-btn:hover {
  background-color: #ff9939;
  color: #fff;
}

.land-under-btn span {
  background-image: url(./img/arrow04.png);
  background-repeat: no-repeat;
  background-position: 0 2px;
  padding-left: 15px;
  color: #fff;
}

.land-top-kanbai-title {
  margin-top: 60px;
}

/* .land-top-kanbai-title{font-weight: bold;font-size: 20px;padding: 10px;line-height: 1.4;background-color: #eae6e6;border-radius: 4px;margin-top: 60px;color: #8c2228;} */
.land-top-kanbai-list {
  margin-top: 30px;
}

.land-top-kanbai-list li .img {
  position: relative;
}

.land-top-kanbai-list li .img .img-soldout {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  font-size: 18px;
  font-weight: bold;
  color: #e40000;
  background-color: rgba(253, 27, 27, 0.3);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 3px;
}

.land-top-kanbai-list li .cont .tit01 {
  font-weight: bold;
  font-size: 24px;
  color: #8c2228;
}

.land-top-kanbai-list li .text-soldout {
  font-size: 16px;
  text-align: center;
  background-color: #ffdada;
  font-weight: bold;
  color: #e40000;
  padding: 5px;
  line-height: 1.2;
  border-radius: 3px;
  font-size: 16px;
}

/*.land-main-shuhenkankyo{margin-top: 30px;}*/
.land-main-shuhenkankyo a {
  color: #8c2228;
  text-decoration: underline;
}

.land-main-shuhenkankyo .items {
  margin-top: 30px;
}

.land-main-shuhenkankyo .items .tit {
  border-left: 4px solid #8c2228;
  padding-left: 6px;
  line-height: 1.4;
}

.land-main-shuhenkankyo .items .list {
  display: flex;
  flex-wrap: wrap;
  line-height: 1.4;
}

.land-main-shuhenkankyo .items .list li {
  width: 31%;
  margin-left: 3.4%;
  margin-top: 20px;
}

.land-main-shuhenkankyo .items .list li:nth-child(3n+1) {
  margin-left: 0;
}

.land-main-shuhenkankyo .items .list li .text {
  margin-top: 5px;
  font-size: 14px;
}

.land-main-img {
  margin: 0 0 70px;
}

.land-main-video {
  width: 100%;
  max-width: 700px;
  margin: 30px auto 0;
}

.land-main-video .inner {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.land-main-video .inner iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.land-single-block-content {
  margin-top: 30px;
}

.land-single-block-content .addtoany_share_save_container,
.land-single-block-content .addtoany_content,
.land-single-block-content .addtoany_content_bottom {
  display: none;
}

.land-single-block-content a {
  display: block;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  .land-top-md {
    font-size: 28px;
    padding: 10px 0 10px;
    line-height: 1.4;
  }

  .land-top-md br {
    display: none;
  }

  .land-top-list li {
    padding: 20px 0;
    flex-direction: column;
  }

  .land-top-list li .img {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }

  .land-top-list li .cont {
    width: 100%;
    margin: 30px 0 0 0;
  }

  .land-top-list li .cont .tit01 {
    margin-bottom: 20px;
  }

  .land-top-list li .cont .tit01 a {
    font-weight: bold;
    font-size: 22px;
    color: #8c2228;
  }

  .land-top-list li .cont .btn {
    display: block;
    width: 50%;
    background-color: #8c2228;
    padding: 7px;
    position: relative;
    margin: 20px auto 0;
    text-align: center;
  }

  .land-head {
    flex-direction: column;
  }

  .land-head .land-title01 {
    font-size: 26px;
    line-height: 1.4;
  }

  .land-head .btn {
    margin-top: 5px;
  }

  .land-content {
    margin-top: 30px;
  }

  .land-main-list li {
    flex-direction: column;
    justify-content: flex-start;
  }

  .land-main-list li .tit {
    width: 100%;
    padding: 10px 10px 5px 10px;
    border-right: none;
  }

  .land-main-list li .tit span {
    padding-left: 8px;
  }

  .land-main-list li .cont {
    width: 100%;
    padding: 5px 10px 10px 10px;
  }

  .land-main-douga {
    margin-top: 50px;
  }

  .land-main-box {
    margin-top: 50px;
  }

  .land-main-img {
    margin: 0 0 50px;
  }
}

@media only screen and (max-width: 600px) {
  .land-main-shuhenkankyo .items {
    margin-top: 20px;
  }

  .land-main-shuhenkankyo .items .list {
    justify-content: space-between;
  }

  .land-main-shuhenkankyo .items .list li {
    width: 48%;
    margin-left: 0;
    margin-top: 15px;
  }
}

/*-------------------------------
	Line Up
-------------------------------*/
.lineup-top-list li:not(:first-child) {
  margin-top: 50px;
}

.lineup-top-list li a {
  display: block;
  opacity: 1;
  transition: all .3s;
}

.lineup-top-list li a:hover {
  opacity: 0.8;
  transition: all .3s;
  color: #222;
}

.lineup-top-list li .title {
  border-bottom: 1px solid #ba9854;
  padding-bottom: 5px;
}

.lineup-top-list li .title .upper {
  font-weight: bold;
  font-size: 26px;
  display: block;
  line-height: 1.4;
}

.lineup-top-list li .title .lower {
  font-weight: bold;
  display: block;
  line-height: 1.4;
  font-size: 12px;
}

.lineup-top-list li .cont {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.lineup-top-list li .cont .text {
  width: 55%;
  display: flex;
  flex-direction: column;
}

.lineup-top-list li .cont .text .btn {
  width: 150px;
  padding: 10px;
  text-align: center;
  color: #fff;
  border-radius: 4px;
  background-color: #8c2228;
  margin-top: auto;
  margin-left: auto;
  line-height: 1;
  font-size: 14px;
  background-image: url(./img/arrow04.png);
  background-position: left 10px center;
  background-repeat: no-repeat;
}

.lineup-top-list li .cont .img {
  width: 40%;
  max-width: 360px;
}

.lineup-top-list li .cont .text .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 15px;
}

.lineup-top-list li .cont .text .tags span {
  display: inline-block;
  padding: 10px 10px;
  background-color: var(--brown2-color);
  color: #fff;
  text-align: center;
  line-height: 1.2;
  font-size: 0.875rem;
  border-radius: 4px;
}

.lineup-adjustment {
  font-weight: bold;
  text-align: center;
}

.lineup-adjustment span {
  color: #a70b15;
}

@media only screen and (max-width: 768px) {
  .lineup-top-list li:not(:first-child) {
    margin-top: 40px;
  }

  .lineup-top-list li .title .upper {
    font-size: 22px;
  }

  .lineup-top-list li .cont {
    flex-direction: column;
    margin-top: 25px;
  }

  .lineup-top-list li .cont .text {
    width: 100%;
    display: block;
    order: 2;
    margin-top: 20px;
  }

  .lineup-top-list li .cont .text .btn {
    margin: 20px auto 0;
  }

  .lineup-top-list li .cont .img {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    order: 1;
  }

  .lineup-top-list li .cont .text .tags {
    margin-top: 10px;
  }

  .lineup-top-list li .cont .text .tags span {
    padding: 7px 10px;
    font-size: 0.8rem;
  }
}

.onescubo-md {
  margin-top: 50px;
  text-align: center;
}

.onescubo-text01 {
  margin-top: 40px;
  text-align: center;
  font-size: 20px;
}

.onescubo-text01 p {
  margin-top: 30px;
}

.onescubo-style {
  margin-top: 60px;
  text-align: center;
}

.onescubo-style .sp {
  display: none;
}

.onescubo-features {
  margin-top: 100px;
}

.onescubo-features .title {
  text-align: center;
  padding: 0 20px;
}

.onescubo-features .inner {
  text-align: center;
  margin-top: 50px;
}

.onescubo-features .inner .sp {
  display: none;
}

.onescubo-btn {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 50px auto 20px;
  padding: 20px 15px;
  line-height: 1;
  background-color: #8c2228;
  text-align: center;
  border-radius: 5px;
  color: #fff;
  font-weight: bold;
  transition: .3s;
}

.onescubo-btn:hover {
  opacity: 0.8;
  color: #fff;
  transition: .3s;
}

.onescubo-btn span {
  background-image: url(./img/arrow04.png);
  background-position: 0 5px;
  background-repeat: no-repeat;
  padding-left: 15px;
}

.features-box {
  margin-top: 30px;
}

.features-box02 {
  margin-top: 30px;
}

.features-box02 .youtube {
  background-image: url(./img/lineup/onescubo/features_bg_pc.png);
  background-position: 0 center;
  background-repeat: repeat-y;
  background-size: contain;
  padding: 10px 5%;
}

.features-box02 .youtube .youtube-inner {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.features-box02 .youtube .youtube-inner iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.after-report {
  background-image: url(./img/lineup/onescubo/features_bg_pc.png);
  background-position: 0 center;
  background-repeat: repeat-y;
  background-size: contain;
  padding: 30px 0 30px;
}

.after-report .tit {
  font-weight: bold;
  font-size: 24px;
  color: #888;
  text-align: center;
}

.after-report .tit span {
  position: relative;
}

.after-report .tit span:after {
  display: inline-block;
  width: 100%;
  height: 1px;
  content: '';
  background-color: #888;
  position: absolute;
  bottom: -5px;
  left: 0;
}

.after-report .list {
  width: 100%;
  max-width: 840px;
  margin: 0 auto 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.after-report .list li {
  width: 23%;
  max-width: 237px;
  margin-top: 30px;
}

.after-report .list li .comment {
  font-size: 14px;
  text-align: left;
  margin-top: 10px;
  line-height: 1.4;
}


@media only screen and (max-width: 768px) {
  .onescubo-md {
    margin-top: 30px;
  }

  .onescubo-text01 {
    margin-top: 30px;
    font-size: 18px;
  }

  .onescubo-text01 p {
    margin-top: 20px;
  }

  .onescubo-style {
    margin-top: 40px;
  }

  .onescubo-style .pc {
    display: none;
  }

  .onescubo-style .sp {
    display: inline;
  }

  .onescubo-features {
    margin-top: 70px;
  }

  .onescubo-features .title img {
    width: 100%;
    max-width: 460px;
  }

  .onescubo-features .inner {
    margin-top: 30px;
  }

  .onescubo-features .inner .pc {
    display: none;
  }

  .onescubo-features .inner .sp {
    display: inline;
  }

  .onescubo-btn {
    margin: 40px auto 0px;
    padding: 20px 15px;
  }

  .features-box02 .youtube {
    max-width: 640px;
    margin: 0 auto;
    background-image: url(./img/lineup/onescubo/features_bg_sp.png);
    background-position: 0 center;
    background-repeat: repeat-y;
    background-size: contain;
    padding: 10px 5%;
  }

  .after-report {
    max-width: 640px;
    margin: 0 auto;
    background-image: url(./img/lineup/onescubo/features_bg_sp.png);
    background-position: 0 center;
    background-repeat: repeat-y;
    background-size: contain;
    padding: 20px 0 5px
  }

  .after-report .tit {
    font-size: 22px;
  }

  .after-report .list {
    width: 90%;
  }
}

@media only screen and (max-width: 500px) {
  .after-report .list li {
    width: 46%;
    margin-top: 25px;
  }
}

@media only screen and (max-width: 400px) {
  .after-report .list {
    width: 100%;
    max-width: 237px;
    flex-direction: column;
  }

  .after-report .list li {
    width: 100%;
  }
}

/*-------------------------------
	Recruit
-------------------------------*/
.recruit-top-list li:not(:first-child) {
  margin-top: 5em;
}

.recruit-top-list li a {
  display: grid;
  grid-template-columns: 1fr 40%;
  gap: 2em;
  opacity: 1;
  transition: all .3s;
}

.recruit-top-list li a:hover {
  opacity: 0.8;
  transition: all .3s;
  color: #222;
}

.recruit-top-list li:nth-child(even) a {
  grid-template-columns: 40% 1fr;
}

.recruit-top-list li:nth-child(even) a .cont {
  order: 2;
}

.recruit-top-list li:nth-child(even) a .img {
  order: 1;
}

.recruit-top-list li .cont {
  display: flex;
  flex-direction: column;
}

.recruit-top-list li .cont .title {
  font-weight: 700;
  font-size: 1.25rem;
  padding-bottom: 0.5em;
  line-height: 1.4;
  border-bottom: 1px solid #cf705d;
  color: #9c2b14;
}

.recruit-top-list li .cont .text {
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 1em;
  padding-bottom: 1em;
}

.recruit-top-list li .cont .btn {
  font-size: 1rem;
  color: #fff;
  width: 160px;
  height: 44px;
  display: grid;
  place-items: center;
  background-color: #8c2228;
  border-radius: 4px;
  margin-top: auto;
}

.recruit-top-md {
  line-height: 2;
  padding: 0 0 3em;
  /*padding:2em 0 3em;*/
  font-size: 1.1rem;
}

@media only screen and (max-width: 768px) {
  .recruit-top-list li:not(:first-child) {
    margin-top: 3em;
  }

  .recruit-top-list li a,
  .recruit-top-list li:nth-child(even) a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1em;
  }

  .recruit-top-list li .cont {
    display: contents;
  }

  .recruit-top-list li .title {
    order: 1;
  }

  .recruit-top-list li .img {
    order: 2;
    text-align: center;
  }

  .recruit-top-list li .text {
    order: 3;
    margin-top: 0em;
  }

  .recruit-top-list li .cont .text {
    margin-top: 0;
    padding-bottom: 0
  }

  .recruit-top-list li .btn {
    order: 4;
    margin-inline: auto
  }

  .recruit-top-md {
    line-height: 1.8;
    padding: 1.7em 0 2.5em;
    font-size: 1.05rem;
  }
}

.recruit-single-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #8c2228;
  text-align: center;
  border-top: 2px solid #b4696d;
  border-bottom: 1px solid #b4696d;
  padding: 0.7em 0.7em;
  line-height: 1.5;
}

.recruit-single-list>li {
  border-bottom: 1px solid #b4696d;
  padding: 2em 0;
}

.recruit-single-list li .mt001 {
  margin-top: 1.5em;
}

.recruit-single-list li .cont {
  margin-top: 1em;
}

.recruit-single-list li .cont.mt002 {
  margin-top: 3.2em;
}

.recruit-single-list li .mt003 {
  margin-top: 1em;
}

.recruit-single-list li .first-title {
  font-weight: 700;
  font-size: 1.25rem;
  color: #8c2228;
  background-color: #f9e5e6;
  padding: 0.5em;
  line-height: 1.5;
}

.recruit-single-list li .first-title span {
  position: relative;
  display: block;
  padding-left: 1.2rem;
  line-height: 1.6;
}

.recruit-single-list li .first-title span::before {
  position: absolute;
  content: '';
  width: 14px;
  height: 14px;
  background-color: #8c2228;
  top: 9px;
  left: 0;
}

.recruit-single-list li .cont .second-title {
  font-weight: 700;
  font-size: 1.125rem;
  position: relative;
  color: #8c2228;
  padding-left: 1.3rem;
  padding-bottom: 0.2em;
  border-bottom: 1px dotted #ae6569;
  margin-bottom: 0.5em;
}

.recruit-single-list li .cont .second-title::before {
  position: absolute;
  content: '';
  width: 14px;
  height: 6px;
  background-color: #8c2228;
  top: 13px;
  left: 0;
}

.recruit-single-list li .cont .third-title {
  font-weight: 700;
}

.recruit-single-list li .cont .inner-list li {
  list-style: disc;
  margin-left: 1.2em;
}

.recruit-back {
  margin-top: 2em;
}

.recruit-block .recruit-form {
  padding: 1em 0;
  border-bottom: 1px dotted #c31d26;
}

.recruit-block .recruit-form a {
  display: block;
  font-size: 1rem;
  color: #fff;
  width: 270px;
  height: 50px;
  margin-inline: auto;
  display: grid;
  place-items: center;
  background-color: #c31d26;
  border-radius: 6px;
}

.recruit-single-md {
  text-align: center;
  padding: 2em 0 1em;
}

.recruit-single-detail-btn {
  padding: 1em 0;
  display: grid;
  place-content: center;
}

.recruit-single-detail-btn a {
  font-weight: 700;
  color: #8c2228;
  /*text-decoration: underline;*/
  font-size: 1.125rem;
}

.recruit-single-detail-btn a span::before {
  font-family: "Material Icons";
  content: "\e5df";
  vertical-align: -5px;
  margin-left: 3px;
  font-size: 1.5rem;
}

@media only screen and (max-width: 768px) {
  .recruit-single-title {
    font-size: 1.3rem;
    padding: 0.5em 0.5em;
  }

  .recruit-single-list li .mt001 {
    margin-top: 1.2em;
  }

  .recruit-single-list li .cont.mt002 {
    margin-top: 2.5em;
  }

  .recruit-single-list li .first-title {
    font-size: 1.2rem;
  }

  .recruit-single-md {
    padding: 1em 0 0.5em;
  }

  .recruit-single-detail-btn {
    padding: 0.5em 0;
  }
}

/*-------------------------------
Modelhouse Contract
-------------------------------*/
.modelhouse-contract-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3em 2.5em;
}

.modelhouse-contract-list .thumb img {
  object-fit: cover;
  width: 100%;
  height: 200px;
}

.modelhouse-contract-list .thumb img {
  object-fit: cover;
  width: 100%;
  height: 200px;
  position: relative;
}

.modelhouse-contract-list .thumb a {
  transition: 0.3s;
}

.modelhouse-contract-list .thumb a:hover {
  opacity: 0.8;
}

.modelhouse-contract-list .thumb.contracted {
  position: relative;
}

.modelhouse-contract-list .thumb.contracted::before {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-color: hsla(0, 0%, 100%, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.modelhouse-contract-list .thumb.contracted::after {
  content: 'ご成約済み';
  z-index: 2;
  font-weight: 700;
  font-size: 1.4rem;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000;
}

.modelhouse-contract-list .title {
  font-weight: bold;
  color: #555;
  margin-top: 0.5em;
}

.modelhouse-contract-list .title a {
  text-decoration: none;
}

.modelhouse-contract-list .text {
  margin-top: 0.5em;
  font-size: 0.875rem;
  line-height: 1.5;
}

@media only screen and (max-width: 768px) {
  .modelhouse-contract-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 3em 2.5em;
  }
}

@media only screen and (max-width: 480px) {
  .modelhouse-contract-list {
    grid-template-columns: 1fr;
    gap: 2.5em 0;
  }
}

.modelhouse-contract-single {
  margin-top: 1em;
}

.modelhouse-contract-single .inner-content {
  padding: 0 0 3em;
}

.modelhouse-contract-single .title {
  background-color: #a37a29;
  color: #fff;
  padding: 0.5em;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5em;
}

/*.modelhouse-contract-single .hero img{object-fit: cover;height: 600px;}*/
.modelhouse-contract-single .midashi {
  margin-top: 2em;
  font-size: 1.125rem;
  line-height: 1.7;
}

.modelhouse-contract-single .item-box {
  margin-top: 2.5em;
}

.modelhouse-contract-single .item-box .item-title {
  font-size: 1.25rem;
  background-color: #f5f1eb;
  padding: 0.4em 0.4em 0.4em 1em;
  margin-bottom: 1em;
  position: relative;
  color: rgb(141, 97, 8);
  font-weight: 700;
  line-height: 1.6;
}

.modelhouse-contract-single .item-box .item-title::before {
  display: block;
  content: '';
  width: 8px;
  height: 20px;
  background-color: #a37a29;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.modelhouse-contract-single .item-box .list li {
  display: grid;
  grid-template-columns: 200px 1fr;
  margin-top: 0.5em;
}

.modelhouse-contract-single .item-box .list li .tit {
  font-weight: 700;
  padding: 1em 1em;
  color: #fff;
  background-color: #999;
}

.modelhouse-contract-single .item-box .list li .cont {
  padding: 1em 1em;
  background-color: #f3f3f3;
}

.modelhouse-contract-single .item-box .list li .cont.emphasis {
  font-weight: 700;
  color: #FB062C;
}

.modelhouse-contract-single .item-box ul li {
  list-style: disc;
  margin-left: 1.5em;
  margin-top: 0.5em;
}

.modelhouse-contract-single .item-box .item-content iframe {
  width: 100%;
  max-width: 560px;
}

.access-block {
  border-top: 1px solid #bfa87a;
}

.access-block .access-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1em;
  padding: 1em;
  border-bottom: 1px solid #bfa87a;
}

.access-block .access-item .tit {
  font-weight: 700;
}

.access-block .access-map {
  margin-top: 1.5em;
}

.access-block .access-map iframe {
  display: block;
  width: 100%;
  height: 360px;
}

.modelhouse-contract-contact {
  margin-top: 2rem;
  border-top: 1px dotted #a37a29;
  padding: 2rem 0.5rem 0;
  line-height: 1.4;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5em;
}

.modelhouse-contract-contact a {
  width: 50%;
  max-width: 240px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #a37a29;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  padding: 0.3em;
}

.modelhouse-contract-contact a .icon {
  max-width: 30px;
  margin-right: 0.5em;
}

.works-back.modelhouse-contract-back {
  margin-top: 2rem;
  border-top: 1px dotted #867060;
  padding: 2rem 0.5rem 0;
  line-height: 1.4;
}

.works-back.modelhouse-contract-back .works-back-btn {
  display: block;
  max-width: 440px;
  border-radius: 60px;
  position: relative;
  width: 100%;
  max-width: 300px;
  padding: 0.6rem 0.5rem;
  margin: 0 auto;
  color: #a37a29;
  border: 2px solid #a37a29;
  border-radius: 30px;
  text-align: center;
  text-decoration: none;
  transition: .3s;
  font-size: 0.9rem;
  letter-spacing: -0.05em;
}

.works-back.modelhouse-contract-back .works-back-btn br {
  display: none;
}

.works-back.modelhouse-contract-back .works-back-btn .material-icons {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-45%);
  font-size: 1rem;
  color: #a37a29;
  font-weight: 700;
  vertical-align: middle;
  line-height: 1;
}

.works-back.modelhouse-contract-back .works-back-btn:hover {
  color: #fff;
  background-color: #a37a29;
  text-decoration: none;
}

.works-back.modelhouse-contract-back .works-back-btn:hover .material-icons {
  color: #fff;
}

.modelhouse-contract-contracted {
  padding: 2em 0 4em;
  font-weight: 700;
  font-size: 2em;
  text-align: center;
  color: #8C2228;
}

@media only screen and (max-width: 768px) {
  .modelhouse-contract-single {
    margin-top: 0;
  }

  .modelhouse-contract-single .title {
    font-size: 1.4rem;
    margin-bottom: 1em;
    line-height: 1.4;
  }

  .modelhouse-contract-single .midashi {
    margin-top: 1.5em;
    font-size: 1rem;
    line-height: 1.6;
  }

  .modelhouse-contract-single .item-box .item-title {
    font-size: 1.15rem;
    padding: 0.3em 0.3em 0.3em 1em;
  }

  .modelhouse-contract-single .item-box .item-title::before {
    width: 7px;
    height: 18px;
  }

  .modelhouse-contract-single .item-box .list li {
    grid-template-columns: 1fr;
    margin-top: 1em;
  }

  .modelhouse-contract-single .item-box .list li .tit {
    padding: 0.6em 0.6em;
  }

  .modelhouse-contract-single .item-box .list li .cont {
    padding: 0.6em 0.6em;
  }

  .access-block .access-item {
    grid-template-columns: 1fr;
    gap: 0.5em;
    padding: 0.7em;
  }

  .access-block .access-map {
    margin-top: 1.2em;
  }

  .access-block .access-map iframe {
    height: 300px;
  }
}

@media only screen and (max-width: 480px) {
  .works-back.modelhouse-contract-back .works-back-btn br {
    display: inline;
  }

  .modelhouse-contract-contact {
    margin-top: 1.5rem;
    border-top: 1px dotted #867060;
    padding: 1.5rem 0.5rem 0;
    line-height: 1.4;
    flex-direction: column;
    gap: 1em;
  }

  .modelhouse-contract-contact a {
    width: 100%;
    max-width: 240px;
  }

  .modelhouse-contract-contact a .icon {
    max-width: 28px;
  }
}

/*-------------------------------
	Real-Estate
-------------------------------*/
.real-estate-top-link {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1em;
}

.real-estate-md {
  margin-top: 2.5em;
  text-align: center;
  font-weight: bold;
  font-size: 1.3rem;
  line-height: 1.8;
}

.real-estate-md .strong {
  color: #a20909;
  font-size: 1.6rem;
}

.real-estate-section {
  margin-top: 2em;
}

.real-estate-section .title {
  padding-left: 0.5em;
  margin-right: 0.5em;
  text-align: center;
}

.real-estate-reason-list {
  margin-top: 3em;
  border-top: 3px dotted #ecb10b;
}

.real-estate-reason-list li {
  overflow: hidden;
  padding: 2em 0;
  border-bottom: 3px dotted #ecb10b;
}

.real-estate-reason-list li .img {
  width: 40%;
  float: left;
  margin: 0 40px 30px 0;
}

.real-estate-reason-list li.fr .img {
  width: 40%;
  float: right;
  margin: 0 0 30px 30px;
}

.real-estate-reason-list li a {
  text-decoration: underline;
  color: var(--main-color);

}

.real-estate-qa {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5em;
  margin-top: 3em;
  /*padding-bottom: 2em;*/
}

.real-estate-qa-cont .list li {
  background-color: #fff;
  padding: 1.5em;
  box-shadow: 0px 0px 8px -2px hsla(0, 0%, 20%, 0.6);
  border-radius: 12px;
  margin-top: 2em;
}

.real-estate-qa-cont .list li .qa-q {
  padding-left: 45px;
  background-position: 0 0;
  background-repeat: no-repeat;
  font-weight: bold;
  min-height: 36px;
}

.real-estate-qa-cont .list.buy li .qa-q {
  background-image: url(./img/real-estate/realestat_qa_buy_q.png);
}

.real-estate-qa-cont .list.sell li .qa-q {
  background-image: url(./img/real-estate/realestat_qa_sell_q.png);
}

.real-estate-qa-cont .list li .qa-a {
  padding-left: 45px;
  background-image: url(./img/real-estate/realestat_qa_a.png);
  background-position: 0 0;
  background-repeat: no-repeat;
  min-height: 36px;
  margin-top: 1.2em;
}

.real-estate-qa-cont .list li .qa-a p:not(:first-child) {
  margin-top: 1em;
}

.real-estate-section .land-under-btn {
  margin-bottom: 1em;
}

@media only screen and (max-width: 768px) {
  .real-estate-md {
    margin-top: 2em;
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: left;
  }

  .real-estate-md .strong {
    font-size: 1.4rem;
  }

  /*.real-estate-section{margin-top: 4em;}*/
  .real-estate-reason-list li {
    padding: 1.5em 0;
  }

  .real-estate-qa {
    grid-template-columns: 1fr;
    gap: 3em;
    margin-top: 2em;
    padding-bottom: 0;
  }
}

@media only screen and (max-width: 480px) {
  .real-estate-top-link {
    grid-template-columns: 1fr;
    gap: 1em;
  }

  .real-estate-reason-list li .img,
  .real-estate-reason-list li.fr .img {
    display: block;
    width: 100%;
    max-width: 360px;
    float: none;
    margin: 0 auto 20px;
  }
}

.real-estate-sell-top p {
  margin-top: 1.5em;
}

.real-estate-sell-top p .caution {
  font-weight: bold;
  font-size: 1.4rem;
  color: #e91e1e;
}

.real-estate-sell-title {
  font-weight: bold;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 1.5em;
}

.real-estate-sell-title span {
  position: relative;
}

.real-estate-sell-title span::before,
.real-estate-sell-title span::after {
  display: block;
  content: '';
  width: 14px;
  height: 14px;
  background-color: #22ac38;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}

.real-estate-sell-title span::before {
  left: -20px;
}

.real-estate-sell-title span::after {
  right: -20px;
}

.real-estate-sell-list {
  margin-top: -1em;
}

.real-estate-sell-list li {
  margin-top: 3em;
  border: 4px solid #22ac38;
  border-radius: 8px;
  position: relative;
}

.real-estate-sell-list li:not(:last-child)::after {
  display: block;
  content: "";
  position: absolute;
  bottom: -70px;
  transform: translateX(-50%);
  left: 50%;
  border: 28px solid transparent;
  border-top: 22px solid #fcff1b;
}

.real-estate-sell-list li .tit {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 10px;
  background-color: #22ac38;
  padding: 0.5em;
  color: #fff;
  font-weight: bold;
  line-height: 1.5;
}

.real-estate-sell-list li .tit .step {
  font-size: 0.9rem;
  display: grid;
  place-items: center;
  /*color:#fcff1b;*/
  color: #22ac38;
  line-height: 1;
  background-color: #fcff1b;
  padding: 0.3em;
  border-radius: 3px;
}

.real-estate-sell-list li .tit .txt {
  font-size: 1.125rem;
}

.real-estate-sell-list li .cont {
  padding: 1em;
  display: grid;
  grid-template-columns: 1fr 34%;
  gap: 2em;
}

.sell-choices-block {
  /*border-top: 1px dotted #ccc;
  border-bottom: 1px dotted #ccc;*/
  background-color: #f5f5f5;
  padding: 1em 1em;
  margin-top: 1.5em;
}

.sell-choices-block .tit {
  font-weight: bold;
}

.sell-choices-block .inner .item-box:not(:first-child) {
  margin-top: 20px;
}

@media only screen and (max-width: 768px) {
  .real-estate-sell-top p .caution {
    font-size: 1.25rem;
  }

  .real-estate-sell-title {
    font-size: 1.3rem;
    padding: 0 1em;
    margin-bottom: 0.5em;
  }

  .real-estate-sell-list li .tit {
    grid-template-columns: 80px 1fr;
  }

  .real-estate-sell-list li .cont {
    grid-template-columns: 1fr;
  }

  .real-estate-sell-list li .cont .img {
    width: 100%;
    max-width: 300px;
    margin-inline: auto;
  }
}

/*-------------------------------
	Concept
-------------------------------*/
.concept-index-title {
  text-align: center;
  padding: 0.5em 0 3.5em;
}

.concept-top-list li:not(:first-child) {
  margin-top: 4em;
}

.concept-top-list li .title {
  font-size: 1.5rem;
  font-weight: bold;
  border-bottom: 3px dotted var(--main-color);
  line-height: 1.4;
  padding-bottom: 0.3em;
}

.concept-top-list li .title .sub {
  display: block;
  font-size: 1rem;
  font-weight: normal;
}

.concept-top-list li .cont {
  display: grid;
  grid-template-columns: 1fr 37%;
  gap: 2em;
  margin-top: 1.5em;
}

.concept-top-list li .cont .text {
  display: flex;
  flex-direction: column;
}

.concept-top-list li .cont .text .btn {
  margin-top: auto;
}

.concept-top-list li .cont .text .btn a {
  display: block;
  width: 160px;
  padding: 10px;
  text-align: center;
  color: #fff;
  border-radius: 4px;
  background-color: #8c2228;
  margin-top: auto;
  margin-left: auto;
  line-height: 1;
  font-size: 14px;
}

.concept-top-list li .cont .btn a span {
  padding-left: 20px;
  background-image: url(./img/arrow04.png);
  background-position: left 10px center;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 768px) {
  .concept-top-list li:not(:first-child) {
    margin-top: 3em;
  }

  .concept-top-list li .title {
    font-size: 1.35rem;
  }

  .concept-top-list li .title .sub {
    font-size: 0.9rem;
  }

  .concept-top-list li .cont {
    grid-template-columns: 1fr;
    gap: 2em;
    margin-top: 1.5em;
  }

  .concept-top-list li .cont .text {
    order: 2;
  }

  .concept-top-list li .cont .text .btn {
    margin: 2em auto 0;
  }

  .concept-top-list li .cont .img {
    width: 100%;
    max-width: 330px;
    margin-inline: auto;
    order: 1;
  }
}

.concept-energy-img img {
  display: block;
  margin-top: 3rem;
}

.concept-notes {
  margin-top: 2em;
  font-size: 0.9rem;
  padding-left: 1rem;
  text-indent: -1rem;
}

.concept-title {
  font-weight: bold;
  font-size: 1.8rem;
  text-align: center;
  position: relative;
  line-height: 1.5;
  margin-top: 1em;
  margin-bottom: 2.5em;
}

.concept-title:before {
  position: absolute;
  content: '';
  background: #d39e33;
  bottom: -20px;
  left: calc(50% - 50px);
  width: 100px;
  height: 1px;
}

.concept-title .second {
  display: block;
  font-size: 1rem;
  text-align: center;
}

.concept-cost-hero {
  margin-top: 2em;
}

.concept-cost-hero.dammy {
  width: 100%;
  height: 500px;
  background-color: #f3f3f3;
}

.concept-thermal-list {
  margin-top: 2em;
}

.concept-thermal-list li {
  background-color: #fff;
  /*background-color: #f3eaea;*/
  box-shadow: 0px 0px 6px -2px hsla(0, 0%, 0%, 0.6);
  border-radius: 10px;
  padding: 1.5em 2em;
  display: grid;
  grid-template-columns: 1fr 50%;
  gap: 2em;
  margin-top: 1.5em;
}

.concept-thermal-list li.right .cont {
  order: 2;
}

.concept-thermal-list li.right .img {
  order: 1;
}

.concept-thermal-list li .cont .title {
  font-weight: bold;
  font-size: 1.25rem;
  color: var(--main-color);
  margin-bottom: 1em;
}

.concept-thermal-list li .img {
  padding-top: 1em;
}

.concept-thermal-list2 {
  margin-top: 3em;
  padding: 0.5em 0 1.5em;
  border-top: 3px dotted #f7b076;
  border-bottom: 3px dotted #f7b076;
}

.concept-thermal-list2 li {
  position: relative;
  padding-left: 25px;
  /*font-weight: bold;*/
  margin-top: 1em;
}

.concept-thermal-list2 li::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background-color: #f7b076;
  position: absolute;
  top: 10px;
  left: 5px;
}

.concept-text1 p:not(:first-child) {
  margin-top: 1.5em;
}

.concept-resistance-block {
  margin-top: 3.5em;
}

.concept-resistance-title {
  margin-top: 2.2em;
  margin-bottom: 1em;
  font-size: 26px;
  padding-bottom: 5px;
  border-bottom: 1px solid #ebe2e2;
  position: relative;
  line-height: 1.4;
}

.concept-resistance-title::after {
  content: '';
  width: 120px;
  height: 1px;
  background-color: #b11c1c;
  position: absolute;
  bottom: -1px;
  left: 0;
}

.concept-resistance-list li {
  margin-top: 1.5em;
  text-align: center;
}

.concept-resistance-list li .sp {
  display: none;
}

.concept-link-btn {
  display: block;
  width: min(100%, 400px);
  margin: 2em auto 0;
  text-align: center;
  background-color: #1a2c54;
  padding: 0.7em 0.5em 0.7em;
  line-height: 1.2;
  color: #fff;
  border-radius: 6px;
}

.concept-link-btn:hover {
  color: #fff;
}

.concept-link-btn span {
  padding-left: 15px;
  background: url(./img/arrow04.png) no-repeat left 50%;
}

.concept-resistance-under {
  padding-bottom: 1.5em;
  border-bottom: 1px dotted var(--main-color);
}

.concept-thermal-img1 {
  margin: 0 0 2em;
  text-align: center;
}

.concept-thermal-img2 {
  margin: 2.5em 0 2.5em;
  text-align: center;
}

.concept-thermal-img3 {
  margin: 2.5em 0 2.5em;
  text-align: center;
}

.concept-thermal-list3 {
  margin-top: 2em;
}

.concept-thermal-list3 li {
  margin-top: 1.5em;
}

.concept-thermal-list3 li .tit {
  display: inline-block;
  padding: 0.4em 0.8em;
  background-color: #854a50;
  color: #fff;
  font-weight: bold;
  line-height: 1.5;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  font-size: 1.125rem;
}

.concept-thermal-list3 li .tit .num {
  display: inline-block;
  background-color: #fff;
  color: #854a50;
  border-radius: 50%;
  padding: 0.2em 0.45em;
  margin-right: 0.5em;
  line-height: 1;
}

.concept-thermal-list3 li .cont {
  border: 2px solid #854a50;
  padding: 1.5em;
  border-top-right-radius: 8px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.concept-resistance-imd {
  margin: 0 0 2.5em;
  text-align: center;
}

.concept-energy-banner {
  display: block;
  width: min(100%, 620px);
  margin: 3em auto 3em;
}

@media only screen and (max-width: 768px) {
  .concept-energy-img img {
    margin-top: 2rem;
  }

  .concept-title {
    font-size: 1.5rem;
    margin-bottom: 2em;
  }

  .concept-cost-hero.dammy {
    height: 300px;
  }

  .concept-thermal-list {
    margin-top: 1.5em;
  }

  .concept-thermal-list li.right .cont {
    order: 1;
  }

  .concept-thermal-list li.right .img {
    order: 2;
  }

  .concept-thermal-list li {
    border-radius: 10px;
    padding: 1em 1.5em 2em;
    grid-template-columns: 1fr;
    gap: 1.5em;
  }

  .concept-thermal-list li .cont .title {
    font-size: 1.125rem;
  }

  .concept-thermal-list li .img {
    width: min(100%, 460px);
    margin-inline: auto;
    padding-top: 0;
  }

  .concept-thermal-list2 {
    margin-top: 2.5em;
    padding: 0.5em 0 1em;
  }

  .concept-resistance-list li .pc {
    display: none;
  }

  .concept-resistance-list li .sp {
    display: inline;
  }

  .concept-thermal-list3 li .cont {
    padding: 1em 1.2em;
  }

  .concept-energy-banner {
    margin: 2em auto;
  }
}

/*-------------------------------
	Reform
-------------------------------*/
.reform-box:not(:first-child) {
  margin-top: 4em;
}

.reform-title {
  text-align: center;
}

.reform-title span {
  display: inline-block;
  border-top: 1px solid #f7b076;
  border-bottom: 1px solid #f7b076;
  padding: 0.8em 0.5em;
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1.4;
}

.reform-threepoints {
  margin-top: 2em;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2em;
}

/*.reform-threepoints li img{
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.18);
}*/
.reform-threepoints-text {
  margin-top: 2.5em;
}

.reform-items {
  margin-top: 2.5em;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2em;
}

.reform-case {
  margin-top: 2.5em;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2em;
}

.reform-case li {
  position: relative;
}

.reform-case li::after {
  display: block;
  content: '';
  width: 26px;
  height: 26px;
  background-image: url(./img/icon_rupe.png);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: contain;
  position: absolute;
  bottom: 3px;
  right: 3px;
}

.reform-link-btn {
  display: block;
  width: min(100%, 360px);
  margin: 2em auto 0;
  text-align: center;
  background-color: #00a0e9;
  padding: 0.7em 0.5em 0.7em;
  line-height: 1.2;
  color: #fff;
  border-radius: 6px;
}

.reform-link-btn:hover {
  color: #fff;
}

.reform-link-btn span {
  padding-left: 15px;
  background: url(./img/arrow04.png) no-repeat left 50%;
}

.reform-renovation .reform-link-btn {
  width: 300px;
}

.reform-under-banner {
  /*margin-top: 2em;*/
  display: grid;
  place-items: center;
  /*grid-template-columns: repeat(2, 1fr);
  gap:2em;*/
}

/*.reform-under-banner{
  margin-top: 2em;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap:2em;
}*/
@media only screen and (max-width: 768px) {
  .reform-box:not(:first-child) {
    margin-top: 3em;
  }

  .reform-title span {
    padding: 0.6em 0.2em;
    font-size: 1.2rem;
  }

  .reform-title span br {
    display: none;
  }

  .reform-threepoints {
    margin-top: 1.5em;
    grid-template-columns: 1fr;
    gap: 2em;
  }

  .reform-threepoints li {
    text-align: center;
  }

  .reform-threepoints-text {
    margin-top: 2em;
  }

  .reform-items {
    margin-top: 2em;
    grid-template-columns: repeat(2, 1fr);
    gap: 1em;
  }

  .reform-items li {
    text-align: center;
  }

  .reform-case {
    margin-top: 2em;
    grid-template-columns: 1fr;
    gap: 1.5em;
    place-items: center;
  }

  .reform-case li {
    width: 100%;
    max-width: 440px;
    text-align: center;
  }

  .reform-under-banner {
    /*margin-top: 2em;*/
    /*grid-template-columns: 1fr;
    place-items: center;
    gap:1em;*/
  }

  /*.reform-under-banner{
    margin-top: 2em;
    grid-template-columns: 1fr;
    place-items: center;
    gap:1em;
  }*/
}

.reform-cat-title {
  /*font-weight: 700;*/
  font-size: 1.8rem;
  text-align: center;
  line-height: 1.4;
  position: relative;
  margin: 0.5em 0 3em;
}

.reform-cat-title::after {
  display: block;
  content: '';
  width: 100px;
  height: 1px;
  background-color: #c29234;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.reform-cat-text {
  margin-top: 2em;
}

.reform-cat-text p:not(:first-child) {
  margin-top: 1.5em;
}

.reform-beforeafter-title {
  font-weight: 700;
  font-size: 1.25rem;
  text-align: center;
  color: #fff;
  line-height: 1.4;
  width: 100%;
  max-width: 360px;
  margin: 3em auto 0;
  padding: 0.5em 1em;
  background-color: #ce9f42;
  position: relative;
  border-radius: 6px;
}

.reform-beforeafter-title::before {
  display: block;
  content: '';
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: 5px;
  left: 0;
}

.reform-beforeafter-list {
  margin-top: 1em;
}

.reform-beforeafter-list li {
  padding: 1.5em 0;
  /*border-bottom: 1px solid #ccc;*/
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  text-align: center;
}

.reform-beforeafter-list li img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.reform-beforeafter-list li .label {
  display: grid;
  place-items: center;
  width: 100%;
  height: 40px;
  color: #fff;
  margin-top: 2px;
}

.reform-beforeafter-list li .before .label {
  background-color: #fba158;
}

.reform-beforeafter-list li .after .label {
  background-color: #0f8de5;
}

.reform-beforeafter-list li.vertical img {
  width: 100%;
  max-width: 360px;
  height: 480px;
  margin-inline: auto;
}

.reform-beforeafter-list li.vertical img {
  height: 480px;
}

.reform-beforeafter-list li.vertical .label {
  max-width: 360px;
  margin-inline: auto;
}

.reform-renovation-md {
  text-align: center;
  margin: 0 0 3em;
}

@media only screen and (max-width: 768px) {
  .reform-cat-title {
    font-size: 1.6rem;
    margin: 0.2em 0 2em;
  }

  .reform-cat-title::after {
    width: 80px;
  }

  .reform-beforeafter-title {
    font-size: 1.125rem;
    max-width: 360px;
    margin: 2em auto 0;
    padding: 0.4em 0.5em;
  }

  .reform-beforeafter-list {
    border-top: 1px dotted #777;
  }

  .reform-beforeafter-list li {
    padding: 2em 0;
    border-bottom: 1px dotted #777;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .reform-renovation-md {
    margin: 0 0 2em;
  }
}

@media only screen and (max-width: 480px) {
  .reform-beforeafter-list li img {
    height: 260px;
  }

  .reform-beforeafter-list li.vertical img {
    height: 400px;
  }
}

/*-------------------------------
	Blog
-------------------------------*/
.main-field-inner {
  display: flex;
  justify-content: space-between;
}

.main-field-content {
  width: 70%;
}

.side {
  width: 25%;
}

/* .blog-list{margin-top: 2rem;} */
.blog-list li {
  padding: 40px 0;
  border-bottom: 1px solid #e2b2b2;
}

.page-template-archive .blog-list li:first-child {
  padding-top: 0;
}

.blog-list-thumb {
  width: 100%;
  text-align: center;
}

.blog-list-thumb .thumbnail {
  display: block;
  width: 100%;
  height: 380px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.blog-list-caption {
  width: 100%;
  margin-top: 20px;
}

/* .blog-list-caption a{color: #7B2B30;} */
.blog-list-caption .title {
  font-weight: 700;
  font-size: 24px;
}

.blog-list-caption .detail {
  display: flex;
  justify-content: space-between;
}

.blog-list-caption .date {
  width: 49%;
  font-weight: 400;
  font-size: 16px;
}

.blog-list-caption .date i {
  margin-right: 5px;
  font-weight: 700;
  font-size: 18px;
  color: #888;
  vertical-align: -3px;
}

.blog-list-caption .cat {
  font-weight: 400;
  font-size: 16px;
  text-align: right;
}

.blog-list-caption .cat i {
  margin-right: 5px;
  font-weight: 700;
  font-size: 18px;
  color: #888;
  vertical-align: -3px;
}

.blog-list-caption .cat a {
  color: #222;
  transition: all 0.1s;
}

.blog-list-caption .cat a:hover {
  text-decoration: none;
  color: #B40E0E;
  transition: all 0.3s;
}

.blog-list-caption .excerpt {
  margin-top: 0.5rem;
}

.blog-cat-title {
  padding: 0.4rem;
  background-color: #E6E0DC;
  border-radius: 4px;
}

.blog-cat-title span {
  display: block;
}

.blog-cat-title .t01 {
  font-size: 14px;
  line-height: 1rem;
}

.blog-cat-title .t01 i {
  font-size: 18px;
  color: #666;
  margin-right: 4px;
  vertical-align: -4px;
}

.blog-cat-title .t02 {
  font-weight: 700;
  font-size: 20px;
  margin-top: 0.2rem;
}

.blog-title {
  font-size: 26px;
  color: #7B2B30;
  padding-bottom: 5px;
  border-bottom: 1px solid #ebe2e2;
  position: relative;
  margin-bottom: -10px;
}

.blog-title:after {
  content: '';
  width: 120px;
  height: 1px;
  background-color: #b11c1c;
  position: absolute;
  bottom: -1px;
  left: 0;
}

.single-post .voice-single .wp_social_bookmarking_light {
  display: block !important;
}

.single-content {
  margin-top: 30px;
}

.single-content p {
  margin-bottom: 20px;
}

.single-content ul {
  margin-bottom: 1.8rem;
}

.single-content li {
  list-style-type: disc;
  margin-bottom: 0.8rem;
  margin-left: 1.5rem;
}

.single-content .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.single-content .alignleft {
  display: block;
  float: left;
  margin-right: 1rem;
}

.single-content .alignright {
  display: block;
  float: right;
  margin-left: 1rem;
}

.single-content h1 {
  font-weight: 700;
  font-size: 1.6em;
  line-height: 1.5;
  padding-bottom: 0.2em;
  border-bottom: 1px dotted #777;
}

.single-content h2 {
  font-weight: 700;
  font-size: 1.5em;
  line-height: 1.5;
  padding-bottom: 0.2em;
  border-bottom: 1px dotted #777;
}

.single-content h3 {
  font-weight: 700;
  font-size: 1.3em;
  line-height: 1.5;
  padding-bottom: 0.2em;
  border-bottom: 1px dotted #777;
}

.single-content h4 {
  font-weight: 700;
  font-size: 1.1em;
  line-height: 1.5;
}

.single-content h5, .single-content h6 {
  font-weight: 700;
  line-height: 1.5;
}

/*Youtube用*/
.is-provider-youtube .wp-block-embed__wrapper {
  width: 100%;
  max-width: 800px;
  margin-inline: auto;
  aspect-ratio: 16 / 9;
}

.is-provider-youtube .wp-block-embed__wrapper iframe {
  width: 100% !important;
  height: 100% !important;
}

.wp_social_bookmarking_light {
  /* border-top: 1px dotted #BA9269; */
  border-bottom: 1px solid rgb(195, 164, 133);
  padding: 10px 0 40px 0 !important;
  margin: 2rem 0 0 0 !important;
}

.wp_social_bookmarking_light div {
  float: left !important;
  border: 0 !important;
  padding: 0 !important;
  margin: 0 5px 0px 0 !important;
  min-height: 30px !important;
  line-height: 18px !important;
  text-indent: 0 !important;
}

.wp_social_bookmarking_light img {
  border: 0 !important;
  padding: 0;
  margin: 0;
  vertical-align: top !important;
}

.wp_social_bookmarking_light_clear {
  clear: both !important;
}

#fb-root {
  display: none;
}

.wsbl_facebook_like iframe {
  max-width: none !important;
}

.wsbl_pinterest a {
  border: 0px !important;
}

.comments-box {
  margin-top: 4rem;
}

.comment-title {
  font-weight: 700;
  font-size: 1rem;
  border-left: 6px solid #308300;
  padding-left: 0.4rem;
}

.comment-list>li {
  background-color: #f6f6f6;
  padding: 0.8rem;
  border-radius: 3px;
  margin-top: 1.2rem;
}

.comment-meta {
  margin-top: 0.6rem;
  border-top: 1px dotted #b6b6b6;
  display: flex;
  justify-content: space-between;
  padding-top: 0.4rem;
  font-size: 0.9rem;
}

.comment-author {
  width: 48%;
}

.comment-dat {
  width: 48%;
  text-align: right;
}

.respond {
  margin-top: 4rem;
}

.respond-title {
  font-weight: 700;
  font-size: 1rem;
  border-left: 6px solid #1e3d9b;
  padding-left: 0.4rem;
}

.comment-reply-title {
  display: none;
}

.comment-notes {
  margin-top: 0.5rem;
}

.comment-respond .required {
  color: #FB062C;
  font-weight: 700;
  font-size: 1.05rem;
}

.comment-form-comment {
  margin-top: 1rem;
  font-weight: 700;
}

.comment-form-comment textarea {
  width: 100%;
  height: 150px;
  border: 1px solid #aaa;
  border-radius: 4px;
  padding: 0.3rem;
}

.comment-form-author {
  margin-top: 0.5rem;
  font-weight: 700;
}

.comment-form-author input {
  width: 100%;
  border: 1px solid #aaa;
  border-radius: 4px;
  padding: 0.3rem;
}

.comment-form-email {
  margin: 0.5rem 0 1rem;
  font-weight: 700;
}

.comment-form-email input {
  width: 100%;
  border: 1px solid #aaa;
  border-radius: 4px;
  padding: 0.3rem;
}

.comment-form-url {
  display: none;
}

.comment-respond #siteguard_captcha {
  width: 100%;
  border: 1px solid #aaa;
  border-radius: 4px;
  padding: 0.3rem;
}

.comment-respond p>img {
  display: inline-block;
  width: 100px;
  border: 3px solid #eee;
  padding: 0.4rem;
  border-radius: 6px;
}

.form-submit {
  margin-top: 1.5rem;
}

.form-submit input {
  display: block;
  border: none;
  background-color: rgb(240, 42, 72);
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  width: 100%;
  max-width: 200px;
  border-radius: 4px;
  cursor: pointer;
  padding: 0.6rem 0.5rem;
  transition: all 0.7s;
}

.form-submit input:hover {
  background-color: rgb(231, 81, 103);
  transition: all 0.1s;
}

.sidebar-list {
  list-style: none;
}

.sidebar-list>li {
  list-style: none;
}

.sidebar-list>li:not(:first-child) {
  margin-top: 30px;
}

.sidebar-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: #8c2228;
}

.widget ul,
.widget ul.side-comments {
  margin-top: 1rem;
}

.widget ul li {
  margin-top: 0.2rem;
  padding-left: 1rem;
  position: relative;
}

.widget ul li:before {
  font-family: "Material Icons";
  content: 'arrow_right';
  font-size: 1.2rem;
  position: absolute;
  top: 3px;
  left: 0;
}

.widget ul li a {
  display: block;
  padding: 0.3rem 0;
}

.widget_archive .screen-reader-text {
  display: none;
}

.widget_archive select {
  display: block;
  width: 100%;
  border-radius: 3px;
  padding: 8px;
  margin-top: 1rem;
  font-size: 16px;
  background-color: #f3f3f3;
}

.widget_recent_entries .sidebar-title:before {
  font-family: 'Material Icons';
  content: '\ea19';
  font-size: 40px;
  vertical-align: -7px;
  margin-right: 5px;
  line-height: 1;
  font-weight: 400;
}

.widget_categories .sidebar-title:before {
  font-family: 'Material Icons';
  content: '\ef40';
  font-size: 40px;
  vertical-align: -7px;
  margin-right: 5px;
  line-height: 1;
  font-weight: 400;
}

.widget_archive .sidebar-title:before {
  font-family: 'Material Icons';
  content: '\e8df';
  font-size: 40px;
  vertical-align: -7px;
  margin-right: 5px;
  line-height: 1;
  font-weight: 400;
}


@media only screen and (max-width: 768px) {
  .main-field-inner {
    flex-direction: column;
  }

  .main-field-content {
    width: 100%;
  }

  .side {
    width: 100%;
    width: 100%;
    max-width: 400px;
    margin: 3rem auto 0;
  }

  .blog-list-caption .title {
    font-size: 22px;
  }

  .blog-list-caption .detail {
    flex-direction: column;
  }

  .blog-list-caption .date {
    width: 100%;
  }

  .blog-list-caption .cat {
    width: 100%;
    text-align: left;
  }

  .blog-list-thumb .thumbnail {
    height: 300px;
  }

  .widget_recent_entries .sidebar-title:before {
    font-size: 32px;
    vertical-align: -5px;
  }

  .widget_categories .sidebar-title:before {
    font-size: 32px;
    vertical-align: -5px;
  }

  .widget_archive .sidebar-title:before {
    font-size: 32px;
    vertical-align: -5px;
  }

  .blog-title {
    font-size: 24px;
  }

  .single-title {
    font-size: 1.7rem;
  }

  .wp-pagenavi {
    margin-top: 2rem;
  }

  .addtoany_share_save_container {
    margin-top: 1.52rem !important;
  }

  .comments-box {
    margin-top: 3rem;
  }

  .respond {
    margin-top: 3rem;
  }
}

@media only screen and (max-width: 480px) {
  .comment-meta {
    flex-direction: column;
  }

  .comment-author {
    width: 100%;
  }

  .comment-dat {
    width: 100%;
    text-align: left;
  }

  .form-submit input {
    margin: 0 auto;
  }
}

.blog-side {
  margin-top: 0.8rem;
  padding-bottom: 1.5rem !important;
}

.blog-side .side-title01 {
  font-size: 0.875rem;
  font-weight: bold;
  border-left: 6px solid #867364;
  padding: 0 0 0.2rem 0.3rem;
}

.blog-side-list li {
  margin: 0.5rem 0 0 0.4rem;
  padding-left: 0.5rem;
  background: url(./img/arrow02.png) no-repeat left 8px;
}

.side-select select {
  display: block;
  width: 160px;
  margin-top: 0.5rem;
  padding: 0.4rem 0.2rem;
}

.post-list01 {
  margin-top: 2.5rem;
}

.post-list01 li {
  margin-bottom: 2.5rem;
}

.post-date {
  font-size: 0.875rem;
  /* font-weight: bold; */
  width: 120px;
  line-height: 26px;
  padding: 0 0 0 8px;
  color: #ffffff;
  background: #d8a27d;
  position: relative;
  margin-bottom: 0.5rem;
}

.post-date:after {
  position: absolute;
  content: '';
}

.post-date:after {
  right: -13px;
  width: 0;
  height: 0;
  border-top: 13px solid #d8a27d;
  border-bottom: 13px solid #d8a27d;
  border-right: 10px solid transparent;
  border-left: 13px solid #d8a27d;
}

.post-title-concierge {
  min-height: 30px;
  font-size: 1.4rem;
  background: url(./img/blog/blog_title_concierge.png) no-repeat left 0px;
  padding: 0 0 5px 35px;
  border-bottom: 1px solid #DBC5B0;
}

.post-title-staff {
  min-height: 30px;
  font-size: 1.4rem;
  background: url(./img/blog/blog_title_staff.png) no-repeat left 0px;
  padding: 0 0 5px 35px;
  border-bottom: 1px solid #DBC5B0;
}

.post-detail {
  margin-top: 0.6rem;
  overflow: hidden;
  font-size: 0.875rem;
}

.post-cat {
  width: 48%;
  float: left;
}

.post-cat a {
  display: inline-block;
  min-height: 20px;
  background: url(./img/blog/blog_category.png) no-repeat left 0px;
  padding-left: 1.4rem;
}

.post-comment {
  width: 48%;
  float: right;
  text-align: right;
}

.post-comment a {
  display: inline-block;
  min-height: 20px;
  background: url(./img/blog/blog_comment.png) no-repeat left 0px;
  padding-left: 1.8em;
}

.post-inner {
  margin-top: 1.5rem;
}

.post-main-content p {
  margin-bottom: 1.2rem;
}

.post-main-content h1 {
  font-weight: bold;
  font-size: 1.8rem;
  color: #7D282D;
  margin-bottom: 0.6rem;
  border-left: 8px solid #BD6733;
  padding-left: 0.6rem;
}

.post-main-content h2 {
  font-weight: bold;
  font-size: 1.6rem;
  color: #7D282D;
  margin-bottom: 0.6rem;
  border-left: 6px solid #BD6733;
  padding-left: 0.6rem;
}

.post-main-content h3 {
  font-weight: bold;
  font-size: 1.4rem;
  color: #7D282D;
  margin-bottom: 0.6rem;
  border-left: 4px solid #BD6733;
  padding-left: 0.6rem;
}

.post-main-content h4 {
  font-weight: bold;
  font-size: 1.2rem;
  color: #7D282D;
  margin-bottom: 0.6rem;
  border-left: 3px solid #BD6733;
  padding-left: 0.6rem;
}

.post-main-content h5 {
  font-weight: bold;
  font-size: 1.14rem;
  color: #7D282D;
  margin-bottom: 0.6rem
}

.post-main-content h6 {
  font-weight: bold;
  font-size: 1rem;
  color: #7D282D;
  margin-bottom: 0.6rem
}

.post-main-content p {
  margin-bottom: 2em;
}

.wp-pagenavi {
  margin-top: 0.5em;
  clear: both;
  text-align: center;
}

.wp-pagenavi a, .wp-pagenavi span, .wp-pagenavi .pages, .wp-pagenavi span.extend, .wp-pagenavi span.current {
  display: inline-block;
  text-decoration: none;
  border: none;
  background: #cd9f44;
  color: #FFF;
  padding: 0.3em 0.65em 0.3em 0.6em;
  margin: 0.2em;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
}

.wp-pagenavi a {
  transition: all 0.7s;
}

.wp-pagenavi span.extend {
  padding: 0.3em 0.2em 0.3em 0.2em;
  margin: 0.26em;
}

.wp-pagenavi a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(opacity=85);
  -ms-filter: "alpha(opacity=85)";
  opacity: 0.85;
  transition: all 0.1s;
}

.wp-pagenavi span.current {
  font-weight: bold;
  color: #FFF;
  background-color: #eec28d;
}

.wp-pagenavi .pages, .wp-pagenavi .first, .wp-pagenavi .last {
  padding: 0.3em 0.65em 0.3em 0.6em;
}

.nextprev {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #e8d1d2;
  overflow: hidden;
  font-size: 16px;
}

.nextprev .next {
  width: 48%;
  float: left;
}

.nextprev .next a {
  display: inline-block;
  color: #8c2228;
}

.nextprev .next a:before {
  font-family: 'Material Icons';
  content: "\e5cb";
  vertical-align: -2px;
  margin-right: 3px;
}

.nextprev .prev {
  width: 48%;
  float: right;
  text-align: right;
}

.nextprev .prev a {
  display: inline-block;
  color: #8c2228;
}

.nextprev .prev a:after {
  font-family: 'Material Icons';
  content: "\e5cc";
  vertical-align: -2px;
  margin-left: 3px;
}

.comments-box {
  margin-top: 3rem;
}

.comment-title {
  border-left: 5px solid #F1AE12;
  padding-left: 0.3rem;
  font-weight: bold;
}

.respond-title {
  border-left: 5px solid #F56656;
  padding-left: 0.3rem;
  font-weight: bold;
}

.respond {
  margin-top: 2rem;
}

.respond-list li {
  margin-top: 1rem;
}

.respond-list .size01 {
  width: 100%;
  padding: 0.3rem 0.2rem
}

.respond-list .size02 {
  width: 100%;
  height: 150px;
  padding: 0.3rem 0.2rem
}

.respond-tit01 {
  font-size: 0.875rem;
  font-weight: bold;
}

.respond-tit01 .hissu {
  color: #ed4149;
}

.respond-submit {
  margin-top: 0.5rem;
}

.respond-submit input {
  display: inline-block;
  border: none;
  width: 140px;
  padding: 0.5rem 0.2rem;
  text-align: center;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  background: #FB5E5E;
  transition: 0.3s;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}

.respond-submit input:hover {
  opacity: 0.8;
}

.respond-captcha {
  margin-top: 0.5rem;
}

/*-------------------------------
	Topic（中町モデルハウスフォーム）
-------------------------------*/
.topic-hero {
  margin-bottom: 40px;
}

.topic-hero .popup {
  background-color: #f9f6ef;
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.topic-hero .popup li {
  position: relative;
}

.topic-hero .popup li::after {
  content: '';
  display: block;
  width: 34px;
  height: 34px;
  position: absolute;
  bottom: 5px;
  right: 5px;
  background-image: url(./img/icon_search_w.svg);
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

.topic-hero .popup li a img {
  width: 100%;
  height: auto;
}

.topic-youtube {
  width: 100%;
  max-width: 800px;
  margin: 40px auto 0;
  aspect-ratio: 16 / 9;
}

.topic-youtube iframe {
  width: 100%;
  height: 100%;
}

.topic-tel-box {
  width: 100%;
  max-width: 600px;
  margin: 30px auto 0;
  padding: 20px;
  background-color: #f9f6ef;
  border-radius: 12px;
  text-align: center;
  font-weight: bold;
  line-height: 1.4;
}

.topic-tel-box .txt {
  font-size: 1.25rem;
}

.topic-tel-box .number {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.topic-tel-box .number .icon img {
  width: 20px;
  height: 26px;
  transform: translateY(-2px);
}

.topic-tel-box .number .num {
  font-size: 1.7rem;
  line-height: 1.2;
}

.topic-tel-box .txt2 {
  font-size: 1.125rem;
  margin-top: 20px;
}

.topic-mt {
  margin-top: 40px;
}

.topic-present {
  text-align: center;
  margin: 40px auto 0;
}

.topic-map .tit {
  font-size: 1.25rem;
  font-weight: bold;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 5px;
  border-bottom: 1px solid #d2c8ae;
}

.topic-map .tit .icon {
  width: 14px;
  height: 22px;
}

.topic-map .tit .icon img {
  width: 14px;
  height: 22px;
  vertical-align: top;
}

.topic-map .address {
  font-weight: bold;
  margin-top: 10px;
}

.topic-map .map {
  margin-top: 10px;
}

.topic-map .map iframe {
  display: block;
  width: 100%;
  height: 340px;
}

@media only screen and (max-width: 768px) {
  .topic-hero {
    margin-bottom: 30px;
  }

  .topic-tel-box {
    padding: 15px;
    border-radius: 10px;
  }

  .topic-tel-box .txt {
    font-size: 1.125rem;
  }

  .topic-tel-box .number .num {
    font-size: 1.6rem;
  }

  .topic-tel-box .txt2 {
    font-size: 1rem;
    margin-top: 15px;
  }

  .topic-mt {
    margin-top: 30px;
  }

  .topic-map .map iframe {
    height: 300px;
  }
}

@media only screen and (max-width: 500px) {
  .topic-hero .popup {
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .topic-hero .popup li {
    width: 100%;
    max-width: 400px;
    margin-inline: auto;
  }

  .topic-hero .popup li::after {
    width: 30px;
    height: 30px;
  }

  .topic-present {
    width: 100%;
    max-width: 500px;
  }
}

/*-------------------------------
	Event
-------------------------------*/
.event-block .list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 3.5%;
}

.event-block .list li {
  width: 31%;
  box-shadow: 0px 0px 10px -2px rgba(0, 0, 0, 0.25);
}

.event-block .list li a {
  display: block;
}

.event-block .list li a .item-img {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.event-block .list li a .item-img::before {
  content: "";
  padding-top: 100%;
  display: block;
}

.event-block .list li a .item-img.closed::after {
  display: flex;
  justify-content: center;
  align-items: center;
  content: '受付終了しました';
  color: var(--main-color);
  font-size: 1.125rem;
  font-weight: bold;
  width: 100%;
  height: 100%;
  background-color: hsla(0, 0%, 100%, 0.85);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.event-block .list li a .item-img img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  transition: .3s;
}

.event-block .list li a .item-img img:hover {
  opacity: 0.85;
}

.event-block .list li a .item-title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  background-color: #fff;
  padding: 15px;
  line-height: 1.4;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .event-block .list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .event-block .list li {
    width: 100%;
    max-width: 380px;
    margin-inline: auto;
  }
}

.event-single-header .tit {
  font-size: 1.7rem;
  border-bottom: 1px solid var(--brown1-color);
  line-height: 1.4;
  padding-bottom: 10px;
}

.event-single-header .date {
  margin-top: 10px;
  font-size: 0.9rem;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 5px;
}

.event-single-header .date .material-icons {
  font-size: 1rem;
  color: #888;
}

.event-single-content {
  margin-top: 30px;
}

.event-single-content h1 {
  font-weight: bold;
  font-size: 1.5rem;
  border-left: 10px solid var(--brown2-color);
  padding-left: 5px;
  line-height: 1.4;
}

.event-single-content h2 {
  font-weight: bold;
  font-size: 1.4rem;
  border-left: 6px solid var(--brown2-color);
  padding-left: 5px;
  line-height: 1.4;
}

.event-single-content h3 {
  font-weight: bold;
  font-size: 1.3rem;
  line-height: 1.4;
}

.event-single .modelhouse-information li .tit {
  width: 25%;
}

.event-single .modelhouse-information li .cont {
  width: 75%;
}

.event-single-closed {
  margin: 0 0 30px 0;
  padding: 20px;
  line-height: 1.4;
  text-align: center;
  background-color: #ffeaef;
  color: var(--main-color);
  font-size: 1.125rem;
  font-weight: bold;
  border-radius: 4px;
}

@media only screen and (max-width: 768px) {
  .event-single-header .tit {
    font-size: 1.5rem;
    padding-bottom: 5px;
  }

  .event-single-header .date {
    margin-top: 5px;
  }

  .event-single .modelhouse-information li .tit {
    width: 100%;
  }

  .event-single .modelhouse-information li .cont {
    width: 100%;
  }
}

.event-form-hero {
  margin-bottom: 60px;
}

@media only screen and (max-width: 768px) {
  .event-form-hero {
    margin-bottom: 40px;
  }
}