@charset "UTF-8";
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

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

fieldset,
img {
  border: 0;
}

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

ol,
ul {
  list-style: none;
  list-style-type: none;
}

li {
  list-style: none;
  list-style-type: none;
}

caption,
th {
  font-weight: normal;
  text-align: left;
}

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

area {
  outline: none;
  border: none;
}

abbr,
acronym {
  border: 0;
}

* {
  box-sizing: border-box;
}

input,
select,
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  border: 0;
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  margin: 0;
  outline: none;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  padding: 0;
}

input[type=submit],
input[type=button] {
  cursor: pointer;
}

input,
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

a {
  outline: none;
}

figure {
  line-height: 0;
}

img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

:root {
  --color-main: #353125;
  --color-sub:#C3BDB0;
  --color-sub2:#A79D8B;
  --color-sub3:#e9e7e3;
  --color-white: #fff;
  --color-gray: #C3BDB0;
  --color-dark-gray: #909090;
  --color-black: #3A3A3A;
  --color-main-bg:#f5f4f0;
  --color-link:#46737a;
  --color-red: #CF4949;
  --color-yellow: #edc006;
  --color-orange:#f0a211;
  --color-blue: #07A0C3;
  --transition-duration: .6s;
  --transition-timing-function: ease-out;
}

body {
  background-color: #fff;
  color: var(--color-black);
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
}
body a {
  color: var(--color-black);
  text-decoration: none;
}

body {
  position: relative;
  margin: 0;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
}
body._home {
  background: none;
}

p {
  line-height: 1.8;
}

p + p {
  margin-top: 1.25rem;
}

strong {
  font-weight: bold;
}
body {
  background-color: var(--color-main-bg);
}

._home {
  background-color: var(--color-white);
}

.ef-fade01 {
  transform: translate(0, 10%);
  opacity: 0;
  transition: 1s;
}

.fade01 {
  transform: translate(0, 0);
  opacity: 1;
}

.swiper-container {
  margin: 2.5rem auto;
  overflow: hidden;
}

.kvswiper-wrapper {
  transition-timing-function: linear;
  width: 100%;
  height: 600px;
}

.kvswiper-slide {
  transition-timing-function: linear;
  margin: 0 auto;
  border-radius: 10px;
  height: 100%;
  text-align: left;
}

.kvswiper-pic {
  display: block;
  position: relative;
  margin: 0 auto 0.625rem;
  background: #efefef;
  width: 100%;
  overflow: hidden;
  text-align: center;
}
.kvswiper-pic::before {
  display: block;
  padding-top: 62%;
  content: "";
}
.kvswiper-pic img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
}

.kvswiper-box {
  display: flex;
  position: relative;
  margin-top: 40px;
  height: 36px;
}

.kvswiper-text {
  display: block;
  padding-top: 0.5rem;
}

.kvswiper-pagination {
  position: relative;
  z-index: 1 !important;
}

.kvswiper-pagination-bullet {
  background: var(--color-black) !important;
}

.kvswiper-button-prev,
.kvswiper-button-next {
  display: block;
  position: absolute;
  z-index: 2 !important;
}

.kvswiper-button-prev:after,
.kvswiper-button-next:after {
  color: var(--color-black);
  font-size: 20px !important;
}

.header {
  display: flex;
  position: fixed !important;
  top: 0;
  justify-content: flex-start;
  align-items: center;
  z-index: 1000;
  transition: background-color 0.3s, box-shadow 0.3s;
  background-color: transparent;
  padding: 0 0 0 8px;
  width: 100%;
  height: 60px;
}
.header.is-scrolled {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  background-color: rgba(255, 255, 255, 0.7);
}
.header._home {
  -webkit-backdrop-filter: none !important;
          backdrop-filter: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.header a {
  -webkit-text-decoration: transparent;
          text-decoration: transparent;
}
.header_logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-black);
  font-weight: 500;
  font-size: 4vw;
  font-family: "Noto Sans JP", sans-serif;
}
.header_logo img {
  width: 50px;
}
.header_logo.open a {
  color: var(--color-white);
}
.header_navi {
  transition: 0.5s;
  margin-left: auto;
}
.header_sns.open img {
  filter: brightness(0) invert(1);
}

.main {
  margin-top: 0;
  overflow-x: hidden;
}
.main_content {
  margin: 0 auto;
  padding: 0 1.875rem;
  max-width: 1920px;
}
.main_homeInformation {
  margin: 40px auto;
}
.main_homeConcept {
  margin-bottom: 80px;
}
.main_homeDesign {
  margin: 80px 0;
}
.main_homeWorks {
  margin: 80px 0 !important;
}
.main_homeCommitment {
  margin: 80px auto;
}
.main_homeBlog {
  margin: 80px auto;
}
.main_homeAccess {
  margin: 40px auto;
}
.main_homeInstagram {
  margin: 60px 0 60px;
  padding: 0 30px;
}
.main_homeContents {
  background-color: var(--color-gray-bg);
  padding: 60px 30px;
}
.main_works {
  margin: 80px auto;
  background-color: var(--color-gray-bg);
  padding: 80px 0 0;
  text-align: left;
}
.main_post {
  margin: 0 auto;
  padding: 0 30px;
  text-align: left;
}
.main_article {
  margin: 0 auto;
  padding: 0 20px;
}
.main_wide {
  margin: 0 auto;
  padding: 0 20px;
}
.main_page {
  position: relative;
  margin: 0 auto 80px;
  padding: 0 30px;
}
.main_company {
  margin: 0 auto;
  padding: 0 30px;
}

.footer {
  margin: 0 auto;
  margin-top: 20px;
}
.footer_navi {
  flex: 1;
}
.footer_inner {
  margin: 0 20px;
  border-top: 1px solid var(--color-sub);
  padding-top: 20px;
}
.footer_text {
  width: 100%;
  font-size: 0.8125rem;
}
.footer_navi {
  margin-bottom: 20px;
}
.footer_copy {
  background-color: var(--color-sub);
  padding: 20px 0 80px;
  color: #fff;
  font-size: 0.75rem;
  text-align: center;
}
.footer_sns {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 40px;
  border-top: 1px solid var(--color-white);
  padding-top: 20px;
}
.footer_sns img {
  width: auto;
  height: 30px;
}
.footer ._link {
  display: inline-block;
  border: 1px solid var(--color-black);
  padding: 5px 40px;
}

.headerNavi {
  -webkit-overflow-scrolling: touch;
  position: fixed;
  opacity: 0;
  z-index: -1 !important;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  transition: 0.5s;
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
  background-position: center;
  background-size: cover;
  padding: 80px 10px 100px 10px;
  width: 100% !important;
  height: 100% !important;
  overflow-y: auto;
}
.headerNavi::-webkit-scrollbar-thumb {
  /* ← スクロールバーの色 */
  border-radius: 4px;
  background-color: #ffffff;
}
.headerNavi_inner {
  border-top: 1px solid var(--color-gray);
  border-bottom: 1px solid var(--color-gray);
  padding: 16px 0;
}
.headerNavi_heading {
  padding-bottom: 20px;
  color: var(--color-white);
  font-size: 1.25rem;
}
.headerNavi a {
  color: var(--color-white);
  text-decoration: none;
}
.headerNavi.active {
  display: block;
  opacity: 1;
  z-index: 10 !important;
  transition: 0.5s;
}
.headerNavi_inner {
  display: block;
  flex-wrap: wrap;
  width: 100%;
}
.headerNavi_list {
  display: block;
  width: 100%;
}
.headerNavi_item {
  padding: 12px 20px;
  width: auto;
}
.headerNavi_item._b {
  font-weight: bold;
}
.headerNavi_item._h a {
  position: relative;
}
.headerNavi_item._h a::before {
  display: block;
  position: absolute;
  top: 0;
  left: -20px;
  background-image: url("../images/i_home_w.png");
  background-position: 0 4px;
  background-size: 0.875rem auto;
  background-repeat: no-repeat;
  background-color: transparent !important;
  width: 20px;
  height: 20px;
  content: "";
}
.headerNavi_item a {
  display: block;
  position: relative;
  transition: all 0.5s ease;
  margin-left: 20px;
  color: var(--color-white);
  font-size: 0.875rem;
}
.headerNavi_item a::before {
  display: block;
  position: absolute;
  top: 50%;
  left: -20px;
  background-color: var(--color-white);
  width: 8px;
  height: 1px;
  content: "";
}
.headerNavi_item a:hover {
  opacity: 0.5;
}
.headerNavi_item a._blank span {
  position: relative;
  padding-right: 1.25rem;
}
.headerNavi_item a._blank span::after {
  position: absolute;
  top: 0.1875rem;
  right: 0;
  background-image: url("../images/i_link_w.svg");
  background-position: 0 4px;
  background-size: 0.875rem auto;
  background-repeat: no-repeat;
  width: 0.875rem;
  height: 0.875rem;
  content: "";
}
.headerNavi_member {
  margin: 40px auto 40px;
  text-align: center;
}
.headerNavi_member a {
  display: block;
  border: 1px solid var(--color-white);
  border-radius: 10px;
  padding: 10px 120px;
}
.headerNavi_child_list {
  display: block;
  padding-top: 10px;
  padding-left: 0;
}

.footerNavi {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  gap: 2%;
  padding: 0;
}
.footerNavi_list {
  margin-bottom: 20px;
  width: 45%;
}
.footerNavi_item {
  margin-bottom: 5px;
}
.footerNavi_item a {
  color: var(--color-white);
  font-size: 0.8125rem;
}
.footerNavi_child_list {
  display: block;
  margin-bottom: 20px;
  padding-top: 2px;
  padding-left: 16px;
}
.footerNavi ._sns {
  display: flex;
  flex-wrap: wrap;
  margin-left: auto;
}
.footerNavi ._sns .footerNavi_item {
  width: 33%;
}
.footerNavi ._sns .footerNavi_item:first-child {
  width: 100%;
}

.footerAddress {
  position: relative;
  background: #555555;
  padding: 30px 30px 50px 30px;
  color: #fff;
  text-align: left;
}
.footerAddress_title {
  margin: 0;
  font-weight: 500;
  font-size: 1.125rem;
  font-family: "Noto Sans JP", sans-serif;
}
.footerAddress_text {
  margin: 0;
}

.footerCopy {
  position: relative;
  margin-top: 20px;
  border-top: 1px solid var(--color-dark-gray);
  padding-top: 20px;
}
.footerCopy_title {
  font-weight: 500;
  font-size: 1.25rem;
  font-family: "Noto Sans JP", sans-serif;
}
.footerCopy_title span {
  display: block;
  font-size: 0.875rem;
}
.footerCopy_text {
  font-size: 0.8125rem;
}
.footerCopy_note {
  font-size: 0.8125rem;
}
.footerCopy_copyright {
  font-size: 0.75rem;
}

.footerCompany {
  margin: 0 auto;
  text-align: center;
}
.footerCompany_logo {
  margin: 0 auto 40px;
  width: 200px;
  text-align: center;
}
.footerCompany_text {
  padding: 0;
  text-align: left;
}

.footerContact {
  display: flex;
  margin: 30px 0;
  padding: 0;
}
.footerContact_tel {
  position: relative;
  flex-grow: 1;
  padding-left: 40px;
  width: 50%;
  font-size: 1rem;
}
.footerContact_tel::before {
  position: absolute;
  opacity: 0.4;
  z-index: -1;
  inset: 0;
  background: url("../images/i_phone.png") no-repeat left;
  background-size: 30px auto;
  content: "";
}
.footerContact_mail {
  position: relative;
  flex-grow: 1;
  padding-left: 40px;
  width: 50%;
  font-size: 1rem;
}
.footerContact_mail::before {
  position: absolute;
  opacity: 0.4;
  z-index: -1;
  inset: 0;
  background: url("../images/i_mail.png") no-repeat left;
  background-size: 30px auto;
  content: "";
}
.fixedContact {
  display: flex;
  position: fixed;
  bottom: -100px;
  left: 0;
  flex-wrap: nowrap;
  align-items: stretch;
  transform: translateY(30px);
  opacity: 0;
  z-index: 10;
  transition: bottom 0.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  box-sizing: border-box;
  margin: 0 auto;
  border-radius: 0 10px 0 0;
  background-color: var(--color-black);
  width: 60%;
  height: 60px;
  text-align: center;
}
.fixedContact.is-show {
  bottom: 0;
  transform: translateY(0);
  opacity: 1;
}
.fixedContact a {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  border-right: 1px solid #8f9dae;
  border-bottom: none;
  width: 50%;
  color: #fff;
  text-align: center;
}
.fixedContact a:last-child {
  border-right: none;
}
.fixedContact a span {
  display: block;
  margin: 5px auto 0;
  font-size: 0.6875rem;
  text-align: center;
}
.fixedContact a img {
  display: block;
  margin: 0 auto;
  width: 24px;
  height: 24px;
  text-align: center;
}

.pagetop {
  display: flex;
  position: fixed;
  right: 20px;
  bottom: 10px;
  z-index: 10;
  border-radius: 50%;
  background-color: var(--color-white);
  padding: 5px;
  width: 50px;
}

