<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* common */
main {
  max-width: 1500px;
  margin: auto;
}

body {
  background-color: #ECE9E3;
  overflow-x: hidden;
  position: relative;
}

body.show {
  height: 100%;
  overflow: hidden;
}

body p {
  line-height: 1.5;
  font-size: 18px;
  color: #151515;
}

body h2 {
  font-size: 80px;
  color: #86784A;
  font-family: 'Cormorant Garamond', serif;
}

body h3 {
  font-size: 32px;
  padding: 20px 0px;
  font-family: 'Shippori Mincho', serif;
}

body ul {
  margin: 20px 0px;
  padding-left: 10px;
}

body li {
  list-style-type: disc;
  list-style-position: inside;
  line-height: 1.5;
  font-size: 18px;
  list-style-position: outside;
  margin: 0 10px;
}

section {
  padding: 100px 10%;
}

.caution {
  color: #4D4D4D;
  padding-top: 10px;
  font-size: 16px;
}

iframe {
  width: 100%;
}

.back-ground-text {
  position: absolute;
  z-index: -5;
  opacity: 0.07;
  font-size: 180px;
  margin-top: 7%;
  margin-left: -10%; 
}

.highlight {
  font-weight: bold;
  padding: 10px 0px;
}

.sp-image {
  display: none;
}

.button {
  text-align: center;
  padding: 50px 0;
}

.button img {
  width: 400px;
}

.center {
  text-align: center;
}

.sp {
  display: none;
}

@media (max-width: 900px) {
  main {
    max-width: 600px;
    margin: auto;
  }

  body h2 {
    font-size: 50px;
    padding-top: 100px;
  }

  body p {
    font-family: sans-serif;
    font-weight: 300;
    line-height: 2;
    font-size: 16px;
    color: #151515;
  }

  .store-link {
    display: flex !important;
    flex-wrap: wrap;
  }

  .store-link li {
    list-style-type: disc;
    list-style-position: outside;
    line-height: 1.5;
    font-size: 16px;
    width: 50px;
  }

  section {
    padding: 0px 5%;
  }

  .pc-image {
    display: none;
  }

  .sp-image {
    display: block;
  }

  .button {
    text-align: center;
    padding: 50px 0 0;
  }
  
  .button img {
    width: 300px;
  }

  .back-ground-text {
    display: none;
  }

  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  height: 80px;
  width: 100%;
  background-color: rgba(255,255,255,0.6);
  z-index: 5;
}

header nav{
  display: flex;
  justify-content: space-between;
}

header .logo {
  height: 60px;
  margin: 20px 40px 0px;
  z-index: 10;
}

header .header-button {
  display: flex;
  height: 60px;
  margin: 20px 40px 0px;
  z-index: 10;
}

header img{
  height: 40px;
  padding-right: 20px;
}

.global-menu-pc {
  width: 100%;
}

/* ��劻���若���若�＜���ャ�弱�茖� */

.openbtn{
	/*���帥�喝���眼���榊�鴻����������relative����絎���
菴遵����������蚊�若�激�с�潟���翫����fixed鐚�top��right�����ｃ��篏�臀����祉�����ф��絎�*/
	position: relative;
	cursor: pointer;
  width: 50px;
  height:50px;
	border-radius: 5px;
}

/*���帥�喝����*/
.openbtn span{
    display: inline-block;
    transition: all .4s;/*�≪���＜�若�激�с�潟��┃絎�*/
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	  background: #86784A;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:7px;	
}

.openbtn span:nth-of-type(2) {
	top:17px;
}

.openbtn span:nth-of-type(3) {
	top:27px;
}

/*active�����鴻��篁�筝��������������荵≪���γ���*/

.openbtn.active span:nth-of-type(1) {
    top: 13px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;/*����筝㏍��������*/
}

