@charset "UTF-8";
:root {
  --color-main: #2c2c2c;
  --color-sub:#C3BDB0;
  --color-sub2:#A79D8B;
  --color-sub3:#e9e7e3;
  --color-white: #fff;
  --color-gray: #797979;
  --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;
}

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 {
  appearance: none;
  border: 0;
  outline: none;
}
button {
  appearance: none;
  border: 0;
  border-radius: 0;
  margin: 0;
  padding: 0;
  background-color: transparent;
  outline: none;
  cursor: pointer;
}
input[type="submit"],
input[type="button"] {
  cursor: pointer;
}
input,
textarea {
  appearance: none;
}*/
a {
  outline: none;
}

figure {
  line-height: 0;
}

/*
SP
-----------------------*/
/*
PC
-----------------------*/
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;
}
.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 {
  position: fixed !important;
  top: 0;
  z-index: 1000;
  transition: background-color 0.3s, box-shadow 0.3s;
  background-color: var(--color-white);
  padding: 10px 20px;
  width: 100%;
  height: 72px;
  text-align: left;
}
.header.is-scrolled {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  background-color: white;
}
.header a {
  -webkit-text-decoration: transparent;
          text-decoration: transparent;
}
.header_inner {
  display: flex;
  align-items: center;
}
.header_logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-black);
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}
.header_logo img {
  width: 190px;
}
.header_logo.open a {
  color: var(--color-white);
}
.header_navi {
  transition: 0.5s;
  margin-left: auto;
}
.header_text {
  margin-bottom: 8px;
  font-size: 0.5625rem;
}
.header_sns.open img {
  filter: brightness(0) invert(1);
}

.main {
  margin-top: 0;
  overflow-x: hidden;
}
.main_homeContents {
  background-color: var(--color-gray-bg);
  padding: 60px 30px;
}

.footer {
  margin: 0 auto;
  margin-top: 40px;
  border-top: 1px solid var(--color-sub);
}
.footer_company {
  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;
}
.headNavi {
  display: none;
  margin-left: auto;
}
.headNavi_item {
  position: relative;
}

.globalNavi {
  display: none;
}
.globalNavi_list {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 17px;
}
.globalNavi_item {
  position: relative;
}
.globalNavi_item > a[href="#"] {
  pointer-events: none;
}
.globalNavi_item > a {
  display: block;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}
.globalNavi_item:hover > .globalNavi_child {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  text-align: left;
}
.globalNavi_item:has(> .globalNavi_child) > a {
  position: relative;
  padding-right: 20px;
}
.globalNavi_item:has(> .globalNavi_child) > a::after {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  background: url("/assets/images/i_arr.png") no-repeat center/contain;
  width: 10px;
  height: 5px;
  content: "";
}
.globalNavi_child {
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(10px);
  visibility: hidden;
  opacity: 0;
  z-index: 1000;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background: #fff;
  padding: 10px 0;
  min-width: 220px;
  pointer-events: none;
}
.globalNavi_child li {
  white-space: nowrap;
}
.globalNavi_child a {
  display: block;
  padding: 5px 15px;
  color: #333;
  text-decoration: none;
}
.globalNavi_child a:hover {
  background: #f5f5f5;
}

.headerContact {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 100;
  margin-left: 0;
  background: #fff;
  width: 100%;
}
.headerContact_list {
  display: flex;
  gap: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  list-style: none;
}
.headerContact_list a {
  font-size: 0.75rem;
}
.headerContact_item {
  display: flex;
}
.headerContact_item a {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding: 7px 8px;
  width: 100%;
  min-height: 64px;
  font-size: 0.875rem;
  text-decoration: none;
}
.headerContact_item ._dl {
  background-color: var(--color-gray);
  width: 100%;
  color: var(--color-white);
  line-height: 1.2;
  text-align: center;
}
.headerContact_item ._tel {
  display: flex;
  position: relative;
  flex-direction: column;
  background-color: #efefef;
  width: 100%;
  line-height: 1;
  text-align: center;
}
.headerContact_item ._tel ._num {
  display: inline-block;
  position: relative;
  margin: 0;
  padding-left: 18px;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
}
.headerContact_item ._tel ._num::before {
  position: absolute;
  top: 52%;
  left: -5%;
  transform: translateY(-52%);
  background: url("/assets/images/i_phone.png") no-repeat center/contain;
  width: 18px;
  height: 18px;
  content: "";
}
.headerContact_item ._tel ._note {
  display: block;
  padding: 4px 0 0;
  font-size: 0.625rem;
}
.headerContact_item ._contact {
  background-color: var(--color-orange);
  width: 100%;
  color: var(--color-white);
}
.headerContact_item ._contact span {
  position: relative;
  margin-left: 0;
  padding-right: 20px;
}
.headerContact_item ._contact span::after {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: url("/assets/images/i_contact.png") no-repeat center/contain;
  width: 18px;
  height: 18px;
  content: "";
}

