@charset "utf-8";

/* common */

#wrapper {
  /* overflow: auto; */
  margin: 0;
  padding: 0;
  background: #ffffff;
  position: relative;
}

@media screen and (max-width: 768px) {
  #wrapper {
    /* overflow: visible; */
  }
}

body {
  /* font-family: 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', 'ＭＳ Ｐ明朝', 'MS PMincho', serif !important; */
  font-size: 16px;
  color: #121316;
  text-decoration: none;
}

body {
  font-family: 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', serif;
}

li {
  list-style: none;
}


/* header */
header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  background-color: transparent;
  transition: background-color 0.5s ease, opacity 0.5s ease;
}

header.scrolled {
  background-color: #fff;
  border-bottom: 1px solid #333;
  opacity: 1;
}

header.first-vision {
  background-color: #fff;
  opacity: 1;
}

header .logo {
  position: absolute;
  top: 0;
  left: 10%;
  transition: transform 0.5s ease;
}

header.scrolled .logo {
  top: 0;
}

header .logo img {
  width: 80px;
}

header.scrolled .logo img {
  width: 80px;
  top: 0;
}

header .h_navi {
  opacity: 1;
  transition: opacity 0.5s ease;
  margin-right: 40px;
}

header .h_navi ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
}

header .h_navi ul li {
  font-weight: 500;
  /* font-size: 14px; */
}

header .h_navi ul li a {
  position: relative;
  display: block;
  /* padding-bottom: 8px; */
  padding: 16px;
}

header .h_navi ul li a:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background-color: #2fa885;
  transition: width 0.3s ease-in-out;
  width: 0%;
}

header .h_navi ul li a:hover:after {
  width: 100%;
}

header .h_navi ul li a span {
  display: inline-block;
  vertical-align: middle;
}

header .h_navi ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background-color: #2fa885;
  transition: width 0.3s ease-in-out;
  width: 0%;
}

header .h_navi ul li.admission_menu a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  height: 2px;
  background-color: #2fa885;
  transition: width 0.3s ease-in-out;
  width: 0%;
}

header .h_navi ul li a:hover::after {
  width: 100%;
}

header .h_navi ul li.admission_menu span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  color: #1a1a1a;
}

header .h_navi ul li.admission_menu {
  position: relative;
  cursor: pointer;
}

header .h_navi ul li.admission_menu .drop_menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  width: 100%;
  white-space: nowrap;
  z-index: 1000;
}

header .h_navi ul li.admission_menu:hover .drop_menu {
  display: block;
}

.nav_tel {
  background-color: #e3ddd7;
  padding: 1.0rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.4rem;
  font-weight: 900;
}

header .h_navi ul li.admission_menu .drop_menu .hidden {
  /* overflow: hidden; */
}

header .h_navi ul li.admission_menu .drop_menu .hidden ol {
  align-items: stretch;
  flex-wrap: wrap;
  padding: 30px;
  border-radius: 15px;
  background-color: #ededed;
}

header .h_navi ul li.admission_menu .drop_menu .hidden ol li {
  margin: 0;
  padding: 0;
  width: 80%;
  border-bottom: #cccccc dotted 1px;
}

header .h_navi ul li.admission_menu .drop_menu .hidden ol li a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 12px 0;
  height: 28px;
  /* font-size: 13px; */
}

header .h_navi ul li.admission_menu .drop_menu .hidden ol li a span {
  position: relative;
  z-index: 2;
  padding: 0 10px;
}

/* header .h_navi ul li,
header .h_navi ul li.admission_menu span {
  color: #fff;
  text-shadow: 3px 4px 3px rgb(61 70 70);
}

header.scrolled .h_navi ul li,
header.scrolled .h_navi ul li.admission_menu span {
  color: #333;
  text-shadow: none;
} */

@media screen and (max-width: 1350px) {
  header {
    justify-content: right;
    padding-right: 30px;
  }

  header .logo {
    left: 5%;
  }
}

@media screen and (max-width: 1052px) {
  header .logo {
    left: 30px;
  }

  header .h_navi ul {
    gap: 20px;
  }
}

@media screen and (max-width: 950px) {
  header {
    background-color: #fff;
    border-bottom: 1px solid #333;
    position: fixed;
    justify-content: flex-start;
    padding-left: 120px;
  }

  header .h_navi ul {
    gap: 10px;
  }

  header .h_navi {
    margin-right: 20px;
  }

  header .h_navi {
    display: none;
  }

  header .nav_tel {
    display: none;
  }

}

@media (max-width: 456px) {
  header {
    height: 60px;
    padding-left: 90px;
  }

  header .logo img,
  header.scrolled .logo img {
    width: 52px;
    padding-top: 5px;
  }

}

/* =========================
パンくずリスト
========================= */

#breadcrumbs {
  /* margin-top: 90px; */
  margin-top: 30px;
  margin-bottom: 60px;
  text-align: left;
  font-family: 'メイリオ', 'Meiryo', sans-serif;
}

#breadcrumbs span a {
  color: #a7c8ce;
}

.breadcrumb_last {
  font-weight: 700;
}

/* =========================
フロントページ
========================= */

#top {
  position: relative;
  /* height: 100vh; */
  padding-top: 80px;
  /* padding-bottom: 120px; */
  padding-bottom: 30px;
}


#top .top_kv {
  position: relative;
  width: 80%;
  margin: 0 auto;
  /* height: 100%; */
  border-radius: 30px;
  overflow: hidden;
}

#top .catchphrase {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  padding: 1.5rem;
  border-radius: 20px;
}

.catchphrase h2 {
  font-size: clamp(1.2rem, 3vw, 2.5rem);
  font-weight: 700;
  margin: 0;
  line-height: 1.6;
  color: #fff;
  text-shadow: 3px 4px 3px rgb(61 70 70);
}

#top .n2-ss-slider {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
}

#top .n2-ss-slider .n2-ss-slide-background-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  display: block;
}