.openbtn.active span:nth-of-type(3){
    top: 25px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

.nav-menu {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s , visibility .5s;
  text-align: center;
}

.nav-menu.show {
  height: 103vh;
  opacity: 1;
  z-index: 0;
  visibility: visible;
  background-color: rgb(241 241 241 / 91%);
}

.nav-menu ul {
  margin: 10% 0;
  padding-left: 0;
  text-align: left;
  display: inline-block;
}

.nav-menu a {
  text-decoration: none;
  display: block;
}

.nav-menu li {
  list-style: none;
  padding: 10px;
  color: #151515;
  font-size: 24px;
  font-family: YuMincho;
}

.nav-menu li:hover {
  color: #86784A;
  transition: .5s;
  display: block;
}

@media (max-width: 900px) {
  header .logo {
    height: 60px;
    margin: 20px;
    z-index: 10;
  }

  header .header-button {
    margin: 20px 0px;
  }

  header .header-button img {
    width: 150px;
    height: auto;
  }

  .nav-menu ul {
    margin: 30% 0;
  }
}

/* Breadcrumb */
.breadcrumb {
  margin-top: 100px;
  margin-left: 35px;
  padding: 0;
  list-style: none;
}

.breadcrumb li {
  display: inline;
  list-style: none;
  font-weight: 500;
}

.breadcrumb li:after {
  content: '&gt;';
  padding: 0 0.2em;
  color: #555;
}

.breadcrumb li:last-child:after {
  content: '';
}

.breadcrumb li a {
  text-decoration: none;
  color: #555;
}

.breadcrumb li a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .breadcrumb {
    margin-left: 15px;
  }

  .breadcrumb li {
    font-size: 14px;
  }
}

/* Top */
.top {
  width: 100%;
  padding: 20px 0 80px 0;
}

.top .top-sp {
  display: none;
}

.top img {
  width: 100%;
}

@media (max-width: 900px) {
  .top {
    padding: 20px 0 0 0;
  }
  
  .top .top-pc {
    display: none;
  }

  .top .top-sp {
    display: block;
  }
}

/* campaign */
.campaign .campaign-wrapper-pc {
  display: flex;
  justify-content: space-between;
}

.campaign .campaign-image {
  width: 50%;
}

.campaign .campaign-text {
  width: 40%;
}

.campaign .campaign-image img {
  width: 125%;
  margin-left: -27%;
}

.campaign .campaign-text dd {
  margin-left: 1em;
  padding-bottom: 30px;
}

.campaign .campaign-text img {
  width: 100%;
}

.campaign .counseling {
  width: 100%;
}

.campaign .campaign-wrapper-sp {
  display: none;
}

.campaign .campaign-wrapper-sp .top-image {
  width: 112%;
  margin: 0px -6%;
}

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

  .campaign .campaign-wrapper-sp {
    display: block;
    width: 100%;
  }

  .campaign .campaign-wrapper-sp img {
    width: 100%;
    padding: 20px 0px;
  }
}

/* Concept */
.concept .concept-wrapper-pc {
  display: flex;
  justify-content: space-between;
  padding-bottom: 100px;
}

.concept .concept-wrapper-sp {
  display: none;
}

.concept .concept-text {
  width: 50%;
}

.concept .concept-text .highlight-red {
  font-size: 32px;
  font-family: YuMincho;
  color: #D54259;
  padding: 50px 0px 20px 0px;
}

.concept .concept-image {
  width: 50%;
  position: relative;
}

.concept .concept-image:before {
  padding-top: 100%;
}

.concept .concept-image .concept-image-1 {
  position: absolute;
  width: 107%;
  height: 500px;
  object-fit: cover;
  margin: 0px 19%;
  z-index: -2;
}

.concept .concept-image .concept-image-2 {
  width: 300px;
  height: 300px;
  position: absolute;
  z-index: -1;
  top: 80%;
  left: 5%;
  object-fit: cover;
}

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

  .concept .concept-wrapper-sp {
    display: block;
    position: relative;
  }

  .concept .concept-wrapper-sp .highlight-red {
    font-size: 32px;
    font-family: YuMincho;
    color: #D54259;
    padding: 30px 0px 20px 0px;
  }

  .concept .concept-wrapper-sp .concept-image-1-sp {
    width: 112%;
    margin: 0 -6%;
    padding-bottom: 50%;
  }

  .concept .concept-wrapper-sp .concept-image-2-sp {
    width: 50%;
    position: absolute;
    top: 450px;
    left: -6%;
  }
}

/* About */

.about .about-wrapper-pc {
  display: flex;
  justify-content: space-between;
}

.about .about-wrapper-sp {
  display: none;
}

.about .about-image {
  width: 50%;
  position: relative;
  z-index: -1;
}

.about .about-text {
  width: 50%;
}

.about .about-wrapper-pc .about-image .about-image-1-pc {
  width: 110%;
  height: 700px;
  margin-left: -27%;
  object-fit: cover;
}

.about .about-wrapper-pc .about-image .about-image-2-pc {
  position: absolute;
  width: 65%;
  height: 300px;
  top: 650px;
  left: -14%;
  object-fit: cover;
}

.about .about-text img {
  width: 100%;
}

