/*--------------------------------------------------
 common 共通の設定
----------------------------------------------------*/
@import url(//use.fontawesome.com/releases/v5.6.3/css/all.css);
html {
  scroll-behavior: smooth;
}
main a {
  text-decoration: none;
}
.pcOnly {
  display: block;
}
.spOnly {
  display: none;
}
h1, h2, h3 {
  margin-top: 0;
  margin-bottom: 0;
}
.box1200 {
  max-width: 1200px;
  margin: 0 auto;
}
.box950 {
  max-width: 950px;
  margin: 0 auto;
}
.box700 {
  max-width: 700px;
  margin: 0 auto;
}
.box600 {
  max-width: 600px;
  margin: 0 auto;
}
.txt {
  margin-top: 50px;
  margin-bottom: 50px;
}
.center {
  text-align: center;
}
article {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-style: normal;
  color: #1e1e1e;
  width: 100%;
  line-height: 180%;
  text-align: justify;
  letter-spacing: 0.1em;
  font-size: 1.6rem;
  background-color: #f4f4f4;
  /*overflow-x: hidden;*/
}
article a {
  transition: 0.3s;
}
article img {
	width: 100%;
}
/*見出し*/
.Sub-title {
  display: block;
  padding: 80px 0 30px;
  text-align: center;
  z-index: 1;
  vertical-align: bottom;
  font-family: 'Hina Mincho', serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  font-size: 3rem;
  margin: 0 auto;
  letter-spacing: .3rem;
  color: #1F1F1F;
}
.Sub-title span {
  display: block;
  vertical-align: bottom;
  font-size: 1.4rem;
  /*font-family: a-otf-ud-reimin-pr6n, sans-serif;*/
  font-weight: 300;
  font-style: normal;
  color: #c39143;
  letter-spacing: normal;
  padding-top: 12px;
  line-height: 1;
}
/*スクロールでフェードイン*/
.fadeIn {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  visibility: visible !important;
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
.animation {
  visibility: hidden;
}
@media screen and (max-width: 639px) {
  .pcOnly {
    display: none;
  }
  .spOnly {
    display: block;
  }
  .box1200 {
    padding-left: 10px;
    padding-right: 10px;
  }
  .box950 {
    padding-left: 10px;
    padding-right: 10px;
  }
  .box700 {
    padding-left: 10px;
    padding-right: 10px;
  }
  .box600 {
    padding-left: 10px;
    padding-right: 10px;
  }
}
/*--------------------------------------------------
 top トップ
----------------------------------------------------*/
#top {
  width: 100%;
  margin-bottom: 10vw;
  position: relative;
}
.topTtl_wrap {
  position: absolute;
  top: 50%;
  left: 4.1%;
  color: #fff;
  font-family: 'Hina Mincho', serif;
  font-weight: 400;
  font-style: normal;
  filter: drop-shadow(3px 3px 4px rgba(34, 23, 20, .5));
  z-index: 20;
  transform: translateY(-50%);
}
.topTtl_wrap h1 {
  width: 100%;
  font-size: clamp(22.8px, 3vw, 32px);
  letter-spacing: 0.5rem;
  margin: 0 0 6.4rem;
  line-height: 1;
	color: #FFFFFF;
}
.topTtl_wrap p {
  font-size: clamp(13.4px, 3vw, 18px);
  line-height: 1;
	color: #FFFFFF;
}
.topTtl_wrap::after {
  position: absolute;
  top: 50%;
  left: -4.1vw;
  width: 6.7vw;
  min-width: 9.2rem;
  height: 1px;
  content: "";
  background: #fff;
  transform: translateY(-50%);
}
.top_slider {
  width: 100%;
  overflow: hidden; /* 画像がはみ出ないようにする */
}
.slick-img img {
  width: 100%;
}
@keyframes fadezoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1); /* 拡大率 */
  }
}
.add-animation {
  animation: fadezoom 8s 0s forwards;
}
@media screen and (max-width: 639px) {
  #top {
    margin-bottom: 0;
  }
  .topTtl_wrap {
    top: initial;
    bottom: 47.4vw;
  }
  .topTtl_wrap h1 {
    margin-bottom: 5.7rem;
  }
  .topTtl_wrap p {
    line-height: 1.8;
  }
}
/*--------------------------------------------------
 concept コンセプト
----------------------------------------------------*/
#concept {
  margin: 80px auto 50px;
  max-width: 78rem;
  display: flex;
  flex-flow: row-reverse wrap;
  justify-content: space-between;
}
#concept h2 {
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.8;
  width: 25%;
  writing-mode: vertical-rl;
}
.concept_txt {
  width: 75%;
}
.concept_txt p {
  margin: 3rem auto;
}
.swiper-slide {
  min-width: 32rem;
  max-width: 32rem;
  margin: 0 0.8rem;
}
.wrapper .swiper-container .swiper-wrapper {
  transition-timing-function: linear !important;
}
@media screen and (max-width: 639px) {
  #concept {
    margin-bottom: 0;
  }
}
/*--------------------------------------------------
 layout レイアウト
----------------------------------------------------*/
#layout_wrap {
  position: relative;
  margin-bottom: 10vw;
}
#layout_wrap a:hover {
  opacity: 0.5;
}
#layout_wrap > div:nth-child(2) {
  position: absolute;
  width: 36vw;
  max-width: 367px;
  top: 10%;
  right: 25vw;
  vertical-align: bottom;
  text-align: right;
}
.cls-1 {
  letter-spacing: -.01em;
}
.cls-2 {
  letter-spacing: -.39em;
}
.cls-3, .cls-4, .cls-5, .cls-6, .cls-7, .cls-8, .cls-9, .cls-10, .cls-11, .cls-12, .cls-13, .cls-14, .cls-15, .cls-16, .cls-17, .cls-18, .cls-19, .cls-20 {
  fill: none;
}
.cls-3, .cls-21, .cls-6, .cls-8, .cls-22, .cls-13, .cls-23, .cls-17, .cls-20 {
  stroke-miterlimit: 10;
}
.cls-3, .cls-7 {
  stroke-width: 1.32px;
}
.cls-3, .cls-9, .cls-12, .cls-17 {
  stroke: #8e8e8e;
}
.cls-4, .cls-7, .cls-11, .cls-14, .cls-16, .cls-18 {
  stroke: #4d4d4d;
}
.cls-4, .cls-11, .cls-14 {
  stroke-width: 1.78px;
}
.cls-24 {
  letter-spacing: .03em;
}
.cls-5 {
  stroke: #000;
  stroke-width: 2.05px;
}
.cls-5, .cls-25, .cls-26, .cls-27, .cls-28, .cls-29, .cls-30, .cls-31, .cls-32, .cls-33, .cls-34, .cls-35, .cls-36 {
  stroke-linejoin: round;
}
.cls-5, .cls-37, .cls-12, .cls-28, .cls-29, .cls-30, .cls-31, .cls-38, .cls-15, .cls-32, .cls-33, .cls-34, .cls-35, .cls-19 {
  stroke-linecap: round;
}
.cls-21 {
  stroke: #6f9e38;
}
.cls-21, .cls-25, .cls-37, .cls-39, .cls-22, .cls-26, .cls-27, .cls-28, .cls-29, .cls-30, .cls-31, .cls-38, .cls-32, .cls-23, .cls-33, .cls-34, .cls-35, .cls-36 {
  fill: #fff;
}
.cls-21, .cls-37, .cls-39, .cls-22, .cls-26, .cls-12, .cls-31, .cls-38, .cls-15, .cls-23, .cls-33, .cls-19, .cls-36 {
  stroke-width: .78px;
}
.cls-40 {
  letter-spacing: .02em;
}
.cls-25, .cls-37, .cls-26, .cls-15 {
  stroke: #12652f;
}
.cls-25, .cls-26, .cls-27, .cls-36 {
  stroke-linecap: square;
}
.cls-25, .cls-27 {
  stroke-width: .75px;
}
.cls-6 {
  stroke-width: 5.46px;
}
.cls-6, .cls-8, .cls-13 {
  stroke: #1a1a1a;
}
.cls-37, .cls-39, .cls-12, .cls-38, .cls-15, .cls-19 {
  stroke-linejoin: bevel;
}
.cls-8 {
  stroke-width: 1.82px;
}
.cls-9, .cls-17 {
  stroke-width: 1.33px;
}
.cls-41 {
  fill: #4d4d4d;
}
.cls-42 {
  letter-spacing: -.39em;
}
.cls-10 {
  stroke-width: 1.76px;
}
.cls-10, .cls-20 {
  stroke: #fff;
}
.cls-43 {
  opacity: .2;
}
.cls-39, .cls-27, .cls-38, .cls-19, .cls-36 {
  stroke: #7fa746;
}
.cls-11 {
  stroke-dasharray: 0 0 3.66 1.83;
}
.cls-22 {
  stroke: #347337;
}
.cls-44 {
  letter-spacing: -.02em;
}
.cls-28, .cls-30 {
  stroke-width: 1.58px;
}
.cls-28, .cls-32, .cls-33, .cls-34 {
  stroke: #96bd3a;
}
.cls-45 {
  fill: #595757;
  stroke: #595757;
  stroke-width: .92px;
}
.cls-46 {
  font-size: 21px;
}
.cls-29, .cls-30, .cls-31, .cls-35 {
  stroke: #6d8f49;
}
.cls-29, .cls-32 {
  stroke-width: .78px;
}
.cls-47 {
  font-size: 30px;
}
.cls-47, .cls-48 {
}
.cls-13 {
  stroke-width: 6.37px;
}
.cls-49 {
  letter-spacing: .09em;
}
.cls-50 {
  letter-spacing: 0em;
}
.cls-51 {
  letter-spacing: .08em;
}
.cls-14 {
  stroke-dasharray: 0 0 3.69 1.84;
}
.cls-52 {
  fill: #ffee7d;
}
.cls-53 {
  letter-spacing: .11em;
}
.cls-54 {
  letter-spacing: .14em;
}
.cls-55 {
  letter-spacing: .04em;
}
.cls-56 {
  fill: #81bb3f;
}
.cls-16 {
  stroke-width: 5.41px;
}
.cls-57 {
  letter-spacing: .05em;
}
.cls-48 {
  font-size: 27px;
}
.cls-23 {
  stroke: #4f9041;
}
.cls-58 {
  fill: #84b91f;
}
.cls-59 {
  letter-spacing: -.07em;
}
.cls-34, .cls-35 {
  stroke-width: 1.21px;
}
.cls-18 {
  stroke-width: 4.51px;
}
.cls-60 {
  fill: #006636;
}
.cls-61 {
  letter-spacing: -.02em;
}
.cls-20 {
  stroke-width: 3.64px;
}
.cls-62 {
  letter-spacing: .11em;
}
.cls-63 {
  letter-spacing: .11em;
}
/* 画像レイアウト*/
.bx-wrapper {
  border: 0;
  box-shadow: none;
}
.bxslider {
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}
.bx-wrapper {
  position: relative;
}
.bx-wrapper img {
  max-width: 100%;
  vertical-align: bottom;
}
.bx-viewport {
  max-width: 100%;
  max-height: 100%;
}
/* ページャー*/
.bx-pager {
  text-align: center;
  width: 100%;
  bottom: 0;
  position: absolute;
  z-index: 2;
}
.bx-pager-item, .bx-controls-auto-item {
  display: inline-block;
}
.bx-default-pager a {
  background: #281a14;
  text-indent: -9999px;
  display: block;
  width: 8px;
  height: 8px;
  margin: 0 5px;
  outline: 0;
  border-radius: 0px;
}
.bx-default-pager a:hover, .bx-default-pager a.active {
  background: #ececec;
}
.bx-wrapper, .bx-viewport {
  width: auto !important;
  text-align: left;
}
@media screen and (max-width: 639px) {
  #layout > div:nth-child(2) {
    width: 180px;
    top: 4vw;
    right: 10vw;
  }
}
/*--------------------------------------------------
 west,east 東棟、西棟
----------------------------------------------------*/
#west, #east {
  width: 85%;
  max-width: 1200px;
  margin: 6vw auto 9vw;
  display: flex;
  justify-content: space-between;
}
.we_content {
  width: calc(100% - 100px);
  max-width: 950px;
  margin: 0 auto;
}
.widget--sticky {
  padding-top: calc(78px + 2rem);
  position: sticky;
  top: 0;
  -ms-flex-item-align: baseline;
  align-self: baseline;
}
.section-ttl {
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  font-family: 'Hina Mincho', serif;
  font-weight: 400;
  font-style: normal;
}
.section-ttl span {
  display: block;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
}
.section-ttl .en {
  font-size: clamp(18px, 3vw, 16px);
  color: #c39143;
  line-height: 1.44;
  margin-left: 7px;
}
.section-ttl .ja {
  font-size: clamp(32px, 3vw, 26px);
  line-height: 1;
}
@media screen and (max-width: 639px) {
  #west, #east {
    width: calc(100% - 20px);
    flex-flow: column wrap;
  }
  .we_content {
    width: 100%;
  }
  .widget--sticky {
    position: static;
    width: 100%;
  }
  .section-ttl {
    margin-top: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .section-ttl span {
    display: block;
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
  }
  .section-ttl .ja {
  font-size: clamp(24px, 2vw, 18px);
  line-height: 1;
}
  .section-ttl .en {
    margin-left: 0;
    margin-bottom: 4px;
  }
}


