@charset "UTF-8";
@import url("https://use.typekit.net/mxq5frb.css");
@import url("https://cdn.jsdelivr.net/npm/yakuhanjp@4.1.1/dist/css/yakuhanjp.css");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
@keyframes poyon {
  0% {
    transform: scale(1, 1) translate(0%, 0%);
  }
  15% {
    transform: scale(0.9, 0.9) translate(0%, 5%);
  }
  30% {
    transform: scale(1.3, 0.8) translate(0%, 10%);
  }
  50% {
    transform: scale(0.8, 1.3) translate(0%, -10%);
  }
  70% {
    transform: scale(1.1, 0.9) translate(0%, 5%);
  }
  100% {
    transform: scale(1, 1) translate(0%, 0%);
  }
}
@keyframes popZoom {
  0% {
    transform: scale(2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes popup {
  0% {
    bottom: -100%;
  }
  100% {
    bottom: 0;
  }
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes bgRotate {
  from {
    background-position: center center;
    transform: rotate(0deg);
  }
  to {
    background-position: center center;
    transform: rotate(360deg);
  }
}
header {
  background: #554D11;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 99;
  transition: 0.5s;
}
header.scrolled {
  background: rgba(85, 77, 17, 0.8); /* 白、60%透明 */
}
header.scrolled .right_nav .contact_btn {
  background: rgba(49, 45, 8, 0.8);
}
header .flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  font-family: YakuHanJP, "Zen Maru Gothic", sans-serif;
}
@media screen and (max-width: 860px) {
  header .flex {
    align-items: center;
    padding: 10px 0;
  }
}
header .flex h1 {
  flex-shrink: 0.2;
  padding-bottom: 24px;
}
@media screen and (max-width: 860px) {
  header .flex h1 {
    padding: 0;
    width: 100px;
  }
}
header ul li a {
  color: #fff;
  line-height: 1;
}
header ul li a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 860px) {
  header nav {
    position: fixed;
    top: 0;
    right: -100vw;
    width: 80vw;
    height: 100vh;
    max-width: 300px;
    background: #8E8323;
    z-index: 9999;
    overflow: scroll;
    padding: 30px 0;
    transition: 0.5s;
  }
  header nav.active {
    right: 0;
  }
  header nav .nav_close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
    color: #fff;
    display: block;
  }
  header nav .contact_btn a {
    color: #fff;
    padding: 20px 10px;
    box-sizing: border-box;
    display: block;
    background: #554D11;
    border-bottom: 1px solid #fff;
  }
  header nav .sns_link {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
  }
  header nav .sns_link li {
    width: 30px;
  }
  header nav .sns_link li + li {
    margin-left: 20px;
  }
}
header nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 860px) {
  header nav ul {
    display: block;
  }
}
header nav ul li {
  position: relative;
}
header nav ul li.nav_link {
  position: relative;
  transition: 0.5s;
  margin-left: 35px;
}
@media screen and (max-width: 860px) {
  header nav ul li.nav_link {
    margin-left: 0;
  }
}
header nav ul li.nav_link:first-child {
  margin-left: 0;
}
header nav ul li.nav_link::after {
  content: "";
  display: block;
  background: url(/wp-content/themes/realestate/image/common/arrow.svg) no-repeat center/contain;
}
header nav ul li.nav_link:hover {
  border-color: #fff;
}
header nav ul li.nav_link a {
  padding-bottom: 20px;
}
@media screen and (max-width: 860px) {
  header nav ul li.nav_link a {
    padding: 10px;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 860px) {
  header nav ul li.nav_link a.hover_line {
    border-bottom: 1px solid #fff;
  }
}
header nav ul li.nav_link a.hover_line::before {
  content: "";
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 100%;
  background: #fff;
  height: 1px;
  opacity: 0;
  transition: 0.5s;
}
@media screen and (max-width: 860px) {
  header nav ul li.nav_link a.hover_line::before {
    display: none;
  }
}
header nav ul li.nav_link a.hover_line::after {
  content: "";
  display: block;
  width: 12px;
  height: 4px;
  background: url(/wp-content/themes/realestate/image/common/arrow.svg) no-repeat center/contain;
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: 0.5s;
}
@media screen and (max-width: 860px) {
  header nav ul li.nav_link a.hover_line::after {
    display: none;
  }
}
header nav ul li.nav_link a.hover_line:hover::before, header nav ul li.nav_link a.hover_line:hover::after, header nav ul li.nav_link a.hover_line.active::before, header nav ul li.nav_link a.hover_line.active::after {
  opacity: 1;
}
header nav ul li a {
  display: block;
  font-size: 1.8rem;
}
header nav ul li a:hover {
  border-color: #fff;
  color: #fff;
}
header nav ul li a:hover::after {
  opacity: 1;
}
header nav ul li .child_nav {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  background: #989260;
  padding: 15px 16px;
  box-sizing: border-box;
  z-index: 99;
  display: none;
}
@media screen and (max-width: 860px) {
  header nav ul li .child_nav {
    position: static;
    transform: none;
    display: block;
    border-bottom: 1px solid #fff;
  }
}
header nav ul li .child_nav a {
  display: block;
  font-size: 1.6rem;
  white-space: nowrap;
  padding: 0;
}
header nav ul li .child_nav a::after {
  display: none;
}
header nav ul li .child_nav .child_nav_list {
  display: block;
  padding-bottom: 0;
}
header nav ul li .child_nav .child_nav_list li a {
  font-size: 1.4rem;
  display: flex;
  align-self: center;
  margin-left: 1em;
  line-height: 2.14;
}
header nav ul li .child_nav .child_nav_list li a::before {
  content: ">";
  display: block;
}
header .right_nav {
  display: flex;
  align-items: flex-end;
}
header .right_nav .contact_btn {
  background: #312D08;
}
header .right_nav .contact_btn a {
  padding-top: 60px;
  padding: 60px 20px 20px;
  line-height: 1;
  display: block;
}
header .right_nav a {
  font-size: 1.8rem;
  color: #fff;
}
header .right_nav .sns_link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 12px;
}
header .right_nav .sns_link li {
  width: 30px;
  margin-left: 20px;
}
header .sp_navToggle {
  display: block;
  position: relative;
  border-bottom: 2px solid #fff;
  border-top: 2px solid #fff;
  width: 25px;
  height: 20px;
  box-sizing: border-box;
}
header .sp_navToggle::before {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  background: #fff;
}

