/* @charset "utf-8";

/* パソコンで出してスマホは出さない */
.pc {
  display: inline !important;
}

.sp {
  display: none !important;
}

/* スマホは出してパソコンは出さない */
@media screen and (max-width: 736px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: inline !important;
  }
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  /* フォント設定もここで */
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  font-feature-settings: "palt";
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  vertical-align: bottom;
  border: none;
  -webkit-backface-visibility: hidden;
}

ul,
li,
dl,
dt,
dd,
ol,
p {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

a {
  color: #FFF;
  text-decoration: none;
}

/*リセット
------------------------------*/
.clearFix:after {
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
  content: ".";
  zoom: 1;
}

.clearFix {
  min-height: 1px;
}

* html .clearFix {
  height: 1px;
}


/***** ヘッダー *****/

.top img {
  width: 100%;
  top: 0;
}

.logo {
  width: 15%;
  margin: 2% 0 0 2%;
  position: absolute;
  z-index: 99;
}

.logo img {
  width: 100%;
}

.sb {
  position: absolute;
  right: 2%;
  bottom: 0;
  width: 60%;
}

.sb img {
  width: 100%;
}

/*------------------------------
ハンバーガーメニュー
------------------------------*/

.drawer {
  position: fixed;
  top: -1%;
  right: -3%;
  z-index: 10000;
}

/* チェックボックスは非表示に */
.drawer-hidden {
  display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer-open {
  display: flex;
  height: 100px;
  width: 100px;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 100;
  right: 0;
}

/* メニューのアイコン */
.drawer-open span,
.drawer-open span:before,
.drawer-open span:after {
  content: '';
  display: block;
  height: 2px;
  width: 45px;
  border-radius: 3px;
  background: #583B00;
  transition: 0.5s;
  position: absolute;
}

/* 三本線のうち一番上の棒の位置調整 */
.drawer-open span:before {
  bottom: 13px;
}

/* 三本線のうち一番下の棒の位置調整 */
.drawer-open span:after {
  top: 13px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer-check:checked~.drawer-open span {
  background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer-check:checked~.drawer-open span::before {
  bottom: 0;
  transform: rotate(45deg);
  background: white;
  position: fixed;
  top: 60px;
  right: 20px;
}

#drawer-check:checked~.drawer-open span::after {
  top: 0;
  transform: rotate(-45deg);
  background: white;
  position: fixed;
  top: 60px;
  right: 20px;
}

/* メニューのデザイン*/
.drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;
  /* メニューを画面の外に飛ばす */
  z-index: 99;
  background: black;
  opacity: 0.8;
  transition: .5s;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer-check:checked~.drawer-content {
  left: 0;
  /* メニューを画面に入れる */
}

.drawer-list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.drawer-list a {
  font-size: calc(15px + 20 * (100vw - 280px)/456);
  letter-spacing: 0.1em;
  line-height: 2;
}

.drawer-item {
  margin: 15px 0;
}

.recruitment {
  color: red;
  font-size: 17px;
  text-align: center;
  margin-top: 3%;
}

/*========= スクロールダウンのためのCSS ===============*/

/*=== 9-1-2 丸が動いてスクロールを促す ====*/

/*スクロールダウン全体の場所*/
.scrolldown2 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  left: 50%;
  padding-top: 10%;
}

/*Scrollテキストの描写*/
.scrolldown2 span {
  /*描画位置*/
  position: absolute;
  left: 10px;
  bottom: 2px;
  /*テキストの形状*/
  color: #000;
  font-size: calc(12px + 7 * (100vw - 280px)/456);
  letter-spacing: 0.05em;
  /*縦書き設定*/
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

/* 丸の描写 */
.scrolldown2:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: calc(-3.52px + -2 * (100vw - 280px)/456);
  /*丸の形状*/
  width: calc(8px + 5 * (100vw - 280px)/456);
  height: calc(8px + 5 * (100vw - 280px)/456);
  border-radius: 50%;
  background: #000;
  /*丸の動き1.6秒かけて透過し、永遠にループ*/
  animation:
    circlemove 1.6s ease-in-out infinite,
    cirlemovehide 1.6s ease-out infinite;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove {
  0% {
    bottom: calc(30px + 20 * (100vw - 280px)/456);
  }

  100% {
    bottom: -5px;
  }
}

/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide {
  0% {
    opacity: 0
  }

  50% {
    opacity: 1;
  }

  80% {
    opacity: 0.9;
  }

  100% {
    opacity: 0;
  }
}

/* 線の描写 */
.scrolldown2:after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: 0;
  /*線の形状*/
  width: calc(0.5px + 1 * (100vw - 280px)/456);
  height: calc(30px + 20 * (100vw - 280px)/456);
  background: #000;
}


.comfortable_life img {
  width: 70%;
  margin: auto;
  display: block;
  padding-top: 30%;
}

.comfortable_life p {
  width: 70%;
  font-size: calc(13px + 10 * (100vw - 280px)/456);
  font-weight: 500;
  line-height: 2;
  margin: auto;
  display: block;
  padding: 5% 0 20% 0;
  text-align: justify;
  text-align-last: left;
}

/***** ルームプラン *****/
.roomplan {
  text-align: center;
  margin: 0 auto;
  padding: 12% 0 18% 0;
  background-color: #F9F7ED;
}

.subtitle {
  font-size: calc(12px + 1 * (100vw - 280px)/456);
  letter-spacing: 0.3em;
  color: #B47D32;
}

.each_title {
  font-size: calc(16px + 5 * (100vw - 280px)/456);
  letter-spacing: 0.2em;
  color: #B47D32;
}

.title_back {
  width: 90%;
  height: 1px;
  background-color: #B47D32;
  border: none;
  margin: 1% auto;
}

.each_title_japan {
  font-size: calc(12px + 3 * (100vw - 280px)/456);
  letter-spacing: 0.3em;
  color: #B47D32;
}

.slider {
  width: 95%;
  margin: 0 auto;
  height: auto !important;
}

.slider img {
  width: 95%;
  margin: 0 auto;
}

/***** フォトギャラリー *****/
.Photogallery {
  text-align: center;
  margin: 0 auto;
  padding: 12% 0 20% 0;
}

.each_title2 {
  font-size: calc(16px + 5 * (100vw - 280px)/456);
  letter-spacing: 0.2em;
  color: #1E5A73;
}

.title_back2 {
  width: 90%;
  height: 1px;
  background-color: #1E5A73;
  border: none;
  margin: 1% auto;
}

.each_title_japan2 {
  font-size: calc(15px + 3 * (100vw - 280px)/456);
  letter-spacing: 0.3em;
  color: #1E5A73;
}

.photo_back {
  position: relative;
  height: 20px;
  background-color: #1E5A73;
  border: none;
  margin: -30% 0 20% 0;
  z-index: -1;
}

.photo3 {
  display: flex;
  justify-content: space-between;
  margin: 1% 2% 0 5%;
}

.photo3 img {
  width: 100%;
}

.closet {
  width: 80%;
  right: 0;
}

.leaf {
  width: 80%;
  margin-top: 13%;
}

.book {
  width: 90%;
  margin-top: 5%;
}

.attention {
  width: 80%;
  font-size: calc(12px + 10 * (100vw - 280px)/456);
  text-align: center;
  padding: 2% 0;
  margin: 0 auto;
}

.photo360 {
  width: 65%;
  text-align: center;
  margin: 0 auto;
  padding: 5% 0 10% 0;

}

.photo360 img {
  width: 100%;
  margin-top: 5%;
}

/* パノラマ 本体 */
.pano_box {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 0 0 0 0;
  text-align: center;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.pano_wrap {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.pano_mainImg_box {
  width: 100%;
  height: 100%;
  margin: 0;
  background-color: #fff;
}

#photosphere {
  width: 100%;
  height: 100%;
}

/***** 設備 *****/
.equipment {
  text-align: center;
  margin: 0 auto;
  padding: 12% 0 18% 0;
  background-color: #F9F7ED;
}

.faci_box1 {
  width: 70%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
}

.box {
  width: 100%;
  display: flex;
  position: relative;
  margin-top: 15%;
}

.equipment_box {
  width: 80%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.white {
  background-color: #FFF;
  padding-top: 10%;
  margin-top: -10%;
  position: relative;
  z-index: 1;
}

.back_1 {
  width: 40%;
  margin: 10% 0 0 5%;
}

.back_2 {
  width: 35%;
  position: absolute;
  right: 3%;
  margin-top: 2.5%;
}

.back_3 {
  width: 23%;
  margin: 12% 0 0 5%;
}

.back_4 {
  width: 33%;
  position: absolute;
  right: 3%;
  margin-top: 5%;
}

.name1_1,
.name1_2,
.name1_3,
.name1_4 {
  font-size: calc(15px + 15 * (100vw - 280px)/456);
  font-weight: bold;
  text-align: center;
}

.name2_1,
.name2_2,
.name2_3,
.name2_4 {
  font-size: calc(12px + 10 * (100vw - 280px)/456);
  width: 80%;
  text-align: justify;
  text-align-last: left;
  line-height: 1.8;
  letter-spacing: 0.1em;
  margin: -10% auto;
  padding: 13% 0% 8% 0%;
}

.name1_1 {
  margin-top: -32%;
}

.name1_2 {
  margin-top: 9%;
}

.name1_3 {
  margin-top: -40%;
}

.name1_4 {
  margin-top: 7.5%;
}

.cursive_1,
.cursive_3 {
  position: relative;
  z-index: 3;
  text-align: right;
  margin: 0 0 0 auto;
}

.cursive_2,
.cursive_4 {
  position: relative;
  z-index: 3;
  text-align: right;
  margin: 0 auto 0 0;
}

.cursive_1 {
  width: 35%;
}

.cursive_2 {
  width: 40%;
}

.cursive_3 {
  width: 50%;
}

.cursive_4 {
  width: 30%;
}

.equipment_box img,
.back_1 img,
.back_2 img,
.back_3 img,
.back_4 img,
.cursive_1 img,
.cursive_2 img,
.cursive_3 img,
.cursive_4 img {
  width: 100%;
}

/*****アクセス*****/
.access {
  text-align: center;
  margin: 0 auto;
  padding: 12% 0 18% 0;
}

.large {
  width: 80%;
  font-size: calc(15px + 10 * (100vw - 280px)/456);
  font-weight: bold;
  margin: 7% auto;
  line-height: 2;
  letter-spacing: 0.1em;
}

.medium {
  width: 80%;
  font-size: calc(12px + 3 * (100vw - 280px)/456);
  font-weight: 500;
  margin: 3% auto;
  line-height: 2;
  letter-spacing: 0.1em;
  text-align: justify;
  text-align-last: left;
}

.small {
  width: 80%;
  font-size: calc(12px + 3 * (100vw - 280px)/456);
  font-weight: 500;
  margin: 0 auto;
  text-align: justify;
  text-align-last: left;
}

.faci_box2 {
  width: 85%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 10% auto;
}

.box_namba {
  width: 50%;
  margin: 0 0 0 -1.5%;
}

.box_tennoji {
  width: 50%;
  margin: 0 -1.5% 0 0;
}

.box_namba img,
.box_tennoji img {
  width: 100%;
}

.box_namba p,
.box_tennoji p {
  font-size: calc(11px + 5 * (100vw - 280px)/456);
  color: #1E5A73;
  text-align: left;
  margin-top: 2%;
}

/*****ロケーション*****/
.location {
  position: relative;
  text-align: center;
  margin: 0 auto;
  padding: 12% 0;
  background-color: #F9F7ED;
}

.map_around {
  width: 80%;
  margin: 0 auto;
}

.map_around p {
  font-size: 12px;
  font-weight: 500;
}

.faci_box_sp {
  width: 90%;
  display: flex;
  margin: 8% auto;
  justify-content: space-evenly;
}

.box_1-8 {
  width: 45%;
}

.box_1-8 p {
  width: 100%;
  font-size: calc(13px + 10 * (100vw - 280px)/456);
  margin-top: 7%;
  color: #000;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.map_around img,
.box_1-8 img {
  width: 100%;
}

/*****物件概要*****/
/*概要
------------------------------*/
.outline {
  text-align: center;
  margin: 0 auto;
  padding: 12% 0;
}

.outline_main {
  margin: 0 auto;
  margin-top: calc(0px + 30 * (100vw - 280px)/456);
  padding: 0 calc(10px + 25 * (100vw - 280px)/259);
}

.outline2 {
  text-align: left;
  margin: 0 auto;
  margin-top: 35px;
}

.table_title {
  font-size: calc(20px + 2 * (100vw - 280px)/456);
  text-align: center;
}

.outline2 table {
  border-collapse: collapse;
  border-spacing: 0;
}

.outline2 th {
  font-size: calc(14px + 2 * (100vw - 280px)/456);
  width: 20%;
  padding: 0.7em 0.7em 0.7em 2em;
  border-top: 1px solid #CCC;
}

.outline2 td {
  font-size: calc(14px + 2 * (100vw - 280px)/456);
  width: 75%;
  padding: 1em 1em 1em 1.5em;
  border-top: 1px solid #CCC;
  text-align: justify;
}

.table_last {
  font-size: calc(12px + 2 * (100vw - 280px)/456);
  font-weight: 400;
  text-align: center;
  margin-top: 3%;
}

@media screen and (max-width: 560px) {

  .outline th,
  .outline td {
    width: 100%;
    display: block;
  }

  .outline th {
    padding: 1em 1.5em 0 1.4em;
    border-top: 1px solid #CCC;
  }

  .outline td {
    padding: 1.5em 1.5em 1em 1.5em;
    border-top: none;
  }
}


/*****フッター*****/
.ft {
  text-align: center;
  padding-top: 12%;
  background-color: #F9F7ED;
}

.ft_logo {
  width: 70%;
  max-width: 500px;
}

.free_dial {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin: 1% auto;
}

.icon {
  width: 10%;
  height: 55%;
}

.free_dial p {
  font-size: calc(25px + 38 * (100vw - 280px)/456);
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-weight: bold;
  color: #B47D32;
  letter-spacing: -0.01em;
  padding-left: 1%;
}

.tel_address {
  font-size: calc(12px + 9 * (100vw - 280px)/456);
  font-weight: 600;
  text-align: center;
}

.takken {
  width: 69%;
  max-width: 430px;
  margin: 5% auto;
  text-align: justify;
  text-align-last: left;
  font-size: 11px;
  font-weight: 500;
}

.FF p {
  font-size: calc(14px + 10 * (100vw - 280px)/456);
  font-weight: 600;
}

.link {
  display: flex;
  flex-flow: column;
  align-items: center;
}

.link_l,
.link_r {
  width: fit-content;
  margin-top: 4%;
}

.link_l a,
.link_r a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: calc(12px + 9 * (100vw - 280px)/456);
  font-weight: 600;
  color: #000;
}

.link_r a {
  letter-spacing: 0.06em;
}

.link_l img,
.link_r img {
  width: calc(6% + 0.5 * (100vw - 280px)/456);
  max-width: 30px;
  height: calc(21% + 0.5 * (100vw - 280px)/456);
}


.FF_sp {
  width: 35%;
  max-width: 190px;
  display: flex;
  align-items: center;
  margin: 8% auto 0 auto;
}

.FF_sp img {
  width: 100%;
  margin: 0 auto;
}

.copyright {
  background-color: #FFF;
}

.copyright p {
  font-size: calc(12px + 2 * (100vw - 280px)/456);
  font-weight: 500;
  text-align: center;
}

.ft_logo img,
.icon img {
  width: 100%;
}

/*ページスクロール
------------------------------*/
#page-top {
  background-color: #B47D32;
  filter: drop-shadow(0 0 4px #FEF8E1);
  color: white;
  width: 60px;
  height: 60px;
  position: fixed;
  bottom: 20px;
  right: 10px;
  border-radius: 50%;
  z-index: 1000;
}

#page-top a {
  padding: 10% 0 0 0;
  display: block;
  width: 60px;
  height: 60px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

#page-top a:link,
#page-top a:visited {
  color: #FFF;
  font-size: 30px;
  text-decoration: none;
}


/* トップ 下からフェードアップ */
.fadeUpTrigger {
  opacity: 0;
}

.fadeUp {
  animation: animationName 0.8s ease-in 0.5s forwards;
  opacity: 0;
  animation-name: fadeUpAnime;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hide {
  /*デフォルトで透明度0に指定*/
  opacity: 0;
  transform: translateY(80px);
  transition: 1s;
}

/*スクロールした時に追加されるクラス*/
.fadein {
  opacity: 1;
  transform: translateY(0);
}


/* ボタン共通設定 */
.btn_map,
.btn_contact {
  /*矢印の基点とするためrelativeを指定*/
  position: relative;
  /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
  background: #B47D32;
  color: #fff;
  text-align: center;
  outline: none;
}

.btn_map {
  margin: 5% 0 10% 0;
  font-size: calc(20px + 5 * (100vw - 280px)/456);
  /*ボタンの形状*/
  padding: 3% 20% 3% 19%;
}

.btn_contact {
  margin: 3% 0 5% 0;
  letter-spacing: 0.03em;
  font-weight: 600;
  font-size: calc(12px + 15 * (100vw - 280px)/456);
  /*ボタンの形状*/
  padding: 5% 15% 5% 14%;
}


/* 矢印 */
.btnarrow::after,
.btn_contact::after {
  content: '';
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 42%;
  right: 20px;
  /*矢印の形状*/
  width: 9px;
  height: 9px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

/*contact.html
------------------------------*/
.contact_bg {
  /* 上部タイトル */
  padding: 30px 0 !important;
  padding-top: 50px !important;
  font-weight: 600 !important;
  background: #B47D32;
  font-size: calc(20px + 2 * (100vw - 280px)/456) !important;
  text-align: center !important;
  color: #FFF !important;
  margin-top: 0 !important;
}

#contact_form {
  /* 上部タイトル・説明文 */
  width: 90% !important;
  margin: 0 auto !important;
}

#contact_form p {
  /* 上部説明文 */
  padding: 30px 0 !important;
  padding-top: 0 !important;
  margin: 0 auto !important;
  text-align: center !important;
  font-size: calc(13px + 2 * (100vw - 280px)/456) !important;
  width: 90%;
}

#container {
  width: 90% !important;
  margin: 0 auto !important;
  margin-bottom: 50px !important;
}

form#mailformpro label.mfp_not_checked {
  padding: 15px !important;
}

form#mailformpro dl dt {
  font-size: 15px !important;
  padding: 15px 0 !important;
}