div#n2-ss-3 .nextend-bullet-bar .n2-bullet.n2-active {
  background: #6da2c9 !important;
}

.main_contents {
  width: 90%;
  max-width: 1350px;
  margin: 0 auto;
  text-align: center;
}


.real-estate_box ul {
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 130px;
  margin: 30px auto;
}

.real-estate_box ul li {
  border-width: 3px;
  border-color: #121316;
  border-style: solid;
  border-radius: 50%;
  /* background-color: #E3DDD7; */
  background-color: rgba(150, 220, 248, 0.4);
  width: 190px;
  height: 190px;
  position: relative;
  overflow: hidden;
}

.real-estate_box ul li a {
  font-size: 2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  white-space: nowrap;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

@media screen and (max-width: 1900px) {
  .real-estate_box ul {
    margin: 0 auto;
  }
}

@media screen and (max-width: 1710px) {
  #top {
    height: auto;
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 950px) {
  #top {
    padding-top: 100px;
  }

  #top .top_kv {
    position: relative;
    width: 95%;
  }

  #top .catchphrase {
    left: 10px;
  }
}

@media screen and (max-width: 935px) {
  .real-estate_box ul {
    gap: 60px;
  }
}

@media screen and (max-width: 895px) {

  .real-estate_box ul li {
    width: 160px;
    height: 160px;
  }

  .real-estate_box ul li a {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 700px) {
  .real-estate_box ul {
    gap: 40px;
  }
}

@media screen and (max-width: 600px) {
  .real-estate_box ul li {
    width: 120px;
    height: 120px;
  }

  .real-estate_box ul li a {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 495px) {
  .real-estate_box ul {
    gap: 20px;
  }
}

@media screen and (max-width: 456px) {
  .catchphrase h2 {
    font-size: 1rem;
  }

  .description_ttl h2 {
    font-size: clamp(1.2rem, 4vw, 1.6rem);
    line-height: 2.0rem;
  }

  #top .catchphrase {
    left: 0;
    padding: 10px;
  }

  .real-estate_box ul {
    gap: 40px;
  }

  .real-estate_box ul li {
    border-width: 2px;
    width: 60px;
    height: 60px;
  }

  .real-estate_box ul li a {
    font-size: .8rem;
  }

  #top {
    padding-top: 80px;
    padding-bottom: 10px;
  }
}

/* description */

#description {
  /* margin: 100px auto; */
  margin: 80px auto 40px;
}

.description {
  display: flex;
  gap: 100px;
  justify-content: space-between;
  align-items: flex-start;
}

.description_ttl {
  text-align: left;
  width: 40%;
  margin-left: 10%;
}

.description_ttl h2 {
  font-size: clamp(1.2rem, 4vw, 2.0rem);
  line-height: 3.0rem;
}

.description_txt {
  margin-top: 50px;
  font-family: "Noto Sans JP", sans-serif;
}

.description_txt p {
  max-width: 550px;
  line-height: 1.4;
}

@media screen and (max-width: 1671px) {
  .description_ttl {
    margin-left: 20px;
  }

  .description {
    gap: 40px;
  }
}

@media screen and (max-width: 1290px) {
  .description_ttl {
    margin-left: 30px;
  }
}

@media screen and (max-width: 1196px) {
  .description {
    gap: 40px;
  }
}

@media screen and (max-width: 1165px) {

  .description_ttl {
    margin-left: 30px;
  }

  .description_ttl h2 {
    font-size: clamp(1.2rem, 2.44444vw, 2.0rem);
  }
}

@media screen and (max-width: 999px) {
  .description {
    flex-direction: column;
  }

  .description_ttl {
    margin: 0 auto;
    width: 80%;
  }

  .description_ttl h2 {
    display: flex;
    gap: 10px;
    font-size: 1.6rem;
    justify-content: center;
  }

  .description_txt {
    margin: 10px auto;
    text-align: center;
  }

  .description_txt p {
    width: 80%;
    max-width: 999px;
    text-align: left;
    margin: 0 auto;
  }

  .description_img02 {
    border-radius: 21px;
  }
}

@media screen and (max-width: 795px) {
  .description_ttl h2 {
    flex-direction: column;
    gap: 0;
  }

  .description_ttl h2 p a {
    background: linear-gradient(transparent 60%, #a7d6ff 90%);
    padding: 0 4px;
  }

  .description_txt p {
    width: 100%;
  }
}

@media screen and (max-width: 495px) {
  #description {
    margin: 20px auto;
  }

  .description_ttl h2 {
    font-size: clamp(1.4rem, 4vw, 1.6rem);
    line-height: 2.0rem;
  }

}

/* property */

#property h2 {
  text-align: left;
  font-size: 2.0rem;
  margin-bottom: 30px;
}

.property_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  margin: 0 auto;
}

.property-item {
  width: calc(33.333% - 20px);
  margin: 10px;
  margin-bottom: 30px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif;
}

/* .property-item img {
  max-width: 360px;
  width: 100%;
  margin-bottom: 10px;
} */
.property-item img {
  object-fit: cover;
  width: 360px;
  height: 300px;
  margin-bottom: 10px;
}

.property-item h3 {
  margin: 10px 0;
  font-size: 18px;
  color: #333;
}

.property-item p {
  font-size: 14px;
  color: #666;
  margin: 5px 0;
  line-height: 1.4;
}

.property-link {
  margin: 50px auto 80px;
}

.property-link a.btn {
  padding: 1rem 3rem;
  cursor: pointer;
  border: 3px solid #353535;
  background-color: #a7c8ce;
  transition: .3s;
  color: #333;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
}


.property-link a.btn:hover {
  box-shadow: 5px 5px #353535;
}

.property-link a.btn:active {
  box-shadow: 0 0;
  transform: translate(5px, 5px);

}

section#saku_img {
  margin-top: 30px;
}

#saku_img img {
  width: 100%;
}