footer {
  background: #EDEDEB;
}
footer > * {
  max-width: 1416px;
  width: 90%;
  border-bottom: 1px solid #BEBEBE;
  margin: 0 auto;
}
footer > *.foot01 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-bottom: 50px;
}
@media screen and (max-width: 860px) {
  footer > *.foot01 {
    display: block;
    padding-bottom: 30px;
  }
}
footer > *.foot01 .foot_logo {
  display: block;
  max-width: 184px;
}
@media screen and (max-width: 860px) {
  footer > *.foot01 .foot_logo {
    width: 100px;
    margin: 0 auto;
  }
}
footer > *.foot01 p {
  font-size: 2.4rem;
  text-align: 0.05em;
  color: #626262;
  margin-left: clamp(0px, 3.17vw, 45px);
}
@media screen and (max-width: 860px) {
  footer > *.foot01 p {
    font-size: 1.7rem;
    text-align: center;
    margin: 20px auto;
  }
}
footer > *.foot01 .sns {
  display: flex;
  margin-left: clamp(0px, 16.45vw, 233px);
  gap: clamp(0px, 7.41vw, 105px);
}
footer > *.foot01 .sns a {
  max-width: 96px;
}
@media screen and (max-width: 860px) {
  footer > *.foot01 .sns {
    margin: 0 auto;
    align-items: center;
    justify-content: center;
  }
  footer > *.foot01 .sns a {
    max-width: 50px;
  }
}
footer > *.linkBox {
  display: flex;
  justify-content: flex-start;
  gap: 5%;
  padding: 60px 0;
}
@media screen and (max-width: 860px) {
  footer > *.linkBox {
    display: block;
    padding: 30px 0;
  }
}
@media screen and (max-width: 860px) {
  footer > *.linkBox ul:first-child .ttl {
    margin-top: 0 !important;
  }
}
footer > *.linkBox ul li {
  margin-left: 14px;
}
footer > *.linkBox ul li + li {
  margin-top: 0.7em;
}
footer > *.linkBox ul li.ttl {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 600;
  border-left: 6px solid #554E11;
  text-align: left;
  color: #626262;
  padding-left: 8px;
}
footer > *.linkBox ul li.ttl:nth-of-type(n+2) {
  margin-top: 0.7em;
}
@media screen and (max-width: 860px) {
  footer > *.linkBox ul li.ttl {
    margin-top: 1.5em !important;
    font-size: 1.4rem;
  }
}
footer > *.linkBox ul li a {
  color: #626262;
  font-size: 1.6rem;
}
@media screen and (max-width: 860px) {
  footer > *.linkBox ul li a {
    font-size: 1.4rem;
  }
}
footer > *.linkBox ul li ul {
  margin-top: 0.7em;
}
footer > *.icnBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: none;
  padding-top: 60px;
}
@media screen and (max-width: 860px) {
  footer > *.icnBox {
    display: block;
    padding-top: 30px;
  }
}
footer > *.icnBox a {
  display: flex;
  align-items: center;
  width: 22%;
}
@media screen and (max-width: 860px) {
  footer > *.icnBox a {
    width: auto;
  }
  footer > *.icnBox a + a {
    margin-top: 20px;
  }
}
footer > *.icnBox a img {
  max-width: 92px;
}
@media screen and (max-width: 860px) {
  footer > *.icnBox a img {
    width: 70px;
  }
}
footer > *.icnBox a p {
  font-size: 1.6rem;
  font-weight: 200;
  color: #626262;
  line-height: 1.2;
  margin-left: 15px;
}
@media screen and (max-width: 860px) {
  footer > *.icnBox a p {
    font-size: 1.4rem;
  }
}
footer > *.icnBox a p strong {
  display: block;
  font-size: 1.25em;
  font-weight: 600;
}
footer > *.telBox {
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 60px auto;
}
@media screen and (max-width: 860px) {
  footer > *.telBox {
    display: block;
    margin: 30px auto 30px;
  }
}
footer > *.telBox p strong {
  display: block;
  font-size: 2.4rem;
  color: #554D11;
}
@media screen and (max-width: 860px) {
  footer > *.telBox p strong {
    font-size: 2rem;
  }
}
footer > *.telBox p span {
  display: inline-block;
  font-size: 1.8rem;
  color: #554D11;
}
@media screen and (max-width: 860px) {
  footer > *.telBox p span {
    display: block;
    font-size: 1.4rem;
  }
}
footer > *.telBox p span + span {
  margin-left: 1em;
}
@media screen and (max-width: 860px) {
  footer > *.telBox p span + span {
    display: block;
    margin: 0;
  }
}
@media screen and (max-width: 860px) {
  footer > *.telBox p {
    text-align: center;
  }
}
footer > *.telBox a {
  max-width: 300px;
  display: block;
}
@media screen and (max-width: 860px) {
  footer > *.telBox a {
    margin: 20px auto 0;
  }
}
footer .copyright {
  width: 100%;
  max-width: none;
  background: #554D11;
  text-align: center;
  color: #fff;
  display: block;
  font-size: 1.4rem;
  padding: 0.5em;
  box-sizing: border-box;
}