/*-------------------------------------------
pickup
-------------------------------------------*/
#pickup {
  margin-bottom: 120px;
  overflow: hidden;
  position: relative;
}
#pickup .img-top {
  width: clamp(390px, 50vw, 460px);
  position: absolute;
  top: 70px;
  left: 50%;
}
#pickup .text-area {
  width: 70%;
  background-color: #fafafa;
  padding: 7% 0 10% 6%;
  margin-top: 120px;
}
#pickup .text-area .inner {
  width: clamp(250px, 34vw, 350px);
}
#pickup .text-area .inner .title {
  font-family: 'Zen Old Mincho', serif;
  font-size: 24px;
  line-height: 1.6;
  margin-bottom: 40px;
}
#pickup .text-area .inner .text {
  font-size: 15px;
  line-height: 2;
  margin-bottom: 30px;
}
#pickup .img-bottom {
  max-width: 380px;
  margin: -60px 0 0 10%;
}

/*-------------------------------------------
スマートフォン
-------------------------------------------*/
@media screen and (max-width: 767px) {
  #pickup {
    margin-bottom: 60px;
    position: static;
  }
  #pickup .img-top {
    width: 100%;
    margin-bottom: 20px;
    position: static;
  }
  #pickup .text-area {
    width: 100%;
    padding: 20px;
    margin:0 0 20px;
  }
  #pickup .text-area .inner {
    width: 100%;
  }
 #pickup .text-area .inner .title {
  font-size: 20px;
}
  #pickup .img-bottom {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  }


















