@charset "UTF-8";
/*

base.css

*/

@media screen and (max-width: 1920px) {
}
@media screen and (max-width: 1800px) {
}
@media screen and (max-width: 1700px) {
}
@media screen and (max-width: 1600px) {
}
@media screen and (max-width: 1500px) {
}
@media screen and (max-width: 1400px) {
}
@media screen and (max-width: 1300px) {
}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 1100px) {
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 900px) {
}
@media screen and (max-width: 768px) {
}

/* ========================================

html

======================================== */
html {
  font-size: 62.5%;
}

/* ========================================

font-family

======================================== */
* {
  font-family: "Murecho", sans-serif;
}
.font_A1Gothic_L {
  font-family: "Murecho", sans-serif;
}
.font_A1Gothic_M {
  font-family: "Murecho", sans-serif;
}
.font_A1Gothic_R {
  font-family: "Murecho", sans-serif;
}
.font_A1Gothic_B {
  font-family: "Murecho", sans-serif;
}

/* ========================================

display__pc / sp

======================================== */
.display__pc {
  display: block;
}
.display__sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .display__pc {
    display: none;
  }
  .display__sp {
    display: block;
  }
}

/* ========================================

body

======================================== */
body {
  font-size: 1.6rem;
}

/* ========================================

fade in / out

======================================== */
.fadein {
  transform: translateY(30px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s, visibility 1s, transform 1s;
}
.fadein_delay_02s {
  transform: translateY(30px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s, visibility 1s, transform 1s;
  transition-delay: 0.1s;
}
.fadein_delay_04s {
  transform: translateY(30px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s, visibility 1s, transform 1s;
  transition-delay: 0.2s;
}
.fadein_delay_06s {
  transform: translateY(30px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s, visibility 1s, transform 1s;
  transition-delay: 0.3s;
}
.fadein_delay_08s {
  transform: translateY(30px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s, visibility 1s, transform 1s;
  transition-delay: 0.4s;
}
.fadein_delay_10s {
  transform: translateY(30px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s, visibility 1s, transform 1s;
  transition-delay: 0.5s;
}
.fadein_delay_12s {
  transform: translateY(30px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s, visibility 1s, transform 1s;
  transition-delay: 0.6s;
}
.is-fadein {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

/* ========================================

container_page

======================================== */
.container_page {
  /* position */
  position: relative;
  /* display */
  /* box */
  width: 100%;
  margin: 0;
  /* font */
  /* border */
  /* background */
  /* animation */
  /* etc */
}
@media screen and (max-width: 768px) {
}

/* ========================================

drawer_container

======================================== */
.drawer_container {
  /* position */
  position: fixed;
  top: 0;
  right: -120%;
  /* display */
  opacity: 1;
  z-index: 300;
  overflow-y: scroll;
  /* box */
  width: 100%;
  height: 100vh;
  margin: 0;
  /* font */
  /* border */
  /* background */
  background: linear-gradient(59deg, #1f3a6d, #4aa9ce);
  /* animation */
  transition: all 0.3s linear;
  /* etc */
  pointer-events: none;
}
.drawer_container.active {
  /* position */
  right: 0;
  /* display */
  /* box */
  /* font */
  /* border */
  /* background */
  /* animation */
  /* etc */
  pointer-events: auto;
}
.drawer_container .drawer_header {
  /* position */
  /* display */
  /* box */
  width: 100%;
  padding: 0;
  /* font */
  /* border */
  /* background */
  /* animation */
  /* etc */
}
.drawer_container .drawer_header .logo {
  /* position */
  /* display */
  /* box */
  width: 100%;
  padding: 0.8em 0 0.8em 1em;
  /* font */
  /* border */
  /* background */
  /* animation */
  /* etc */
}
.drawer_container .drawer_header .button_bg {
  /* position */
  position: absolute;
  top: 0;
  right: 0;
  /* display */
  /* box */
  width: 80px;
  height: 80px;
  /* font */
  /* border */
  border: solid 1px #fff;
  border-radius: 0 0 0 100%;
  /* background */
  background: #fff;
  /* animation */
  /* etc */
}
.drawer_container .drawer_header .button {
  /* position */
  /* display */
  /* box */
  width: 41px;
  height: 41px;
  margin: 6px 8px 0 auto;
  /* font */
  /* border */
  /* background */
  /* animation */
  /* etc */
}
.drawer_container .drawer_header .icon-wrap {
  /* position */
  /* display */
  /* box */
  width: 36px;
  height: 30px;
  margin: 0 auto 0px auto;
  /* font */
  /* border */
  /* background */
  /* animation */
  /* etc */
}
.drawer_container .drawer_header .icon {
  /* position */
  position: relative;
  /* display */
  display: inline-block;
  /* box */
  width: 100%;
  height: 100%;
  /* font */
  /* border */
  /* background */
  /* animation */
  /* etc */
}
.drawer_container .drawer_header .icon:before,
.drawer_container .drawer_header .icon:after {
  /* position */
  position: absolute;
  top: 50%;
  left: 50%;
  /* display */
  content: "";
  display: block;
  transform: translate(-50%, -50%);
  /* box */
  width: 90%;
  height: 2px;
  /* font */
  /* border */
  /* background */
  background: #000;
  /* animation */
  transition: all 0.4s;
  /* etc */
}
.drawer_container .drawer_header .icon:before {
  /* position */
  /* display */
  transform: translate(-50%, -50%) rotate(45deg);
  /* box */
  /* font */
  /* border */
  /* background */
  /* animation */
  /* etc */
}
.drawer_container .drawer_header .icon:after {
  /* position */
  /* display */
  transform: translate(-50%, -50%) rotate(-45deg);
  /* box */
  /* font */
  /* border */
  /* background */
  /* animation */
  /* etc */
}
.drawer_container .drawer_header .button p {
  /* position */
  /* display */
  /* box */
  /* font */
  color: #000;
  font-size: 1.2rem;
  text-align: center;
  /* border */
  /* background */
  /* animation */
  /* etc */
}
.drawer_container .gNavi {
  /* position */
  /* display */
  z-index: 300;
  /* box */
  width: 100%;
  padding: 1em 35px;
  /* font */
  /* border */
  /* background */
  /* animation */
  /* etc */
}
.drawer_container .gNavi .gNavi-label {
  /* position */
  position: relative;
  /* display */
  /* box */
  width: 100%;
  margin: 0;
  padding: 1.5em 0 0.5em 0;
  /* font */
  /* border */
  border-bottom: dotted 1px #fff;
  /* background */
  /* animation */
  /* etc */
}
.drawer_container .gNavi .gNavi-label .box_flex {
  /* position */
  /* display */
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  /* box */
  /* font */
  /* border */
  /* background */
  /* animation */
  /* etc */
}
.drawer_container .gNavi .gNavi-label p {
  /* position */
  position: relative;
  /* display */
  /* box */
  /* font */
  /* border */
  /* background */
  /* animation */
  /* etc */
}
.drawer_container .gNavi .gNavi-label p a {
  /* position */
  /* display */
  /* box */
  /* font */
  font-family: "Murecho", sans-serif;
  font-size: 2.4rem; /* 本来は30px */
  color: #fff;
  /* border */
  /* background */
  /* animation */
  /* etc */
}
.drawer_container .gNavi .gNavi-label.new p a {
  /* position */
  /* display */
  /* box */
  /* font */
  color: #fff;
  /* border */
  /* background */
  /* animation */
  /* etc */
}
.drawer_container .gNavi .gNavi-label.new p a::after {
  /* position */
  /* display */
  content: "";
  display: inline-block;
  /* box */
  width: 21px;
  height: 8px;
  margin: 0 0 0 16px;
  /* font */
  /* border */
  /* background */
  background-image: url("../img/common/drawer/gNavi__icon_new.svg");
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: contain;
  /* animation */
  /* etc */
}
.drawer_container .gNavi .gNavi-label.comingsoon p a {
  /* position */
  /* display */
  /* box */
  /* font */
  color: #c2c2c2;
  /* border */
  /* background */
  /* animation */
  /* etc */
}
.drawer_container .gNavi .gNavi-label.comingsoon p a::after {
  /* position */
  /* display */
  content: "";
  display: inline-block;
  /* box */
  width: 61px;
  height: 12px;
  margin: 0 0 -4px 16px;
  /* font */
  /* border */
  /* background */
  background-image: url("../img/common/drawer/gNavi__icon_comingsoon.svg");
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: contain;
  /* animation */
  /* etc */
}
.drawer_container .gNavi .gNavi-label .box_flex .icon-wrap {
  /* position */
  /* display */
  /* box */
  width: 24px;
  height: 24px;
  /* font */
  /* border */
  border: solid 1px #fff;
  border-radius: 50%;
  /* background */
  /* animation */
  /* etc */
}
.drawer_container .gNavi .gNavi-label .box_flex .icon {
  /* position */
  position: relative;
  /* display */
  display: inline-block;
  /* box */
  width: 100%;
  height: 100%;
  /* font */
  /* border */
  /* background */
  /* animation */
  /* etc */
}
.drawer_container .gNavi .gNavi-label .box_flex .icon:before,
.drawer_container .gNavi .gNavi-label .box_flex .icon:after {
  /* position */
  position: absolute;
  top: 50%;
  left: 50%;
  /* display */
  content: "";
  display: block;
  transform: translate(-50%, -50%);
  /* box */
  width: 50%;
  height: 2px;
  /* font */
  /* border */
  /* background */
  background: #fff;
  /* animation */
  transition: all 0.4s;
  /* etc */
}
.drawer_container .gNavi .gNavi-label .box_flex .icon.close:before {
  /* position */
  /* display */
  transform: translate(-50%, -50%) rotate(90deg);
  /* box */
  /* font */
  /* border */
  /* background */
  /* animation */
  /* etc */
}
/*＋、－切り替え*/
.drawer_container .gNavi .gNavi-label .box_flex .icon:before {
  /* position */
  /* display */
  transform: translate(-50%, -50%) rotate(0deg);
  /* box */
  /* font */
  /* border */
  /* background */
  /* animation */
  /* etc */
}

.drawer_container .gNavi .gNavi-label .sNavi {
  /* position */
  /* display */
  display: block;
  /* box */
  width: 100%;
  margin: 0;
  padding: 1em 0 1em 1em;
  /* font */
  /* border */
  /* background */
  /* animation */
  /* etc */
}
.drawer_container .gNavi .gNavi-label .sNavi .sNavi-label {
  /* position */
  /* display */
  /* box */
  width: 100%;
  margin: 0;
  padding: 0 0 0.5em 0;
  /* font */
  /* border */
  /* background */
  /* animation */
  /* etc */
}
.drawer_container .gNavi .gNavi-label .sNavi .sNavi-label:last-child {
  /* position */
  /* display */
  /* box */
  padding: 0;
  /* font */
  /* border */
  /* background */
  /* animation */
  /* etc */
}
.drawer_container .gNavi .gNavi-label .sNavi .sNavi-label p {
  /* position */
  position: relative;
  /* display */
  /* box */
  /* font */
  /* border */
  /* background */
  /* animation */
  /* etc */
}
.drawer_container .gNavi .gNavi-label .sNavi .sNavi-label p a {
  /* position */
  /* display */
  /* box */
  /* font */
  font-family: "Murecho", sans-serif;
  font-size: 1.6rem; /* 本来は20px */
  color: #fff;
  /* border */
  /* background */
  /* animation */
  /* etc */
}
.drawer_container .gNavi .gNavi-label .sNavi .sNavi-label.new p a {
  /* position */
  /* display */
  /* box */
  /* font */
  color: #fff;
  /* border */
  /* background */
  /* animation */
  /* etc */
}
.drawer_container .gNavi .gNavi-label .sNavi .sNavi-label.new p a::after {
  /* position */
  /* display */
  content: "";
  display: inline-block;
  /* box */
  width: 20px;
  height: 8px;
  margin: 0 0 0 16px;
  /* font */
  /* border */
  /* background */
  background-image: url("../img/common/drawer/gNavi__icon_new.svg");
  background-position: bottom left;
  background-size: contain;
  background-repeat: no-repeat;
  /* animation */
  /* etc */
}
.drawer_container .gNavi .gNavi-label .sNavi .sNavi-label.comingsoon p a {
  /* position */
  /* display */
  /* box */
  /* font */
  color: #c2c2c2;
  /* border */
  /* background */
  /* animation */
  /* etc */
}
.drawer_container
  .gNavi
  .gNavi-label
  .sNavi
  .sNavi-label.comingsoon
  p
  a::after {
  /* position */
  /* display */
  content: "";
  display: inline-block;
  /* box */
  width: 61px;
  height: 12px;
  margin: 0 0 -4px 16px;
  /* font */
  /* border */
  /* background */
  background-image: url("../img/common/drawer/gNavi__icon_comingsoon.svg");
  background-position: bottom left;
  background-size: contain;
  /* animation */
  /* etc */
}

/* ========================================

header

======================================== */
.header {
  /* position */
  position: fixed;
  top: 0;
  left: 0;
  /* display */
  z-index: 250;
  /* box */
  width: 100%;
  margin: 0;
  padding: 0;
  /* font */
  /* border */
  /* background */
  /* background-color: transparent; */
  background-color: rgba(255, 255, 255, 0.5);
  /* animation */
  /* etc */
}
.header.bg_white {
  /* position */
  /* display */
  /* box */
  /* font */
  /* border */
  /* background */
  background-color: #fff;
  /* animation */
  /* etc */
}
/*
header_flexbox
*/
.header .header_flexbox {
  /* position */
  position: relative;
  /* display */
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  align-items: center;
  /* box */
  width: 100%;
  margin: 0;
  padding: 0;
  /* font */
  /* border */
  /* background */
  /* animation */
  /* etc */
}
/*
header_flexbox flexitem_left
*/
.header .header_flexbox .flexitem_left {
  /* position */
  /* display */
  /* box */
  width: 219px;
  margin: 0;
  padding: 0 0 0 20px;
  /* font */
  /* border */
  /* background */
  /* animation */
  /* etc */
}
.header .header_flexbox .flexitem_left a {
  /* position */
  /* display */
  display: block;
  /* box */
  width: 219px;
  margin: 0;
  /* font */
  /* border */
  /* background */
  /* animation */
  /* etc */
}
.header .header_flexbox .flexitem_left a img {
  /* position */
  /* display */
  display: block;
  /* box */
  width: 100%;
  margin: 0;
  /* font */
  /* border */
  /* background */
  /* animation */
  /* etc */
}
@media screen and (max-width: 1300px) {
  .header .header_flexbox .flexitem_left {
    width: calc(219px * 0.9);
  }
  .header .header_flexbox .flexitem_left a {
    width: calc(219px * 0.9);
  }
}
@media screen and (max-width: 1200px) {
  .header .header_flexbox .flexitem_left {
    width: calc(219px * 0.8);
  }
  .header .header_flexbox .flexitem_left a {
    width: calc(219px * 0.8);
  }
}
@media screen and (max-width: 1100px) {
  .header .header_flexbox .flexitem_left {
    width: calc(219px * 0.7);
  }
  .header .header_flexbox .flexitem_left a {
    width: calc(219px * 0.7);
  }
}
@media screen and (max-width: 1000px) {
  .header .header_flexbox .flexitem_left {
    width: calc(219px * 0.6);
  }
  .header .header_flexbox .flexitem_left a {
    width: calc(219px * 0.6);
  }
}
@media screen and (max-width: 768px) {
  .header .header_flexbox .flexitem_left {
    /* position */
    /* display */
    /* box */
    width: 219px;
    padding: 0.8em 0 0.8em 1em;
    /* font */
    /* border */
    /* background */
    /* animation */
    /* etc */
  }
  .header .header_flexbox .flexitem_left a {
    /* position */
    /* display */
    /* box */
    width: 100%;
    /* font */
    /* border */
    /* background */
    /* animation */
    /* etc */
  }
}
/*
header_flexbox flexitem_right_pc
*/
.header .header_flexbox .flexitem_right_pc {
  /* position */
  /* display */
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  /* box */
  /* font */
  /* border */
  /* background */
  /* animation */
  /* etc */
}
/*
header_flexbox flexitem_right_pc nav
*/
.header .header_flexbox .flexitem_right_pc .nav {
  /* position */
  /* display */
  /* box */
  width: 100%;
  margin: 0 60px 0 0;
  padding: 0;
  /* font */
  /* border */
  /* background */
  /* animation */
  /* etc */
}
.header .header_flexbox .flexitem_right_pc .nav ul {
  /* position */
  /* display */
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 14px;
  /* box */
  /* font */
  /* border */
  /* background */
  /* animation */
  /* etc */
}
.header .header_flexbox .flexitem_right_pc .nav ul li.line {
  /* position */
  /* display */
  /* box */
  width: 1px;
  height: 74px;
  margin: 0 8px;
  /* font */
  /* border */
  /* background */
  background: linear-gradient(
    to top,
    transparent 0%,
    transparent 30%,
    #000 30%,
    #000 60%,
    transparent 60%,
    transparent 100%
  );
  /* animation */
  /* etc */
}
.header .header_flexbox .flexitem_right_pc .nav ul li.gNavi_btn {
  /* position */
  position: relative;
  /* display */
  display: block;
  /* box */
  height: 74px;
  margin: 0;
  padding: 16px 0;
  /* font */
  /* border */
  /* background */
  /* animation */
  /* etc */
}

.header .header_flexbox .flexitem_right_pc .nav .btn_concept {
  width: 73px;
}
.header .header_flexbox .flexitem_right_pc .nav .btn_location {
  width: 92px;
}
.header .header_flexbox .flexitem_right_pc .nav .btn_access {
  width: 60px;
}
.header .header_flexbox .flexitem_right_pc .nav .btn_buildingplan {
  width: 140px;
}
.header .header_flexbox .flexitem_right_pc .nav .btn_buildingplan >a {
  pointer-events: none;
}

.header .header_flexbox .flexitem_right_pc .nav .btn_seminar {
  width: 94px;
}
.header .header_flexbox .flexitem_right_pc .nav .btn_news {
  width: 60px;
}
.header .header_flexbox .flexitem_right_pc .nav ul li a {
  /* position */
  /* display */
  /* box */
  height: 23px;
  margin: 0;
  padding: 0;
  /* font */
  /* border */
  /* background */
  /* animation */
  /* etc */
}
.header .header_flexbox .flexitem_right_pc .nav .btn_concept a {
  /* position */
  /* display */
  /* box */
  width: 100%;
  /* font */
  /* border */
  /* background */
  /* animation */
  /* etc */
}
.header .header_flexbox .flexitem_right_pc .nav a::before {
  /* position */
  /* display */
  content: "";
  display: block;
  /* box */
  width: 100%;
  height: 14px;
  margin: 0 0 4px 0;
  /* font */
  color: #000;
  /* border */
  /* background */
  /* animation */
  /* etc */
}
.header .header_flexbox .flexitem_right_pc .nav .new a::before {
  /* position */
  /* display */
  /* box */
  /* font */
  /* border */
  /* background */
  background-image: url("../img/common/header/gNavi_icon_new.svg");
  background-repeat: no-repeat;
  background-position: top center;
  /* animation */
  /* etc */
}
.header .header_flexbox .flexitem_right_pc .nav .new a::before {
  background-image: url("../img/common/header/gNavi_icon_new.svg");
  background-repeat: no-repeat;
  background-position: top center;
}
.header .header_flexbox .flexitem_right_pc .nav .comingsoon a::before {
  /* position */
  /* display */
  /* box */
  /* font */
  /* border */
  /* background */
  background-image: url("../img/common/header/gNavi_icon_comingsoon.svg");
  background-repeat: no-repeat;
  background-position: top center;
  /* animation */
  /* etc */
}
.header .header_flexbox .flexitem_right_pc .nav .gNavi_btn .sNavi {
  /* position */
  position: absolute;
  top: 100%;
  left: -22%; /*left: 65%;*/
  /* display */
  display: flex;
  justify-content: flex-end;
  visibility: hidden;
  flex-direction: column;
  /* box */
  width: 140%;
  padding: 0px 20px 35px 20px;
  /* font */
  text-align: right;
  /* border */
  /* background */
  background-color: rgb(214 232 239 / 67%);
  /* animation */
  /* etc */
}
.header.bg_white .header_flexbox .flexitem_right_pc .nav .gNavi_btn .sNavi {
  /* position */
  /* display */
  /* box */
  /* font */
  /* border */
  /* background */
  background-color: rgb(214 232 239 / 67%);
  /* animation */
  /* etc */
}
.header
  .header_flexbox
  .flexitem_right_pc
  .nav
  .gNavi_btn.btn_buildingplan:hover
  .sNavi {
  /* position */
  /* display */
  visibility: visible;
  /* box */
  /* font */
  /* border */
  /* background */
  /* animation */
  /* etc */
}
.header .header_flexbox .flexitem_right_pc .nav .gNavi_btn .sNavi li.sNavi_btn {
  /* position */
  /* display */
  display: block;
  /* box */
  height: 40px;
  margin: 0 auto;
  padding: 5px 0 0 0;
  /* font */
  /* border */
  /* background */
  /* animation */
  /* etc */
}
/* .header .header_flexbox .flexitem_right_pc .nav .gNavi_btn .sNavi .btn_floorplan { width: 92px; }
.header .header_flexbox .flexitem_right_pc .nav .gNavi_btn .sNavi .btn_entrance { width: 158px; }
.header .header_flexbox .flexitem_right_pc .nav .gNavi_btn .sNavi .btn_office { width: 123px; }
.header .header_flexbox .flexitem_right_pc .nav .gNavi_btn .sNavi .btn_commercial { width: 110px; }
.header .header_flexbox .flexitem_right_pc .nav .gNavi_btn .sNavi .btn_safe { width: 79px; }
.header .header_flexbox .flexitem_right_pc .nav .gNavi_btn .sNavi .btn_environment { width: 63px; } */

@media screen and (max-width: 1300px) {
  .header .header_flexbox .flexitem_right_pc .nav {
    margin: 0 40px 0 0;
  }
  .header .header_flexbox .flexitem_right_pc .nav .btn_concept {
    width: calc(73px * 0.9);
  }
  .header .header_flexbox .flexitem_right_pc .nav .btn_location {
    width: calc(92px * 0.9);
  }
  .header .header_flexbox .flexitem_right_pc .nav .btn_access {
    width: calc(60px * 0.9);
  }
  .header .header_flexbox .flexitem_right_pc .nav .btn_buildingplan {
    width: calc(140px * 0.9);
  }
  .header .header_flexbox .flexitem_right_pc .nav .btn_seminar {
    width: calc(94px * 0.9);
  }
  .header .header_flexbox .flexitem_right_pc .nav .btn_news {
    width: calc(60px * 0.9);
  }


  .header .header_flexbox .flexitem_right_pc .nav .gNavi_btn .sNavi {
    width: calc(155px * 0.9);
  }
}





@media screen and (max-width: 768px) {
  .header .header_flexbox .flexitem_right_pc {
    /* position */
    /* display */
    display: none;
    /* box */
    /* font */
    /* border */
    /* background */
    /* animation */
    /* etc */
  }
}
/*
header_flexbox flexitem_right_pc contact
*/
.header .header_flexbox .flexitem_right_pc .contact {
  /* position */
  /* display */
  /* box */
  width: 306px;
  margin: 0 20px 0 0;
  padding: 16px 0;
  /* font */
  /* border */
  /* background */
  /* animation */
  /* etc */
}
.header .header_flexbox .flexitem_right_pc .contact .contact_flexbox {
  /* position */
  /* display */
  display: flex;
  /* justify-content: flex-start; */
  justify-content: flex-end;
  flex-wrap: nowrap;
  /* box */
  width: 100%;
  /* font */
  /* border */
  /* background */
  /* animation */
  /* etc */
}
.header .header_flexbox .flexitem_right_pc .contact .contact_flexbox a {
  /* position */
  /* display */
  display: block;
  /* box */
  width: 146px;
  height: 42px;
  /* font */
  font-size: 1.3rem; /*デザイン上は16pxだが、横幅が足りないので小さくした*/
  text-align: center;
  vertical-align: middle;
  line-height: 1em;
  /* border */
  /* background */
  /* animation */
  /* etc */
}
.header
  .header_flexbox
  .flexitem_right_pc
  .contact
  .contact_flexbox
  .btn_white {
  /* position */
  /* display */
  /* box */
  margin: 0 14px 0 0;
  padding: 8px 0 0 0;
  /* font */
  color: #003989;
  /* border */
  border: solid 1px #003686;
  /* background */
  background-color: #fff;
  /* animation */
  transition: all 0.3s linear;
  /* etc */
}
.header
  .header_flexbox
  .flexitem_right_pc
  .contact
  .contact_flexbox
  .btn_white:hover {
  /* position */
  /* display */
  /* box */
  /* font */
  color: #fff;
  /* border */
  border-color: #fff;
  border-style: none;
  /* background */
  background-color: #003686;
  /* animation */
  /* etc */
}
.header .header_flexbox .flexitem_right_pc .contact .contact_flexbox .btn_blue {
  /* position */
  /* display */
  /* box */
  margin: 0;
  padding: 15px 0 0 0;
  /* font */
  color: #fff;
  /* border */
  border-style: none;
  /* background */
  background: linear-gradient(to right, #0086d1 0%, #003686 50%, #0086d1 100%);
  background-size: 200% auto;
  background-position: 100% 50%;
  /* animation */
  transition: all 0.3s ease-out;
  /* etc */
}
.header
  .header_flexbox
  .flexitem_right_pc
  .contact
  .contact_flexbox
  .btn_blue:hover {
  /* position */
  /* display */
  /* box */
  /* font */
  /* border */
  /* background */
  background-position: 0% 50%;
  /* animation */
  /* etc */
}
@media screen and (max-width: 1300px) {
  .header .header_flexbox .flexitem_right_pc .contact {
    width: calc(306px * 0.9);
  }
}
@media screen and (max-width: 1200px) {
  .header .header_flexbox .flexitem_right_pc .contact {
    width: calc(306px * 0.8);
  }
  .header .header_flexbox .flexitem_right_pc .contact .box_flex a {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 1100px) {
  .header .header_flexbox .flexitem_right_pc .contact {
    width: calc(306px * 0.7);
  }
  .header .header_flexbox .flexitem_right_pc .contact .box_flex a {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 1000px) {
  .header .header_flexbox .flexitem_right_pc .contact {
    width: calc(306px * 0.6);
  }
  .header .header_flexbox .flexitem_right_pc .contact .box_flex a {
    font-size: 1.1rem;
  }
}
/*
header_flexbox flexitem_right_sp
*/
.header .header_flexbox .flexitem_right_sp {
  /* position */
  /* display */
  display: none;
  /* box */
  /* font */
  /* border */
  /* background */
  /* animation */
  /* etc */
}
@media screen and (max-width: 768px) {
  .header .header_flexbox .flexitem_right_sp {
    /* position */
    /* display */
    display: block;
    /* box */
    /* font */
    /* border */
    /* background */
    /* animation */
    /* etc */
  }
  .header .header_flexbox .flexitem_right_sp .button_bg {
    /* position */
    position: absolute;
    top: 0;
    right: 0;
    /* display */
    /* box */
    width: 80px;
    height: 80px;
    /* font */
    /* border */
    border-radius: 0 0 0 100%;
    /* background */
    background: -webkit-linear-gradient(54deg, #1f3a6d, #336f9b);
    background: -o-linear-gradient(54deg, #1f3a6d, #336f9b);
    background: linear-gradient(54deg, #1f3a6d, #336f9b);
    /* animation */
    /* etc */
  }
  .header .header_flexbox .flexitem_right_sp .button {
    /* position */
    /* display */
    /* box */
    width: 41px;
    height: 41px;
    margin: 12px 10px 0 auto;
    /* font */
    /* border */
    /* background */
    /* animation */
    /* etc */
  }
  .header .header_flexbox .flexitem_right_sp .icon-wrap {
    /* position */
    position: relative;
    /* display */
    overflow: hidden;
    /* box */
    width: 36px;
    height: 22px;
    margin: 0 auto 2px auto;
    /* font */
    /* border */
    /* background */
    /* animation */
    /* etc */
  }
  .header .header_flexbox .flexitem_right_sp .icon {
    /* position */
    position: absolute;
    left: 0;
    /* display */
    display: inline-block;
    /* box */
    width: 100%;
    height: 2px;
    /* font */
    /* border */
    /* background */
    background-color: #fff;
    /* animation */
    /* etc */
  }
  .header .header_flexbox .flexitem_right_sp .icon:nth-of-type(1) {
    top: 0;
  }
  .header .header_flexbox .flexitem_right_sp .icon:nth-of-type(2) {
    top: 10px;
  }
  .header .header_flexbox .flexitem_right_sp .icon:nth-of-type(3) {
    top: 20px;
  }
  .header .header_flexbox .flexitem_right_sp .button p {
    /* position */
    /* display */
    /* box */
    /* font */
    color: #fff;
    font-size: 1.2rem;
    text-align: center;
    /* border */
    /* background */
    /* animation */
    /* etc */
  }
}

/* ========================================

breadcrumb

======================================== */
.breadcrumb {
  /* position */
  /* display */
  /* box */
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 4em auto;
  /* font */
  font-size: 1.4rem;
  font-family: "Murecho", sans-serif;
  /* border */
  /* background */
  /* animation */
  /* etc */
}
.breadcrumb a {
  /* position */
  /* display */
  /* box */
  /* font */
  font-size: 1.4rem;
  font-family: "Murecho", sans-serif;
  color: #003686;
  /* border */
  /* background */
  /* animation */
  /* etc */
}
.breadcrumb a:hover {
  /* position */
  /* display */
  opacity: 0.7;
  /* box */
  /* font */
  /* border */
  /* background */
  /* animation */
  /* etc */
}
@media screen and (max-width: 1230px) {
  .breadcrumb {
    /* position */
    /* display */
    /* box */
    width: 100%;
    margin: 0 0 4em 0;
    padding: 0 15px;
    /* font */
    /* border */
    /* background */
    /* animation */
    /* etc */
  }
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    /* position */
    /* display */
    /* box */
    /* font */
    font-size: 1.2rem;
    /* border */
    /* background */
    /* animation */
    /* etc */
  }
  .breadcrumb a {
    /* position */
    /* display */
    /* box */
    /* font */
    font-size: 1.2rem;
    /* border */
    /* background */
    /* animation */
    /* etc */
  }
}

/* ========================================

footer

======================================== */
.footer {
  /* position */
  position: relative;
  /* display */
  z-index: 200;
  /* box */
  width: 100%;
  margin: 0;
  padding: 0;
  /* font */
  /* border */
  /* background */
  /* animation */
  /* etc */
}
/*
.footer_contact
*/
.footer .footer_contact {
  /* position */
  position: relative;
  /* display */
  z-index: 200;
  /* box */
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 5rem auto;
  padding: 84px 0;
  /* font */
  /* border */
  border: solid 1px #003686;
  /* background */
  background-color: #fff;
  /* animation */
  /* etc */
}
.footer .footer_contact .lead {
  /* position */
  /* display */
  /* box */
  margin-bottom: 2em;
  /* font */
  font-size: 2.4rem;
  text-align: center;
  /* border */
  /* background */
  /* animation */
  /* etc */
}
.footer .footer_contact .contact_flexbox {
  /* position */
  /* display */
  display: flex;
  gap: 0;
  justify-content: center;
  flex-wrap: nowrap;
  align-items: center;
  /* box */
  width: 63%;
  margin: 0 auto 0 auto;
  /* font */
  /* border */
  /* background */
  /* animation */
  /* etc */
}
.footer .footer_contact .contact_flexbox a {
  /* position */
  /* display */
  display: flex;
  justify-content: center;
  align-items: center;
  /* box */
  width: 48%;
  max-width: 316px;
  padding: 0.75em 0;
  height: 68px;
  /* font */
  font-size: 2rem; /*デザイン上は26pxだが、横幅が足りないので小さくした*/
  text-align: center;
  line-height: 1em;
  /* border */
  /* background */
  /* animation */
  /* etc */
}

.footer .footer_contact .contact_flexbox .btn_white {
  /* position */
  /* display */
  /* box */
  /* font */
  color: #003989;
  /* border */
  border: solid 1px #003686;
  /* background */
  background: #fff;
  /* animation */
  transition: all 0.3s linear;
  /* etc */
}
.footer .footer_contact .contact_flexbox .btn_white:hover {
  /* position */
  /* display */
  /* box */
  /* font */
  color: #fff;
  /* border */
  border-color: #003686;
  /* background */
  background: #003989;
  /* animation */
  /* etc */
}
.footer .footer_contact .contact_flexbox .btn_blue {
  /* position */
  /* display */
  /* box */
  /* font */
  color: #fff;
  /* border */
  /* background */
  background: linear-gradient(to right, #0086d1 0%, #003686 50%, #0086d1 100%);
  background-size: 200% 100%;
  background-position: 100% 0%;
  /* animation */
  transition: all 0.3s ease-out;
  /* etc */
}
.footer .footer_contact .contact_flexbox .btn_blue:hover {
  /* position */
  /* display */
  /* box */
  /* font */
  /* border */
  /* background */
  background-position: 0% 0%;
  /* animation */
  /* etc */
}
.footer .footer_contact .contact_flexbox .display__header {
  /* position */
  /* display */
  display: none;
  /* box */
  /* font */
  /* border */
  /* background */
  /* animation */
  /* etc */
}
@media screen and (max-width: 1230px) {
  .footer .footer_contact {
    /* position */
    /* display */
    /* box */
    width: auto;
    margin: 4em 15px;
    /* font */
    /* border */
    /* background */
    /* animation */
    /* etc */
  }
  .footer .footer_contact .contact_flexbox .btn_white,
  .footer .footer_contact .contact_flexbox .btn_blue {
    /* position */
    /* display */
    /* box */
    /* font */
    font-size: 2rem;
    /* border */
    /* background */
    /* animation */
    /* etc */
  }
}
@media screen and (max-width: 768px) {
  .footer .footer_contact {
    /* position */
    /* display */
    /* box */
    padding: 1.5em 0;
    /* font */
    /* border */
    /* background */
    /* animation */
    /* etc */
  }
  .footer .footer_contact .lead {
    /* position */
    /* display */
    /* box */
    /* font */
    font-size: 2rem;
    /* border */
    /* background */
    /* animation */
    /* etc */
  }
  .footer .footer_contact .contact_flexbox {
    /* position */
    /* display */
    display: block;
    /* box */
    width: 100%;
    margin: 0 auto;
    /* font */
    /* border */
    /* background */
    /* animation */
    /* etc */
  }
  .footer .footer_contact .contact_flexbox a {
    /* position */
    /* display */
    /* box */
    width: 100%;
    max-width: 230px;
    margin: 0 auto;
    /* font */
    /* border */
    /* background */
    /* animation */
    /* etc */
  }
  .footer .footer_contact .contact_flexbox .btn_white {
    /* position */
    /* display */
    /* box */
    /* font */
    font-size: 1.6rem;
    /* border */
    /* background */
    /* animation */
    /* etc */
  }
  .footer .footer_contact .contact_flexbox .btn_blue {
    /* position */
    /* display */
    /* box */
    margin-bottom: 1em;
    /* font */
    font-size: 1.6rem;
    /* border */
    /* background */
    /* animation */
    /* etc */
  }
}
/*
.footer_address
*/
.footer .footer_address {
  /* position */
  position: relative;
  /* display */
  z-index: 200;
  /* box */
  width: 100%;
  height: 170px;
  margin: 0;
  padding: 53px 0 0 0;
  /* font */
  color: #fff;
  /* border */
  /* background */
  background-image: url("../img/common/footer/footer_address__bg.png");
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  /* animation */
  /* etc */
}
.footer .footer_address .address_flexbox {
  /* position */
  /* display */
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  align-items: center;
  /* box */
  max-width: 1200px;
  margin: 0 auto;
  /* font */
  /* border */
  /* background */
  /* animation */
  /* etc */
}
.footer .footer_address .address_flexbox .logo {
  /* position */
  /* display */
  /* box */
  width: 205px;
  padding: 0 2em 0 0;
  /* font */
  /* border */
  /* background */
  /* animation */
  /* etc */
}
.footer .footer_address .address_flexbox img {
  /* position */
  /* display */
  /* box */
  width: 100%;
  /* font */
  /* border */
  /* background */
  /* animation */
  /* etc */
}
@media screen and (max-width: 768px) {
  .footer .footer_address {
    /* position */
    /* display */
    /* box */
    padding: 26px 0 0 0;
    /* font */
    /* border */
    /* background */
    /* animation */
    /* etc */
  }
  .footer .footer_address .address_flexbox {
    /* position */
    /* display */
    display: block;
    /* box */
    width: 100%;
    /* font */
    /* border */
    /* background */
    /* animation */
    /* etc */
  }
  .footer .footer_address .address_flexbox .logo {
    /* position */
    /* display */
    /* box */
    margin: 0 auto 1em auto;
    /* font */
    text-align: center;
    /* border */
    /* background */
    /* animation */
    /* etc */
  }
  .footer .footer_address .address_flexbox div {
    /* position */
    /* display */
    /* box */
    /* font */
    font-size: 1.6rem;
    text-align: center;
    /* border */
    /* background */
    /* animation */
    /* etc */
  }
}
/*
.footer_copyright
*/
.footer .footer_copyright {
  /* position */
  position: relative;
  /* display */
  z-index: 200;
  /* box */
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2em 0;
  /* font */
  /* border */
  /* background */
  /* animation */
  /* etc */
}
.footer .footer_copyright .text {
  /* position */
  /* display */
  /* box */
  /* font */
  text-align: center;
  line-height: 2em;
  /* border */
  /* background */
  /* animation */
  /* etc */
}
.footer .footer_copyright .copyright {
  /* position */
  /* display */
  /* box */
  /* font */
  text-align: center;
  /* border */
  /* background */
  /* animation */
  /* etc */
}
@media screen and (max-width: 768px) {
  .footer .footer_copyright {
    /* position */
    /* display */
    /* box */
    margin-bottom: 44px;
    /* font */
    /* border */
    /* background */
    /* animation */
    /* etc */
  }
  .footer .footer_copyright .text {
    /* position */
    /* display */
    /* box */
    /* font */
    font-size: 1.2rem;
    /* border */
    /* background */
    /* animation */
    /* etc */
  }
  .footer .footer_copyright .copyright {
    /* position */
    /* display */
    /* box */
    /* font */
    font-size: 1.2rem;
    /* border */
    /* background */
    /* animation */
    /* etc */
  }
}

/* ========================================

fixed_contact

======================================== */
.fixed_contact {
  /* position */
  position: fixed;
  bottom: 0;
  left: 0;
  /* display */
  z-index: 200;
  /* box */
  width: 100%;
  margin: 0;
  padding: 0;
  /* font */
  /* border */
  /* background */
  /* animation */
  /* etc */
}
.fixed_contact .contact_flexbox {
  /* position */
  /* display */
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  z-index: 200;
  /* box */
  width: 100%;
  margin: 0;
  padding: 0;
  /* font */
  /* border */
  /* background */
  background-color: #fff;
  /* animation */
  /* etc */
}
.fixed_contact .contact_flexbox a {
  /* position */
  /* display */
  display: block;
  /* box */
  /* width: 50%; */
  width: 100%;
  padding: 1em 0;
  /* font */
  font-size: 1.4rem; /*デザイン上は16pxだが、横幅が足りないので小さくした*/
  text-align: center;
  line-height: 1em;
  /* border */
  /* background */
  /* animation */
  /* etc */
}
.fixed_contact .contact_flexbox .btn_white {
  /* position */
  /* display */
  /* box */
  /* font */
  color: #003989;
  /* border */
  border: solid 1px #003686;
  /* background */
  /* animation */
  /* etc */
}
.fixed_contact .contact_flexbox .btn_blue {
  /* position */
  /* display */
  /* box */
  /* font */
  color: #fff;
  /* border */
  /* background */
  background: linear-gradient(to right, #003686, #0086d1);
  /* animation */
  /* etc */
}
.fixed_contact .contact_flexbox .display__header {
  /* position */
  /* display */
  display: none;
  /* box */
  /* font */
  /* border */
  /* background */
  /* animation */
  /* etc */
}

div#other_contents
  > div
  > div.inner_container
  > div.btn_flexbox
  > div.flexitem {
  margin: 0 0 1.66% 0;
  padding: 0;
  background: #000;
}
div#other_contents > div > div.inner_container > div.btn_flexbox > div > a {
  position: relative;
  opacity: 0.7;
}
div#other_contents
  > div
  > div.inner_container
  > div.btn_flexbox
  > div
  > a:hover {
  opacity: 1;
  transition: 0.5s;
}
div#other_contents
  > div
  > div.inner_container
  > div.btn_flexbox
  > div
  > a
  > span {
  position: absolute;
  top: 5%;
  left: 5%;
}
div#other_contents
  > div
  > div.inner_container
  > div.btn_flexbox
  > div
  > a
  > span
  > img {
  width: 95%;
}
div#other_contents
  > div
  > div.inner_container
  > div.btn_flexbox
  > div
  > a
  > figcaption {
  position: absolute;
  bottom: 5px;
  right: 5px;
  font-size: 1.2rem;
  color: #090909;
}

div#other_contents
  > div
  > div.inner_container
  > div.btn_flexbox
  > div
  > a
  > figcaption.note__white {
  color: #fff;
}

.page_title{
  pointer-events: none !important;
}


ul.gNavi_btn >li.btn_buildingplan >ul >li >img{
  max-width: 95%;
}