@charset "UTF-8";
/*------------------------------------------
  Responsive Grid Media Queries
--------------------------------------------*/
/*===========================
  Mixin
===========================*/
/*===========================
  Common CSS 
=========================== */
*,
*:before,
*:after {
  box-sizing: inherit;
}

*::-moz-selection {
  color: #f5f5f5;
  background-color: #E5E0CA;
}

*::selection {
  color: #f5f5f5;
  background-color: #E5E0CA;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
}

:root {
  --font-jp: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  --font-en: "temeraire", serif;
  --base-font-size: 1.4em;
}

body {
  font-family: var(--font-jp);
  color: #000000;
  font-size: var(--base-font-size);
  line-height: 1.6;
  overflow-x: hidden;
  word-break: break-word;
  -webkit-font-smoothing: antialiased;
}

.en {
  font-family: var(--font-en);
  letter-spacing: 0.03em;
}

.jp {
  font-family: var(--font-jp);
}

main {
  overflow: hidden;
}

.pc_only {
  display: block !important;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .pc_only {
    display: none !important;
  }
}

.sp_only {
  display: none !important;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .sp_only {
    display: block !important;
  }
}

img {
  max-width: 100%;
}

a,
button,
input,
textarea {
  transition: all 0.3s ease-out 0s;
}

a,
a:focus,
input:focus,
textarea:focus,
button:focus,
.navbar-toggler:focus {
  text-decoration: none;
  outline: none;
  box-shadow: none;
}

a:focus,
a:hover {
  text-decoration: none;
}

section {
  margin: 0;
  padding: 20rem 0 0;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  section {
    padding: 10rem 0 0;
  }
}

.section__ttl {
  font-weight: 400;
  text-align: center;
  transform: scale(0.7, 1);
  font-size: 3rem;
}

.br__sp {
  display: block;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .br__sp {
    display: none;
  }
}

@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .sp__br br {
    display: none;
  }
}

/* 全て共通：hideエリアをはじめは非表示 */
.hide-area {
  display: none;
}

/* モーダルボタンの色変更 */
.modaal-close:after,
.modaal-close:before {
  background: #ccc;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #666;
}

/* 確認を促すモーダルタイトル */
#modaal-title {
  font-size: 1.2rem;
  text-align: center;
  margin: 0 0 20px 0;
}

.alphabetical {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.prefix {
  transform: translateY(-50%);
}

.grid {
  display: grid;
  grid-template-rows: 100px 50px;
  grid-template-columns: 150px 1fr;
}

/*　フォードイン　*/
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

/*//////////// 

ナビ 

////////////*/
header {
  height: 4rem;
  width: 100%;
  position: fixed;
  z-index: 200;
  background-color: #ffffff;
  padding: 4rem 0;
  opacity: 0.8;
}
@media only screen and (max-width: 480px) {
  header {
    padding: 3rem 0;
  }
}

#nav-container .nav-bar {
  width: 100%;
  position: fixed;
  margin: -2rem 0 0 0rem;
  z-index: 100;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  #nav-container .nav-bar {
    margin: -1rem 0 0 0;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  #nav-container .nav-bar {
    display: none !important;
  }
}
#nav-container .nav-bar ul {
  display: flex;
  padding-right: 4rem;
  margin-right: auto;
  margin-left: auto;
  align-items: center;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  #nav-container .nav-bar ul {
    padding-right: 0;
  }
}
#nav-container .nav-bar li a {
  text-decoration: none;
  color: #000000;
}
#nav-container .nav-bar li:nth-child(2) {
  margin: 0 0 0 2rem;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  #nav-container .nav-bar li:nth-child(2) {
    margin: 0 0 0 0.6rem;
  }
}
#nav-container .nav-bar li:nth-child(3) {
  margin: 0 2rem 0 0;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  #nav-container .nav-bar li:nth-child(3) {
    margin: 0 0.6rem 0 0;
  }
}
#nav-container .nav-bar .list-items {
  margin: 0 2rem;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  #nav-container .nav-bar .list-items {
    margin: 0 0.5rem;
  }
}
#nav-container .nav-bar .for-rent {
  margin: 0 10px;
  background-color: #E5E0CA;
}
#nav-container .nav-bar .hamburger {
  display: none;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  #nav-container .nav-bar .hamburger {
    display: block;
    position: fixed;
    top: 8px;
    right: 1rem;
    width: 2rem;
    height: 3rem;
    padding: 20px;
    cursor: pointer;
    z-index: 300;
  }
}
#nav-container .nav-bar .nav-menu {
  display: flex;
  list-style: none;
  justify-content: flex-end;
}
#nav-container .nav-bar .nav-menu .list-items {
  display: block;
  text-decoration: none;
  color: #000000;
}
#nav-container .nav-bar .nav-menu li a {
  position: relative;
}
#nav-container .nav-bar .nav-menu .nav-contact a {
  color: #E5E0CA;
}
#nav-container .hamburger {
  position: relative;
  width: 46px;
  height: 46px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 99;
  float: right;
  display: none;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  #nav-container .hamburger {
    display: block;
    position: fixed;
    top: 1rem;
    right: 1rem;
    width: 2rem;
    height: 3rem;
    cursor: pointer;
    z-index: 300;
  }
}

