/*
Theme Name: The Blank
Author: HeyMasa
Description: This theme is The Blank theme
Version: 1.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: The Blank

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/* RESET CSS*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:where([hidden]:not([hidden='until-found'])) {
  display: none !important;
}
:where(html) {
  -webkit-text-size-adjust: none;
  color-scheme: dark light;
}
@supports not (min-block-size: 100dvb) {
  :where(html) {
    block-size: 100%;
  }
}
@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  block-size: 100%;
  block-size: 100dvb;
  line-height: 1.5;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}
:where(textarea) {
  resize: vertical;
  resize: block;
}
:where(button, label, select, summary, [role='button'], [role='option']) {
  cursor: pointer;
}
:where(:disabled) {
  cursor: not-allowed;
}
:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}
:where(button) {
  border-style: solid;
}
:where(a) {
  text-underline-offset: 0.2ex;
}
:where(ul, ol) {
  list-style: none;
}
:where(video, canvas, audio, iframe, embed, object) {
  display: block;
}
:where(img, picture, svg) {
  max-inline-size: 100%;
  block-size: auto;
}
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}
:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
}
:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}
:where(:focus-visible) {
  outline: 2px solid var(--focus-color, Highlight);
  outline-offset: 2px;
}
:where(
    .visually-hidden:not(:focus, :active, :focus-within, .not-visually-hidden)
  ) {
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}
/* //RESET CSS*/

:root {
  --mainwidth: 1280px;
  --subwidth: 1040px;
  --mainfont: 'Noto Sans JP', sans-serif;
  --maincolor: #2c2825;
}
/* Utility Property */
.flex,
.flex2,
.flex3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.flex2 > * {
  flex: 0 0 calc(50%);
  max-width: 50%;
}

.flex3 > * {
  flex: 0 0 calc(33.33% - 15px);
  max-width: calc(33.33% - 15px);
}

.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px 88px;
}

.grid3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 72px 52px;
}

.grid4 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px 20px;
}

.alignstart {
  align-items: flex-start;
}

.aligncenter {
  align-items: center;
}

.justifycenter {
  justify-content: center;
}

.justifystart {
  justify-content: flex-start;
}

.spacebetween {
  justify-content: space-between;
}

.mainwidth {
  max-width: var(--mainwidth);
  width: 100%;
  margin: 0 auto;
}

.subwidth {
  max-width: var(--subwidth);
  width: 100%;
  margin: 0 auto;
}

.singlewidth {
  max-width: 840px;
  width: 100%;
  margin: 0 auto;
}

.pconly {
  display: block;
}
.sponly,
.nav-next.sponly {
  display: none;
}

body {
  color: var(--maincolor);
  font-family: var(--mainfont);
  box-sizing: border-box;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  background: white;
  position: relative;
  width: 100%;
  height: 100%; /* 背景の高さを設定 */
}

body::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  content: '';
  height: 100%;
  width: 100%;
  max-width: 1040px;
  opacity: 5%;
  background-image: linear-gradient(
    -90deg,
    transparent calc(100% - 1px),
    rgba(44, 40, 37, 1) 0
  );
  background-size: 24.99% !important;
}
body::after {
  content: '';
  opacity: 60%;
  transition: 1.5s ease;
}
body.sidemenuopen::after {
  content: '';
  width: 100vw;
  height: 100%;
  background: #2c2825;
  position: fixed;
  z-index: 3;
  top: 0;
  right: 0;
  transition: 1.5s ease;
}

body.fixed main,
body.fixed #navigation-logo {
  filter: blur(22px);
  transition: 1.5s ease;
}

a {
  color: var(--maincolor);
  text-decoration: none;
  transition: 0.3s ease;
}
a:hover {
  transition: 0.3s ease;
  opacity: 0.5;
}
/*
main{
flex: 0 0 71%;
max-width: 71%;
}

aside{
flex: 0 0 calc(29% - 50px);
max-width: calc(29% - 50px);
margin-left: 50px;
}
*/

header {
  margin: 0;
  padding: 20px 40px;
  position: sticky;
  top: 0;
  z-index: 20;
  transition: 0.3s ease;
  background: white;
}
header.bgwhite {
  background: white;
  transition: 0.3s ease;
}
header #site-navigation {
  width: 100%;
}
header #site-navigation #navigation-logo img {
  max-width: 168px;
}
header #site-navigation #main-menu {
  margin-right: 50px;
}
header #site-navigation #main-menu li {
  position: relative;
}
header #site-navigation #main-menu li:nth-child(3) a,
#sidemenu li:nth-child(4) a,
#sidemenu li:nth-child(5) a {
  pointer-events: none;
}
header #site-navigation #main-menu li a {
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0.08em;
  margin-right: 24px;
}
header #site-navigation #main-menu li:last-child a {
  background: #6a929c;
  color: white;
  padding: 5px 8px 7px;
  border-radius: 2px;
  margin-right: 0;
  transition: 0.3s ease;
}
header #site-navigation #main-menu li:last-child a:hover {
  background: #487c89;
  opacity: 1;
  transition: 0.3s ease;
}
header #site-navigation .hamburger-menu {
  width: 40px;
  height: 32px;
  position: relative;
  top: 10px;
  left: 10px;
  transition: 0.3s ease;
  z-index: 9;
  cursor: pointer;
}
header #site-navigation .hamburger-menu:hover {
  transition: 0.3s ease;
  opacity: 0.5;
}
header #site-navigation .hamburger-menu .hamburger-menu-element {
  display: inline-block;
  position: absolute;
  opacity: 1;
  transition: 0.5s ease;
  z-index: 3;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  cursor: pointer;
  background: #6a929c;
}
header
  #site-navigation
  .hamburger-menu
  .hamburger-menu-element.hamburger-menu-element--1 {
  top: 0px;
}
header
  #site-navigation
  .hamburger-menu
  .hamburger-menu-element.hamburger-menu-element--3 {
  top: 8px;
}

header #site-navigation .hamburger-menu::after {
  content: 'MENU';
  font-family: 'Barlow', sans-serif;
  display: block;
  font-size: 13px;
  font-weight: 500;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: #6a929c;
}

header #site-navigation .hamburger-menu.active::after {
  content: 'CLOSE';
}

.ctablack {
  display: table;
  margin: 0 auto;
  background: rgb(44, 40, 37);
  color: white;
  font-size: 18px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 22px 137px;
  border: 1px solid;
}

.menuright.spmenu {
  display: none;
}

.menuright {
  margin-left: auto;
}

/***
* Thank you ページ
********************************/
.thankyou_top {
  margin: 80px auto 74px;
  text-align: center;
}
.thankyou_top .thankyou_title {
  font-family: Swear Display;
  font-size: 72px;
  line-height: 96px;
  letter-spacing: 0.05em;
}
.thankyou_top .thankyou_desc {
  margin-top: 24px;
  line-height: 35px;
  letter-spacing: 0.08em;
}

.thankyou_youtube .thankyouyoutube_title {
  color: rgb(60, 106, 90);
  text-align: center;
  font-family: 'Noto Serif JP', serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 29px;
  letter-spacing: 0em;
  position: relative;
  margin-bottom: 48px;
}
.thankyou_youtube .thankyouyoutube_title::after {
  content: '';
  display: table;
  border-top: 1px solid rgba(60, 106, 90, 0.3);
  width: 80px;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}
.thankyou_youtube iframe {
  margin: 0 auto 80px;
}
.thankyou_youtube .ctablack {
  display: table;
  margin: 0 auto;
}

.breadcrumbs{
  margin: 128px auto 0;
  padding: 0 10px;
  width: 100%;
  max-width: 1080px;

  font-size: 13px;
}

.breadcrumbs a:hover{
  text-decoration: underline;
}

.footer_cta {
  background: #6a929c;
  color: white;
  font-family: 'Noto Serif JP', serif;
  padding: 60px 0;
  margin-top: 26px;
  position: relative;
}
.footer_cta::before {
  content: '';
  background: url(img/footer_bg.svg) no-repeat;
  position: absolute;
  display: inline-block;
  bottom: 0;
  right: 0;
  font-family: Swear Display;
  font-size: 250px;
  font-weight: 300;
  letter-spacing: 0.02em;
  opacity: 0.3;
  max-width: 885px;
  width: 100%;
  height: 155px;
  background-position: bottom;
  background-size: contain;
}
.footer_cta .footer_ctawrap {
  max-width: 960px;
  margin: 0 auto;
}
.footer_cta .footer_ctawrap .footer_cta_label {
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  margin-bottom: 40px;
  position: relative;
}
.footer_cta .footer_ctawrap .footer_cta_label::before {
  content: '';
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  width: 46px;
  display: inline-block;
  position: relative;
  top: -5px;
  margin-right: 10px;
}
.footer_cta .footer_ctawrap .footer_cta_title {
  font-size: 38px;
  font-weight: 400;
  line-height: 72px;
  letter-spacing: 0.08em;
}
.footer_cta .footer_ctawrap .footer_cta_desc {
  margin-top: 10px;
  font-size: 22px;
  font-weight: 400;
  line-height: 42px;
  letter-spacing: 0.04em;
}
.footer_cta .footer_ctawrap .footer_cta_btn {
  background: #faf8f5;
  border: 1px solid rgb(236, 233, 229);
  font-size: 21px;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: 0.04em;
  display: block;
  padding: 25px 120px 30px 156px;
  margin-bottom: 22px;
  border-radius: 4px;
  background-repeat: no-repeat;
  background-position: 10% center;
}
.footer_cta .footer_ctawrap .footer_cta_btn:first-child,
.footer_cta .footer_ctawrap .footer_cta_btn.-mail {
  background-image: url(img/footer_cta_mail.svg);
  font-family: 'Noto Sans JP', sans-serif;
}
.footer_cta .footer_ctawrap .footer_cta_btn:nth-child(2),
.footer_cta .footer_ctawrap .footer_cta_btn.-phone {
    background-image: url(img/footer_cta_phone.svg);
    font-family: 'Noto Sans JP', sans-serif;
}
.footer_cta .footer_ctawrap .footer_cta_btn:last-child {
  margin-bottom: 0;
  background-image: url(img/footer_cta_model.svg);
  font-family: 'Noto Sans JP', sans-serif;
  padding-bottom: 30px;
}
.footer_cta .footer_ctawrap .footer_cta_right {
  position: relative;
  z-index: 2;
}
.footer_cta_btn .cstxt {
  text-align: center;
  font-size: 16px;
  color: grey;
}
footer {
  position: relative;
}
footer .footer_wrap {
  max-width: 1060px;
  margin: 69px auto 40px;
}
footer .footer_wrap .footer_logo {
  max-width: 240px;
}
footer .footer_wrap .footer_link {
  flex: 1;
  margin-left: 60px;
  justify-content: flex-start;
  align-items: space-between;
}

footer .footer_wrap .footer_link .footer_link_item.ponter_none a{
    pointer-events: none;
}




/* 関連会社 */
footer .footer_wrap .footer_link .footer_companies{
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border-top: solid 1px #A3A3A3;
  padding-top: 15px;
  margin-left: -15px;
}


footer .footer_wrap .footer_link .footer_companies a{
  display: block;
}



footer .footer_wrap .footer_link .footer_companies a img{
    display: block;
    width: 107px;
}

footer .footer_wrap .footer_link .footer_link_item_link {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  position: relative;
  margin-right: 20px;
  margin-bottom: 36px;
  display: inline-block;
}


footer .footer_wrap .footer_link .footer_link_item_link::before {
  content: '';
  width: 3px;
  height: 3px;
  background: rgb(163, 148, 135);
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  left: -14px;
  top: 55%;
  transform: translateY(-50%);
}

footer .footer_wrap .footer_link .footer_link_item_link.nodot::before {
  content: '';
  display: none;
}


footer .footer_bottom {
  margin: 0px auto 40px;
  max-width: 1060px;
}
footer .footer_bottom small {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.07em;
  margin-right: 24px;
}
footer .footer_bottom .flex > a {
  color: #6a929c;
  font-size: 12px;
  line-height: 1;
  padding-bottom: 0;
  background-image: linear-gradient(to right, #6a929c 4px, transparent 4px);
  background-size: 6px 1px;
  background-repeat: repeat-x;
  background-position: left 15px;
}
footer .footer_sns_item .footer_sns_item_link {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.07em;
  text-align: left;
  margin-right: 24px;
  display: flex;
  align-items: center;
}
footer .footer_sns_item .footer_sns_item_link img {
  margin-right: 7px;
}
footer .footer_sns_item:last-child .footer_sns_item_link {
  margin-right: 0;
}

.totop {
  position: fixed;
  display: flex;
  flex-direction: column;
  bottom: 170px;
  right: 20px;
  opacity: 0;
  transition: 0.3s;
  z-index: 3;
}
.totop img:last-child {
  width: 13px;
  margin: 13px auto;
}
.totop.showin {
  transition: 0.3s;
}

.totop.showin.scrollStopped {
  opacity: 1;
  transition: 0.3s;
}
.totop.showin.scrollStopped:hover,
.totop.scrollStopped:hover,
.totop.scrollStopped:active {
  opacity: 0;
}

/**
* サイドバー
**********************/
aside {
  width: 180px;
}
.aside_title {
  font-family: Barlow;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.07em;
  margin-bottom: 32px;
}
.aside_list_item {
  border-top: 1px dotted rgba(219, 217, 214, 1);
  padding: 12px 0 14px 30px;
  background: url(img/aside_arrow.svg) no-repeat;
  background-position: center left;
}
.aside_list_item:hover {
  background: url(img/arrow_head_b.svg) no-repeat;
  background-position: center left;
  font-weight: bold;
  transition: 0.3s ease;
}
.aside_list_item:last-child {
  border-bottom: 1px dotted rgba(219, 217, 214, 1);
}
.aside_list_item.active {
  font-size: 15px;
  font-weight: 700;
  line-height: 21px;
  letter-spacing: 0.04em;
  color: var(--maincolor);
  background: url(img/arrow_head_b.svg) no-repeat;
  background-position: 5% center;
}
.aside_list_item a {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.04em;
  color: var(--maincolor);
}
.aside_list_item a:hover {
  color: rgba(44, 40, 37, 1);
  opacity: 1;
  transition: 0.3s ease;
}
.aside_list_item a.active,
.aside_list_item.active a {
  color: var(--maincolor);
  opacity: 1;
}

/**
* アーカイブページ
**********************/
.column_header::before {
  content: '';
  position: absolute;
  width: 100vw;
  height: 100%;
  background-image: url(img/column_bg.jpg);
  right: 0;
  top: 0;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}

.archive_wrap {
  max-width: 1040px;
  margin: 100px auto 128px;
}
.postsarchive {
  max-width: 780px;
  width: 100%;
}
.postsarchive_header_title {
  color: white;
  font-family: 'Noto Serif JP', serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 46px;
  letter-spacing: 0.04em;
  max-width: 1040px;
  margin: 0 auto;
  width: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.postsarchive_header_title span {
  font-family: Swear Display;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.07em;
  display: block;
  margin-top: 11px;
}
.postsarchive_header {
  background-size: cover;
  background-repeat: no-repeat;
  padding: /*125px 125px 125px 0*/ 143px 125px 145px 0;
  position: relative;
  max-width: 85%;
  margin: 0px auto;
  height: 380px;
}
.postsarchive_image {
  margin-bottom: 8px;
}
.postsarchive_date {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.07em;
  color: black;
}
.postsarchive_term {
  margin: 8px 0 12px;
  color: rgba(135, 129, 124, 1);
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.07em;
  display: inline-block;
}
.postsarchive_title {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.04em;
  color: black;
}
.loadingbtn {
  background: white;
  padding: 12px 120px 15px;
  border: 1px solid rgba(219, 217, 214, 1);
  margin: 60px auto 0;
  font-family: Barlow;
  font-size: 18px;
  font-weight: 400;
  line-height: 29px;
  letter-spacing: 0.08em;
  display: table;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: 0.5s;
}
.loadingbtn:hover {
  opacity: 1;
  color: white;
  z-index: 2;
  transition: 0.5s;
}
.loadingbtn:before {
  content: '';
  transition: 0.5s;
  background: #6a929c;
  transform: translatex(-100%);
}
.loadingbtn:hover:before {
  transition: 0.5s;
  position: absolute;
  transform: translatex(0);
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.loadingbtn img {
  margin-right: 15px;
  top: 5px;
  position: relative;
}
.loading_num {
  font-family: Barlow;
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0.1em;
  display: table;
  margin: 5px auto 40px;
}

/**
* シングルページ
**********************/
.singlemain {
  margin: 115px auto 124px;
  position: relative;
}
.postbg {
  background: url(img/single_bg_work.jpg);
  position: absolute;
  width: 100%;
  height: 88%;
  z-index: -1;
  top: 16%;
}
.postwrap {
  max-width: 1040px;
  margin: 0 auto;
}
.postmeta {
  margin-bottom: 20px;
}
.postmeta_time {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.07em;
  margin-right: 34px;
}
.postmeta_cat a {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.07em;
  color: rgba(135, 129, 124, 1);
}
.posttitle {
  font-family: 'Noto Serif JP', serif;
  font-size: 36px;
  line-height: 58px;
  letter-spacing: 0.04em;
  margin-bottom: 80px;
  font-weight: 400;
}
.postthumbnail {
  margin-bottom: 80px;
}
.postcontent {
  max-width: 720px;
  margin: 0 auto 88px;
}
.postcontent h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 39px;
  letter-spacing: 0.08em;
  padding-bottom: 28px;
  margin: 72px 0 40px;
  color: rgba(62, 64, 70, 1);
  position: relative;
}
.postcontent h2::after {
  content: '';
  border-bottom: 2px solid rgba(142, 117, 91, 1);
  width: 80px;
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: 2px;
}
.postcontent h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: 0.08em;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(142, 117, 91, 1);
  margin: 40px 0 32px;
  color: rgba(62, 64, 70, 1);
}
.postcontent h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0.08em;
  color: rgba(62, 64, 70, 1);
  position: relative;
  padding-left: 24px;
  margin: 32px 0 24px;
}
.postcontent h4::before {
  content: '';
  display: inline-block;
  border-bottom: 2px solid rgba(142, 117, 91, 1);
  width: 12px;
  position: absolute;
  left: 0;
  top: 50%;
}
.postcontent h5 {
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: 0.08em;
  color: rgba(62, 64, 70, 1);
  margin: 24px 0 20px;
}
.postcontent h6 {
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 0.08em;
  color: rgba(62, 64, 70, 1);
  margin: 20px 0 17px;
}
.postcontent a {
  color: #8e755b;
  border-bottom: 1px dotted;
}

.postcontent a.outlink {
  position: relative;
}
.postcontent a.outlink::after {
  content: url(img/outlink.svg);
  display: inline-block;
  margin-left: 2px;
}

.postcontent p {
  line-height: 28.8px;
  margin-bottom: 16px;
}
.postcontent li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 18px;
}
.postcontent li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 25%;
  width: 6px;
  height: 6px;
  background: rgba(142, 117, 91, 1);
  border-radius: 50%;
}
.postcontent img {
  margin: 40px 0;
}
.postnavigation {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 100px;
  align-items: center;
}
.archivelink {
  padding: 24px;
  max-width: 380px;
  width: 100%;
  border: 1px solid rgba(219, 217, 214, 1);
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0.08em;
}
.archivelink img {
  margin-right: 18px;
}
.nav-next,
.nav-previous {
  font-size: 17px;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: 0.04em;
  color: rgba(44, 40, 37, 1);
  display: flex;
  flex-direction: column;
}
.staffrelated .nav-next,
.staffrelated .nav-previous {
  font-size: 15px;
}
.staffrelated .nav-next img {
  display: block;
}
.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-instagram {
  padding: 0;
}
.wp-block-social-links:not(.is-style-logos-only)
  .wp-social-link-instagram::before,
.wp-block-social-links:not(.is-style-logos-only)
  .wp-social-link-instagram
  a::after {
  content: none;
}
.nav-previous img {
  position: relative;
  bottom: -3px;
  left: -10px;
}
.nav-next img {
  position: relative;
  bottom: -3px;
  left: -5px;
}

