@charset "UTF-8";

/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
*,
*::after,
*::before {
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
}

main {
  display: block;
  padding-top: 80px;
  background: #E5E5E5;
}

button {
  color: #000;
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

figure {
  margin: 0 0 0.5em;
}

a,
a:link {
  color: inherit;
  outline: none;
}

img {
  vertical-align: bottom;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.wrap {
  max-width: 1000px;
  width: calc(100% - 40px);
  margin: 0 auto;
}

.pm_btn {
  text-align: center;
}

.pm_btn a {
  font-size: 1.6rem;
  line-height: 1;
  color: #fff;
  display: inline-block;
  position: relative;
  padding: 12px 16px;
  width: 100%;
  max-width: 320px;
  background: #3C3C41;
}

.pm_btn a::after {
  content:"";
  display: block;
  position: absolute;
  top: 50%;
  right: 19px;
  width: 47px;
  height: 6px;
  background: url(../img/common/icon_arrow_white.svg) center / contain no-repeat;
  transform: translateY(-50%);
}

@media screen and (min-width: 897px) {
  body.fixed {
    position: relative;
  }
  
  a:hover {
    opacity: .7;
  }
}

@media screen and (max-width: 896px) {
  .wrap {
    width: 89.333333333%;
  }
}

/*------------------------------------------------------------
	header
------------------------------------------------------------*/
#hd {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 4px rgba(0,0,0,.08);
}

#hd .wrap {
  padding: 20px 0;
  max-width: 1400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#hd .logo a {
  letter-spacing: -1em;
}

#hd .logo img {
  letter-spacing: normal;
  width: auto;
}

#hd .logo img + img {
  margin-left: 15px;
}

#hd .gnavi_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#hd .gnavi_list_li {
  line-height: 1;
  margin-left: 40px;
}

#hd .gnavi_list_li:first-child {
  margin-left: 0;
}

#hd .gnavi_list_li a {
  font-weight: 500;
  font-size: 1.2rem;
  color: #3c3c41;
  display: block;
}

@media screen and (max-width: 896px) {
  #hd {
    overflow: hidden;
  }

  #hd .wrap {
    align-items: center;
    padding: 0 5.333333333%;
    width: 100%;
    max-width: 100%;
    height: 80px;
  }

  #hd .logo {
    align-self: flex-end;
  }

  #hd .logo a {
    display: flex;
    flex-direction: column;
  }

  #hd .logo img {
    width: 194px;
  }

  #hd .logo img + img {
    margin: 6px 0 8px;
    width: 119px;
  }

  #hd .gnavi {
    position: fixed;
    top: 0;
    left: 100%;
    padding: 83px 0 200px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .9);
    overflow-y: scroll;
    transition: .3s;
  }

  #hd.menu_open .gnavi {
    left: 0;
  }

  #hd .gnavi_list {
    display: block;
    margin: 0 auto;
    width: 78.666666666%;
  }

  #hd .gnavi_list_li {
    margin-left: 0;
  }

  #hd .gnavi_list_li a {
    font-size: 1.6rem;
    color: #fff;
    position: relative;
    padding: 15px 0;
    border-bottom: 1px solid #fff;
  }

  #hd .gnavi_list_li a::after {
    content:"";
    display: block;
    position: absolute;
    top: 50%;
    right: 2px;
    width: 7px;
    height: 7px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: translateY(-50%) rotate(45deg);
  }
  
  #hd .gnavi_list_li_sp {
    margin-top: 60px;
  }
  
  #hd .gnavi_list_li_sp .gnavi_logo {
    max-width: 258px;
  }
  
  #hd .gnavi_list_li_sp .gnavi_logo a {
    display: block;
  }
  
  #hd .gnavi_list_li_sp address {
    font-style: normal;
    color: #fff;
    margin-top: 11px;
  }
  
  #hd .gnavi_list_li_sp .address_txt {
    font-size: 1.4rem;
    line-height: 1;
  }
  
  #hd .gnavi_list_li_sp .address_img {
    margin: 21px 0 8px;
    max-width: 231px;
  }
  
  #hd .gnavi_list_li_sp .addoress_img a {
    display: block;
  }
  
  #hd .gnavi_list_li_sp .sns_list {
    display: flex;
    margin-top: 31px;
  }
  
  #hd .gnavi_list_li_sp .sns_list li {
    width: 50px;
  }
  
  #hd .gnavi_list_li_sp .sns_list li:nth-of-type(n+2) {
    margin-left: 15px;
  }
  
  #hd .gnavi_list_li_sp .sns_list li a {
    display: block;
  }
  
  #hd .menu_btn {
    width: 70px;
  }

  #hd .menu_btn span {
    display: block;
    margin: 9px 0 0 auto;
    width: 100%;
    height: 1px;
    background: #000;
    transition: .3s;
  }

  #hd .menu_btn span:nth-of-type(1) {
    margin-top: 0;
  }

  #hd .menu_btn span:nth-of-type(2) {
    width: 50px;
  }

  #hd .menu_btn span:nth-of-type(3) {
    width: 30px;
  }

  #hd.menu_open .menu_btn {
    width: 28px;
  }

  #hd.menu_open .menu_btn span {
    width: 28px;
    background: #fff;
  }

  #hd.menu_open .menu_btn span:nth-of-type(1) {
    transform: translateY(10px) rotate(-45deg);
  }

  #hd.menu_open .menu_btn span:nth-of-type(2) {
    opacity: 0;
  }

  #hd.menu_open .menu_btn span:nth-of-type(3) {
    transform: translateY(-10px) rotate(45deg);
  }
}