/*--------------------------------------------------
 plan 間取
----------------------------------------------------*/
.plan {
  margin-top: 7.8rem;
  margin-bottom: 120px;
}
.plan .txt {
  margin: 0 auto;
  padding: 20px 0;
}
.plan img{
max-width: 840px;
}
.plan_img{
text-align: center;
}

.line {
  background: linear-gradient(transparent 60%, #ffff99 20%);
  /*font-weight:500; */
}
/*--------------------------------------------------
 point こだわり
----------------------------------------------------*/
#point {
  padding-bottom: 10vw;
}
#point ul {
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
}
#point ul li {
  width: 32%;
  margin: 50px auto 0;
  position: relative;
}
#point ul li::before {
  content: "";
  position: absolute;
  display: block;
  top: -25px;
  left: 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 8rem;
  line-height: 1;
  color: #fff;
  filter: drop-shadow(3px 3px 4px rgba(34, 23, 20, .4));
  z-index: 5;
}
#point ul li:nth-child(1)::before {
  content: "1";
}
#point ul li:nth-child(2)::before {
  content: "2";
}
#point ul li:nth-child(3)::before {
  content: "3";
}
#point img {
  border-radius: 5px 5px 0 0;
}
.point_txt {
  width: 100%;
  padding: 20px 30px 30px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 0 0 5px 5px;
}
.point_txt h3 {
  color: #111;
  padding: 2rem 0;
  text-align: center;
}
/*スマホ表示*/
@media screen and (max-width: 639px) {
  #point ul {
    flex-flow: column wrap;
  }
  #point ul li {
    width: 100%;
    margin: 50px auto 0;
    align-items: stretch;
  }
}
/*--------------------------------------------------
 photos 写真
----------------------------------------------------*/
.photos {
  margin: 0px auto 120px;
}
.photos .fotorama {
  width: 100%;
  max-width: 950px;
  margin: 50px auto;
}
/*スマホ表示*/
@media screen and (max-width: 639px) {
  #west, #east {
    margin-left: 10px;
    margin-right: 10px;
  }
}
/*--------------------------------------------------
 map 周辺情報
----------------------------------------------------*/
#map {
  margin: 80px auto;
  background-color: #fff;
  padding-bottom: 10px;
}
#map .txt {
  margin-top: 0;
}
#map figure {
  margin-top: 50px;
}
/*スマホ表示*/
@media screen and (max-width: 639px) {
  #map {
    padding-bottom: 50px;
  }
}
/*--------------------------------------------------
VirtualTour バーチャル内覧
----------------------------------------------------*/
#virtualtour {
  max-width: 950px;
  margin: 50px auto;
}
.vrbox {
  width: 100%;
}
.vrbox iframe {
  height: 600px;
}
#virtualtour .vrbox {
  width: 100%;
}
#virtualtour p {
  text-align: center;
}
/*スマホ表示*/
@media screen and (max-width: 639px) {
  .vrbox iframe {
    padding-left: 10px;
    padding-right: 10px;
    height: 400px;
  }
  #virtualtour p {
    padding-left: 10px;
    padding-right: 10px;
    text-align: justify;
  }
}


