@charset "utf-8";

/**
 *
 *  ページ用CSS
 *　index
 */

/*--------------------------------------------------------------------------
   Overwright
---------------------------------------------------------------------------*/

/*--------------------------------------------------------------------------
   Content
---------------------------------------------------------------------------*/

/* 共通見出し
-----------------------------------------------------------------*/

.content_ttl span{
  text-align: center;

}
.content_ttl{
  text-align: center;
  font-size: 3.4rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 3%;
}

/* Mv
-----------------------------------------------------------------*/

/* #Mv{
  position: relative;
  z-index: -1;
}
#Mv .cap{
  position: absolute;
  right: 3rem;
  bottom: 1rem;
}

.Section {
  position: relative;
}
.Section.first {height: 130svh;}
.Section.second {height: 130svh; isolation: isolate;}
.Section__Inner {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip: rect(auto, auto, auto, auto);
}
.Section-Image {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: center;
}
.Section.first .Section-Image{
    background-image: url(../img/top/mv01_pc.webp);
    transition: .3s;
}
.Section.first.in .Section-Image{
    background-image: url(../img/top/mv02_pc.webp);
}
@media screen and (max-width: 768px) {
  .Section.first .Section-Image{
    background-image: url(../img/top/mv01_sp.webp);
    transition: .3s;
}
.Section.first.in .Section-Image{
    background-image: url(../img/top/mv02_sp.webp);
}
}
.contents_area{
  position: absolute;
  width: 100svw;
  height: 100svh;
} */

/* 見出し */

/* .contents_area::after{
  content: '';
  position: fixed;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top left;
  width: 11%;
  height: 50%;
  border-radius: 7px;
  z-index: 1;
}
.first .contents_area.con01::after{
  background-image: url(../img/top/mv01_txt.svg);
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.first.in .contents_area.con01::after{
  opacity: 0;
}
.Section.in .contents_area.con01_2::after{
  background-image: url(../img/top/mv02_txt.svg);
  z-index: 1;
  top: 50%;
  left: 80%;
  transform: translate(-80%, -50%);
  -webkit-transform: translate(-80%, -50%);
  -ms-transform: translate(-80%, -50%);
} */

#Mv{position: relative;}
#Mv .wappen{
  position: absolute;
  z-index: 100;
  top: 80px; left: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(255,255,255,.2);
  padding: 12px;
  width: 158px;
}
#Mv .wappen p{
  text-align: center;
  color: var(--light);
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.2;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
}
#Mv .wappen span{
  font-size: 190%;
  text-align: center;
  letter-spacing: 7px;
  padding-left: 2px;
}

#Mv .mv_area{
  width: 100%;
  height: 100svh;
}
.mv_area li.mv_item{
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
  height: 100svh;
}
.mv_area li.mv_item:nth-of-type(1){
  background-image: url(../img/top/mv01_pc.webp);
}
.mv_area li.mv_item:nth-of-type(2){
  background-image: url(../img/top/mv02_pc.webp);
}
.mv_area li.mv_item:nth-of-type(1) h1,
.mv_area li.mv_item:nth-of-type(2) h1{
  position: absolute;
  width: 11%;
}
.mv_area li.mv_item:nth-of-type(1) h1{
    top: 40%;
    left: 50%;
    transform: translate(-50%, -40%);
    -webkit-transform: translate(-50%, -40%);
    -ms-transform: translate(-50%, -40%);
}
.mv_area li.mv_item:nth-of-type(2) h1{
    top: 50%;
    left: 80%;
    transform: translate(-80%, -50%);
    -webkit-transform: translate(-80%, -50%);
    -ms-transform: translate(-80%, -50%);
}

.dots-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
	position: absolute;
    bottom: 16px;
    right: 16px;
    z-index: 10;
}
.dots-wrap li {
    width: 9px;
    height: 60px;
    margin: 0 5px;
    background: var(--light);
    cursor: pointer;
}
.dots-wrap li.slick-active {
    background: var(--gold);
}
@media (hover: hover) {
  .dots-wrap li:hover {
    background: var(--lgold);
}
}
.dots-wrap li:nth-of-type(1) {border-radius: 18px 18px 0 0;}
.dots-wrap li:nth-of-type(2) {border-radius: 0 0 18px 18px;}
.dots-wrap li button {
    display: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding: 0;
    border: none;
    background-color: transparent;
}