.footerNavi {
  position: relative;
  border-bottom: 1px solid var(--color-sub);
  padding: 0;
}
.footerNavi_inner {
  gap: 40px;
  padding: 40px 20px;
}
.footerNavi_list {
  margin-bottom: 10px;
}
.footerNavi_item {
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 0.9375rem;
}
.footerNavi_item._b a {
  font-weight: 500 !important;
  font-size: 0.9375rem;
}
.footerNavi_item a {
  padding-left: 10px;
  font-size: 0.75rem;
}
.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;
}

.footerBtm {
  margin: 30px 0;
}

.footerBtmNavi {
  margin: 30px 0;
}
.footerBtmNavi_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
  margin-right: 10px;
  margin-bottom: 10px;
}
.footerBtmNavi_item {
  position: relative;
  font-size: 0.75rem;
}
.footerBtmNavi_item::after {
  display: block;
  position: absolute;
  top: 62%;
  right: -10px;
  transform: translateY(-62%);
  background-color: #ddd;
  width: 1px;
  height: 14px;
  content: "";
}
.footerBtmNavi_item:last-child::after {
  display: none;
}

.footerCompany {
  padding: 0 20px;
}
.footerCompany_logo {
  margin-bottom: 10px;
  width: 240px;
}
.footerCompany_logo img {
  width: 100%;
  height: auto;
}
.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;
}
.pagetop img {
  width: 100%;
  height: auto;
}

#nav-toggle, .close {
  display: block;
  position: fixed;
  top: 8px;
  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-black);
}

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

.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*/
.spNavi {
  -webkit-overflow-scrolling: touch;
  position: fixed;
  visibility: hidden;
  z-index: 999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  inset: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9));
  background-position: center;
  background-size: cover;
  padding: 80px 10px 100px 10px;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  pointer-events: none;
}
.spNavi.active {
  visibility: visible;
  opacity: 1;
  z-index: 9999;
  pointer-events: auto;
}
.spNavi::-webkit-scrollbar-thumb {
  /* ← スクロールバーの色 */
  border-radius: 4px;
  background-color: #ffffff;
}
.spNavi_inner {
  border-top: 1px solid var(--color-gray);
  border-bottom: 1px solid var(--color-gray);
  padding: 16px 0;
}
.spNavi_heading {
  padding-bottom: 20px;
  color: var(--color-white);
  font-size: 1.25rem;
}
.spNavi a {
  color: var(--color-white);
  text-decoration: none;
}
.spNavi.active {
  display: block;
  opacity: 1;
  z-index: 10 !important;
  transition: 0.5s;
}
.spNavi_inner {
  display: block;
  flex-wrap: wrap;
  width: 100%;
}
.spNavi_list {
  display: block;
  width: 100%;
}
.spNavi_item {
  padding: 12px 20px;
  width: auto;
}
.spNavi_item span {
  color: var(--color-white);
}
.spNavi_item._b {
  font-weight: bold;
}
.spNavi_item a {
  display: block;
  position: relative;
  transition: all 0.5s ease;
  margin-left: 20px;
  color: var(--color-white);
  font-size: 0.875rem;
}
.spNavi_item a::before {
  display: block;
  position: absolute;
  top: 50%;
  left: -20px;
  background-color: var(--color-white);
  width: 8px;
  height: 1px;
  content: "";
}
.spNavi_item a:hover {
  opacity: 0.5;
}
.spNavi_child {
  margin-top: 10px;
}
.spNavi_child_list {
  display: block;
  padding-top: 10px;
  padding-left: 0;
}