.mfp_element_text,
.mfp_element_number,
.mfp_element_email,
.mfp_element_select-one,
.mfp_element_tel,
.mfp_element_textarea,
.mfp_element_date,
.mfp_element_password {
  padding: 15px 8px !important;
  margin: 5px !important;
  font-size: 15px !important;
}

.mfp_element_all {
  max-width: 95% !important;
}

.must {
  background-color: #B47D32 !important;
  border: #B47D32 !important;
  background-image: none !important;
}

.yohaku {
  display: inline-block !important;
  width: calc(23px + 10 * (100vw - 280px)/456) !important;
}

.yohaku2 {
  display: inline-block !important;
  width: calc(3px + 3 * (100vw - 280px)/456) !important;
}

.fs{
  font-size: calc(13px + 3 * (100vw - 280px)/456) !important;
}

.contact_pp {
  padding: 30px 15px !important;
  font-size: calc(13px + 3 * (100vw - 280px)/456) !important;
  text-align: center !important;
}

.any {
  display: block;
  background-color: #F0F0F0;
  border:  #F0F0F0;
  background-image: none;
  padding: 2px 5px;
  font-size: 10px;
  color: #000;
  float: left;
  margin: 0px 5px;
  border-radius: 4px;
}

.must3 a{
  color: #551a8b;
  font-size: 12px;
  white-space: nowrap;
}