.retop {
  display: none;
}
@media screen and (max-width: 860px) {
  .retop {
    display: block;
    border-radius: 99999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #554D11;
    color: #fff;
    font-weight: 700;
    font-size: 1.6rem;
    aspect-ratio: 1/1;
    padding: 10px;
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: -moz-fit-content;
    width: fit-content;
    z-index: 99;
  }
  .retop span {
    display: block;
    color: #fff;
  }
}

#mv {
  position: relative;
}
#mv .mvBox {
  position: relative;
}
#mv .maincopy {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
#mv .maincopy span {
  display: block;
  background: rgba(255, 255, 255, 0.8);
  font-size: 6rem;
  text-align: center;
  font-weight: 500;
  line-height: 1;
  padding: 0.1em 0.5em;
}
@media screen and (max-width: 860px) {
  #mv .maincopy span {
    font-size: 7vw;
    width: 30vw;
    line-height: 1;
    padding: 0.2em 0;
  }
}
#mv .maincopy span + span {
  margin-top: 10px;
}
@media screen and (max-width: 860px) {
  #mv .maincopy span + span {
    margin-top: 0.4em;
  }
}
#mv_topics {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 50px;
  margin: auto;
  z-index: 3;
}
@media screen and (max-width: 860px) {
  #mv_topics {
    position: static;
    margin-top: 30px;
  }
}
#mv_topics dl {
  display: flex;
  align-items: stretch;
  font-size: 1.8rem;
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 860px) {
  #mv_topics dl {
    display: block;
    font-size: 1.4rem;
  }
}
#mv_topics dl dt {
  background: rgba(0, 0, 0, 0.76);
  border-top-left-radius: 999999px;
  border-bottom-left-radius: 999999px;
  display: flex;
  align-items: center;
  color: #fff;
  line-height: 1;
  padding: 0.818em 1.81818em;
  font-size: 2.2rem;
}
@media screen and (max-width: 860px) {
  #mv_topics dl dt {
    border-radius: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    text-align: center;
    display: block;
    font-size: 1.6rem;
  }
}
#mv_topics dl dd {
  background: rgba(255, 255, 255, 0.77);
  display: flex;
  align-items: stretch;
}
@media screen and (max-width: 860px) {
  #mv_topics dl dd {
    border: 1px solid rgba(0, 0, 0, 0.76);
    flex-wrap: wrap;
  }
}
#mv_topics dl dd .date {
  display: flex;
  align-items: center;
  padding: 0.5em;
  padding-right: 0;
  box-sizing: border-box;
}
@media screen and (max-width: 860px) {
  #mv_topics dl dd .date {
    width: 100%;
    box-sizing: border-box;
    padding-bottom: 0;
  }
}
#mv_topics dl dd p {
  display: flex;
  align-items: center;
  padding: 0.5em;
  box-sizing: border-box;
}
@media screen and (max-width: 860px) {
  #mv_topics dl dd p {
    width: calc(100% - 5em);
  }
}
#mv_topics dl dd a {
  display: flex;
  align-items: center;
  padding: 0.5em;
  border-left: 1px solid #000;
  flex-shrink: 0;
  box-sizing: border-box;
}
@media screen and (max-width: 860px) {
  #mv_topics dl dd a {
    width: 5em;
    justify-content: center;
    border-top: 1px solid #000;
  }
}
#mv .mv_slider {
  margin-bottom: 0;
}
#mv .mv_slider img {
  display: block !important;
}
#mv .mv_slider .slick-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 860px) {
  #mv .mv_slider .slick-dots {
    bottom: 2vw;
  }
}
@media screen and (max-width: 860px) {
  #mv .mv_slider .slick-dots li {
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
@media screen and (max-width: 860px) {
  #mv .mv_slider .slick-dots li button {
    padding: 0;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
#mv .mv_slider .slick-dots li button::before {
  font-size: 17px;
  content: "●";
  opacity: 1;
  color: #fff;
}
@media screen and (max-width: 860px) {
  #mv .mv_slider .slick-dots li button::before {
    font-size: 2vw;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    position: static;
    line-height: 1;
  }
}
#mv .mv_slider .slick-dots li.slick-active button:before {
  color: #000;
}