@media screen and (max-width: 1130px) {
  .property_box {
    justify-content: center;
    gap: 40px;
  }

  .property-item img {
    width: 100%;
  }
}

@media screen and (max-width: 999px) {
  .property_box {
    gap: 40px;
    align-items: flex-end;
  }
}

@media screen and (max-width: 950px) {
  #property h2 {
    text-align: center;
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 805px) {
  .property-item {
    width: calc(100% / 2 - 40px);
  }
}

@media screen and (max-width: 625px) {
  .property-item {
    width: 80%;
  }
}

@media screen and (max-width: 495px) {
  #property h2 a {
    background: linear-gradient(transparent 60%, #a7d6ff 90%);
    padding: 0 4px;
  }

}

/* company */

#company {
  padding-top: 100px;
}

#company .company {
  position: relative;
}

#company .company h2 {
  font-size: 2.0rem;
  /* margin-bottom: 80px; */
  text-align: center;
}

#wrapper .message {
  padding-top: 100px;
}

.message_box {
  display: flex;
  gap: 100px;
}

.message_main {
  width: 40%;
  margin-left: 10%;
}

.message_ttl {
  text-align: center;
}

.message_ttl h3 {
  font-size: 1.8rem;
  margin-bottom: 50px;
}

.message_txt {
  text-align: left;
  line-height: 1.8rem;
  font-family: "Noto Sans JP", sans-serif;
}

#company .message_img {
  width: 60%;
  height: auto;
  object-fit: contain;
}

#company .message_img02 {
  width: 100%;
  border-radius: 21px 0 0 21px;
}

/* .description_img {
  width: 60%;
  height: 450px;
  border-radius: 21px 0 0 21px;
  background: url(../img/top/description_img.JPG) no-repeat center center;
  background-size: contain;
  overflow: hidden;
} */

.description_img {
  width: 60%;
  height: auto;
  object-fit: contain;
}

.description_img02 {
  width: 100%;
  border-radius: 21px 0 0 21px;
}

@media screen and (max-width: 1671px) {
  .message_box {
    gap: 40px;
  }

  .message_main {
    margin-left: 30px;
  }
}

@media screen and (max-width: 1400px) {
  .message_box {
    margin-left: 30px;
  }

  .message_main {
    width: 80%;
    margin: 0 auto;
    text-align: center;
  }

  #company .message_img {
    width: 80%;
    margin: 0 auto;
  }

}

@media screen and (max-width: 1165px) {
  .message_box {
    gap: 40px;
  }

  .message_main h2 {
    font-size: clamp(1.2rem, 2.44444vw, 2.0rem);
  }
}

@media screen and (max-width: 999px) {
  .description {
    gap: 10px;
  }

  .description_img {
    width: 80%;
    border-radius: 21px;
    margin: 10px auto;
  }

  .message_box {
    display: block;
  }

  .message_main {
    width: 80%;
    margin: 0 auto;
    margin-bottom: 20px;
    padding: 10px 30px;
  }

  #company .message_img {
    width: 80%;
    margin: 0 auto;
    border-radius: 21px;
  }

  .message_ttl h3 {
    margin-bottom: 20px;
  }

  #company .message_img02 {
    border-radius: 21px;
  }

  .description_img02 {
    border-radius: 21px;
  }
}

@media screen and (max-width: 950px) {
  #company {
    padding-top: 20px;
  }

  #wrapper .message {
    padding-top: 30px;
  }

  .message_ttl h3 {
    padding: 10px 0;
    position: relative;
    padding: 1rem 2rem;
    box-shadow: 5px 5px #e3ddd7;
    outline: 1px solid #fff;
    border: 1px solid #212121;
    background-color: #d3eaff;
  }

  #profile {
    margin-top: 40px;
  }

  .profile_main h3 {
    padding: 10px 0;
    position: relative;
    padding: 1rem 2rem;
    box-shadow: 5px 5px #e3ddd7;
    outline: 1px solid #fff;
    border: 1px solid #212121;
    background-color: #d3eaff;
  }
}

/* profile */

#profile {
  margin: 100px auto 30px;
}

.profile {
  padding-top: 80px;
}

.profile_box {
  display: flex;
  justify-content: space-between;
  gap: 80px;
}

.profile_main {
  width: 60%;
}

.profile_main h3 {
  font-size: 1.8rem;
  margin-bottom: 50px;
  text-align: center;
}

.profile_img {
  width: 100%;
  max-width: 980px;
  height: auto;
  object-fit: contain;
}

.profile_img02 {
  width: 100%;
  border-radius: 0 21px 21px 0;
}

.company-profile {
  width: 40%;
  margin-right: 0;
  margin-left: 5%;
}

.profile_table {
  width: 100%;
  margin: 0 auto;
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
}

.profile_table table {
  width: 100%;
  border-collapse: collapse;
}

.profile_table th {
  text-align: left;
  padding: 20px 10px;
  border-bottom: 2px solid #001E00;
  width: 20%;
}

.profile_table td {
  padding: 20px 10px 20px 30px;
  border-bottom: 1px solid #ccc;
  line-height: 1.8;
  overflow-wrap: break-word;
  word-break: break-word;
}

.googlemap-link {
  display: inline-block;
  color: #001E00;
  text-decoration: none;
  background-image: url('../img/top/map_pin.png');
  background-repeat: no-repeat;
  background-size: 18px 22px;
  padding-left: 25px;
  line-height: 22px;
}

.googlemap-link:hover {
  text-decoration: underline;
  background-color: #E3DDD7;
}

@media screen and (max-width: 1400px) {
  #profile {
    margin-top: 40px;
  }

  .profile_box {
    gap: 40px;
  }

  .company-profile {
    margin-left: 20px;
  }
}

@media screen and (max-width: 1165px) {
  .profile_box {
    gap: 40px;
  }

  .company-profile {
    margin-left: 30px;
  }

  .profile {
    padding-top: 30px;
  }
}

