@charset "UTF-8";
/*
	Filename: style.css
	Version: 1.0.1
*/
/*-----------------------------------------------------
	共通
------------------------------------------------------*/
.contents {
 margin: 0;
 padding: 0;
 font-family: "Noto Sans JP", sans-serif;
 font-weight: 400;
}
.inbox {
 position: relative;
 width: 1000px;
 margin: 0 auto;
 padding: 0;
}
.flex {
 display: flex;
 flex-direction: row;
 flex-wrap: wrap;
 justify-content: space-between;
}
.quote_l {
 margin-right: 0.1em;
 margin-left: -0.5em;
 font-weight: 400;
}
.quote_r {
 margin-right: -0.5em;
 margin-left: 0.1em;
 font-weight: 400;
}
.br-sp {
 display: none;
}
@media screen and (max-width: 1060px) {
 .inbox {
  width: calc(100% - 60px);
 }
}
@media screen and (max-width: 960px) {}
@media screen and (max-width: 600px) {}
@media screen and (max-width: 428px) {}
/*-----------------------------------------------------
	.header
------------------------------------------------------*/
.header {
/*
 max-width: 1200px;
 margin: 0px auto;
 padding-top: 53px;
 padding-right: 0px;
 padding-left: 0px;
 padding-bottom: 27px;
 position: relative;
 background-color: #FFFFFF;
*/
}
.header_wrapper {
 padding-top: 1rem;
 padding-bottom: 1rem;
}
.logo_1 img {
 width: 245px;
 height: auto;
}
.nav_item, .nav_item a {
 list-style: none;
 text-decoration: none;
 padding-right: 10px;
}
.item {
 color: #000;
}
/*　btn*/
.button02 {
 margin-left: 5px;
 text-align: center;
 color: #fff;
 width: 159px;
 background: linear-gradient(90deg, rgb(119, 184, 238) 0%, rgb(0, 117, 184) 100%);
 position: relative;
}
.button02::before{
content: "";
position: absolute;
background-image: url("../img/mail.png") ;
background-repeat: no-repeat;
background-position: center;
background-size: contain;
width: 2rem;
height: 2rem;
transform: translate(-50%, -50%);
top: 50%;
left: 20%;
}
/*　/btn*/
@media (min-width: 600px) {
 .header_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
 }
}
@media (min-width: 600px) {
 .nav_wrapper {
  display: flex;
 }
}
@media (max-width: 599px) {
 .header {
  width: 100%;
  margin: 0px auto;
  padding-top: 10px;
  padding-right: 0px;
  padding-left: 0px;
  padding-bottom: 10px;
  position: fixed;
  background-color: #FFFFFF;
  z-index: 1000;
 }
 .logo_1 img {
  width: 45%;
  height: auto;
 }
 .header_wrapper {
  padding-left: 2rem;
 }
 .nav_wrapper {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: -1;
  background-color: #d9f0f7;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-100%);
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
 }
 .nav_wrapper.active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  z-index: 999;
 }
}
.nav_item a {
 display: block;
 padding: 3rem 3rem;
}
@media (max-width: 599px) {
 .nav_toggle {
  display: block;
  position: absolute;
  right: 1rem;
  top: 1rem;
 }
}
.nav_toggle {
 display: none;
 background: none;
 border: none;
 cursor: pointer;
 z-index: 1001;
}
.nav_toggle .bar {
 display: block;
 width: 25px;
 height: 3px;
 margin: 5px auto;
 transition: all 0.4s ease;
 background-color: #333;
 border-radius: 2px;
}
.nav_toggle.active .bar:nth-child(1) {
 transform: rotate(45deg) translate(5px, 5px);
}
.nav_toggle.active .bar:nth-child(2) {
 opacity: 0;
}
.nav_toggle.active .bar:nth-child(3) {
 transform: rotate(-45deg) translate(6px, -6px);
}
@media (max-width: 599px) {
 .nav_wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #000;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 999;
  padding: 1rem 0;
 }
 .nav_wrapper.active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  height: 100vh;
 }
 .nav_toggle {
  display: block;
  position: absolute;
  top: 1.7rem;
  right: 2rem;
 }
 .nav_item a {
  position: relative;
  padding-right: 2.5em;
  color: #fff;
  display: block;
  border-bottom: 1px solid #fff; /* ← 薄い青系の線 */
 }
 .nav_item a::after {
  content: "";
  position: absolute;
  right: 1.5em;
  top: 50%;
  transform: translateY(-40%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-bottom: 2px solid #fff; /* 下線 */
  border-right: 2px solid #fff; /* 右線 */
  pointer-events: none;
  display: inline-block;
 }
 /*　btn*/
 .button02 {
  background: none !important;
  background-color: transparent !important;
  color: #fff !important;
  width: auto;
  padding: 1.5rem 3rem;
  text-align: left;
  border-radius: 0;
  box-shadow: none;
  margin-left: 0;
  position: static;
 }
 .button02::before {
  display: none;
 }
}
/*-----------------------------------------------------
	.contents_head
------------------------------------------------------*/
.contents_head {
 height: 968px;
 position: relative;
 z-index: 0;
 background: url("../img/Duo_front.jpg") no-repeat center center;
 background-size: cover;
 color: #fff;
 text-align: left;
}
.contents_head .inbox {
 width: 62vw;
}
.contents_head span.type_1 {
 margin-left: -37px;
}
.contents_head img {
 width: 7vw;
 height: auto;
 margin-top: 10vh;
}
@media screen and (max-width: 1060px) {
 .contents_head .inbox {
  width: 80vw;
 }
 .contents_head img {
  width: 10vw;
  height: auto;
  margin-top: 10vh;
 }
}