#nav-toggle, .close {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  cursor: pointer;
  margin: 0 !important;
  box-shadow: none;
  border: none;
  padding: 0 !important;
  width: 60px;
  height: 60px;
}
#top-head {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  outline: none;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  padding: 0;
}
#nav-toggle div {
  position: relative;
  top: 0;
}

#nav-toggle span {
  -webkit-transition: 0.35s ease-in-out;
  -moz-transition: 0.35s ease-in-out;
  position: absolute;
  right: 15px;
  transition: 0.35s ease-in-out;
  background: var(--color-black);
  width: 26px;
  height: 2px;
}

#nav-toggle._w span {
  background: var(--color-green);
}

.menu {
  display: block;
  position: fixed;
  top: 45px !important;
  right: -17px;
  color: #222;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.125rem;
}

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

#nav-toggle span:nth-child(2) {
  top: 28px;
}

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

.open #nav-toggle span {
  display: block;
  background-color: var(--color-white);
}

.open #nav-toggle span:nth-child(1) {
  -webkit-transform: rotate(315deg);
  -moz-transform: rotate(315deg);
  top: 28px;
  transform: rotate(315deg);
  color: var(--color-white);
}

.open #nav-toggle span:nth-child(2) {
  display: none;
}

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

/*PC*/
/* **************************************************************************************

project : kv

************************************************************************************** */
@-webkit-keyframes zoomUp {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes zoomUp {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
.kv {
  position: relative;
  padding: 0;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}
.kv_txt {
  font-feature-settings: "palt";
  position: absolute;
  top: 25%;
  right: 10%;
  transform: translateY(-25%) translateX(0);
  z-index: 2;
  width: 100%;
  height: auto;
  color: #fff;
  font-weight: 400;
  font-size: 1.25rem;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.2em;
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  text-orientation: mixed;
}
.kv_txt span {
  display: block;
}
.kv .swiper-container {
  position: relative;
  z-index: 1;
  margin: 0 !important;
  padding: 0 !important;
  width: 100%;
  height: 70vh;
}
.kv .swiper-wrapper {
  width: 100%;
  height: 100%;
}
.kv .swiper-txt {
  position: absolute;
  right: 0;
  z-index: 100;
  background-color: #fff;
  padding: 14px;
  color: var(--color-black);
  font-weight: 500;
  font-size: 1rem;
  font-family: "Noto Serif JP", serif;
}
.kv .swiper-slide a {
  display: block !important;
  opacity: 1 !important;
  width: 100%;
  height: auto;
}
.kv .swiper-slide a:hover {
  opacity: 1 !important;
}
.kv .slide-img {
  z-index: 1;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100vh !important;
}
.kv .slide-img img {
  display: block;
}
.kv .swiper-pagination-bullet {
  opacity: 0.7 !important;
  margin: 0 4px;
  border-radius: 50%;
  background-color: var(--color-white) !important;
  width: 11px !important;
  height: 11px !important;
}
.kv .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--color-sub2) !important;
}
.kv .char {
  display: inline-block;
  transform: translateY(0.4em);
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}
.kv.is-show .char {
  transform: translateY(0);
  opacity: 1;
}

.scrolldown {
  -ms-writing-mode: tb-rl;
  position: absolute;
  right: 10px;
  bottom: 5px;
  z-index: 100;
  padding-top: 20px;
  height: 80px;
  color: #fff;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 3px;
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
}
.scrolldown::after {
  position: absolute;
  top: 0;
  opacity: 0;
  -webkit-animation: pathmove 2s ease-in-out infinite;
          animation: pathmove 2s ease-in-out infinite;
  background: #fff;
  width: 1px;
  height: 60px;
  content: "";
}
@-webkit-keyframes pathmove {
  0% {
    top: 0;
    opacity: 0;
    height: 0;
  }
  30% {
    opacity: 1;
    height: 30px;
  }
  100% {
    top: 100px;
    opacity: 0;
    height: 0;
  }
}
@keyframes pathmove {
  0% {
    top: 0;
    opacity: 0;
    height: 0;
  }
  30% {
    opacity: 1;
    height: 30px;
  }
  100% {
    top: 100px;
    opacity: 0;
    height: 0;
  }
}

.sns {
  position: fixed;
  top: 8px;
  right: 72px;
  z-index: 1000;
}
.sns_list {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 0 0;
}
.sns_list a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  height: 24px;
}
.sns_list a._youtube {
  height: 22px;
}
.sns_item {
  padding: 0;
}
.sns_item img {
  width: auto;
  height: 100%;
}

.mainHead {
  display: flex;
  position: relative;
  align-items: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 30px;
  width: 100%;
  height: auto;
  height: 120px;
}
.mainHead_heading {
  z-index: 2;
  color: #fff;
  color: var(--color-sub);
  font-weight: 400;
  font-size: 1.625rem;
  font-size: 0.875rem;
  line-height: 1.2;
  font-family: "Noto Serif JP", serif;
}
.mainHead_heading span {
  display: block;
  margin-top: 10px;
  color: var(--color-black);
  font-size: 1.625rem;
}
.homeInformation {
  position: relative;
}
.homeInformation_inner {
  padding: 0 20px;
}
.homeInformation_heading {
  margin-bottom: 14px;
  font-weight: 500;
  font-size: 1.375rem;
  font-family: "Noto Sans JP", sans-serif;
}
.homeInformation_heading span {
  display: block;
  color: var(--color-sub);
  font-weight: 400;
  font-size: 0.875rem;
  font-family: "Noto Serif JP", serif;
}
.homeInformation_list {
  flex: 1;
}
.homeInformation_item {
  display: block;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--color-sub3);
  padding-bottom: 10px;
}
.homeInformation_item a {
  display: flex;
  gap: 20px;
}
.homeInformation_date {
  color: var(--color-dark-gray);
}
.homeInformation_more {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
}
.homeInformation_more span {
  display: block;
  position: relative;
  margin-right: 20px;
  padding-right: 25px;
}
.homeInformation_more span::after {
  display: block;
  position: absolute;
  top: calc(50% - 6px);
  right: 0;
  background-image: url("../images/icon_arr2.png");
  background-size: 16px auto;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  content: "";
}
.homeConcept {
  position: relative;
  background: linear-gradient(to right, #F6F5F0 0%, #ffffff 100%);
  padding: 40px 0 0;
}
.homeConcept_heading {
  margin-bottom: 14px;
  font-weight: 500;
  font-size: 1.375rem;
  font-family: "Noto Sans JP", sans-serif;
}
.homeConcept_heading span {
  display: block;
  color: var(--color-sub);
  font-weight: 400;
  font-size: 0.875rem;
  font-family: "Noto Serif JP", serif;
}
.homeConcept_box {
  margin: 20px 0;
  padding: 0 20px;
}
.homeConcept_pic {
  margin-left: 20px;
}
.homeConcept_pic img {
  border-radius: 5px 0 0 5px;
}
.homeConcept_link {
  display: block;
  position: relative;
  bottom: -20px;
  margin: 0 auto;
  margin-top: 0;
  border: 1px solid var(--color-dark-gray);
  border-radius: 40px;
  background-color: var(--color-white);
  padding: 8px 0;
  width: 60%;
  color: var(--color-black);
  text-align: center;
}
.homeConcept_link::after {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  background: url("../images/icon_arr.png") no-repeat right center;
  background-size: contain;
  width: 16px;
  height: 16px;
  content: "";
}

.homeDesign {
  position: relative;
  background: linear-gradient(to left, #F6F5F0, #ffffff);
  padding: 40px 0 0;
}
.homeDesign_heading {
  margin-bottom: 14px;
  font-weight: 500;
  font-size: 1.375rem;
  font-family: "Noto Sans JP", sans-serif;
}
.homeDesign_heading span {
  display: block;
  color: var(--color-sub);
  font-weight: 400;
  font-size: 0.875rem;
  font-family: "Noto Serif JP", serif;
}
.homeDesign_box {
  margin: 20px 0;
  padding: 0 20px;
}
.homeDesign_pic {
  margin-right: 20px;
}
.homeDesign_pic img {
  border-radius: 0 5px 5px 0;
}
.homeDesign_link {
  display: block;
  position: relative;
  bottom: -20px;
  margin: 0 auto;
  margin-top: 0;
  border: 1px solid var(--color-dark-gray);
  border-radius: 40px;
  background-color: var(--color-white);
  padding: 8px 0;
  width: 60%;
  color: var(--color-black);
  text-align: center;
}
.homeDesign_link::after {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  background: url("../images/icon_arr.png") no-repeat right center;
  background-size: contain;
  width: 16px;
  height: 16px;
  content: "";
}

.homeSystem {
  position: relative;
  background-color: var(--color-gray);
}
.homeSystem_inner {
  padding: 30px 20px;
  width: 100%;
}
.homeSystem_text {
  font-size: 0.8125rem;
}
.homeSystem_heading {
  margin-bottom: 30px;
  color: var(--color-main);
  font-weight: 500;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
}
.homeSystem_item {
  display: block;
  margin-bottom: 60px;
}
.homeSystem_pic {
  width: 100%;
}
.homeSystem_box {
  flex: 1;
}
.homeSystem_title {
  margin-top: 18px;
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
}
.homeSystem_btn {
  margin: 20px 0;
}
.homeSystem_btn a {
  display: inline-block;
  display: block;
  position: relative;
  position: relative;
  transition: all 0.5s ease;
  margin: 0 auto;
  box-shadow: 0 4px 0px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--color-dark-gray);
  border-radius: 5px;
  border-radius: 40px;
  background-color: #3F5872;
  background-color: var(--color-white);
  padding: 10px 0 12px 20px;
  padding: 8px 0;
  width: 100%;
  width: 60%;
  color: var(--color-white);
  color: var(--color-black);
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  text-decoration: none;
}
.homeSystem_btn a::after {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  background: url("../images/icon_arr.png") no-repeat right center;
  background-size: contain;
  width: 16px;
  height: 16px;
  content: "";
}

.homeWorks {
  position: relative;
}
.homeWorks_inner {
  position: relative;
  padding: 0;
  width: 100%;
}
.homeWorks_head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.homeWorks_heading {
  margin-bottom: 40px;
  padding: 0 20px;
  font-weight: 500;
  font-size: 1.375rem;
  font-family: "Noto Sans JP", sans-serif;
}
.homeWorks_heading span {
  display: block;
  color: var(--color-sub);
  font-weight: 400;
  font-size: 0.875rem;
  font-family: "Noto Serif JP", serif;
}
.homeWorks_total {
  position: relative;
  margin: 0 18px 18px 0;
  padding-left: 0px;
  font-weight: 400;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
}
.homeWorks_total span {
  padding-left: 6px;
  font-weight: 400;
  font-size: 2rem;
  font-family: "Jost", sans-serif;
}
.homeWorks_list {
  margin-bottom: 20px;
  padding-left: 25px;
}
.homeWorks_item {
  position: relative;
  margin-bottom: 40px;
  text-align: center;
}
.homeWorks a {
  display: block;
  width: 100%;
}
.homeWorks_new {
  position: absolute;
  top: 0;
  left: 6px;
  z-index: 2;
  background-color: var(--color-sub2);
  padding: 0 20px 1px;
  color: var(--color-white);
  font-size: 0.875rem;
}
.homeWorks_pic {
  display: block;
  position: relative;
  margin: 0 auto 10px;
  border-radius: 5px;
  background: #efefef;
  width: 100%;
  overflow: hidden;
}
.homeWorks_pic::before {
  display: block;
  padding-top: 66.66%;
  content: "";
}
.homeWorks_pic img {
  position: absolute;
  top: 0;
  left: 0;
  transform: none;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.homeWorks_title {
  margin-top: 16px;
  font-size: 0.8125rem;
  text-align: left;
}
.homeWorks_category {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  border-radius: 0 5px 5px 5px;
  background-color: #333;
  padding: 5px 10px;
  color: #fff;
  font-size: 0.8125rem;
}
.homeWorks_text {
  margin: 0 auto;
  text-align: center;
}
.homeWorks_link {
  display: block;
  position: relative;
  margin: 0 auto;
  margin-top: 20px;
  border: 1px solid var(--color-dark-gray);
  border-radius: 40px;
  background-color: var(--color-white);
  padding: 8px 0;
  width: 60%;
  width: 60% !important;
  color: var(--color-black);
  text-align: center;
}
.homeWorks_link::after {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  background: url("../images/icon_arr.png") no-repeat right center;
  background-size: contain;
  width: 16px;
  height: 16px;
  content: "";
}

.homeWorksSwiper {
  position: relative;
  overflow: hidden;
}
.homeWorksSwiper .swiper-button-prev,
.homeWorksSwiper .swiper-button-next {
  display: flex;
  position: absolute;
  top: 45%;
  justify-content: center;
  align-items: center;
  transform: translateY(-45%);
  z-index: 10;
  transition: background 0.3s ease;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.9);
  width: 44px;
  height: 64px;
}
.homeWorksSwiper .swiper-button-prev::after,
.homeWorksSwiper .swiper-button-next::after {
  display: block;
  border-top: 2px solid var(--color-black);
  border-right: 2px solid var(--color-black);
  width: 12px;
  height: 12px;
  content: "";
}
.homeWorksSwiper .swiper-button-prev:hover,
.homeWorksSwiper .swiper-button-next:hover {
  background: var(--color-black);
}
.homeWorksSwiper .swiper-button-prev:hover::after,
.homeWorksSwiper .swiper-button-next:hover::after {
  border-top-color: #fff;
  border-right-color: #fff;
}
.homeWorksSwiper .swiper-button-prev {
  left: 0;
}
.homeWorksSwiper .swiper-button-prev::after {
  transform: rotate(-135deg);
}
.homeWorksSwiper .swiper-button-next {
  right: 0;
}
.homeWorksSwiper .swiper-button-next::after {
  transform: rotate(45deg);
}
.homeWorksSwiper .swiper-pagination {
  margin-top: 24px;
  text-align: center;
}
.homeWorksSwiper .swiper-pagination .swiper-pagination-bullet {
  opacity: 0.7 !important;
  transition: background 0.3s ease;
  margin: 0 4px !important;
  border: 1px solid var(--color-black) !important;
  border-radius: 50% !important;
  background-color: var(--color-white) !important;
  width: 11px !important;
  height: 11px !important;
}
.homeWorksSwiper .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1 !important;
  background-color: var(--color-black) !important;
}
.homeWorksSwiper .swiper-slide {
  margin-right: 0;
  width: auto;
}
.homeCommitment {
  position: relative;
  background: linear-gradient(to right, #F6F5F0 0%, #ffffff 60%);
  padding: 40px 0 0 20px;
}
.homeCommitment_heading {
  margin-bottom: 14px;
  font-weight: 500;
  font-size: 1.375rem;
  font-family: "Noto Sans JP", sans-serif;
}
.homeCommitment_heading span {
  display: block;
  color: var(--color-sub);
  font-weight: 400;
  font-size: 0.875rem;
  font-family: "Noto Serif JP", serif;
}
.homeCommitment_list {
  margin-top: 20px;
}
.homeCommitment_item {
  position: relative;
  padding-left: 40px;
}
.homeCommitment_item:last-child::after {
  display: none;
}
.homeCommitment_item::after {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--color-sub);
  width: calc(100% - 40px);
  height: 1px;
  content: "";
}
.homeCommitment_item:before {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  color: var(--color-sub);
  font-weight: 400;
  font-size: 50px;
  line-height: 1;
  font-family: "Noto Serif JP", serif;
}
.homeCommitment_item:first-child::before {
  content: "1";
}
.homeCommitment_item:nth-child(2)::before {
  content: "2";
}
.homeCommitment_item:nth-child(3)::before {
  content: "3";
}
.homeCommitment_item:nth-child(4)::before {
  content: "4";
}
.homeCommitment_contents {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
  gap: 18px;
  margin-bottom: 40px;
  padding-bottom: 40px;
}
.homeCommitment_box {
  flex: 1;
}
.homeCommitment_pic {
  flex: 0 0 100px;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.homeCommitment_pic img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.homeCommitment_title {
  margin-bottom: 14px;
  font-weight: 500;
  font-size: 1.125rem;
  font-family: "Noto Sans JP", sans-serif;
}
.homeCommitment_title span {
  display: block;
  color: var(--color-sub);
  font-weight: 400;
  font-size: 0.875rem;
  font-family: "Noto Serif JP", serif;
}
.homeCommitment_more {
  display: block;
  flex: 0 0 auto;
  margin-top: auto;
  width: 100%;
  text-align: right;
}
.homeCommitment_more span {
  display: block;
  position: relative;
  margin-right: 20px;
  padding-right: 25px;
}
.homeCommitment_more span::after {
  display: block;
  position: absolute;
  top: calc(50% - 6px);
  right: 0;
  background-image: url("../images/icon_arr2.png");
  background-size: 16px auto;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  content: "";
}
.homeCommitment_link {
  display: block;
  position: relative;
  bottom: -20px;
  margin: 0 auto;
  margin-top: 0;
  border: 1px solid var(--color-dark-gray);
  border-radius: 40px;
  background-color: var(--color-white);
  padding: 8px 0;
  width: 60%;
  color: var(--color-black);
  text-align: center;
}
.homeCommitment_link::after {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  background: url("../images/icon_arr.png") no-repeat right center;
  background-size: contain;
  width: 16px;
  height: 16px;
  content: "";
}

.homeBlog {
  position: relative;
  padding: 0 20px;
}
.homeBlog_heading {
  margin-bottom: 14px;
  font-weight: 500;
  font-size: 1.375rem;
  font-family: "Noto Sans JP", sans-serif;
}
.homeBlog_heading span {
  display: block;
  color: var(--color-sub);
  font-weight: 400;
  font-size: 0.875rem;
  font-family: "Noto Serif JP", serif;
}
.homeBlog_list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.homeBlog_item {
  position: relative;
  flex: 1 1 calc(50% - 12px);
  transition: transform 0.3s ease;
  box-sizing: border-box;
  overflow: hidden;
}
.homeBlog_new {
  position: absolute;
  top: 0;
  left: 6px;
  z-index: 2;
  background-color: var(--color-sub2);
  padding: 0 20px 1px;
  color: var(--color-white);
  font-size: 0.875rem;
}
.homeBlog_pic {
  display: block;
  position: relative;
  position: relative;
  margin: 0;
  margin: 0 auto 0.625rem;
  border-radius: 5px;
  background: #f5f5f5;
  background: #efefef;
  aspect-ratio: 3/2;
  width: 100%;
  width: 100%;
  overflow: hidden;
  overflow: hidden;
  text-align: center;
}
.homeBlog_pic::before {
  display: block;
  padding-top: 62%;
  content: "";
}
.homeBlog_pic img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
}
.homeBlog_time {
  margin: 0;
  color: var(--color-sub);
  font-size: 0.75rem;
}
.homeBlog_title {
  font-size: 0.8125rem;
}
.homeBlog_more {
  display: block;
  position: absolute;
  top: 20px;
  right: 0;
}
.homeBlog_more span {
  display: block;
  position: relative;
  margin-right: 20px;
  padding-right: 25px;
}
.homeBlog_more span::after {
  display: block;
  position: absolute;
  top: calc(50% - 6px);
  right: 0;
  background-image: url("../images/icon_arr2.png");
  background-size: 16px auto;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  content: "";
}
.homeBlog_link {
  display: block;
  position: relative;
  bottom: -20px;
  margin: 0 auto;
  margin-top: 0;
  border: 1px solid var(--color-dark-gray);
  border-radius: 40px;
  background-color: var(--color-white);
  padding: 8px 0;
  width: 60%;
  color: var(--color-black);
  text-align: center;
}
.homeBlog_link::after {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  background: url("../images/icon_arr.png") no-repeat right center;
  background-size: contain;
  width: 16px;
  height: 16px;
  content: "";
}

