:root {
  --font-mincho-w3: "FP-ヒラギノ明朝 ProN W3";
  --font-mincho-w6: "FP-ヒラギノ明朝 ProN W6";
}

b,
strong,
.f_bold {
  font-family: var(--font-mincho-w6);
  font-weight: normal;
}

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

html {
  /*font-size: 0.71vw;*/
  font-size: 10px;
}

html,
body {
  color: #000;
  background: #f5f5f5;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 0.05em;
  box-sizing: border-box;
  line-height: 1.5;
  overflow: auto;
  min-width: 1150px;
  font-family: var(--font-mincho-w3);
}


.footer-btn {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 5rem;
}


.imgCenter {
  margin: auto;
  display: block;
}

.sp_only {
  display: none;
}

.pc_only {
  display: inherit;
}

@media screen and (min-width: 737px) {
  a[href^="tel:"],
  a[data-tel-href]:not([href]) {
    pointer-events: none;
    cursor: default;
  }
}

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

.di-fl {
  display: flex;
  flex-wrap: wrap;
}

.list-box {
  text-indent: -1em;
  padding-left: 1em;
}
.list {
  text-indent: -1em;
  padding-left: 1em;
}
/* 通常時の画像スタイル */
.normal-image {
  display: block !important;
}

/* ホバー時の画像スタイル */
.hover-image {
  display: none !important;
}

/* ホバー時に通常の画像を非表示にし、ホバー画像を表示する */
picture:hover .normal-image {
  display: none !important;
}

picture:hover .hover-image {
  display: block !important;
}
.inner {
  box-sizing: border-box;
  width: 1000px;
  margin: 0 auto;
}