/**
* スタッフページ
**********************/
.staff_header .postsarchive_header_title {
  color: rgba(44, 40, 37, 1);
}
.staff_header .postsarchive_header_title span {
  color: rgba(135, 129, 124, 1);
  font-size: 16px;
}
.staff_header.postsarchive_header {
  padding-bottom: 0;
  margin-bottom: 100px;
}
.stafflist {
  gap: 96px 88px;
}
.postsarchive_item .staff_position {
  margin: 20px 0 14px;
}
.staffsarchive_title {
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.stafflist .name_english {
  font-family: Barlow;
  font-size: 15px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.02em;
  margin-top: 6px;
}
.staff_bottom {
  align-items: flex-end;
}
.staff_bottom > svg {
  border: 1px solid rgba(219, 217, 214, 1);
  border-radius: 50%;
  padding: 15px 11px;
  margin-left: auto;
  display: flex;
  box-sizing: content-box;
}
.stafflist li a:hover svg {
  border-color: #6a929c;
}
.stafflist li a:hover svg path {
  fill: #6a929c;
}
.stafflist li a:hover svg path + path {
  stroke: #6a929c;
}
/**
* スタッフシングルページ
**********************/
.staff_header {
  max-width: 1040px;
  margin: 0 auto 124px;
}
.staff_header_left {
  flex: 1;
}
.staffimage {
  max-width: 320px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.staff_title {
  font-family: 'Noto Serif JP', serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 61px;
  letter-spacing: 0.04em;
  margin-bottom: 60px;
}
.staff_position {
  font-size: 16px;
  line-height: 23px;
  letter-spacing: 0.07em;
  color: rgba(135, 129, 124, 1);
  margin-bottom: 6px;
}
.staffname {
  font-size: 26px;
  line-height: 42px;
  letter-spacing: 0.08em;
}
.name_english {
  font-family: Barlow;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: 0.02em;
  color: rgba(44, 40, 37, 1);
}
.staffbg {
  background: rgba(252, 249, 245, 1);
  padding: 1px 0 88px;
}
.staffbg h2 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 39px;
  letter-spacing: 0.08em;
  margin-bottom: 40px;
  padding-bottom: 0;
  color: rgba(142, 117, 91, 1);
}
.staffbg h2::after {
  content: none;
}
.staffbg p {
  margin-bottom: 32px;
}
.staffbg .postcontent {
  padding: 72px 0 0;
}
.staffbg .postcontent > *:first-child {
  margin-top: 0;
}
.staffrelated .postnavigation {
  padding-top: 0;
  max-width: 1040px;
}
.staffrelated .linkarrow::before {
  width: 108%;
}
.relatedtitle {
  font-family: 'Noto Serif JP', serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 38px;
  letter-spacing: 0.04em;
}
.relatedtitle_en {
  display: block;
  font-family: 'Swear Display';
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.07em;
  color: rgba(135, 129, 124, 1);
  margin-top: 8px;
}
.staff_list {
  margin: 90px calc(50% - 50vw) 90px auto;
  padding-bottom: 20px;
  overflow-x: auto; /* 横スクロールの指定 */
  white-space: nowrap; /* 横スクロールの指定 */
  overflow-scrolling: touch; /* スクロールを滑らかにする */
  -webkit-overflow-scrolling: touch; /* スクロールを滑らかにする */
}
.staff_list::after {
  content: '';
  width: 9px;
  height: 9px;
  display: inline-block;
}
.staff_list_item {
  display: inline-block;
  margin-right: 36px;
}
.staff_list_item:hover {
  opacity: 1;
}
.staff_list::-webkit-scrollbar {
  width: 1px;
  height: 1px;
}

.staff_list::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.1);
}

.staff_list::-webkit-scrollbar-thumb {
  background-color: rgba(44, 40, 37, 1);
}
/**
* お客様の声シングルページ
**********************/
.voice_single .postwrap {
}
.voice_header .postthumbnail {
  margin: 0 calc(50% - 50vw);
  width: 50vw;
  max-width: 50vw;
}
.voicemeta {
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: 0.02em;
  color: rgba(135, 129, 124, 1);
  margin-bottom: 54px;
  margin-top: 10px;
}
.voicemeta .postmeta_time {
  font-family: Barlow;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  letter-spacing: 0.02em;
  margin-left: 30px;
  margin-right: 0;
  position: relative;
}
.voicemeta .postmeta_time::before {
  content: '';
  position: absolute;
  display: inline-block;
  width: 16px;
  border: 1px solid rgba(135, 129, 124, 0.5);
  bottom: 2px;
  left: -24px;
}
.voice_title {
  margin-bottom: 26px;
}
.c_name {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.08em;
  margin-right: 16px;
  color: rgba(44, 40, 37, 1);
}
.c_name + span {
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: 0.07em;
  color: rgba(135, 129, 124, 1);
}
.voice_spec {
  max-width: 960px;
  margin: 80px 0;
  text-align: left;
  width: 100%;
}
.voice_spec tr {
  border-top: 1px dotted rgba(197, 197, 197, 1);
  display: block;
}
.voice_spec tr:last-child {
  border-bottom: 1px dotted rgba(197, 197, 197, 1);
}
.voice_spec th {
  width: 240px;
  padding: 13px 40px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.04em;
}
.voice_spec td {
  letter-spacing: 0.04em;
}
.voice_single .postcontent {
  max-width: 720px;
  width: 100%;
}
.voice_single .postcontent h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 39px;
  letter-spacing: 0.08em;
  color: rgba(142, 117, 91, 1);
  padding-bottom: 0;
}
.voice_single .postcontent h2::after {
  content: none;
}
.voice_single .postcontent em {
  color: #8f8f8f;
  font-style: normal;
  font-weight: 700;
}
.voice_single .postcontent strong {
  color: #8e755b;
  font-style: normal;
  font-weight: 700;
}
.voice_single .postcontent p {
  margin-bottom: 32px;
}
.voice_single .postcontent figure {
  width: calc(100% + 240px);
  margin: 56px -120px;
}
.voice_single .postbg {
  top: 10%;
  height: 92%;
  left: 0;
}
.voice_header.postsarchive_header {
  padding-bottom: 0;
  height: auto;
  margin-bottom: 86px;
}
.voice_header .postsarchive_header_title {
  color: rgba(44, 40, 37, 1);
  position: relative;
}
.archive_wrap.voice_wrap {
  margin-top: 86px;
}
.voicelist {
  flex: 1;
}
.voicelist .postsarchive_item {
  margin-bottom: 88px;
}
.voicelist .postsarchive_image {
  max-width: 350px;
  width: 100%;
  margin-right: 60px;
  margin-bottom: 0;
  overflow: hidden;
  display: flex;
}
.voicelist a.flex {
  align-items: flex-end;
  overflow: hidden;
}
.voicelist a.flex:hover {
  opacity: 1;
}
.voicelist a.flex img {
  transform: scale(1);
  transition: 1s ease;
  aspect-ratio: 360/260;
  object-fit: cover;
  object-position: center;
}
.voicelist a.flex:hover img {
  transform: scale(1.15);
  transition: 1s ease;
}
.voice_time {
  font-family: Barlow;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.02em;
  color: rgba(135, 129, 124, 1);
  margin-bottom: 32px;
}
.voicesarchive_title {
  font-size: 22px;
  font-weight: 400;
  line-height: 35px;
  letter-spacing: 0.04em;
  color: black;
  margin-bottom: 10px;
}
.voice_txt {
  flex: 1;
  border-bottom: 1px solid rgba(219, 217, 214, 1);
  padding-bottom: 18px;
}
.voice_txt > svg {
  border: 1px solid rgba(219, 217, 214, 1);
  border-radius: 50%;
  padding: 15px 11px;
  margin-left: auto;
  display: flex;
  box-sizing: content-box;
}
.voicelist a.flex:hover .voice_txt > svg {
  border-color: #6a929c;
}
.voicelist a.flex:hover .voice_txt > svg path {
  fill: #6a929c;
}
.voicelist a.flex:hover .voice_txt > svg path + path {
  stroke: #6a929c;
}
.voice_detail {
  margin-bottom: 10px;
}
.voicelist .loadingbtn {
  margin-top: 120px;
}
.voice_slider {
  width: 240px;
  counter-reset: number 0;
}
.voice_slider_line {
  border-left: 1px solid rgba(219, 217, 214, 1);
  display: block;
  height: -webkit-fill-available;
  position: relative;
  left: 50%;
  top: 8%;
  position: relative;
  counter-increment: number 1;
}
.voice_slider_line::before {
  content: counter(number) ' ';
  color: rgba(219, 217, 214, 1);
  font-family: Barlow;
  font-size: 32px;
  font-weight: 300;
  line-height: 38px;
  letter-spacing: 0.02em;
  text-align: left;
  position: absolute;
  left: -30%;
  top: -5%;
}
.voice_slider_line.is-active::before {
  color: #2c2825;
}
.voice_slider_line::after {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(219, 217, 214, 1);
  position: absolute;
  top: 0;
  display: inline-block;
  left: -4px;
}
.voice_slider_line.is-active::after {
  background: rgba(135, 129, 124, 1);
}
.voice_slider_line:last-child {
  height: 185px;
}
.scrol_circle {
  transition: 0.3s ease;
  border: 1px solid #2c2825;
  border-radius: 50%;
  padding: 12px;
  position: absolute;
  display: inline-block;
  transform: translate(-51%, -38%);
  opacity: 0;
  visibility: hidden;
}
.is-active .scrol_circle {
  border: 1px solid #2c2825;
  border-radius: 50%;
  padding: 12px;
  position: absolute;
  display: inline-block;
  transform: translate(-51%, -38%);
  transition: 0.3s ease;
  opacity: 0.4;
  visibility: visible;
  position: sticky;
  top: 40%;
}

.is-active.spoton .scrol_circle {
  transition: 0.3s ease;
  opacity: 1;
}

.staff_list_item {
  position: relative;
  aspect-ratio: auto 300 / 300;
  overflow: hidden;
}

.staff_list_item::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.3;
  background: linear-gradient(346deg, #20201f 82.16%, #20201f 82.16%);
  mix-blend-mode: multiply;
  z-index: 1;
}
.staff_list_item_box {
  position: absolute;
  bottom: 17px;
  left: 20px;
  color: white;
  z-index: 2;
}
.staff_list_item_box .staff-content {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.07rem;
  opacity: 0.8;
}
.staff_list_item_box h2 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.07rem;
}
.staff_name {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 25.6px */
  letter-spacing: 1.12px;
}

.staff_position_name {
  color: #fff;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 20.8px */
  letter-spacing: 0.91px;
}

/**
* イベントページ
**********************/
.event_header::before {
  content: '';
  position: absolute;
  width: 100vw;
  height: 100%;
  background-image: url(img/event_bg.jpg);
  right: 0;
  top: 0;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}
.eventlist .postsarchive_image {
  max-width: 340px;
  width: 100%;
  margin-right: 40px;
  margin-bottom: 0;
  position: relative;
}
.eventlist .postsarchive_image img {
  display: block;
}
.eventlist .eventend .postsarchive_image::before {
  content: '';
  width: 100%;
  height: 100%;
  background: black;
  display: inline-block;
  position: absolute;
  z-index: 1;
}
.eventlist .postsarchive_item {
  margin-bottom: 48px;
}

.eventlist .postsarchive_title {
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0.07em;
  margin-top: 26px;
  color: black;
}
.eventlist .event_txt {
  flex: 1;
}
.eventopen {
  color: #fff;
  width: 55px;
  border: 1px solid #333333;
  background-color: #333333;
  border-radius: 20px;
  padding: 1px 8px;
  margin-left: 16px;
}
.eventend .eventopen {
    border: 1px solid rgba(217, 217, 217, 1);
  color: rgba(186, 185, 185, 1);
  background-color: #fff;
}
.eventlist .eventend .postsarchive_image {
  position: relative;
}
.eventlist .eventend .postsarchive_image::before {
  /*content:'';*/
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: inline-block;
  position: absolute;
}
.eventlist .eventend .enddesc {
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.07em;
  color: rgba(44, 40, 37, 1);
  padding: 2px 6px;
  background: rgba(219, 217, 214, 1);
  margin-top: 24px;
}
.eventlist .eventend .enddesc + .postsarchive_title {
  margin-top: 10px;
}
/**
* イベントシングルページ
**********************/
.event_single_header {
  max-width: 1040px;
  margin: 0 auto;
}
.event_title {
  font-family: 'Noto Serif JP', serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 51px;
  letter-spacing: 0.04em;
  margin-top: 20px;
  margin-bottom: 100px;
}
.eventbg {
  background: rgba(252, 249, 245, 1);
  padding: 52px 0 1px;
}
img.event_main {
  margin-bottom: 0;
}
.eventform {
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 52px 80px 20px;
}
.eventform_title {
  color: rgba(44, 40, 37, 1);
  font-family: 'Noto Serif JP', serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 42px;
  letter-spacing: 0.04em;
  position: relative;
  margin-bottom: 60px;
}
.eventform_title::before {
  content: '';
  display: inline-block;
  border-bottom: 2px solid rgba(221, 201, 180, 1);
  bottom: -30px;
  width: 84px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.eventform_desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 29px;
  letter-spacing: 0.07em;
  color: black;
  text-align: center;
}
.eventform .required {
  color: rgba(238, 24, 24, 1);
}

form.wpcf7-form {
  margin: 40px 0;
  text-align: left;
  width: 100%;
}
form.wpcf7-form .voice_spec {
  margin-bottom: 40px;
}
form.wpcf7-form tr {
  border-top: 1px dotted rgba(215, 215, 215, 1);
  display: flex;
  align-items: center;
}
form.wpcf7-form tr:last-child {
  border-bottom: 1px dotted rgba(215, 215, 215, 1);
}
main.contact form.wpcf7-form tr:last-child {
  align-items: flex-start;
}
form.wpcf7-form th {
  width: 275px;
  padding: 30px 20px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.04em;
}
form.wpcf7-form td {
  letter-spacing: 0.04em;
  flex: 1;
  padding-right: 40px;
}
form.wpcf7-form td input,
form.wpcf7-form td textarea {
  background: white;
  border: 1px solid rgba(242, 241, 239, 1);
  width: 100%;
  display: inline-block;
  padding: 7px 12px;
}
form.wpcf7-form td textarea {
  margin: 20px 0;
}
form.wpcf7-form td select {
  background: rgba(250, 249, 247, 1);
  border: 1px solid rgba(242, 241, 239, 1);
  width: 60%;
  display: inline-block;
  padding: 7px 12px;
}
.form_point p {
  font-size: 13px;
  line-height: 22px;
  letter-spacing: 0.04em;
  color: black;
}
.form_point p a {
  color: #6a929c;
  border-bottom: 1px dotted;
}
input.wpcf7-submit {
  display: table;
  margin: 40px auto;
  font-size: 18px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0.08em;
  padding: 20px 158px 21px;
  background: rgba(44, 40, 37, 1);
  color: white;
}
.flex.event_cal {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 15px;
}
.flex.event_cal:first-of-type {
  margin-top: 20px;
}
.flex.event_cal:last-child {
  margin-bottom: 20px;
}
.event_cal_index {
  width: 52px;
  margin-right: 16px;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0.04em;
}
.event_cal .datepicker {
  min-width: 200px;
  width: auto;
  margin-right: 12px;
}
.flex.event_cal select {
  min-width: 200px;
  width: auto;
}
.eventrelated .postnavigation {
  padding-top: 0;
  max-width: 1040px;
}
.eventrelated.eventnum1 .postnavigation {
  justify-content: center;
}
.eventrelated.eventnum1 .event_list_item {
  margin: 0 auto;
  display: block;
}
.event_list_item {
  display: inline-block;
  max-width: 288px;
  width: 100%;
  margin-right: 88px;
}
.event_list_item .event_txt {
  white-space: initial;
  margin: 24px 0 80px;
}
.event_list_item .event_txt .eventopen {
  color: rgba(44, 40, 37, 1);
  font-size: 13px;
}

.eventrelated .event_list_item .event_txt .eventopen {
  color: #fff;
}

.event_list_item .event_txt .postsarchive_title {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.07em;
  margin-top: 12px;
}
.eventrelated + .postnavigation {
  padding-top: 0;
}
.eventrelated .staff_list {
  margin: 90px auto;
}
main.event_single {
  margin-bottom: 0;
}
.event_cta {
  max-width: 1040px;
  width: calc(100% - 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 48px auto 0;
  background: url(img/event_cta_bg.jpg);
  position: relative;
  background-size: cover;
  padding: 66px 0 77px;
  overflow: hidden;
  display: none;
}
.event_cta::before {
  content: '';
  background: rgba(255, 255, 255, 0.82);
  width: 66%;
  height: 105%;
  display: inline-block;
  position: absolute;
  left: 50%;
  transform: translatex(-50%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.event_cta > * {
  position: relative;
  z-index: 1;
}
.event_cta_title {
  color: rgba(142, 117, 91, 1);
  font-family: 'Noto Serif JP', serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 45px;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.event_cta_desc {
  color: rgba(62, 64, 70, 1);
  font-size: 15px;
  font-weight: 400;
  line-height: 27px;
  margin-bottom: 28px;
}
.event_cta .footer_cta_btn {
  background-image: url(img/event_cta_btn.svg);
  background-color: #6a929c;
  border: 1px solid #6a929c;
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: 0.1em;
  display: block;
  padding: 25px 120px 28px 156px;
  border-radius: 4px;
  background-repeat: no-repeat;
  background-position: 10% center;
  color: white;
}
.event_cta_bottom img {
  display: block;
  text-align: center;
  margin: 0px auto 8px;
}
/**
* トップページ
**********************/
#top_mv {
  position: relative;
  margin-top: 68px;
}
.top_mv_tagline_left {
  position: absolute;
  left: 0;
  max-width: 250px;
  top: 0%;
}
.top_mv_tagline_right {
  position: absolute;
  right: 10%;
  max-width: 172px;
  top: 24%;
}
.top_mv_tagline h1 {
  color: rgba(44, 40, 37, 1);
  font-family: A-OTF A1 Mincho Std;
  font-size: 52px;
  font-weight: 400;
  line-height: 52px;
  text-align: center;
  padding: 130px 0 70px;
  position: relative;
  z-index: 1;
}
.news_1 {
  max-width: 1080px;
  margin: 40px auto 44px;
  position: relative;
  left: -5%;
  transition: 0.3s ease;
}
.news_1:hover {
  transition: 0.3s ease;
  opacity: 0.5;
}
.news_1_label {
  color: #6a929c;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  position: relative;
  margin-right: 7px;
}
.news_1_label::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6a929c;
  display: inline-block;
  margin-right: 8px;
}
.news_1_link {
  color: rgba(44, 40, 37, 1);
  font-size: 13px;
  font-weight: 500;
  line-height: 19px;
  padding: 7px 10px;
  border: 1px solid rgba(240, 240, 240, 1);
  border-radius: 4px;
  background: rgba(247, 247, 247, 1);
}
#top_happiness {
  overflow-x: hidden;
}
.top_happiness_wrap {
  background: rgba(252, 249, 245, 1);
  padding: 127px 0 114px;
  position: relative;
}
.top_happiness_center {
  position: absolute;
  max-width: 570px;
  width: 100%;
  top: -165px;
  left: 50%;
  transform: translateX(-25%);
}
.top_happiness_link {
  background-repeat: no-repeat;
  background-image: url(img/footer_cta_phone.svg);
  background-position: 15px;
  background-color: white;
  padding: 14px 45px 17px 78px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
  position: fixed;
  border-radius: 4px 0 0 4px;
  right: 0;
  bottom: 30px;
  font-family: Barlow;
  font-size: 21px;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: 0.04em;
  z-index: 3;
  transition: 0.3s ease;
}
.top_happiness_link:hover {
  background-image: url(img/footer_cta_phone_on.svg);
  transition: 0.3s ease;
  opacity: 1;
}
.top_happiness_link.hidebtn {
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}
.top_happiness_link div {
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 19px;
  color: rgba(135, 129, 124, 1);
}
.top_happiness_title {
  color: rgba(44, 40, 37, 1);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 72px;
  letter-spacing: 0.12em;
  position: relative;
  left: 3%;
  display: flex;
  justify-content: center;
}
.top_happiness_desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: 0.08em;
  position: relative;
  left: 5%;
  display: flex;
  justify-content: center;
  margin-top: 55px;
}
.top_happiness_bg {
  font-size: 145px;
  font-weight: 500;
  line-height: 319px;
  letter-spacing: 0em;
  color: rgba(186, 176, 161, 0.1);
  position: absolute;
  bottom: 100px;
  width: max-content;
  z-index: 0;
  right: 50%;
}
.is-inview .top_happiness_bg {
  transform: translateX(calc(-100vw + 50%)); /* 左に100vw+50%移動 */
}
.top_reno_2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.top_reno_2_item {
  position: relative;
  line-height: 1;
}
.top_reno_2_item img {
  max-width: 512px;
}
.top_reno_2_item a {
  overflow: hidden;
  display: inline-block;
  line-height: 1;
  max-height: 440px;
}
.top_reno_2_item a img {
  opacity: 1;
  transition: 1s ease;
  line-height: 1;
}
.top_reno_2_item a:hover {
  opacity: 1;
  line-height: 1;
}
.top_reno_2_item a:hover img {
  transform: scale(1.15);
  transition: 1s ease;
}