.homeReservation {
  position: relative;
  margin: 0 auto;
  background: #F6F5F0;
  padding: 40px 20px;
}
.homeReservation_heading {
  margin-bottom: 14px;
  font-weight: 500;
  font-size: 1.375rem;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
}
.homeReservation_heading span {
  display: block;
}
.homeReservation_heading span span {
  display: inline-block;
  color: var(--color-sub);
  font-weight: 400;
  font-size: 0.875rem;
  font-family: "Noto Serif JP", serif;
}
.homeReservation_box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.homeReservation_pic {
  width: 60px;
}
.homeReservation_btn {
  display: inline-block;
  border: 1px solid var(--color-dark-gray);
  border-radius: 40px;
  background-color: var(--color-white);
  padding: 8px 20px 8px 40px;
  width: auto;
}
.homeReservation_btn span {
  display: block;
  position: relative;
  margin-right: 20px;
  padding-right: 25px;
}
.homeReservation_btn span::after {
  display: block;
  position: absolute;
  top: calc(50% - 6px);
  right: 0;
  background-image: url("../images/icon_arr2.png");
  background-size: 16px auto;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  content: "";
}

.homeAccess {
  position: relative;
}
.homeAccess_inner {
  position: relative;
  padding: 0 20px;
  width: 100%;
}
.homeAccess_heading {
  margin-bottom: 14px;
  font-weight: 500;
  font-size: 1.375rem;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
}
.homeAccess_heading span {
  display: block;
  color: var(--color-sub);
  font-weight: 400;
  font-size: 0.875rem;
  font-family: "Noto Serif JP", serif;
}
.homeAccess_box {
  display: flex;
  align-items: center;
  gap: 20px;
}
.homeAccess_pic {
  width: 50%;
}
.homeAccess_text {
  flex: 1;
  font-size: 0.8125rem;
}
.homeAccess_text a {
  color: var(--color-link) !important;
}
.homeAccess_text a[target=_blank] {
  position: relative;
  margin-right: 6px;
  margin-bottom: 5rem;
  background-image: url("../images/i_blank.png") !important;
  background-position: right 0 center;
  background-size: 14px auto;
  background-repeat: no-repeat;
  padding-right: 24px;
}
.homeAccess_map {
  margin: 10px 0 0;
}
.homeAccess_map #map {
  width: 100%;
  height: 480px;
}
.homeAccess_map iframe {
  width: 100%;
  height: 480px;
}
.homeAccess_btn a {
  display: inline-block;
  position: relative;
  transition: all 0.5s ease;
  box-shadow: 0 4px 0px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  background-color: #3F5872;
  padding: 10px 40px;
  color: var(--color-white);
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  text-decoration: none;
}
.homeInstagram {
  position: relative;
}
.homeInstagram_heading {
  margin: 0 auto 80px;
  font-weight: 400;
  font-size: 1.5rem;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 3px;
  text-align: center;
}
.homeInstagram_heading span {
  display: block;
  font-size: 0.875rem;
  letter-spacing: 1px;
}
.homeInstagram_inner {
  margin: 0 auto;
}

@keyframes zoomUp {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
.kvswiper-container {
  position: relative;
  z-index: 1;
  margin: 0 !important;
  padding: 120px 0 0 !important;
  width: 100%;
  height: 100vh !important;
}
.kvswiper-wrapper {
  width: 100%;
}
.kvswiper-slide a {
  display: block !important;
  opacity: 1 !important;
  width: 100%;
  height: auto;
}
.kvswiper-slide a:hover {
  opacity: 1 !important;
}
.slide-img {
  z-index: 1;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 90vh !important;
}

.slide-img img {
  display: block;
}

.swiper-pagination {
  right: auto;
  bottom: 20px !important;
  left: 0;
  padding-left: 20px;
  text-align: left !important;
}

.swiper-pagination-bullet {
  opacity: 0.7 !important;
  margin: 0 4px;
  border-radius: 50%;
  background-color: var(--color-white) !important;
  width: 11px !important;
  height: 11px !important;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--color-sub2) !important;
}

.priceTable {
  position: relative;
  overflow-x: auto;
}
.priceTable table {
  width: 100%;
  min-width: 1000px;
}
.priceTable table th, .priceTable table td {
  border: 1px solid var(--color-dark-line);
  padding: 16px;
}
.priceTable_text {
  margin-bottom: 20px;
  background-image: url("../images/i_swipe.png");
  background-position: 0 0;
  background-size: 40px auto;
  background-repeat: no-repeat;
  padding: 10px 0;
  padding-left: 60px;
  font-size: 0.8125rem;
}
.priceTable_th {
  vertical-align: middle;
  border: none !important;
  border-bottom: 1px solid #fff !important;
  border-radius: 8px 0 0 8px;
  background-color: #50BCD5;
  padding: 5px;
  width: 10px;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 3px;
}
.priceTable_plan {
  background-color: #E3F5F9;
  width: 33%;
  font-weight: 500;
  font-size: 1.625rem;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
}
.priceTable_price {
  font-weight: 500;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
}

/* アコーディオン */
.accordion_item {
  cursor: pointer;
  margin-top: 10px;
  border-bottom: 1px solid #ccc;
}

/* アコーディオンのタイトル */
.accordion_title {
  position: relative;
  cursor: pointer;
  padding: 15px 60px 15px 10px;
  font-weight: bold;
}

/* (+)アイコン */
.accordion_title::before,
.accordion_title::after {
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  transition: all 0.3s;
  margin: auto 0;
  background-color: var(--color-main);
  width: 20px;
  height: 4px;
  content: "";
}

.accordion_title::after {
  transform: rotate(90deg);
}

/* アコーディオンのコンテンツ */
.accordion_content {
  display: none;
  cursor: pointer;
  padding: 0 10px 15px 10px;
}

.accordion_content.is-open {
  display: block;
}

/* アコーディオン展開時の(-)アイコン */
.accordion_item.is-active .accordion_title::before {
  transform: rotate(180deg);
}

.accordion_item.is-active .accordion_title::after {
  transform: rotate(180deg);
  opacity: 0;
}

.categoryList {
  display: flex;
  position: relative;
}
.categoryList_item {
  display: inline-block;
  margin-right: 0.625rem;
  margin-bottom: 0.375rem;
  border-radius: 30px;
  background-color: var(--color-blue);
  padding: 0.1875rem 1rem;
  color: #fff;
  font-size: 0.8125rem;
}