/*------------------------------------------------------------
    footer
------------------------------------------------------------*/
#ft {
  position: relative;
  background: #fff;
}

#ft::before,
#ft::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 259px;
  height: 112px;
  background: url(../img/common/ft_flag.svg) center / cover;
}

#ft::before {
  left: 0;
}

#ft::after {
  right: 0;
  transform: scale(-1, 1);
}

#ft .wrap {
  display: flex;
  justify-content: space-between;
  padding: 268px 0 43px;
}

#ft .box01 {
  width: 38.8%;
}

#ft .box01 .ft_logo a {
  display: block;
}

#ft .box01 address {
  font-style: normal;
  color: #3c3c41;
  margin-top: 8px;
}

#ft .box01 .address_txt {
  font-size: 1.8rem;
  line-height: 1.66666666666;
}

#ft .box01 .address_img {
  margin: 28px 0 1px;
  width: 92.268041237%;
}

#ft .box01 .address_img a {
  display: block;
}

#ft .box02 {
  width: 55.6%;
}

#ft .box02 .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#ft .box02 .list li {
  text-align: center;
  width: 49.100719424%;
}

#ft .box02 .list li:nth-of-type(n+3) {
  margin-top: 10px;
}

#ft .box02 .list a {
  font-size: 1.6rem;
  line-height: 1;
  color: #3c3c41;
  display: block;
  position: relative;
  z-index: 1;
  padding: 21px 0;
  border: 1px solid #C4C4C4;
  background: #fff;
  transition: .3s;
  overflow: hidden;
}

#ft .box02 .sns_list {
  display: flex;
  margin-top: 21px;
}

#ft .box02 .sns_list li {
  width: 50px;
}

#ft .box02 .sns_list li:nth-of-type(n+2) {
  margin-left: 15px;
}

#ft .box02 .sns_list a {
  display: block;
}

#ft .copy {
  font-size: 1.2rem;
  line-height: 1;
  color: #fff;
  text-align: center;
  padding: 19px 0;
  background: #3c3c41;
}

@media screen and (min-width: 897px) {
  #ft .box02 .list a:hover {
    color: #fff;
    opacity: 1;
  }
  
  #ft .box02 .list a::after {
    content:"";
    position: absolute;
    bottom: 0;
    left: -10%;
    z-index: -1;
    width: 0;
    height: 120%;
    transition: .3s;
    transform: skewX(15deg);
  }
  
  #ft .box02 .list a:hover::after {
    left: -10%;
    width: 120%;
    background: #C4C4C4;
  }
}