#top_reno {
  margin: 130px auto 180px;
}
.top_reno_title_wrap {
  max-width: 1080px;
  margin: 0 auto 68px;
}
.top_reno_title {
  color: rgba(44, 40, 37, 1);
  font-family: 'Noto Serif JP', serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 38px;
  letter-spacing: 0.04em;
  display: inline-block;
}
.top_reno_title span {
  font-family: Swear Display;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0.07em;
  color: rgba(135, 129, 124, 1);
  display: table;
  margin-left: auto;
  position: relative;
  right: -8%;
  margin-top: 13px;
}
.reno_bottom {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translatex(-50%);
  color: white;
  width: calc(100% - 64px);
  align-items: center;
}
.top_reno_2_item_title {
  font-size: 24px;
  font-weight: 500;
  line-height: 38px;
}
.reno_bottom img {
  padding: 22.5px 17px;
  border: 1px solid;
  border-radius: 50%;
}
.reno_bottom > svg {
  border: 1px solid rgba(219, 217, 214, 0.8);
  border-radius: 50%;
  padding: 22.5px 17px;
  margin-left: auto;
  display: flex;
  box-sizing: content-box;
  transition: 1s ease;
}
a:hover .reno_bottom svg {
  border-color: white;
  background: white;
  transition: 1s ease;
}
a:hover .reno_bottom svg path {
  fill: #6a929c;
  transition: 1s ease;
}
a:hover .reno_bottom svg path + path {
  stroke: #6a929c;
  transition: 1s ease;
}
#top_work {
  position: relative;
  background: linear-gradient(rgba(252, 249, 245, 1), rgba(252, 249, 245, 1));
  background-position: 0 280px;
  background-size: 100%;
  background-repeat: no-repeat;
  padding-bottom: 105px;
}
.top_work_title {
  color: rgba(44, 40, 37, 1);
  font-family: 'Noto Serif JP', serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 38px;
  letter-spacing: 0.04em;
  display: inline-block;
}
.top_work_title span {
  font-family: Swear Display;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0.07em;
  color: rgba(135, 129, 124, 1);
  display: table;
  margin-left: auto;
  position: relative;
  right: -8%;
  margin-top: 13px;
}
.top_work_movie {
  max-width: 924px;
  position: relative;
}
.top_work_img {
  width: 100%;
}
.top_work_movie_link {
  position: absolute;
  top: 50%;
  transform: translate(50%, -50%);
  right: 0;
  color: white;
  background: rgba(163, 148, 135, 1);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0.04em;
}
.top_work_movie_link::after {
  content: '';
  display: block;
  border-left: 8px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: calc(tan(60deg) * 10.5px) solid #ffffff;
  transform: rotate(90deg);
  margin-top: 5px;
}
.top_work_title_wrap {
  position: absolute;
  top: 49px;
  max-width: 1020px;
  width: 100%;
  left: 50%;
  text-align: right;
  transform: translateX(-50%);
}
.top_work_wrap {
  max-width: 1040px;
  margin: 0 auto;
}
.top_work_desc {
  margin: 84px 0 70px;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.04em;
}
.top_work_list {
  gap: 40px 56px;
  margin-bottom: 96px;
}
.top_work_list_item_txt {
  align-items: flex-end;
  margin-top: 16px;
}
.top_work_list_item_title {
  font-size: 18px;
  font-weight: 400;
  line-height: 29px;
  letter-spacing: 0.04em;
  color: black;
  flex: 1;
}
.top_work_list_item_txt > svg {
  border: 1px solid rgba(219, 217, 214, 0.8);
  border-radius: 50%;
  padding: 11px 7px;
  width: 13px;
  margin-left: auto;
  display: flex;
  box-sizing: content-box;
}
.top_work_list_item_link .top_work_list_item_img_wrap {
  overflow: hidden;
  display: flex;
}
.top_work_list_item_link:hover {
  opacity: 1;
}
.top_work_list_item_link .top_work_list_item_img_wrap > img.wp-post-image {
  transition: 1s ease;
  aspect-ratio: 310/233;
  object-fit: cover;
  object-position: center;
}
.top_work_list_item_link:hover
  .top_work_list_item_img_wrap
  > img.wp-post-image {
  transform: scale(1.15);
  transition: 1s ease;
}
a:hover .top_work_list_item_txt svg {
  border-color: #6a929c;
}
a:hover .top_work_list_item_txt svg path {
  fill: #6a929c;
}
a:hover .top_work_list_item_txt svg path + path {
  stroke: #6a929c;
}

.top_work_list_item_img_wrap {
  position: relative;
}
.top_work_list_item_img_wrap .postsarchive_term {
  position: absolute;
  bottom: 0px;
  margin-bottom: 5px;
  z-index: 10;
  left: 12px;
  color: white;
  font-size: 13px;
}
.top_work_list_item_img_wrap .postsarchive_term::before {
  content: '';
  background: white;
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
  width: 5px;
  height: 5px;
  position: relative;
  top: -2.5px;
  left: -2.5px;
}
.top_work_list_item_img_wrap .video_icon {
  bottom: 0px;
  right: 0;
  position: absolute;
  width: 63px;
}

.top_work_list_item_cat {
  font-size: 13px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0.04em;
  position: absolute;
  color: white;
  bottom: 10px;
  left: 16px;
}
.top_work_list_item_cat::before {
  content: '';
  width: 4px;
  height: 4px;
  background: white;
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
  position: relative;
  top: -3px;
}
.top_work_list_item:nth-child(2),
.top_work_list_item:nth-child(5) {
  margin-top: 40px;
}
.top_work_list_item:nth-child(3),
.top_work_list_item:nth-child(6) {
  margin-top: 80px;
}
.top_work_link {
  font-size: 17px;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: 0.04em;
  color: black;
  display: table;
  margin-left: auto;
  right: 15px;
  pointer-events: none;
}
.top_work_link:hover {
  opacity: 1;
}
.linkarrow {
  position: relative;
  color: #2c2825;
  padding-bottom: 20px;
  padding-right: 14px;
  overflow: hidden;
}
.linkarrow::before {
  content: '';
  border-bottom: 1px solid #2c2825;
  width: 100%;
  display: inline-block;
  position: absolute;
  bottom: 10px;
}
.linkarrow::after {
  content: '';
  display: inline-block;
  background: url(img/arrow_head_b.svg);
  width: 9px;
  height: 9px;
  bottom: 6px;
  position: absolute;
  right: 0;
}
a.top_work_link.linkarrow:hover::before {
  border-bottom: 1px solid #6a929c;
  animation: arrowmove 1s ease-in-out infinite;
}
a.top_work_link.linkarrow:hover::after {
  background: url(img/top_work_arrow.svg);
  right: -1px;
}
@keyframes arrowmove {
       0% {
    transform: translatex(-100%);
  }
  100% {
    transform: translatex(100%);
  }
}
#top_voice {
  position: relative;
}
.top_voice_title {
  color: rgba(44, 40, 37, 1);
  font-family: 'Noto Serif JP', serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 38px;
  letter-spacing: 0.04em;
  display: inline-block;
}
.top_voice_title span {
  font-family: Swear Display;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0.07em;
  color: rgba(135, 129, 124, 1);
  display: table;
  margin-left: auto;
  position: relative;
  right: -8%;
  margin-top: 13px;
}
.top_voice_img_left {
  max-width: 380px;
  top: -40px;
  position: relative;
  left: 0;
  margin-bottom: 300px;
}
.top_voice_img_right {
  max-width: 276px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.top_voice_title_wrap {
  position: absolute;
  left: 50%;
  max-width: 370px;
  transform: translateX(-40%);
  top: 120px;
}
.top_voice_desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0.04em;
  margin: 57px 0 48px;
}
.top_voice_link {
  font-size: 17px;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: 0.04em;
  overflow: hidden;
  display: inline-block;
  pointer-events: none;
}
.top_voice_link::before {
  width: 110%;
}
#top_model {
  position: relative;
  background: linear-gradient(rgba(252, 249, 245, 1), rgba(252, 249, 245, 1));
  background-position: 0 142px;
  background-size: 100%;
  background-repeat: no-repeat;
  padding-bottom: 105px;
  padding-bottom:/*366px*/ 120px;
}
.top_model_img {
  max-width: 512px;
  aspect-ratio: 512 / 690;
  object-fit: cover;
}
.top_model_title {
  color: rgba(44, 40, 37, 1);
  font-family: 'Noto Serif JP', serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 38px;
  letter-spacing: 0.04em;
  display: inline-block;
}
.top_model_title span {
  font-family: Swear Display;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0.07em;
  color: rgba(135, 129, 124, 1);
  display: table;
  margin-left: auto;
  position: relative;
  right: -8%;
  margin-top: 13px;
}
.top_model_title_wrap {
  position: absolute;
  top: 12px;
  left: 50%;
}
.top_model_wrap {
  position: absolute;
  top: 210px;
  left: 50%;
}
.top_model_subtitle {
  font-size: 42px;
  font-weight: 500;
  line-height: 43px;
  letter-spacing: 0.07em;
  margin-bottom: 30px;
}
.top_model_desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0.04em;
  max-width: 480px;
  margin-bottom: 37px;
}
.top_model_link {
  font-size: 17px;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: 0.04em;
}
.top_model_link::after {
}
.top_model_link_2 {
  font-size: 17px;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 20px 120px;
  border: 1px solid rgba(195, 180, 163, 1);
  margin-top: 63px;
  display: table;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: 0.5s;
}
.top_model_link_2:hover {
  opacity: 1;
  color: white;
  z-index: 2;
  transition: 0.5s;
}
.top_model_link_2:before {
  content: '';
  transition: 0.5s;
  background: #6a929c;
  transform: translatex(-100%);
}
.top_model_link_2:hover:before {
  transition: 0.5s;
  position: absolute;
  transform: translatex(0);
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.top_model_img_matterport {
  position: absolute;
  max-width: 800px;
  left: 50%;
  transform: translatex(-50%);
  bottom: -120px;
  display: none;
}
#top_column {
}
.top_column_title_wrap {
  max-width: 1040px;
  margin: /*265px*/ 120px auto 0px;
  padding-bottom: 120px;
  border-bottom: 1px solid rgba(219, 217, 214, 1);
}
.top_column_title {
  color: rgba(44, 40, 37, 1);
  font-family: 'Noto Serif JP', serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 38px;
  letter-spacing: 0.04em;
  display: table;
  margin: 0 auto 68px;
  text-align: center;
}
.top_column_title span {
  font-family: Swear Display;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0.07em;
  color: rgba(135, 129, 124, 1);
  display: table;
  position: relative;
  margin: 13px auto 0;
}
.top_column_title_wrap .postsarchive_image {
  margin-bottom: 20px;
}
.top_column_title_wrap .postsarchive_date {
  display: inline-block;
}
.top_column_title_wrap .postsarchive_cat {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.07em;
  margin-left: 20px;
  color: rgba(135, 129, 124, 1);
}
.top_column_title_wrap .postsarchive_title {
  margin-top: 14px;
  letter-spacing: 0.07em;
}
.top_column_title_wrap .columnlist {
  gap: 80px 100px;
}
.top_column_title_wrap .columnlist li a:hover {
  opacity: 1;
}
.top_column_title_wrap .postsarchive_image {
  overflow: hidden;
}
.top_column_title_wrap .columnlist li a .postsarchive_image img {
  transition: 1s ease;
  aspect-ratio: 28/28;
  object-fit: cover;
  object-position: center;
}
.top_column_title_wrap .columnlist li a:hover .postsarchive_image img {
  transform: scale(1.15);
  transition: 1s ease;
}
.top_column_title_wrap .columnlist li a:hover .postsarchive_title {
  text-decoration: underline;
}
.top_column_link {
  font-size: 17px;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: 0.04em;
  color: black;
  display: table;
  margin: 64px auto 0;
}


#top_event {
  padding: 0 0 0;
  margin: 0px auto;
  background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 33%, rgba(252,249,245,1) 33%);
}

#top_event .top_column_title_wrap{
  max-width: 1040px;
  padding: 0 0 103px;
  border: none;
}

.top_event_title {
  color: rgba(44, 40, 37, 1);
  font-family: 'Noto Serif JP', serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 38px;
  letter-spacing: 0.04em;
  display: block;
  text-align: center;
  margin-bottom: 58px;
}
.top_event_title span {
  font-family: Swear Display;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0.07em;
  color: rgba(135, 129, 124, 1);
  display: block;
  position: relative;
  margin-top: 3px;
}

.top_event_title_wrap {
  max-width: 1040px;
  margin: /*265px*/ 120px auto 0px;
  padding-bottom: 120px;
  border-bottom: 1px solid rgba(219, 217, 214, 1);
}

.top_event_title_wrap .eventopen{
  display: inline-block;
  /* width: 55px; */
  width: auto;
  margin-left: 0;
  font-size: 12px;
  padding: 0 8px;
  text-align: center;
  margin-right: 12px;
}

.top_event_title_wrap .postsarchive_item {
  margin-bottom: 0;
}
.top_event_title_wrap .postsarchive_image {
  margin-bottom: 20px;
}
.top_event_title_wrap .postsarchive_date {
  display: inline-block;
}
.top_event_title_wrap .postsarchive_cat {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.07em;
  margin-left: 20px;
  color: rgba(135, 129, 124, 1);
}
.top_event_title_wrap .postsarchive_title {
  margin-top: 14px;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
}
.top_event_title_wrap .postsarchive_date {
  font-size: 13px;
  line-height: auto;
}
.top_event_title_wrap .eventlist {
  gap: 80px 100px;
}
.top_event_title_wrap .eventlist li a:hover {
  opacity: 1;
}
.top_event_title_wrap .postsarchive_image {
  overflow: hidden;
}
.top_event_title_wrap .eventlist li a .postsarchive_image img {
  transition: 1s ease;
  aspect-ratio: 280/183;
  object-fit: cover;
  object-position: center;
}
.top_event_title_wrap .eventlist li a:hover .postsarchive_image img {
  transform: scale(1.15);
  transition: 1s ease;
}
.top_event_title_wrap .eventlist li a:hover .postsarchive_title {
  text-decoration: underline;
}

.top_event_title_wrap .top_column_link{
  display: inline-block;
  margin-top: 45px;
}


#top_about {
  background: url(img/top_about.jpg) no-repeat;
  background-position: top;
  background-size: contain;
}
.top_about_title_wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding-top: 100px;
}
.top_about_title {
  color: rgba(44, 40, 37, 1);
  font-family: 'Noto Serif JP', serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 38px;
  letter-spacing: 0.04em;
  display: table;
  color: white;
  margin-bottom: 58px;
}
.top_about_title span {
  font-family: Swear Display;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0.07em;
  color: rgba(135, 129, 124, 1);
  display: table;
  margin-left: auto;
  position: relative;
  right: -8%;
  margin-top: 13px;
  color: white;
}
.top_about_staff_list {
  background: white;
  padding: 73px 0 0 123px;
  margin-left: 20vw;
}
.top_about_staff_list .postnavigation {
  padding-top: 0;
  margin: 0;
}
.top_about_sub_title {
  color: rgba(44, 40, 37, 1);
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.04em;
}
.top_about_staff_list .staff_list {
  padding: 54px 0 37px;
  margin: 0 0 0 auto;
  background: white;
  overflow-x: auto;
  white-space: nowrap;
}
.top_about_staff_list .staff_list .staff_list_item:hover img {
  transform: scale(1.15);
}
.top_about_staff_list .staff_list .staff_list_item img {
  max-width: 260px;
  transition: 1s ease;
}

.top_about_staff_list .nav-next {
  font-size: 15px;
}
.top_about_staff_list .nav-next img {
  display: block;
}
#top_company {
  overflow: hidden;
}
.top_about_staff_company {
  margin: 120px auto 0;
  display: table;
  position: relative;
  overflow: hidden;
}
.top_about_staff_company:hover {
  opacity: 1;
}
.top_about_staff_company:hover picture img {
  transition: 1s ease;
  transform: scale(1.15);
}
.top_about_staff_company picture img {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  transition: 1s ease;
}
.top_about_staff_company_text > svg {
  border: 1px solid rgba(219, 217, 214, 0.8);
  border-radius: 50%;
  padding: 15.5px 10px;
  margin-left: auto;
  display: flex;
  box-sizing: content-box;
  transition: 1s ease;
  margin-left: 35px;
}
a:hover .top_about_staff_company_text svg {
  border-color: white;
  background: white;
  transition: 1s ease;
}
a:hover .top_about_staff_company_text svg path {
  fill: #6a929c;
  transition: 1s ease;
}
a:hover .top_about_staff_company_text svg path + path {
  stroke: #6a929c;
  transition: 1s ease;
}

.top_about_staff_company_text {
  position: absolute;
  bottom: 34px;
  left: 38px;
  align-items: flex-end;
}
.top_about_staff_company_text img {
  padding: 20.5px 15px;
  border: 1px solid white;
  border-radius: 50%;
  margin-left: 35px;
}
.top_about_staff_company_title {
  color: #fff;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 18px */
  letter-spacing: 1.2px;
}
.top_about_staff_company_label {
  color: #fff;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 51.2px */
  margin-bottom: 7px;
}
/**
* 施工事例ページ
**********************/
.works_header .postsarchive_header_title {
  color: #2c2825;
}
.works_header {
  padding: 0;
  margin-top: 125px;
  height: auto;
  max-width: 1040px;
}
.works_cat_list {
  border-top: 1px solid rgba(244, 244, 244, 1);
  border-bottom: 1px solid rgba(244, 244, 244, 1);
  padding: 24px 78.5px;
  display: flex;
  flex-wrap: wrap;
  background: white;
  margin-left: auto;
  margin-right: 1px;
}
.works_cat_list_item a {
  color: var(--text-primary, #2c2825);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 27px */
  letter-spacing: 0.6px;
  margin-left: 72px;
  opacity: 0.5;
  position: relative;
}
.works_cat_list_item:first-child a {
  margin-left: 0;
}
.works_cat_list_item a:hover {
  opacity: 1;
  font-weight: 700;
}
.works_cat_list_item.active {
  color: #2c2825;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%; /* 27px */
  letter-spacing: 0.6px;
  position: relative;
}
.works_cat_list_item a::after {
  content: url(img/cat_arrow_b.svg);
  display: inline-block;
  margin-left: 7px;
  position: relative;
  bottom: -2px;
}
.works_cat_list_item.active::after,
.works_cat_list_item a:hover::after {
  content: url(img/cat_arrow_b_on.svg);
  display: inline-block;
  margin-left: 7px;
  position: relative;
  bottom: -2px;
}
.works_cat_list_item.active a {
  color: #2c2825;
  opacity: 1;
  font-weight: bold;
}
.works_cat_list_item.active a::after {
  content: none;
}
.workssarchive_title {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 28.8px */
  letter-spacing: 0.72px;
  margin: 2px;
}
.workslist li {
  /*	margin-bottom:72px;	*/
}
.workslist li a {
}
.works_area {
  color: #989696;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 20.8px */
  letter-spacing: 0.52px;
}
.workslist .postsarchive_image {
  margin-bottom: 30px;
  max-height: 357px;
  overflow: hidden;
  height: 100%;
  position: relative;
}

.workslist .postsarchive_image img {
  object-fit: cover;
  max-height: 357px;
  height: 100vh;
}
.workslist .postsarchive_image .postsarchive_term {
  position: absolute;
  bottom: 0;
  z-index: 10;
  left: 18px;
  color: white;
  font-size: 16px;
}
.workslist .postsarchive_image .postsarchive_term::before {
  content: '';
  background: white;
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
  width: 5px;
  height: 5px;
  position: relative;
  top: -2.5px;
  left: -2.5px;
}
.workslist .postsarchive_image .video_icon {
  bottom: 0;
  right: 0;
  width: 86px;
  height: 37px;
  position: absolute;
}
.works_txt {
  align-items: flex-end;
}
.works_txt svg {
  border: 1px solid rgba(219, 217, 214, 1);
  border-radius: 50%;
  padding: 15px 11px;
}
.works_txt > svg {
  border: 1px solid rgba(219, 217, 214, 1);
  border-radius: 50%;
  padding: 18px 14px;
  margin-left: auto;
  display: flex;
  box-sizing: content-box;
}
a:hover .works_txt svg {
  border-color: #6a929c;
}
a:hover .works_txt svg path {
  fill: #6a929c;
}
a:hover .works_txt svg path + path {
  stroke: #6a929c;
}
.loading_wrap {
  margin: 60px auto 0;
}
/**
* 施工事例シングルページ
**********************/
body.single-works {
  overflow-x: hidden;
}

.works_single .postbg {
  /*top: 58%;*/
  top: 540px;
  height: 100%;
}
.works_single.singlemain {
  overflow-y: hidden;
}
.works_title {
  margin-bottom: 22px;
}
.area_name {
  color: #87817c;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.26px;
  margin-bottom: 80px;
}
.works_single .slider {
  margin: 0 calc(50% - 50vw);
  max-width: 1090px;
  position: relative;
}
.works_single .slider li,
.works_single .slider li img {
  display: inline-block;
}
.works_single .slider .slick-arrow {
  position: absolute;
  right: -86px;
  top: 35%;
  transform: translateY(-50%);
}
.works_single .slider .slick-track + .slick-arrow {
  top: 65%;
}
.works_single .slider .slick-prev + span {
  position: relative;
  top: 5px;
}
.totalnum {
  position: relative;
  top: -25px;
}
.works_single .slider .slick-arrow span {
  color: #8e755b;
  font-family: Barlow;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 28.8px */
  letter-spacing: 0.72px;
  display: block;
  text-align: center;
}
.works_single .slider .slick-prev {
  border: 1px solid #dbd9d6;
  border-radius: 50%;
  text-align: center;
  padding-top: 2px;
  width: 32px;
  height: 32px;
  display: block;
}
.works_single .slider .slick-prev img {
  transform: rotate(180deg);
}
.works_single .slider .slick-next {
  border: 1px solid #dbd9d6;
  border-radius: 50%;
  text-align: center;
  padding-top: 2px;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  display: block;
}
.works_single .slick-dots {
  margin-top: 5px;
  margin-left: -5px;
  margin-right: -5px;
  display: flex;
  justify-content: flex-end;
}
.works_single .slick-dots li {
  list-style: none;
  display: inline-block;
  max-width: 112px;
  max-height: 56px;
  margin: 5px;
}
.works_single .swiper-thumbs .swiper-slide {
  position: relative;
}
.works_single
  .swiper-thumbs
  .swiper-slide:not(.swiper-slide-thumb-active):before {
  content: '';
  opacity: 0.65;
  background: #000;
  mix-blend-mode: multiply;
  width: 100%;
  height: 100%;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}
.works_single .swiper .swiper-slide img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  max-height: 650px;
  height: 100%;
  aspect-ratio: 109/650;
}
.works_single .slick-dots li img {
  width: 100%;
  height: auto;
}
.works_single .slick-dots li.slick-active img {
  opacity: 1;
}
.works_single .postcontent {
  max-width: 1090px;
}