@media screen and (max-width: 600px) {
 .contents_head {
  width: 100%;
  height: 968px;
  position: relative;
  z-index: 0;
  background: url("../img/Duo_front.jpg") no-repeat center center;
  background-size: cover;
  color: #fff;
  text-align: left;
 }
 .contents_head .inbox {
  width: 80vw;
 }
 .contents_head {
  height: 484px;
 }
.contents_head img {
  width: 13vw;
  height: auto;
  margin-top:100px;
 }
}
/*-----------------------------------------------------
	.JouerVilla
------------------------------------------------------*/
.contents_head2 {
 background-color: #000;
}
.contents_head2 h3 {
 margin: auto;
 padding-top: 15px;
 width: 444px;
 height: 106px;
 background-color: #000;
 position: relative;
 margin-top: -166px;
 margin-bottom: 80px;
 font-size: 7rem;
 font-weight: 100;
 color: #fff;
 text-align: center;
}
.contents_head2 h2 {
 position: relative;
 margin-top: -100px;
 margin-bottom: 80px;
 font-size: 20rem;
 font-weight: 100;
 color: #fff;
 text-align: center;
}
.contents_head2 p {
 margin-bottom: 111px;
 font-size: 3rem;
 font-weight: 500;
 line-height: 6.4rem;
 color: #fff;
 text-align: center;
}
@media screen and (max-width: 1060px) {
 .contents_head2 h3 {
  margin-top: -23vw;
  margin-bottom: 24vw;
  width: 30vw;
  height: 13vw;
  font-size: 5vw;
 }
 .contents_head2 h2 {
  font-size: 15vw;
  margin-bottom: 10vw;
 }
 .contents_head2 p {
  margin-bottom: 15vh;
  font-size: 3.5vw;
  line-height: 7vw;
 }
}
/*-----------------------------------------------------
	.strengths
------------------------------------------------------*/
.strengths {
 display: flex;
 margin: 0 auto;
 width: 1200px;
}
.strengths_text {
 width: 50%;
 margin-right: 70px;
}
.strengths_text h4 {
 margin-bottom: 70px;
 font-size: 10rem;
 color: #fff;
 font-weight: 100;
}
.strengths_text h5 {
 padding-bottom: 45px;
 font-size: 3rem;
 color: #fff;
 font-weight: 400;
 text-align: left;
 line-height: 4.4rem;
}
.strengths_text p {
 width: 27vw;
 font-size: 2.1rem;
 color: #fff;
 font-weight: 400;
 text-align: left;
 line-height: 4.1rem;
}
.strengths_img {
 margin-bottom: 20vh;
}
.strengths_img img {
 width: 766px;
 margin-bottom: 45px;
}
.img_family {
 display: flex;
}
.img_family img {
 display: flex;
 width: 365px;
 margin-right: 35px;
}
@media screen and (max-width: 1060px) {
 .strengths {
  flex-direction: column;
  width: 100%;
 }
 .strengths_text {
  margin: 0 auto;
  width: 80%;
 }
 .strengths_text h4 {
  font-size: 10vw;
  text-align: center;
     margin-bottom: 7vh;
 }
 .strengths_text h5 {
  font-size: 4vw;
  text-align: center;
 }
 .strengths_text p {
  width: 100%;
  font-size: 2.5vw;
  text-align: left;
  margin-bottom: 5vh;
 }
 .strengths_img {
  margin: 0 auto;
  margin-bottom: 35vh;
 }
 .strengths_img img {
  width: 90vw;
 }
 .img_family img {
  width: 43vw;
  margin: 0 auto;
 }
}
@media screen and (max-width: 600px) {
 .strengths {
  flex-direction: column;
  width: 100%;
 }
 .strengths_text {
  margin: 0 auto;
  width: 80%;
 }
 .strengths_text h4 {
  font-size: 4rem;
  text-align: center;
 }
 .strengths_text h5 {
  font-size: 2rem;
  text-align: center;
 }
 .strengths_text p {
  width: 100%;
  font-size: 1.5rem;
  text-align: left;
 }
 .strengths_img {
  margin: 0 auto;
  margin-bottom: 10vh;
 }
 .strengths_img img {
  width: 90vw;
 }
 .img_family img {
  width: 43vw;
  margin: 0 auto;
 }
}
/*-----------------------------------------------------
	.strengths
------------------------------------------------------*/
.floorplan {
 padding-top: 0;
 padding-bottom: 80px;
 text-align: center;
}
.floorplan h2 {
 margin-top: 10vh;
 margin-bottom: 60px;
 font-size: 19rem;
 font-weight: 100;
}
.voice_heading {
 margin-bottom: 0 !important;
 font-size: 12rem !important;
}
.floorplan h3 {
 position: relative;
 z-index: 1;
 margin-bottom: 50px;
 font-size: 4.1rem;
 font-weight: 500;
 line-height: 1.2;
}
.floorplan p {
 margin-bottom: 50px;
 font-size: 2.1rem;
 line-height: 2;
}
.floorplan .inbox img {
 max-width: 100%;
 margin-bottom: 20px;
}
.floorplan h4 {
 margin-bottom: 30px;
 font-size: 42px;
 font-weight: 900;
 line-height: 1.2;
}
.voice {
 position: relative;
 margin-top: 50px;
 padding: 0 50px 50px;
 border: 2px solid #dedfdf;
}
.voice::before, .voice::after {
 content: "";
 display: block;
 position: absolute;
 top: 0;
 left: -8px;
 z-index: 0;
 width: calc(100% + 16px);
 height: 20px;
 background: #fff;
}
.voice::after {
 top: auto;
 bottom: 0;
}
.voice h3 {
 margin-top: -25px;
 margin-bottom: 20px;
}
.voice h3 span {
 padding: 0 50px;
 background: #fff;
 font-size: 49px;
 font-weight: 500;
 line-height: 1;
}
.voice_child {
 width: 48%;
}
.voice_child img {
 width: 148px;
 height: 148px;
}
.voice_child p {
 margin-bottom: 20px;
 font-size: 24px;
 text-align: left;
}
.voice_child p.name {
 margin-bottom: 0;
 font-size: 21px;
}
@media screen and (max-width: 960px) {
 .floorplan .inbox {
  flex-direction: column;
  width: calc(100% - 100px);
 }
 .arrow {
  width: 20vw;
  margin: 0 auto;
 }
 .floorplan h2 {
  margin-top: 10vh;
  margin-bottom: 70px;
  font-size: 19rem;
  font-weight: 100;
 }
 .voice_heading {
  margin-bottom: 0 !important;
  font-size: 5rem !important;
 }
 .floorplan h3 {
  margin-bottom: 5.208vw;
  font-size: 6.079vw;
 }
 .floorplan p {
  margin-bottom: 5.208vw;
  font-size: 2.404vw;
 }
 .floorplan .inbox img {
  margin-bottom: 2.083vw;
 }
 .floorplan h4 {
  margin-bottom: 3.125vw;
  font-size: 4.375vw;
 }
 .voice {
  margin-top: 15.625vw;
  padding: 0 5.208vw 5.208vw;
 }
 .voice h3 {
  margin-top: -5.729vw;
  margin-bottom: 2.083vw;
 }
 .voice h3 span {
  padding: 0 5.208vw;
  font-size: 5.104vw;
 }
 .voice_child img {
  width: 15.417vw;
  height: 15.417vw;
 }
 .voice_child p {
  margin-bottom: 2.083vw;
  font-size: 2.5vw;
 }
 .voice_child p.name {
  margin-bottom: 0;
  font-size: 2.188vw;
 }
}
@media screen and (max-width: 600px) {
 .floorplan {
  padding-bottom: 60px;
 }
 .arrow {
  width: 10vw;
 }
 .floorplan h2 {
  margin-top: 50px;
  margin-bottom: 40px;
  font-size: 5rem;
 }
 .voice_heading {
  margin-top: 20px !important;
  margin-bottom: 0 !important;
  font-size: 5rem !important;
 }
 .floorplan h3 {
  margin-bottom: 20px;
  font-size: 38px;
 }
 .floorplan p {
  margin-bottom: 30px;
  font-size: 1.4rem;
 }
 .floorplan .inbox img {
  margin-bottom: 30px;
 }
 .floorplan h4 {
  margin-bottom: 30px;
  font-size: 23px;
 }
 .voice {
  margin-top: 30px;
  padding: 0 30px;
  border: 6px solid #dedfdf;
 }
 .voice::before, .voice::after {
  left: -6px;
  width: calc(100% + 12px);
  height: 15px;
 }
 .voice h3 {
  margin-top: -34px;
  margin-bottom: 30px;
 }
 .voice h3 span {
  padding: 0 20px;
  font-size: 25px;
 }
 .voice_child {
  width: 100%;
  margin-bottom: 30px;
 }
 .voice_child img {
  width: 100px;
  height: 100px;
  margin-bottom: 10px !important;
 }
 .voice_child p {
  margin-bottom: 20px;
  font-size: 16px;
  text-align: left;
 }
 .voice_child p.name {
  margin-bottom: 0;
  font-size: 14px;
 }
}
/*-----------------------------------------------------
	.lineup
------------------------------------------------------*/
.line_1 {
 width: 100%;
 background-color: #000;
 padding: 60px 0;
 min-height: 300px;
 position: relative;
 overflow: visible;
}
.line_1 h2 {
 margin: auto;
 text-align: center;
 font-size: 8.7rem;
 font-weight: 100;
 color: #fff;
 margin-bottom: 20px;
}
/* .your-class {
 width: 1200px;
 margin: auto;
 position: absolute;
 background-color: #000;
 padding: 40px 40px;
}
.your-class img {
 width: 525px;
 height: 297px;
 background-color: #8B8B8B;
} */
.your-class {
 width: 80vw;
 margin: 10rem 0 0 auto;
 overflow: hidden;
 box-sizing: border-box;
}
.your-class .slick-track {
 margin-left: -15vw;
}
.slide-item {
 text-align: center;
 padding: 0 10px;
 box-sizing: border-box;
 position: relative;
}
.slide-item img {
 width: 95%;
 height: auto;
 display: block;
}
.slider-wrapper {
 position: relative;
 width: 100%;
 margin: 0 0 0 auto;
}
.slider-wrapper {
 position: relative;
 width: 80vw;
 margin: 0 0 0 auto;
}
.slide-item {
 text-align: center;
 padding: 0 5px;
 box-sizing: border-box;
 overflow: hidden;
 position: relative;
}
.caption {
 color: white;
 font-size: 3rem;
 margin-top: 0.5em;
}
.custom-nav {
 display: flex;
 justify-content: center;
 align-items: center;
 gap: 1rem;
 margin-top: 8rem;
 margin-left: -20%;
}
.custom-prev, .custom-next {
 background: transparent;
 border: none;
 color: white;
 font-size: 3rem;
 cursor: pointer;
}
.custom-dots {
 display: flex;
 gap: 0.5rem;
}
.custom-dots li button {
 background: white;
 border: none;
 width: 10px;
 height: 10px;
 border-radius: 50%;
 opacity: 0.4;
 transition: all 0.3s ease;
}
.custom-dots .slick-active button {
 opacity: 1;
 transform: scale(1.3);
}
.custom-dots .slick-dots {
 position: static !important;
 width: auto;
 bottom: auto;
 text-align: center;
 padding: 0;
 margin: 0;
}
.custom-dots li button:before {
 content: '';
 display: block;
 width: 12px !important;
 height: 12px !important;
 background: white;
 border-radius: 50%;
 opacity: 0.5;
}
@media screen and (max-width: 1060px) {
 .line_1 {
  width: 100%;
  background-color: #000;
  padding: 60px 0;
  min-height: 300px;
  position: relative;
  overflow: visible;
 }
 .line_1 h2 {
  margin: auto;
  text-align: center;
  font-size: 10vw;
  font-weight: 100;
  color: #fff;
  margin-bottom: 20px;
 }
 /* .your-class {
 width: 1200px;
 margin: auto;
 position: absolute;
 background-color: #000;
 padding: 40px 40px;
}
.your-class img {
 width: 525px;
 height: 297px;
 background-color: #8B8B8B;
} */
 .your-class {
  width: 100%;
  margin: 10rem 0 0 auto;
  overflow: hidden;
  box-sizing: border-box;
 }
 .your-class .slick-track {
  margin-left: -15vw;
 }
 .slide-item img {
  width: 100%;
  height: auto;
  display: block;
 }
 .slider-wrapper {
  position: relative;
  width: 80vw;
  margin: 0 0 0 auto;
 }
 .slide-item {
  text-align: center;
  padding: 0 20px;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
 }
 .caption {
  color: white;
  font-size: 1.6rem;
  margin-top: 0.5em;
 }
 .custom-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 8rem;
  margin-left: -20%;
 }
 .custom-prev, .custom-next {
  background: transparent;
  border: none;
  color: white;
  font-size: 3rem;
  cursor: pointer;
 }
 .custom-dots {
  display: flex;
  gap: 0.5rem;
 }
 .custom-dots li button {
  background: white;
  border: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  opacity: 0.4;
  transition: all 0.3s ease;
 }
 .custom-dots .slick-active button {
  opacity: 1;
  transform: scale(1.3);
 }
 .custom-dots .slick-dots {
  position: static !important;
  width: auto;
  bottom: auto;
  text-align: center;
  padding: 0;
  margin: 0;
 }
 .custom-dots li button:before {
  content: '';
  display: block;
  width: 12px !important;
  height: 12px !important;
  background: white;
  border-radius: 50%;
  opacity: 0.5;
 }
}
@media screen and (max-width: 1060px) {
  .your-class {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    box-sizing: border-box;
  }
  .your-class .slick-track {
    margin-left: 0; /* ← ここを0に */
  }
  .slider-wrapper {
    width: 100%; /* ← ここも100%に */
    margin: 0 auto;
  }
  .slide-item img {
    width: 100%;
    max-width: 100%; /* ← 追加 */
    height: auto;
    display: block;
  }
    
.custom-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 8rem;
    margin-left: 0;    /* ← ここも0に */
    width: 100%;       /* ← 追加 */
  }
}