@media screen and (max-width: 1120px) {
  .profile_main {
    width: 80%;
    margin: 0 auto;
  }

  .profile_img02 {
    border-radius: 21px;
  }

  .profile_box {
    flex-direction: column;
  }

  .profile_table {
    text-align: center;
    width: 95%;
    margin: 0 auto;
  }

  .profile_table th,
  .profile_table td {
    display: block;
    width: 100%;
    border-bottom: none;
    box-sizing: border-box;
  }

  .profile_table th {
    padding: 10px;
    text-align: center;
    font-weight: 500;
    background-color: #e3ddd7;
  }

  .profile_table td {
    text-align: left;
    padding: 10px;
    overflow-wrap: break-word;
    word-break: break-word;
  }
}

@media screen and (max-width: 999px) {
  .profile_box {
    flex-direction: column;
    gap: 10px;
  }

  .profile {
    padding-top: 0;
  }

  .profile_main {
    width: 80%;
    margin: 0 auto;
  }

  .profile_main h3 {
    margin-bottom: 20px;
  }

  .profile_img {
    border-radius: 21px;
  }

  .company-profile {
    margin: 10px auto;
    width: 600px;
  }
}

@media screen and (max-width: 768px) {
  .profile_table table {
    font-size: 1rem;
  }

  .profile_main h3 {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 1190px) {
  .company-profile {
    margin-left: 0;
  }
}

/* history */
#history {
  margin: 0 auto;
  padding-top: 100px;
}

.history_box {
  display: flex;
  justify-content: space-between;
  gap: 100px;
}

.history_main {
  width: 60%;
}

.history_main h3 {
  font-size: 1.8rem;
  margin-bottom: 50px;
  text-align: center;
}

.company-history {
  width: 40%;
}

.history_img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.history-list {
  margin-top: 80px;
  width: 40%;
  margin-left: 5%;
  margin-right: 5%;
}

.c-history01_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.c-history01_item-year {
  position: relative;
  -ms-flex-preferred-size: 130px;
  flex-basis: 130px;
  max-width: 130px;
  padding: 10px 0 15px;
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  display: block;
  z-index: 2;
}

.c-history01_item:first-child .c-history01_item-year::before {
  top: 23px;
}

.c-history01_item-year::before {
  position: absolute;
  top: 0;
  bottom: -10px;
  right: 21px;
  content: "";
  display: block;
  width: 2px;
  background: #000;
}

.c-history01_item-year::after {
  position: absolute;
  top: 20px;
  right: 18px;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: #000;
  border-radius: 50%;
}

.c-history01_item-area-txt {
  -ms-flex-preferred-size: calc(100% - 130px);
  flex-basis: calc(100% - 130px);
  max-width: calc(100% - 130px);
  padding: 4px 0 50px;
  text-align: left;
}

.c-history01_item-date {
  line-height: 2;
  font-weight: 700;
  display: block;
  z-index: 2;
}

.c-history01_item-txt {
  line-height: 1.4;
  display: block;
  z-index: 2;
  font-family: "Noto Sans JP", sans-serif;
}


.c-history01_item:last-child .c-history01_item-year::before {
  display: none;
}

.c-history01_item:last-child .c-history01_item-year::after {
  top: 6px;
}

.history-list {
  position: relative;
}

.c-history01::before {
  content: "";
  position: absolute;
  top: 20px;
  right: 0;
  width: calc(100% - 50px);
  height: 89%;
  background-color: #e3ddd7;
  z-index: 1;
}


@media screen and (max-width: 1290px) {
  .history-list {
    margin-left: 0;
    margin-right: 20px;
  }
}

@media screen and (max-width: 1165px) {
  .history_box {
    gap: 40px;
  }

  .c-history01::before {
    width: calc(100% - 50px);
    height: 90.3%;
  }

}

@media screen and (max-width: 1120px) {

  .profile_table {
    text-align: center;
    width: 95%;
    margin: 0 auto;
  }

  .profile_table th,
  .profile_table td {
    display: block;
    width: 100%;
    border-bottom: none;
    box-sizing: border-box;
  }

  .profile_table table {
    /* display: block; */
    width: 100%;
  }

  .profile_table th {
    padding: 10px;
    text-align: center;
    font-weight: 500;
    background-color: #e3ddd7;
  }

  .profile_table td {
    text-align: center;
    padding: 10px;
    overflow-wrap: break-word;
    word-break: break-word;
  }

}

@media screen and (max-width: 999px) {
  #history {
    padding-top: 40px;
  }
}

@media screen and (max-width: 768px) {
  .profile_table table {
    font-size: 1rem;
  }
}

@media screen and (max-width: 715px) {
  .profile_table td {
    text-align: left;
  }

  .profile_table td.txt_center {
    text-align: center;
  }
}

@media screen and (max-width: 1190px) {
  .company-profile {
    margin-left: 0;
  }
}

@media screen and (max-width: 1120px) {
  .company-profile {
    width: 80%;
    margin: 0 auto;
  }

  .history_main {
    width: 50%;
  }

  .history-list {
    width: 42%;
  }
}

@media screen and (max-width: 999px) {

  .history_main h3 {
    margin-bottom: 20px;
  }

  .history_box {
    gap: 20px;
    flex-direction: column;
    width: 100%;
  }

  .history_main {
    width: 80%;
    margin: 0 auto;
  }

  .history_img {
    border-radius: 21px;
  }

  .history-list {
    width: 80%;
    margin: 0 auto;
  }

}

@media screen and (max-width: 999px) {
  .company-profile {
    margin: 20px auto;
  }
}

@media screen and (max-width: 950px) {
  #history {
    padding-top: 20px;
  }

  .history_main h3 {
    padding: 10px 0;
    position: relative;
    padding: 1rem 2rem;
    box-shadow: 5px 5px #e3ddd7;
    outline: 1px solid #fff;
    border: 1px solid #212121;
    background-color: #d3eaff;
  }
}