.swiper {
  margin: 0 calc(50% - 50vw);
  max-width: 1090px;
  position: relative;
}

.swiper_arrow {
  margin: 0 calc(50% - 50vw);
  position: absolute;
  height: -webkit-fill-available;
  z-index: 10;
  top: 3% !important;
  right: 15%;
  width: 120px;
  top: 4%;
}
.swiper_arrow .swiper-button-prev {
  position: absolute;
  right: -77px;
  top: 33%;
  transform: translateY(-50%);
  left: unset;
  color: rgb(44, 40, 37);
}
.swiper_arrow .swiper-button-prev a img {
  transform: rotate(180deg);
}
.swiper_arrow .swiper-button-prev span {
  color: #8e755b;
  font-family: Barlow;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.72px;
  display: block;
  text-align: center;
  position: absolute;
  bottom: -30px;
}
.swiper_arrow .swiper-button-next {
  position: absolute;
  right: -78px;
  top: 70%;
  transform: translateY(-50%);
  left: unset;
  color: rgb(44, 40, 37);
}
.swiper_arrow .swiper-button-next span {
  color: #8e755b;
  font-family: Barlow;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.72px;
  display: block;
  text-align: center;
  position: absolute;
  top: -44px;
}

.swiper-scrollbar {
  right: -100%;
  top: 47% !important;
  transform: translateY(-50%) rotate(90deg);
  left: unset !important;
  height: 2px !important;
}

.swiper-button-prev {
  position: absolute;
  right: -77px;
  top: 33%;
  transform: translateY(-50%);
  left: unset;
  width: 32px;
  height: 32px;
  color: rgb(44, 40, 37);
}
.swiper-button-prev a {
  border: 1px solid #dbd9d6;
  border-radius: 50%;
  text-align: center;
  padding-top: 2px;
  width: 32px;
  height: 32px;
  display: block;
}
.swiper-button-next {
  position: absolute;
  right: -86px;
  top: 65%;
  transform: translateY(-50%);
  left: unset;
  width: 32px;
  height: 32px;
  color: rgb(44, 40, 37);
}
.swiper-button-next a {
  border: 1px solid #dbd9d6;
  border-radius: 50%;
  text-align: center;
  padding-top: 2px;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  display: block;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  content: none;
}

.works_single .swiper-thumbs {
  margin: 0 calc(50% - 50vw);
  max-width: 1100px;
  position: relative;
}
.works_single .swiper-thumbs .swiper-slide {
  height: 100%;
  overflow: hidden;
  list-style: none;
  display: inline-block;
  max-width: 112px;
  max-height: 56px;
  margin: 5px;
}
.works_single .swiper-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}
.works_single .swiper-thumbs .swiper-wrapper {
  margin-top: 5px;
  margin-left: -5px;
  margin-right: -5px;
  display: flex;
  justify-content: flex-end;
}

.works_content {
  margin: 95px auto;
  max-width: 960px;
  width: calc(100% - 40px);
}

/*beforeAfterSlider*/
.before_after_slider {
  position: relative;
  overflow: hidden;
  width: 960px;
  max-width: 100%;
  margin: 0 auto 40px;
}

.before_after_slider img {
  max-height: 714px;
  margin: 0;
}

.box_before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  border-right: 5px solid rgba(255, 255, 255, 0.7);
  box-shadow: 10px 0 15px -13px #000;
}

.box_before img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.box_before::before {
  content: '';
  z-index: 1;
  position: absolute;
  top: 0;
  right: -30px;
  bottom: 0;
  width: 45px;
  height: 45px;
  margin: auto;
  border: 5px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  box-shadow: 10px 0 15px -13px #000;
}