/*--------------------------------------------------
openhouse
----------------------------------------------------*/
#open {
  position: relative;
  z-index: 2;
  background: #fff;
  padding-top: 40px;
  padding-bottom: 40px;
 	margin-top: 120px;
  margin-bottom: 80px;
}
#open .open_inner {
  display: flex;
  justify-content: space-between;
  max-width: 1136px;
  padding-left: 15px;
  padding-right: 15px;
}
#open .section-ttl {
  margin: 0 auto;
}
#open .open_detail {
  width: 68%;
  max-width: 950px;
  text-align: center;
}
#open p {
  margin: 0 auto 2rem;
}
#open h4 {
  font-size: 2.5rem;
  letter-spacing: 0.3rem;
  line-height: 1.8;
}
#open .open_txt {
  font-size: 1.4rem;
  margin: 30px auto 0;
}
#open div:before, #open div:after {
  content: "";
  display: block;
}
@media screen and (max-width: 639px) {
  #concept {
    width: 100%;
    padding: 50px 10px 20px;
  }
  #concept h2 {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px
  }
  .concept_txt {
    width: 100%;
    padding: 1rem 10px 3rem;
  }
  #open {
    margin-top: 25vw;
    margin-right: 45px;
    margin-bottom: 100px;
    padding-top: 32px;
    padding-bottom: 32px;
  }
  #open .open_inner {
    padding-left: 20px;
    padding-right: 20px;
    display: block;
  }
  #open .open_detail {
    width: auto;
    padding-top: 4rem;
    padding-bottom: 3rem;
  }
  #open p {
    margin: 0 auto 1rem;
  }
  #open h4 {
    font-size: 2rem;
  }
}

