@charset "UTF-8";
* {
  min-width: 0;
  min-height: 0;
  color: #333333;
}

/* 共通 */
body {
  margin: 0;
  padding: 0;
}
body.scroll-lock {
  overflow: hidden;
}

font font {
  overflow-wrap: break-word;
}

ul,
li {
  list-style: none;
}

a {
  text-decoration: none;
  display: block;
}
a:hover {
  opacity: 0.8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
}

:target {
  /* ヘッダーの高さ分だけパディングを追加し、内容が隠れないようにする */
  padding-top: 110px;
  /* パディングで内容が下に押し出されるのを避けるために、同じ大きさのマイナスマージンを設定 */
  margin-top: -110px;
  /* ブラウザが要素を表示する際の挙動を補助する */
  display: block;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 600px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media (max-width: 600px) {
  .sp {
    display: block;
  }
}

.wrap {
  max-width: 80%;
  /* full-width 1400pxに対して、1000px maxを想定 */
  margin: 0 auto;
}
@media (max-width: 800px) {
  .wrap {
    max-width: 100%;
    padding: 0 3%;
  }
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

div img {
  width: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  vertical-align: top;
}

.visit-header {
  background-color: #202125;
  padding: 15px 25px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000; /* 他の要素より上に表示するための値 */
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* 下に薄い影をつける */
  z-index: 10;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.visit-header .logo img {
  width: auto;
  margin-right: 10px;
  height: 50px;
}
@media (max-width: 800px) {
  .visit-header .list-pc {
    display: none;
  }
}
.visit-header .list-pc .box {
  margin-right: 30px;
}
.visit-header .list-pc .box:last-child {
  margin-right: 0;
}
.visit-header .list-pc .box a {
  color: white;
  text-decoration: none;
  font-size: 15px;
}
.visit-header .list-pc .box a:hover {
  opacity: 0.7;
}

/*ハンバーガーメニュー*/
#navArea {
  display: none;
}
@media (max-width: 800px) {
  #navArea {
    display: block;
  }
}
#navArea nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100vh;
  background: #ffffff;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 3;
  opacity: 0;
}
#navArea nav .list .box {
  border-bottom: 1px solid #e9eae8;
}
#navArea nav .list .box:first-child a {
  display: inline-block;
  color: #bcbcbc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#navArea nav .list .box:first-child a:before {
  content: "";
  display: block;
  width: 26px;
  height: 22px;
  margin-right: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(/wp-content/uploads/2024/09/ba0b3d28529e46090811f508043412ed.png);
}
#navArea nav .list .box a {
  color: #393a38;
  text-decoration: none;
  font-size: 16px;
  padding: 30px;
  display: block;
  font-weight: 600;
}
#navArea nav .list .icons {
  margin: 40px 0 0 30px;
}
#navArea nav .list .icons a {
  display: block;
  width: 30px;
  height: 30px;
}
#navArea #mask {
  display: none;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
#navArea.open nav {
  right: 0;
  opacity: 1;
}
#navArea.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 2;
  cursor: pointer;
}

.toggle_btn {
  display: none;
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 30px;
  height: 20px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 5;
}
@media (max-width: 800px) {
  .toggle_btn {
    display: block;
  }
}
.toggle_btn .toggle_line {
  width: 100%;
  height: 100%;
}
.toggle_btn .toggle_line span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 4px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.toggle_btn .toggle_line span:nth-child(1) {
  top: 0;
}
.toggle_btn .toggle_line span:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.toggle_btn .toggle_line span:nth-child(3) {
  bottom: 0;
}

.toggle_btn.open span {
  background-color: #393a38;
}
.toggle_btn.open span:nth-child(1) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-315deg);
  transform: translateY(-50%) rotate(-315deg);
}
.toggle_btn.open span:nth-child(2) {
  -webkit-transform: translateY(-50%) rotate(315deg);
  transform: translateY(-50%) rotate(315deg);
}
.toggle_btn.open span:nth-child(3) {
  display: none;
}

.footer {
  background-color: #1c1c1c;
  padding: 40px 0;
  text-align: center;
  margin: 0;
}
.footer .visit-logo {
  margin-bottom: 20px;
}
.footer .visit-logo img {
  width: 80px;
  height: auto;
}
.footer .footer-nav {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
.footer .footer-nav .box {
  display: inline-block;
  position: relative;
}
.footer .footer-nav .box:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 16px;
  border-right: 2px solid #cdd0ca;
}
.footer .footer-nav .box a {
  color: #d8caca;
  text-decoration: none;
  padding: 10px;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.footer .footer-nav .box a:hover {
  border-color: #d8caca;
  border-radius: 5px;
}
.footer .visit-social {
  margin-top: 20px;
}
.footer .visit-social a {
  display: inline-block;
  width: 40px;
  height: 40px;
}
.footer .visit-social a img {
  width: 100%;
  height: auto;
}

@media (max-width: 900px) {
  .visit-pc-nav {
    display: none;
  }
  .visit-menu-icon {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .visit-sp-nav {
    display: block;
  }
}
.inner {
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 1100px) {
  .inner {
    max-width: 100%;
    width: 90%;
  }
}
@media (max-width: 600px) {
  .inner {
    width: 100%;
    padding: 60px 3%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.top-line {
  padding: 90px 60px 0 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 80px 0 90px 0;
}
@media (max-width: 1100px) {
  .top-line {
    padding: 0;
    margin: 80px 0 0px 0;
  }
}
.top-line .image {
  height: 380px;
  position: relative;
}
@media (max-width: 600px) {
  .top-line .image {
    height: 200px;
  }
}
.top-line .image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-line .image::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.5;
}
.top-line .content {
  top: calc(50% + 90px);
  left: 130px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
}
@media (max-width: 600px) {
  .top-line .content {
    top: 50%;
    left: 20px;
  }
}
.top-line .content .title,
.top-line .content .text {
  color: #fff;
}
.top-line .content .title {
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .top-line .content .title {
    font-size: 24px;
  }
}