.slider_range {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  cursor: col-resize;
}
.works_single_title {
  text-align: center;
  margin-top: 100px;
  color: rgba(142, 117, 91, 1);
  font-family: Barlow;
  font-size: 32px;
  font-weight: 400;
  line-height: 51px;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.works_single_title img {
  display: inline;
  margin: 0;
}
a.works_movie_link {
  position: relative;
  display: block;
  max-width: 900px;
  margin: 0 auto;
  border-bottom: 0;
}
.works_movie_link img {
  margin: 0;
  display: block;
}
.works_movie_link::before {
  content: '';
  display: inline-block;
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.works_movie_link span {
  position: absolute;
  top: 50%;
  transform: translate(50%, -50%);
  right: 50%;
  color: white;
  background: #6a929c;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0.04em;
}
.works_movie_link span::after {
  content: '';
  display: block;
  border-left: 8px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: calc(tan(60deg) * 10.5px) solid #ffffff;
  transform: rotate(90deg);
  margin-top: 5px;
}
.works_beforeafter {
  margin: 128px auto 95px;
  max-width: 960px;
  width: calc(100% - 40px);
}
.myImageCompare {
  margin: 20px 0;
}
.works_movie iframe {
  width: 100%;
  margin: 0 auto;
  max-width: 900px;
  aspect-ratio: 90/47;
  height: auto;
}
.works_beforeafter .myImageCompare img {
  margin: 0;
  aspect-ratio: 96/72;
  object-fit: cover;
  object-position: center;
}
.works_beforeafter_desc {
  margin-top: 0;
}
.works_beforeafter_desc.ba_desc_more {
  max-height: 84px;
  overflow: hidden;
  position: relative;
}
.works_beforeafter_desc span {
  display: none;
}
.works_beforeafter_desc.ba_desc_more span {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translatex(-50%);
  font-size: 14px;
  border: 1px solid;
  border-radius: 42px;
  padding: 0px 12px;
  z-index: 3;
  display: inline-block;
  cursor: pointer;
}
.works_beforeafter_desc.ba_desc_more::after {
  content: '';
  position: absolute;
  width: 100%;
  background: linear-gradient(360deg, #fdf4ee 50%, #fcf9f500 100%);
  z-index: 2;
  height: 80%;
  display: inline-block;
  bottom: 0;
  width: 100%;
  left: 0;
}
.works_floormap_data_list {
  display: flex;
  flex-wrap: wrap;
  background-image: linear-gradient(
    to right,
    transparent calc(100% - 1px),
    #c5c5c5 0
  );
  background-size: 3px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
  padding-bottom: 14px;
  margin-bottom: 14px;
}
.works_floormap_data_list > * {
  flex: 0 0 50%;
  max-width: 50%;
}
.single-works .postnavigation {
  padding-top: 20px;
}
/* Separator (thin vertical blank line) */
.images-compare-separator {
  position: absolute;
  background: white;
  height: 100%;
  width: 1px;
  z-index: 4;
  left: 0;
  top: 0;
}

/* Drag handle (circle) */
.images-compare-handle {
  height: 38px;
  width: 38px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -22px;
  margin-top: -22px;
  border: 3px solid white;
  -webkit-border-radius: 1000px;
  -moz-border-radius: 1000px;
  border-radius: 1000px;
  -webkit-box-shadow: 0 0 12px rgba(51, 51, 51, 0.5);
  -moz-box-shadow: 0 0 12px rgba(51, 51, 51, 0.5);
  box-shadow: 0 0 12px rgba(51, 51, 51, 0.5);
  z-index: 3;
  background: rgb(0, 0, 0);
  background: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}

/* Drag handle arrows */
.images-compare-left-arrow,
.images-compare-right-arrow {
  width: 0;
  height: 0;
  border: 6px inset transparent;
  position: absolute;
  top: 50%;
  margin-top: -6px;
}

.images-compare-left-arrow {
  border-right: 6px solid white;
  left: 50%;
  margin-left: -17px;
}

.images-compare-right-arrow {
  border-left: 6px solid white;
  right: 50%;
  margin-right: -17px;
}

/* Label */
.images-compare-container .images-compare-label {
  background: rgba(158, 158, 158, 1);
  color: rgba(250, 244, 237, 1);
  font-family: Barlow;
  font-size: 18px;
  font-weight: 500;
  line-height: 29px;
  letter-spacing: 0em;
  text-align: left;
  top: 40px;
  left: 0;
  border-radius: 0;
}
.images-compare-container .images-compare-before .images-compare-label {
  left: 0;
  top: 0;
  padding: 0 5px;
}
.images-compare-container .images-compare-after .images-compare-label {
  left: auto;
  right: 0px;
  top: 0;
  padding: 0 5px;
  background: #8e755b;
}
.images-compare-container .images-compare-handle {
  background: rgba(142, 117, 91, 1);
  margin-left: -19px;
}
.myImageCompare .icv__label {
  position: absolute;
  top: 0;
  height: auto;
  display: inline-table;
  font-family: Barlow;
  font-size: 18px;
  color: white;
  font-weight: 500;
  padding: 0px 5px;
  text-transform: uppercase;
  border-radius: 0;
}
.myImageCompare .icv__label-before {
  background: #9e9e9e;
  left: 0;
}
.myImageCompare .icv__label-after {
  background: #8e755b;
  right: 0;
}

p.works_after_ba {
  margin: 65px auto 95px;
}
.works_text_img_wrap {
  position: relative;
}
.works_text_img_wrap img {
  width: 100%;
}
.works_text_img_txt {
  position: absolute;
  bottom: 30px;
  color: white;
  font-weight: 500;
  width: 100%;
  padding: 20px;
  z-index: 7;
  overflow: hidden;
}
.works_text_img_txt::before {
  content: '';
  display: inline-block;
  background: linear-gradient(360deg, #000000 0%, #00000000 100%);
  mix-blend-mode: multiply;
  width: 105%;
  padding: 39px 15px 15px;
  position: absolute;
  z-index: -1;
  left: -20px;
  height: 100%;
  bottom: 0;
}
.works_hr {
  opacity: 0.2;
  border-bottom: 1px solid #8e755b;
  height: 1px;
}
.works_pickup {
  margin: 88px auto 96px;
  background: white;
  max-height: 980px;
  width: calc(100% - 40px);
  border-left: 4px solid #8e755b;
  padding: 78px;
  position: relative;
}
.works_pickup_label {
  color: #8e755b;
  font-size: 22px;
  line-height: 1.6;
  letter-spacing: 0.04rem;
  font-family: Barlow;
  padding: 10px 16px;
  position: absolute;
  top: 6px;
  left: 0;
}
.works_pickup_wrap {
  align-items: center;
}
.works_pickup_wrap .works_pickup_desc,
.works_pickup_wrap .works_pickup_img {
  max-width: calc(50% - 28px);
  flex: 0 0 calc(50% - 28px);
  margin: 0 auto;
}
.works_floormap {
  margin: 88px auto 135px;
}
.works_floormap_label {
  color: #8e755b;
  font-size: 32px;
  line-height: 1.6;
  letter-spacing: 0.04rem;
  font-family: Barlow;
  text-align: center;
}
.works_floormap_wrap > * {
  max-width: calc(50% - 4px);
  flex: 0 0 calc(50% - 4px);
}
.works_floormap_before {
  position: relative;
}
.works_floormap_before::after {
  content: url(img/single_work_arrow.svg);
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translate(50%, -50%);
  z-index: 3;
  width: 66px;
}
.works_floormap_info_wrap {
  padding: 0 20px;
  position: relative;
}
.works_floormap_info_wrap > * {
  max-width: calc(50% - 60px);
  flex: 0 0 calc(50% - 60px);
  border-top: 1px solid #8e755b;
  border-bottom: 1px solid #8e755b;
  padding: 64px 0 52px;
  position: relative;
}
.works_floormap_data_label,
.works_floormap_message_label {
  position: absolute;
  left: 0;
  top: 0;
  color: #8e755b;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.02rem;
  font-family: Barlow;
}
/**
* 資料請求
**********************/
main.request {
  width: 100%;
}
.request_header::before {
  content: '';
  position: absolute;
  width: 100vw;
  height: 100%;
  background-image: url(img/request_bg.jpg);
  right: 0;
  top: 0;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}

.request_desc_title {
  font-size: 34px;
  font-family: 'Noto Serif JP', serif;
  margin-bottom: 18px;
  font-weight: 400;
}

.request_desc_txt:not(:last-child) {
  margin-bottom: 12px;
}

.request_slider {
  margin: 80px calc(50% - 50vw) 90px;
  width: 100vw;
  background: #e8e8e8;
  padding: 80px 0 64px;
}

.request_slider_txt {
  text-align: center;
}

.request_slider_inner {
  max-width: 1040px;
  margin: 0 auto;
}

.request_slider_img {
  max-height: 280px;
}

.request_slider .staff_list {
  margin: 58px auto 37px;
}

.request_slider_point {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}

.request_slider_point_img {
  max-height: 120px;
  position: relative;
  z-index: 2;
}

.request_slider_point_txt {
  font-size: 14px;
  font-weight: 500;
  background: #faf6ef;
  border-radius: 14px;
  padding: 14px 7px 13px 60px;
  position: relative;
  left: -50px;
  z-index: 0;
}

.request .eventform {
  padding-top: 28px;
}

.request form.wpcf7-form .voice_spec {
  margin-top: 12px;
}

.archive_wrap.request_wrap {
  margin-bottom: 30px;
}

.archive_wrap.request_wrap input.wpcf7-submit,
.archive_wrap.request_wrap form.wpcf7-form {
  margin-bottom: 0;
}
/**
* 会社概要
**********************/
.company_header {
  padding: 142px 125px 145px 0;
}
.company_header::before {
  content: '';
  position: absolute;
  width: 100vw;
  height: 100%;
  background-image: url(img/company_main.jpg);
  right: 0;
  top: 0;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}
.company_wrap {
  margin: 88px auto 0;
  max-width: 100%;
}
.company_wrap_innder {
  width: 100%;
}
.company_desc {
  margin: 0 auto 88px;
  text-align: center;
  display: table;
  line-height: 2.1;
  font-size: 18px;
  font-weight: 500;
}
.company_about {
  background: #fcf9f5;
  padding: 80px 0 130px;
}
.company_about_title {
  font-size: 32px;
  color: #8e755b;
  font-family: Barlow;
  font-weight: 400;
  text-align: center;
  margin-bottom: 72px;
}
.company_about_list {
  max-width: 720px;
  margin: 0 auto 120px;
  display: flex;
  flex-wrap: wrap;
  color: #4a4648;
}
.company_about_list dd {
  width: 240px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e4dace;
}
.company_about_list dt {
  width: calc(100% - 240px);
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e4dace;
}
.company_about_list dt p + p {
  margin-top: 8px;
}
.company_about_list dt a {
  color: #6a929c;
  border-bottom: 1px dotted;
  margin-bottom: 3px;
  display: inline-block;
  position: relative;
}
.company_about_list dt a::after {
  content: url(img/link_external.svg);
  display: inline-block;
  margin-left: 2px;
}
.company_about_location {
  max-width: 960px;
  margin: 0 auto;
}
.company_about_location_title {
  font-size: 20px;
  font-family: 'Noto Serif JP', serif;
  margin-bottom: 40px;
  padding-bottom: 10px;
  font-weight: 500;
  border-bottom: 1px solid #e4dace;
}
.company_about_location_left {
  flex: 1;
  margin-right: 80px;
  color: #4a4648;
}
.office2 .company_about_location_left {
  flex: 1;
  margin-left: 80px;
  margin-right: 0;
}

/* .office3 .company_about_location_left {
  flex: ;
  margin-left: 80px;
  margin-right: 0;
} */

.office2 {
  margin-top: 96px;
}
.office3 {
  margin-top: 96px;
}
.company_about_location_list dd {
  width: 140px;
  position: relative;
}
.company_about_location_list dd::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  background: #8e755b;
  border-radius: 50px;
  margin-right: 13px;
  position: relative;
  top: -3px;
}
.company_about_location_list dt {
  width: calc(100% - 140px);
}
.company_about_location_list dt span {
  font-size: 14px;
}
.company_about_location_list > *:nth-child(n + 3) {
  margin-top: 12px;
  display: inline-block;
}
.company_about_location_btn {
  background-image: url(img/company_phone.svg);
  background-color: white;
  border: 1px solid #ece9e5;
  border-radius: 4px;
  width: 400px;
  display: inline-block;
  text-align: center;
  padding: 15px 0;
  margin-top: 32px;
  font-size: 20px;
  font-weight: 500;
  font-family: Barlow;
  background-repeat: no-repeat;
  background-position: 10% center;
}
.office3 .company_about_location_btn {
  background-image: url(img/company_house.svg);
}
.company_wrap_innder .concept_bottom {
  margin: 120px auto 20px;
}
.company_wrap_innder .concept2_cta {
  background: url(img/company_cta.jpg) no-repeat;
  background-size: cover;
}

.concept2_mv {
  max-height: 720px;
  object-fit: cover;
  width: 100%;
  aspect-ratio: 128 / 72;
}

/**
* プライバシーポリシー
**********************/
.privacy_title {
  color: inherit;
}
.privacy_header {
  padding: 150px 125px 100px 0;
}
.privacy_content {
  background: #fcf9f5;
  padding: 96px 0 130px;
}
.privacy_content_inner {
  max-width: 720px;
  margin: 0 auto;
}
.privacy_content_inner h2 {
  margin: 72px 0 68px;
  color: rgba(62, 64, 70, 1);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.08rem;
  position: relative;
}
.privacy_content_inner h2::before {
  content: '';
  display: inline-block;
  border: 2px solid rgba(142, 117, 91, 1);
  width: 80px;
  position: absolute;
  bottom: -29px;
}
main.privacy + .footer_cta {
  margin-top: 0;
}

/**
* お問い合わせ
**********************/
.contact_header::before {
  content: '';
  position: absolute;
  width: 100vw;
  height: 100%;
  background-image: url(img/contact_bg.jpg);
  right: 0;
  top: 0;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}

.contact_desc {
  text-align: center;
}

.contact_desc_txt {
  margin-bottom: 50px;
}

main.contact .request_form .eventform {
  background: #fcf9f5;
  background-size: cover;
}

main.contact .request_form_contact {
  background: url(img/contact_form_bg2.jpg);
  background-size: cover;
  text-align: center;
  padding: 40px 0 50px;
  margin-top: 40px;
}

main.contact .request_form_contact .request_form_contact_box {
  max-width: 790px;
  width: 100%;
  margin: 0 auto;
  background: white;
  border-radius: 60px;
  padding: 10px 0 8px;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
  align-items: center;
}

main.contact
  .request_form_contact
  .request_form_contact_box
  .request_form_contact_box_name {
  margin-right: 80px;
}

main.contact .request_form_contact .request_form_contact_box a {
  color: rgba(142, 117, 91, 1);
  font-size: 26px;
  font-weight: 500;
  font-family: Barlow;
  display: flex;
  align-items: center;
}

main.contact .request_form_contact .request_form_contact_box a span {
  font-size: 40px;
  margin-left: 20px;
}

main.contact .request_form_contact .request_form_contact_hours {
  justify-content: center;
  margin-top: 6px;
  font-size: 20px;
  font-family: 'BARLOW';
}

main.contact .request_form_contact .request_form_contact_hours img {
  margin-right: 10px;
}

/**
* simokuリノベーションについて
**********************/
.concept_main {
  margin: 128px auto 0;
}
.concept_main_header .concept_title {
  text-align: center;
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 40px;
  margin-bottom: 12px;
  letter-spacing: 0.04rem;
}
.concept_main_header {
  margin-bottom: 70px;
}
.concept_main_header .concept_title_en {
  display: table;
  margin: 0 auto;
}
.concept_desc {
  background: #fcf9f5;
  padding: 120px 0 230px;
  position: relative;
  left: -120px;
}
.concept_main_header .concept_title {
  text-align: center;
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 40px;
  margin-bottom: 12px;
  letter-spacing: 0.04rem;
}
.concept_desc_title {
  text-align: center;
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.8;
  letter-spacing: 0.08rem;
  text-align: left;
  max-width: 880px;
  margin: 0 auto 32px;
}
.concept_desc_desc {
  left: 80px;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  letter-spacing: 0.04rem;
}

.concept_desc_img {
  position: relative;
  top: -150px;
}
.concept_desc_img_left {
  max-width: 292px;
  margin-right: 88px;
}
.concept_desc_img_right {
  flex: 1;
  max-width: 1140px;
}
.concept_desc_img_right img:last-child {
  max-width: 780px;
  margin-top: 88px;
}
.our_belioef1 {
  position: relative;
}
.our_belioef1_wrap {
  max-width: 1040px;
  margin: -240px auto 168px;
}
.our_belief_title {
  color: #6a929c;
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  margin: 48px 0 32px;
  letter-spacing: 0.08rem;
  font-size: 32px;
}
.our_belief_desc {
  width: 100%;
  position: relative;
  letter-spacing: 0.04rem;
}
.our_belief_desc p {
  max-width: 540px;
}
.our_belioef1_bg {
  position: absolute;
  max-width: 780px;
  top: 35%;
  right: 0;
  z-index: -1;
}
.our_belioef2_left {
  flex: 1;
  max-width: 510px;
  position: relative;
  z-index: 1;
}
.our_belioef2_right {
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  left: 25px;
}
.our_belioef2_right p {
  margin-top: 45px;
  letter-spacing: 0.04rem;
}
.concept_slider {
  background: #fcf9f5;
  padding: 200px 0 180px;
  margin-top: -60px;
  position: relative;
  overflow: hidden;
}
.concept_slider_desc {
  max-width: 1040px;
  margin: 0 auto;
}
.concept_slider_title {
  flex: 1;
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  letter-spacing: 0.04rem;
  font-size: 36px;
  line-height: 1.75;
}
.concept_slider_desc_p {
  max-width: 520px;
  letter-spacing: 0.04rem;
}
.concept_bottom {
  max-width: 1040px;
  margin: 120px auto 140px;
}
.related_contents {
  margin-bottom: 72px;
}
.toc_slider {
  display: flex;
  position: absolute;
  width: auto;
}
.toc_slider .voice_slider {
  width: 33px;
}
.toc_slider .voice_slider_line {
  counter-increment: unset;
  height: 26px;
  padding-bottom: 7px;
}
.toc_slider .voice_slider_line.voice_slider_active {
  padding-bottom: 17px;
}
.toc_slider .voice_slider_line:last-child {
  padding-bottom: 0px;
}
.toc_slider .voice_slider_line::before {
  content: none;
}
.toc_slider .voice_slider_line.is-active {
  height: 40px;
}
.toc_slider .voice_slider_line.is-active::after {
  background: none;
  content: url(img/concept1_arrow.svg);
  display: inline-block;
  top: -12px;
}
.voice_slider_line.voice_slider_active::after {
  background: rgba(44, 40, 37, 1);
}
.toc_slider .voice_slider_line.is-active .scrol_circle {
  background: #fcf9f5;
  opacity: 1;
  padding: 15.5px;
}
.concept_slider-thumbnail .swiper-wrapper {
  display: inline-block;
  width: auto;
  position: relative;
  margin-left: 15px;
}
.concept_slider-thumbnail .swiper-wrapper .swiper-slide {
  height: auto;
  font-size: 14px;
  color: rgba(44, 40, 37, 1);
  margin-bottom: 2px;
}
.concept_slider-thumbnail
  .swiper-wrapper
  .swiper-slide.swiper-slide-thumb-active {
  font-size: 15px;
  font-weight: 700;
}
.concept_slider-thumbnail .swiper-wrapper .swiper-slide:first-child {
  margin-bottom: 12px;
}
.concept_slider .swiper {
  /* max-width:960px; */
  width: 100%;
  height: auto;
  margin-left: 200px;
  margin-top: 100px;
}

.concept_slider .swiper .swiper-wrapper {
  /* padding-left: 80px;*/
}

.concept_slider .swiper .swiper-slide {
  max-width: 240px;
  width: 100%;
  margin-top: auto;
  /* transition: 1s all ease; */
}
.concept_slider .swiper .swiper-slide.swiper-slide-active {
  max-width: 480px;
  width: 100%;
  /* transition: 1s all ease; */
}
.concept_slider .swiper .swiper-slide img,
.concept_slider .swiper .swiper-slide.swiper-slide-active img {
  /* transition:  1s all ease;	 */
  aspect-ratio: 24/16;
}

.concept_slider .swiper_arrow {
  width: 260px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  height: auto;
  margin: 0;
  right: 6%;
}
.concept_slider .swiper-button-prev {
  position: relative;
  right: unset;
  top: unset;
  transform: unset;
  display: flex;
  order: 1;
  margin-top: unset;
}
.concept_slider .swiper-button-prev span {
  right: -20px;
  bottom: unset;
}
.concept_slider .swiper_arrow .swiper-button-prev a img {
  transform: rotate(90deg);
}
.concept_slider .swiper-button-next a img {
  transform: rotate(-90deg);
}
.concept_slider .swiper-button-next {
  position: unset;
  transform: unset;
  left: unset;
  width: 32px;
  height: 32px;
  max-width: 200px;
  order: 3;
  margin-top: unset;
  margin-left: auto;
}
.concept_slider .swiper_wrap {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
}
.concept_slider .swiper-scrollbar.swiper-scrollbar-horizontal {
  position: unset;
  transform: translateY(-50%);
  order: 2;
  height: var(--swiper-scrollbar-size, 2px);
}
.concept_slider .swiper-button-next a {
  transform: unset;
}
.concept_slider .swiper-scrollbar-drag {
  /* width: 50%!important; */
}

.concept_slider .swiper_wrap .swiper_arrow .swiper-button-next span {
  top: unset;
  margin-left: -70px;
}

.concept1_cta {
  background: url(img/concept1_cta2.jpg) repeat;
  padding: 130px 0 120px;
  background-size: cover;
  text-align: center;
}
.concept1_cta_title {
  color: white;
  font-size: 32px;
  margin-bottom: 16px;
  font-family: 'Noto Serif JP', serif;
  letter-spacing: 0.04rem;
  font-weight: 400;
}
.concept1_cta_right {
  width: 48px;
  height: 48px;
  border: 1px solid white;
  border-radius: 50%;
  padding: 10px;
  margin-left: 19px;
}
.concept_slider .slider {
  margin: 0 calc(50% - 50vw);
  max-width: 1090px;
  position: relative;
}
.concept_slider .slider li,
.concept_slider .slider li img {
  display: inline-block;
}
.concept_slider .slider .slick-dots {
  margin-top: 5px;
  margin-left: -5px;
  margin-right: -5px;
  display: flex;
  justify-content: flex-end;
}
.concept_slider .slider .slick-dots li {
  list-style: none;
  display: inline-block;
  max-width: 112px;
  max-height: 56px;
  margin: 5px;
}

/**
* 自然素材とデザイン
**********************/
.concept2_desc {
  margin: 180px auto 0;
  max-width: 1040px;
}
.concept2_desc_left {
  max-width: 505px;
  position: relative;
  left: calc(-25%);
}
.concept2_desc_right {
  width: 50%;
}
.concept2_desc_img {
  position: relative;
}
.concept2_desc_left2 {
  max-width: 220px;
  position: absolute;
  bottom: -110px;
  right: 0;
}
.concept2_desc_title {
  flex: 1;
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  letter-spacing: 0.08rem;
  font-size: 32px;
  line-height: 1.75;
  margin-top: 27px;
  margin-bottom: 27px;
}
.concept2_feature1 {
  background: #fcf9f5;
  padding: 200px 0 120px;
  margin-top: -10px;
}
.concept2_feature1_title {
  margin-bottom: 96px;
  align-items: center;
  letter-spacing: 0.08rem;
  justify-content: flex-start;
  font-size: 32px;
  font-weight: 400;
  color: #6a929c;
  font-family: 'Noto Serif JP', serif;
  line-height: 1.8;
}
.concept2_feature1_title img {
  margin-right: 40px;
  position: relative;
  bottom: -5px;
}
.concept2_feature1_item_center {
  margin-top: 96px;
}
.concept2_feature1_item_title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  letter-spacing: 0.04rem;
  font-size: 24px;
  line-height: 1.75;
  margin-top: 35px;
  margin-bottom: 18px;
}
.modalbtn {
  font-size: 16px;
  font-weight: 500;
  border: 1px solid rgba(44, 40, 37, 1);
  border-radius: 16px;
  padding: 0 13px 2px;
  color: rgba(44, 40, 37, 1);
  transition: 0.3s ease;
  background: transparent;
}
.modalbtn:hover {
  transition: 0.3s ease;
  opacity: 0.5;
}
.modalbtn span {
  margin-left: 5px;
  font-size: 16px;
  font-weight: 700;
}
.concept2_feature1.concept2_feature2 {
  background: transparent;
  padding-top: 120px;
}
.concept2_modelroom {
  padding: 120px 0 90px;
  position: relative;
  overflow: hidden;
}
.concept2_modelroom:before {
  content: '';
  background: #fcf9f5;
  height: 100%;
  top: 300px;
  width: 100%;
  position: absolute;
  z-index: -1;
}
.concept2_modelroom .subwidth > .concept2_modelroom_desc {
  flex: 0 0 50%;
  max-width: 50%;
}
.concept2_modelroom_right {
  margin: 0 calc(50% - 50vw);
  flex: 0 0 50%;
  max-width: 50vw;
}
.concept2_modelroom_title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  letter-spacing: 0.04rem;
  font-size: 32px;
  line-height: 1.75;
  margin-top: 65px;
  margin-bottom: 100px;
}
.concept2_modelroom_title span {
  font-family: var(--mainfont);
  color: #8e755b;
  font-size: 13px;
  font-weight: 400;
  border: 1px solid #d9d9d9;
  border-radius: 20px;
  margin-left: 22px;
  padding: 2px 13px;
}
.concept2_modelroom_subtitle {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  letter-spacing: 0.04rem;
  font-size: 26px;
  line-height: 1.75;
  margin-bottom: 24px;
}
.concept2_modelroom_desc p {
  font-size: 14px;
  margin-bottom: 60px;
}
.concept2_modelroom_link {
}
.concept2_modelroom_link.linkarrow:before {
  left: -5px;
  width: 110%;
}
.concept2_modelroom_link.linkarrow:after {
  right: -10px;
}
.concept2_cta {
  background: url(img/concept2_cta.jpg) repeat;
  padding: 130px 0 120px;
  background-size: cover;
  text-align: center;
}
.modal_close {
  background: transparent;
}

/**
* model
**********************/
main.contact.singlemain {
  margin-top: 0;
  overflow: hidden;
}
main.contact.singlemain.modelroom .voice_header {
  flex-wrap: nowrap;
  justify-content: flex-start;
  /* min-height: 72vh; */
}
main.contact.singlemain.modelroom .voice_header .postthumbnail {
  max-width: 800px;
  width: 70vw;
  aspect-ratio: 800 / 674;
  margin: 35px 0 80px;
  max-height: 674px;
  height: auto;
  object-fit: cover;
  position: absolute;
  right: 0;
}

main.contact.singlemain.modelroom .voice_header_txt {
  margin-right: 120px;
}
.modelroom .voicemeta {
  margin: 100px 0 40px;
}
.modelroom .voice_title {
  font-size: 52px;
  line-height: 1.6;
  font-weight: 500;
}
.modelroom .voice_title span {
  display: block;
  font-size: 20px;
  font-weight: normal;
  letter-spacing: -0.08rem;
  margin-bottom: 40px;
}
.modelroom .c_name {
  color: #857e7e;
}
.modelroom .postbg {
  top: 10.5%;
  left: 0;
  height: 80%;
}
.modelroom .postbg::before {
  content: '';
  background: url(img/modelroom.svg) no-repeat;
  display: inline-block;
  position: absolute;
  top: 1%;
  left: 20px;
  width: 100%;
  max-height: 160px;
  height: 100vw;
  background-size: contain;
}
.model_name {
  margin: 430px auto 135px;
  background: white;
  border-top: 1px solid #8e755b;
  border-bottom: 1px solid #8e755b;
  padding: 50px 70px 65px;
}
.model_name_left {
  flex: 1;
}
.model_name_left p {
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.04rem;
  max-width: 540px;
}
.model_name_right {
  width: 180px;
  margin-right: 60px;
}
.model_name_title {
  font-size: 32px;
  color: #8e755b;
  font-family: Barlow;
  letter-spacing: 0.04rem;
  font-weight: 400;
  margin-bottom: 16px;
  flex-direction: row-reverse;
  justify-content: left;
  display: flex;
  align-items: baseline;
}
.model_name_title span {
  font-size: 13px;
  font-weight: 500;
  font-family: 'Noto Sans JP', sans-serif;
  margin-right: 12px;
  margin-left: 12px;
}
.modelroom .works_floormap_label {
  margin-bottom: 28px;
}
main.modelroom .works_floormap_before,
main.modelroom .works_floormap_after {
  position: relative;
}
main.modelroom .works_floormap_before::before {
  content: 'BEFORE';
  font-family: Barlow;
  display: inline-block;
  color: #8e755b;
  font-size: 16px;
  font-weight: 500;
  position: absolute;
  top: 8px;
  left: 12px;
}
main.modelroom .works_floormap_after::before {
  content: 'AFTER';
  font-family: Barlow;
  display: inline-block;
  color: #8e755b;
  font-size: 16px;
  font-weight: 500;
  position: absolute;
  top: 8px;
  left: 12px;
}
.model_concept {
  margin: 150px auto;
  align-items: flex-start;
}
.model_concept_left {
  max-width: 540px;
}
.model_concept_title {
  font-size: 32px;
  font-family: Barlow;
  color: #8e755b;
  font-weight: 400;
  margin-bottom: 24px;
  letter-spacing: 0.04rem;
}
.model_concept_left p {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.04rem;
}
.model_concept_right {
  max-width: 396px;
  margin-top: 40px;
}

/* .modelform_link{
  display: block;
  position: relative;

  width: 260px;
  padding: 16px 0;
  background-color: #6A929D;
  border-bottom: solid 5px #6A929D;
  color: #fff;
  text-align: center;
}

.modelform_link::after{
  content: '';
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-left: 20px;
  background-image: url('img/common/arrow_head_b.svg');
}

.modelform_link.fixed{
  position: fixed;
  bottom: 34px;
  right: 28px;
  z-index: 100;
} */


/* .model_menu {
  margin-bottom: 140px;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  padding: 20px 0px;
}
.model_menu li {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02rem;
  font-family: 'Noto Serif JP', serif;
  position: relative;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.3;
  width: 14.2%;
  border-right: 1px solid #d9d9d9;
}
.model_menu li:last-child {
  border-right: none;
}
.model_menu li span {
  letter-spacing: 0.04rem;
  font-weight: 400;
  display: block;
  line-height: 1.6;
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
}
.model_menu li::after {
  content: '';
  background: url(img/model_menu.svg);
  display: inline-block;
  position: absolute;
  width: 10px;
  height: 10px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.model_menu li:hover a,
.model_menu li:hover a span {
  color: #6a929c;
  opacity: 0.8;
}
.model_menu li:hover::after {
  content: '';
  background: url(img/model_menu_on.svg);
}
.model_menu li:hover a {
  color: #6a929c;
} */
.model_spec_title {
  font-family: 'Noto Serif JP', serif;
  color: #8e755b;
  font-weight: normal;
  font-size: 36px;
  letter-spacing: 0.12rem;
  line-height: 1.8;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  width: 100%;
}
.model_spec_title span {
  font-size: 46px;
  letter-spacing: 0.04rem;
  line-height: 1.6;
  position: relative;
}
.model_spec_title span::after {
  content: '';
  display: inline-block;
  border-right: 1px solid #8e755b;
  height: 46px;
  margin: 0 36px;
  position: relative;
  top: 6px;
  opacity: 0.3;
}
.model_spec_desc {
  margin: 60px 0 120px;
}
.model_spec_left {
  max-width: 460px;
  margin-right: 80px;
}
.model_spec_right {
  flex: 1;
}
.model_spec_subtitle {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: 0.08rem;
  line-height: 1.8;
}
.model_spec_left p {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.04rem;
}
.model_spec_left_desc {
  max-width: 1160px;
  margin: 0 -120px;
  align-items: baseline;
}
.model_spec_left_desc .model_spec_image {
  max-width: 860px;
  margin-right: 80px;
}
.model_spec_subimage {
  max-width: 220px;
  height: 220px;
  width: 100%;
  object-fit: cover;
}
.spec_left .model_spec_left {
  max-width: 760px;
  margin-right: 60px;
  width: 100%;
}
.model_spec .model_spec_desc {
  width: 100%;
}
.model_mp {
  margin: 120px auto;
}
.model_mp iframe {
  margin: 0 auto;
}
.model_profile {
  margin: 0px auto 135px;
  background: white;
  border-top: 1px solid #8e755b;
  border-bottom: 1px solid #8e755b;
  padding: 60px 80px 65px;
  position: relative;
}
.model_profile::before {
  content: 'Architect’s profile';
  display: inline-block;
  color: white;
  background: #8e755b;
  font-size: 15px;
  font-family: Barlow;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 5px;
  letter-spacing: 0.02rem;
}
.model_profile_desc_right {
  margin-left: 80px;
  flex: 1;
}
.model_profile_desc_right p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.model_profile h1 {
  font-size: 26px;
  color: #8e755b;
  font-family: 'Noto Serif JP', serif;
  letter-spacing: 0.08rem;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 40px;
}
.model_profile_desc_left img {
  width: 200px;
  height: 200px;
  object-fit: cover;
}
.model_profile_desc_name {
  color: #87817c;
  text-align: center;
}
.model_profile_desc_link {
  border: 1px solid #e5e1da;
  display: flex;
  padding: 20px 60px 20px 32px;
  justify-content: space-between;
}
.model_profile_desc_link_title {
  color: #8e755b;
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 15px;
}
.model_profile_desc_link_name {
  color: #6a929c;
  font-size: 15px;
  font-weight: 400;
  position: relative;
  border-bottom: 1px dotted;
}
.model_profile_desc_link_publish {
  font-size: 13px;
  margin-top: 7px;
}
.model_profile_desc_link_right {
  width: 70px;
  height: auto;
}
.model_access {
  overflow: hidden;
  margin: 0 calc(50% - 50vw) 130px;
}
.model_access_label {
  font-size: 32px;
  font-weight: 400;
  color: #8e755b;
  text-align: center;
  font-family: Barlow;
  letter-spacing: 0.04rem;
}
.model_access_address {
  text-align: center;
  font-size: 16px;
  margin-bottom: 32px;
}
.model_access_link {
  color: #6a929c;
  font-size: 13px;
}
.model_access_link span {
  border-bottom: 1px dotted;
}
.model_access iframe {
  width: 100vw;
}
main.contact.modelroom .request_form .eventform {
  background: url(img/single_bg_work.jpg);
}
/**
* modal
**********************/
.modal_bg {
  display: none;
  position: fixed;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}
.modal_wrap {
  padding: 64px 80px;
  background: white;
  max-width: 1040px;
}
.modal_title {
  font-family: 'Noto Serif JP', serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.04rem;
  margin-bottom: 40px;
}
.modal_content_img {
  max-width: 320px;
  width: 100%;
  margin-right: 60px;
}
.modal_content_desc {
  flex: 1;
}
.modal_desc {
  margin-bottom: 20px;
}
.modal_desc p:not(:first-child) {
  display: none;
}
.modal_close {
  margin: 56px auto 0;
  display: table;
  border-radius: 16px;
  padding: 3px 30px;
  border-color: #2c2825;
  font-weight: 500;
  transition: 0.3s ease;
}
.modal_close span {
  position: relative;
  right: -16px;
}
.modal_close:hover {
  transition: 0.3s ease;
  opacity: 0.5;
}

/**
* sidemenu
**********************/
.sidemenu {
  position: fixed;
  background: rgba(106, 146, 156, 1);
  color: white;
  width: 75%;
  height: 100%;
  z-index: 5;
  top: 0;
  right: 0;
  padding: 5%;
  transform: translateX(100%);
  transition: 0.5s ease;
}
.sidemenu.open {
  transform: translateX(0);
  transition: 1s ease;
  display: block;
}
/*
.sidemenu:after {
    content: '';
    width: 100vw;
    height: 100%;
    background: #2C2825;
    position: fixed;
    z-index: 0;
    top: 0;
    left: 0;
	visibility:hidden;
	display:none;
	opacity:0;
	transform: translateX(-5px);
	transition:1.5s ease;
}
.sidemenu.open:after{
    z-index: 3;
	visibility:visible;
	display:block;
	opacity:.6;
	transition:1.5s ease;
}
*/
.sidemenu.active:before {
  transform: translateX(0%);
  transition: 1s ease;
}
.sidemenu_inner {
  align-items: center;
  justify-content: center;
  position: absolute;
  width: -webkit-fill-available;
  top: 50%;
  transform: translateY(-50%);
}

.sidemenu_inner > * {
  max-width: 50%;
  flex: 0 0 50%;
}

#sidemenu {
  list-style: disc;
  padding: 0 2rem;
  border-right: 1px solid rgba(90, 132, 143, 1);
}