/* バー */
.contents_area::before{
  content: '';
  position: fixed;
  bottom: 2.4rem;
  right: 2.4rem;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top left;
  width: 8px;
  height: 140px;
  border-radius: 7px;
  z-index: 1;
  transition: .3s;
}
.first .contents_area.con01::before{
  background-image: url(../img/top/mv_bar1.svg);
  z-index: 1;
}
.first.in .contents_area.con01::before{
  opacity: 0;
}
.Section.in .contents_area.con01_2::before{
  background-image: url(../img/top/mv_bar2.svg);
  z-index: 1;
}


/* obi
-----------------------------------------------------------------*/

.obi {
  position: relative;
  z-index: 1;
  background: url(../img/common/bg_b.png), var(--merit);
  padding: 2.4rem .8rem;
}
/* .obi ul {
  max-width: 1340px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.obi li {
  flex-basis: 50%;
  text-align: center;
  color: var(--dark);
  font-size: 3.2rem;
  line-height: 1.3;
  font-weight: 400;
  min-height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.obi li:nth-of-type(1),
.obi li:nth-of-type(2) {border-bottom: 1px solid rgba(0, 0, 0, 0.30);}
.obi li:nth-of-type(1),
.obi li:nth-of-type(3) {border-right: 1px solid rgba(0, 0, 0, 0.30);} */

.obi ul {
  max-width: 700px;
  margin: auto;
  flex-direction: column;
  text-align: center;
}
.obi li {
  flex-basis: 100%;
  width: 100%;
  font-size: 4.0rem;
  min-height: auto;
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.30);
}


.obi span {
  color: var(--gold);
}
.obi small {
  font-size: 50%;
  display: block;
}
.obi li .s{
  font-size: 3.8rem;
  display: inline;
  vertical-align: bottom;
}
.obi li:nth-of-type(3){
      line-height: 1.4;
}
.obi li:nth-of-type(3) span {
  font-size: 140%;
  font-weight: 600;
  vertical-align: bottom;
  line-height: 1.1;
}
.obi li:nth-of-type(4){
  display: block;
  line-height: 1.3;
  border: none;
}
.obi li:nth-of-type(4) span{
  font-size: 120%;
  font-weight: 600;
  vertical-align: bottom;
}

.obi_cv{
  margin-top: 3.2rem;
}
.obi_cv_ttl{
  text-align: center;
  font-size: 5rem;
    font-weight: 400;
    text-align: center;
    line-height: 1.65;
    margin-bottom: 2.4rem;
}


/* oricon
-----------------------------------------------------------------*/

.oricon {
  position: relative;
  z-index: 1;
  background: url(../img/common/bg.png), var(--gra_brown);
  padding: 9.6rem 0;
  color: var(--light);
}


/* コンテンツ共通見出し
-----------------------------------------------------------------*/

.content_ttl{
  writing-mode: vertical-rl;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem 0 ;
  position: absolute;
  min-height: 400px;
}
.content_ttl .en{
  font-size: 1.8rem;
  letter-spacing: 2px;
  font-weight: 400;
  line-height: 1;
  padding-top: .8rem;
}
.content_ttl .ja{
  font-size: 4rem;
  letter-spacing: 3px;
  font-weight: 500;
  line-height: 1.3;
}
.content_ttl.w .en{color: var(--lgold);}
.content_ttl.b .en{color: var(--gold);}
.content_ttl.w .ja{color: var(--light);}
.content_ttl.b .ja{color: var(--dark);}
.content_main_txt{
  width: 100%;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  writing-mode: vertical-rl;
  padding-bottom: 3.2rem;
  text-orientation: upright;
}
.content_main_txt p{
  font-size: 3.2rem;
  letter-spacing: 8px;
}
.content_main_txt p span{
  display: block;
}
.content_main_txt p small{
  font-size: 90%;
}
.content_main_txt p span.num {
  -webkit-text-combine: horizontal;
  -ms-text-combine-horizontal: all;
  text-combine-upright: all;
  font-size: 120%;
  display: inline;
}


/* concept
-----------------------------------------------------------------*/