.font-mi {
  font-family:
    "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro",
    "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
.font-go {
  font-family:
    "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    Meiryo, sans-serif;
}
.line-seed-jp {
  font-family:
    "LINE Seed JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN",
    "Helvetica Neue", Arial, Meiryo, sans-serif;
}
.line-seed-jp-bold {
  font-family:
    "LINE Seed JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN",
    "Helvetica Neue", Arial, Meiryo, sans-serif;
  font-weight: 800;
}
section {
  margin: 10rem 0;
}

/*--mask--*/



p.effect span,
h3.effect span {
  display: inline-block;
}

p.effect:not(.scroll-in) span,
h3.effect:not(.scroll-in) span,
.effect.sel-bg-wrap:not(.scroll-in) {
  clip-path: inset(0 100% 0 0);
}

p.effect span,
p.effect span::after,
h3.effect span,
h3.effect span::after,
.effect.sel-bg-wrap,
.effect.sel-bg-wrap::after {
animation-delay: var(--animation-delay, 2s); /* アニメーションの開始タイミング */
animation-iteration-count: var(--iterations, 1); /* 再生される回数 */
animation-duration: var(--duration, 800ms); /* 完了するまでの所要時間 */
animation-fill-mode: both; /* 実行の前後 */
animation-timing-function: cubic-bezier(0, 0, 0.2, 1); /* タイミングの指定 */
}

p.effect.scroll-in span,
h3.effect.scroll-in span,
.effect.sel-bg-wrap.scroll-in {
--animation-delay: var(--delay, 0);
--animation-duration: var(--duration, 800ms);
--animation-iterations: var(--iterations, 1);
position: relative;
animation-name: clip-text;
}

p.effect.scroll-in span,
h3.effect.scroll-in span {
white-space: nowrap;
}


p.effect.scroll-in span::after,
h3.effect.scroll-in span::after,
.effect.sel-bg-wrap.scroll-in::after {
content: "";
position: absolute;
z-index: 10;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #252525;
transform: scaleX(0);
transform-origin: 0 50%;
pointer-events: none;
animation-name: text-revealer;
}

h3.effect.scroll-in span::after{
  background: #dce6f0;
}
.effect.sel-bg-wrap {
display: block;
width: 95%;
line-height: 0;
}

.effect.sel-bg-wrap .sel-bg {
display: block;
width: 100%;
}

@keyframes clip-text {
from {
  clip-path: inset(0 100% 0 0);
}
to {
  clip-path: inset(0 0 0 0);
}
}
@keyframes text-revealer {
0%, 50% {
  transform-origin: 0 50%;
}
60%, 100% {
  transform-origin: 100% 50%;
}
60% {
  transform: scaleX(1);
}
100% {
  transform: scaleX(0);
}
}


/*------------------------

nav

-----------------------*/
body.nav-open {
  overflow: hidden;
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0rem 2rem 1rem 1.5rem;
  pointer-events: none;
  margin-bottom: 1.5rem;
  background-color: transparent;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition:
    background-color 0.45s ease,
    box-shadow 0.45s ease;
}



.page-id-336 .header,
.page-id-307 .header {
  padding: 1rem 2rem 1rem 3rem;
}


.header.fixed {
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.header > * {
  pointer-events: auto;
}

.header > p {
  font-size: 1.4rem;
}
.header > p > a {
  border: solid 1px;
  padding: 5px 10px;
}
.header > p > a:hover {
  background: #000;
  color: #fff;
}
.comprehensive a {
  color: #fff;
  font-size: 1.4rem;
}

.comprehensive-sp {
  display: none;
}

@media screen and (min-width: 1201px) {


  .header_inner {
    position: relative;
    width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content:flex-start;
    gap: 1rem;
  }
}

.header_inner {
  position: relative;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content:flex-start;
  gap: 1rem;
}

.header_inner h1.title {
  margin: 0;
  display: flex;
  left: 2%;
  top: 0;
  z-index: 100;
  align-items: end;
  gap: 2rem;
  gap: 0.5rem;
  flex-direction: column;

}

.title > a:nth-child(1) {
  margin-top: 20px;
}

.title a {
  display: flex;
  align-items: center;
}

.header_inner h1.title > a > img {
  width: 230px;
  height: auto;
  display: block;
  align-items: end;

}

.header_inner h1.title .logo-meitetu img {
  width: 110px;
}

.main {
  margin-top: 60px;
}

.h-contact {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: flex-end;
  margin-left: 3rem;
  flex-basis: 700px;
}

.header_inner .h-sell,
.header_inner .h-buy,
.header_inner .h-corporation {
  min-width: 150px;
  max-width: 200px;
}


#global-nav > h1{
  display: grid;
  grid-template-columns: 2fr 1fr;
  width: 80%;
  align-items: baseline;
  gap: 2rem;
}


.nav {
  position: fixed;
  top: 0;
  right: 0;
  width: min(100%, 600px);
  height: 100vh;
  height: 100dvh;
padding: 1rem 5rem 0rem;
  box-sizing: border-box;
  background-color: #fff;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  z-index: 200;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  pointer-events: none;
  display: flex;
  flex-direction: column;
justify-content:center;
} 

#global-nav .nav-inner {
  width: 100%;
  display: flex;
flex-wrap: wrap;
align-items: flex-start;
margin-top: 5rem;
justify-content: space-between;

}

#global-nav .header-info-btn {
  display: grid;
  grid-template-columns: 2fr 1.4fr;
  margin-top: 3rem;
  gap: 5rem;
align-items: center;
}
.header-info-btn > img:nth-child(2) {
  width: 170px;
}


.header-info-btn-inner.footer-info-btn {

  grid-template-columns: 1fr;
  margin-top: 0rem;
  align-items: center;
  margin: 0;
  width: 100%;
  margin-bottom: 4rem;
}

.header-info-btn-inner.footer-info-btn > p a {
  font-size: 1.7rem;
  padding: 1.5rem 2rem;
  border-radius: 10px;
    padding-left: 3.5rem;
}

.header-info-btn-inner p a{
  position: relative;
  font-size: 1.4rem;
  padding: 1rem;
  border: solid 1px #000;
  display: flex;
  align-items: flex-start;
justify-content: center;
  flex-direction: column;
  gap: .5rem;
  height: 4.5em;
  padding-left: 3.5rem;
  line-height: 1.3;
}
.header-info-btn-inner p a:hover{
  background: #D9082D;
  color: #fff;
  border: solid 1px #fff;

}
.header-info-btn-inner p + p{
  margin-top: 1rem;
}
.header-info-btn-inner p a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 0.4em solid transparent;
  border-bottom: 0.4em solid transparent;
  border-left: 0.6em solid #000;
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}
.header-info-btn-inner p a:hover::after{
  border-left: 0.6em solid #fff;

}
.hamburger {
  position: relative;
  flex-shrink: 0;
  top: 5px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 5rem;
  height: 5rem;
  box-sizing: border-box;
  margin: 0;
  cursor: pointer;
  z-index: 300;
  border: none;
  border-radius: 5px;
  font: inherit;
  line-height: 1;
  background: transparent;
  margin-right: 8px;
}