.sidemenu li a {
  color: white;
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0.04em;
  text-align: left;
  margin-bottom: 2rem;
  display: inline-block;
}

.sidemenu li:last-child a {
  margin-bottom: 0;
}

.sidemenu_right {
  max-width: 42%;
  flex: 0 0 42%;
  margin-left: 8%;
  margin-top: auto;
}

.sidemenu .footer_cta_btn {
  background: rgb(236, 233, 229);
  border: 1px solid rgb(236, 233, 229);
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: 0.04em;
  display: block;
  padding: 20px 30px 20px 56px;
  margin-bottom: 22px;
  border-radius: 4px;
  background-repeat: no-repeat;
  background-position: 10% center;
  width: 300px;
  text-align: center;
}
.sidemenu .footer_cta_btn:first-child {
  background-image: url(img/footer_cta_mail.svg);
  font-family: 'Noto Sans JP', sans-serif;
}
.sidemenu .footer_cta_btn:nth-child(2) {
  background-image: url(img/footer_cta_phone.svg);
  font-family: 'Noto Sans JP', sans-serif;
}
.sidemenu .footer_cta_btn:last-child {
  margin-bottom: 0;
  background-image: url(img/footer_cta_model.svg);
  font-family: 'Noto Sans JP', sans-serif;
}

.sidemenu_right .footer_sns .footer_sns_item a {
  margin-bottom: 0;
}

.sidemenu .footer_contact_title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  letter-spacing: 0.07em;
  margin-top: 40px;
}

.sidemenu .footer_contact_desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 10px;
  letter-spacing: 0.07em;
  font-family: Barlow;
}

.sidemenu .footer_contact_desc a,
.navigation .footer_contact_desc a{
  color: #fff;
  text-decoration: underline;
}

.sidemenu .footer_contact_desc span{
  display: block;
  font-size: 12px;
}

.navigation .footer_contact_desc span{
display: block;
font-size: 18px;
}


.sidemenu_right .footer_sns {
  justify-content: flex-start;
  margin-top: 40px;
}

.sidemenu_right .footer_sns .footer_sns_item {
  margin-right: 24px;
}

header #site-navigation .hamburger-menu.slidein .hamburger-menu-element {
  background: white;
  z-index: 8;
}
header #site-navigation .hamburger-menu.slidein::after {
  color: white;
  z-index: 8;
}

header #site-navigation .hamburger-menu.active .hamburger-menu-element--1 {
  top: 8.5px;
  -webkit-transform: rotate(20deg);
  -moz-transform: rotate(20deg);
  transform: rotate(20deg) translateX(-50%);
  transition: 0.5s ease;
  left: 50%;
  background: white;
}

header #site-navigation .hamburger-menu.active .hamburger-menu-element--2,
header #site-navigation .hamburger-menu.active .hamburger-menu-element--3 {
  top: -5px;
  -webkit-transform: rotate(-20deg);
  -moz-transform: rotate(-20deg);
  transform: rotate(-20deg) translateX(-50%);
  transition: 0.5s ease;
  left: 50%;
  background: white;
}

@media (min-width: 1281px) {
  .works_single .swiper {
    margin: 0 auto;
    right: 60px;
  }
  .works_single .swiper-thumbs {
    margin: 0 auto;
    right: 50px;
  }
  main.contact.singlemain.modelroom .voice_header .postthumbnail {
    max-width: 950px;
    max-height: unset;
    height: auto;
    object-fit: cover;
    object-position: center;
    position: relative;
    top: 0;
    left: 50%;
    transform: translate(-50%);
    margin: 0;
  }
  .imgwrap {
    max-height: 674px;
    overflow: hidden;
    max-width: calc(100vw - 480px);
    margin: 35px 0 80px;
    position: absolute;
    right: 0;
  }
}

@media (max-width: 1240px) {
  .works_single .swiper {
    width: 100%;
    right: -15px;
  }
  .works_single .swiper-thumbs {
    width: 100%;
    right: -25px;
  }
  .swiper_arrow {
    position: relative;
    width: 100%;
    height: auto !important;
    width: calc(100% - 40px);
    margin: 0 auto;
    right: unset;
    display: flex;
    flex-wrap: wrap;
    margin: 65px auto 20px;
    justify-content: space-between;
    max-width: 900px;
  }
  .works_single .swiper-scrollbar,
  .swiper_arrow .swiper-button-prev,
  .swiper_arrow .swiper-button-next {
    position: unset;
    transform: unset;
  }
  .works_single .swiper-scrollbar {
    order: 2;
    flex: 0 0 65%;
    margin: 0 10px;
  }
  .swiper_arrow .swiper-button-prev {
    order: 1;
    width: auto;
    height: auto;
  }
  .swiper_arrow .swiper-button-next {
    order: 3;
    width: auto;
    height: auto;
    margin-top: -17px;
  }
  .swiper_arrow .swiper-button-prev a,
  .swiper_arrow .swiper-button-next a {
    width: 40px;
    height: 40px;
    transform: unset;
  }
  .swiper_arrow .swiper-button-prev a img {
    transform: rotate(90deg);
    margin-top: 9px;
  }
  .swiper_arrow .swiper-button-next a img {
    transform: rotate(270deg);
    margin-top: 9px;
  }

  .swiper_arrow .swiper-button-prev span {
    bottom: unset;
    margin-left: 10px;
    position: relative;
  }

  .swiper_arrow .swiper-button-next span {
    top: unset;
    margin-right: 10px;
    position: relative;
  }
}