.mfp_element_submit, .mfp_element_reset {
  background: #F0F0F0!important;
  color: #333!important;
  font-weight: 500!important;
  width: 100px!important;
  height: 45px!important;
}

@media screen and (max-width:455px) {
  .line_break {
    display: none !important;
  }

  #contact_form p {
    /* 上部説明文 */
    text-align: center !important;
    text-align: justify !important;
    text-align-last: left !important;
  }
}

@media screen and (min-width:475px) {
  .nowrap {
    white-space: nowrap
  }
}

@media screen and (min-width:360px) {
  .line_break2 {
    display: none !important;
  }
}


/*thanks.html
------------------------------*/

#contactmail {
  margin: 0 auto;
  padding: 30px 30px 80px 30px;
  font-size: calc(13px + 2 * (100vw - 280px)/456) !important;
}

#mfp_thanks h3 {
  margin-bottom: 0;
  color: #B47D32;
  font-size: calc(14.5px + 18 * (100vw - 280px)/456) !important;
  padding-bottom: 2% !important;
}

#mfp_thanks {
  padding-bottom: 30px !important;
}

#mfp_thanks p {
  font-weight: bold;
  letter-spacing: 0.02rem;
  color: #B47D32;
  font-size: calc(12px + 8 * (100vw - 280px)/456) !important;
}

.contact_box {
  text-align: justify;
}

.contact_line {
  height: 1px;
  background-color: #DDCDC0;
  border: none;
  margin-bottom: 20px;
}

.thanks_address {
  max-width: 500px;
  border: 1px solid #DDCDC0;
  padding: 1em;
  margin: 0 auto;
}

.top_back {
  text-align: center;
  margin-top: 30px;
}

.top_back a {
  display: inline-block;
  outline: none;
  background-color: #B47D32;
  border: 1px solid #B47D32;
  color: #FFF;
  padding: 1em 5em;
  letter-spacing: 0.02em;
  font-weight: 600;
}

@media screen and (min-width:300px) {
  .line_break3 {
    display: none !important;
  }
}