.hamburger_icon {
  position: relative;
  width: 30px;
  height: 22px;
  flex-shrink: 0;
}

.hamburger_border {
  position: absolute;
  left: 50%;
  margin-left: -15px;
  width: 40px;
  height: 2px;
  transition:
    transform 0.35s ease,
    opacity 0.25s ease,
    top 0.35s ease;
  background: #606060;
}

.page-id-336 .hamburger_border ,
.page-id-307 .hamburger_border {
  background: #fff;
}
.page-id-336 .fixed .hamburger_border ,
.page-id-307 .fixed .hamburger_border {
  background: #606060;
}
.hamburger_border_menue.hamburger_border {
  background: none;
  color: #606060  ;
  top: 30px;
  font-weight: normal;
  transform: translateX(-5%);
  left: 52%;
  font-size: 1.2rem;

}
.page-id-336 .hamburger_border_menue.hamburger_border ,
.page-id-307 .hamburger_border_menue.hamburger_border {
  color: #fff;  
}
.page-id-336 .fixed .hamburger_border_menue.hamburger_border  , 
.page-id-307 .fixed .hamburger_border_menue.hamburger_border {
  color: #606060;  
  background: none;
}
.hamburger_border_bottom {
  top: 22px;
}
.hamburger_border_center {
  top: 15px;
}
.hamburger_border_top {
  top: 7px;
}
.hamburger_label {
  display: block;
  font-size: 1rem;
  font-family:
    "LINE Seed JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo,
    sans-serif;
  font-weight: 500;
  color: #606060;
  letter-spacing: 0.08em;
  line-height: 1.2;
  white-space: nowrap;
  max-height: 3em;
  transition:
    opacity 0.2s ease,
    max-height 0.25s ease,
    margin 0.25s ease;
}

/* 表示された時用のCSS */
.nav-open .nav {
  transform: translateX(0);
  pointer-events: auto;
}
.nav-open .hamburger {
  z-index: 250;
}
.nav-open .black_bg {
  opacity: 0.55;
  visibility: visible;
  pointer-events: auto;
}

.nav-open .hamburger_border {
  background: #606060;
}

.nav-open .hamburger_border_top {
  transform: rotate(45deg);
  top: 23px;
}
.nav-open .hamburger_border_bottom {
  transform: rotate(-45deg);
  top: 23px;
}
.nav-open .hamburger_border_center,
.nav-open .hamburger_border_menue {
  opacity: 0;
}


.nav-open .hamburger_label {
  opacity: 0;
  max-height: 0;
  margin: 0;
  overflow: hidden;
  pointer-events: none;
}

/*
.nav-open .hamburger {
  right: 2%;
  position: fixed;
  top: 2%;
  transition: .3s ease;
}
*/

.black_bg {
  position: fixed;
  inset: 0;
  background: #000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
  z-index: 150;
}

.nav_list {
  margin: 0;
  padding: 0;
  list-style: none;
}


ul.nav_list:nth-child(2) {
  width: 40%;
}


.nav_list > li {
  margin: 0;
  padding: 0;
}


.nav_list > li > a {
  display: block;
  padding: 0rem 0.5rem;
  height: 3em;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #000;
  font-size: 1.4rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
    position: relative;
    padding-left: 3rem;
}

.nav_list > li > a::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 0.4em solid transparent;
  border-bottom: 0.4em solid transparent;
  border-left: 0.6em solid #000;
  position: absolute;
  left:  1rem;
  top: 50%;
  transform: translateY(-50%);
}

.nav_item:hover,
.nav_list > li > a:hover,
.nav_list > li > a:focus-visible {
  background-color: rgba(255, 255, 255, 0.08);
  color: #d9042c;
  outline: none;
}

.nav_list li.is-current > a {
  font-weight: 700;
  color: #7ed957;
}

/*------------------------

footer 共通

-----------------------*/

.copyright {
  text-align: center;
  font-size: 1.2rem;
  background: #fff;
  padding: 1rem 0;
  color: #000;
}


.fixbtn-inner {
  width: 150px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: fixed;
  right: 0%;
  z-index: 10;
   bottom: 5%;

}