.global-nav {
  display: none;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .global-nav {
    display: block;
    position: fixed;
    right: -3000px;
    top: 0;
    width: 100%;
    height: 100vh;
    padding-top: 8rem;
    background-color: #000000;
    transition: all 0.5s;
    overflow-y: auto;
  }
}
.global-nav .global-nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--font);
}

.global-nav-item {
  text-align: center;
  padding: 0 14px;
}
.global-nav-item a {
  width: 80%;
  margin: 0 auto;
  display: block;
  padding: 1rem 0;
  text-decoration: none;
  color: #ffffff;
}
.global-nav-item a:hover {
  color: #000000;
}

.hamburger-line {
  position: absolute;
  width: 3rem;
  height: 2px;
  right: 0;
  margin: 1rem 1rem;
  background-color: #000000;
  transition: all 0.5s;
}

.hamburger-line-1 {
  top: 0.7rem;
}

.hamburger-line-3 {
  top: 1.3rem;
}

/* gloval nav */
.nav-open .global-nav {
  right: 0;
}
.nav-open .hamburger-line-1 {
  transform: rotate(45deg);
  top: 16px;
  background-color: #000000;
  z-index: 999;
}
.nav-open .hamburger-line-2 {
  width: 0;
  left: 150%;
}
.nav-open .hamburger-line-3 {
  transform: rotate(-45deg);
  top: 16px;
  background-color: #000000;
  z-index: 999;
}

/* navigation logo */
.navigation-logo {
  position: fixed;
  width: 8%;
  top: 3rem;
  left: 5rem;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .navigation-logo {
    width: 20%;
    left: 1rem;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  .navigation-logo {
    left: 1rem;
    top: 1.5rem;
    width: 25%;
  }
}
@media only screen and (max-width: 480px) {
  .navigation-logo {
    top: 2rem;
    left: 1rem;
    width: 30%;
  }
}
.navigation-logo a {
  fill: #000;
  display: block;
}

@media screen and (max-width: 1200px) {
  .nav-bar ul {
    font-size: 14px;
  }
}
@media screen and (max-width: 1080px) {
  .pc-navlogo-only {
    display: none;
  }
}
.nav-menu li a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 10%;
  width: 80%;
  height: 1px;
  background: #666;
  transition: all 0.3s;
  transform: scale(0, 1);
  transform-origin: center top;
}

.nav-menu li.list-item a::after,
.nav-menu li a:hover::after {
  transform: scale(1, 1);
}

_::-webkit-full-page-media,
_:future,
:root .nav-bar {
  top: 3rem;
}

/*//////////// 

トップイメージ

////////////*/
.mainImg {
  width: 100%;
}
@media only screen and (min-width: 769px) and (max-width: 1024px), only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .mainImg {
    padding-top: 10rem;
  }
}
.mainImg h2 {
  font-weight: normal;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}