@media (min-width: 768px) {
  .c-history01_item-year {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    min-height: 115px;
    -ms-flex-preferred-size: 225px;
    flex-basis: 225px;
    max-width: 225px;
    padding: 12px 0 50px;
  }

  .c-history01_item:first-child .c-history01_item-year::before {
    top: 20px;
  }

  .c-history01_item-year::before {
    right: 43px;
  }

  .c-history01_item-year::after {
    top: 12px;
    right: 35px;
    width: 18px;
    height: 18px;
  }

  .c-history01_item-area-txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    flex-direction: column;
    -ms-flex-preferred-size: calc(100% - 225px);
    flex-basis: calc(100% - 225px);
    max-width: calc(100% - 225px);
  }

}

@media (max-width: 768px) {
  .c-history01_item-area-txt {
    z-index: 1;
  }
}

/* access */
#access {
  padding-top: 100px;
}

.access h3 {
  font-size: 1.8rem;
  margin-bottom: 50px;
}

.access iframe {
  width: 100%;
}

@media screen and (max-width: 999px) {
  #access {
    padding-top: 40px;
  }
}

@media screen and (max-width: 950px) {
  #access {
    padding-top: 0;
  }

  .access h3 {
    margin-bottom: 20px;
    padding: 10px 0;
    position: relative;
    padding: 1rem 2rem;
    box-shadow: 5px 5px #e3ddd7;
    outline: 1px solid #fff;
    border: 1px solid #212121;
    background-color: #d3eaff;
  }
}

@media screen and (max-width: 600px) {
  .company-profile {
    width: 80%;
  }

  .history-list {
    width: 90%;
  }

  .c-history01_item-year {
    flex-basis: 80px;
    max-width: 80px;
    padding: 12px 0 0;
    font-size: .9rem;
  }

  .c-history01_item-year::before {
    right: 10px;
  }

  .c-history01_item-year::after {
    top: 14px;
    right: 7px;
  }

  .c-history01_item:first-child .c-history01_item-year::before {
    top: 20px;
  }

  .c-history01_item-area-txt {
    padding: 4px 0 20px;
  }

  .c-history01::before {
    height: 92.5%;
  }

  #history {
    margin-bottom: 20px;
  }
}

/* ========================
プライバシーポリシー
=========================== */
.pp_box {
  padding-top: 100px;
  margin: 80px auto;
}

.pp_ttl h2 {
  font-size: 2.0rem;
  padding-bottom: 50px;
}

.pp_subttl {
  text-align: left;
  line-height: 1.4;
}

.privacy-policy {
  padding-top: 50px;
  text-align: left;
  line-height: 1.6;
}

.privacy-policy h3 {
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 2.0;
  padding-bottom: 1.0rem;
}

.privacy-policy p {
  line-height: 1.4;
  padding-bottom: 2.2rem;
}

.pp_list {
  padding-left: 2rem;
  padding-bottom: 2rem;
  margin-top: -1.8rem;
}

.pp_list li {
  list-style: disc;
  padding-left: 0.2rem;
}

/* ========================
footer
======================== */

footer {
  background-color: #ebe7e4;
  padding: 50px 0 20px;
}

.footer {
  text-align: left;
}

.footer_box {
  display: flex;
  gap: 50px;
}

.footer_company,
.footer_menu {
  width: calc(50% - 50px);
}

.footer h2 {
  font-family: 'メイリオ', 'Meiryo', sans-serif;
  font-weight: 900;
  padding-bottom: 30px;
  font-size: 1.8rem;
}

.footer h2 span {
  font-size: 1.2rem;
}

.footer_company_txt {
  line-height: 1.4;
}

.footer_menu ul {
  display: flex;
  gap: 50px;
}

.f_menu::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 10px solid #158630;
  margin-left: 8px;
  vertical-align: middle;
}

.submenu li::before {
  content: "- ";
}

ul .submenu {
  display: inline-block;
  line-height: 1.4;
  padding-top: 20px;
  margin-left: 8px;
}

.f_menu02 {
  padding-top: 50px;
}

.copy_right {
  text-align: center;
  padding: 50px 0 0;
  font-size: .7rem;
}

ul .submenu li {
  line-height: 1.8;
}

.f_menu a:hover,
ul .submenu li a:hover,
.f_menu02 a:hover,
.site_map_box h2:hover,
.site_map_box .site_li a:hover {
  color: #2fa885;
}

@media screen and (max-width: 950px) {
  .footer {
    width: 80%;
    margin: 0 auto;
  }

  .footer h2 {
    text-align: center;
  }

  .footer_menu {
    display: none;
  }

  .footer_company {
    width: 100%;
  }

  .footer_box {
    display: block;
    text-align: center;
  }
}

/* googleマップ_口コミ非表示 */
#google_map {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding-top: 40%;
}

#google_map iframe {
  position: absolute;
  top: -150px;
  left: 0;
  width: 100%;
  /* height: calc(100% + 300px); */
}

@media screen and (max-width: 1450px) {
  footer {
    margin-top: 60px;
  }
}

@media screen and (max-width: 650px) {
  #google_map iframe {
    top: 0;
    height: 100%;
  }
}

/* ==================
お問合せフォーム
=================== */

#contact,
#rental {
  position: relative;
  margin-top: 80px;
}

.contact_top h2,
.rental_top h2 span {
  font-size: 2.0rem;
}

.contact_top h2 {
  position: absolute;
  bottom: 20%;
  /* left: 80px; */
  left: 134px;
  padding: 10px;
  background-color: rgba(249, 249, 249, 0.5);
}

.contact_img img,
.rental_img img {
  width: 80%;
  border-radius: 30px;
  max-height: 600px;
}

.contact_txt h2 {
  font-size: 2.0rem;
  padding-bottom: 30px;
}

.inquiry h1 {
  margin: 40px auto;
  text-align: center;
}