.about .check&gt;p {
  margin: 20px 0px;
  padding-left: 30px;
  position: relative;
  z-index: -1;
}

.about  .check&gt;p::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 28px;
  height: 24px;
  top: 0;
  left: 0;
  background-image: url(img/about/Vector.png);
  background-size: contain;
  vertical-align: middle;
  background-repeat: no-repeat;
}

.counseling .campaign-wrapper-sp {
  display: none;
}

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

  .about .about-wrapper-sp {
    display: block;
    position: relative;
    width: 100%;
  }

  .about .about-wrapper-sp .about-image-1-sp {
    width: 112%;
    margin: 0 -6%;
    padding-bottom: 50%;
    object-fit: revert;
    object-fit: cover;
  }

  .about .about-wrapper-sp .about-image-2-sp {
    width: 50%;
    position: absolute;
    top: 650px;
    left: -6%;
  }
}

/* Facility */

.facility .facility-top {
  padding-bottom: 100px;
}

.facility .facility-top p {
  padding: 20px 0px;
}

.facility .facility-top img {
  width: 100%;
}

.facility .facility-contents-wrapper {
  display: flex;
  justify-content: space-between;
  padding-bottom: 50px;
}

.facility .facility-contents-wrapper .facility-content {
  width: 47%;
}

.facility .facility-contents-wrapper .facility-content h3 {
  font-size: 24px;
}

.facility .facility-contents-wrapper .facility-content img {
  width: 100%;
}

.facility .facility-floor-plan {
  width: 100%;
}

.facility .facility-floor-plan img {
  width: 60%;
}

@media (max-width: 900px) {
  .facility .facility-contents-wrapper {
    display: block;
  }

  .facility .facility-top img {
    width: 112%;
    margin: 0px -6%;
  }

  .facility .facility-contents-wrapper {
    padding-bottom: 0px;
  }

  .facility .facility-contents-wrapper .facility-content {
    width: 100%;
  }

  .facility .facility-floor-plan img {
    width: 100%;
  }
}

/* App */
.app .app-wrapper-pc {
  display: flex;
  justify-content: space-between;
}

.app .app-wrapper-sp {
  display: none;
}

.app .app-wrapper-pc .app-image {
  width: 50%;
  margin-left: -10%;
  position: relative;
  z-index: -1;
}

.app .app-wrapper-pc .app-image .ui-image {
  width: 115%;
  height: 700px;
  margin-left: -5%;
  object-fit: cover;
}

.app .app-wrapper-pc .app-image .icon-image {
  width: 60%;
  position: absolute;
  top: 450px;
  left: 50%;

}


.app .app-wrapper-pc .app-text {
  width: 50%;
}

.app .app-wrapper-pc .app-text .app-text-block {
  padding: 30px 0px;
}

.app .app-wrapper-pc .app-text span {
  font-size: 24px;
  font-weight: bold;
  padding: 10px 0px 20px;
  display: block;
}

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

  .app .app-wrapper-sp {
    display: block;
    position: relative;
  }

  .app .app-wrapper-sp .app-image {
    width: 112%;
    margin: 0px -6%;
  }

  .app .app-wrapper-sp .icon-image {
    position: absolute;
    width: 65%;
    top: 500px;
    left: 140px;
  }

  .app .app-wrapper-sp .app-text-block {
    padding: 10px 0px;
  }
  
  .app .app-wrapper-sp span {
    font-size: 24px;
    font-weight: bold;
    padding: 10px 0px 20px;
    display: block;
  }
}

/* Price Plan */

.price-plan img {
  width: 100%;
  margin: 20px 0%;
}

/* Simulation */
.simulation img {
  width: 100%;
  margin: 20px 0%;
}

/* Voice */
.voice-sp {
  display: none;
}

.voice-content-wrapper {
  display: flex;
  justify-content: space-between;
  padding-bottom: 100px;
  height: 750px;
}

.voice-content-wrapper-second {
  display: flex;
  justify-content: space-between;
  padding-bottom: 100px;
  height: 750px;
}

.voice-content-wrapper .voice-content-text {
  width: 40%;
  position: relative;
  margin-top: 100px;
  z-index: -1;
}

.voice-content-wrapper-second .voice-content-text {
  width: 40%;
  position: relative;
  margin-top: 100px;
  z-index: -1;
}

.voice .start-date {
  padding-top: 30px;
  text-align: right;
}

.voice .voice-question {
  padding-top: 30px;
}