.concept{
  position: relative;
  overflow: hidden;
  width: 100svw; min-height: 100svh;
  padding: 12% 0;
  z-index: 1;
  color: var(--light);
}
.concept::before{
  position: absolute;
content: "";
display: block;
width: 100%;
height: 100%;
top: 0; left: 0;
background-image: url(../img/top/bg_concept.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  -webkit-transition: all 8s ease-out;
  -moz-transition: all 8s ease-out;
  -ms-transition: all 8s ease-out;
  transition: all 8s ease-out;
  z-index: -1;
  -moz-transform: scale(1.0);
-webkit-transform: scale(1.0);
-ms-transform: scale(1.0);
transform: scale(1.0);
}
/* .concept.view::before{
  -moz-transform: scale(1.2);
-webkit-transform: scale(1.2);
-ms-transform: scale(1.2);
transform: scale(1.2);
} */
@media (hover: hover) {
  .concept:has(.btn_area:hover)::before{
  -moz-transform: scale(1.2);
-webkit-transform: scale(1.2);
-ms-transform: scale(1.2);
transform: scale(1.2);
}
}

.concept .content_ttl{
  top: 16%; right: 12%;
}
.concept .content_main_txt{
  min-height: 550px;
}
.concept .content_main_txt p span:nth-of-type(2){
  padding-top: 178px;
}


/* contents_block 共通
-----------------------------------------------------------------*/

.contents_block{
  position: relative;
  padding: 4% 0;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.img_block{
  flex-basis: 50%;
  width: 50%;
  overflow: hidden;
}
.img_block img{
  height: auto;
  transition: transform 8s ease;
  -moz-transform: scale(102);
-webkit-transform: scale(1.0);
-ms-transform: scale(1.0);
transform: scale(1.0);
}
/* .img_block.view img{
  -moz-transform: scale(1.2);
-webkit-transform: scale(1.2);
-ms-transform: scale(1.2);
transform: scale(1.2);
} */
@media (hover: hover) {
  .contents_block:has(.btn_area:hover) .img_block img{
  -moz-transform: scale(1.2);
-webkit-transform: scale(1.2);
-ms-transform: scale(1.2);
transform: scale(1.2);
}
}
.txt_block{
  flex-basis: 50%;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* 白背景 */

.contents_block.white{
  background: url(../img/common/bg_b.png), var(--gra_gold);
}
.white .img_block{
  margin-left: 5svw;
}
.white .content_ttl{
  top: 14%; right: 8%;
}
.white .txt_block{
  margin-right: 4svw;
}

/* 黒背景 */

.contents_block.black{
  background: url(../img/common/bg.png), var(--gra_brown);
  flex-direction: row-reverse;
  color: var(--light);
}
.black .img_block{
  margin-right: 5svw;
}
.black .content_ttl{
  top: 14%; left: 8%;
}
.black .txt_block{
  margin-left: 4svw;
}

/* map
-----------------------------------------------------------------*/

.map{
  position: relative;
  z-index: 1;
  background: var(--gra_beige);
  padding: 16rem 0;
}
.map h3{
  text-align: center;
  color: var(--dark);
  font-size: 3.6rem;
  font-weight: 400;
  line-height: 1.3;
}
.map h3 small{
  display: block;
  color: var(--gold);
  font-size: 50%;
}
.map_img_wrap{
  max-width: 600px;
  margin: 4.8rem auto ;
}
.map_datel_wrap{
  background: var(--brown);
  color: var(--light);
  padding: 1.6rem;
}
.map_datel{
  max-width: 500px;
  margin: auto;
}
.map_datel .addess{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 .8rem;
}
.map_datel .addess p:nth-of-type(1){
  font-size: 2.4rem;
}
.map_datel .addess p:nth-of-type(2){
  font-size: 1.3rem;
  line-height: 1.2;
}
.map_datel .mapcode{
  background: var(--light);
  padding: 1.6rem 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 1.6rem;
  line-height: 1;
}
.map_datel .mapcode .img{}
.map_datel .mapcode .num{
  color: var(--brown);
  font-size: 3.2rem;
}
.map_datel .map_cap{
  font-size: 1.2rem;
}




/* news
-----------------------------------------------------------------*/
/* .news .content_ttl span img{
  max-width: 200px;
  margin: auto;
  display: block;
}
.news{
  padding: 4% 0;
}
.news .inner{
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
}
.news .inner h2{
  flex-basis: 40%;
  border-right: 1px solid #000;
}
.news .inner h2.content_ttl{
  margin-bottom: 0;
}
.news-list{
  flex-basis: 57%;
}
.news-list > div{
  padding: 20px 0;
  border-bottom: 1px solid #b3b3b3;
}
.news-list dt{
  margin-bottom: 5px;
  font-size: 1.6rem;
  padding: 20px 0 0;
}
.news-list dt span{
  padding-left: 1em;
  font-size: 1.4rem;
  line-height: 2;
  color: #830516; 
}
.news-list dd{
  padding-bottom: 20px;
  font-size: 1.4rem;
  line-height: 1.6;
}
.news-list a:link, .news-list a:visited {
  color: #5E534D;
} */



/* ashita no katachi
-----------------------------------------------------------------*/

.ashita{
  position: relative;
  background: #FFF;
background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(250, 246, 239, 1) 60%, rgba(234, 225, 209, 1) 100%);
  padding: 14rem 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}
/* .ashita::before{
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 70%;
  background: url(../img/top/bg_ashita.jpg) no-repeat center bottom / cover;
  z-index: -1;
  opacity: .15;
} */
.ashita::after{
  content: "";
  background: url(../img/top/pat_ashita.svg) repeat left top;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.ashita ._wrapper{
  content: "";
  width: 100%;
  height: 20vh;
  position: absolute;
  left: 0;
  bottom: 0px;
  z-index: -1;
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);}

.ashita .inner{
  max-width: 1240px;
}
.ashita h2{
  text-align: center;
  margin: 0 auto 4rem;
}
.ashita ._inner{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4%;
}
.ashita ._inner .txt{
  width: 38%;
}

.ashita ._inner .txt h3{
  font-size: 3rem;
  margin-bottom: 2rem;
  margin-left: -0.5em;
}
.ashita ._inner .txt p{
  font-size: 2rem;
  line-height: 2.5;
  text-align: justify;
}

.ashita .case{
  text-align: center;
  margin: 8rem auto 0;
}
.ashita .case h3{
  font-size: 3.2rem;
  margin-bottom: 1rem;
}
.ashita .case p.txt{
  font-size: 2rem;
  margin-bottom: 5rem;
}
.ashita .case p.bnr{
  max-width: 690px;
  margin: auto;
}

.concept_movie_text {
  margin-top:75px;
}
.concept_movie_button {
  width:62%;
  position:relative;
}
.concept_movie_button a {
  position:relative;
  display:block;
}
.concept_movie_button img {
  width:100%;
}
.concept_movie_button img:nth-child(2) {
  width:8.06vw;
  position:absolute;
  left:calc(50% - 4.03vw);
  top:calc(50% - 4.03vw);
  animation: rotateCircle 20s linear infinite;
}
@keyframes rotateCircle {
  0% {
    transform:rotate(0deg);
  }
  100% {
    transform:rotate(360deg);
  }
}
@media (hover: hover) {
.concept_movie_button a.hover { opacity:1; }
}
.concept_movie_button a:before {
  content:"";
  background:rgba(0,0,0,0.3);
  width:100%;
  height:100%;
  position:absolute;
  left:0;
  top:0;
  display:block;
  transition: background 0.4s ease;
}
@media (hover: hover) {
.concept_movie_button a.hover:before { background:rgba(0,0,0,0.4); }
}
.concept_movie_button a:after {
  content:"";
  background:url(../img/top/all_movie_button.svg) no-repeat center / 4.4vw 4.4vw;
  width:4.4vw;
  height:4.4vw;
  position:absolute;
  left:50%;
  top:50%;
  transform: translate(-50%,-50%);
  z-index:2;
  display:block;
  transition: transform 0.4s ease;
  border-radius:50%;
}
@media (hover: hover) {
.concept_movie_button a.hover:after { transform:translate(-50%,-50%) scale(1.1); }
}

.all_modal_movie {
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  opacity: 0;
  z-index: 15;
  transform: translateX(-100%);
  transition: opacity 0.4s ease, transform 0s 0.4s ease;
}
.all_modal_movie._open {
  opacity: 1;
  transform: translateX(0%);
  transition: opacity 0.4s ease, transform 0s ease;
}
.all_modal_movie:after {
  content: "";
  background: rgba(34, 33, 46, 0.96);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
}
.all_modal_movie ._inner {
  width: 90%;
  max-width: 1000px;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%,-50%);
}
.all_modal_movie ._inner div {
  padding-top: 56.25%;
  position: relative;
}
.all_modal_movie iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.all_modal_movie ._close {
  width: 50px;
  height: 50px;
  position: absolute;
  right: 0;
  top: -60px;
  background: none;
  border: none;
  cursor: pointer;
}
.all_modal_movie ._close:before,
.all_modal_movie ._close:after {
  content: "";
  background: #F8F8F2;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  top: 25px;
  display: block;
  transform: rotate(45deg);
}
.all_modal_movie ._close:after {
  transform: rotate(-45deg);
}

.case .sns_ttl{
  font-weight: 600;
  font-size: 3.6rem;
  line-height: 1.6;
  margin: 12rem 0 1rem;
}

@media screen and (min-width: 769px) and (max-width: 1050px) {
  .ashita ._inner .txt{
    width: 46%;
  }
  .concept_movie_button {
    width: 52%;
  }
  .concept_movie_button img:first-child {
    height: 300px;
    width: 100%;
    object-fit: cover;
  }
}



/*--------------------------------------------------------------------------
   mobile
---------------------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  
/*--------------------------------------------------------------------------
   Content
---------------------------------------------------------------------------*/


.cv-side,.btn-trigger{
  visibility: hidden;
  opacity: 0;
  transform: translateY(10%);
  transition: .5s;
}

.cv-side.view,
.btn-trigger.view{
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}



/* 共通見出し
-----------------------------------------------------------------*/

.content_ttl span{
  text-align: center;

}
.content_ttl{
  text-align: left;
  font-size: 3.4rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 8%;
}


#Mv .cap{
  font-size: 1rem;
  right: 1rem;
}

