@charset "UTF-8";
#bodywrap {
  margin-top: 90px;
}
@media screen and (max-width: 991px) {
  #bodywrap {
    margin-top: 70px;
  }
}
.owners h2 {
  font-family: 'Times New Roman', serif;
  color: #978153;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 400;
}
.long {
  width: 100%;
}
.img-sp {
  display: none;
}
dl,dt,dd {
  margin: unset;
  padding: unset;
}
.img-wrap{
  margin-top: 1rem;
}
section#inner {
  font-family: "Kozuka Mincho Pro R", "小塚明朝 Pro R", serif;
}
.bg-pink {
  background: #F8F6F6;
  padding-bottom: 60px;
}
.bg-page {
  background: #FFFFFF;
  padding: 5rem;
  box-sizing: border-box;
  margin-top: -160px;
}
@media screen and (max-width: 768px) {
  .bg-page {
    margin-top: 0;
  }
}
.bg-page .innerPage .article_title {
  display: flex;
  flex-direction: column;
}
.bg-page .innerPage .article_title h4 {
  margin: 20px 0;
  font-size: 22px;
  font-weight: bold;
  line-height: unset;
}
.bg-page .innerPage .article_title span.date {
  text-align: right;
  display: block;
}
.bg-page .innerPage .article-wrap {
  margin: 2rem 0;
}
.prof-wrap {
  background: #EFEADE;
  padding: 2rem;
}
.prof-wrap dt {
  font-weight: bold;
  border-bottom: #fff solid 1px;
  padding-bottom: 0.5rem;
  font-size: 16px;
}
.bg-page .innerPage .article-wrap .prof-wrap dt span{
  display: inline-block;
}
.prof-flex {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-top: 1rem;
}
.prof-flex dd {
  width: 50%;
}
.prof-flex dd.planImg {
  width: 30%;
  margin-top: -3rem;
  position: relative;
  cursor: pointer;
  background-color: #fff;
}
.prof-flex dd.planImg:after {
  content: "";
  position: absolute;
  bottom: 5px;
  right: 5px;
  display: block;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M2%2012C2%206.47715%206.47715%202%2012%202C17.5228%202%2022%206.47715%2022%2012C22%2017.5228%2017.5228%2022%2012%2022C6.47715%2022%202%2017.5228%202%2012ZM12%204C7.58172%204%204%207.58172%204%2012C4%2016.4183%207.58172%2020%2012%2020C16.4183%2020%2020%2016.4183%2020%2012C20%207.58172%2016.4183%204%2012%204Z%22%20fill%3D%22currentColor%22%20%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M13%207C13%206.44772%2012.5523%206%2012%206C11.4477%206%2011%206.44772%2011%207V11H7C6.44772%2011%206%2011.4477%206%2012C6%2012.5523%206.44772%2013%207%2013H11V17C11%2017.5523%2011.4477%2018%2012%2018C12.5523%2018%2013%2017.5523%2013%2017V13H17C17.5523%2013%2018%2012.5523%2018%2012C18%2011.4477%2017.5523%2011%2017%2011H13V7Z%22%20fill%3D%22currentColor%22%20%2F%3E%3C%2Fsvg%3E');
  background-size: cover;
  width: 20px;
  height: 20px;
}
@media (max-width:768px) {
  .prof-flex dd.planImg {
    margin-top: 0;
    cursor: default;
  }
  .prof-flex dd.planImg:after {
    display: none;
  }
}
.prof-flex dd span {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* モーダル本体 */
.modal__wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  z-index: 20;
  width: 100%;
  height: 100%;
}

.modal__layer {
  height: 100%;
  background: rgba(50, 50, 50, .85);
  cursor: pointer;
}

.modal__container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow-y: scroll;
  max-height: calc(100vh - 200px);
}

/* モーダルを閉じるボタン */
.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(50, 50, 50, 1);
  cursor: pointer;
  transition: opacity .6s;
}

.modal__close:hover {
  opacity: .6;
}

.modal__close:before,
.modal__close:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 1px;
  background: #fff;
  content: '';
}

.modal__close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal__close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modal__content .planImg img {
  height: calc(100vh - 200px);
  width: auto;
}

.bg-page .innerPage .article-wrap .prof-wrap .prof-flex dd span div.icon-wrap {
  width: 20px;
  display: flex;
}
.bg-page .innerPage .article-wrap .prof-wrap .prof-flex dd span div.icon-wrap img {
  width: 100%;
}
.bg-page .innerPage .article-wrap .prof-wrap .prof-flex dd ul {
  margin: 10px 0;
}
.bg-page .innerPage .article-wrap .article-info .inner-img-wrap {
  height: 38vw;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  max-height: 480px;
}
.bg-page .innerPage .article-wrap .prof-wrap .prof-flex dd.plan-wrap img {
  width: 100%;
}
.bg-page .innerPage .article-wrap .article-info {
  padding: 2rem 0;
}
video {
  border: #eee 3px solid;
  box-sizing: border-box;
}
.blfont{
  font-family: 'Noto Sans JP', sans-serif;
  /* font-family: "ヒラギノ角ゴ ProN W3", HiraKakuProN-W3, 游ゴシック, "Yu Gothic", メイリオ, Meiryo, Verdana, Helvetica, Arial, sans-serif; */
}
.img-wrap {
  max-height: 505px;
}
.bg-page .innerPage .article-wrap .article-info h5 {
  color: #163259;
  font-weight: bold;
  font-size: 18px;
  line-height: unset;
}
.bg-page .innerPage .article-wrap .article-info p {
  margin: 1rem 0;
  line-height: 2.187;
}
.bg-page .innerPage .article-wrap .article-info span {
  font-size: 12px;
}
.bg-page .innerPage .share {
  margin: 0 auto;
}
.bg-page .innerPage .share p {
  margin: 2rem 0;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}