.articleList {
  position: relative;
  padding: 0 40px;
  overflow: hidden;
}
.articleList_heading {
  position: relative;
  margin-bottom: 1.875rem;
  padding-left: 0.75rem;
  color: var(--color-black);
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
}
.articleList_heading::before {
  position: absolute;
  top: 0.375rem;
  left: 0;
  background-color: var(--color-black);
  width: 0.1875rem;
  height: 1.875rem;
  content: "";
}
.articleList_list {
  display: block;
}
.articleList_list::after {
  display: block;
  width: 30%;
  height: 0;
  content: "";
}
.articleList_list::before {
  display: block;
  order: 1;
  width: 30%;
  height: 0;
  content: "";
}
.articleList_item {
  margin-bottom: 60px;
  text-align: left;
}
.articleList_title {
  margin-bottom: 10px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  text-align: left;
}
.articleList_text {
  font-size: 0.875rem;
  text-align: left;
}
.articleList_pic {
  display: block;
  position: relative;
  margin: 0 auto 0.625rem;
  margin-bottom: 20px;
  width: 100%;
  overflow: hidden;
  text-align: center;
}
.articleList_pic::before {
  display: block;
  padding-top: 56%;
  content: "";
}
.articleList_pic img {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  margin: 0 auto;
  width: auto;
  height: 100%;
  text-align: center;
  text-align: center;
}
.articleListCategory {
  position: relative;
  margin: 20px auto 80px;
  border-top: 1px solid #dfdfdf;
  border-bottom: 1px solid #dfdfdf;
  padding: 20px 0;
}
.articleListCategory_heading {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  margin-top: -35px;
  margin-bottom: 20px;
  background-color: #fff;
  padding: 0 20px;
  font-size: 20px;
  text-align: center;
}
.articleListCategory_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  gap: 0 5%;
  margin-top: 10px;
  padding: 0;
}
.articleListCategory_item {
  margin-top: 5px;
  width: 45%;
}
.articleListCategory_item a {
  font-size: 14px;
}

.post {
  position: relative;
  margin-bottom: 60px;
}
.post_info {
  display: block;
}
.post_time {
  display: block;
  font-size: 0.875rem;
}
.post_category {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  margin-top: 5px;
  font-size: 0.875rem;
}
.post_category a {
  border: 1px solid #dfdfdf;
  border-radius: 5px;
  padding: 4px 20px;
}
.post_title {
  margin-bottom: 60px;
  padding-bottom: 40px;
  font-size: 1.5rem;
}
.post_title ._cate {
  display: inline-block;
  margin-right: 5px;
  border-radius: 30px;
  background-color: #dfdfdf;
  padding: 3px 16px;
  color: #fff;
  font-size: 1rem;
}
.post_title ._cate a {
  color: #fff;
}
.post_title ._sub {
  display: block;
  margin-top: 10px;
  font-weight: 500;
  font-size: 1.125rem;
  font-family: "Noto Sans JP", sans-serif;
}
.post_heading {
  margin: 0 0 40px;
  font-weight: 500;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
}
.post_info {
  margin: 20px 0 8px;
  font-size: 0.8125rem;
}
.post_date {
  display: flex;
}
.post_date::after {
  display: none;
}
.post_category a {
  margin-top: 5px;
  margin-right: 5px;
}
.post_list {
  margin: 80px 0 20px;
}
.post_body {
  font-weight: 400;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
}
.post_body .en {
  display: block;
  color: var(--color-sub);
  font-weight: 400;
  font-size: 0.875rem;
  font-family: "Noto Serif JP", serif;
}
.post_body p {
  font-size: 1rem;
}
.post_body img {
  max-width: 100%;
}
.post_body ._sec {
  margin-bottom: 100px;
}
.post_body h2 {
  position: relative;
  margin: 40px 0 30px;
  padding-top: 20px;
  font-weight: 500;
  font-size: 1.375rem;
  font-family: "Noto Sans JP", sans-serif;
}
.post_body h2 span {
  display: block;
  color: var(--color-sub);
  font-weight: 400;
  font-size: 0.875rem;
  font-size: 1rem;
  font-family: "Noto Serif JP", serif;
}
.post_body > h2 {
  margin: 0 0 30px;
}
.post_body h3 {
  position: relative;
  margin: 40px 0 30px;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  /*
  &::before{
    position: absolute;
    display: block;
    content: "";
    top: 4%;
    left: 0;
    width: 3px;
    height: 90%;
    background-color: var(--color-sub);
    z-index:2;
  }*/
}
.post_body h3 span {
  display: block;
  padding-bottom: 10px;
  color: var(--color-black);
  font-weight: 400;
  font-size: 0.875rem;
  font-size: 1.125rem;
  font-family: "Noto Serif JP", serif;
}
.post_body h4 {
  margin: 20px 0;
  font-weight: 500;
  font-size: 1.125rem;
  font-family: "Noto Sans JP", sans-serif;
}
.post_body h4 span {
  display: block;
  color: var(--color-sub);
  font-weight: 400;
  font-size: 0.875rem;
  font-size: 1rem;
  font-family: "Noto Serif JP", serif;
}
.post_body h5 {
  margin: 20px 0;
  font-weight: 500;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
}
.post_body b, .post_body strong {
  font-weight: bold;
}
.post_body figure {
  margin: 0;
}
.post_body figure img {
  max-width: 100%;
}
.post_body figcaption {
  margin-top: 6px;
  color: var(--color-dark-gray);
  font-size: 0.875rem;
  line-height: 1.6;
}
.post_body img {
  width: auto !important;
  max-width: 100%;
}
.post_body blockquote {
  margin: 30px 0;
  border: 1px solid var(--color-gray);
  background-color: var(--color-gray-bg);
  padding: 20px;
}
.post_body blockquote cite {
  color: var(--color-dark-gray);
  font-size: 0.875rem;
}
.post_body blockquote cite:before {
  padding-right: 6px;
  content: "―";
}
.post_body .wp-element-button {
  color: #fff;
}
.post_body .wp-block-list li {
  margin: 5px 10px;
}
.post_body iframe {
  width: 100%;
}
.post_body .post_box {
  margin: 20px 0;
  padding: 10px 20px;
}
.post_body ul {
  margin: 20px 0;
  padding-left: 20px;
}
.post_body ul li {
  margin: 0.5rem 0;
  list-style-type: disc !important;
}
.post_body ol {
  margin: 20px 0;
  padding-left: 20px;
}
.post_body ol li {
  margin: 8px 0;
  list-style-type: decimal !important;
}
.post_body .post_link {
  display: block;
  position: relative;
  margin: 0 auto;
  margin-top: 20px;
  border: 1px solid var(--color-dark-gray);
  border-radius: 40px;
  background-color: var(--color-white);
  padding: 8px 0;
  width: 60%;
  width: 60% !important;
  color: var(--color-black);
  text-align: center;
}
.post_body .post_link::after {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  background: url("../images/icon_arr.png") no-repeat right center;
  background-size: contain;
  width: 16px;
  height: 16px;
  content: "";
}
.post_body a {
  color: var(--color-link);
}
.post_body a[target=_blank] {
  position: relative;
  margin-right: 6px;
  margin-bottom: 5rem;
  background-image: url("../images/i_blank.png");
  background-position: right 0 center;
  background-size: 14px auto;
  background-repeat: no-repeat;
  padding-right: 24px;
}
.post_body hr {
  display: block;
  margin: 30px 0;
  border: 0;
  border-top: 1px solid var(--color-gray);
  width: 100%;
  height: 1px;
}
.post_body table {
  margin: 0;
  border-collapse: collapse;
}
.post_body table tr, .post_body table td {
  border: auto;
}
.post_body table td {
  padding: 15px;
  line-height: 1.8;
}
.post_body .wp-block-group {
  margin: 20px 0;
}
.post_body .wp-block-table {
  margin-left: -20px;
  width: calc(100% + 40px);
}
.post_body .wp-block-image {
  margin: 20px 0;
}
.post_body .wp-block-columns {
  gap: 0;
  margin: 20px 0;
}
.post_body .wp-block-columns .wp-block-image {
  margin: 0;
}
.post_body .wp-block-column h4, .post_body .wp-block-column h5 {
  margin: 20px 0 10px;
}
.post_body .is-layout-flex {
  gap: 20px;
}
.post_body .swipe_text {
  display: block;
  margin-bottom: 0;
  background-image: url("../images/i_swipe.png");
  background-position: 0 0;
  background-size: 38px auto;
  background-repeat: no-repeat;
  padding: 11px 0;
  padding-left: 60px;
  font-size: 0.8125rem;
}
.post_body .swiper-container2 {
  margin: 20px auto;
  width: 100%;
  max-width: 1200px;
  overflow: hidden;
}
.post_body .swiper-container2 .swiper-wrapper {
  display: flex;
  transition-timing-function: linear !important;
}
.post_body .swiper-container2 .swiper-slide {
  position: relative;
  flex-shrink: 0;
  background: #000;
  width: auto;
  height: 40vw !important;
  overflow: hidden;
}
.post_body .swiper-container2 .swiper-slide img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.post_body .toc {
  margin: 20px 0;
  border: 1px solid var(--color-gray);
  padding: 20px 30px;
}
.post_body .toc_heading {
  font-size: 1.5rem;
}
.post_body .flow {
  width: 100%;
}
.post_body .flow_box {
  margin-bottom: 40px;
  border-bottom: 1px solid var(--color-gray);
  padding-bottom: 40px;
}
.post_body .flow_heading {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 1.375rem;
  font-family: "Noto Sans JP", sans-serif;
}
.post_body .flow_heading span {
  display: block;
  padding-left: 0;
  font-weight: 500;
  font-size: 1.125rem;
  font-family: "Noto Sans JP", sans-serif;
}
.post_body .flow_pic {
  margin: 20px auto;
  text-align: center;
}
.post_body .box {
  margin: 20px 0;
  border: 1px solid var(--color-gray);
  background-color: var(--color-gray-bg);
  padding: 20px;
}
.post_body .staff {
  margin: 40px 0;
}
.post_body .staff_item {
  display: block;
  margin-bottom: 40px;
  border-bottom: 2px solid #dfdfdf;
  padding-bottom: 40px;
}
.post_body .staff_pic {
  margin: 0 0 20px;
  padding: 0;
  width: 100%;
}
.post_body .staff_pic img {
  width: 100%;
  height: auto;
}
.post_body .staff_box {
  flex: 1;
}
.post_body .staff_name {
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 1.375rem;
}
.post_body .staff_name span {
  padding-left: 10px;
  font-weight: normal;
  font-size: 0.8125rem;
}
.post_body .staff_post {
  color: #666;
  font-size: 0.875rem;
}
.post_body .staff_title {
  position: relative;
  margin-top: 24px;
  margin-bottom: 10px;
  font-weight: bold;
}
.post_body .staff_title span {
  background-color: var(--color-white);
  padding: 2px 10px 3px 0;
}
.post_body .staff_title::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
  background-color: #dfdfdf;
  width: 100%;
  height: 1px;
  content: "";
}
.post_body .staff p {
  margin: 5px 0;
}
.post_body .planbox {
  margin-bottom: 40px;
  border-bottom: 1px solid var(--color-gray);
  padding-bottom: 40px;
}
.post_body .planbox_inner {
  display: block;
}
.post_body .planbox_pic {
  margin-bottom: 10px;
  width: 100%;
}
.post_body .planbox_title {
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 1.25rem;
}
.post_body .planbox_btn {
  margin: 20px 0;
}
.post_body .planbox_btn a {
  display: block !important;
  display: inline-block;
  position: relative;
  transition: all 0.5s ease;
  box-shadow: 0 4px 0px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  background-color: #3F5872;
  padding: 10px 40px;
  color: var(--color-white);
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  text-decoration: none;
}
.post_body .faq_list {
  margin-bottom: 20px;
  border-bottom: 1px solid var(--color-gray);
  padding-bottom: 20px;
}
.post_body .faq_list dt, .post_body .faq_list dd {
  position: relative;
  margin-bottom: 1em;
  padding-left: 3em;
}
.post_body .faq_list dt::before,
.post_body .faq_list dd::before {
  position: absolute;
  top: -2px;
  left: 0;
  border-radius: 50%;
  width: 2em;
  height: 2em;
  content: "";
  color: white;
  font-weight: bold;
  line-height: 1.8em;
  font-family: sans-serif;
  text-align: center;
}
.post_body .faq_list dt::before {
  background-color: #666;
  content: "Q";
}
.post_body .faq_list dd::before {
  background-color: var(--color-main);
  content: "A";
}
.post .center {
  text-align: center;
}
.post .has-background {
  padding: 20px;
}
.post .wp-block-group.is-row.is-nowrap.is-layout-flex.wp-container-1 {
  gap: 2em;
}
.post .alignleft {
  float: none;
  margin-right: 0;
  width: 100%;
}
.post .alignright {
  float: none;
  margin-left: 0;
  width: 100%;
}
.post .swiper-slide {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  height: 400px !important;
  overflow: hidden !important;
}
.post form dl {
  display: block;
  border-bottom: 1px solid var(--color-gray);
  padding: 25px 0;
}
.post form dt {
  position: relative;
  margin-right: 40px;
  margin-bottom: 8px;
  padding-top: 6px;
  width: 100%;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}