/* Mv
-----------------------------------------------------------------*/

/* #Mv{
  position: relative;
  z-index: -1;
}
#Mv .cap{
  position: absolute;
  right: 3rem;
  bottom: 1rem;
}

.Section {
  position: relative;
}
.Section.first {height: 130svh;}
.Section.second {height: 130svh; isolation: isolate;} */


/* 見出し */

/* .contents_area::after{
  content: '';
  position: fixed;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top left;
  width: 34%;
  height: 50%;
  border-radius: 7px;
  z-index: 1;
}
.first .contents_area.con01::after{
  background-image: url(../img/top/mv02_txt.svg);
  z-index: 1;
  top: 34%;
  left: 50%;
  transform: translate(-50%, -34%);
  -webkit-transform: translate(-50%, -34%);
  -ms-transform: translate(-50%, -34%);
}
.first.in .contents_area.con01::after{
  opacity: 0;
}
.Section.in .contents_area.con01_2::after{
  top: 34%;
  left: 50%;
  transform: translate(-50%, -34%);
  -webkit-transform: translate(-50%, -34%);
  -ms-transform: translate(-50%, -34%);
} */

/* バー */
/* .contents_area::before{
  bottom: 0.8rem;
  right: 1.6rem;
  width: 6px;
  height: 95px;
} */