#about .img {
  max-width: 689px;
  margin: 0 auto;
}
#about p {
  font-size: 1.8rem;
  line-height: 2.1;
  max-width: 900px;
  margin: 0 auto;
  margin-top: 50px;
}
@media screen and (max-width: 860px) {
  #about p {
    font-size: 1.4rem;
  }
}
#about .flex {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  margin-top: 115px;
}
@media screen and (max-width: 860px) {
  #about .flex {
    display: block;
  }
}
#about .flex .cont {
  display: flex;
  flex-direction: column;
  width: 30%;
  max-width: 360px;
}
@media screen and (max-width: 860px) {
  #about .flex .cont {
    width: 100%;
    max-width: none;
  }
  #about .flex .cont + .cont {
    margin-top: 30px;
  }
}
#about .flex .cont img {
  margin: 0 auto;
}
@media screen and (max-width: 860px) {
  #about .flex .cont img {
    max-width: 249px;
  }
}
#about .flex .cont h3 {
  text-align: center;
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 860px) {
  #about .flex .cont h3 {
    font-size: 2.4rem;
  }
}
#about .flex .cont p {
  margin-top: 10px;
  font-size: 1.8rem;
}
@media screen and (max-width: 860px) {
  #about .flex .cont p {
    font-size: 1.4rem;
  }
}