@media screen and (max-width: 896px) {
  #ft::before,
  #ft::after {
    width: 136px;
    height: 59px;
  }

  #ft .wrap {
    display: block;
    padding: 102px 0 46px;
    width: 84%;
  }

  #ft .box01 {
    width: 100%;
  }

  #ft .box01 .ft_logo {
    max-width: 258px;
  }

  #ft .box01 address {
    margin-top: 13px;
  }

  #ft .box01 .address_img {
    margin: 13px 0 0;
    width: 100%;
    max-width: 289px;
  }

  #ft .box02 {
    margin-top: 45px;
    width: 100%;
  }

  #ft .box02 .list {
    display: block;
  }

  #ft .box02 .list li {
    width: 100%;
  }

  #ft .box02 .list li:nth-of-type(n+2) {
    margin-top: 10px;
  }

  #ft .box02 .sns_list {
    justify-content: center;
    margin-top: 35px;
  }

  #ft .copy {
    font-size: 1rem;
    padding: 15px 0;
  }
}

/* -----------------
    fv_wrap
-------------------- */
#fv_wrap .inner {
  display: flex;
  flex-direction: row-reverse;
}

#fv_wrap .movie_box {
  width: calc(100% - 41.666666666%);
}

#fv_wrap .movie_box video {
  display: flex;
  width: 100%;
  height: auto;
}

#fv_wrap .box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 41.666666666%;
  background: url(../img/index/fv_bg_img.svg) right top / 303px auto no-repeat #2A9EE9;
}

#fv_wrap .box .txt_box .ttl span {
  display: block;
}

#fv_wrap .box .txt_box .ttl_jp {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.5;
  color: #fff;
}

#fv_wrap .box .txt_box .ttl_en {
  margin-top: 11px;
  width: 370px;
}

#fv_wrap .box .txt_box .txt {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.875;
  color: #fff;
  margin-top: 15px;
}

@media screen and (max-width: 1440px) {
  #fv_wrap .box {
    background: url(../img/index/fv_bg_img.svg) right top / 21.041666666vw auto no-repeat #2A9EE9;
  }
  
  #fv_wrap .box .txt_box .ttl_jp {
    font-size: 1.666666666vw;
  }

  #fv_wrap .box .txt_box .ttl_en {
    margin-top: .763888888vw;
    width: 25.694444444vw;
  }

  #fv_wrap .box .txt_box .txt {
    font-size: 1.111111111vw;
    margin-top: 1.041666666vw;
  }
}

@media screen and (max-width: 896px) {
  #fv_wrap .inner,
  #fv_wrap .movie_box video {
    display: block;
  }

  #fv_wrap .movie_box {
    width: 100%;
  }

  #fv_wrap .box {
    display: block;
    padding: 42px 8% 46px;
    width: 100%;
    background: url(../img/index/fv_bg_img.svg) right top / 189px auto no-repeat #2A9EE9;
  }

  #fv_wrap .box .txt_box .ttl_jp {
    font-size: 2rem;
    line-height: 1;
  }

  #fv_wrap .box .txt_box .ttl_en {
    margin-top: 16px;
    width: 100%;
    max-width: 296px;
  }

  #fv_wrap .box .txt_box .txt {
    font-size: 1.6rem;
    margin-top: 16px;
  }
}

/* -----------------
    des_wrap
-------------------- */
#des_wrap {
  position: relative;
  padding-top: 240px;
}

#des_wrap .abs_box {
  position: absolute;
  top: -20px;
  left: 50%;
  z-index: 1;
  width: 100%;
  max-width: 820px;
  background: #fff;
  box-shadow: 0 10px 20px 0 rgba(0,0,0,.12);
  transform: translateX(-50%);
}

#des_wrap .abs_box .box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 19px 29px 20px;
}

#des_wrap .abs_box figure {
  width: 15.364916773%;
}

#des_wrap .abs_box .txt_wrap {
  width: 81.434058898%;
}

#des_wrap .abs_box .ttl {
  font-weight: 700;
  font-size: 2.1rem;
  line-height: 1.47619047619;
  color:  #3c3c41;
}

#des_wrap .abs_box .txt {
  font-size: 1.6rem;
  line-height: 1.5;
  color:  #3c3c41;
  margin-top: 4px;
}

#des_wrap .pm_btn a {
  padding: 22px 0;
}