/*-----------------------------------------------------
	footer
------------------------------------------------------*/
footer {
 width: 100%;
 background: #fff;
}
.footer_01 {
 margin: auto;
 padding-top: 100px;
 width: 1200px;
 height: 685px;
}
.logo_2 {
 display: flex;
 align-items: flex-end;
 margin-bottom: 40px;
}
.logo_2 img {
 width: 222px;
 height: auto;
 text-align: left;
}
address {
 width: 400px;
 margin-bottom: 55px;
 max-width: 100%;
 font-size: 1.6rem;
 ;
 font-style: normal;
 line-height: 2.4rem;
 text-align: left;
}
.map {
 margin-bottom: 64px;
}
.map_wrapper {
 display: flex;
}
.map_wrapper, .map_item a {
 color: #000000;
 font-size: 1.6rem;
 font-style: normal;
 list-style: none;
 text-decoration: none;
}
.map_item {
 width: 200px;
 margin-bottom: 15px;
}
footer p {
 /*	margin-bottom: 100px;	*/
 font-size: 1.26rem;
 line-height: 2.4rem;
}
small {
 margin: 0 auto;
 font-size: 1.6rem;
 width: fit-content;
 display: block;
}
@media screen and (max-width: 1060px) {
 footer {
  padding: 60px 30px 60px;
  text-align: center;
 }
 .footer_01 {
  margin: auto;
  padding-top: 0px;
  width: 100%;
 }
 address {
  width: 100%;
  margin-bottom: 25px;
  max-width: 100%;
  font-size: 1.6rem;
  font-style: normal;
  line-height: 2.4rem;
  text-align: left;
 }
 .map {
  margin-bottom: 32px;
 }
 .map_wrapper {
  display: flex;
  flex-direction: column;
 }
 .map_item {
  width: fit-content;
  margin-bottom: 15px;
 }
}
@media screen and (max-width: 600px) {
 footer {
  padding: 60px 30px 60px;
  text-align: center;
 }
 .footer_01 {
  margin: auto;
  padding-top: 0px;
  width: 100%;
 }
 address {
  width: 100%;
  margin-bottom: 25px;
  max-width: 100%;
  font-size: 1.6rem;
  font-style: normal;
  line-height: 2.4rem;
  text-align: left;
 }
 .map {
  margin-bottom: 32px;
 }
 .map_wrapper {
  display: flex;
  flex-direction: column;
 }
 .map_item {
  width: fit-content;
  margin-bottom: 15px;
 }
}
/*-----------------------------------------------------
	others
------------------------------------------------------*/
.tb {
 display: none !important;
}
.sp {
 display: none !important;
}
/*---------------------------------------------------------------------------------------------------------------------------------------------------------------
	~767px SP
----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 960px) {
 .pc {
  display: none !important;
 }
 .tb {
  display: block !important;
 }
}
@media screen and (max-width: 600px) {
 .tb {
  display: none !important;
 }
 .sp {
  display: block !important;
 }
}