#property_list {
  background: #F9F8F5;
}
#property_list .flex {
  margin-bottom: 78px;
  align-items: flex-start;
}
@media screen and (max-width: 860px) {
  #property_list .flex {
    display: block;
    margin-bottom: 30px;
  }
}
#property_list .cont {
  width: 31%;
  display: block;
}
@media screen and (max-width: 860px) {
  #property_list .cont {
    width: 100%;
  }
  #property_list .cont + .cont {
    margin-top: 30px;
  }
}
#property_list .cont img {
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 3/2;
}
#property_list .cont .property-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 12px auto;
}
@media screen and (max-width: 860px) {
  #property_list .cont .property-meta {
    margin: 10px auto 5px;
  }
}
#property_list .cont .property-meta dd {
  font-size: 1.8rem;
}
@media screen and (max-width: 860px) {
  #property_list .cont .property-meta dd {
    font-size: 1.4rem;
  }
}
#property_list .cont .property-meta .icn {
  font-size: 1.6rem;
  border: 1px solid #707070;
  border-radius: 16px;
  width: 92px;
  text-align: center;
}
@media screen and (max-width: 860px) {
  #property_list .cont .property-meta .icn {
    font-size: 1.2rem;
  }
}
#property_list .cont .property-title {
  border-top: 1px solid #707070;
  padding-top: 12px;
}
@media screen and (max-width: 860px) {
  #property_list .cont .property-title {
    padding-top: 5px;
  }
}
#property_list .cont .property-title dt {
  font-size: 2rem;
  display: inline;
}
@media screen and (max-width: 860px) {
  #property_list .cont .property-title dt {
    font-size: 1.6rem;
  }
}
#property_list .cont .property-title dt::after {
  content: "|";
  margin: 0 0.25em;
}
#property_list .cont .property-title dd {
  font-size: 1.8rem;
  display: inline;
}
@media screen and (max-width: 860px) {
  #property_list .cont .property-title dd {
    font-size: 1.4rem;
  }
}
#property_list .cont .property-info dt {
  font-size: 2.4rem;
  display: inline;
}
@media screen and (max-width: 860px) {
  #property_list .cont .property-info dt {
    font-size: 2rem;
  }
}
#property_list .cont .property-info dt::after {
  content: "/";
}
#property_list .cont .property-info dd {
  font-size: 1.8rem;
  display: inline;
}
@media screen and (max-width: 860px) {
  #property_list .cont .property-info dd {
    font-size: 1.4rem;
  }
}