@media (max-width: 1050px) {
  header #site-navigation #main-menu li a {
    margin-right: 16px;
    font-size: 18px;
    color: white;
    font-family: 'Noto Serif JP', serif;
    margin-bottom: 24px;
    display: inline-block;
  }

  header #site-navigation #main-menu li a::before {
    content: '';
    background: #8aa69c;
    display: inline-block;
    margin-right: 18px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
  }
  header #site-navigation #main-menu {
    display: block;
    padding: 84px 0 48px 25px;
    box-sizing: border-box;
    width: 100%;
    margin-right: 0;
  }
  body.fixed {
    overflow: hidden;
  }
  header {
    padding: 20px 20px 10px 10px;
    margin: 0;
    position: sticky;
    top: 0;
    z-index: 10;
    background: white;
  }
  .top_column_title_wrap,
  .top_model_img,
  .top_model_img_matterport {
    max-width: 100%;
  }
  header #site-navigation #navigation-logo img {
    max-width: 142px;
  }
  header #site-navigation .hamburger-menu.active .hamburger-menu-element--1 {
    top: 8.5px;
    -webkit-transform: rotate(20deg);
    -moz-transform: rotate(20deg);
    transform: rotate(20deg) translateX(-50%);
    transition: 0.5s ease;
    left: 50%;
    background: white;
  }

  header #site-navigation .hamburger-menu.active .hamburger-menu-element--2,
  header #site-navigation .hamburger-menu.active .hamburger-menu-element--3 {
    top: -5px;
    -webkit-transform: rotate(-20deg);
    -moz-transform: rotate(-20deg);
    transform: rotate(-20deg) translateX(-50%);
    transition: 0.5s ease;
    left: 50%;
    background: white;
  }
  header #site-navigation .hamburger-menu.active::after {
    color: white;
  }
  .menuright {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    background: #fff;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.6s ease, visibility 0.6s ease;
  }
  .menuright.spmenu {
    width: 100%;
    display: block;
  }
  .menuright.active {
    visibility: visible;
    opacity: 100;
    height: 100%;
    overflow: scroll;
    width: 100% !important;
  }
  header #site-navigation .hamburger-menu {
    top: 0;
    left: 0;
    z-index: 2;
  }
  header #site-navigation .hamburger-menu::after {
    letter-spacing: 0.1rem;
    text-align: center;
    transform: translateX(-48%);
  }
  .menuright:before {
    content: '';
    width: 100%;
    height: 100%;
    background: #6a929c;
    position: fixed;
  }
  header #site-navigation .active.spmenu #main-menu {
    /* display: block;
    margin: 84px 25px 48px;
    width: 100%; */
  }
  header #site-navigation .spmenu #main-menu li:last-child a {
    background: none;
    color: white;
    padding: 0;
    border-radius: 2px;
    margin-right: 0;
  }
  .menuright.spmenu .footer_cta {
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  .menuright.spmenu .footer_cta::before {
    content: none;
  }
  .menuright ul:not(.sub-menu) {
  }

  .menuright ul li {
    list-style-type: none;
    padding: 0;
    width: 100% !important;
    transition: 0.4s all;
  }

  .menurightul li a {
    display: block;
    padding: 1em 0;
    text-decoration: none;
  }

  .menuright > ul > li {
  }
  .menuright > ul > li:nth-child(6) {
  }

  header #site-navigation .spmenu ul#main-menu li a {
    pointer-events: auto;
  }
  header #site-navigation .spmenu #main-menu li:nth-child(4) a,
  header #site-navigation .spmenu #main-menu li:nth-child(5) a {
    pointer-events: none;
  }

  .footer_contact {
    position: relative;
    padding: 36px 20px 32px;
    color: white;
  }
  .footer_contact_title {
    font-size: 14px;
    font-weight: 500;
  }
  .footer_contact_title {
    font-size: 13px;
    margin-bottom: 6px;
  }
  .menuright.spmenu .footer_sns {
    position: relative;
    border: 0;
    justify-content: flex-start;
    margin-bottom: 33px;
    padding: 0 15px;
  }
  .menuright.spmenu .footer_sns .footer_sns_item {
    width: auto !important;
    margin-right: 25px;
    max-width: max-content;
  }
}
@media (max-width: 940px) /* tablet SPmenu */ {
  #top_mv {
    margin-top: 30px;
  }
  .top_mv_tagline_left {
    max-width: 133px;
  }
}
@media (max-width: 480px) {
  .spdfcenter {
    display: flex;
    justify-content: center;
  }
  .pconly {
    display: none;
  }
  .sponly {
    display: block;
  }
  body::before {
    content: none;
  }
  .top_mv_tagline_right {
    right: 5%;
    max-width: 96px;
  }
  .top_mv_tagline h1 {
    max-width: 315px;
    padding: 240px 0 70px;
    margin: 0px auto;
  }
  .news_1 {
    margin: 0px 20px;
    left: unset;
  }
  .news_1_label {
    margin-bottom: 12px;
    display: block;
  }
  .news_1_link {
    display: block;
    width: 100%;
  }
  #top_happiness {
    margin-top: 30px;
  }
  .top_happiness_wrap {
    padding: 44px 20px 88px;
    margin-top: 45px;
  }
  .top_happiness_center {
    top: -85px;
    max-width: 85%;
    left: 0;
    width: 100%;
    transform: translateX(0);
  }
  .top_happiness_title {
    font-size: 24px;
    font-weight: 400;
    line-height: 43px;
    margin-top: 0;
    left: 0;
    justify-content: flex-start;
  }
  .top_happiness_desc {
    font-size: 16px;
    left: unset;
    margin-top: 24px;
    line-height: 32px;
  }
  #top_reno {
    margin: 80px auto;
    padding: 20px;
  }
  .top_reno_title {
    font-size: 28px;
    line-height: 40px;
    width: 100%;
    letter-spacing: 0.04em;
  }
  .top_reno_title span {
    right: 8%;
  }
  .top_reno_2 {
    justify-content: flex-end;
    width: 100%;
    position: relative;
    right: -20px;
  }
  .top_reno_2_item {
    display: flex;
  }
  .top_reno_2_item img {
    max-width: 320px;
  }
  .top_reno_2_item_title {
    font-size: 19px;
    line-height: 30px;
    width: 75%;
  }
  .reno_bottom img {
    padding: 16.5px 11px;
  }
  .reno_bottom > svg {
    padding: 16.5px 11px;
  }
  .reno_bottom {
    width: calc(100% - 40px);
  }
  #top_work {
    padding-bottom: 145px;
  }
  .top_work_title_wrap {
    top: 0px;
    left: 42%;
  }
  .top_work_img {
    width: 85%;
  }
  .top_work_movie {
    padding-top: 80px;
  }
  .top_work_movie {
    top: 60px;
    position: relative;
  }
  .top_work_movie_link {
    width: 64px;
    height: 64px;
    font-size: 10px;
    line-height: 15px;
    top: 44%;
    transform: translate(50%, 50%);
    right: 15%;
  }
  .top_work_movie_link::after {
    border-left: 5.5px solid transparent;
    border-right: 5.5px solid transparent;
    border-bottom: calc(tan(60deg) * 4.5px) solid #ffffff;
  }
  .top_work_wrap {
    padding: 20px;
    margin-top: 40px;
  }
  .top_work_desc {
    margin: 43px 0 53px;
  }
  .top_work_list.grid3 {
    grid-template-columns: 1fr 1fr;
    gap: 20px 16px;
    margin-bottom: 48px;
  }
  .top_work_list_item:nth-child(2),
  .top_work_list_item:nth-child(5) {
    margin-top: 0px;
  }
  .top_work_list_item:nth-child(3),
  .top_work_list_item:nth-child(6) {
    margin-top: 0px;
  }
  .top_work_list_item_txt {
    flex-direction: column;
    margin-top: 0px;
    align-items: flex-start;
  }
  .top_work_list_item_title {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 8px;
  }
  .top_work_list_item_txt > img {
    padding: 9px 7px;
    width: 24px;
  }
  .top_work_link {
    margin: 0 auto;
  }
  .top_work_list_item_cat {
    bottom: 8px;
    left: 8px;
  }
  #top_voice {
    padding-bottom: 280px;
  }
  .top_voice_img_left {
    max-width: 134px;
    top: -50px;
  }
  .top_voice_img_right {
    max-width: 224px;
    top: unset;
    bottom: 0;
  }
  .top_voice_title_wrap {
    left: 0;
    max-width: 100%;
    top: 75px;
    padding: 0 30px 0 20px;
    transform: none;
  }
  .top_voice_title {
    margin-left: auto;
    display: table;
    font-size: 28px;
  }
  .top_voice_title span {
    margin-top: 5px;
  }
  #top_model {
    padding-bottom: 40px;
  }
  .top_model_img {
    max-width: 160px;
  }
  .top_model_title_wrap {
    position: relative;
    width: auto;
    left: unset;
    right: 10%;
    margin-left: auto;
    display: table;
  }
  .top_model_title {
    font-size: 28px;
  }
  .top_model_title span {
    margin-top: 5px;
  }
  .top_model_wrap {
    margin-top: 48px;
    position: relative;
    top: unset;
    left: unset;
    padding: 20px;
  }
  .top_model_subtitle {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 30px;
  }
  .top_model_link {
    display: table;
    margin: 40px auto 55px;
  }
  .top_model_link_2 {
    padding: 20px 0px;
    width: 100%;
  }
  .top_model_img_matterport {
    bottom: -100px;
    padding: 20px;
  }
  #top_column {
  }
  .top_column_title_wrap {
    margin: 170px auto 0px;
    padding-bottom: 88px;
  }
  .top_column_title {
    margin: 0 auto 44px;
    font-size: 28px;
  }
  .top_column_title span {
    margin: 8px auto 0;
  }
  .top_column_title_wrap .columnlist {
    grid-template-columns: 1fr 1fr;
    gap: 32px 15px;
    padding: 0;
  }
  .top_column_title_wrap .columnlist .postsarchive_item:nth-child(5),
  .top_column_title_wrap .columnlist .postsarchive_item:nth-child(6),
  .eventlist .postsarchive_item:nth-child(3),
  .eventlist .postsarchive_item:nth-child(4) {
    display: none;
  }
  .top_column_title_wrap .postsarchive_image {
    margin-bottom: 0px;
  }
  .top_column_title_wrap .postsarchive_date {
    font-size: 13px;
  }
  .top_column_title_wrap .postsarchive_cat {
    display: block;
    margin: 0;
    font-size: 13px;
  }
  .top_column_title_wrap .postsarchive_title {
    margin-top: 7px;
    font-size: 14px;
  }
  .top_column_link {
    margin: 48px auto 0;
  }
  .top_column_title_wrap {
    margin: 70px 20px 0px;
  }


  #top_event {
    padding: 0;
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 18%, rgba(252,249,245,1) 18%);
  }
  #top_event .postsarchive_item {
    display: block!important;
  }

  #top_event .postsarchive_item a{
    display: block;
    max-width: 280px;
  }

  #top_event .columnlist {
    margin: 0 auto;
    grid-template-columns: 1fr;
    place-items: center;
  }

  .top_event_title {
    font-size: 28px;
  }

  .top_event_title span {
    margin-top: 8px;
  }
  #top_about {
  }
  .top_about_title_wrap {
    padding: 28px 15px 0px;
  }
  .top_about_staff_list {
    padding: 0;
    margin-left: 22px;
    margin-top: -40px;
    padding-top: 40px;
  }
  .top_about_title {
    font-size: 28px;
  }
  .top_about_title span {
    margin-top: 3px;
  }
  .top_about_staff_list .staff_list {
    max-width: unset;
    padding: 0px 0px 0;
    position: relative;
    top: 0px;
    margin-left: 20px;
  }
  .top_about_staff_list .postnavigation {
    margin-bottom: 44px;
    position: sticky;
    left: 0;
  }
  .top_about_staff_list .nav-next:not(.sponly) {
    display: none;
  }
  .staff_list_wrap {
    padding-left: 20px;
  }
  .staff_list_item {
    /*margin-bottom: 28px;*/
  }
  .top_about_staff_list .nav-next.sponly {
    display: table;
    margin: 0 auto;
    margin-top: 45px;
  }
  .top_about_staff_company {
    margin: 80px auto 0;
  }
  .top_about_staff_company picture img {
    padding: 20px;
  }
  .top_about_staff_company_label {
    font-size: 24px;
    margin-bottom: 3px;
  }
  .top_about_staff_company_title {
    font-size: 14px;
  }
  .top_about_staff_company_text img {
    padding: 17px 11.5px;
    border: 1px solid white;
    border-radius: 50%;
    margin-left: 20px;
  }

  /**
	* works - sp
	**********************/
  .postsarchive_header {
    padding: 76px 20px 0px;
    height: 205px;
    max-width: 100%;
  }
  .postsarchive_header_title {
    font-size: 32px;
    margin-bottom: 50px;
    margin: 0 20px;
  }
  .page .postsarchive_header_title {
    display: contents;
  }
  .postsarchive_header_title span {
    margin-top: 10px;
  }
  .works_header {
    height: auto;
    margin-top: 15px;
  }
  .works_cat_list {
    width: 100%;
    padding: 25px 15px 25px 25px;
    border-top: 1px solid #f4f4f4;
    border-bottom: 1px solid #f4f4f4;
  }
  .works_header .postsarchive_header_title {
    position: relative;
    left: unset;
    transform: unset;
    margin-left: 0;
    margin-bottom: 53px;
  }
  .works_cat_list_item a {
    margin-left: auto;
  }
  .archive_wrap {
    margin: 64px auto 120px;
  }
  .workslist {
    padding: 0 20px;
    grid-template-columns: 1fr;
    gap: 44px 0;
  }
  .workslist .postsarchive_image {
    margin-bottom: 12px;
  }
  .works_txt > div {
    max-width: 86%;
  }
  .works_area {
    display: none;
  }
  .works_txt {
    align-items: flex-start;
  }
  .works_txt > svg {
    padding: 11px 7px;
    margin-top: 3px;
    width: 12px;
  }
  .loading_wrap {
    margin: 0px auto;
    max-width: calc(100% - 40px);
  }
  .loadingbtn {
    padding: 17px;
    margin: 60px 0px 0;
    width: 100vw;
    max-width: 100%;
    justify-content: center;
  }
  /**
	* works - single - sp
	**********************/
  .singlemain {
    margin: 80px auto;
  }
  .posttitle {
    font-size: 28px;
    line-height: 39px;
    margin: 0 20px;
  }
  .works_title.posttitle {
    margin: 0 20px;
  }
  .area_name {
    margin: 15px 20px 52px;
  }
  .works_single .slick-dots {
    padding: 0 20px;
  }
  .works_single .postbg {
    top: 380px;
    background: url(img/single_bg_work.jpg) repeat;
  }
  .works_single .swiper {
    overflow-x: hidden;
    padding-bottom: 10px;
    right: unset;
  }
  .works_single .swiper-thumbs {
    max-width: 100%;
    margin: 5px 20px;
    right: unset;
    width: auto;
  }
  .works_single .swiper-thumbs .swiper-wrapper {
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 5px 0;
  }
  .works_single .swiper-thumbs .swiper-slide {
    max-width: 64px;
    max-height: 38px;
    margin: 0;
    margin-right: 3px;
    margin-bottom: 4px;
  }
  .works_single .swiper-thumbs .swiper-slide:nth-child(5n) {
    margin-right: 0;
  }
  .works_single .swiper .swiper-slide img {
    aspect-ratio: 375/222;
  }
  /*
	.works_single .swiper .slick-arrow {
		position: absolute;
		right: unset;
		top: unset;
		bottom: 0;
		left: 20px;
		display:flex!important;
		align-items:center;
	}
	.works_single .slider .slick-track + .slick-arrow{
		top: unset;
		left: unset;
		right:20px;
		display:flex!important;
		align-items:center;
	}
	.works_single .slider .slick-prev{
		background:transparent;
		transform: unset;
	}
	.works_single .slider .slick-next{
		background:transparent;
		transform: unset;
	}
	.totalnum, .works_single .slider .slick-prev + span{
		position:unset;
		margin-left: 10px;
	}
	.works_single .slider .slick-arrow span.totalnum{
		margin-right:10px;
	}
	.works_single .slider .slick-prev img {
		transform: rotate(90deg);
	}
	.works_single .slider .slick-next img {
		transform: rotate(270deg);
	}
	*/
  .swiper_arrow {
    position: relative;
    width: 100%;
    height: auto !important;
    width: calc(100% - 40px);
    margin: 0 auto;
    right: unset;
    display: flex;
    flex-wrap: wrap;
    margin: 35px auto 20px;
    justify-content: space-between;
  }
  .works_single .swiper-scrollbar,
  .swiper_arrow .swiper-button-prev,
  .swiper_arrow .swiper-button-next {
    position: unset;
    transform: unset;
  }
  .works_single .swiper-scrollbar {
    order: 2;
    flex: 0 0 59%;
    margin: 0 10px;
  }
  .swiper_arrow .swiper-button-prev {
    order: 1;
    width: auto;
    height: auto;
  }
  .swiper_arrow .swiper-button-next {
    order: 3;
    width: auto;
    height: auto;
    margin-top: -17px;
  }
  .swiper_arrow .swiper-button-prev a,
  .swiper_arrow .swiper-button-next a {
    width: 40px;
    height: 40px;
    transform: unset;
  }
  .swiper_arrow .swiper-button-prev a img {
    transform: rotate(90deg);
    margin-top: 9px;
  }
  .swiper_arrow .swiper-button-next a img {
    transform: rotate(270deg);
    margin-top: 9px;
  }

  .swiper_arrow .swiper-button-prev span {
    bottom: unset;
    margin-left: 10px;
    position: relative;
  }

  .swiper_arrow .swiper-button-next span {
    top: unset;
    margin-right: 10px;
    position: relative;
  }
  .myImageCompare {
    margin: 0;
    margin-bottom: 24px;
  }
  .myImageCompare + p {
    margin-bottom: 24px;
  }
  .images-compare-container .images-compare-before .images-compare-label,
  .images-compare-container .images-compare-after .images-compare-label {
    font-size: 13px;
    padding: 3px 2px;
    line-height: 1.5;
  }
  p.works_after_ba {
    margin: 40px auto;
  }
  .works_single_title {
    font-size: 24px;
    margin-bottom: 24px;
    margin-top: 60px;
    line-height: 1.6;
  }
  .works_single_title img {
    width: 24px;
    margin-right: 7px;
  }
  .works_movie,
  .works_floormap,
  .works_beforeafter {
    max-width: 100%;
  }
  .works_movie {
    margin: 0 auto;
    width: calc(100% - 40px);
  }
  .works_beforeafter {
    margin-top: 64px;
    margin-bottom: 40px;
  }
  .works_text_img_wrap {
    width: calc(100% - 40px);
    margin: 0 auto;
  }
  p.works_text_img_txt {
    padding: 12px 15px;
    font-size: 14px;
    line-height: 1.5;
  }
  .works_hr {
    width: calc(100% - 40px);
    margin: 0 auto;
  }
  .works_movie_link span {
    width: 64px;
    height: 64px;
    font-size: 10px;
  }
  .works_movie_link span::after {
    border-left: 4px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: calc(tan(60deg) * 5.5px) solid #ffffff;
    margin-top: 0;
  }
  .works_pickup {
    padding: 80px 20px 30px;
    border-left: unset;
    border-top: 4px solid #8e755b;
    margin-bottom: 64px;
    margin-top: 64px;
  }
  .works_pickup_label {
    padding: 0;
    font-size: 20px;
    left: 20px;
    top: 20px;
  }
  .works_pickup_wrap {
  }
  .works_pickup_wrap .works_pickup_desc,
  .works_pickup_wrap .works_pickup_img {
    max-width: 100%;
    flex: 100%;
    margin: 0 auto;
  }
  .works_pickup_wrap .works_pickup_img {
    margin-bottom: 20px;
  }
  .works_floormap {
    margin: 56px auto 96px;
  }
  .works_floormap_label {
    font-size: 24px;
    margin-bottom: 28px;
  }
  .works_floormap_wrap {
    flex-direction: column;
    margin: 0 auto 72px;
    padding: 0 20px;
  }
  .works_floormap_wrap > * {
    max-width: 100%;
    flex: 0 0 100%;
  }
  .works_floormap_wrap > * img {
    margin: 0;
    padding: 15px 5px;
    background: white;
  }
  .works_floormap_before::after {
    width: 22px;
    top: unset;
    left: 45%;
    bottom: -22.5%;
    content: url(img/single_work_arrow_sp.svg);
  }
  .works_floormap_info_wrap > * {
    max-width: 100%;
    flex: 0 0 100%;
  }
  .works_floormap_data_label,
  .works_floormap_message_label {
    top: 8px;
    font-size: 18px;
  }
  .works_floormap_info_wrap > * {
    padding: 58px 0 28px;
  }
  .works_floormap_info_wrap .works_floormap_data {
    margin-bottom: 24px;
    padding-bottom: 0;
  }
  .works_floormap_data_list:last-child {
    background-image: unset;
  }
  /**
	* voice - sp
	**********************/
  .voicearchive {
    width: 100%;
    padding: 0 20px;
  }
  .archive_wrap.voice_wrap {
    margin-top: 70px;
  }
  .postsarchive_header.voice_header {
    padding-left: 0;
    margin: 0 20px;
    max-width: 100%;
  }
  .voice_slider {
    width: 100%;
    max-width: 50px;
  }
  .voice_slider_line .scrol_circle {
    display: none;
  }
  .voice_slider_line::after {
    content: none;
  }
  .voice_slider_line {
    border-left: none;
    position: relative;
    top: 4%;
  }
  .voicelist {
    flex: 0 0 100%;
    max-width: 280px;
  }
  .voicelist .postsarchive_image {
    margin-right: 0;
  }
  .voice_slider_line::before {
    top: 0%;
  }
  .voice_time {
    margin-bottom: 2px;
    margin-top: 12px;
  }
  .voicesarchive_title {
    font-size: 16px;
    line-height: 1.6;
  }
  .c_name {
    font-size: 14px;
  }
  .c_name + span {
    font-size: 14px;
  }
  .voice_detail {
    margin-top: 6px;
    margin-bottom: 0px;
  }
  .voice_txt > img {
    padding: 11px 7px;
    margin-left: auto;
    display: block;
  }
  .voicelist .loadingbtn {
    max-width: calc(100vw - 40px);
    margin: 0 calc(48% - 50vw);
  }
  .voicelist .loading_num {
    display: block;
    margin: 5px auto 40px;
    max-width: calc(100vw - 40px);
    margin: 16px calc(48% - 50vw);
    text-align: center;
  }
  /**
	* voice - single - sp
	**********************/
  .single .voice_header {
    padding: 0 20px;
  }
  .single .voice_header > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .voicemeta {
    margin-bottom: 24px;
  }
  .posttitle {
    margin-left: 0;
    margin-bottom: 12px;
  }
  .voice_header_txt .voice_detail {
    margin-bottom: 50px;
  }
  .voice_header .postthumbnail {
    max-width: calc(100% + 20px);
    margin-left: 0px;
    width: 110%;
  }
  .voice_spec {
    max-width: 100%;
    padding: 0 20px;
    margin: 64px auto 80px;
  }
  .voice_spec tr {
    border-top: none;
    border-bottom: 1px dotted rgba(197, 197, 197, 1);
    display: flex;
  }
  .voice_spec th,
  .voice_spec td {
    width: 50%;
    padding: 10px 0px;
  }
  .voice_single .postcontent {
    max-width: 100%;
    padding: 0 20px 96px;
    margin-bottom: 0;
    overflow-x: hidden;
    position: relative;
  }
  .voice_single .postbg {
    height: 93%;
    top: 7%;
  }
  .voice_single .postcontent figure {
    margin: 0px -120px;
  }
  .voice_single .postcontent h2 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 48px;
  }
  .postnavigation {
    max-width: 100%;
    margin: 0 auto;
    padding-top: 0px;
    padding: 0 20px;
  }
  .archivelink {
    padding: 24px;
    max-width: 65%;
    min-width: 207px;
    width: 100%;
    margin: 0 10px 0 0;
  }
  .single-voice .archivelink {
    font-size: 15px;
  }
  .nav-next,
  .nav-previous {
    font-size: 15px;
  }
  /**
	* column - sp
	**********************/
  .postsarchive_header.column_header {
    padding: 75px 16px 48px;
  }
  .column_header .postsarchive_header_title {
    margin-bottom: 0;
    display: contents;
  }
  .column_wrap.archive_wrap {
    margin: 72px auto 120px;
  }
  .column_wrap aside {
    width: 100%;
    text-align: center;
  }
  .column_wrap .aside_list {
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 26px;
  }
  #viewMoreBtn {
    text-transform: uppercase;
    background: rgb(219 217 214 / 30%);
    border: 0;
    border-radius: 42px;
    padding: 2px 18px 2px 31px;
    margin-bottom: 80px;
    display: table;
    text-align: left;
    margin-top: 6px;
    margin-left: 20px;
    font-size: 13px;
    font-family: Barlow;
    letter-spacing: 0.08rem;
    position: relative;
  }
  #viewMoreBtn::before {
    content: url(img/columnmenu_arrow.svg);
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
  }
  #viewMoreBtn.columnmenu_open::before {
    transform: translateY(-50%) rotate(180deg);
    transition: 0.3s ease;
  }
  #viewMoreBtn:hover,
  #viewMoreBtn:visited {
    opacity: 1;
  }
  .column_wrap .aside_list .aside_list_item {
    margin-right: 14px;
    margin-bottom: 16px;
    padding: 2px 4px 10px;
  }
  .columnlist {
    grid-template-columns: 1fr 1fr;
    padding: 0 20px;
    gap: 32px 15px;
  }
  .column_wrap .loadingbtn {
    max-width: calc(100vw - 40px);
    margin: 80px auto 0;
  }
  .column_wrap .loading_num {
    max-width: calc(100vw - 40px);
    margin: 18px auto 0;
  }
  /**
	* column - single - sp
	**********************/
  .column_single .postwrap {
    padding-bottom: 10%;
  }
  .column_single .postwrap .postmeta {
    padding: 0 20px;
  }
  .column_single .postwrap .column_title {
    padding: 0 20px;
  }
  .column_single .postwrap .column_title {
    padding: 0 20px;
    margin: 16px auto 52px;
  }
  .column_single .postbg {
    height: 92%;
    top: 8%;
  }
  .column_single .postcontent {
    padding: 0 20px;
  }
  .column_single .postcontent > h2:first-of-type {
    margin-top: 0;
  }
  .column_single .postcontent > h2 {
    font-size: 24px;
  }
  .postcontent h4::before {
    top: 25%;
  }
  .postcontent li::before {
    top: 23%;
  }
  .postcontent figure {
    margin: 0;
  }
  /**
	* staff - sp
	**********************/
  .staff_header.postsarchive_header {
    padding-top: 96px;
    margin-bottom: 70px;
  }
  .staff_wrap .stafflist {
    padding: 0 20px;
    grid-template-columns: 1fr 1fr;
    gap: 44px 18px;
  }
  .postsarchive_item .staff_position {
    margin: 0px 0 8px;
    font-size: 14px;
  }
  .staffsarchive_title {
    font-size: 18px;
    margin-bottom: 2px;
  }
  .stafflist .name_english {
    font-size: 14px;
    margin-top: 0;
  }
  .staff_bottom {
    align-items: unset;
    flex-direction: column;
  }
  .staff_bottom > svg {
    padding: 8.5px 6px;
    width: 10px;
  }
  /**
	* Staff - single - sp
	**********************/
  .staff_header_left {
    padding: 0 20px;
    flex: 0 0 100%;
  }
  .staff_header_left .posttitle {
    font-size: 26px;
  }
  .staff_header_left .posttitle br {
    display: none;
  }
  .staff_position {
    font-size: 13px;
    margin-bottom: 0px;
  }
  .staffname {
    font-size: 18px;
    line-height: 1.6;
  }
  .name_english {
    font-size: 13px;
  }
  .staffimage {
    max-width: 240px;
    margin: 64px auto 72px;
  }
  .staff_header {
    margin-bottom: 0;
  }
  .staffbg {
    padding: 1px 20px 88px;
    margin-top: -180px;
    padding-top: 110px;
  }
  .staffbg h2 {
    margin-bottom: 28px;
    font-size: 24px;
  }
  .staffbg h2 br {
    display: none;
  }
  .staffbg p {
    margin-bottom: 16px;
  }
  .staffbg .postcontent img {
    margin: 0px auto;
  }
  /**
	* Event - sp
	**********************/
  .postsarchive_header.event_header {
    padding: 75px 16px 1px;
  }
  .postsarchive_header.event_header .postsarchive_header_title {
    display: contents;
  }
  .event_wrap aside {
    width: 100%;
    text-align: center;
  }
  .event_wrap .aside_list {
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 80px;
    justify-content: center;
  }
  .event_wrap .eventlist {
    padding: 0 20px;
  }
  .event_wrap .aside_list .aside_list_item {
    margin-right: 14px;
    margin-bottom: 16px;
    padding: 2px 4px 10px;
  }
  .eventlist .eventlist .postsarchive_image {
    margin-right: 20px;
    max-width: 110px;
  }
  .eventlist .eventend .enddesc{
    font-size: 12px;
    line-height: 17px;
    margin-top: 14px;
  }
  .event_wrap .loadingbtn {
    max-width: calc(100vw - 40px);
    margin: 80px auto 0;
  }
  .event_wrap .loading_num {
    max-width: calc(100vw - 40px);
    margin: 18px auto 0;
  }
  .event_wrap .eventlist .postsarchive_title {
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
  }
  .event_wrap .eventlist .postsarchive_item {
    margin-bottom: 32px;
  }
  /**
	* Event - single - sp
	**********************/
  .event_single .postwrap {
    padding-bottom: 10%;
  }
  .event_single .event_single_header {
    padding: 0 20px;
  }
  .event_single .event_single_header .postsarchive_date {
    font-size: 20px;
  }
  .postsarchive_date span {
    font-size: 13px;
    padding: 1px 12px;
  }
  .event_single .event_title {
    margin: 16px auto 52px;
    font-size: 26px;
  }
  .event_single .eventbg {
    height: 92%;
    top: 8%;
    padding: 24px 0 1px;
    margin-bottom: 40px;
  }
  .event_single .postcontent {
    padding: 0 20px;
  }
  .postcontent img.event_main {
    margin-bottom: 0;
  }
  .event_single .postcontent h2 {
    font-size: 24px;
    line-height: 34px;
    margin-top: 64px;
  }
  .postcontent h3 {
    font-size: 22px;
  }
  .eventform {
    max-width: calc(100% - 40px);
    margin: 0 auto;
    padding: 36px 20px 0;
  }
  .eventform form.wpcf7-form tr {
    flex-direction: column;
    padding: 24px 0;
    border-bottom: 0;
  }
  .eventform form.wpcf7-form tr th,
  .eventform form.wpcf7-form tr td {
    width: 100%;
  }
  .eventform form.wpcf7-form tr th {
    padding: 0;
    margin-bottom: 10px;
  }
  .eventform form.wpcf7-form tr td {
    padding: 0;
  }
  .eventform form.wpcf7-form input.wpcf7-submit {
    padding: 22px;
    width: 100%;
    display: block;
    margin-bottom: 24px;
    margin-top: 56px;
  }
  .eventform_title {
    font-size: 22px;
    margin-bottom: 40px;
  }
  .mandatory_form {
    font-size: 14px;
    margin-top: 6px;
  }
  .eventform form.wpcf7-form {
    margin-top: 20px;
    margin-bottom: 0;
  }
  .eventform form.wpcf7-form .voice_spec {
    margin: 0;
    padding: 0;
  }
  .event_cal_index {
    display: block;
    margin-bottom: 4px;
    width: 100%;
  }
  .flex.event_cal:first-of-type {
    margin-top: 6px;
  }
  .event_cal .datepicker {
    max-width: calc(50% - 2px);
    min-width: unset;
    width: 100%;
    margin-right: 4px;
  }
  .flex.event_cal select {
    max-width: calc(50% - 2px);
    min-width: unset;
    width: 100%;
  }
  .eventform form.wpcf7-form td textarea {
    margin: 0;
  }
  .form_point p {
    letter-spacing: 0.02em;
  }
  .event_cta {
    background: url(img/event_cta_bg_sp.jpg);
    background-size: cover;
    padding: 70px 0 96px;
  }
  .event_cta::before {
    content: '';
    width: 101%;
    height: calc(100% - 96px);
    margin-top: 14px;
  }
  .event_cta_title {
    margin-bottom: 10px;
    font-size: 24px;
    text-align: center;
    line-height: 1.5;
  }
  .event_cta_desc {
    text-align: center;
  }
  .event_cta .footer_cta_btn {
    padding: 20px 45px 20px 85px;
  }
  .relatedtitle {
    font-size: 26px;
  }
  .eventrelated .staff_list_wrap {
    padding: 0 20px;
  }
  .eventrelated .staff_list {
    margin: 48px auto;
    max-width: 100%;
    overflow: unset;
    white-space: unset;
    border-bottom: 1px solid #dbd9d6;
  }
  .eventrelated .staff_list a {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    margin-right: 0;
  }
  .eventrelated .staff_list .event_list_item img {
    margin-right: 20px;
    max-width: 110px;
    height: auto;
  }
  .eventrelated .event_list_item .event_txt {
    flex: 1;
    margin: 0;
  }
  .eventrelated.eventnum1 .postnavigation {
    justify-content: flex-start;
  }
  .eventrelated.eventnum1 .event_list_item {
    margin: initial;
    display: flex;
  }
  .eventrelated .event_list_item {
    margin-bottom: 32px;
  }
  .eventrelated .event_list_item .event_txt .postsarchive_title {
    font-size: 15px;
  }
  .eventrelated .staff_list .enddesc {
    font-size: 12px;
    line-height: 17px;
    margin-top: 12px;
    color: rgba(44, 40, 37, 1);
    padding: 2px 6px;
    background: rgba(219, 217, 214, 1);
  }
  .eventrelated .event_list_item .event_txt .eventopen {
    color: rgba(186, 185, 185, 1);
  }
  /**
	* 会社概要　-sp
	**********************/
  .company_header::before {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  .company_header .postsarchive_header_title span {
    margin-top: 0px;
  }
  .company_header .postsarchive_header_title {
    padding-bottom: 40px;
  }
  .company_about {
    padding-bottom: 80px;
  }
  .company_about_title {
    margin-bottom: 45px;
  }
  .company_about_list {
    max-width: 100%;
    margin: 0 20px 88px;
    display: block;
  }
  .company_about_list dd {
    width: 100%;
    padding-bottom: 0;
    margin-bottom: 10px;
    border-bottom: none;
  }
  .company_about_list dt {
    width: 100%;
    padding-bottom: 22px;
    margin-bottom: 22px;
  }
  .company_about_location_title {
    margin-bottom: 18px;
  }
  .company_about_location_left {
    margin: 0 20px;
    width: calc(100% - 40px);
  }
  .company_about_location_list > *:nth-child(n + 2) {
    margin-top: 10px;
  }
  .company_about_location_list dd {
    width: 100%;
    margin-top: 20px !important;
  }
  .company_about_location_list dt {
    width: 100%;
    padding-left: 1rem;
  }

  .company_about_location {
    max-width: calc(100% - 40px);
  }
  .company_about_location_btn {
    max-width: 100%;
    width: 100%;
    margin-bottom: 56px;
    padding: 11px 0;
  }
  .office2 iframe {
    order: 2;
  }
  .office2 .company_about_location_left {
    order: 1;
    margin-left: 0;
  }
  .office2.company_about_location {
    margin-top: 56px;
  }
  .company_wrap_innder .concept_bottom {
    margin-top: 80px;
    padding: 0 20px;
  }
  .company_wrap_innder .concept1_cta_left {
    text-align: left;
  }
  .company_wrap_innder .concept1_cta_left img {
    width: 135px;
  }

  /***
	* Thank you ページ - sp
	********************************/
  .thankyou_top .thankyou_desc {
    font-size: 15px;
    margin: 30px 20px 72px;
  }
  .thankyou_top .thankyou_desc br {
  }
  .thankyou_youtube .thankyouyoutube_title {
    margin-bottom: 32px;
    font-size: 20px;
  }
  .thankyou_youtube iframe {
    max-width: calc(100% - 40px);
    margin: 0 auto 64px;
  }
  .thankyou_youtube .ctablack {
    padding: 22px 0 24px;
    font-size: 18px;
    width: calc(100% - 80px);
  }
  /**
	* 資料請求 - sp
	**********************/
  .postsarchive_header.request_header {
    padding: 75px 20px 50px;
  }
  .request_header .postsarchive_header_title {
    margin-bottom: 0;
  }
  .request_header .postsarchive_header_title span {
    margin-top: 0;
  }
  .request_desc {
    padding: 0 20px;
  }
  .request_desc_title {
    font-size: 24px;
  }
  .request_desc_txt:not(:last-child) {
    margin-bottom: 18px;
  }
  .request_slider {
    margin: 56px calc(50% - 50vw);
    padding: 56px 20px 64px;
  }
  .request_slider_img {
    max-height: 194px;
    height: 100%;
    width: auto;
    max-inline-size: fit-content;
  }
  .request_slider_point_img {
    max-height: 101px;
    position: absolute;
  }
  .request_slider_point_txt {
    left: 45px;
    top: 3px;
  }
  .request_form .eventform {
    max-width: 100%;
  }
  .request_form .eventform_desc {
    letter-spacing: 0.04em;
  }
  .request_form .eventform form.wpcf7-form {
    padding: 0 20px;
  }
  /**
	* contact - sp
	**********************/
  main.contact .request_form {
    margin: 56px 20px 24px;
  }
  main.contact .request_form_contact {
    margin: 0px 20px;
    padding: 33px 20px;
  }
  main.contact .request_form .eventform form.wpcf7-form {
    padding: 0;
  }
  main.contact .eventform_title {
    font-size: 20px;
    margin-bottom: 50px;
  }
  main.contact .eventform_title::before {
    bottom: 50px;
  }
  main.contact .request_form_contact .request_form_contact_box {
    border-radius: 20px;
    padding: 20px;
    font-size: 16px;
  }
  main.contact
    .request_form_contact
    .request_form_contact_box
    .request_form_contact_box_name {
    margin-right: 0;
  }
  main.contact .request_form_contact .request_form_contact_box a span {
    font-size: 32px;
    margin-left: 10px;
  }

  main.contact .request_form_contact .request_form_contact_box a {
    font-size: 18px;
  }
  main.contact.singlemain.modelroom .voice_header_txt {
    margin-right: 0;
    width: 100%;
  }
  /**
	* simokuリノベーションに ついて - sp
	**********************/
  .concept_main {
    margin: 72px auto 0;
  }
  .concept_main_header {
    margin-bottom: 52px;
  }
  .concept_main_header .concept_title {
    font-size: 28px;
    padding: 0 20px;
  }
  .concept_desc {
    left: unset;
    padding: 64px 20px 90px;
  }
  .concept_desc_title {
    font-size: 22px;
    line-height: 1.8;
  }
  .concept_desc_title br {
    display: none;
  }
  .concept_desc_desc {
    left: unset;
  }
  .concept_desc_img {
    top: -30px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .concept_desc_img_left {
    max-width: 90px;
    margin-right: auto;
    margin-top: 90px;
  }
  .concept_desc_img_right {
    flex: 1;
    max-width: 70%;
  }
  .concept_desc_img_right img:last-child {
    max-width: 85%;
    margin-top: 24px;
  }
  .our_belioef1 {
    margin: 0 20px;
  }
  .our_belioef1_wrap {
    margin: 40px auto 80px;
  }
  .our_belioef1_bg {
    max-width: 230px;
    top: -50px;
    right: -20px;
    z-index: -1;
  }
  .our_belief_title {
    margin: 20px 0 24px;
    letter-spacing: 0.08rem;
    font-size: 22px;
    line-height: 1.8;
  }
  .our_belioef2 {
    margin: 0 20px;
  }
  .our_belioef2_left {
    order: 2;
    max-width: 240px;
    margin-top: 60px;
    width: 100%;
    margin-left: -20px;
    z-index: 2;
  }
  .our_belioef2_right {
    order: 1;
    max-width: 100%;
    left: unset;
  }
  .concept_slider {
    padding: 140px 20px 60px;
  }
  .concept_slider_title {
    font-size: 22px;
    margin-bottom: 24px;
  }
  .concept_slider .swiper,
  .concept_slider .swiper .swiper-wrapper {
  }
  .concept_slider .swiper .swiper-wrapper {
    aspect-ratio: unset;
    padding-left: 0;
  }
  .concept_slider .swiper_arrow {
    display: none;
  }
  .concept_slider .swiper_wrap {
    display: flex;
    flex-wrap: wrap;
    margin-top: 48px;
  }
  .toc_slider {
    order: 2;
    margin-top: 34px;
    position: relative;
  }
  .toc_slider .voice_slider_line .scrol_circle {
    display: block;
  }
  .toc_slider .voice_slider_line {
    border-left: 1px solid rgba(219, 217, 214, 1);
  }
  .toc_slider .voice_slider_line::after {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(219, 217, 214, 1);
    position: relative;
    top: -14px;
    display: inline-block;
    left: -4px;
  }
  .voice_slider_line.voice_slider_active::after {
    background: rgba(44, 40, 37, 1);
  }
  .concept_slider-thumbnail .swiper-wrapper {
    margin-top: -6px;
  }
  .concept_slider-thumbnail .swiper-wrapper .swiper-slide {
    margin-bottom: 0;
  }
  .concept_slider-thumbnail
    .swiper-wrapper
    .swiper-slide.swiper-slide-thumb-active {
    margin-bottom: 0;
  }
  .concept_slider-thumbnail .swiper-wrapper .swiper-slide:first-child {
    margin-bottom: 12px;
  }
  .concept_slider .swiper {
    order: 1;
    margin: 0;
    margin-left: 0px;
    padding-left: 0px;
  }
  .toc_slider .voice_slider_line.is-active::after {
    top: -45px;
    left: -5px;
  }
  .concept_slider .swiper .swiper-slide {
  }
  .concept_slider .swiper .swiper-slide.swiper-slide-active {
    max-width: 85% !important;
    padding-left: 1%;
  }
  .concept_slider .swiper .swiper-slide {
    /* margin-right: 20px!important; */
    align-items: flex-end;
    display: flex;
    transition: width 0.3s ease, height 0.3s ease;
    -webkit-transition: width 0.3s ease, height 0.3s ease;
  }
  .concept_bottom {
    max-width: 100%;
    margin: 80px 20px 120px;
  }
  .related_contents {
    margin-bottom: 48px;
  }
  .concept1_cta_title {
    font-size: 24px;
    margin-bottom: 0;
    text-align: left;
  }
  .concept1_cta_left img {
    width: 190px;
  }
  .concept1_cta {
    background: url(img/concept1_cta_sp.jpg) no-repeat;
    background-size: cover;
    text-align: center;
  }
  /**
	* 自然素材とデザイン - sp
	**********************/
  .concept2_desc_left {
    max-width: 70%;
    position: relative;
    left: -20px;
  }
  .concept2_desc_right {
    width: 100%;
    order: 1;
    margin-bottom: 64px;
  }
  .concept2_desc_img {
    position: relative;
    order: 2;
  }
  .concept2_desc_left2 {
    max-width: 120px;
    position: absolute;
    bottom: -45px;
    right: 17%;
    width: 100%;
  }
  .concept2_desc {
    margin: 64px 20px 0;
  }
  .concept2_desc_title {
    flex: 1;
    font-family: 'Noto Serif JP', serif;
    font-weight: 400;
    letter-spacing: 0.08rem;
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 24px;
  }
  .concept2_feature1 {
    padding: 100px 20px 24px;
  }
  .concept2_feature1_title img {
    max-width: 320px;
    height: 57px;
  }
  .concept2_feature1_title {
    margin-bottom: 64px;
  }
  .concept2_feature1_wrap .grid3 {
    grid-template-columns: 1fr;
    gap: 0px 56px;
  }
  .concept2_feature1_wrap .grid3 > * {
    text-align: center;
    margin: 0px auto 56px;
  }
  .concept2_feature1_item_title {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 18px;
  }
  .concept2_feature1_item img,
  .concept2_feature1_item_center img {
    display: block;
    max-width: 250px;
    margin: 0 auto;
  }
  .concept2_feature1.concept2_feature2 {
    padding-top: 72px;
  }
  .concept2_feature1_item_desc {
    text-align: left;
  }
  .concept2_feature1.concept2_feature3 {
    padding-top: 72px;
  }
  .concept2_modelroom {
    padding: 72px 0 80px;
  }
  .concept2_modelroom .subwidth > .concept2_modelroom_desc {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .concept2_modelroom_title {
    margin: 0 20px 44px;
    font-size: 28px;
  }
  .concept2_modelroom_title span {
    margin-left: 0;
    display: inline-block;
  }
  .concept2_modelroom_right.sponly {
    display: block;
    max-width: calc(100% - 55px);
    margin-left: auto;
  }
  .concept2_modelroom:before {
    height: 75vh;
    top: 315px;
  }
  .concept2_modelroom_subtitle {
    font-size: 22px;
    margin: 36px 20px 16px;
  }
  .concept2_modelroom_desc p {
    margin: 0 20px 40px;
  }
  .concept2_modelroom_link.linkarrow {
    margin: 0 auto;
    display: table;
    font-weight: 500;
    font-size: 17px;
  }
  .concept2_cta_title {
    font-size: 24px;
    margin-bottom: 0;
    text-align: left;
  }
  .concept2_cta_left img {
    width: 190px;
  }
  .concept2_cta {
    padding: 80px 0 50px;
    background-position: center;
  }
  /**
	* プライバシーポリシー - sp
	**********************/
  .privacy_header .privacy_title {
    margin-bottom: 9px !important;
  }
  .privacy_content {
    margin-top: 54px;
    padding: 65px 20px 96px;
  }
  .privacy_content_inner h2 {
    font-size: 24px;
  }
  .privacy_content_inner h2::before {
    width: 56px;
  }

  /**
	* footer - sp
	**********************/
  .breadcrumbs{
    margin: 110px auto 0;
    padding: 0 10px;

    font-size: 10px;
  }

  .footer_cta {
    margin-top: 16px;
    padding: 50px 20px;
  }
  .footer_cta .footer_ctawrap .footer_cta_label {
    margin-bottom: 24px;
  }
  .footer_cta .footer_ctawrap .footer_cta_title {
    font-size: 24px;
    line-height: 43px;
  }
  .footer_cta .footer_ctawrap .footer_cta_desc {
    margin-top: 8px;
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 30px;
  }
  .footer_cta .footer_ctawrap .footer_cta_right {
    width: 100%;
  }
  .footer_cta .footer_ctawrap .footer_cta_btn {
    padding: 20px;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    background-position: 5% center;
  }
  .footer_cta .footer_ctawrap .footer_cta_btn:last-child {
    padding-bottom: 20px;
  }
  footer .footer_wrap {
    display: block;
    margin: 44px auto 30px;
  }
  footer .footer_wrap > a {
    margin: 12px 20px 44px;
    display: table;
  }
  footer .footer_wrap .footer_link {
    display: block;
    margin-left: 40px;
  }
  footer .footer_wrap .footer_link .footer_link_item_link {
    font-size: 16px;
    margin-bottom: 24px;
  }
  footer .footer_bottom {
    padding: 0 20px;
  }
  .footer_sns {
    order: 1;
    padding: 22px 15px;
    border-top: 1px solid #dbd9d6;
    border-bottom: 1px solid #dbd9d6;
    width: 100%;
    align-items: center;
  }
  .footer_sns_item {
  }

  footer .footer_sns_item .footer_sns_item_link {
    margin-right: 0;
    letter-spacing: 0;
  }
  footer .footer_bottom > *:first-child {
    order: 2;
  }
  footer .footer_bottom small {
    order: 2;
    color: #857e7e;
    text-align: center;
    margin: 0 auto;
  }
  footer .footer_bottom .flex > a {
    order: 1;
    margin: 24px auto 18px;
    line-height: 16px;
  }

  /* 関連会社 */
footer .footer_wrap .footer_link .footer_companies{
  flex-direction: column;
  align-items: flex-start;
  margin-top: 30px;
}

  .totop {
    right: 0;
  }
  .top_happiness_link {
    display: none;
  }
  /* modelroom */
  .model_spec_left_desc {
    max-width: 100%;
    margin: 0;
  }
  main.contact.singlemain.modelroom .voice_header {
    flex-wrap: wrap;
  }
  main.contact.singlemain.modelroom .voice_header .postthumbnail {
    margin-top: 100px;
    aspect-ratio: unset;
    max-width: 100%;
    margin-bottom: 0;
    position: unset;
    width: 100%;
  }
  .model_spec_left_desc .model_spec_image {
    max-width: 100%;
    margin-right: 0;
  }
  .model_concept_right {
    max-width: 100%;
  }
  main.contact.singlemain .voice_header .postthumbnail {
    width: 100%;
    max-width: 100%;
  }
  main.contact.singlemain .voice_header_txt {
    max-width: 100%;
  }
  .modelroom .postbg::before {
    top: 2%;
    left: 0;
  }
  main.contact.singlemain .voice_header_txt {
    padding: 0 20px;
  }
  .modelroom .voicemeta {
    margin: 70px 0 20px;
  }
  .modelroom .voice_title {
    font-size: 40px;
  }
  .modelroom .voice_title span {
    font-size: 18px;
    margin-bottom: 22px;
  }
  .modelroom .voice_header_txt .voice_detail {
    margin-bottom: 40px;
  }
  .modelroom .postbg {
    top: 310px;
    height: 77%;
  }
  .model_name {
    margin: 70px 20px 65px;
    padding: 34px 20px;
  }
  .model_name_title {
    font-size: 28px;
  }
  .model_name_title span {
    margin-left: 7px;
  }
  .model_name_right {
    margin: 30px auto;
    max-width: 148px;
  }
  main.modelroom .works_floormap {
    margin: 64px auto;
  }
  .model_concept {
    margin: 64px auto 80px;
  }
  .model_concept_title {
    text-align: center;
    font-size: 24px;
  }
  .model_concept_left p {
    padding: 0 20px;
    margin-bottom: 28px;
  }
  .model_concept_right {
    width: 295px;
    height: auto;
    object-fit: cover;
    margin: 0 auto;
    padding: 10px;
    background: white;
  }
  .model_menu {
    display: block;
    margin: 0 20px;
    padding: 0;
  }
  .model_menu li {
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid #d9d9d9;
    padding: 24px 33px;
  }
  .model_menu li::after {
    transform: translateY(50%);
    left: unset;
    right: 33px;
    bottom: 50%;
  }
  .model_menu li span {
    transform: translateY(-50%);
    left: 33px;
    top: 50%;
  }
  .model_menu li a {
    margin-right: auto;
    margin-left: 50px;
  }
  .model_menu li a br {
    display: none;
  }
  .model_menu li:last-child a {
    margin-right: auto;
    margin-left: 0;
  }
  .model_spec {
    margin: 88px auto;
  }
  .model_spec_title {
    font-size: 24px;
    padding: 0 20px;
    margin-bottom: 40px;
  }
  .model_spec_title span {
    font-size: 28px;
    position: relative;
    top: -6px;
  }
  .model_spec_title span::after {
    margin: 0 28px;
    top: 12px;
  }
  .model_spec_desc {
    margin: 40px 0 0;
    padding: 0 20px;
  }
  .model_spec_left {
    max-width: 100%;
    margin-right: 0;
  }
  .model_spec_right {
    flex: 0 0 100%;
    margin-top: 48px;
  }
  .spec_left .model_spec_left_desc .model_spec_image {
    max-width: calc(100% - 20px);
  }
  .spec_left .model_spec_left_desc .model_spec_subimage {
    display: none;
  }
  .spec_left .model_spec_left {
    max-width: 100%;
    margin-right: 0;
  }
  .model_spec_subimage {
    max-width: calc(50% - 5.5px);
    aspect-ratio: 162/162;
    height: auto;
  }
  .model_spec_right:empty {
    margin-top: 0;
  }
  .model_mp {
    margin: 96px 20px;
  }
  .model_mp iframe {
    width: 100%;
    height: 480px;
  }
  .model_profile {
    margin: 0px 20px 88px;
    padding: 56px 20px;
  }
  .model_profile h1 {
    font-size: 20px;
  }
  .model_profile_desc_left {
    margin: 0 auto 40px;
    width: 100%;
  }
  .model_profile_desc_left img {
    margin: 0 auto;
    display: table;
  }
  .model_profile_desc_right {
    margin: 0;
  }
  .model_profile_desc_right p {
    margin-bottom: 36px;
  }
  .model_profile_desc_link {
    padding: 14px 20px 24px;
    flex-direction: column;
  }
  .model_profile_desc_link_name {
    display: inline;
  }
  .model_profile_desc_link_right {
    margin: 20px auto;
  }
  .model_access_label {
    font-size: 24px;
  }
  .model_access_address {
    margin-bottom: 54px;
  }
  main.contact.modelroom .eventform_title::before {
    bottom: -20px;
  }
  form.wpcf7-form td span[data-name='address'] input {
    min-height: 85px;
  }
  form.wpcf7-form td span[data-name='address'] input::placeholder {
    text-wrap: wrap;
    display: inline-block;
  }
}
@media (max-width: 360px) {
  .works_single .swiper-scrollbar {
    flex: 0 0 50%;
  }
  .works_single .swiper-thumbs {
    margin: 5px 14px;
  }
  .model_access {
    margin: 0 calc(50% - 50vw) 70px;
  }
}
/*一時追加*/
.swiper-wrapper:has(.first-slide-active) {
  transform: translate3d(0px, 0px, 0px) !important;
}
@media (max-width: 480px) {
  .concept_slider .swiper {
    margin-left: 0;
  }
  .concept_slider .swiper .swiper-wrapper {
    margin-left: 0 !important;
  }
  .concept_slider
    .swiper-container:not(.concept_slider-thumbnail)
    .swiper-wrapper:has(.swiper-slide-active) {
    margin-left: 0% !important;
  }
  .concept_slider .swiper .swiper-wrapper:has(.slide-next) {
    margin-left: 15% !important;
  }
  .concept_slider .swiper .swiper-wrapper:has(.slide-prev) {
    margin-left: 0% !important;
  }
  .concept_slider .swiper.swiper-wrapper.click-chenge:has(.slide-prev) {
    margin-left: 15% !important;
  }
  .concept_slider .swiper.swiper-wrapper.click-chenge {
    margin-left: 15% !important;
  }

  .concept_slider .swiper_arrow {
    display: none;
  }
  .concept_slider .swiper_wrap {
    display: flex;
    flex-wrap: wrap;
    margin-top: 48px;
  }
  .swiper-wrapper:has(.first-slide-active) {
    transform: translate3d(0, 0px, 0px) !important;
  }
  .concept_slider .swiper .swiper-slide.swiper-slide-active {
    padding-left: 0;
  }
  .concept_slider .swiper {
    padding-left: 0;
  }
}

.grecaptcha-badge {
  visibility: hidden;
}
.wpcf7-form.sent .wpcf7-response-output {
  display: none;
}

.footer_address {
  font-size: 0.8rem;
  letter-spacing: 0.75px;
}

.footer_address:last-of-type{
  margin-top: 8px;
}

.footer_address span{
  font-size: 1rem;
}
@media (max-width: 480px) {
  .footer_left {
    display: block;
    margin-left: 40px;
    margin-bottom: 40px;
  }
  .footer_address {
    font-size: 0.9rem;
    letter-spacing: 1px;
  }
}