#Mv .wappen{
  left: unset;
  top: 1.6rem; right: 1.6rem;
  padding: 5px 8px;
  width: fit-content;
}
#Mv .wappen p{
  font-size: .9rem;
  text-shadow: none;
}
#Mv .wappen span{
  font-size: 180%;
}

.mv_area li.mv_item:nth-of-type(1){
  background-image: url(../img/top/mv01_sp.webp);
  background-position: bottom center;
}
.mv_area li.mv_item:nth-of-type(2){
  background-image: url(../img/top/mv02_sp.webp);
  background-position: bottom center;
}
.mv_area li.mv_item:nth-of-type(1) h1,
.mv_area li.mv_item:nth-of-type(2) h1{
  position: absolute;
  width: 32%;
}
.mv_area li.mv_item:nth-of-type(1) h1{
    top: 24%;
    left: 50%;
    transform: translate(-50%, -24%);
    -webkit-transform: translate(-50%, -24%);
    -ms-transform: translate(-50%, -24%);
}
.mv_area li.mv_item:nth-of-type(2) h1{
    top: 24%;
    left: 50%;
    transform: translate(-50%, -24%);
    -webkit-transform: translate(-50%, -24%);
    -ms-transform: translate(-50%, -24%);
}

.dots-wrap li {
    width: 6px;
    height: 40px;
}



/* obi
-----------------------------------------------------------------*/

.obi {
  position: relative;
  z-index: 1;
  background: url(../img/common/bg_b.png), var(--merit);
  padding: 3.2rem 20px 4.0rem;
}
.obi ul {
  max-width: 100%;
  flex-direction: column;
}
.obi li {
  flex-basis: 100%;
  width: 100%;
  font-size: 2.4rem;
  min-height: auto;
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.30);
}
.obi li:nth-of-type(1),
.obi li:nth-of-type(2) {border-bottom: 1px solid rgba(0, 0, 0, 0.30);}
.obi li:nth-of-type(1),
.obi li:nth-of-type(3) {border-right: none;}

.obi small {
  font-size: 50%;
  display: block;
}
.obi li .s{
  font-size: 2.0rem;
}
.obi_cv{
  margin-top: 3.2rem;
}
.obi_cv_ttl{
  font-size: 2.8rem;
  line-height: 1.3;
}


/* oricon
-----------------------------------------------------------------*/

.oricon {
  position: relative;
  z-index: 1;
  background: url(../img/common/bg.png), var(--gra_brown);
  padding: 6.4rem 0;
  color: var(--light);
}


/* コンテンツ共通見出し
-----------------------------------------------------------------*/

.content_ttl{
  gap: .8rem 0 ;
  min-height: auto;
}
.content_ttl .en{
  font-size: 1.3rem;
  padding-top: .4rem;
}
.content_ttl .ja{
  font-size: 2.4rem;
}
.content_main_txt{
  width: 100%;
  min-height: auto;
  padding-bottom: 3.2rem;
  writing-mode:unset;
}
.content_main_txt p{
  font-size: 2.2rem;
  letter-spacing: 2px;
}
.content_main_txt p span{
  display: block;
}
.content_main_txt p small{
  font-size: 90%;
}
.content_main_txt p span.num {
  font-size: 140%;
  line-height: 1.3;
}


/* concept
-----------------------------------------------------------------*/

.concept{
  padding: 12% 0;
}

.concept .content_ttl{
  top: 12% !important;
  right: 20px !important;
}
.concept .content_main_txt{
  min-height: 480px !important;
  padding-top: 20% !important;
  writing-mode: vertical-rl !important;
}
.concept .content_main_txt p{
  font-size: 3.2rem !important;
}
.concept .content_main_txt p span:nth-of-type(2){
  padding-top: 134px !important;
}




/* contents_block 共通
-----------------------------------------------------------------*/

.contents_block{
  padding: 17% 0;
  display: block;
}
.img_block{
  width: 100%;
}
.txt_block{
  width: 100%;
  display: block;
}

/* 白背景 */

.white .img_block{
  width: 72%;
  margin-left: 20px;
}
.white .content_ttl{
          top: 8%;
        right: 20px;
}
.white .txt_block{
  margin-right: 0;
  padding: 3.2rem 20px 0;
}

/* 黒背景 */

.black .img_block{
  margin-right: 0;
  margin-left: 20px;
  width: 72%;
}
.black .content_ttl{
    top: 8%;
    right: 20px;
    left: unset;
}
.black .txt_block{
  margin-left: 0;
  padding: 3.2rem 20px 0;
}

/* modelhouse
-----------------------------------------------------------------*/

.modelhouse .img_block{
  width: 62%;
}

/* map
-----------------------------------------------------------------*/

.map{
  padding: 8rem 0;
}
.map h3{
  font-size: 3.2rem;
}
.map h3 small{
  font-size: 50%;
}
.map_img_wrap{
  margin: 2.4rem auto 4.8rem ;
}
.map_datel_wrap{
  padding: 1.6rem;
}
.map_datel{
  max-width: 100%;
}
.map_datel .addess{
  display: block;
  gap: .8rem 0 ;
  text-align: center;
}
.map_datel .addess p:nth-of-type(1){
  font-size: 2.4rem;
}
.map_datel .addess p:nth-of-type(2){
  font-size: 1.1rem;
  line-height: 1.2;
  padding-bottom: 1.6rem;
}
.map_datel .mapcode{
  padding: .8rem 1.6rem;
  gap: 0 .8rem;
}
.map_datel .mapcode .img{width: 70px;}
.map_datel .mapcode .num{
  color: var(--brown);
  font-size: 2.2rem;
  line-height: 1.2;
}
.map_datel .map_cap{
  font-size: 1.1rem;
  padding-top: .8rem;
  line-height: 1.3;
}




/* news
-----------------------------------------------------------------*/
/* .news .content_ttl span img{
  max-width: 200px;
  margin: auto;
  display: block;
}
.news{
  padding: 45px 0 50px;
  background-color: #FFFFFF;
}
.news .inner{
  display: block;
}
.news .inner h2.content_ttl{
  margin-bottom: 8%;
}
.news .inner h2{
  border-right: none;
}
.news-list{
}
.news-list > div{
  padding: 20px 0;
  border-bottom: 1px solid #b3b3b3;
}
.news-list dt{
  margin-bottom: 5px;
  font-size: 1.6rem;

  padding: 20px 0 0;
}
.news-list dt span{
  padding-left: 1em;
  font-size: 1.4rem;
  line-height: 2;
  color: #830516; 
}
.news-list dd{
  padding-bottom: 20px;
  border-bottom: 1px solid #b3b3b3;
  font-size: 1.4rem;
  line-height: 1.6;
} */



/* ashita no katachi
-----------------------------------------------------------------*/

.ashita{
  padding: 7rem 0 0;
}
.ashita::before{
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 75%;
  background: url(../img/top/bg_ashita.jpg) no-repeat center top / cover;
  z-index: -1;
  opacity: .15;
}
.ashita::after{
  content: "";
  background: url(../img/top/pat_ashita.svg) repeat left top;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.ashita ._wrapper{
  content: "";
  width: 100%;
  height: 20vh;
  position: absolute;
  left: 0;
  bottom: 0px;
  z-index: -1;
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);}


.ashita h2{
  width: 96%;
  text-align: center;
  margin: 0 auto 4rem;
}
.ashita ._inner{
  flex-direction: column;
  gap: 3rem;
}
.ashita ._inner .txt{
  width: 100%;
}
.ashita ._inner .txt h3{
  font-size: 2.2rem;
  margin-bottom: 1rem;
  margin-left: -0.5em;
}
.ashita ._inner .txt p{
  font-size: 1.5rem;
  line-height: 2;
}

.ashita .case{
  margin: 5rem auto 0;
}
.ashita .case h3{
  font-size: 2.2rem;
  margin-bottom: 1rem;
  padding-bottom: 1.6rem;
}
.ashita .case p.txt{
  font-size: 1.5rem;
  margin-bottom: 3rem;
}
.ashita .case p.bnr{
  max-width: 690px;
  margin: auto;
}
.ashita .case p.bnr2{
  max-width: 230px;
}
.case .sns_ttl{
  margin-top: 5rem;
}
.case .sns_ttl span{
  margin-right: 0;
}
.case .sns_ttl span img{
  width: 28px;
}

.concept_movie_button {
  width:62%;
  position:relative;
}
.concept_movie_button a {
  position:relative;
  display:block;
}
.concept_movie_button img {
  width:100%;
}
.concept_movie_button img:nth-child(2) {
  width:8.06vw;
  position:absolute;
  left:calc(50% - 4.03vw);
  top:calc(50% - 4.03vw);
  animation: rotateCircle 20s linear infinite;
}
@keyframes rotateCircle {
  0% {
    transform:rotate(0deg);
  }
  100% {
    transform:rotate(360deg);
  }
}
.concept_movie_button a:before {
  content:"";
  background:rgba(0,0,0,0.3);
  width:100%;
  height:100%;
  position:absolute;
  left:0;
  top:0;
  display:block;
  transition: background 0.4s ease;
}
.concept_movie_button a.hover:before { background:rgba(0,0,0,0.4); }
.concept_movie_button a:after {
  content:"";
  background:url(../img/top/all_movie_button.svg) no-repeat center / 4.4vw 4.4vw;
  width:4.4vw;
  height:4.4vw;
  position:absolute;
  left:50%;
  top:50%;
  transform: translate(-50%,-50%);
  z-index:2;
  display:block;
  transition: transform 0.4s ease;
  border-radius:50%;
}
.concept_movie_button a.hover:after { transform:translate(-50%,-50%) scale(1.1); }



/* sns
-----------------------------------------------------------------*/

.sns{
  padding: 80px 10px 30px;
}
.sns::after{
  height: 66%;
}

.case {
  border-radius: 0 0 2rem 2rem;
  padding: 0 0 4.0rem;
}
.case .txt{
  margin: 0 auto 4rem;
}
.case .txt .sns_ttl{
  font-size: 2.4rem;
}
.case .txt p {
  text-align: center;
  font-size: 1.5rem;
}
.case .instalogo{
  max-width: 220px;
}