#architecture .ttl {
  color: #554E11;
}
#architecture .ttl .ja {
  border-color: #554E11;
}
#architecture .img {
  max-width: 1212px;
  margin: 0 auto;
}
#architecture p {
  color: #554E11;
  text-align: center;
  line-height: 2.1;
}
@media screen and (max-width: 860px) {
  #architecture p {
    text-align: left;
    font-size: 1.6rem;
  }
}

#collaboration {
  background: #F9F8F5;
}
#collaboration .imgBg {
  background: url(../image/top/collaboration/img01.png) no-repeat center/cover;
  padding-top: 394px;
}
@media screen and (max-width: 860px) {
  #collaboration .imgBg {
    padding-top: 20vw;
  }
}
#collaboration .bg {
  background: rgba(255, 255, 255, 0.69);
}
#collaboration .bg .ttl {
  margin-bottom: 70px;
}
@media screen and (max-width: 860px) {
  #collaboration .bg .ttl {
    margin-bottom: 30px;
  }
}
#collaboration .bg p {
  font-size: 2rem;
  line-height: 2.1;
}
@media screen and (max-width: 860px) {
  #collaboration .bg p {
    font-size: 1.6rem;
  }
}
#collaboration .model_list {
  background: #fff;
}
#collaboration .model_list .child_nav_list {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
@media screen and (max-width: 860px) {
  #collaboration .model_list .child_nav_list {
    display: block;
  }
}
#collaboration .model_list .child_nav_list a {
  width: 23%;
  color: #292929;
  display: block;
}
@media screen and (max-width: 860px) {
  #collaboration .model_list .child_nav_list a {
    width: 100%;
  }
  #collaboration .model_list .child_nav_list a + a {
    margin-top: 30px;
  }
}
#collaboration .model_list .child_nav_list a .img {
  position: relative;
  aspect-ratio: 3/2;
}
#collaboration .model_list .child_nav_list a .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
@media screen and (max-width: 860px) {
  #collaboration .model_list .child_nav_list a .img img {
    border-radius: 10px;
  }
}
#collaboration .model_list .child_nav_list a .img span {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #fff;
  border: 1px solid #7B7032;
  color: #7B7032;
  font-size: 1.8rem;
  width: 100px;
  text-align: center;
  box-sizing: border-box;
  border-radius: 999px;
}
@media screen and (max-width: 860px) {
  #collaboration .model_list .child_nav_list a .img span {
    font-size: 3vw;
    width: -moz-fit-content;
    width: fit-content;
    box-sizing: border-box;
    padding: 0.25em 1em;
  }
}
#collaboration .model_list .child_nav_list a dl dt {
  font-size: 2.4rem;
  text-align: center;
  padding: 20px 0;
}
@media screen and (max-width: 860px) {
  #collaboration .model_list .child_nav_list a dl dt {
    font-size: 2.2rem;
    padding: 10px 0;
  }
}
#collaboration .model_list .child_nav_list a dl dd {
  word-break: break-all;
  font-size: 1.6rem;
  border-top: 2px solid #292929;
  padding-top: 20px;
}
@media screen and (max-width: 860px) {
  #collaboration .model_list .child_nav_list a dl dd {
    font-size: 1.4rem;
  }
}
#collaboration .model_list .child_nav_list a .btn {
  margin-top: 30px;
}
@media screen and (max-width: 860px) {
  #collaboration .model_list .child_nav_list a .btn {
    margin-top: 15px;
  }
}