.voice .voice-question .question {
  color: #86784A;
  font-weight: 600;
  padding: 0px 0px 20px;
}

.voice-content-wrapper .voice-back-ground {
  position: absolute;
  z-index: -1;
  top: 0;
  left: -33%;
  width: 275%;
  height: 700px;
}

.voice-content-wrapper-second .voice-back-ground {
  position: absolute;
  z-index: -1;
  top: 0;
  left: -140%;
  width: 275%;
  height: 700px;
}

.voice-content-wrapper-second .voice-content-image img {
  width: 125%;
  margin-left: -25%;
}

.voice-content-image {
  width: 50%;
}

.voice-content-image img {
  width: 125%;
}

.voice h2 {
  margin-top: -30px;
  margin-left: 30px;
  font-family: 'Shippori Mincho', serif;
  font-weight: 500;
  letter-spacing: 0.07em;
}

.voice h3 {
  margin-left: 30px;
}

.voice .name {
  font-size: 40px;
  color: #151515;
  padding-left: 50px;
}

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

  .voice-sp {
    display: block;
    width: 100%;
  }

  .voice-content-sp {
    padding-bottom: 50px;
  }

  .voice-content-text-sp {
    background-color: #FBFDFC;
    margin: 0px -6%;
    width: 112%;
  }

  .voice-content-sp img {
    width: 112%;
    margin: 0px -6%;
  }

  .voice .voice-content-sp h2 {
    margin-top: -130px;
    font-size: 80px;
  }

  .voice .voice-content-sp .start-date {
    padding-right: 20px;
  }

  .voice .voice-content-sp .voice-question {
    padding: 15px 20px;
  }
}

/* Access */

.access-wrapper-pc {
  display: flex;
}

.access-wrapper-sp {
  display: none;
}

.access-wrapper-pc .access-text {
  width: 50%;
}

.access-wrapper-pc .access-map {
  width: 50%;
}

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

  .access-wrapper-sp {
    display: block;
  }  
}

/* Store */

.store ul {
  display: flex;
}

.store li {
  list-style: none;
  margin-left: 20px;
}

.store a {
  color: #151515;
}

.store .floor-plan-wrapper {
  display: flex;
  justify-content: space-between;
  padding-bottom: 50px;
}

.store .floor-plan-wrapper .floor-plan {
  width: 47%;
  text-align: center;
}

.store .floor-plan-wrapper .floor-plan img {
  width: 100%;
}

.store .floor-plan-wrapper .floor-plan p {
  padding: 10px 0px;
}

@media (max-width: 900px) {
  .store .floor-plan-wrapper {
    display: block;
    padding-bottom: 0px;
  }

  .store .floor-plan-wrapper .floor-plan {
    width: 100%;
    padding-bottom: 30px;
  }

  .store ul {
    display: block;
  }
}

/* Line */
.line-modal {
  cursor: pointer;
}

.modal-container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: .3s ease-out;
  z-index: 9;
}

.modal-container::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

.modal-container.active {
  opacity: 1;
  visibility: visible;
}

.modal-body {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 300px;
  width: 90%;
}

.modal-close {
  position: absolute;
  top: -30px;
  right: 0px;
  font-size: 14px;
  background: #fff;
  padding: 4px 15px;
  cursor: pointer;
  border-radius: 5px;
  border-color: #fff;
}

.modal-content {
  font-weight: bold;
  width: 100%;
  position: relative;
}

.modal-content img {
  width: 100%;
}

.modal-content a {
  width: 55%;
  position: absolute;
  bottom: 25px;
  right: 45px;
  padding: 22px;
  cursor: pointer;
}

/* Footer */

footer {
  background-color: #FBFDFC;
  padding: 32px 0;
}

footer p {
  font-size: 15px;
}

ul.sns-iconlist {
  width: 200px;
  margin: 0 auto 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

ul.sns-iconlist li {
  list-style: none;
  width: 38px;
  height: auto;
  display: block;
}

ul.sns-iconlist img {
  width: 50px;
}

ul.footer-navlist {
  text-align: center;
  margin-bottom: 40px;
}

ul.footer-navlist li {
  list-style: none;
  display: inline-block;
  color:#151515;
  font-size: 1.2rem;
  line-height: 1.9;
  letter-spacing: 0.1em;
  padding: 0px 10px;
}

ul.footer-navlist a {
  color:#151515;
  text-decoration: none;
}

@media (max-width: 900px) {
  ul.footer-navlist li {
    display: block;
  }
}
</pre></body></html>