.post form dd {
  flex-grow: 1;
}
.post form .wpcf7-list-item.first, .post form .wpcf7-list-item {
  margin-right: 15px;
  margin-left: 0 !important;
  padding-left: 0 !important;
}
.post form ._ind {
  display: inline-block;
  right: 0;
  margin-left: 10px;
  background-color: var(--color-red);
  padding: 2px 10px;
  color: #fff;
  font-size: 0.8125rem;
}
.post form ._small input {
  width: 120px;
}
.post .vk_slider_item_container {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  height: 100% !important;
}
.post .vk_slider_item_container img {
  display: block !important;
  width: auto !important;
  height: auto;
  height: 100% !important;
  -o-object-fit: contain !important;
     object-fit: contain !important;
}
.post .vk_slider_item_container figure {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  height: 100% !important;
}
.post .vk_slider_item_container figure img {
  width: auto !important;
  height: auto !important;
  max-height: 100% !important;
}

.postList {
  display: flex;
  position: relative;
  justify-content: space-between;
}
.postList_link {
  font-size: 0.8125rem;
  text-decoration: none;
}
.postList_link._prev {
  position: relative;
  margin-left: 20px;
  padding-left: 20px;
}
.postList_link._prev::before {
  position: absolute;
  top: 50%;
  left: -30px;
  background-color: var(--color-black);
  width: 30px;
  height: 1px;
  content: "";
}
.postList_link._prev::after {
  position: absolute;
  top: calc(50% - 3px);
  left: -30px;
  transform: rotate(-22deg);
  background-color: #000;
  width: 14px;
  height: 1px;
  content: "";
}
.postList_link._next {
  position: relative;
  margin-right: 20px;
  padding-right: 20px;
}
.postList_link._next::before {
  position: absolute;
  top: 50%;
  right: -30px;
  background-color: var(--color-black);
  width: 30px;
  height: 1px;
  content: "";
}
.postList_link._next::after {
  position: absolute;
  top: calc(50% - 3px);
  right: -30px;
  transform: rotate(22deg);
  background-color: #000;
  width: 14px;
  height: 1px;
  content: "";
}
.postList ._no {
  opacity: 0.2;
}

.pageform {
  position: relative;
  margin: 40px 0;
  padding: 0;
}
.pageform_inner {
  margin: 0 auto;
}

.entry {
  position: relative;
}
.entry a {
  text-decoration: none;
}
.entry_heading {
  position: relative;
  margin-bottom: 1.875rem;
  padding-left: 0.75rem;
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
}
.entry_heading::before {
  position: absolute;
  top: 0.375rem;
  left: 0;
  background-color: var(--color-main);
  width: 0.1875rem;
  height: 1.875rem;
  content: "";
}
.entry_heading::after {
  position: absolute;
  top: 0.375rem;
  left: 0;
  background-color: var(--color-dark-gray);
  width: 0.1875rem;
  height: 0.375rem;
  content: "";
}
.entry_count {
  margin-bottom: 10px;
  text-align: right;
}
.entry_notfound {
  margin: 60px auto;
  text-align: center;
}
.entry_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 auto;
}
.entry_list._clm3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1%;
  margin: 0 auto;
  margin-bottom: 40px;
  width: 100%;
}
.entry_list._clm3::after {
  display: block;
  width: 31% !important;
  height: 0;
  content: "";
}
.entry_list._clm3::before {
  display: block;
  order: 1;
  width: 31% !important;
  height: 0;
  content: "";
}
.entry_list._clm3 .entry_item {
  margin-bottom: 60px;
}
.entry_list._clm4 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0;
  margin: 0 auto;
  width: 100%;
}
.entry_list._clm4::after {
  display: block;
  width: 23%;
  height: 0;
  content: "";
}
.entry_list._clm4::before {
  display: block;
  order: 1;
  width: 23%;
  height: 0;
  content: "";
}
.entry_list._clm4 .entry_item {
  margin-bottom: 60px;
}
.entry_item {
  position: relative;
  margin-bottom: 20px;
  width: 48%;
}
.entry_new {
  position: absolute;
  top: 0;
  left: 6px;
  z-index: 2;
  background-color: var(--color-sub2);
  padding: 0 20px 1px;
  color: var(--color-white);
  font-size: 0.875rem;
}
.entry_pic {
  display: block;
  position: relative;
  margin: 0 auto 10px;
  border-radius: 5px;
  background: #efefef;
  width: 100%;
  overflow: hidden;
}
.entry_pic::before {
  display: block;
  padding-top: 66.66%;
  content: "";
}
.entry_pic img {
  position: absolute;
  top: 0;
  left: 0;
  transform: none;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.entry_info {
  display: flex;
  vertical-align: middle;
  margin-bottom: 0.5rem;
  font-size: 0.8125rem;
}
.entry_info._staff {
  display: block;
}
.entry_date {
  display: block;
  position: relative;
  margin-right: 5px;
  color: var(--color-dark-gray);
}
.entry_category {
  display: flex;
  gap: 2px;
}
.entry_category span {
  background-color: var(--color-sub);
  padding: 2px 6px;
  color: #fff;
  font-size: 0.75rem;
}
.entry_category_blog .entry_category {
  position: relative;
}
.entry_data {
  display: block;
  margin: 5px 0 0;
}
.entry._staff .entry_interview {
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  background-color: var(--color-main) !important;
  padding: 12px !important;
  color: #fff;
  font-size: 0.6875rem;
}
.entry._staff .entry_item {
  position: relative;
  margin-bottom: 1.875rem;
  width: 100%;
}
.entry._staff .entry_info {
  display: block;
}
.entry._staff .entry_description {
  margin: 10px 0 20px;
  font-size: 1rem;
}
.entry._staff .entry_birth {
  margin: 10px 0;
}
.entry._staff .entry_post {
  margin-bottom: 10px;
  font-size: 0.9375rem;
}
.entry._staff .entry_name {
  margin-bottom: 10px;
  font-size: 1.25rem;
}
.entry._staff .entry_name span {
  display: inline-block;
  padding-left: 8px;
  font-size: 0.9375rem;
}
.entry._staff .entry_text {
  flex-grow: 1 !important;
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 1rem;
}

.article {
  position: relative;
}
.article_content {
  padding-bottom: 60px;
}
.article_content._clm3 {
  padding-right: 0;
}
.article_side {
  position: relative;
  margin: 0;
  padding: 30px 0;
  width: 100%;
}

.side {
  position: relative;
}
.side_title {
  position: relative;
  margin: 0;
  padding: 0 0 0 20px;
  font-weight: 500;
  font-size: 1.25rem;
  font-family: "Noto Sans JP", sans-serif;
}
.side_title::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color-main);
  width: 4px;
  height: 26px;
  content: "";
}
.side_list {
  margin: 14px 0 40px;
}
.side_list a {
  display: block;
  margin: 16px 0;
  padding: 0;
}
.side_list .children .side_item {
  border-bottom: none;
}
.side_list .children a {
  padding-left: 10px;
}
.side_list .children a::before {
  content: "－";
}
.side_item {
  margin: 0;
  border-bottom: 1px solid var(--color-gray);
  padding: 0;
}
.side ._text {
  display: block;
  font-size: 1rem;
}
.side ._post {
  padding-right: 5px;
  font-size: 0.8125rem;
}
.side ._name {
  font-size: 1rem;
}

.writer {
  position: relative;
  margin: 60px 0;
}
.writer_box {
  display: block;
  margin: 0 auto;
  border: 3px solid var(--color-dark-line);
  padding: 0 25px 25px 25px;
  width: 100%;
  text-align: center;
}
.writer_pic {
  display: block;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}
.writer_pic img {
  display: block;
  margin: 0 auto;
  width: 160px;
  text-align: center;
}
.writer_text {
  margin-left: 0;
  text-align: justify;
}
.writer_name {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 1.375rem;
  font-family: "Noto Sans JP", sans-serif;
}

.relatedWorks {
  position: relative;
}
.relatedWorks_inner {
  margin: 0 auto;
}
.relatedWorks_heading {
  margin-bottom: 30px;
  font-weight: 500;
  font-size: 1.25rem;
  font-family: "Noto Sans JP", sans-serif;
}
.relatedWorks_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 auto;
}
.relatedWorks_list::after {
  display: block;
  width: 48%;
  height: 0;
  content: "";
}
.relatedWorks_list::before {
  display: block;
  order: 1;
  width: 48%;
  height: 0;
  content: "";
}

.wide {
  position: relative;
}
.wide_content {
  margin: 0 0 60px;
}

.worksCategory {
  margin-bottom: 60px;
  border-bottom: 1px solid #dfdfdf;
  /* チェックボックス自体は非表示 */
  /* チェックが入ったとき、ラベル全体の背景を変える */
  /* span自体を100%に広げる */
}
.worksCategory_heading {
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  margin: 0 0 20px;
  font-weight: bold;
  font-size: 1.125rem;
  text-align: center;
}
.worksCategory_heading span {
  margin: 0 auto;
  background-color: var(--color-main-bg);
  padding: 0 20px;
  text-align: center;
}
.worksCategory_heading span span {
  padding: 0 5px;
}
.worksCategory_heading::after {
  display: block;
  position: absolute;
  top: 50%;
  z-index: -1;
  background-color: #dfdfdf;
  width: 100%;
  height: 1px;
  content: "";
}
.worksCategory_subbox {
  position: relative;
  border: 3px solid var(--color-gray);
  padding: 20px;
}
.worksCategory_box {
  display: block;
  align-items: center;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--color-gray);
  padding-bottom: 20px;
}
.worksCategory_box._type {
  border-bottom: none;
  padding-left: 0;
}
.worksCategory_title {
  margin-bottom: 10px;
  width: 140px;
  font-weight: bold;
  font-size: 1.125rem;
}
.worksCategory_list {
  display: flex;
  flex-wrap: wrap;
}
.worksCategory_item {
  font-size: 0.8125rem;
}
.worksCategory_btn {
  margin: 20px auto;
  text-align: center;
}
.worksCategory_btn button {
  background-color: var(--color-main) !important;
  padding: 9px 80px 10px;
  color: var(--color-white);
  font-size: 1.25rem;
}
.worksCategory .js-category-content {
  transition: max-height 0.8s ease;
  max-height: 0;
  overflow: hidden;
}
.worksCategory .toggle-icon {
  transition: transform 0.8s ease;
  font-size: 1rem;
}
.worksCategory .toggle-icon.open {
  transform: rotate(120deg);
}
.worksCategory .js-toggle-category {
  pointer-events: auto;
}
.worksCategory .checkbox-label {
  display: inline-block;
  position: relative;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  cursor: pointer;
  margin: 4px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: var(--color-white);
  color: var(--color-black);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.worksCategory .checkbox-label input[type=checkbox] {
  display: none;
}
.worksCategory .checkbox-label input[type=checkbox]:checked ~ span {
  border-color: var(--color-main);
  background-color: #6b86a2;
  color: var(--color-white);
}
.worksCategory .checkbox-label span {
  display: block;
  border-radius: 3px;
  padding: 3px 14px 4px;
}

.form {
  position: relative;
}
.form_list {
  display: block;
  border-bottom: 1px solid var(--color-gray);
  padding: 25px 0;
}
.form_term {
  position: relative;
  margin-right: 40px;
  margin-bottom: 8px;
  padding-top: 6px;
  width: 100%;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}
.form_desc {
  flex-grow: 1;
}
.form_label {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.form_policy {
  margin: 40px auto;
  line-height: 1.8;
  text-align: center;
}
.form_policy a {
  text-decoration: underline;
}
.form_btn {
  margin: 40px auto;
  text-align: center;
}
.form_text {
  margin: 20px 0;
}
.form_text strong {
  font-size: 1.125rem;
}
.form_note {
  font-size: 0.8125rem;
}
.form .request_item {
  display: flex;
  margin-top: 10px;
}
.form ._ind {
  display: inline-block;
  right: 0;
  margin-left: 10px;
  background-color: var(--color-red);
  padding: 2px 10px;
  color: #fff;
  font-size: 0.8125rem;
}
.form .error {
  margin: 40px 0;
}
.form .error_box {
  border: 1px solid var(--color-red);
  border-radius: 10px;
  padding: 30px;
}
.form .error span {
  display: block;
  margin: 4px 0;
  color: var(--color-red);
}

input {
  margin-top: 5px;
  font-size: 1rem;
}
input[type=radio] {
  position: relative;
  vertical-align: top;
  cursor: pointer;
  width: 26px;
}
input[type=radio]::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #999;
  border-radius: 50%;
  background-color: #fff;
  width: 20px;
  height: 20px;
  content: "";
}
input[type=radio]:checked {
  color: var(--color-main);
}
input[type=radio]:checked::after {
  display: block;
  position: absolute;
  top: 3px;
  left: 3px;
  border-radius: 50%;
  background: var(--color-main);
  width: 16px;
  height: 16px;
  content: "";
}
input[type=checkbox] {
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 10px;
  margin-bottom: 6px;
  border: 1px solid var(--color-dark-gray);
  background-color: #fff;
  width: 24px;
  height: 24px;
}
input[type=checkbox]:checked {
  position: relative;
}
input[type=checkbox]:checked::after {
  display: block;
  position: absolute;
  top: 0;
  bottom: 3px;
  left: 4px;
  transform: rotate(-45deg);
  opacity: 1;
  margin: auto;
  border-bottom: 3px solid var(--color-black);
  border-left: 3px solid var(--color-black);
  width: 12px;
  height: 5px;
  content: "";
}
input[type=text], input[type=email], input[type=tel], input[type=date] {
  display: block;
  border: 1px solid var(--color-dark-gray);
  background-color: #fff;
  padding: 10px;
  width: 100%;
  font-size: 100%;
  font-size: 1rem;
}
input[type=date] {
  width: auto;
}
input[type=submit] {
  display: block;
  margin: 40px auto;
  background-color: var(--color-black);
  padding: 18px 0;
  width: 100%;
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  text-align: center;
}

textarea {
  display: block;
  margin-top: 5px;
  border: 1px solid var(--color-dark-gray);
  padding: 10px;
  width: 100%;
  font-size: 1rem;
}

form strong {
  display: inline-block;
  margin: 10px;
  background-color: var(--color-red);
  padding: 5px 10px 6px;
  color: #fff;
  font-size: 0.8125rem;
  line-height: 1;
}

select {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  border: 1px solid var(--color-dark-gray);
  background-color: #fff;
  padding: 10px 20px;
  width: 100%;
  font-size: 1rem;
}

.input {
  position: relative;
}
.input_radio {
  position: relative;
  cursor: pointer;
  width: 26px;
}
.input_radio::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #999;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  content: "";
}
.input_radio:checked {
  color: var(--color-main);
}
.input_radio:checked::after {
  display: block;
  position: absolute;
  top: 3px;
  left: 3px;
  border-radius: 50%;
  background: var(--color-main);
  width: 16px;
  height: 16px;
  content: "";
}
.input_checkbox {
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 10px;
  border: 1px solid var(--color-dark-gray);
  width: 24px;
  height: 24px;
}
.input_checkbox:checked {
  position: relative;
}
.input_checkbox:checked::after {
  display: block;
  position: absolute;
  top: 0;
  bottom: 3px;
  left: 4px;
  transform: rotate(-45deg);
  opacity: 1;
  margin: auto;
  border-bottom: 3px solid var(--color-black);
  border-left: 3px solid var(--color-black);
  width: 12px;
  height: 5px;
  content: "";
}
.input_label {
  display: inline;
  cursor: pointer;
  padding: 2px 0 0 5px;
  width: 90%;
}
.input_text {
  display: block;
  border: 1px solid var(--color-dark-gray);
  padding: 10px;
  width: 100%;
  font-size: 100%;
}
.input_text._small {
  width: 150px;
}
.input_textarea {
  display: block;
  border: 1px solid var(--color-dark-gray);
  padding: 10px;
  width: 100%;
  height: 12.5rem;
  font-size: 100%;
}
.input_zip {
  display: flex;
  align-items: center;
  margin: 0 0 10px;
}
.input_zip span {
  margin-right: 10px;
  line-height: 2;
}
.input_submit {
  display: block;
  background-color: var(--color-black);
  padding: 18px 0;
  width: 100%;
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
}
.input_submit._back {
  display: block;
  margin: 60px auto 0;
  background-color: var(--color-dark-gray);
  padding: 14px 0;
  width: 60%;
  text-align: center;
}
.input_submit[disabled=disabled] {
  opacity: 0.5;
  cursor: default;
}

