@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  letter-spacing: 4px;
  line-height: 1.5;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

h1, h2, h3, h4, button, input, label {
  line-height: 1.1;
}

h1, h2, h3, h4 {
  text-wrap: balance;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
}

.middle {
  font-size: 20px;
}
@media (max-width: 768px) {
  .middle {
    font-size: 18px;
  }
}

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

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

.white {
  color: #ffffff !important;
  margin-top: 30px;
}

.green {
  color: #646865 !important;
}

.black {
  color: #000000 !important;
}

.center {
  text-align: center !important;
}

.bold {
  font-weight: 500 !important;
}

.f10 {
  font-size: 10px;
}

.f12 {
  font-size: 12px;
}

.f14 {
  font-size: 14px;
}

.bg-white {
  background-color: #ffffff;
}

.bg-green {
  background-color: #646865;
}

.bg-cream {
  background-color: #F2EBE2;
}

.bg-gray {
  background-color: #3E3E3E;
}

.container {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  max-width: 1100px;
}

.sec-p {
  padding: 150px 0;
}
@media (max-width: 768px) {
  .sec-p {
    padding: 100px 0;
  }
}

.sec-pb {
  padding-bottom: 150px;
}
@media (max-width: 768px) {
  .sec-pb {
    padding-bottom: 100px;
  }
}

.sec-pt {
  padding-top: 150px;
}
@media (max-width: 768px) {
  .sec-pt {
    padding-top: 100px;
  }
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.sec_ttl {
  margin-bottom: 100px;
}
.sec_ttl h2, .sec_ttl p {
  text-align: center;
  color: #ffffff;
}
.sec_ttl h2 {
  font-size: 45px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
}
.sec_ttl p {
  margin-top: 10px;
}
@media (max-width: 768px) {
  .sec_ttl {
    margin-bottom: 80px;
  }
  .sec_ttl h2 {
    font-size: 45px;
  }
}

.button-white {
  display: block;
  margin: 0 auto;
  padding: 20px 20px;
  width: 250px;
  text-align: center;
  border: 1px solid #ffffff;
}

.header_bar {
  height: 10px;
  width: 100%;
  background: #67A831;
}
@media (max-width: 768px) {
  .header_bar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
  }
}

.header-pc {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 30px;
}
@media (max-width: 768px) {
  .header-pc {
    display: none;
    padding: 20px;
  }
}
.header-pc .header_logo img {
  display: block;
  height: 50px;
}