.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%;
}

.breadcrumb {
  position: relative;
  padding: 10px 10px 10px;
  font-size: 0.75rem;
  /* ★ 左寄せを明示 */
  text-align: left;
  /* ===============================
     ul
  =============================== */
  /* ===============================
     li
  =============================== */
  /* ===============================
     link
  =============================== */
  /* ===============================
     current
  =============================== */
}
.breadcrumb_list {
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-wrap: nowrap;
  /* ★ 横方向を左固定 */
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  white-space: nowrap;
}
.breadcrumb_list::-webkit-scrollbar {
  display: none;
}
.breadcrumb_item {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}
.breadcrumb_item + .breadcrumb_item::before {
  flex: 0 0 auto;
  opacity: 0.6;
  margin: 0 0.75rem;
  content: ">";
  color: #B5B5B5;
  font-size: 0.9em;
}
.breadcrumb_link {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  max-width: 100%;
  color: #ACACAC;
  line-height: 1;
  text-decoration: none;
}
.breadcrumb_link:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.breadcrumb_link [itemprop=name] {
  display: inline-block;
  min-width: 0;
  max-width: 36ch;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.breadcrumb_current {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  max-width: 100%;
  color: var(--color-black);
  font-weight: 500;
  line-height: 1;
}
.breadcrumb_current [itemprop=name] {
  display: inline-block;
  min-width: 0;
  max-width: 44ch;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact {
  position: relative;
  margin: 0 auto;
  padding: 60px 25px;
}
.contact_inner {
  display: block;
  position: relative;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  text-align: center;
}
.contact_heading {
  position: relative;
  z-index: 1;
  margin: 20px 0 0;
  font-weight: 400;
  font-weight: bold;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
}
.contact_title {
  margin: 20px 0 10px;
  font-weight: 500;
  font-size: 1.25rem;
  font-family: "Noto Sans JP", sans-serif;
}
.contact_box {
  border-bottom: 1px solid #ddd;
  padding: 0 0 40px;
}
.contact_text {
  display: inline-block;
  border-radius: 20px;
  background: #888;
  padding: 4px 26px 5px;
  color: #fff;
  font-size: 0.9375rem;
  line-height: 1.4;
}
.contact_tel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  font-size: 2.25rem;
  list-style: 1;
}
.contact_tel::before {
  flex-shrink: 0;
  background: url("/assets/images/i_phone.png") no-repeat center;
  background-size: contain;
  width: 40px;
  height: 40px;
  content: "";
}
.contact_mail a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  transition: opacity 0.2s ease;
  border-radius: 50px;
  background: var(--color-orange);
  padding: 16px 36px;
  color: #fff;
  font-weight: bold;
  font-size: 1.125rem;
  text-decoration: none;
}
.contact_mail a:hover {
  opacity: 0.85;
}
.contact_mail a::after {
  flex-shrink: 0;
  background: url("/assets/images/i_contact.png") no-repeat center;
  background-size: contain;
  width: 40px;
  height: 40px;
  content: "";
}

/* ===============================
   フェードイン共通アニメーション
   =============================== */
.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;
}

input {
  margin-top: 5px;
  font-size: 1rem;
}

.form_btn {
  background-color: var(--color-black);
  color: #fff;
}