.wpcf7 form.sent .wpcf7-response-output {
  display: none !important;
}

#map {
  position: relative;
  margin: 20px 0;
  width: 100%;
  height: 480px;
}
#map iframe {
  width: 100%;
  height: 480px;
}

.shine-text {
  display: inline-block;
  position: relative;
  /* ←常時表示するベースカラー */
  overflow: hidden;
  color: #c3bdb0;
  font-weight: 700;
  font-size: 3rem;
}

/* 擬似要素で光の帯を上から重ねる */
.shine-text::before {
  position: absolute;
  top: 0;
  left: -100%;
  transform: skewX(-25deg);
  opacity: 0;
  z-index: 2;
  background: linear-gradient(120deg, rgba(172, 169, 169, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(136, 134, 134, 0) 100%);
  width: 60%;
  height: 100%;
  pointer-events: none;
  content: "";
}

/* アクティブ時に光を流す */
.shine-text.active::before {
  opacity: 1;
  -webkit-animation: shine 2.5s ease-in-out forwards;
          animation: shine 2.5s ease-in-out forwards;
}

@-webkit-keyframes shine {
  0% {
    left: -100%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    left: 120%;
    opacity: 0;
  }
}

@keyframes shine {
  0% {
    left: -100%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    left: 120%;
    opacity: 0;
  }
}
/* ===============================
   フェードイン共通アニメーション
   =============================== */
.fadein {
  opacity: 0;
  transition: opacity 2s ease-out;
  transition-delay: 0.5s;
  will-change: opacity;
}
.fadein.is-show {
  opacity: 1;
}

/* 上から・左から・右から などバリエーション */
.fadein-up {
  transform: translateY(30px);
  opacity: 0;
  transition: opacity 2s ease-out, transform 2s ease-out;
  transition-delay: 0.5s;
  will-change: opacity, transform;
}
.fadein-up.is-show {
  transform: translateY(0);
  opacity: 1;
}

.fadein-down {
  transform: translateY(-30px);
  opacity: 0;
  transition: opacity 2s ease-out, transform 2s ease-out;
  transition-delay: 0.5s;
}
.fadein-down.is-show {
  transform: translateY(0);
  opacity: 1;
}

.fadein-left {
  transform: translateX(-30px);
  opacity: 0;
  transition: opacity 2s ease-out, transform 2s ease-out;
  transition-delay: 0.5s;
}
.fadein-left.is-show {
  transform: translateX(0);
  opacity: 1;
}

.fadein-right {
  transform: translateX(30px);
  opacity: 0;
  transition: opacity 2s ease-out, transform 2s ease-out;
  transition-delay: 0.5s;
}
.fadein-right.is-show {
  transform: translateX(0);
  opacity: 1;
}

._sec {
  position: relative;
  margin-bottom: 5rem;
}

.breadcrumb {
  position: relative;
  padding: 80px 10px 10px 10px;
  text-decoration: none;
}
.breadcrumb_list {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem 0;
  overflow: auto;
  white-space: nowrap;
  word-break: keep-all;
}
.breadcrumb_item {
  display: flex;
  position: relative;
  align-items: center;
  font-size: 0.8125rem;
}
.breadcrumb_item:first-child::before {
  display: none;
}
.breadcrumb_item::before {
  display: block;
  position: relative;
  margin-right: 0.75rem;
  margin-left: 0.8125rem;
  background: url("../images/i_arr_breadcrumb.svg") 0 0 no-repeat;
  background-size: contain;
  width: 0.5rem;
  height: 0.625rem;
  content: "";
}
.breadcrumb_link {
  color: #ACACAC;
  line-height: 1;
  text-decoration: none;
}
.breadcrumb_current {
  color: var(--color-black);
  line-height: 1;
}
.pic {
  position: relative;
  margin: 1.875rem 0;
}

.wp-pagenavi {
  position: relative;
  margin: 5rem 0 0;
  text-align: center;
}

.wp-pagenavi .current {
  border: 1px solid var(--color-black);
  background: var(--color-black);
  padding: 8px 14px;
  color: var(--color-white);
}
.wp-pagenavi a {
  display: inline-block;
  transition: all 0.6s ease-out;
  margin: 0 5px;
  border: 1px solid var(--color-black);
  padding: 8px 14px;
  font-size: 14px;
  text-decoration: none;
}
.wp-pagenavi span {
  display: inline-block;
  margin: 10px 5px;
  border: 1px solid var(--color-black);
  padding: 5px 12px;
  font-size: 14px;
}

._blank {
  position: relative;
  margin-bottom: 5rem;
  background-image: url("../img/i_blank.png");
  background-position: right 0 center;
  background-size: 15px auto;
  background-repeat: no-repeat;
  padding-right: 24px;
}

@media print, screen and (min-width: 768px) {
  body a {
    transition: all 0.5s ease;
  }
  body a:hover {
    opacity: 0.6;
  }
  ._sp {
    display: none !important;
  }
  .swiper-container {
    transition-timing-function: linear;
    margin: 2.5rem auto;
    overflow: hidden;
  }
  .kvswiper-button-prev {
    left: 0 !important;
    margin-left: 40%;
  }
  .kvswiper-button-next {
    right: 0 !important;
    margin-right: 40%;
  }
  .header {
    background-color: transparent;
    padding: 12px 40px;
    padding: 20px;
    height: auto;
  }
  .header_logo a {
    gap: 20px;
    font-size: 1.75rem;
  }
  .header_logo img {
    width: 80px;
  }
  .main._home {
    padding-top: 5rem;
  }
  .main_content {
    margin-bottom: 5rem;
    max-width: 1000px;
  }
  .main_homeInformation {
    margin: 40px auto;
  }
  .main_homeSdgs {
    margin: 80px auto;
  }
  .main_homeAccess {
    margin: 80px auto;
  }
  .main_homeInstagram {
    margin: 80px auto;
    padding: 0;
  }
  .main_homeContents {
    margin: 0 auto 0;
    padding: 80px 30px 60px;
  }
  .main_post {
    padding: 0;
    max-width: 1000px;
  }
  .main_article {
    padding: 0;
    max-width: 1000px;
  }
  .main_wide {
    padding: 0;
  }
  .main_page {
    margin-top: 40px;
    padding: 0;
    max-width: 1000px;
  }
  .main_company {
    padding: 0;
    max-width: 1000px;
  }
  .footer {
    margin: 0;
    border-top: 1px solid var(--color-sub);
  }
  .footer_inner {
    margin: 0 auto;
    border: none;
    padding: 60px 0;
    max-width: 1200px;
  }
  .footer_text {
    font-size: 0.875rem;
  }
  .footer_company {
    font-size: 0.8125rem;
  }
  .footer_copy {
    padding: 20px 0;
  }
  .footer_sns {
    margin-top: 20px;
  }
  .headerNavi {
    padding: 0;
  }
  .headerNavi_inner {
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    position: absolute;
    top: 180px;
    left: 50%;
    transform: translateX(-50%);
    padding: 36px 0;
  }
  .headerNavi_heading {
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    text-align: center;
  }
  .headerNavi_inner {
    display: flex;
    gap: 20px;
    width: 720px;
  }
  .headerNavi_list {
    width: 48%;
  }
  .headerNavi_item._h a::before {
    top: 15%;
  }
  .headerNavi_item a {
    font-size: 1.125rem;
  }
  .headerNavi_item a._blank span::after {
    background-image: url("../images/i_link.svg");
  }
  .footerNavi {
    display: flex;
    gap: 20px;
  }
  .footerNavi_list {
    width: 45%;
  }
  .footerNavi_item a {
    font-size: 0.875rem;
  }
  .footerNavi ._sns {
    display: block;
  }
  .footerAddress {
    padding: 40px;
  }
  .footerAddress_title {
    font-size: 1.5rem;
  }
  .footerCopy_title {
    font-size: 1.375rem;
  }
  .footerCopy_title span {
    display: inline;
  }
  .footerCompany_text {
    text-align: center;
  }
  .footerContact {
    margin: 30px auto;
    width: 320px;
  }
  .fixedContact {
    display: block;
    top: 50%;
    right: -100px;
    bottom: auto;
    left: auto;
    transform: translateY(-50%) translateX(30px);
    opacity: 0;
    transition: right 0.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 10px 0 0 10px;
    width: 62px;
    height: 180px;
  }
  .fixedContact.is-show {
    right: 0;
    transform: translateY(-50%) translateX(0);
    opacity: 1;
  }
  .fixedContact a:last-child {
    border-bottom: none;
  }
  .fixedContact a {
    display: block;
    border-right: none;
    border-bottom: 1px solid #8f9dae;
    padding: 20px 6px;
    width: 70px;
  }
  .fixedContact a img {
    width: auto;
    height: 28px;
  }
  .pagetop {
    right: 100px;
    bottom: 40px;
    width: 60px;
    height: auto;
  }
  #nav-toggle, .close {
    top: 20px;
    right: 20px;
    z-index: 1000;
    cursor: pointer;
    margin: 0 !important;
    padding: 0;
    width: 60px;
    height: 60px;
  }
  #nav-toggle span {
    right: 12px;
    width: 36px;
  }
  .menu {
    top: 18px !important;
    right: 52px;
  }
  #nav-toggle span:nth-child(1) {
    top: 18px;
  }

  #nav-toggle span:nth-child(2) {
    top: 28px;
  }

  #nav-toggle span:nth-child(3) {
    top: 38px;
  }
  .kv {
    padding: 0;
    height: calc(100vh - 20px);
    min-height: 780px;
  }
  .kv_txt {
    font-size: 2.5rem;
  }
  .kv_txt span {
    display: inline;
  }
  .kv .swiper-container {
    height: calc(100vh - 20px);
  }
  .kv .swiper-txt {
    padding: 20px;
    font-size: 1.625rem;
  }
  .kv .slide-img {
    height: 100vh !important;
  }
  .scrolldown {
    right: 20px;
  }
  .sns {
    top: 24px;
    right: 120px;
  }
  .sns_list a {
    height: 30px;
  }
  .sns_list a._youtube {
    height: 24px;
  }
  .mainHead {
    margin: 0 auto;
    max-width: 1200px;
    height: 200px;
  }
  .mainHead_heading {
    font-size: 1rem;
    text-align: left;
  }
  .mainHead_heading span {
    font-size: 2.625rem;
  }
  .homeInformation_inner {
    display: flex;
    gap: 40px;
    margin: 0 auto;
    padding: 0;
    width: 1000px;
    text-align: left;
  }
  .homeInformation_more {
    position: relative;
    margin-left: 10px;
  }
  .homeConcept {
    padding: 80px 60px;
  }
  .homeConcept_heading {
    font-weight: 500;
    font-size: 2rem;
    font-family: "Noto Sans JP", sans-serif;
  }
  .homeConcept_heading span {
    display: block;
    color: var(--color-sub);
    font-weight: 400;
    font-size: 1rem;
    font-family: "Noto Serif JP", serif;
  }
  .homeConcept_inner {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
  }
  .homeConcept_box {
    padding: 0 80px;
    width: 60%;
    font-weight: 400;
    font-size: 1rem;
    font-family: "Noto Sans JP", sans-serif;
  }
  .homeConcept_pic {
    width: 40%;
  }
  .homeConcept_pic img {
    border-radius: 5px;
  }
  .homeConcept_link {
    margin-left: 0;
    width: 200px !important;
  }
  .homeDesign {
    padding: 80px 60px;
  }
  .homeDesign_heading {
    font-weight: 500;
    font-size: 2rem;
    font-family: "Noto Sans JP", sans-serif;
  }
  .homeDesign_heading span {
    display: block;
    color: var(--color-sub);
    font-weight: 400;
    font-size: 1rem;
    font-family: "Noto Serif JP", serif;
  }
  .homeDesign_inner {
    display: flex;
    align-items: center;
  }
  .homeDesign_box {
    padding: 0 80px;
    width: 60%;
    font-size: 1rem;
  }
  .homeDesign_pic {
    width: 40%;
  }
  .homeDesign_pic img {
    border-radius: 5px;
  }
  .homeDesign_link {
    margin-left: 0;
    width: 200px;
  }
  .homeSystem_inner {
    margin: 0 auto;
    padding: 40px 0;
    width: 1000px;
    text-align: left;
  }
  .homeSystem_text {
    font-size: 1rem;
  }
  .homeSystem_heading {
    margin-bottom: 40px;
    font-size: 1.5rem;
  }
  .homeSystem_item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
  }
  .homeSystem_pic {
    width: 46%;
  }
  .homeSystem_title {
    margin-top: 0;
    font-size: 1.25rem;
  }
  .homeSystem_btn a {
    padding: 10px 0 12px 20px;
    width: 260px;
  }
  .homeSystem_btn a {
    padding: 10px 0 12px 20px;
    width: 260px;
  }
  .homeWorks_inner {
    margin: 0 auto;
    max-width: 1200px;
  }
  .homeWorks_head {
    justify-content: flex-start;
    gap: 20px;
  }
  .homeWorks_heading {
    padding: 0;
    font-weight: 500;
    font-size: 2rem;
    font-family: "Noto Sans JP", sans-serif;
  }
  .homeWorks_heading span {
    display: block;
    color: var(--color-sub);
    font-weight: 400;
    font-size: 1rem;
    font-family: "Noto Serif JP", serif;
  }
  .homeWorks_total {
    margin: 0 30px 16px 30px;
  }
  .homeWorks_total::before {
    display: inline-block;
    position: absolute;
    top: -5px;
    left: -20px;
    transform: rotate(25deg);
    transform-origin: center;
    background-color: var(--color-gray);
    width: 1px;
    height: 50px;
    content: "";
    font-weight: normal;
    font-size: 2.25rem;
  }
  .homeWorks_list {
    padding-left: 0;
  }
  .homeWorks_title {
    font-size: 1rem;
  }
  .homeWorks_link {
    display: inline-block !important;
    margin: 0 auto;
    width: 200px !important;
  }
  .homeWorksSwiper .swiper-button-prev, .homeWorksSwiper .swiper-button-next {
    display: none;
  }
  .homeWorksSwiper {
    overflow: visible;
  }
  .homeWorksSwiper .swiper-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(0, 1fr))[2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -moz-column-gap: 40px;
         column-gap: 40px;
    row-gap: 40px;
  }
  .homeWorksSwiper .swiper-slide {
    margin-right: 0 !important;
    width: auto !important;
  }
  .homeWorksSwiper .swiper-pagination,