@media screen and (max-width: 896px) {
  #des_wrap {
    padding-top: 433px;
  }

  #des_wrap .abs_box {
    max-width: 84%;
  }

  #des_wrap .abs_box .box {
    display: block;
    padding: 20px 6.349206349% 21px;
  }

  #des_wrap .abs_box figure {
    margin: 0 auto;
    width: 120px;
  }

  #des_wrap .abs_box .txt_wrap {
    width: 100%;
  }

  #des_wrap .abs_box .ttl {
    font-size: 2rem;
    line-height: 1.5;
    margin-top: 20px;
  }

  #des_wrap .abs_box .txt {
    margin-top: 12px;
  }

  #des_wrap .pm_btn a {
    padding: 20.5px 0;
    max-width: 300px;
  }
}

/* -----------------
page_link_wrap
-------------------- */
#page_link_wrap {
  margin-top: 80px;
}

#page_link_wrap .ttl .btn_acd {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.5;
  pointer-events: none;
}

#page_link_wrap .box {
  margin-top: 20px;
  padding: 40px 4%;
  background: #fff;
}

#page_link_wrap .box .list + .list {
  margin-left: 4.347826086%;
}

#page_link_wrap .box .list li {
  font-size: 1.4rem;
  line-height: 1.85714285714;
  border-bottom: 1px solid #DCDCDC;
}

#page_link_wrap .box .list a {
  color: #3C3C41;
  display: flex;
  position: relative;
}

#page_link_wrap .box .list a::before {
  content:"▼";
}

#page_link_wrap .box .list .maker_txt {
  display: inline-block;
  margin: 0 18px 0 9px;
}

#page_link_wrap .box .list01 .maker_txt {
  min-width: 143px;
}

#page_link_wrap .box .list02 .maker_txt {
  min-width: 70px;
}

@media screen and (min-width: 897px) {
  #page_link_wrap .box {
    display: flex!important;
  }
}

@media screen and (max-width: 896px) {
  #page_link_wrap {
    margin-top: 30px;
  }
  
  #page_link_wrap .wrap {
    width: 86.666666666%;
  }

  #page_link_wrap .ttl .btn_acd {
    font-weight: 400;
    font-size: 1.3rem;
    line-height: 1;
    color: #3C3C41;
    display: block;
    position: relative;
    margin: 0 auto;
    padding: 20px 0 19px;
    width: 100%;
    max-width: 300px;
    border: 1px solid #3c3c41;
    background: #fff;
    pointer-events: auto;
  }

  #page_link_wrap .ttl .btn_acd::after {
    content:"";
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 9px 5px 0 5px;
    border-color: #3c3c41 transparent transparent transparent;
    transform: translateY(-50%);
    pointer-events: none;
    transition: .3s;
  }

  #page_link_wrap .ttl.open .btn_acd::after {
    transform: translateY(-60%) rotate(180deg);
  }

  #page_link_wrap .box {
    display: none;
    margin-top: 10px;
    padding: 0;
    background: transparent;
  }

  #page_link_wrap .box .list + .list {
    margin-left: 0;
  }

  #page_link_wrap .box .list li {
    font-size: 1.2rem;
    line-height: 2.16666666666;
  }

  #page_link_wrap .box .list .maker_txt {
    margin: 0 10px 0 4px;
    min-width: 123px;
  }
}

/* -----------------
model_house_wrap
-------------------- */
#model_house_wrap {
  margin-top: 60px;
  padding-bottom: 120px;
}

#model_house_wrap .ttl {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.5;
}

#model_house_wrap .random_list {
  margin-top: 20px;
}

#model_house_wrap .random_list > li {
  display: flex;
  justify-content: space-between;
}

#model_house_wrap .random_list > li:nth-of-type(n+2){
  margin-top: 6%;
}

#model_house_wrap .random_list .box01 {
  display: flex;
  flex-direction: column;
  padding: 10px 0 20px;
  width: 32%;
  background: #fff;
}

#model_house_wrap .random_list .box01 .logo {
  margin: 0 auto;
  width: 93.75%;
  min-height: 0%;/* ie11 */
}

#model_house_wrap .random_list .box01 .sttl {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
  color: #3c3c41;
  margin: auto auto 0;
  padding-bottom: 9px;
  width: 87.5%;
  border-bottom: 1px solid #DCDCDC;
}