.header_tel {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.header_tel img {
  display: block;
  margin: 5px 10px 0 0;
  height: 25px;
}
.header_tel p {
  letter-spacing: 1px;
  color: #000000;
  font-size: 24px;
}
.header-sp-menu .tel img {
  width: 220px;   /* 適度な幅に調整 */
  height: auto;   /* 縦横比は保つ */
  display: block;
  margin: 0 auto; /* 中央寄せ */
}
.header-sns {
  position: absolute;
  z-index: 2;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.header-sns .x {
  display: block;
  margin-top: 10px;
}

.header-sp {
  display: none;
}
@media (max-width: 768px) {
  .header-sp {
    display: block;
    position: fixed;
    top: 10px;
    right: 0;
    left: 0;
    padding: 10px 20px;
  }
}

.header-logo {
  width: 50px;
}

.humbarger {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 100;
}
.humbarger span {
  display: inline-block;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  left: 10px;
  height: 3px;
  border-radius: 2px;
  background: #3E3E3E;
}
.humbarger span:nth-of-type(1) {
  top: 15px;
  width: 80%;
}
.humbarger span:nth-of-type(2) {
  top: 23px;
  width: 50%;
}
.humbarger span:nth-of-type(3) {
  top: 31px;
  width: 80%;
}

.humbarger.active span:nth-of-type(1) {
  top: 18px;
  left: 10px;
  transform: translateY(6px) rotate(-135deg);
  width: 80%;
  background: #ffffff;
}
.humbarger.active span:nth-of-type(2) {
  opacity: 0;
}
.humbarger.active span:nth-of-type(3) {
  top: 30px;
  left: 10px;
  transform: translateY(-6px) rotate(135deg);
  width: 80%;
  background: #ffffff;
}

.header-sp-menu {
  transition: all 0.4s;
  opacity: 0;
  visibility: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
}
.header-sp-menu .logo {
  display: block;
  margin: 0 auto;
  width: 80px;
}
.header-sp-menu .contact {
  margin: 50px auto;
}
.header-sp-menu .header-sp-sns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.header-sp-menu .header-sp-sns a {
  margin: 0 10px;
}
.header-sp-menu .tel {
  display: table;
  margin: 30px auto 0;
}

.header-sp-menu.active {
  visibility: visible;
  opacity: 1;
}

main {
  width: 100%;
}

.fv {
  padding-top: 80px;
}

.fv-block {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  z-index: -1;
}

.fv-empty {
  width: 200px;
}
@media (max-width: 768px) {
  .fv-empty {
    width: 20%;
  }
}

.fv-img {
  flex: 1;
  height: 60vh;
}
.fv-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fv-copy {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.fv-copy h2 {
  display: table;
  padding: 0 10px 0 15px;
  max-width: 700px;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 1px;
  border-radius: 5px;
  color: #ffffff;
  background: rgba(103, 168, 49, 0.8);
}
.fv-copy p {
  display: table;
  padding: 0 10px 0 15px;
  color: #ffffff;
  background: rgba(103, 168, 49, 0.8);
}
@media (max-width: 768px) {
  .fv-copy h2 {
    font-size: 30px;
    white-space: wrap;
  }
  .fv-copy p {
    width: 80%;
  }
}
@media (max-width: 400px) {
  .fv-copy h2 {
    font-size: 25px;
  }
}

.service {
  padding: 110px 0 140px;
}
@media (max-width: 768px) {
  .service {
    padding: 100px 0;
  }
}
.service .item {
  width: 46%;
}
@media (max-width: 768px) {
  .service .item {
    width: 100%;
  }
  .service .item:nth-child(n+2) {
    margin-top: 80px;
  }
}
.service .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.service .wrap .item img {
  display: block;
  width: 100%;
  max-height: 300px;
}
.service .wrap .item .num {
  margin-top: 20px;
}
.service .wrap .item h3 {
  margin: 10px 0 20px;
}

.concept-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}

.concept-img {
  width: 60%;
  max-width: 400px;
}
@media (max-width: 768px) {
  .concept-img {
    width: 100%;
  }
}

.concept-content {
  width: 40%;
  max-width: 400px;
  padding: 40px;
}
@media (max-width: 768px) {
  .concept-content {
    margin-top: 0;
    width: 100%;
  }
}

.room-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.room-block:nth-of-type(odd) {
  flex-direction: row-reverse;
}
.room-block:nth-of-type(n+2) {
  margin-top: 120px;
}
@media (max-width: 768px) {
  .room-block:nth-of-type(n+2) {
    margin-top: 80px;
  }
}

.room-img {
  width: 50%;
}
.room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .room-img {
    width: 100%;
  }
}

.room-info {
  width: 45%;
}
@media (max-width: 768px) {
  .room-info {
    margin-top: 20px;
    width: 100%;
  }
}

.room-name {
  line-height: 2;
  text-decoration: underline;
  text-underline-offset: 10px;
}

.room-price {
  margin: 20px 0 40px;
}
@media (max-width: 768px) {
  .room-price {
    margin: 10px 0 20px;
  }
}

.flow_list {
  display: table;
  margin: 0 auto;
}
.flow_list li {
  color: #ffffff;
  font-size: 18px;
}
.flow_list li:nth-child(n+2) {
  margin-top: 20px;
}

.company {
  width: 100%;
}
.company dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  padding: 40px 35px;
  border-bottom: 1px solid #CCCCCC;
}
.company dl:last-child {
  border-bottom: none;
}
@media (max-width: 768px) {
  .company dl {
    justify-content: space-between;
    padding: 30px 0;
  }
}
.company dl dt {
  padding-right: 20px;
  width: 300px;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .company dl dt {
    width: auto;
    min-width: 130px;
  }
}
.company dl dd {
  padding-left: 20px;
  text-align: right;
}
.company dl dd span {
  display: inline-block;
}
@media (max-width: 768px) {
  .company dl dd span {
    display: none;
  }
}

.voice-block {
  position: relative;
  margin: 0 auto;
  padding: 50px 50px 50px 80px;
  width: 90%;
  max-width: 800px;
  border-radius: 50px;
}
.voice-block:nth-child(n+2) {
  margin-top: 120px;
}
.voice-block:nth-child(even) {
  padding: 50px 80px 50px 50px;
}
.voice-block:nth-child(even) .voice-info {
  left: auto;
  right: -50px !important;
}
@media (max-width: 768px) {
  .voice-block {
    padding: 30px 30px 30px 50px;
    width: 80%;
  }
  .voice-block:nth-child(even) {
    padding: 30px 30px 30px 30px;
  }
}

.voice-info {
  position: absolute;
  left: -50px;
  bottom: -50px;
  display: table;
}
.voice-info img {
  width: 100px;
}
.voice-info p {
  font-size: 12px;
}
@media (max-width: 768px) {
  .voice-info {
    left: -30px;
  }
  .voice-info img {
    width: 80px;
  }
}

.access-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.access-block iframe {
  max-height: 300px;
  width: 50%;
}
@media (max-width: 768px) {
  .access-block iframe {
    width: 100%;
  }
}

.access-info {
  width: 45%;
}
.access-info ul {
  padding-left: 20px;
}
.access-info li {
  list-style: disc;
}
@media (max-width: 768px) {
  .access-info {
    margin-top: 20px;
    width: 100%;
  }
}

.footer_wrap {
  padding: 80px 0;
}
.footer_tel p {
  letter-spacing: 1px;
  color: #000000;
  font-size: 24px;
}

.footer_contain {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}

.footer-logo img {
  display: block;
  width: 160px;
}
.footer-logo p {
  margin-top: 20px;
}
.footer-logo p span {
  display: inline-block;
}

.footer-info a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .footer-info a {
    margin-top: 20px;
  }
}
.footer-info a img {
  display: block;
  margin: 5px 10px 0 0;
  height: 30px;
}
.footer-info a p {
  letter-spacing: 1px;
  color: black;
  font-size: 24px;
}

.footer-sns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.footer-sns img {
  margin: 0 10px;
}