@media print, screen and (min-width: 768px) {
  body a {
    transition: all 0.5s ease;
  }
  body a:hover {
    opacity: 0.6;
  }
  ._sp, .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 {
    height: 124px;
  }
  .header_logo img {
    width: 280px;
  }
  .header_text {
    font-size: 0.6875rem;
  }
  .main._home {
    padding-top: 5rem;
  }
  .main_homeInformation {
    margin-bottom: 40px;
  }
  .main_homePostingmenu {
    margin: 60px 0;
  }
  .main_homePriceArea {
    margin: 60px 0;
  }
  .main_homeContact {
    margin: 60px 0;
  }
  .main_homeContents {
    margin: 0 auto 0;
    padding: 80px 30px 60px;
  }
  .footer {
    margin-top: 80px;
  }
  .footer_copy {
    padding: 20px 0;
  }
  .headNavi {
    display: block;
  }
  .headNavi_list {
    display: flex;
    gap: 30px;
  }
  .headNavi_list a {
    font-size: 0.8125rem;
    line-height: 1.2;
  }
  .headNavi_item::after {
    display: block;
    position: absolute;
    top: 62%;
    right: -15px;
    transform: translateY(-62%);
    background-color: #ddd;
    width: 1px;
    height: 14px;
    content: "";
  }
  .headNavi_item:last-child::after {
    display: none;
  }
  .globalNavi {
    display: block;
  }
  .globalNavi_list {
    gap: 26px;
  }
  .globalNavi_item > a {
    font-size: 0.875rem;
  }
  .headerContact {
    display: block;
    position: relative;
    bottom: auto;
    left: auto;
    margin-left: 20px;
    background: transparent;
    width: auto;
  }
  .headerContact_list {
    gap: 1px;
    width: auto;
  }
  .headerContact_item {
    flex: 1 1 0;
  }
  .headerContact_item {
    flex: none;
  }
  .headerContact_item ._dl {
    width: 80px;
  }
  .headerContact_item ._tel {
    width: 180px;
  }
  .headerContact_item ._tel ._num {
    margin-left: 10px;
    padding-left: 0;
    font-size: 1.25rem;
  }
  .headerContact_item ._tel ._num::before {
    left: -17%;
    width: 22px;
    height: 22px;
  }
  .headerContact_item ._tel ._note {
    font-size: 0.75rem;
  }
  .headerContact_item ._contact {
    width: 160px;
  }
  .headerContact_item ._contact span {
    margin-left: -16px;
    padding-right: 10px;
  }
  .headerContact_item ._contact span::after {
    right: -24px;
    width: 20px;
    height: 20px;
  }
  .footerNavi_inner {
    display: flex;
    flex-wrap: nowrap;
    margin: 0 auto;
    max-width: 1200px;
  }
  .footerNavi_list {
    flex-shrink: 0;
    white-space: nowrap;
  }
  .footerNavi_item a {
    font-weight: 400;
    font-size: 0.8125rem;
  }
  .footerAddress {
    padding: 40px;
  }
  .footerAddress_title {
    font-size: 1.5rem;
  }
  .footerCopy_title {
    font-size: 1.375rem;
  }
  .footerCopy_title span {
    display: inline;
  }
  .footerBtm {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px auto;
    max-width: 1200px;
  }
  .footerBtmNavi_item {
    font-size: 0.8125rem;
  }
  .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 {
    display: none;
  }
  #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;
  }
  .spNavi {
    padding: 0;
  }
  .spNavi_inner {
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    position: absolute;
    top: 180px;
    left: 50%;
    transform: translateX(-50%);
    padding: 36px 0;
  }
  .spNavi_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;
  }
  .spNavi_inner {
    display: flex;
    gap: 20px;
    width: 720px;
  }
  .spNavi_list {
    width: 48%;
  }
  .spNavi_item a {
    font-size: 1.125rem;
  }
  .scrolldown {
    right: 20px;
  }
  .sns {
    top: 24px;
    right: 120px;
  }
  .sns_list a {
    height: 30px;
  }
  .sns_list a._youtube {
    height: 24px;
  }
  .breadcrumb {
    padding-top: 10px;
    font-size: 0.75rem;
  }
  .breadcrumb_list {
    overflow: hidden;
  }
  .breadcrumb_current [itemprop=name] {
    max-width: 70ch;
  }
  .contact_inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1200px;
  }
  .contact_heading {
    font-weight: 500;
    font-size: 2.25rem;
    font-family: "Noto Sans JP", sans-serif;
  }
  .contact_title {
    font-weight: 500;
    font-size: 2.25rem;
    font-family: "Noto Sans JP", sans-serif;
  }
  .contact_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: none;
    padding: 40px 20px;
    text-align: center;
  }
}

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

  img {
    width: 100%;
    height: auto;
  }
  .headerContact_item {
    gap: 1px;
  }
  .headerContact_item:nth-child(1) {
    flex: 0 0 20%;
  }
  .headerContact_item:nth-child(2) {
    flex: 0 0 40%;
  }
  .headerContact_item:nth-child(3) {
    flex: 0 0 40%;
  }
}