section#inquiry {
  max-width: 900px;
  margin: 20px auto;
}

.contact_box {
  background-color: #e3ddd7;
  padding: 50px 0;
  margin: 20px 0 80px;
}

.contact_box {
  text-align: center;
}

.contact_txt p {
  padding: 1.1rem;
  line-height: 1.6rem;
  text-align: center;
}

.contact_txt a:hover {}

.contact_txt p.contact_tel {
  font-size: 1.4rem;
  text-align: center;
}

#cf-area {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  max-width: 900px;
}

.cf_inq {
  display: flex;
  width: 100%;
}

.cf-item {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px auto;
}

.cf-q {
  width: 20%;
  margin: 10px 0;
  text-align: left;
  padding: 10px;
}

#cf-area label {
  font-weight: bold;
}

span.strong_red {
  color: red;
  font-size: .8rem;
  vertical-align: top;
}

.cf-a {
  width: 60%;
  text-align: left;
  margin-left: 20px;
}

.cf-c {
  margin: 10px 0;
  text-align: left;
  padding: 10px;
}

.wpcf-form-control-wrap {
  position: relative;
}

#cf-area input[type="text"],
#cf-area input[type="email"],
#cf-area input[type="tel"],
#cf-area input[type="textarea"] {
  width: 100%;
  background-color: #fff;
  border: 1px solid #fff;
  margin: 10px;
  margin-left: 10px;
  border-radius: 8px;
  height: auto;
  margin-left: 10px;
  padding: 10px;
  text-align: left;
}


#your-message {
  width: 100%;
  background-color: #fff;
  border: 1px solid #fff;
  margin: 10px;
  margin-left: 10px;
  margin-left: 10px;
  border-radius: 8px;
  height: auto;
  margin-left: 10px;
  padding: 10px;
  text-align: left;
}

.wpcf-list-item {
  display: inline-block;
  margin: 0 .6em 0 1em;
}

#cf-area input[type="checkbox"] {
  appearance: auto;
  width: 16px;
  height: 16px;
  margin: 0 .6em 0 .8em;
}

.cf-submit {
  text-align: center;
  margin: 20px auto;
}

.pp_txt {
  width: 60%;
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}

.cf-accept-check {
  text-align: left;
  padding-top: 8px;
}

.required {
  text-align: left;
  width: 100%;
  color: red;
  margin-left: 25%;
  font-size: .9rem;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner {
  background-color: #675B36;
  border: 2px solid #675B36;
  padding: .8em 2em;
  color: #fff;
  font-size: 1.0rem;
  font-family: inherit;
  letter-spacing: .2rem;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner:hover {
  background-color: #675B36;
  border: 2px solid #675B36;
  color: #fff;
}

.count {
  text-align: right;
}

.wpcf7-form-control.wpcf7-previous {
  display: inline-block !important;
}

.cf-btn {
  display: flex;
  justify-content: center;
  gap: 50px;
}

.wpcf7-form-control.wpcf7-previous {
  background-color: #fff;
  border: 2px solid #675B36;
  padding: .8em 2em;
  color: #121316;
  font-size: 1.0rem;
  font-family: inherit;
  letter-spacing: .2rem;
}

@media screen and (max-width: 950px) {

  #contact,
  #rental {
    margin-top: 100px;
  }

  .contact_box {
    padding: 20px 0;
    margin: 20px 0 0;
  }

  .contact_img img,
  .rental_img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    overflow: hidden;
  }

  .contact_top h2,
  .rental_top h2 {
    position: absolute;
    bottom: 20%;
    left: 0px;
  }

}

@media screen and (max-width: 930px) {
  #cf-area {
    width: 90%;
  }
}

@media screen and (max-width: 883px) {
  .contact_txt p {
    text-align: left;
  }
}

@media screen and (max-width: 722px) {
  .cf_inq {
    flex-direction: column;
  }

  .cf-q {
    width: 100%;
    margin-bottom: 0;
  }

  .cf-a {
    width: 100%;
    margin-left: 0;
  }

  #cf-area input[type="text"],
  #cf-area input[type="email"],
  #cf-area input[type="tel"],
  #cf-area input[type="textarea"] {
    width: 90%;
    margin-top: 0;
  }

  #your-message {
    width: 90%;
  }

  .required {
    margin-left: 0;
  }

  .pp_txt {
    width: 100%;
  }

  .cf-a.pp {
    margin-left: 20px;
  }

  .wpcf7-list-item {
    margin: 0 0 0 10px;
  }

  .cf-submit {
    margin-left: 80px;
  }
}

@media screen and (max-width: 450px) {

  .contact_img img,
  .rental_img img {
    width: 100%;
    height: auto;
    object-fit: contain;
    overflow: hidden;
  }
}

@media screen and (max-width: 393px) {
  .cf-submit {
    margin-left: 60px;
  }
}

@media screen and (max-width: 373px) {
  .cf-submit {
    padding-left: 50px;
  }
}

@media screen and (max-width: 360px) {
  .cf-submit {
    padding-left: 49px;
  }
}

/* ==================
賃貸物件
=================== */

.rental_top h2 {
  display: flex;
  flex-direction: column;
  line-height: 1.6;
  text-align: left;
  padding: 2px 6px;
  background-color: rgba(249, 249, 249, 0.5);
}


.property-cate {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  margin-bottom: 50px;
}

.property-tags {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
  justify-content: flex-start;
  width: 100%;
  max-width: 360px;
}

.tag {
  display: inline-block;
  font-size: 14px;
  padding: 5px 10px;
  border-radius: 3px;
  margin-right: 5px;
  margin-bottom: 5px;
  border-radius: 3px;
}

.tag.new {
  background-color: #fff;
  border: 2px solid #FF0000;
  color: #ff0000;
}

.tag.sell_property {
  background-color: #fff;
  border: 2px solid #a4de00;
  color: #a4de00;
  font-weight: 700;
}