#preventing .imgBg {
  background: url(../image/top/preventing/img01.png) no-repeat center/cover;
  padding-top: 185px;
}
@media screen and (max-width: 860px) {
  #preventing .imgBg {
    padding-top: 20vw;
  }
}
#preventing .bg {
  background: rgba(255, 255, 255, 0.69);
}
#preventing .bg .ttl {
  margin-bottom: 70px;
}
@media screen and (max-width: 860px) {
  #preventing .bg .ttl {
    margin-bottom: 30px;
  }
}
#preventing .bg p {
  font-size: 2rem;
  line-height: 2.1;
}
@media screen and (max-width: 860px) {
  #preventing .bg p {
    font-size: 1.6rem;
  }
}
#preventing .preventing_list {
  background: #F9F8F5;
}
#preventing .preventing_list ul {
  display: flex;
  align-items: stretch;
  justify-content: center;
}
@media screen and (max-width: 860px) {
  #preventing .preventing_list ul {
    display: block;
  }
}
#preventing .preventing_list ul li {
  width: 45%;
  color: #292929;
}
@media screen and (max-width: 860px) {
  #preventing .preventing_list ul li {
    width: 100%;
  }
  #preventing .preventing_list ul li + li {
    margin-top: 30px;
  }
}
#preventing .preventing_list ul li .img {
  position: relative;
}
#preventing .preventing_list ul li .img img {
  border-radius: 10px;
}
@media screen and (max-width: 860px) {
  #preventing .preventing_list ul li .img img {
    border-radius: 10px;
  }
}
#preventing .preventing_list ul li dl dt {
  font-size: 2.4rem;
  text-align: center;
  padding: 20px 0;
}
@media screen and (max-width: 860px) {
  #preventing .preventing_list ul li dl dt {
    font-size: 2.2rem;
    padding: 10px 0;
  }
}
#preventing .preventing_list ul li dl dd {
  word-break: break-all;
  font-size: 1.6rem;
  border-top: 2px solid #292929;
  padding-top: 20px;
}
@media screen and (max-width: 860px) {
  #preventing .preventing_list ul li dl dd {
    font-size: 1.4rem;
  }
}
#preventing .preventing_list ul li .btn {
  margin-top: 70px;
}
@media screen and (max-width: 860px) {
  #preventing .preventing_list ul li .btn {
    margin-top: 15px;
  }
}

#project .links a {
  background: url(../image/top/project/bg01.png) no-repeat center/cover;
  color: #fff;
  display: block;
  position: relative;
  border-radius: 10px;
  padding: 35px 66px 35px;
  box-sizing: border-box;
}
@media screen and (max-width: 860px) {
  #project .links a {
    padding: 15px;
  }
}
#project .links a + a {
  margin-top: 100px;
}
@media screen and (max-width: 860px) {
  #project .links a + a {
    margin-top: 30px;
  }
}
#project .links a:nth-child(2) {
  background: url(../image/top/project/bg02.png) no-repeat center/cover;
}
#project .links a .name {
  font-size: 3.2rem;
  font-weight: 700;
}
@media screen and (max-width: 860px) {
  #project .links a .name {
    font-size: 2.2rem;
  }
}
#project .links a .btn {
  color: #000;
  margin-left: auto;
  margin-right: 0;
  margin-top: 50px;
  background: #fff;
}
@media screen and (max-width: 860px) {
  #project .links a .btn {
    width: 100%;
    max-width: none;
    margin-top: 20px;
  }
}

#blog .blog_list {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 860px) {
  #blog .blog_list {
    display: block;
  }
}
#blog .blog_list a {
  width: 23%;
  display: block;
}
@media screen and (max-width: 860px) {
  #blog .blog_list a {
    width: 100%;
  }
  #blog .blog_list a + a {
    margin-top: 30px;
  }
}
#blog .blog_list a .img {
  aspect-ratio: 8/5;
  width: 100%;
  display: block;
  border: 1px solid #707070;
  border-radius: 10px;
  overflow: hidden;
  box-sizing: border-box;
}
@media screen and (max-width: 860px) {
  #blog .blog_list a .img {
    border-radius: 10px;
  }
}
#blog .blog_list a .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#blog .blog_list a dl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 1.8rem;
  margin: 25px auto;
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 860px) {
  #blog .blog_list a dl {
    font-size: 1.4rem;
    margin: 10px auto;
  }
}
#blog .blog_list a dl dd {
  width: 50%;
}
#blog .blog_list a dl dd.category {
  text-align: center;
  border-radius: 9999px;
}
#blog .blog_list a h3 {
  font-size: 1.7rem;
  margin-bottom: 0.25em;
}
@media screen and (max-width: 860px) {
  #blog .blog_list a h3 {
    font-size: 1.4rem;
  }
}
#blog .blog_list a p {
  word-break: break-all;
  font-size: 1.6rem;
  line-height: 1.675;
}
@media screen and (max-width: 860px) {
  #blog .blog_list a p {
    font-size: 1.4rem;
  }
}