#model_house_wrap .random_list .box01 .ssttl {
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.125;
  letter-spacing: -.03em;
  color: #3c3c41;
  margin: 9px auto auto;
  width: 87.5%;
}

#model_house_wrap .random_list .box01 .sml_ssttl {
  font-size: 1.6rem;
}

#model_house_wrap .random_list .box01 .img_box {
  margin: auto;
  width: 87.5%;
  min-height: 0%;/* ie11 */
}

#model_house_wrap .random_list .box01 .img_box .vr_btn {
  margin: 15px auto 0;
  width: 50%;
}

#model_house_wrap .random_list .box01 .img_box .vr_btn a {
  display: block;
}

#model_house_wrap .random_list .box01 .pm_btn {
  margin-top: auto;
}

#model_house_wrap .random_list .box01 .pm_btn a {
  text-align: left;
  width: 87.5%;
  max-width: 100%;
}

#model_house_wrap .random_list .box02 {
  width: 67.5%;
}

#model_house_wrap .random_list .img_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#model_house_wrap .random_list .img_list li {
  margin-top: 5px;
  width: 32.888888888%;
}

#model_house_wrap .random_list .img_list li:first-of-type {
  margin-top: 0;
  width: 100%;
}

#model_house_wrap .random_list .img_list li:nth-of-type(3) {
  width: 32.74074074%;
}

#model_house_wrap .note {
  font-size: 1.2rem;
  line-height: 1;
  color: #3C3C41;
  text-align: right;
  margin-top: 9.5%;
}

#model_house_wrap .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 13px;
}

#model_house_wrap .list::before,
#model_house_wrap .list::after {
  content:"";
  width: 23.5%;
}

#model_house_wrap .list::before {
  order: 1;
}

#model_house_wrap .list li {
  width: 23.5%;
}

#model_house_wrap .list li:nth-of-type(n+5) {
  margin-top: 2%;
}

#model_house_wrap .list + .pm_btn {
  margin-top: 6%;
}

#model_house_wrap .list + .pm_btn a {
  padding: 22px 0;
}

@media screen and (max-width: 896px) {
  #model_house_wrap {
    padding-bottom: 80px;
  }

  #model_house_wrap .random_list {
    margin-top: 0;
  }

  #model_house_wrap .random_list > li {
    display: block;
  }

  #model_house_wrap .random_list > li:nth-of-type(n+2){
    margin-top: 11.940298507%;
  }

  #model_house_wrap .random_list .box01 {
    display: block;
    padding: 20px 0 10px;
    width: 100%;
  }

  #model_house_wrap .random_list .box01 .sttl {
    margin: 0 auto;
    width: 94.029850746%;
  }

  #model_house_wrap .random_list .box01 .ssttl {
    margin: 9px auto 0;
    width: 94.029850746%;
  }

  #model_house_wrap .random_list .box01 .img_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 11px auto 0;
    width: 94.029850746%;
  }

  #model_house_wrap .random_list .box01 .img_box figure {
    width: 62.857142857%;
  }

  #model_house_wrap .random_list .box01 .img_box .vr_btn {
    margin: 0;
    width: 33.968253968%;
  }

  #model_house_wrap .random_list .box01 .pm_btn {
    margin-top: 20px;
  }

  #model_house_wrap .random_list .box01 .pm_btn a {
    width: 94.029850746%;
    max-width: 315px;
  }

  #model_house_wrap .random_list .box02 {
    width: 100%;
  }

  #model_house_wrap .random_list .img_list li {
    margin-top: .895522388%;
    width: 32.889552238%;
  }

  #model_house_wrap .random_list .img_list li:nth-of-type(3) {
    width: 32.740298507%;
  }

  #model_house_wrap .note {
    margin-top: 25.373134328%;
  }

  #model_house_wrap .list {
    margin-top: 10px;
  }

  #model_house_wrap .list::before,
  #model_house_wrap .list::after {
    display: none;
  }

  #model_house_wrap .list li {
    width: 48.656716417%;
  }

  #model_house_wrap .list li:nth-of-type(n+3) {
    margin-top: 2.985074626%;
  }

  #model_house_wrap .list + .pm_btn {
    margin-top: 80px;
  }

  #model_house_wrap .list + .pm_btn a {
    padding: 20.5px 0;
    max-width: 300px;
  }
}