.tag.land {
  background-color: #32a783;
  border: 2px solid #32a783;
}

.tag.building {
  background-color: #a4de00;
  border: 2px solid #a4de00;
}

.tag.rent {
  background-color: #fff;
  border: 2px solid #ff8935;
  color: #ff8935;
  font-weight: 700;
}

.tag.apartment_house {
  background-color: #ffe700;
  border: 2px solid #ffe700;
}

.tag.tenant {
  background-color: #ff8935;
  border: 2px solid #ff8935;
  color: #fff;
}

.tag.parking {
  background-color: #002a96;
  border: 2px solid #002a96;
  color: #fff;
}

@media screen and (min-width: 951px) {
  .rental_top {
    position: relative;
  }

  .rental_ttl {
    width: 80%;
    margin: 0 auto;
  }

  .rental_top h2 {
    position: absolute;
    bottom: 20%;
    left: 134px;
    padding: 10px;
  }
}

@media screen and (max-width: 1005px) {
  .property-tags {
    gap: 10px;
  }
}

@media screen and (max-width: 625px) {
  .property-cate {
    justify-content: center;
  }
}

/* =====================
物件情報_詳細ページ
======================== */

.detail {
  margin-top: 100px;
  font-family: "Noto Sans JP", sans-serif;
}

.detail_main {
  width: 80%;
  max-width: 900px;
  margin: 0 auto;
}

.detail h2 {
  font-size: 1.8rem;
  padding: 20px;
}

.tag_main {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 20px auto;
}

.main ul li {
  display: inline-block;
  padding: 0 10px;
}

.detail_price {
  text-align: left;
  display: flex;
  margin-bottom: 10px;
}

.detail_price::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 10px solid #ffb42d;
  margin-right: 8px;
  vertical-align: middle;
}

.detail_txtbox {
  display: flex;
  margin: 50px auto;
  gap: 60px;
}

.detail_introduction h3 {
  text-align: left;
  line-height: 2.0;
  padding: 0 20px;
}

.detail_introduction p {
  text-align: left;
  padding: 20px;
}

.detail_txt {
  width: calc(100% / 2 - 30px);
}

.detail_map {
  margin: 20px;
}

.inquiry_btn {
  margin: 20px;
  margin-top: 50px;
}

.c_btn {
  background-color: #19852f;
  padding: 8px 20px;
  color: #fff;
}

.inquiry_btn p {
  margin-top: 30px;
  text-align: left;
  line-height: 1.6;
  color: #5e5854;
}

.inquiry_btn span {
  display: inline-block;
  color: #121316;
}


.btn_tel {
  font-size: 1.2rem;
  border-bottom: 2px dotted #19852f;
  font-weight: 900;
}

.btn_tel:hover {
  color: #2fa885;
}

.detail_list tr:first-child {
  border-top: 1px solid #acb5ba;
}

.detail_list tr {
  border-bottom: 1px solid #acb5ba;
}

.detail_list td {
  padding: 20px 10px;
  text-align: left;
  border-bottom: 1px solid #acb5ba;
}

.detail_list td:first-child {
  width: 30%;
}

.detail_list td:last-child {
  width: 70%;
  padding-left: 20px;
}

.detail_list {
  width: calc(100% / 2 - 60px);
}

.detail_list table {
  width: 100%;
}

.main-image {
  max-width: 900px;
  max-height: 699px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.thumbnail-image {
  max-width: 250px;
  max-height: 166px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
}

.thumbnail-image:hover {
  border-color: #e82d42;
}

.main-slider {
  margin-bottom: 20px;
}

.thumbnail-slider .swiper-slide {
  display: inline-block;
}

.detail_gallery {
  position: relative;
  margin: 0 auto;
  width: 100%;
  height: auto;
}

.swiper-slide.swiper-slide-prev {
  width: calc(100% / 4 - 20px);
  margin-right: 10px;
}

.main-slider .swiper-slide img {
  width: 100%;
  height: auto;
}

.thumbnail-slider .swiper-slide {
  width: auto;
}

.thumbnail-slider .swiper-slide img {
  width: 100%;
  height: 125px;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: initial;
  bottom: 25px;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.5);
  color: white;
  border-radius: 50%;
  z-index: 10;
  cursor: pointer;
}

.swiper-button-next {
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.swiper-button-prev {
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.thumbnail-slider .swiper-slide-active img {
  border: 5px solid #e82d42;
}

.swiper {
  width: 100%;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
}

/* .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #444;
    display: flex;
    justify-content: center;
    align-items: center;
} */

.swiper-slide {
  background-size: cover;
  background-position: center;
}

.mySwiper2 {
  height: 80%;
  width: 100%;
}

.mySwiper {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
}

.mySwiper .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
}

.mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 1365px) {
  .detail_map {
    margin: 20px 0;
  }

  .detail_map iframe {
    width: 100%;
  }
}

@media screen and (max-width: 1210px) {
  .detail_list tr:first-child {
    border-top: none;
  }

  .detail_list tr {
    border-bottom: none;
  }

  .detail_list td {
    border-bottom: none;
  }

  .detail_list td:first-child {
    display: block;
    width: 100%;
    border-bottom: none;
    border-top: none;
    background-color: #e3ddd7;
    text-align: center;
    font-weight: 500;
  }

  .detail_list td:last-child {
    display: block;
    width: 100%;
  }
}

.detail {
  margin-top: 30px;
  font-family: "Noto Sans JP", sans-serif;
}

/* 2025/05/29　追加 */
.swiper-container {
  width: 100%;
  overflow: hidden;
}

.gallery-top {
  width: 100%;
  margin-bottom: 20px;
  max-height: 580px;
}

.gallery-top .swiper-slide img {
  width: 100%;
  height: 580px;
  object-fit: cover;
}

.gallery-thumbs {
  width: 100%;
  position: relative;
}

/* .gallery-thumbs .swiper-slide {
  width: auto;
  height: 80px;
  cursor: pointer;
  position: relative;
} */