.homeWorksSwiper .swiper-button-prev,
.homeWorksSwiper .swiper-button-next {
    display: none;
  }
  .homeCommitment {
    background: linear-gradient(to bottom, #F6F5F0 0%, #ffffff 60%);
    padding: 80px 40px;
  }
  .homeCommitment_heading {
    font-weight: 500;
    font-size: 2rem;
    font-family: "Noto Sans JP", sans-serif;
  }
  .homeCommitment_heading span {
    display: block;
    color: var(--color-sub);
    font-weight: 400;
    font-size: 1rem;
    font-family: "Noto Serif JP", serif;
  }
  .homeCommitment_inner {
    margin: 0 auto;
  }
  .homeCommitment_list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
    gap: 40px;
    padding: 0 20px;
  }
  .homeCommitment_item::after {
    right: 0;
    left: auto;
    width: 1px;
    height: 100%;
  }
  .homeCommitment_item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    padding-left: 20px;
    height: 100%;
  }
  .homeCommitment_item:before {
    left: -20px;
  }
  .homeCommitment_contents {
    display: flex;
    flex: 1;
    flex-direction: column;
    margin-right: 40px;
  }
  .homeCommitment_pic {
    flex: none;
    margin: 20px auto 0;
    aspect-ratio: auto;
    width: 100%;
    max-width: 200px;
    overflow: hidden;
    text-align: center;
  }
  .homeCommitment_pic img {
    display: block;
    margin-left: 0;
    width: 100%;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .homeCommitment_lead {
    margin-bottom: 60px;
  }
  .homeCommitment_title {
    font-weight: 500;
    font-size: 1.5rem;
    font-family: "Noto Sans JP", sans-serif;
  }
  .homeCommitment_text {
    margin-left: -40px;
  }
  .homeCommitment p {
    font-weight: 400;
    font-size: 1rem;
    font-family: "Noto Sans JP", sans-serif;
  }
  .homeBlog_inner {
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
  }
  .homeBlog_heading {
    padding: 0;
    font-weight: 500;
    font-size: 2rem;
    font-family: "Noto Sans JP", sans-serif;
  }
  .homeBlog_heading span {
    display: block;
    color: var(--color-sub);
    font-weight: 400;
    font-size: 1rem;
    font-family: "Noto Serif JP", serif;
  }
  .homeBlog_item {
    flex: 1 1 calc(25% - 18px);
  }
  .homeBlog_time {
    font-size: 0.875rem;
  }
  .homeBlog_title {
    font-size: 1rem;
  }
  .homeBlog_more {
    font-size: 1rem;
  }
  .homeReservation_heading {
    padding: 0;
    font-weight: 500;
    font-size: 2rem;
    font-family: "Noto Sans JP", sans-serif;
  }
  .homeReservation_heading span span {
    display: block;
    color: var(--color-sub);
    font-weight: 400;
    font-size: 1rem;
    font-family: "Noto Serif JP", serif;
  }
  .homeReservation_box {
    gap: 20px;
  }
  .homeReservation_pic {
    width: 120px;
  }
  .homeReservation_btn {
    padding: 14px 20px 15px 50px;
    width: 260px;
    font-size: 1.125rem;
    line-height: 1;
  }
  .homeAccess_inner {
    margin: 0 auto;
    width: 1000px;
    text-align: left;
  }
  .homeAccess_heading {
    padding: 0;
    font-weight: 500;
    font-size: 2rem;
    font-family: "Noto Sans JP", sans-serif;
  }
  .homeAccess_heading span {
    display: block;
    color: var(--color-sub);
    font-weight: 400;
    font-size: 1rem;
    font-family: "Noto Serif JP", serif;
  }
  .homeAccess_box {
    gap: 60px;
  }
  .homeAccess_pic {
    width: 64%;
  }
  .homeAccess_address {
    font-size: 1rem;
  }
  .homeAccess_text {
    font-size: 1rem;
  }
  .homeInstagram_heading {
    font-size: 2.25rem;
  }
  .homeInstagram_heading span {
    font-size: 1.25rem;
  }
  .homeInstagram_inner {
    max-width: 1200px;
  }
  .kvswiper-container {
    height: calc(100vh - 80px);
  }
  .slide-img {
    height: calc(100vh - 80px);
  }
  .accordion_title {
    padding: 15px 60px 15px 20px;
  }
  .accordion_title::before,
.accordion_title::after {
    right: 20px;
  }
  .accordion_content {
    padding: 0 20px 15px 20px;
  }
  .articleList_heading::before {
    height: 2.375rem;
  }
  .articleList_heading {
    margin-bottom: 2.5rem;
    font-size: 1.875rem;
  }
  .articleList_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  .articleList_item {
    width: 30%;
  }
  .articleListCategory {
    padding: 20px;
  }
  .articleListCategory_list {
    display: flex;
    justify-content: center;
    gap: 10px 60px;
  }
  .articleListCategory_item {
    margin-top: 0;
    width: auto;
  }
  .articleListCategory_item a {
    font-size: 16px;
  }
  .post {
    margin: 0 auto 60px;
    max-width: 1200px;
  }
  .post_info {
    display: flex;
    align-items: center;
  }
  .post_category {
    margin-top: 0;
  }
  .post_title {
    margin-bottom: 60px;
    padding-bottom: 40px;
    font-size: 2rem;
  }
  .post_heading {
    margin: 0 0 40px;
    padding: 0;
    font-size: 2.25rem;
    line-height: 1.4;
  }
  .post_date::after {
    display: inline-block;
    padding-right: 10px;
    padding-left: 10px;
    content: " | ";
  }
  .post_body h2 {
    font-size: 1.625rem;
  }
  .post_body h3 {
    font-size: 1.375rem;
  }
  .post_body h4 {
    font-size: 1.25rem;
  }
  .post_body h5 {
    font-size: 1.125rem;
  }
  .post_body img {
    width: auto;
    max-width: 100%;
  }
  .post_body .post_link {
    display: inline-block !important;
    margin: 0 auto;
    width: 200px !important;
  }
  .post_body .wp-block-table {
    margin-left: -20px;
    width: calc(100% + 40px);
  }
  .post_body .swipe_text {
    display: none;
  }
  .post_body .swiper-container2 .swiper-slide {
    height: 240px !important;
  }
  .post_body .flow_heading {
    font-weight: 500;
    font-size: 2rem;
    font-family: "Noto Sans JP", sans-serif;
  }
  .post_body .flow_heading span {
    display: inline-block;
    padding-left: 10px;
    font-weight: 500;
    font-size: 1.5rem;
    font-family: "Noto Sans JP", sans-serif;
  }
  .post_body .staff_item {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px;
    border-bottom: 2px solid #dfdfdf;
    padding-bottom: 40px;
  }
  .post_body .staff_pic {
    margin: 0;
    width: 40%;
  }
  .post_body .staff_name {
    font-size: 1.375rem;
  }
  .post_body .staff_name span {
    font-size: 0.8125rem;
  }
  .post_body .planbox_inner {
    display: flex;
    align-items: center;
    gap: 40px;
  }
  .post_body .planbox_pic {
    margin-bottom: 0;
    width: 40%;
  }
  .post_body .planbox_title {
    margin-bottom: 20px;
  }
  .post_body .planbox_btn a {
    display: inline-block !important;
    display: inline-block;
    position: relative;
    transition: all 0.5s ease;
    box-shadow: 0 4px 0px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    background-color: #3F5872;
    color: var(--color-white);
    font-weight: 500;
    font-family: "Noto Sans JP", sans-serif;
    text-decoration: none;
  }
  .post .alignleft {
    float: left;
    margin-right: 2em;
    width: auto;
  }
  .post .alignright {
    float: right;
    margin-left: 2em;
    width: auto;
  }
  .post .swiper-slide {
    height: 600px;
  }
  .post .swiper-slide {
    height: 680px !important;
  }
  .post form dl {
    display: flex;
    flex-wrap: nowrap;
    padding: 25px;
  }
  .post form dt {
    margin-bottom: 0;
    width: auto;
    min-width: 320px;
  }
  .postList_link {
    font-size: 1rem;
  }
  .postList_link._prev {
    margin-left: 30px;
    padding-left: 30px;
  }
  .postList_link._prev::before {
    width: 40px;
  }
  .postList_link._prev::after {
    top: calc(50% - 4px);
    width: 18px;
  }
  .postList_link._next {
    margin-right: 30px;
    padding-right: 30px;
  }
  .postList_link._next::before {
    width: 40px;
  }
  .postList_link._next::after {
    top: calc(50% - 4px);
    width: 18px;
  }
  .pageform {
    background-color: var(--color-gray-bg);
    padding: 60px 60px 0;
  }
  .pageform_inner {
    width: 600px;
  }
  .entry a {
    transition: all 0.6s ease-out;
  }
  .entry a:hover {
    opacity: 0.5;
  }
  .entry_heading::before {
    height: 2.375rem;
  }
  .entry_heading {
    margin-bottom: 2.5rem;
    font-size: 1.875rem;
  }
  .entry_list._clm3 .entry_item {
    width: 31% !important;
  }
  .entry_list._clm4 .entry_item {
    width: 23%;
  }
  .entry_pic {
    display: block;
    position: relative;
    margin: 0 auto 0.625rem;
    background: #efefef;
    width: 100%;
    overflow: hidden;
    text-align: center;
  }
  .entry_pic::before {
    display: block;
    padding-top: 62%;
    content: "";
  }
  .entry_pic img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
  }
  .entry._staff .entry_interview {
    padding: 15px !important;
    font-size: 0.8125rem;
  }
  .entry._staff .entry_item {
    width: 33%;
  }
  .article_inner {
    display: flex;
    max-width: 1000px;
  }
  .article_content {
    flex-grow: 1;
    width: 850px;
  }
  .article_side {
    flex-shrink: 0;
    padding: 10px 0 0 60px;
    width: 280px;
  }
  .writer_box {
    display: flex;
    padding: 25px;
  }
  .writer_pic img {
    width: 120px;
  }
  .writer_pic {
    width: 120px;
  }
  .writer_text {
    margin-left: 20px;
    width: 450px;
  }
  .relatedWorks_heading {
    font-size: 1.5rem;
  }
  .relatedWorks_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0 auto;
    max-width: 1200px;
  }
  .wide_content {
    margin: 0 5% 60px;
  }
  .worksCategory_heading {
    margin: 0 0 40px;
    font-size: 1.25rem;
  }
  .worksCategory_subbox {
    border: 3px solid var(--color-gray);
    padding: 30px;
  }
  .worksCategory_box._type {
    border-bottom: none;
    padding-left: 32px;
  }
  .worksCategory_box {
    display: flex;
  }
  .worksCategory_title {
    margin-bottom: 0;
  }
  .worksCategory_list {
    display: flex;
    flex: 1;
    flex-wrap: wrap;
  }
  .worksCategory_item {
    font-size: 0.875rem;
  }
  .form_list {
    display: flex;
    padding: 25px;
  }
  .form_term {
    margin-bottom: 0;
    width: auto;
    min-width: 320px;
  }
  input[type=checkbox] {
    width: 24px;
    height: 24px;
  }
  input[type=checkbox]:checked::after {
    width: 16px;
    height: 6px;
  }
  input[type=submit] {
    display: block;
    padding: 24px 120px;
    width: auto;
    font-size: 1.125rem;
  }
  select {
    width: auto;
  }
  .input_checkbox {
    width: 30px;
    height: 30px;
  }
  .input_checkbox:checked::after {
    width: 16px;
    height: 6px;
  }
  .input_label {
    padding: 5px 0 0 5px;
  }
  .input_submit {
    display: inline-block;
    padding: 24px 120px;
    width: auto;
    font-size: 1.125rem;
  }
  .input_submit._back {
    display: block;
    margin: 20px auto;
    padding: 14px 60px;
    width: auto;
  }
  ._sec {
    margin-bottom: 7.5rem;
  }
  .breadcrumb {
    padding-top: 120px;
    font-size: 1rem;
  }
  .breadcrumb_list {
    overflow: hidden;
  }
  .breadcrumb_item {
    font-size: 0.8125rem;
  }
  .pic {
    margin: 2.5rem 0;
  }
  .wp-pagenavi a:hover {
    background: var(--color-black);
    color: var(--color-white) !important;
  }
}