.share .sns_wrap {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
}
.share .sns_wrap a div {
  width: 50px;
}
aside {
  margin: 8rem auto 4rem !important;
}
.owners-btn:hover .story-btn {
  box-shadow: 0 0 2px rgba(17, 24, 44, 0.3);
}
.story-btn {
  background: #FFFFFF;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: relative;
  box-shadow: 0 0 10px rgba(17, 24, 44, 0.3);
  transition: .5s;
}
aside dl {
  margin: 2rem 0;
}
aside dl dt {
  padding-bottom: 1rem;
  font-weight: bold;
  font-size: 18px;
}
aside dl dd .other-title {
  height: 300px;
  width: 50%;
  padding: 1.5rem;
  padding-top: 3.5rem;
  position: relative;
  box-sizing: border-box;
}
.other-title .othertext-wrap h4 {
  margin: 10px 0;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
}
aside dl dd .other-title .othertext-wrap h4 span {
  display: inline-block;
}
p.viewmore {
  font-size: 12px;
  color: #163259;
  letter-spacing: 0.075em;
  padding: 0 30px 20px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
  margin: 0;
}
p.viewmore::before {
  content: "";
  background: url(../img/top/search_viewmore_arw.png) center no-repeat;
  background-size: contain;
  width: 98px;
  height: 7px;
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 1;
}
p.viewmore::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 40px 40px;
  border-color: transparent transparent #b39860 transparent;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

ul.tag {
  display: flex;
  gap: 10px;
}
ul.tag li {
  background: #B1985D;
  border-radius: 5%;
  padding: 2px 5px;
  font-weight: bold;
}
.more-img span {
  position: relative;
  display: block;
}
.more-img span img {
  position: absolute;
  top: 10px;
  right: 10px;
  height: 27px;
  width: 27px;
  z-index: 1;
}
.area {
  background: #163259;
  letter-spacing: 0.2em;
  padding: 5px;
  width: -moz-fit-content;
  width: fit-content;
  color: #FFFFFF;
  position: absolute;
  left: 50%;
  margin: 1.5rem;
}
.area.-upper {
  position: unset;
  margin: unset;
}
.back-btn {
  max-width: 370px;
  width: 90%;
  margin: 0 auto;
}
.back-btn a {
  display: block;
  background: #FFFFFF;
  color: #b39860;
  border: #163259 solid 1px;
  font-size: 20px;
  letter-spacing: 0.2em;
  text-align: center;
  padding: 20px;
  transition: 0.3s;
  position: relative;
}
.back-btn a::after {
  content: "";
  display: block;
  background: url(../img/owners/back_arw.png) center no-repeat;
  background-size: contain;
  width: 60px;
  height: 7px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 50px;
  transition: .1s;
}
.back-btn a:hover {
  color: #FFFFFF;
  background-color: #b39860;
  border: #fff solid 1px;
}
.back-btn a:hover::after {
  filter: brightness(100);
}
@media screen and (max-width: 768px) {
  #inner {
    /* font-size: unset; */
  }
  .only-pc {
    display: none;
  }
  dd.a-wrap {
    padding: 0;
  }
  .bg-page {
    padding: 2rem 1rem;
  }
  .bg-page .innerPage .article_title h4 {
    font-size: 18px;
  }
  ul.tag li {
    font-size: 14px;
  }
  .area {
    font-size: 14px;
  }
  .date {
    font-size: 12px;
  }
  .bg-page .innerPage .article-wrap .prof-wrap .prof-flex {
    display: flex;
    flex-direction: column;
  }
  .bg-page .innerPage .article-wrap .prof-wrap .prof-flex dd {
    width: 100%;
  }
  .prof-flex dd span {
    font-size: 16px;
  }
  .prof-flex dd ul li {
    font-size: 14px;
  }
}
@media screen and (max-width: 520px) {
  .txt {
    font-size: 16px;
  }
}
@media screen and (max-width: 650px) {
  .img-sp{
    display: block;
  }
  .img-pc {
    display: none;
  }
  .bg-page .innerPage .article-wrap .article-info .inner-img-wrap {
    height: 44vw;
  }
  .story-btn {
    flex-direction: column;
    padding: 1rem;
    padding-bottom: 3rem;
  }
  .more-img {
      padding-top: 60%;
      width: 100%;
  }
  .more-img .only-pc {
    display: none;
  }
  ._1, ._2, ._3 {
      background-position: top;
  }
  aside dl dd .other-title {
      width: 100%;
      height: unset;
      box-sizing: border-box;
      padding: 1rem;
      padding-bottom: 3rem;
  }
  .other-title .othertext-wrap h4{
    font-size: 15px;
  }
  .area {
    font-size: 12px;
    letter-spacing: 0;
    position: unset;
    margin: unset;
    margin-bottom: 1rem;
  }
  aside dl dd .other-title {
    padding: unset;
  }
  ul.tag li {
    font-size: unset;
    padding: 0 5px;
  }
  .keyword {
    display: block;
    margin: 0 auto;
  }
  .prof-wrap {
    padding: 1rem;
  }
  .bg-page .innerPage .article-wrap .article-info {
    padding: 1rem 0;
  }
  .back-btn a::after {
    left: 40px;
  }
}