@media print, screen and (min-width: 768px) and (max-width: 1200px) {
  .header {
    height: 124px;
  }
  .header_logo img {
    max-width: 200px;
  }
  .header_text {
    font-size: 0.5625rem;
  }
  .main_homeContents {
    padding: 80px 30px 60px;
  }
  .footer {
    margin-top: 80px;
  }
  .footer_copy {
    padding: 20px 0;
  }
  .headNavi {
    display: block;
  }
  .headNavi_list {
    display: block;
    text-align: right;
  }
  .headNavi_list a {
    display: block;
    font-size: 1.0666666667vw;
    line-height: 1.6 !important;
  }
  .headNavi_item {
    margin-bottom: 5px;
  }
  .headNavi_item::after {
    display: none;
  }
  .globalNavi {
    display: block;
  }
  .globalNavi_list {
    gap: 26px;
  }
  .globalNavi_item > a {
    font-size: 1.4666666667vw;
  }
  .headerContact {
    display: block;
    position: relative;
    bottom: auto;
    left: auto;
    margin-left: 20px;
    background: transparent;
    width: auto;
  }
  .headerContact_list {
    gap: 1px;
    width: auto;
  }
  .headerContact_item {
    flex: none;
  }
  .headerContact_item ._dl {
    width: 80px;
  }
  .headerContact_item ._tel {
    width: 180px;
  }
  .headerContact_item ._tel ._num {
    margin-left: 20px;
    padding-left: 0;
    font-size: 1.25rem;
  }
  .headerContact_item ._tel ._num::before {
    left: -16%;
    width: 22px;
    height: 22px;
  }
  .headerContact_item ._tel ._note {
    font-size: 0.75rem;
  }
  .headerContact_item ._contact {
    width: 160px;
  }
  .headerContact_item ._contact span {
    margin-left: -16px;
    padding-right: 10px;
  }
  .headerContact_item ._contact span::after {
    right: -24px;
    width: 20px;
    height: 20px;
  }
  .footerNavi_inner {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 1200px;
  }
  .footerNavi_item a {
    font-size: 0.8125rem;
  }
  .footerCopy_title {
    font-size: 1.375rem;
  }
  .footerCopy_title span {
    display: inline;
  }
  .footerBtmNavi_item {
    font-size: 0.8125rem;
  }
  .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;
  }
  .spNavi {
    padding: 0;
  }
  .spNavi_inner {
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    position: absolute;
    top: 180px;
    left: 50%;
    transform: translateX(-50%);
    padding: 36px 0;
  }
  .spNavi_inner {
    display: flex;
    gap: 20px;
    width: 780px;
  }
  .spNavi_list {
    width: 48%;
  }
  .spNavi_item a {
    font-size: 0.875rem;
  }
  .scrolldown {
    right: 20px;
  }
  .sns {
    top: 24px;
    right: 120px;
  }
  .sns_list a {
    height: 30px;
  }
  .sns_list a._youtube {
    height: 26px;
  }
  .breadcrumb {
    padding-top: 10px;
  }
  .breadcrumb_list {
    overflow: hidden;
  }
  .breadcrumb_current [itemprop=name] {
    max-width: 60ch;
  }
  .contact_inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1200px;
  }
  .contact_heading {
    font-weight: 500;
    font-size: 1.875rem;
    font-family: "Noto Sans JP", sans-serif;
  }
  .contact_title {
    font-weight: 500;
    font-size: 1.875rem;
    font-family: "Noto Sans JP", sans-serif;
  }
  .contact_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: none;
    padding: 40px 20px;
    text-align: center;
  }
}