#member .member_list {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 860px) {
  #member .member_list {
    display: block;
  }
}
#member .member_list .member {
  width: 48%;
  display: flex;
  align-items: flex-start;
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
}
#member .member_list .member:nth-child(n+3) {
  margin-top: 50px;
}
@media screen and (max-width: 860px) {
  #member .member_list .member {
    width: 100%;
  }
  #member .member_list .member + .member {
    margin-top: 30px !important;
  }
}
#member .member_list .member .icn {
  width: 30%;
  max-width: 200px;
  margin-right: 5%;
  flex-shrink: 0;
}
@media screen and (max-width: 860px) {
  #member .member_list .member .icn {
    width: 20%;
  }
}
#member .member_list .member .info .title {
  font-size: 1.8rem;
}
@media screen and (max-width: 860px) {
  #member .member_list .member .info .title {
    font-size: 1.6rem;
  }
}
#member .member_list .member .info .name {
  font-size: 2.8rem;
}
@media screen and (max-width: 860px) {
  #member .member_list .member .info .name {
    font-size: 2.2rem;
  }
}
#member .member_list .member .info .career, #member .member_list .member .info .message {
  font-size: 1.6rem;
  line-height: 1.555;
}
@media screen and (max-width: 860px) {
  #member .member_list .member .info .career, #member .member_list .member .info .message {
    font-size: 1.4rem;
  }
}

#company dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 2rem;
}
@media screen and (max-width: 860px) {
  #company dl {
    display: block;
    font-size: 1.4rem;
  }
}
#company dl dt {
  width: 20%;
  border-top: 1px solid #707070;
  padding-left: 3%;
  padding-right: 3%;
  box-sizing: border-box;
  padding-top: 1em;
  padding-bottom: 1em;
}
#company dl dt:last-of-type {
  border-bottom: 1px solid #707070;
}
@media screen and (max-width: 860px) {
  #company dl dt {
    width: 100%;
    border-bottom: none !important;
    background: #F9F8F5;
  }
}
#company dl dd {
  width: 75%;
  padding-left: 3%;
  padding-right: 3%;
  border-top: 1px solid #707070;
  padding-top: 1em;
  padding-bottom: 1em;
  box-sizing: border-box;
}
#company dl dd:last-of-type {
  border-bottom: 1px solid #707070;
}
@media screen and (max-width: 860px) {
  #company dl dd {
    width: 100%;
    border-top: none;
  }
}

#snsBox {
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
  padding: 80px 0;
}
@media screen and (max-width: 860px) {
  #snsBox {
    padding: 20px 0;
    margin-bottom: 70px !important;
  }
}
#snsBox dl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 960px;
  margin: 0 auto;
}
@media screen and (max-width: 860px) {
  #snsBox dl {
    display: block;
  }
}
#snsBox dl dt {
  font-size: 2.8rem;
}
@media screen and (max-width: 860px) {
  #snsBox dl dt {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
#snsBox dl dd {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 860px) {
  #snsBox dl dd {
    justify-content: center;
  }
}
#snsBox dl dd a {
  width: 127px;
}
@media screen and (max-width: 860px) {
  #snsBox dl dd a {
    width: 50px;
  }
}
#snsBox dl dd a + a {
  margin-left: 50px;
}
@media screen and (max-width: 860px) {
  #snsBox dl dd a + a {
    margin-left: 20px;
  }
}/*# sourceMappingURL=style.css.map */