/*--------------------------------------------------
details
----------------------------------------------------*/
.details div {
  max-width: 950px;
  margin: 0 auto 5vw;
}
.details table {
  box-sizing: border-box;
  border-collapse: collapse;
  width: 100%;
}
.details table th, .details table td {
  border-block-end: 1px solid #bababa;
  padding-inline-start: 8px;
  margin-block-start: 5px;
  vertical-align: middle;
  font-style: normal;
  height: 2.8em;
  text-align: justify;
}
.details table th {
  width: 15%;
  font-weight: bold;
}
/*スマホ表示*/
@media (max-width: 639px) {
  .details div {
    padding-left: 10px;
    padding-right: 10px;
  }
  .details table {
    width: 100%;
  }
  .details table th, .details table td {
    display: block;
    width: 100%;
    height: auto;
    /*border-block-end: 0px;*/
    padding: 3px 10px;
  }
  /*.details table th {
    background-color: #fff;
  }*/
  #west .details div, #east .details div {
    padding-left: 0;
    padding-right: 0;
  }
}
/*--------------------------------------------------
 form 問合わせ
----------------------------------------------------*/
.form_service {
  width: 100%;
  background-color: #fff;
  padding-bottom: 50px;
}
.form_service h2 {
  padding-top: 50px;
  text-align: center;
}
#form {
  margin: 50px auto 0;
  text-align: center;
  width: 100%;
}
/* ---------------------------
contact
------------------------------ */
.cta_btn {
  position: fixed;
  background-color: #c39143;
  border-radius: 0;
  bottom: 3%;
  right: 0;
  box-shadow: 0 1px 3px 1px rgb(0 0 0 / 8%);
  transition: all 0.3s ease;
  z-index: 90;
	border: 0;
}
.cta_link {
  display: flex;
  align-items: center;
}
.cta_icon {
  padding: 2rem;
  color: #fff;
  line-height: 1.5rem;
}
.cta_icon i {
	color: #fff;
}
.cta_ttl {
  padding-left: 8px;
  padding: 2rem;
  text-align: justify;
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
  font-weight: normal;
  color: #fff;
}
#cta_floating.cta_btn, .cta_floating {
  transform: translateX(10rem);
}
#cta_floating.cta_btn:hover, .cta_floating:hover {
  transform: translateX(0);
}
@media screen and (max-width: 639px) {
  #cta_floating.cta_btn, .cta_floating {
    transform: translateX(0);
  }
  .cta_btn {
    right: 16px;
    height: 60px;
    width: 60px;
    padding: 0;
    text-align: center;
    border-radius: 50%;
    border: none;
    outline: none;
    box-shadow: 0 1px 3px 1px rgb(0 0 0 / 8%);
    box-shadow: 0 2px 4px -1px rgb(0 0 0 / 20%), 0 4px 5px 0 rgb(0 0 0 / 14%), 0 1px 10px 0 rgb(0 0 0 / 12%);
    transform: translateX(calc(100% + 16px));
    transition: 0.2s cubic-bezier(0, .6, .99, 1);
    cursor: pointer;
  }
}
/* ---------------------------
service
------------------------------ */
#service {
  margin: 50px auto 0;
}
#service ul {
  margin: 0 auto;
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fill, minmax(302px, 1fr));
  text-align: center;
}
#service p {
  text-align: center;
  margin-bottom: 1.6rem;
}
/*スマホ表示*/
@media screen and (max-width: 639px) {
  #service p {
    text-align: justify;
  }
}
/*--------------------------------------------------
 googlemap アクセス
----------------------------------------------------*/
#gmap {
  width: 100%;
}
#gmap iframe {
  margin: 50px auto 100px;
}