@media screen and (max-width: 767px) {
  ._pc {
    display: none !important;
  }
}

@media print, screen and (min-width: 768px) and (max-width: 1200px) {
  .header {
    background-color: none;
    padding: 20px;
    height: 60px;
  }
  .header_logo a {
    gap: 20px;
    font-size: 1.75rem;
  }
  .main_homeInformation {
    margin: 40px auto;
  }
  .main_homeAccess {
    margin: 80px auto;
  }
  .main_homeInstagram {
    margin: 80px auto;
    padding: 0 30px;
  }
  .main_homeContents {
    padding: 80px 30px 60px;
  }
  .main_post {
    padding: 0 30px;
  }
  .main_article {
    padding: 0 20px;
  }
  .main_wide {
    padding: 0 20px;
  }
  .main_page {
    padding: 0 30px;
  }
  .main_company {
    padding: 0 30px;
  }
  .footer_text {
    font-size: 0.875rem;
  }
  .footer_copy {
    padding: 20px 0;
  }
  .footer_sns {
    margin-top: 20px;
  }
  .headerNavi {
    padding: 0;
  }
  .headerNavi_inner {
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    position: absolute;
    top: 180px;
    left: 50%;
    transform: translateX(-50%);
    padding: 36px 0;
  }
  .headerNavi_inner {
    display: flex;
    gap: 20px;
    width: 780px;
  }
  .headerNavi_list {
    width: 48%;
  }
  .headerNavi_item a {
    font-size: 0.875rem;
  }
  .footerNavi {
    -webkit-flex-wrap: wrap;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .footerNavi_list {
    width: 45%;
  }
  .footerNavi_item a {
    font-size: 0.8125rem;
  }
  .footerNavi ._sns {
    display: block;
  }
  .footerCopy_title {
    font-size: 1.375rem;
  }
  .footerCopy_title span {
    display: inline;
  }
  .fixedContact a:last-child {
    border-bottom: none;
  }
  .fixedContact a {
    display: block;
    border-right: none;
    border-bottom: 1px solid #8f9dae;
    padding: 20px 6px;
    width: 70px;
  }
  .fixedContact a img {
    width: 28px;
    height: auto;
  }
  .pagetop {
    right: 20px;
    bottom: 60px;
    width: 60px;
  }
  #nav-toggle, .close {
    top: 20px;
    right: 20px;
    z-index: 1000;
    cursor: pointer;
    margin: 0 !important;
    padding: 0;
    width: 60px;
    height: 60px;
  }
  #nav-toggle span {
    right: 12px;
    width: 36px;
  }
  .menu {
    top: 18px !important;
    right: 52px;
  }
  #nav-toggle span:nth-child(1) {
    top: 18px;
  }

  #nav-toggle span:nth-child(2) {
    top: 28px;
  }

  #nav-toggle span:nth-child(3) {
    top: 38px;
  }
  .kv {
    padding: 0;
    height: calc(100vh - 20px);
    min-height: 760px;
  }
  .kv_txt {
    font-size: 2.5rem;
  }
  .kv_txt span {
    display: inline;
  }
  .kv .swiper-container {
    height: calc(100vh - 20px);
  }
  .kv .swiper-txt {
    padding: 20px;
    font-size: 1.625rem;
  }
  .kv .slide-img {
    height: calc(100vh - 20px);
  }
  .scrolldown {
    right: 20px;
  }
  .sns {
    top: 24px;
    right: 120px;
  }
  .sns_list a {
    height: 30px;
  }
  .sns_list a._youtube {
    height: 26px;
  }
  .mainHead {
    padding-left: 80px;
    height: 200px;
    height: auto;
    text-align: left;
  }
  .mainHead_heading {
    font-size: 1rem;
    text-align: left;
  }
  .mainHead_heading span {
    font-size: 2rem;
  }
  .homeInformation_inner {
    padding: 0 20px;
  }
  .homeConcept {
    padding: 80px 30px;
  }
  .homeConcept_box {
    padding: 0;
  }
  .homeDesign {
    padding: 80px 30px;
  }
  .homeDesign_box {
    padding: 0;
  }
  .homeSystem_inner {
    padding: 40px 20px;
    width: 100%;
  }
  .homeSystem_text {
    font-size: 1rem;
  }
  .homeSystem_item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
  }
  .homeSystem_pic {
    width: 46%;
  }
  .homeSystem_title {
    margin-top: 0;
    font-size: 1.125rem;
  }
  .homeWorks_inner {
    padding: 0 30px;
  }
  .homeWorks_title {
    font-size: 0.875rem;
  }
  .homeCommitment {
    background: linear-gradient(to right, #F6F5F0 0%, #ffffff 60%);
    padding: 80px 30px;
  }
  .homeCommitment_list {
    display: block;
  }
  .homeCommitment_contents {
    display: flex;
    position: relative;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: top;
    gap: 18px;
    margin-bottom: 40px;
    padding-bottom: 40px;
  }
  .homeBlog {
    padding: 0 30px;
  }
  .homeBlog_item {
    flex: 1 1 calc(50% - 12px);
  }
  .homeBlog_title {
    font-size: 0.875rem;
  }
  .homeAccess_inner {
    padding: 0 20px;
    width: 100%;
  }
  .homeAccess_box {
    gap: 30px;
  }
  .homeAccess_pic {
    width: 42%;
  }
  .homeAccess_text {
    font-size: 0.875rem;
  }
  .kvswiper-container {
    height: calc(100vh - 80px);
  }
  .slide-img {
    height: calc(100vh - 80px);
  }
  .articleListCategory {
    padding: 20px;
  }
  .post_info {
    display: flex;
    align-items: center;
  }
  .post_category {
    margin-top: 0;
  }
  .post_heading {
    margin: 0 0 40px;
    font-size: 1.5rem;
  }
  .post_date::after {
    display: inline-block;
    padding-right: 10px;
    padding-left: 10px;
    content: " | ";
  }
  .post_body img {
    width: auto;
    max-width: 100%;
  }
  .post_body .swipe_text {
    display: block;
  }
  .post_body .staff_item {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px;
    border-bottom: 2px solid #dfdfdf;
    padding-bottom: 40px;
  }
  .post_body .staff_pic {
    margin: 0;
    width: 40%;
  }
  .post_body .staff_name {
    font-size: 1.375rem;
  }
  .post_body .staff_name span {
    font-size: 0.8125rem;
  }
  .post_body .planbox_inner {
    display: flex;
    align-items: center;
    gap: 40px;
  }
  .post_body .planbox_pic {
    margin-bottom: 0;
    width: 40%;
  }
  .post_body .planbox_title {
    margin-bottom: 20px;
  }
  .post_body .planbox_btn a {
    display: inline-block !important;
    display: inline-block;
    position: relative;
    transition: all 0.5s ease;
    box-shadow: 0 4px 0px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    background-color: #3F5872;
    color: var(--color-white);
    font-weight: 500;
    font-family: "Noto Sans JP", sans-serif;
    text-decoration: none;
  }
  .post .alignleft {
    float: left;
    margin-right: 2em;
    width: auto;
  }
  .post .alignright {
    float: right;
    margin-left: 2em;
    width: auto;
  }
  .entry_pic {
    display: block;
    position: relative;
    margin: 0 auto 0.625rem;
    background: #efefef;
    width: 100%;
    overflow: hidden;
    text-align: center;
  }
  .entry_pic::before {
    display: block;
    padding-top: 62%;
    content: "";
  }
  .entry_pic img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
  }
  .entry._staff .entry_interview {
    padding: 15px !important;
    font-size: 0.8125rem;
  }
  .entry._staff .entry_item {
    width: 33%;
  }
  .article_inner {
    display: block;
  }
  .article_content {
    padding: 0;
    width: 100%;
  }
  .article_side {
    padding: 0;
    width: 100%;
  }
  .writer_box {
    display: flex;
    padding: 25px;
  }
  .writer_pic img {
    width: 120px;
  }
  .writer_pic {
    width: 120px;
  }
  .writer_text {
    margin-left: 20px;
    width: 450px;
  }
  .relatedWorks_heading {
    font-size: 1.5rem;
  }
  .relatedWorks_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0 auto;
  }
  .wide_content {
    margin: 0 2% 60px;
  }
  .worksCategory_heading {
    margin: 0 0 40px;
    font-size: 1.25rem;
  }
  .worksCategory_subbox {
    border: 3px solid var(--color-gray);
    padding: 30px;
  }
  .worksCategory_box._type {
    border-bottom: none;
    padding-left: 32px;
  }
  .worksCategory_box {
    display: flex;
  }
  .worksCategory_title {
    margin-bottom: 0;
  }
  .worksCategory_list {
    display: flex;
    flex: 1;
    flex-wrap: wrap;
  }
  .worksCategory_item {
    font-size: 0.875rem;
  }
  ._sec {
    margin-bottom: 7.5rem;
  }
  .breadcrumb {
    padding-top: 120px;
  }
  .breadcrumb_list {
    overflow: hidden;
  }
}