.gallery-thumbs .swiper-slide-thumb-active {
  border: 3px solid #e82d42;
  box-shadow: 0 0 8px rgba(0, 150, 136, 0.5);
}

.gallery-thumbs .swiper-slide img {
  width: 100%;
  height: auto;
  max-height: 115px;
  object-fit: cover;
}

.detail_gallery .gallery-thumbs .swiper-button-next,
.detail_gallery .gallery-thumbs .swiper-button-prev {
  width: 30px;
  height: 30px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 70%;
  transform: translateY(-60%);
  z-index: 10;
}

.detail_gallery .gallery-thumbs .swiper-button-next::after,
.detail_gallery .gallery-thumbs .swiper-button-prev::after {
  font-size: 20px;
  font-weight: 900;
}

.detail_gallery .gallery-thumbs .swiper-button-next:hover,
.detail_gallery .gallery-thumbs .swiper-button-prev:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

@media screen and (max-width: 950px) {
  .detail_gallery {
    margin: 20px auto;
  }

  .tag_main {
    flex-direction: column;
    gap: 8px;
  }

  .gallery-top .swiper-slide img {
    height: 300px;
  }

  .tag_main .tag_box {
    width: 100%;
    text-align: left;
  }

  .tag_main .main {
    width: 100%;
    text-align: left;
  }

  .detail_txtbox {
    display: flex;
    flex-direction: column;
    width: 80%;
    margin: 0 auto;
    gap: 0;
  }

  .detail_introduction,
  .detail_list,
  .detail_map,
  .inquiry_btn {
    width: 100%;
    margin: 20px 0;
  }

  .detail_txt {
    width: 100%;
  }

  .detail_introduction {
    order: 1;
  }

  .detail_list {
    order: 2;
  }

  .detail_map {
    order: 3;
  }

  .inquiry_btn {
    order: 4;
  }

  .detail_list table {
    width: 100%;
    border-collapse: collapse;
  }

  .detail_list tr {
    display: flex;
    flex-direction: column;
  }

  .detail_list td {
    padding: 20px 10px;
    text-align: left;
  }

  .detail_list td:first-child {
    width: 100%;
    background-color: #e3ddd7;
    text-align: center;
    font-weight: 500;
    border: none;
  }

  .detail_list td:last-child {
    width: 100%;
    padding-left: 20px;
    display: flex;
    border: none;
  }

  .gallery-top .swiper-slide img {
    height: 300px;
  }
}

@media screen and (max-width: 600px) {
  .detail_main {
    width: 95%;
  }
}

/* ===================
サイトマップ
=================== */
.site_map {
  margin: 100px auto;
  display: flex;
  text-align: center;
  width: 80%;
  gap: 100px;
}

.site_map_box {
  line-height: 2;
}

.site_map_box h2 {
  font-size: 1.2rem;
  padding: 8px 20px;
  background-color: #e3ddd7;
  margin: 10px;
}

/* ===================
ハンバーガーメニュー
=================== */
.hamburger-menu {
  position: fixed;
  display: none;
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger-icon {
  width: 30px;
  height: 3px;
  background-color: #333;
  display: block;
  margin: 6px 0;
  transition: background-color 0.3s ease-in-out;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100%;
  overflow: scroll;
  background-color: #fff;
  z-index: 1000;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  transition: right 0.3s ease;
}

.mobile-menu.active {
  right: 0;
  display: block;
}

.mobile-menu .close-menu {
  position: fixed;
  /* position: absolute; */
  top: 20px;
  right: 20px;
  font-size: 2rem;
  color: #333;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1002;
}

.mobile-menu ul {
  padding: 80px 20px 0;

}

.mobile-menu ul li {
  list-style: none;
  width: 60%;
  margin: 0 auto;
  padding: 0 20px 4px;
  margin-bottom: 20px;
  border-bottom: 1px solid #333;
}

.mobile-menu ul li a {
  text-decoration: none;
  color: #333;
  /* font-size: 1.2rem; */
}

.mobile-menu ul .submenu {
  display: none;
  padding-left: 0;
  padding-top: 10px;
}

.mobile-menu ul .submenu.open {
  display: block;
}

.mobile-menu .submenu li {
  width: 100%;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
  border-bottom: none;
}

.mobile-menu ul li:hover .submenu {
  /* display: block; */
}

.hamburger-menu.hidden {
  display: none;
}

.sp_tel_box {
  background-color: #e3ddd7;
  padding: 1.0rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.4rem;
  font-weight: 900;
  width: 50%;
  margin: 0 auto;
  justify-content: center;
}

.accordion-toggle {
  background: none;
  background-color: rgba(0, 0, 0, 0);
  border: none;
  width: 16px;
  height: 16px;
  cursor: pointer;
  background-color: transparent;
  background-image: url('..//img/arrow-down.svg');
  background-size: 16px auto;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  margin-left: 8px;
  margin-bottom: 2px;
}

.accordion-toggle.active {
  background-image: url('../img/arrow-up.svg');
}

.company-name {
  display: none;
  font-size: 16px;
  text-align: center;
  margin: 10px 0;
  font-weight: bold;
}

@media screen and (max-width: 950px) {

  .hamburger-menu,
  .sp_nav_tel {
    display: block;
  }

  .h_navi {
    display: none;
  }

  .mobile-menu {
    width: 100%;
  }

  .company-name {
    display: block;
  }

}

@media screen and (max-width: 456px) {
  .hamburger-menu {
    top: 14px;
  }
}

@media screen and (max-width: 350px) {
  .mobile-menu ul li {
    width: 80%;
  }

  .sp_tel_box {
    width: 60%;
  }
}

/* ====================
404ページ
==================== */
#error {
  margin: 0 auto;
  display: block;
}

.error_box {
  background-color: #ececec;
  margin-top: 80px;
  padding: 72px 0;
  height: 100%;
}