@media only screen and (min-width: 769px) and (max-width: 1024px), only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .mainImg h2 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
.mainImg h2 .mainimg__caption {
  width: 100%;
  padding: 5rem 0 3rem 10rem;
  line-height: 1.5;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .mainImg h2 .mainimg__caption {
    padding: 2rem;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  .mainImg h2 .mainimg__caption {
    padding: 1rem;
    line-height: 1.1;
  }
}
@media only screen and (max-width: 480px) {
  .mainImg h2 .mainimg__caption {
    padding: 1rem;
  }
}
.mainImg h2 .mainimg__caption .subTxt {
  font-weight: bold;
}
@media only screen and (max-width: 480px) {
  .mainImg h2 .mainimg__caption .subTxt {
    font-size: 1.2rem;
  }
}
.mainImg h2 .mainimg__caption .mainTxt {
  font-size: 5rem;
}
@media only screen and (min-width: 769px) and (max-width: 1024px), only screen and (min-width: 481px) and (max-width: 768px) {
  .mainImg h2 .mainimg__caption .mainTxt {
    font-size: 4rem;
  }
}
@media only screen and (max-width: 480px) {
  .mainImg h2 .mainimg__caption .mainTxt {
    font-size: 2.5rem;
    line-height: 1;
  }
}
.mainImg h2 .mainimg__subcaption {
  width: 33%;
  padding: 6rem 4rem 4rem;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .mainImg h2 .mainimg__subcaption {
    width: 80%;
    padding: 2rem;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .mainImg h2 .mainimg__subcaption {
    width: 100%;
    padding: 1rem;
  }
}
.mainImg h2 .mainimg__subcaption .mainimg__campaign {
  font-size: 3rem;
  line-height: 1.3;
  font-weight: bold;
}
.mainImg h2 .mainimg__subcaption .mainimg__campaign .f-red {
  color: #D63B3B;
  background-color: #E5E0CA;
}
.mainImg h2 .mainimg__subcaption .mainimg__campaign .f-gray {
  color: #4a4a4a;
  background-color: #E5E0CA;
}
.mainImg h2 .mainimg__subcaption .mainimg__subtxt {
  font-size: 1rem;
}
.mainImg .main__img {
  width: 100%;
  text-align: center;
  position: relative;
}
.mainImg .main__img .mainimg__logo {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 0 3rem 2rem 0;
  width: auto;
  color: #ffffff;
  font-weight: bold;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .mainImg .main__img .mainimg__logo {
    right: -10rem;
    padding: 0 12rem 1rem 0;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .mainImg .main__img .mainimg__logo {
    padding: 0 1rem 1rem 0;
  }
}
.mainImg .main__img .mainimg__logo img {
  width: 60%;
  height: auto;
  display: block;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .mainImg .main__img .mainimg__logo img {
    width: 100px;
  }
}

/*//////////// 

コンセプト   

////////////*/
.concept {
  position: relative;
  margin-top: 10rem;
  padding: 15rem 0;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .concept {
    margin-top: 20rem;
  }
}
.concept .concept__wrap {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  color: #fff;
  z-index: 2;
  position: relative;
}
@media only screen and (min-width: 769px) and (max-width: 1024px), only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .concept .concept__wrap {
    padding: 1rem;
    max-width: 90%;
  }
}
.concept .concept__wrap .concept__catch {
  font-size: 3.3rem;
  line-height: 1;
  margin-bottom: 5rem;
  font-weight: normal;
}
@media only screen and (max-width: 480px) {
  .concept .concept__wrap .concept__catch {
    font-size: 3rem;
  }
}
.concept .concept__wrap .concept__catch span {
  font-size: 1.8rem;
  font-weight: bold;
}
@media only screen and (max-width: 480px) {
  .concept .concept__wrap .concept__catch span {
    font-size: 1.4rem;
  }
}
.concept .concept__wrap .concept__txt {
  line-height: 2;
  padding-top: 1rem;
  font-weight: bold;
}
@media only screen and (max-width: 480px) {
  .concept .concept__wrap .concept__txt {
    font-size: 1.2rem;
  }
}
.concept .concept__bk {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
.concept .concept__bk video, .concept .concept__bk img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.concept .concept__bk video {
  display: block;
  filter: brightness(0.3);
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .concept .concept__bk video {
    display: none;
  }
}
.concept .concept__bk img {
  display: none;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .concept .concept__bk img {
    display: block;
  }
}

/*//////////// 

プラン

////////////*/
.plan {
  position: relative;
  margin-top: 10rem;
  padding: 10rem 0;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .plan {
    padding: 0 2rem;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .plan {
    margin-top: 0;
    padding: 20rem 0 0;
  }
}
.plan .plan__mainimg {
  position: relative;
  margin: 0 auto;
  max-width: 1920px;
  width: 100%;
  padding: 0 10rem;
  text-align: center;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .plan .plan__mainimg {
    padding: 0;
  }
}
.plan .plan__mainimg img {
  width: 100%;
  height: auto;
  display: inline-block;
}
.plan .plan__mainimg .plan__shopcaption {
  color: #fff;
  position: absolute;
  bottom: 1rem;
  right: 10rem;
  padding: 0.5rem 1rem;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .plan .plan__mainimg .plan__shopcaption {
    font-size: 0.7rem;
    padding: 0.3rem 0.5rem;
    right: 1rem;
  }
}
.plan .plan__wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 auto;
  max-width: 1280px;
  width: 100%;
  padding: 10rem 0 0 10rem;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .plan .plan__wrap {
    padding: 10rem 2rem;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .plan .plan__wrap {
    flex-direction: column;
    padding: 15rem 1rem 0;
    gap: 3rem;
  }
}
.plan .plan__wrap .plan__ttl {
  font-size: 4rem;
  font-weight: normal;
  flex: 0 0 30%;
  line-height: 0.7;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .plan .plan__wrap .plan__ttl {
    width: 100%;
    text-align: center;
  }
}
.plan .plan__wrap .plan__ttl .plan__subttl {
  font-weight: bold;
  font-size: 1.5rem;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .plan .plan__wrap .plan__ttl .plan__subttl {
    font-size: 1.3rem;
  }
}
.plan .plan__wrap .plan__txt {
  padding-top: 3rem;
}
.plan .plan__wrap .plan__floortxt__wrap {
  flex: 0 0 60%;
  line-height: 3;
  font-size: 0.7rem;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .plan .plan__wrap .plan__floortxt__wrap {
    padding: 0;
    font-size: 0.9rem;
    line-height: 2;
  }
}
.plan .plan__wrap .plan__floortxt__wrap .plan__subttl {
  font-weight: bold;
  font-size: 0.8rem;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .plan .plan__wrap .plan__floortxt__wrap .plan__subttl {
    font-size: 1rem;
  }
}
.plan .plan__wrap .plan__floortxt__wrap .plan__desc {
  margin-top: 1.5rem;
}
.plan .plan__wrap .plan__floorguide__txt .plan__floorguide__ttl {
  font-size: 1.2rem;
  letter-spacing: 1px;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .plan .plan__wrap .plan__floorguide__txt .plan__floorguide__ttl {
    font-size: 1rem;
  }
}
.plan .plan__wrap .plan__floorguide__txt .plan__floorguide__txt {
  font-size: 0.7rem;
  margin-top: 1.5rem;
  line-height: 3;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .plan .plan__wrap .plan__floorguide__txt .plan__floorguide__txt {
    font-size: 0.9rem;
    line-height: 2;
  }
}
.plan .plan__wrap .plan__floorguide__img {
  flex: 0 0 60%;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .plan .plan__wrap .plan__floorguide__img {
    flex: 0 0 100%;
  }
}
.plan .plan__wrap .plan__floorguide__img img {
  width: 100%;
  height: auto;
  display: block;
}
.plan .cp__ban {
  margin: 10rem auto 0rem;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .plan .cp__ban {
    margin: 0;
  }
}
.plan .cp__ban img {
  width: 40%;
  margin: 0 auto;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .plan .cp__ban img {
    width: 90%;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .plan .cp__ban img {
    width: 100%;
    padding: 0 1rem;
    margin-top: 20rem;
  }
}
.plan .plan__planimg {
  width: 100%;
  margin-top: 10rem;
}
.plan .plan__planimg img {
  width: 100%;
  height: auto;
  max-height: 25rem;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .plan .plan__planimg img {
    max-height: 15rem;
  }
}
.plan .plan__sh-of__plan {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .plan .plan__sh-of__plan {
    padding: 15rem 1rem 0;
  }
}
.plan .plan__sh-of__plan .plan__sh-of__desc {
  padding: 10rem 10rem 0;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .plan .plan__sh-of__plan .plan__sh-of__desc {
    padding: 10rem 2rem;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .plan .plan__sh-of__plan .plan__sh-of__desc {
    padding: 0;
  }
}
.plan .plan__sh-of__plan .plan__sh-of__desc .plan__ttl {
  font-size: 4rem;
  font-weight: normal;
  line-height: 0.7;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .plan .plan__sh-of__plan .plan__sh-of__desc .plan__ttl {
    text-align: center;
  }
}
.plan .plan__sh-of__plan .plan__sh-of__desc .plan__subttl {
  font-size: 1.5rem;
  font-weight: bold;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .plan .plan__sh-of__plan .plan__sh-of__desc .plan__subttl {
    font-size: 1.3rem;
  }
}
.plan .plan__sh-of__plan .plan__txt {
  margin-top: 2rem;
  line-height: 2;
  font-size: 1.4rem;
  font-weight: normal;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .plan .plan__sh-of__plan .plan__txt {
    line-height: 1.8;
    margin-top: 3rem;
  }
}
.plan .plan__sh-of__plan .plan__zumen {
  margin-top: 3rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .plan .plan__sh-of__plan .plan__zumen {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
}
.plan .plan__sh-of__plan .plan__zumen img {
  max-width: 100%;
  width: 40%;
  padding: 2rem;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .plan .plan__sh-of__plan .plan__zumen img {
    width: 100%;
  }
}
.plan .plan__table {
  width: 100%;
  max-width: 1240px;
  margin: 5rem auto 0;
  text-align: center;
  padding: 0 10rem;
  font-family: var(--jpfont);
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .plan .plan__table {
    padding: 0 2rem;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .plan .plan__table {
    margin: 0;
    padding: 15rem 1rem 0;
  }
}
.plan .plan__table .cp__txt {
  font-size: 2rem;
  font-weight: bold;
  color: #D63B3B;
  text-align: left;
  padding: 1rem 0;
}
.plan .plan__table .plan__table__inner table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.plan .plan__table .plan__table__inner table tr {
  border-top: 2px solid #311C0D;
  border-bottom: 2px solid #311C0D;
  font-weight: bold;
}
.plan .plan__table .plan__table__inner table th,
.plan .plan__table .plan__table__inner table td {
  padding: 1.5rem 0;
  border-bottom: 2px solid #311C0D;
  border-left: none;
  border-right: none;
}
.plan .plan__table .plan__table__inner table th {
  background-color: #311C0D;
  color: #ffffff;
}
.plan .plan__table .plan__table__inner table td {
  font-size: 3rem;
  line-height: 1;
}
.plan .plan__table .plan__table__inner table td span {
  font-size: 2rem;
}
@media (max-width: 768px) {
  .plan .plan__table .plan__table__inner table {
    padding: 0;
  }
  .plan .plan__table .plan__table__inner table table, .plan .plan__table .plan__table__inner table thead, .plan .plan__table .plan__table__inner table tbody, .plan .plan__table .plan__table__inner table th, .plan .plan__table .plan__table__inner table td, .plan .plan__table .plan__table__inner table tr {
    display: block;
  }
  .plan .plan__table .plan__table__inner table thead tr {
    display: none;
  }
  .plan .plan__table .plan__table__inner table tr {
    padding: 1rem;
    border-top: 2px solid #ffffff;
    background-color: #311C0D;
    color: #ffffff;
  }
  .plan .plan__table .plan__table__inner table tr.sp-hide-area {
    display: none;
  }
  .plan .plan__table .plan__table__inner table th {
    display: none;
  }
  .plan .plan__table .plan__table__inner table td {
    padding: 0.5rem 1rem;
    text-align: center;
    font-size: 1.5rem;
    border: none;
    position: relative;
  }
}
@media only screen and (max-width: 768px) and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 768px) and (max-width: 480px) {
  .plan .plan__table .plan__table__inner table td {
    font-size: 2.5rem;
    padding: 1rem;
  }
  .plan .plan__table .plan__table__inner table td:first-of-type {
    background-color: #ffffff;
    color: #311C0D;
    padding: 2rem;
  }
}
@media (max-width: 768px) {
  .plan .plan__table .plan__table__inner table td::before {
    content: attr(data-label);
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
    color: #311C0D;
    white-space: nowrap;
  }
}
.plan .plan__table .plan__setubi {
  text-align: left;
  padding-top: 2rem;
}
.plan .plan__table .plan__setubi__yoryo {
  text-align: left;
  padding-top: 2rem;
}
.plan .plan__table .plan__setubi__yoryo .setubiyoryo__ttl {
  border: 1px solid #311C0D;
  padding: 0.2rem;
  margin: 0.5rem 0;
  max-width: 70px;
  text-align: center;
}
.plan .plan__table .plan__setubi__yoryo .setubiyoryo__desc span {
  color: #999999;
  font-size: 1rem;
  line-height: 5;
}

.buttons {
  display: flex;
  gap: 5rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.buttons .btn-outline,
.buttons a.btn-contact {
  font-size: 1.6rem;
  flex: 1;
  max-width: 450px;
  width: 100%;
  text-align: center;
  padding: 0.75rem 1rem;
  color: #311C0D;
  border: 1px solid #311C0D;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: bold;
  cursor: pointer;
}
@media only screen and (max-width: 480px), only screen and (min-width: 481px) and (max-width: 768px) {
  .buttons .btn-outline,
  .buttons a.btn-contact {
    max-width: 900px;
  }
}
.buttons .btn-outline:hover,
.buttons a.btn-contact:hover {
  background-color: #311C0D;
  color: #fff;
}
.buttons a.btn-outline {
  background-color: #FDFCEF;
}
.buttons a.btn-contact {
  background-color: #EBE8D5;
}
@media only screen and (max-width: 480px), only screen and (min-width: 481px) and (max-width: 768px) {
  .buttons {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 0 2rem;
  }
  .buttons a.btn-outline,
  .buttons a.btn-contact {
    max-width: 100%;
  }
}

/*//////////// 

アクセス

////////////*/
.access {
  position: relative;
  margin-top: 10rem;
  padding: 10rem;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .access {
    padding: 10rem 2rem;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .access {
    margin-top: 5rem;
    padding: 30rem 1rem 15rem;
  }
}
.access .access__ttl__wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1024px;
  margin: 0 auto;
  gap: 2rem;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .access .access__ttl__wrap {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.access .access__ttl__wrap .access__ttl__desc {
  flex: 1 1 35%;
  padding: 0;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .access .access__ttl__wrap .access__ttl__desc {
    flex: 1 1 100%;
  }
}
.access .access__ttl__wrap .access__ttl__desc .access__ttl {
  font-size: 4rem;
  font-weight: normal;
  line-height: 0.7;
}
.access .access__ttl__wrap .access__ttl__desc .access__ttl .access__subttl {
  font-size: 1.5rem;
  font-weight: bold;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .access .access__ttl__wrap .access__ttl__desc .access__ttl .access__subttl {
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .access .access__ttl__wrap .access__map__wrap {
    margin: 0 auto;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .access .access__ttl__wrap .access__map__wrap {
    align-items: center;
    flex: 1 1 100%;
  }
}
.access .access__ttl__wrap .access__map__wrap .access__map {
  width: 100%;
  max-width: 500px;
}
.access .access__ttl__wrap .access__map__wrap .access__map img {
  max-width: 100%;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.access .access__ttl__wrap .access__map__wrap .access__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .access .access__ttl__wrap .access__map__wrap .access__info {
    align-items: center;
    text-align: center;
  }
}
.access .access__ttl__wrap .access__map__wrap .access__info .access__address a {
  color: #000;
  text-decoration: underline;
}
.access .access__ttl__wrap .access__map__wrap .access__info .access__transport {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .access .access__ttl__wrap .access__map__wrap .access__info .access__transport {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.access .access__ttl__wrap .access__map__wrap .access__info .access__transport .access__transport-ttl {
  font-weight: bold;
  white-space: nowrap;
}
.access .access__ttl__wrap .access__map__wrap .access__info .access__transport .access__transport-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.access .access__ttl__wrap .access__map__wrap .access__info .access__transport .access__transport-list li {
  white-space: nowrap;
}

.swiper-container {
  width: 100%;
  max-width: 100vw;
}

.swiper-slide {
  width: 100%;
}

.swiper-slide img {
  width: 100%;
  height: 500px;
  margin-top: 5rem;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

@media only screen and (max-width: 480px), only screen and (min-width: 481px) and (max-width: 768px), only screen and (min-width: 769px) and (max-width: 1024px) {
  .swiper-wrapper .swiper-slide {
    min-width: 60%;
  }
  .swiper-slide img {
    height: auto;
  }
}
:root {
  --swiper-navigation-color: #000000;
  --swiper-pagination-color: #ffffff;
  --swiper-pagination-bullet-size: 12px;
  --swiper-pagination-bullet-width: 12px;
  --swiper-pagination-bullet-height: 12px;
}

.swiper-container .swiper-wrapper {
  transition-timing-function: linear !important;
}

/*/////////// / 

物件概要

////////////*/
.outline {
  position: relative;
  margin-top: 10rem;
  padding: 10rem;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .outline {
    padding: 0 2rem;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .outline {
    padding: 15rem 1rem;
  }
}
.outline .outline__ttl__wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1024px;
  margin: 0 auto;
  gap: 2rem;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .outline .outline__ttl__wrap {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.outline .outline__ttl__wrap .outline__ttl__desc {
  flex: 1 1 35%;
  padding: 0;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .outline .outline__ttl__wrap .outline__ttl__desc {
    flex: 1 1 100%;
  }
}
.outline .outline__ttl__wrap .outline__ttl__desc .outline__ttl {
  font-size: 4rem;
  font-weight: normal;
  line-height: 0.7;
}
.outline .outline__ttl__wrap .outline__ttl__desc .outline__ttl .outline__subttl {
  font-size: 1.5rem;
  font-weight: bold;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .outline .outline__ttl__wrap .outline__ttl__desc .outline__ttl .outline__subttl {
    font-size: 1.3rem;
  }
}
.outline .outline__ttl__wrap .outline__tabel_wrap {
  flex: 1 1 60%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .outline .outline__ttl__wrap .outline__tabel_wrap {
    align-items: center;
    flex: 1 1 100%;
    text-align: left;
  }
}
.outline .outline__ttl__wrap .outline__tabel_wrap .table-noborder {
  border-collapse: collapse;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
.outline .outline__ttl__wrap .outline__tabel_wrap .table-noborder td {
  border: none;
  padding: 1rem;
  vertical-align: top;
  line-height: 1.5;
}
.outline .outline__ttl__wrap .outline__tabel_wrap .table-noborder tr td:first-child {
  padding-right: 1rem;
  white-space: normal;
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  color: #ffffff;
}
.modal .modal-box {
  background-color: #4a4a4a;
  margin: 10% auto;
  max-width: 1040px;
  width: 90%;
  animation-name: modalopen;
  animation-duration: 1s;
  position: relative;
}
.modal .modal-box .modal__wrap {
  position: relative;
  padding: 3rem;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .modal .modal-box .modal__wrap .modal__ttl__wrap {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.modal .modal-box .modal__wrap .modal__ttl__wrap .modal__ttl__desc {
  flex: 1 1 35%;
  padding: 0;
  margin-top: 1.5rem;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .modal .modal-box .modal__wrap .modal__ttl__wrap .modal__ttl__desc {
    flex: 1 1 100%;
  }
}
.modal .modal-box .modal__wrap .modal__ttl__wrap .modal__ttl__desc .modal__ttl {
  font-size: 4rem;
  font-weight: normal;
  line-height: 0.7;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .modal .modal-box .modal__wrap .modal__ttl__wrap .modal__ttl__desc .modal__ttl {
    font-size: 3rem;
    line-height: 0.8;
  }
}
.modal .modal-box .modal__wrap .modal__ttl__wrap .modal__ttl__desc .modal__ttl .modal__subttl {
  font-size: 1.5rem;
  font-weight: bold;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .modal .modal-box .modal__wrap .modal__ttl__wrap .modal__ttl__desc .modal__ttl .modal__subttl {
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .modal .modal-box .modal__tabel_wrap {
    padding-top: 2rem;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .modal .modal-box .modal__tabel_wrap {
    align-items: center;
    flex: 1 1 100%;
    padding-top: 2rem;
  }
}
.modal .modal-box .modal__tabel_wrap table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.modal .modal-box .modal__tabel_wrap table tr {
  border: none;
  font-weight: normal;
}
.modal .modal-box .modal__tabel_wrap table th,
.modal .modal-box .modal__tabel_wrap table td {
  padding: 0.5rem;
  border: none;
}
.modal .modal-box .modal__tabel_wrap table th {
  background: #414141;
  color: #ffffff;
}
.modal .modal-box .modal__tabel_wrap table td span {
  font-size: 0.8rem;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .modal .modal-box .modal__tabel_wrap table thead tr {
    display: none;
  }
  .modal .modal-box .modal__tabel_wrap table td {
    padding: 0.2rem;
    font-size: 1rem;
    text-align: left;
    border: none;
    position: relative;
  }
  .modal .modal-box .modal__tabel_wrap table td::before {
    content: attr(data-label);
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
    color: #311C0D;
    white-space: nowrap;
  }
}
.modal .modal-box .modalClose {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  padding: 8px 16px;
  color: #ffffff;
  cursor: pointer;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-size: 2rem;
  font-weight: 600;
  background: none;
  border: none;
  box-shadow: none;
  outline: none;
}

select {
  background-color: transparent;
}

select:focus {
  outline: none;
}

select:focus-visible {
  outline: none;
}

select:-webkit-autofill {
  background-color: transparent !important;
}

.contact {
  position: relative;
  margin-top: 10rem;
  padding: 10rem;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .contact {
    padding: 0 2rem;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .contact {
    padding: 15rem 3rem 20rem;
  }
}
.contact .contact__ttl__wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  max-width: 1024px;
  margin: 0 auto;
  gap: 5rem;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .contact .contact__ttl__wrap {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.contact .contact__inner__l {
  width: 100%;
  max-width: 400px;
}
.contact .contact__inner__l .contact__ttl__desc {
  flex: 1 1 35%;
  padding: 0;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .contact .contact__inner__l .contact__ttl__desc {
    flex: 1 1 100%;
  }
}
.contact .contact__inner__l .contact__ttl__desc .contact__ttl {
  font-size: 4rem;
  font-weight: normal;
  line-height: 0.7;
}
.contact .contact__inner__l .contact__ttl__desc .contact__subttl {
  font-size: 1.5rem;
  font-weight: bold;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .contact .contact__inner__l .contact__ttl__desc .contact__subttl {
    font-size: 1.3rem;
  }
}
.contact .contact__inner__l .contact__txt {
  margin-top: 5rem;
  line-height: 3rem;
  max-width: 280px;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .contact .contact__inner__l .contact__txt {
    max-width: 100%;
  }
}
.contact .contact__inner__r {
  width: 100%;
  max-width: 1200px;
}
.contact .contact__inner__r .smp_tmpl {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
}
.contact .contact__inner__r .cf {
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.contact .contact__inner__r .cf dt.title {
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}
.contact .contact__inner__r .cf dt.privacy__title {
  font-weight: bold;
  letter-spacing: 0.05em;
}
.contact .contact__inner__r .cf .dataselect_area {
  color: white;
}
.contact .contact__inner__r .cf .need {
  font-weight: bold;
  font-size: 1rem;
  color: #D63B3B;
  letter-spacing: 0.1em;
}
.contact .contact__inner__r .cf dd.data {
  margin: 1rem 1rem 0 0;
  letter-spacing: 0.1em;
}
.contact .contact__inner__r .cf dd.data .textarea {
  width: 100%;
  height: 200px;
  color: white;
}
.contact .contact__inner__r .cf dd.data .input,
.contact .contact__inner__r .cf dd.data .textarea,
.contact .contact__inner__r .cf dd.data .select-tab,
.contact .contact__inner__r .cf dd.data .select-tab2 {
  width: 100%;
  border: none;
  color: #000;
}
.contact .contact__inner__r .cf dd.data .select {
  position: relative;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .contact .contact__inner__r .cf {
    flex-direction: column;
  }
  .contact .contact__inner__r .cf dt.title,
  .contact .contact__inner__r .cf dd.data {
    margin: 1rem auto;
  }
}
.contact .contact__inner__r .cf input:-internal-autofill-selected {
  color: white;
}
.contact .contact__inner__r .cf .input:focus {
  background: rgba(242, 243, 240, 0.649);
}
.contact .contact__inner__r .cf .multi2 {
  border-bottom: none;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
}
.contact .contact__inner__r .cf .multi2 ul {
  padding: 0;
}
.contact .contact__inner__r .cf .multi2 ul li {
  list-style-type: none;
}
.contact .contact__inner__r .cf .checkbox-label {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media only screen and (max-width: 480px) {
  .contact .contact__inner__r .cf .checkbox-label {
    display: flex;
    margin-top: 1rem;
  }
}
.contact .contact__inner__r .cf .checkbox-label .checkbox-input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 25px;
  height: 25px;
  background: #f5f5f5;
  border: 2px solid #000;
  margin-right: 10px;
  position: relative;
  transition: background 0.25s ease;
}
.contact .contact__inner__r .cf .checkbox-label .checkbox-input:checked::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 6px;
  width: 6px;
  height: 12px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(45deg);
}
.contact .contact__inner__r .cf .checkbox-label .checkbox-text {
  letter-spacing: 0.05em;
}
.contact .contact__inner__r .cf .nairankibo1 {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2rem;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .contact .contact__inner__r .cf .nairankibo1 {
    flex-direction: column;
    gap: 1rem;
  }
}
.contact .contact__inner__r .cf .nairankibo1 dd.data {
  flex: 1 1 30%;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .contact .contact__inner__r .cf .nairankibo1 dd.data {
    width: 100%;
  }
}
.contact .contact__inner__r .cf .nairankibo1 dd.data select {
  background: transparent;
  border: none;
  width: 100%;
}
.contact .contact__inner__r .cf .nairankibo1 dd.data select:focus {
  outline: none;
  border-color: #f5f5f5;
}
.contact .contact__inner__r .cf .nairankibo1 dd.data span.msg {
  display: block;
  margin-top: 0.5rem;
  color: red;
  font-size: 0.8rem;
}
.contact .contact__inner__r .bo__no {
  border-bottom: none;
}
.contact .contact__inner__r .submit {
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  letter-spacing: 0.05em;
  padding: 3px 70px;
  background: #ffffff;
  border: 2px solid #000;
  margin-top: 2rem;
  position: initial;
  transition: all 0.3s ease;
  font-weight: bold;
  font-size: 1.6rem;
  color: #000000;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .contact .contact__inner__r .submit {
    width: 100%;
  }
}
.contact .contact__inner__r .submit:hover {
  background: #E5E0CA;
  color: #000000;
  cursor: pointer;
}
.contact .bo-bottom {
  border-bottom: 1px solid #000;
}

.errorTxt {
  color: #D63B3B;
}

.thanks {
  padding: 20rem 10rem;
}
@media only screen and (max-width: 480px), only screen and (min-width: 481px) and (max-width: 768px) {
  .thanks {
    padding: 30rem 2rem;
  }
}
.thanks h2 {
  font-size: 5rem;
}
@media only screen and (max-width: 480px), only screen and (min-width: 481px) and (max-width: 768px) {
  .thanks h2 {
    font-size: 4rem;
  }
}
.thanks .thanks__txt {
  padding: 3rem 0;
}
.thanks .thanks__txt span {
  font-weight: bold;
}

#footer {
  margin: 40rem auto 0;
  padding: 10rem 2rem;
  background-color: #E4E2C9;
  position: relative;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  #footer {
    margin: 30rem auto 0;
    padding: 4rem 2rem;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  #footer {
    margin-top: 20rem;
    padding: 0;
  }
}
@media only screen and (max-width: 480px) {
  #footer {
    margin-top: 20rem;
    padding: 20rem 0 1rem;
  }
}
#footer .footer__wrap {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
  flex-wrap: wrap;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  #footer .footer__wrap {
    gap: 10rem;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  #footer .footer__wrap {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}
#footer .footer__wrap .footer__img {
  flex: 1 1 40%;
  position: relative;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  #footer .footer__wrap .footer__img {
    flex: 1 1 30%;
  }
}
@media only screen and (max-width: 480px) {
  #footer .footer__wrap .footer__img {
    position: absolute;
  }
}
#footer .footer__wrap .footer__img img {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  margin: 0 auto;
  position: absolute;
  bottom: -27rem;
  left: 18%;
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  #footer .footer__wrap .footer__img img {
    position: relative;
    bottom: 10rem;
    left: 0;
    max-width: 250px;
  }
}
@media only screen and (max-width: 480px) {
  #footer .footer__wrap .footer__img img {
    position: relative;
    bottom: 30rem;
    left: 0;
    max-width: 250px;
    margin-bottom: 2rem;
  }
}
#footer .footer__wrap .footer__nav__wrap {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  #footer .footer__wrap .footer__nav__wrap {
    align-items: center;
    flex: 1 1 100%;
    padding: 0 1rem;
    margin-top: -5rem;
  }
}
@media only screen and (max-width: 480px) {
  #footer .footer__wrap .footer__nav__wrap {
    align-items: center;
    flex: 1 1 100%;
    padding: 0 1rem;
    margin-top: 10rem;
  }
}
#footer .footer__wrap .footer__nav__wrap p {
  line-height: 1.8;
  font-size: 1rem;
}
#footer .footer__wrap .footer__nav__wrap p.footer__fram__mean {
  font-weight: bold;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  #footer .footer__wrap .footer__nav__wrap p.footer__fram__mean {
    width: 100%;
  }
}
#footer .footer__wrap .footer__nav__wrap p.footer__fram__emean {
  font-weight: bold;
}
#footer .footer__wrap .footer__nav__wrap p.footer__fram__address {
  margin-top: 5rem;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  #footer .footer__wrap .footer__nav__wrap p.footer__fram__address {
    width: 100%;
  }
}
#footer .footer__wrap .footer__nav__wrap p.copy {
  color: #333;
}
@media only screen and (max-width: 480px) {
  #footer .footer__wrap .footer__nav__wrap p.copy {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */