@charset "utf-8";

/* 共通 */
/*body {
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue","Mplus 1p", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}*/

body {
  font-family: -apple-system, blinkMacSystemFont, /* Macの欧文はSan Francisco (OS X 10.11以降) */
               'Helvetica Neue', /* Macの欧文 (OS X 10.10以前) */
               'Segoe UI',       /* Windowsの欧文 */
               YuGothicM,        /* Windows8.1以上は游ゴシック */
               YuGothic,         /* Macの游ゴシック */
               Meiryo,           /* 游ゴシックが入っていないWindows */
               sans-serif;
}

/* Windows */
@font-face {
  font-family: YuGothicM;
  font-weight: normal;
  src: local('YuGothic-Medium'),  /* Mediumを明示的に指定 */
       local('Yu Gothic Medium'), /* Chrome用 */
       local('YuGothic-Regular'); /* Windows8.1ではMediumがないのでRegularを指定 */
}
@font-face {
  font-family: YuGothicM;
  font-weight: bold;
  src: local('YoGothic-Bold'), /* Boldはそのまま */
       local('Yu Gothic');     /* Chrome用 */
}

.hide {
    text-indent:100%;
    white-space:nowrap;
    overflow:hidden;
}
.flex-box {
  box-sizing:border-box;
  display:flex;
}

/* #index */
body {
    width:100%;
    height:100vh;
    background:url(../img/top_1820.jpg) no-repeat center/cover fixed;
}
.outwrapper {
    min-height:100%;
  min-width:100%;
  width:910px;
  background-color:rgba(0,0,0,0.7);
  color:#fff;
  box-sizing:border-box;
  padding-bottom: 40px;
}
.up1 {
  overflow:hidden;
}
.up1 figure img {
  transition:0.3s;
}
.up1:hover figure img {
  transform:scale(1.1);
}
.up2 {
  transition:0.3s
}
.up2:hover {
  opacity:0.6;
}

/* デフォルト：980px以上用（PC用）の記述 */
@media screen and (max-width: 767px) {
  body {
    background:url(../img/top_910.jpg) no-repeat center left/cover fixed;
  }
}
@media screen and (max-width: 375px) {
  body {
    background:url(../img/top_364.jpg) no-repeat center left/cover fixed;
  }
}

/* .nav */
#nav {
  width:100%;
  padding:20px 0;
  background-color:rgba(0,0,0,0.7);
  color:#fff;
  z-index:1000;
}
#nav ul {
  max-width:910px;
  margin:auto;
  display:flex;
  flex-wrap:wrap;
  justify-content:space-around;
  text-align:center;
}
#index #nav {
  position:absolute;
  bottom:20vh;
}
#item #nav,#part #nav {
  position:fixed;
  top:0;
}
.tbutton {
  display:block;
  padding: 5px;
  text-align: center;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: .3s;
  box-sizing:border-box;
}
.tbutton:after {
  position: absolute;
  transition: .3s;
  content: '';
  width: 0;
  left: 50%;
  bottom: 0;
  height: 2px;
  background: #ffffff;
  right: 0;
  left: auto;
  overflow: hidden;
}
.item_list {
    padding:0 10px;
    box-sizing:border-box;
}
#nav li:nth-of-type(1) .tbutton:after {
  max-width:74px;
}
#nav li:nth-of-type(2) .tbutton:after {
  max-width:106px;
}
.sns li:nth-of-type(1) .tbutton:after {
  max-width:79px;
}
.sns li:nth-of-type(2) .tbutton:after {
  max-width:89px;
}
.sns li:nth-of-type(3) .tbutton:after {
  max-width:99px;
}
.tbutton:hover:after {
  width: 100%;
  left: 0;
}

/* .footer */
footer {
  padding:0 0 20px;
  box-sizing:border-box;
}
#part .youtube_wrap {
    padding:200px 0 20px;
}
.on_link a {
    max-width:500px;
    padding:10px;
    margin:auto;
    border:2px solid #fff;
    font-size:20px;
    font-weight:bold;
    border-radius:5px;
    display:block;
    text-align:center;
    text-transform: uppercase;
  position: relative;
  transition: .3s;
  overflow: hidden;
  z-index:1;
}
.on_link a::after {
  position: absolute;
  transition: 0.3s;
  content: '';
  width: 0;
  bottom: 0;
  height: 3px;
  background: #ffffff;
  height: 120%;
  z-index: -1;
  right: 0;
    left: auto;
}
.on_link a:hover {
  color: #000000;
}
.on_link a:hover::after {
  width: 100%;
  left: 0;
}


.sns {
    display:flex;
    justify-content:space-around;
    max-width:910px;
    margin:40px auto;
}
.copyright {
    text-align:center;
    background-color:rgba(0,0,0,0.8);
    padding:10px;
}

/* .top */
#index .ielogo {
  display:none;
}
#index #header .logo,#index #header .logo img {
  position:absolute;
  top:35%;bottom:auto;right:0;left:0;
  margin:auto;
  width:100%;
  max-width:500px;
}
#index .catch {
  position:absolute;
  top:20vh;right:0;left:0;
  text-align:center;
  font-weight:bold;
  font-size:18px;
}

/* .item */
#item,#part {
  min-width:767px;
}
#item #header,#part #header {
  padding:100px 0 50px;
  box-sizing:border-box;
}
#item h1,#part h1 {
  width:40%;
  border: 1px solid #fff;
  text-align:center;
  margin: auto;
  padding:10px 0;
  font-size:18px;
  font-weight:bold;
}
table {
  border-collapse: collapse;
  width:100%;
  max-width:1020px;
  margin:auto;
    table-layout: fixed;
}
tr,th,td {
    box-sizing:border-box;
}
tr {
  background:rgba(0,0,0,0.5);
}
th,td {
  border:1px solid #fff;
  box-sizing:border-box;
  line-height:1.2;
  font-size:12px;
  text-align:center;
}
th {
  font-weight:bold;
    width:95px;
}
.row01 {
  background:transparent;
}
.row01 th,.row01 td {
  border:none;
  position:relative;
  padding:5px 0;
  font-weight:bold;
}
.row01 td::before,.row01 th::before {
  box-sizing:border-box;
  content: '';
  position: absolute;
  left:auto;right:-1px;top:0;bottom:0;
  margin:auto;
  display: inline-block;
  width: 1px;/*線の長さ*/
  height: calc(1em + 10px);/*線の太さ*/
  background-color: #ffffff;/*線の色*/
  z-index:100;
}
.row01 span {
  display:block;
  width:100%;
  padding:5px 0;
  box-sizing:border-box;
  z-index:101;
}
.row01col02 span {
  background:#435173;
}
.row01col03 span {
  background:#3e574a;
}
.row01col04 span {
  background:#924e45;
}
.row01col05 span {
  background:#7d8185;
}
.row02 {
  background:rgba(0,0,0,0.8);
  font-weight:bold;
}
.row02 td {
  text-align:left;
    padding:5px;
    box-sizing:border-box;
}
.itto span {
  display:block;
}
.row03 td {
    padding:5px;
}
.row03 {
    vertical-align:top;
}
.row03 figure img {
  max-width:80px;
  padding:8px 0;
  width:100%;
}
.row03 p {
  text-align:left;
  line-height:1.4;
}
.row0303 td {
    text-align:left;
    vertical-align:top;
}
.item-btn01,.item-btn02,.item-btn03 {
  cursor:pointer;
}
.item-btn01.btn-on {
  color:#0f0;
}
.item-div {
  padding:5px 8px;
  line-height:1.4;
}
.row {
  padding:0;
}
.row tr,.row th,.row td {
  margin:0;padding:0;
}
.row04,.row05,.row06 {
  background:rgba(0,0,0,0.8);
}
.row04 td,.row05 td,.row06 td {
  position:relative;
}
.row04 td p,.row05 td p,.row06 td p {
    font-weight:bold;
    font-size:14px;
    padding:15px 10px;
    box-sizing:border-box;
    display:block;
}
.arrow01,.arrow02,.arrow03 {
  position:absolute;
  top:0;bottom:0;right:-150px;left:0;
  margin:auto;
  width:0;
  height:0;
  border-right: 8px solid transparent;
  border-top: 8px solid #fff;
  border-left: 8px solid transparent; 
  transition:0.6s;
}
.arrow02 {
  right:-250px;
}
.arrow01.btn-on,.arrow02.btn-on,.arrow03.btn-on {
  transform:rotate(-180deg);
}
/*.row-item01 {
  display:table-row;
}*/
.row-item03 td {
    text-align:left;
    vertical-align:top;
    font-size:12px;
    line-height:1.4;
}
.rowlas {
    background:rgba(0,0,0,0.9);
}
.rowlas td {
    font-weight:bold;
    padding:10px 0;
  font-size:10px;
}
.rowlas a.tbutton {
  width:70px;
  margin:auto;
  padding:5px 0;
}

/* .part */
.part_list {
  width:910px;
  margin:0 auto 190px;
  position:relative;
}
.house {
  text-align:center;
  min-height:360px;
  position:relative;
}
.house img {
  position:absolute;
  top:0;bottom:0;right:0;left:0;
  margin:auto;
  display:block;
}
.atn span {
  width:400px;
  display:block;
  font-size:12px;
  line-height:1.4;
  margin:15px auto;
}
.part_item {
  width:910px;
  margin:auto;
  display:flex;
  justify-content:flex-start;
  flex-wrap:wrap;
  position:absolute;
}

.part_01 {
  top:424px;
}
.part_02 {
  top:535px;
}
.part_03 {
  top:646px;
}


.part_item li {
  width:calc((100% - ( 23px * 3 ) ) / 4 );
  box-sizing:border-box;
  margin-right:23px;
  margin-bottom:23px;
}
.part_item li a {
  display:block;
  padding:10px;
  background:rgba(0,0,0,0.7);
  color:#fff;
  transition:0.3s;
  box-sizing:border-box;
  outline:5px solid transparent;
}
.part_01_li_01 a,.part_01_li_02 a,.part_01_li_03 a,.part_01_li_04 a {
  border:5px solid #53648d;
}
.part_02_li_01 a {
  border:5px solid #075542;
}
.part_02_li_02 a {
  border:5px solid #924e45;
}
.part_03_li_01 a,.part_03_li_02 a,.part_03_li_03 a,.part_03_li_04 a {
  border:5px solid #626262;
  height: 105px;
}
.part_item li:hover a {
  outline:5px solid #fff;
}
.part_item li:nth-child(4n) {
  margin-right:0;
}
.part_item li p:nth-child(1) {
  font-size:20px;
  font-weight:bold;
}

.part_item li p:nth-child(1)::after {
  display:block;
  margin:10px auto;
  content:'';
  width:100%;
  height:2px;
  background:#fff;
}
.part_detail {
  width:910px;
  max-width:100%;
  margin:auto;
  box-sizing:border-box;
  position:absolute;
  top:0;
  left:0;
}
.part_detail>li {
  display:flex;
  justify-content:space-between;
  height:535px;
}
.part_detail_left,.part_detail_right {
  width:300px;
  box-sizing:border-box;
  padding:10px;
  background:rgba(0,0,0,0.7);
  height:350px;
}
.part_list0101,.part_list0102,.part_list0201,.part_list0202,.part_list0301,.part_list0302,.part_list0401,.part_list0402 {
  border:5px solid #53648d;
}
.part_list0401 {
  height:360px;
}
.part_list0501,.part_list0502 {
  border:5px solid #075542;
}
.part_list0601,.part_list0602 {
  border:5px solid #924e45;
}
.part_list0701,.part_list0702,.part_list0801,.part_list0802,.part_list0901,.part_list0902,.part_list1001,.part_list1002 {
  border:5px solid #626262;
}
.part_detail_left {
  display:flex;
  flex-wrap:wrap;
  justify-content:space-around;
}
.part_detail_left .detail_top_figure {
  width:30%;
  padding:0 10px 10px 0;
  box-sizing:border-box;
}
.part_detail_left .detail_top {
  width:70%;
}
.detail_top p {
  font-size:18px;
  font-weight:bold;
  margin-bottom:10px;
}
.detail_top ul {
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
}
.detail_top li {
  width:calc((100% - 10px) / 2);
  margin-bottom:10px;
  border-radius:5px;
  display:inline-block;
  text-align:center;
  font-size:14px;
  padding:3px 0;
}
.part_detail01 .detail_top li,.part_detail02 .detail_top li,.part_detail03 .detail_top li,.part_detail04 .detail_top li {
  background:#53648d;
}
.part_detail05 .detail_top li {
  background:#075542;
}
.part_detail06 .detail_top li {
  background:#924e45;
}
.part_detail07 .detail_top li,.part_detail08 .detail_top li,.part_detail09 .detail_top li, .part_detail10 .detail_top li{
  background:#626262;
}
.detail_top li:nth-child(2n+1) {
  margin-right:10px;
}
.part_detail_left .detail_middle {
  width:100%;
  padding:10px 0;
  box-sizing:border-box;
  font-size:14px;
}
.detail_middle p:nth-child(1) {
  margin-bottom:10px;
}
.detail_middle span {
  font-weight:bold;
    /*line-height:1.6;*/
}
.part_detail_left .detail_bottom {
  display:flex;
  justify-content:space-between;
}
.detail_bottom figure {
  width:47%;
}

.part_list0901 .detail_bottom {
    height:120px;
}

.part_detail_right p {
  line-height:1.4;
  font-size:14px;
}
.part_detail_right p:nth-child(1) {
  margin-bottom:10px;
}
.part_detail_right span {
  font-weight:bold;
}
.part_border {
  display:block;
  position:absolute;
  width:100%;
  height:655px;
  top:0;
  margin:auto;
}
.border {
  display:none;
}

.border {
  position:absolute;
  width:100%;
  height:655px;
}
.part_border01 {
  background:url(../img/border01.png) no-repeat center top/contain;
}
.part_border02 {
  background:url(../img/border02.png) no-repeat center top/contain;
}
.part_border03 {
  background:url(../img/border03.png) no-repeat center top/contain;
}
.part_border04 {
  background:url(../img/border04.png) no-repeat center top/contain;
}
.part_border05 {
  background:url(../img/border05.png) no-repeat center top/contain;
}
.part_border06 {
  background:url(../img/border06.png) no-repeat center top/contain;
}
.part_border07 {
  background:url(../img/border07.png) no-repeat center top/contain;
}
.part_border09 {
  background:url(../img/border09.png) no-repeat center top/contain;
}

/* z-index */
.house {
  z-index:100;
}
.part_detail>li {
  z-index:101;
}
.part_border {
  z-index:102;
}
.part_detail_left,.part_detail_right {
  z-index:103;
}
.part_item {
  z-index:200;
}
.sp_on {
  display:none;
}
.detail_top p.little_title {
  font-size:18px;
}
.part_detail_left .detail_middle.little_text {
  font-size:12px;
} 



/* youtube */
.youtube_wrap {
  padding:0 20px;
  box-sizing:border-box;
  max-width: 820px;
  margin: auto;
}
.youtube_wrap h3 {
  width: 100%;
  max-width: 820px;
  margin: 100px auto 50px;
  text-align: center;
  font-size: 38px;
}
.youtube2 {
position: relative;
width: 100%;
  max-width:820px;
  margin:0 auto 100px;
padding:0 0 56.25%;
}
.youtube2 iframe {
position: absolute;
top: 0;
right: 0;
width: 100% !important;
height: 100% !important;
}

/* banner */
.banner {
  width: 100%;
  max-width: 650px;
  margin: 0 auto 30px;
}
.banner a:hover {
  opacity:0.8;
}


/* 768px以下 */
@media screen and (max-width: 767px) {
  .outwrapper {
    width:100%;
    background-color:rgba(0,0,0,0.9);
  }
  body::before {
    background:url("../img/top_910.jpg") no-repeat left top;
    background-size: auto 100vh;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-bottom: 108px;
    content: "";
    z-index: -1;
  }   
  #part {
    width:100%;
    min-width:100%;
  }
  .house,.atn span,.part_item,.part_border {
    display:none;
  }
  .sp_on {
    display:block;
  }
  .part_list {
    width:100%;
  }
  .part_detail>li {
    display:block;
    height:auto;
    margin-bottom:50px;
    box-sizing:border-box;
  }
  .part_detail {
    position:static;
    width:100%;
  }
  .part_detail_left,.part_detail_right {
    width:98%;
    height:auto;
    margin:5px auto;
    box-sizing:border-box;
    background:none;
  }
  .part_list {
    margin-bottom:0;
  }
  .sp_on a {
    display:block;
    margin:20px auto;
    font-size:20px;
    font-weight:bold;
    text-align:center;
  }
  .part_list0101,.part_list0102,.part_list0201,.part_list0202,.part_list0301,.part_list0302,.part_list0401,.part_list0402,.part_list0501,.part_list0502,.part_list0601,.part_list0602,.part_list0701,.part_list0702,.part_list0801,.part_list0802,.part_list0901,.part_list0902,.part_list1001,.part_list1002 {
  border:none;
}
  .part_detail01,.part_detail02,.part_detail03,.part_detail04 {
  border:5px solid #53648d;
    margin:5px 5px 10px;
  }
  .part_detail05 {
  border:5px solid #075542;
    margin:5px 5px 10px;
  }
  .part_detail06 {
  border:5px solid #924e45;
    margin:5px 5px 10px;
  }
  
  .part_detail07,.part_detail08,.part_detail09,.part_detail10 {
  border:5px solid #626262;
    margin:5px 5px 10px;
  }
  .item_sp_wrap_top{
    margin-top: 50px;
  }
  .item_sp_wrap{
    padding: 0px 10px;
    overflow-x: scroll;
    margin-bottom: 40px;
  }
  .con03_hikaku{
    max-width: 980px;
    margin: 0;
    box-sizing: border-box;
    border-collapse: collapse;
  }
  .con03_hikaku th, .con03_hikaku td {
    border: 1px solid #fff;
    padding: 15px 15px;
    font-size: 14px;
    text-align: center;
    line-height: 1.2;
}
.item_list_link{
  position: relative;
}
.item_list_link::before{
  display: block;
  content: "";
  background-image: url(../img/icon_cart.png);
  width: 20px;
  height: 20px;
  position: absolute;
  background-size: contain;
  right: 4px;
  background-repeat: no-repeat;
  bottom: 2px;
}
.item_list_link a{
margin: 0px;
}
.item_list_link a figure{
  width: 54%;
  margin: 0 auto;
}
.item_list_link a span{
  font-size: 0.6em;
  font-weight: bold;
  margin-top: 10px;
  display: block;
  line-height: 20px;
  color: #6eafff;
  text-decoration: underline;
}
.item_sp_wrap h2{
  padding: 10px 0px;
  text-align: center;
  margin-bottom: 20px;
  font-size: 18px;
}
.item_ti_suisei{
  background: #435173;
}
.sp_off{
  display: none;
}
.item_ti_jakyouzai{

  background: #3e574a;
}
.item_ti_sabidome{
  background: #924e45;
}
.item_ti_sitadi{
  background: #7d8185;
}
.item_sho_more{
  display: flex;
  width: 55%;
  height: 50px;
  background-color: #fff;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: #000;
  margin: 0 auto;
  font-weight: bold;
}
#index #header .logo, #index #header .logo img {
  position: absolute;
  top: 35%;
  bottom: auto;
  right: 0;
  left: 0;
  margin: auto;
  width: 95%;
  max-width: 500px;
}
.item_list_ti{
  width: 40%;
  border: solid 1px #fff;
  color: #fff;
  font-size: 18px;
  text-align: center;
  margin: 320px auto 0px auto;
  padding: 10px 0px;
}
}