.case .bx-wrapper {
  margin-bottom: 0;
  border: none;
}
.case .bx-wrapper ul{
  margin: 2rem auto 0;
}

.case .bx-wrapper ul li {
  width: 80%;
}
.case .bx-wrapper ul li img {
  max-width: 100%;
}
.case .bx-wrapper .bx-next {
  right: 0px;
  background: url(../img/top/next.png);
}
.case .bx-wrapper .bx-prev {
  left: 0;
  background: url(../img/top/prev.png);
}
.case .bx-wrapper .bx-next,
.case .bx-wrapper .bx-prev {
  background-size: 32px 70px;
}


.case ul li a {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.case ul li a:before{
  content: "";
  display: block;
  padding-top: 100%;
}
.case ul li img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  object-fit: cover;
}






/* map
-----------------------------------------------------------------*/
/* 
.map{
  padding: 60px 0 30px;
  background-color: #EFECE4;
}
.map .content_ttl span img{
  max-width: 200px;
  margin: auto;
  display: block;
}
.pic-map img {
  max-width: none;
  width: 160%;
  height: auto;
}

.map h2 + .txt{
  margin-bottom: 40px;
  font-size: 1.7rem;
  text-align: center;  
}
.map .instruction{
  padding:10px 20px 0;
  background: #5E534D;
  color: #fff;  
}
.map .instruction .txt{
  padding-top: 10px;
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 1.9rem;
  line-height: 1.4;
  text-align: center;
}
.map .pic-map.pc {
  position: relative;
}
.map .pic-map.pc .big-ico {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 60px;
  z-index: 2;
}
.map .note{
  font-size: 1.2rem;
  line-height: 1.5;  
  color: #fff;
  padding: 0 5%;
}
.map .inner{
  background: #5E534D;
  padding: 0 0 5%;
}
.map .mapcode{
  background: #fff;
  margin: 0 3% 5%;
  padding: 3% 6%;
}
.map .mapcode dt{
  margin-bottom: 10px;
  padding-bottom: 3px;
  border-bottom: 2px dotted #5E534D;
  text-align: center;
  color: #5E534D;
  font-size: 1.9rem;
  font-weight: bold;
}
.map .mapcode dd{
  padding-bottom: 15px;
  text-align: center;  
}
.map .google-map iframe{
  width: 100%;  
  height: 480px;
}
.map .google-map p{
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 8% 0 2%;
}
.map_wrap{
  display: block;
  padding: 0;
  margin: 10% auto 0;
}
.mapcode div{
  display: block;
}
.mapcode div:last-child{
  border-top: none;
    padding-top: 0;
}

  .map .pic-map{
    width: 100%;
    writing-mode: vertical-rl;
  }
  .map .pic-map img{
    max-width: none;
    width: 160%;
    height: auto; 
  } */



}


/* slider 
-----------------------------------------------------------------*/
/* 
.slick-kukaku{
  max-width: 1000px;
  margin: 3% auto 0;
}
.slick-kukaku .slick-slide{
  margin-right: .5vw!important;
  margin-left: .5vw!important;
}
.slick-kukaku .slick-dots {
  bottom: 10px;
  display: none;
}
.slick-kukaku .slick-dots li button:before {
  width: 8px;
  height: 8px;
  content: '';
  opacity: 1;
  border: 1px solid #5E534D;
  background-color: #fff;
  border-radius: 50%;
}
.slick-kukaku .slick-dots li.slick-active button:before {
  border: 1px solid #5E534D;
  background-color: #5E534D;
  box-sizing: border-box;
}
.slick-kukaku .slick-dotted.slick-slider {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .slick-kukaku{
    max-width: 100%;
    margin: 8% auto 0;
  }
  .slick-kukaku .slick-dots {
    bottom: -40px;
    display: none;
  }
} */


@media screen and (max-width: 640px) {
  .concept ._inner{
    background-size: 120vw auto, 70vw auto
  }

  .concept_movie {
    height: calc(100vh - 222px - 80px)
  }

  .concept_movie_text {
    font-family: "Jost",sans-serif
  }

  .concept_movie_button {
    width: 100dvw;
  }

  .concept_movie_button img:nth-child(2) {
    top: calc(50% - 13.0666666667vw);
    left: calc(50% - 13.0666666667vw);
    width: 26.1333333333vw;
  }

  .concept_movie_button a::after {
    width: 14.4vw;
    height: 14.4vw;
    background-size: contain
  }
}