@charset "UTF-8";

@media (max-width: 599px){
  .sp_none {
    display: none!important;
  }
}
@media (min-width: 600px){
  .pc_none {
    display: none!important;
  }
}

body {
  position: relative;
}

body .global_wrapper {
  overflow: hidden;
  margin-bottom: -70px;
}

body header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 90px;
  background: #ffffff;
  padding-left: 32px;
  padding-right: 48px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1050px) {
  body header {
    height: 80px;
    padding-right: 0;
  }
}

@media (max-width: 400px) {
  body header {
    padding-left: 20px;
  }
}

body header .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

body .logo a img {
  width: 200px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 1050px) {
  body .logo a img {
    width: 176px;
  }
}

@media (max-width: 750px) {
  body .logo a img {
    width: 144px;
  }
}

body header .header_btn {
  display: flex;
}

body header .header_btn a {
  margin: 0 auto;
  max-width: 300px;
}

@media (max-width: 1050px) {
  body header .header_btn a {
    margin-right: 25px;
    max-width: 250px;
  }
}

@media (max-width: 750px) {
  body header .header_btn a {
    margin-right: 30px;
  }
}

@media (max-width: 450px) {
  body header .header_btn a {
    margin-right: 5px;
    max-width: 200px;
  }
}

body header .header_btn img {
  width: 300px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 1050px) {
  body header .header_btn img {
    max-width: 250px;
  }
}

@media (max-width: 450px) {
  body header .header_btn img {
    max-width: 200px;
  }
}

body .global_wrapper .top_wrapper .first_view_pc {
  margin-top: 75px;
  margin-bottom: 50px;
}

body .global_wrapper .top_wrapper .first_view_sp {
  padding: 40px 0px 0px;
}


@media (max-width: 1050px) {
  body .global_wrapper .top_wrapper .first_view_pc h2 .text_02 {
  max-width: 515px;
  }
}

@media (max-width: 1024px) {
  body .global_wrapper .top_wrapper .first_view_pc h2 .text_02 {
    font-size: 75px;
  }
}

body .global_wrapper .top_wrapper .first_view_pc .inner {
  z-index: 2;
  display: flex;
}

body .global_wrapper .top_wrapper .first_view_pc .image_01_pc img {
  max-width: 100%;
  margin: 0 auto;
}

body .global_wrapper .top_wrapper .first_view_pc .image_02_pc img {
  max-width: 100%;
  margin-top: 30%;
}

body .global_wrapper .top_wrapper .first_view_sp .image_01_sp img {
  max-width: 100%;
  padding: 40px 0px 50px;
}






/*
------
modal
------
*/
.modal-wrapper {
  z-index: 999;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 40px 10px;
  text-align: center;
}

.modal-button {
    color: #4f96f6;
    background-color: #eeeeee;
    font-weight: bold;
    text-align: center;
    cursor :pointer;
    transition: all 0.3s;
    display: block;
    margin-top: 40px;
    margin-bottom: 1px;
    padding: 12px 2px;
    max-width:300px;
    text-decoration: none;
}

.modal-button:active {
  /*ボタンを押したとき*/
  -webkit-transform: translateY(2px);
  transform: translateY(2px);/*下に動く*/

}

/*アイコンを表示*/
.modal-button:after {
font-family: "Font Awesome 5 Free";
  content: "\f2d0";
    padding-left: 8px;
}

/*ラベルホバー時*/
.modal-button:hover {
  color: #FFFFFF;
  background-color: #4f96f6;
  transition: .6s;
}

.modal-wrapper:not(:target) {
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}

.modal-wrapper:target {
  opacity: 1;
  visibility: visible;
  transition: opacity .4s, visibility .4s;
}

.modal-wrapper::after {
  display: inline-block;
  height: 100%;
  margin-left: -.05em;
  vertical-align: middle;
  content: ""
}

.modal-wrapper .modal-window {
  box-sizing: border-box;
  display: inline-block;
  z-index: 20;
  position: relative;
  width: 70%;
  max-width: 600px;
  padding: 10px 30px 25px;
  border-radius: 2px;
  background: #fff;
  vertical-align: middle
}

 @media (max-width: 599px) {
.modal-wrapper .modal-window {
  width: 90%;
  padding: 10px 12px 25px;
  margin-top: 15%;
 }
}

.modal-wrapper .modal-window .modal-content {
  max-height: 80vh;
  overflow-y: auto;
  text-align: left
}

.modal_title {
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  padding: 0;
  text-align: left;
  color: #444;
}

.modal_title::before,
.modal_title::after{
  content: "";
  position: absolute;
  bottom: 0;
}

.modal-content p {
  margin: 10px 0 0 0;
  font-size: 0.75rem;
  text-align: left;
  line-height: 17px;
  color: #444;
}

.modal-overlay {
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .4)
}

.modal-wrapper .modal-close {
  z-index: 20;
  position: absolute;
  top: 5px;
  right: 5px;
  width: 35px;
  color: #95979c !important;
  font-size: 30px;
  font-weight: 700;
  line-height: 35px;
  text-align: center;
  text-decoration: none;
  text-indent: 0
}

.modal-wrapper .modal-close:hover {
  color: #2b2e38 !important
}









/* Robot Homeなら安心 */

body main article .reasons {
  margin: 60px auto;
}

body main article .reasons h1 {
  text-align: center;
  line-height: 1.7;
  letter-spacing: 0;
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 32px;
}

@media (max-width: 600px) {
  body main article .reasons h1 {
    margin-top: 5px;
    margin-bottom: 10px;
    font-size: 25px;
  }
}

body main article .reasons .underline {
  text-decoration-line: underline;
  text-decoration-color: rgba(252,241,48,1);
  text-decoration-thickness: .4em;
  text-underline-offset: -.1em;
  text-decoration-skip-ink: none;
}

body main article .reasons .h1text {
  margin: 0px auto 30px;
  max-width: 750px;
}

@media (max-width: 600px) {
  body main article .reasons .h1text {
    margin: 0 auto;
    max-width: 288px;
  }
}

@media (max-width: 600px) {
  body main article .reasons .underline .h1text {
    margin: 0 auto;
    max-width: 288px;
  }
}

@media (max-width: 600px) {
  body main article .reasons .underline {
    text-decoration-thickness: .6em;
  }
}





body main article .four-reasons {
  position: relative;
  margin: 0 auto;
  padding: 100px;
  background: url(../image/pc/reasons_bk_pc.jpg) center;
  background-size: cover;
}

@media (max-width: 600px) {
body main article .four-reasons {
    padding: 50px 30px;
   }
}

body main article .four-reasons .image_pc {
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
}

@media (max-width: 1600px) {
  body main article .four-reasons .image_pc {
    max-width: 1000px;
  }
}

@media (max-width: 600px) {
  body main article .four-reasons .image_pc {
    display: none;
  }
}

body main article .four-reasons .image_pc img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body main article .four-reasons .image_sp {
  margin: 30px auto;
  width: 100%;
  max-width: 600px;
  display: none;
}

@media (max-width: 600px) {
  body main article .four-reasons .image_sp {
    display: block;
  }
}

body main article .four-reasons .image_sp img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}



body main article .four-reasons .wrapper {
  padding-top: 160px;
}

@media (max-width: 1050px) {
  body main article .four-reasons .wrapper{
    padding-top: 50px;
  }
}

@media (max-width: 600px) {
  body main article .four-reasons .wrapper{
    padding-top: 70px;
  }
}

body main article .four-reasons .wrapper .outer {
  position: relative;
}

@media (max-width: 1050px) {
  body main article .four-reasons .wrapper .outer {
    padding-bottom: 3vw;
  }
}

body main article .four-reasons .wrapper .outer::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
}

body main article .four-reasons .wrapper .outer::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
}





/* 投資用アパートのエキスパート */

body main article .expert {
  position: relative;
  padding: 80px 20px;
  background-color: #E9F4E9;
}

@media (max-width: 600px) {
  body main article .expert {
    padding: 55px 20px 30px;
  }
}

body main article .expert h1 {
  position: relative;
  display: block;
  margin-bottom: 50px;
  text-align: center;
  font-family: "Noto Sans JP";
  font-weight: 600;
  font-size: 30px;
  color: #0C7246;
}

@media (max-width: 600px) {
  body main article .expert h1 {
    position: relative;
    display: block;
    margin-bottom: 5px;
    text-align: center;
    font-size: 20px;
  }
}

body main article .expert h2 {
  position: relative;
  display: block;
  margin-bottom: 50px;
  text-align: center;
  line-height: 1.7;
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 22px;
}

@media (max-width: 600px) {
  body main article .expert h2 {
    position: relative;
    display: block;
    margin: 30px auto 5px;
    text-align: center;
    font-size: 16px;
  }
}

body main article .expert .underline {
  text-decoration-line: underline;
  text-decoration-color: rgba(252,241,48,1);
  text-decoration-thickness: .4em;
  text-underline-offset: -.1em;
  text-decoration-skip-ink: none;
}

body main article .expert .image_pc {
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
}

@media (max-width: 1600px) {
  body main article .expert .image_pc {
    max-width: 1000px;
  }
}

@media (max-width: 600px) {
  body main article .expert .image_pc {
    display: none;
  }
}

body main article .expert .image_pc img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body main article .expert .image_sp {
  margin: 30px auto;
  width: 100%;
  max-width: 600px;
  display: none;
}

@media (max-width: 600px) {
  body main article .expert .image_sp {
    display: block;
  }
}

body main article .expert .image_sp img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}





/* 区分マンションと一棟アパートの違い*/

body main article .difference {
  margin-top: 80px;
  margin-bottom: 60px;
}

body main article .difference h1 {
  text-align: center;
  letter-spacing: 0;
  font-family: "Noto Sans JP";
  font-weight: 600;
  font-size: 30px;
}

@media (max-width: 1050px) {
  body main article .difference h1 {
    margin-bottom: 56px;
    font-size: 26px;
  }
}

@media (max-width: 600px) {
  body main article .difference h1 {
    margin-bottom: 40px;
    font-size: 20px;
  }
}

body main article .difference .h1text .underline {
  margin: 0px auto 30px;
  max-width: 400px;
}

body main article .difference .h1text {
  margin: 0px auto 70px;
  max-width: 750px;
}

@media (max-width: 600px) {
  body main article .difference .h1text {
    margin: 0 auto;
    max-width: 400px;
  }
}

@media (max-width: 600px) {
  body main article .difference .underline .h1text {
    margin: 0 auto;
    max-width: 288px;
  }
}


body main article .difference {
  position: relative;
  margin: 0 auto;
  padding: 80px 20px;
  background: url(../image/common/difference_bg.jpg) center;
  background-size: cover;
}

@media (max-width: 600px) {
body main article .difference {
    padding: 60px 10px;
   }
}

body main article .difference .image_pc {
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
}

@media (max-width: 1600px) {
  body main article .difference .image_pc {
    max-width: 1000px;
  }
}

@media (max-width: 600px) {
  body main article .difference .image_pc {
    display: none;
  }
}

body main article .difference .image_pc img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body main article .difference .image_sp {
  margin-bottom: 32px;
  width: 100%;
  display: none;
}

@media (max-width: 600px) {
  body main article .difference .image_sp {
    display: block;
  }
}

body main article .difference .image_sp img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


body main article .difference_text {
  margin: 30px auto;
}

body main article .difference_text .underline {
  text-decoration-line: underline;
  text-decoration-color: rgba(252,241,48,1);
  text-decoration-thickness: .4em;
  text-underline-offset: -.1em;
  text-decoration-skip-ink: none;
}

body main article .difference_text h2 {
  text-align: center;
  letter-spacing: 0;
  line-height: 1.7;
  font-family: "Noto Sans JP";
  font-weight: 600;
  font-size: 26px;
}

@media (max-width: 1050px) {
  body main article .difference_text h2 {
    margin-bottom: 56px;
    font-size: 22px;
  }
}

@media (max-width: 600px) {
  body main article .difference_text h2 {
    font-size: 16px;
    margin: 5px 15px 10px;
  }
}





/* Robot Homeのアパートの特徴 */

body main article .points {
  position: relative;
  padding: 50px 20px;
  background-color: #21A56F;
}

@media (max-width: 600px) {
  body main article .points {
    padding: 30px 20px;
  }
}

body main article .points h1 {
  position: relative;
  display: block;
  text-align: center;
  font-family: "Noto Sans JP";
  font-weight: 600;
  font-size: 36px;
  color: #ffffff;
}

@media (max-width: 600px) {
  body main article .points h1 {
    position: relative;
    display: block;
    text-align: center;
    font-size: 22px;
  }
}



body main article .point_01 {
  position: relative;
  padding: 80px 20px;
  background-color: #E9F4E9;
}

@media (max-width: 600px) {
  body main article .point_01 {
    padding: 40px 20px 30px;
  }
}

body main article .point_01 h1 {
  position: relative;
  display: block;
  margin-bottom: 50px;
  text-align: center;
  font-family: "Noto Sans JP";
  font-weight: 600;
  font-size: 30px;
  color: #0C7246;
}

@media (max-width: 600px) {
  body main article .point_01 h1 {
    position: relative;
    display: block;
    margin: 0px -13px 5px;
    text-align: center;
    font-size: 18px;
  }
}

body main article .point_01 h2 {
  position: relative;
  display: block;
  margin-bottom: 50px;
  text-align: center;
  line-height: 1.7;
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 22px;
}

@media (max-width: 600px) {
  body main article .point_01 h2 {
    position: relative;
    display: block;
    margin: 0px 10px 40px;
    text-align: center;
    font-size: 16px;
  }
}

body main article .point_01 .image_pc_01 {
  margin: 0 auto;
  max-width: 100px;
  width: 100%;
}

body main article .point_01 .box_pc {
    position: relative;
    margin-bottom: 50px;
}

@media (max-width: 600px) {
  body main article .point_01 .box_pc {
    margin-bottom: 0px;
  }
}

body main article .point_01 .box_pc img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body main article .point_01 .box_pc h1{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}



body main article .point_01 .image_sp_01 {
  margin: 0 auto;
  max-width: 80px;
  width: 100%;
}

body main article .point_01 .box_sp {
    position: relative;
    margin-bottom: 30px;
}

body main article .point_01 .box_sp img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body main article .point_01 .box_sp h1{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}



body main article .point_01 .image_pc_02 {
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
}

@media (max-width: 1600px) {
  body main article .point_01 .image_pc_02 {
    max-width: 1000px;
  }
}

body main article .point_01 .image_pc_02 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


body main article .point_02 .image_sp_01 {
  margin: 0 auto;
  max-width: 80px;
  width: 100%;
}

body main article .point_02 .box_sp {
    position: relative;
    margin-bottom: 30px;
}

body main article .point_02 .box_sp img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body main article .point_02 .box_sp h1{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}



body main article .point_02 {
  position: relative;
  padding: 80px 20px;
}

@media (max-width: 600px) {
  body main article .point_02 {
    padding: 55px 20px 50px;
  }
}

body main article .point_02 h1 {
  position: relative;
  display: block;
  margin-bottom: 50px;
  text-align: center;
  font-family: "Noto Sans JP";
  font-weight: 600;
  font-size: 30px;
  color: #0C7246;
}

@media (max-width: 600px) {
  body main article .point_02 h1 {
    position: relative;
    display: block;
    margin: 0px -16px 5px;
    text-align: center;
    font-size: 18px;
    line-height: 1.2;
  }
}

body main article .point_02 h2 {
  position: relative;
  display: block;
  margin-bottom: 50px;
  text-align: center;
  line-height: 1.7;
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 22px;
}

@media (max-width: 600px) {
  body main article .point_02 h2 {
    position: relative;
    display: block;
    margin: 0px 10px 5px;
    text-align: center;
    font-size: 15px;
  }
}

body main article .point_02 .image_pc_01 {
  margin: 0 auto;
  max-width: 100px;
  width: 100%;
}

@media (max-width: 800px) {
  body main article .point_02 .image_pc_01 {
    display: none;
  }
}

body main article .point_02 .image_pc_02 {
  margin: 50px auto 0;
  max-width: 1200px;
  width: 100%;
}

@media (max-width: 1600px) {
  body main article .point_02 .image_pc_02 {
    max-width: 1000px;
  }
}

body main article .point_02 .image_pc_02 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body main article .point_02 .box_pc {
    position: relative;
    margin-bottom: 100px;
}

@media (max-width: 600px) {
  body main article .point_02 .box_pc {
    margin-bottom: 0px;
  }
}

body main article .point_02 .box_pc img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body main article .point_02 .box_pc h1{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

body main article .video {
    margin: 50px auto;
    max-width: 560px;
    width: 100%;
}

@media (max-width: 600px) {
  body main article .video {
    margin: 50px auto;
    max-width: 320px;
    width: 100%;
  }
}



body main article .point_03 {
  position: relative;
  padding: 80px 20px;
  background-color: #E9F4E9;
}

@media (max-width: 600px) {
  body main article .point_03 {
    padding: 55px 20px 50px;
  }
}

body main article .point_03 h1 {
  position: relative;
  display: block;
  margin-bottom: 50px;
  text-align: center;
  font-family: "Noto Sans JP";
  font-weight: 600;
  font-size: 30px;
  color: #0C7246;
}

@media (max-width: 600px) {
  body main article .point_03 h1 {
    position: relative;
    display: block;
    margin: 0px -3px 5px;
    text-align: center;
    font-size: 18px;
  }
}

body main article .point_03 h2 {
  position: relative;
  display: block;
  margin-bottom: 50px;
  text-align: center;
  line-height: 1.7;
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 22px;
}

@media (max-width: 600px) {
  body main article .point_03 h2 {
    position: relative;
    display: block;
    margin: 0px 30px 5px;
    text-align: center;
    font-size: 12px;
  }
}

body main article .point_03 .image_pc_01 {
  margin: 0 auto;
  max-width: 100px;
  width: 100%;
}

body main article .point_03 .box_pc {
    position: relative;
    margin-bottom: 50px;
}

@media (max-width: 600px) {
  body main article .point_03 .box_pc {
    margin-bottom: 0px;
  }
}

body main article .point_03 .box_pc img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body main article .point_03 .box_pc h1{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}



body main article .point_03 .image_sp_01 {
  margin: 0 auto;
  max-width: 80px;
  width: 100%;
}

body main article .point_03 .box_sp {
    position: relative;
    margin-bottom: 30px;
}

body main article .point_03 .box_sp img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body main article .point_03 .box_sp h1{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}


body main article .point_03 .image_pc_02 {
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
}

@media (max-width: 1600px) {
  body main article .point_03 .image_pc_02 {
    max-width: 1100px;
  }
}


body main article .point_03 .image_pc_02 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}








/* オーナー様の声 */

body main article .interview {
  position: relative;
  padding: 80px 20px;
}

@media (max-width: 600px) {
  body main article .interview {
    padding: 55px 20px 30px;
  }
}

body main article .interview h1 {
  position: relative;
  display: block;
  margin-bottom: 50px;
  text-align: center;
  font-family: "Noto Sans JP";
  font-weight: 600;
  font-size: 30px;
  color: #0C7246;
}

@media (max-width: 600px) {
  body main article .interview h1 {
    position: relative;
    display: block;
    margin: 0px 30px 50px;
    text-align: center;
    font-size: 18px;
  }
}


body main article .interview .wrapper {
  margin: 0 auto;
  padding: 0 24px;
  max-width: 960px;
}

body main article .interview .wrapper .outer {
  margin-bottom: 120px;
  display: flex;
  justify-content: center;
}

@media (max-width: 1050px) {
  body main article .interview .wrapper .outer {
    margin-bottom: 96px;
  }
}

@media (max-width: 800px) {
  body main article .interview .wrapper .outer {
    margin-bottom: 64px;
    flex-direction: column-reverse;
  }
}

@media (max-width: 600px) {
  body main article .interview .wrapper .outer {
    margin-bottom: 40px;
  }
}

body main article .interview .wrapper .outer .inner {
  margin-right: 64px;
  min-width: 464px;
}

@media (max-width: 1050px) {
  body main article .interview .wrapper .outer .inner {
    margin-right: 24px;
  }
}

@media (max-width: 800px) {
  body main article .interview .wrapper .outer .inner {
    margin-right: 0;
    min-width: auto;
  }
}

body main article .interview .wrapper .outer .inner h2 {
  margin-bottom: 24px;
  letter-spacing: 0.25em;
  line-height: 1.8;
  font-weight: bold;
  font-size: 20px;
}

@media (max-width: 800px) {
  body main article .interview .wrapper .outer .inner h2 {
    text-align: center;
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  body main article .interview .wrapper .outer .inner h2 {
    margin-bottom: 16px;
    text-align: center;
    font-size: 16px;
  }
}

body main article .interview .wrapper .outer .inner .text_pc {
  margin-bottom: 16px;
  display: block;
  line-height: 1.8;
  font-size: 14px;
  text-align: justify;
  text-justify: inter-ideograph;
}

@media (max-width: 1050px) {
  body main article .interview .wrapper .outer .inner .text_pc {
    font-size: 13px;
  }
}

@media (max-width: 800px) {
  body main article .interview .wrapper .outer .inner .text_pc {
    display: none;
  }
}

body main article .interview .wrapper .outer .inner .text_pc:nth-last-of-type(2) {
  margin-bottom: 0;
}

body main article .interview .wrapper .outer .inner .text_sp {
  margin-bottom: 16px;
  display: none;
  line-height: 1.5;
  font-size: 14px;
  text-align: justify;
  text-justify: inter-ideograph;
}

@media (max-width: 800px) {
  body main article .interview .wrapper .outer .inner .text_sp {
    display: block;
  }
}

body main article .interview .wrapper .outer .inner .text_sp:nth-last-of-type(1) {
  margin-bottom: 0;
}

@media (max-width: 800px) {
  body main article .interview .wrapper .outer .image_outer {
    margin-bottom: 24px;
  }
}

body main article .interview .wrapper .outer .image_outer .image_pc {
  margin-bottom: 24px;
}

@media (max-width: 800px) {
  body main article .interview .wrapper .outer .image_outer .image_pc {
    display: none;
  }
}

body main article .interview .wrapper .outer .image_outer .image_pc img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1050px) {
  body main article .interview .wrapper .outer .image_outer .image_pc img {
    height: 400px;
  }
}

body main article .interview .wrapper .outer .image_outer .image_sp {
  margin-bottom: 16px;
  display: none;
}

@media (max-width: 800px) {
  body main article .interview .wrapper .outer .image_outer .image_sp {
    display: block;
  }
}

body main article .interview .wrapper .outer .image_outer .image_sp img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

body main article .interview .wrapper .outer .image_outer .image_sp img::before {
  content: '';
  padding-top: 62%;
  display: block;
}

body main article .interview .wrapper .outer .image_outer .name {
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 30px;
  color: #595757;
}

@media (max-width: 1050px) {
  body main article .interview .wrapper .outer .image_outer .name {
    font-size: 26px;
  }
}

@media (max-width: 800px) {
  body main article .interview .wrapper .outer .image_outer .name {
    margin-bottom: 8px;
    text-align: right;
    font-size: 22px;
  }
}

@media (max-width: 600px) {
  body main article .interview .wrapper .outer .image_outer .name {
    font-size: 18px;
  }
}

body main article .interview .wrapper .outer .image_outer .age_profession {
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 20px;
  color: #595757;
}

@media (max-width: 1050px) {
  body main article .interview .wrapper .outer .image_outer .age_profession {
    font-size: 18px;
  }
}

@media (max-width: 800px) {
  body main article .interview .wrapper .outer .image_outer .age_profession {
    text-align: right;
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  body main article .interview .wrapper .outer .image_outer .age_profession {
    font-size: 14px;
  }
}

body main article .interview .wrapper .entry_image {
  padding: 0 40px;
  width: 100%;
  display: block;
}

@media (max-width: 800px) {
  body main article .interview .wrapper .entry_image {
    padding: 0;
  }
}

body main article .interview .wrapper .entry_image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}





/* 過去の物件を一部ご紹介 */

body main article .properties .wrapper {
  padding: 0 48px;
  padding-top: 80px;
  padding-bottom: 56px;
  background: #f2f2f2;
}

@media (max-width: 1400px) {
  body main article .properties .wrapper {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (max-width: 1050px) {
  body main article .properties .wrapper {
    padding-top: 80px;
    padding-bottom: 56px;
  }
}

@media (max-width: 800px) {
  body main article .properties .wrapper {
    padding-top: 64px;
    padding-bottom: 48px;
  }
}

@media (max-width: 600px) {
  body main article .properties .wrapper {
    padding: 0 32px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media (max-width: 600px) {
  body main article .properties .wrapper {
    padding: 0 24px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

body main article .properties .wrapper h1 {
  margin-bottom: 88px;
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  color: #000;
}

@media (max-width: 1050px) {
  body main article .properties .wrapper h1 {
    margin-bottom: 72px;
    font-size: 28px;
  }
}

@media (max-width: 800px) {
  body main article .properties .wrapper h1 {
    margin-bottom: 48px;
    font-size: 25px;
  }
}

@media (max-width: 600px) {
  body main article .properties .wrapper h1 {
    margin-bottom: 24px;
    font-size: 20px;
  }
}

body main article .properties .wrapper .properties_slider {
  position: relative;
  width: 100%;
}

body main article .properties .wrapper .properties_slider .slick-list .slick-track {
  margin-bottom: 56px;
}

@media (max-width: 1050px) {
  body main article .properties .wrapper .properties_slider .slick-list .slick-track {
    margin-bottom: 40px;
  }
}

@media (max-width: 600px) {
  body main article .properties .wrapper .properties_slider .slick-list .slick-track {
    margin-bottom: 24px;
  }
}

body main article .properties .wrapper .properties_slider .slick-list .slick-track li {
  margin: 0 8px;
  padding: 24px 32px;
  background: #fff;
}

@media (max-width: 1400px) {
  body main article .properties .wrapper .properties_slider .slick-list .slick-track li {
    margin: 0 16px;
  }
}

@media (max-width: 1050px) {
  body main article .properties .wrapper .properties_slider .slick-list .slick-track li {
    padding: 32px 48px;
  }
}

@media (max-width: 800px) {
  body main article .properties .wrapper .properties_slider .slick-list .slick-track li {
    padding: 24px 32px;
  }
}

@media (max-width: 600px) {
  body main article .properties .wrapper .properties_slider .slick-list .slick-track li {
    margin: 0;
    padding: 16px 24px;
  }
}

body main article .properties .wrapper .properties_slider .slick-list .slick-track li .image {
  margin-bottom: 32px;
}

@media (max-width: 1050px) {
  body main article .properties .wrapper .properties_slider .slick-list .slick-track li .image {
    margin-bottom: 24px;
  }
}

@media (max-width: 600px) {
  body main article .properties .wrapper .properties_slider .slick-list .slick-track li .image {
    margin-bottom: 16px;
  }
}

body main article .properties .wrapper .properties_slider .slick-list .slick-track li .image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

body main article .properties .wrapper .properties_slider .slick-list .slick-track li .image img::before {
  content: "";
  padding-top: 100%;
  display: block;
}

@media (max-width: 1400px) {
  body main article .properties .wrapper .properties_slider .slick-list .slick-track li .image img::before {
    padding-top: 62%;
  }
}

body main article .properties .wrapper .properties_slider .slick-list .slick-track li dl .inner {
  margin-bottom: 8px;
  display: flex;
}

body main article .properties .wrapper .properties_slider .slick-list .slick-track li dl .inner dt {
  margin-right: 8px;
  padding: 8px 0;
  max-width: 80px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #21A56F;
  font-weight: bold;
  font-size: 18px;
  color: #fff;
}

@media (max-width: 1400px) {
  body main article .properties .wrapper .properties_slider .slick-list .slick-track li dl .inner dt {
    max-width: 88px;
    font-size: 20px;
  }
}

@media (max-width: 1050px) {
  body main article .properties .wrapper .properties_slider .slick-list .slick-track li dl .inner dt {
    font-size: 18px;
  }
}

@media (max-width: 800px) {
  body main article .properties .wrapper .properties_slider .slick-list .slick-track li dl .inner dt {
    max-width: 72px;
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  body main article .properties .wrapper .properties_slider .slick-list .slick-track li dl .inner dt {
    max-width: 64px;
    font-size: 14px;
  }
}

body main article .properties .wrapper .properties_slider .slick-list .slick-track li dl .inner dd {
  width: 100%;
  padding: 8px 0;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  align-items: center;
  background: #E9F4E9;
  line-height: 1.2;
  font-weight: bold;
  font-size: 18px;
  color: #21A56F;
}

@media (max-width: 1400px) {
  body main article .properties .wrapper .properties_slider .slick-list .slick-track li dl .inner dd {
    font-size: 20px;
  }
}

@media (max-width: 1050px) {
  body main article .properties .wrapper .properties_slider .slick-list .slick-track li dl .inner dd {
    font-size: 18px;
  }
}

@media (max-width: 800px) {
  body main article .properties .wrapper .properties_slider .slick-list .slick-track li dl .inner dd {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  body main article .properties .wrapper .properties_slider .slick-list .slick-track li dl .inner dd {
    padding-right: 8px;
    padding-left: 8px;
    font-size: 14px;
  }
}

body main article .properties .wrapper .properties_slider .slick-list .slick-track li dl .inner:nth-last-of-type(1) {
  margin-bottom: 0;
}

body main article .properties .wrapper .properties_slider .slick-dots {
  display: flex;
  justify-content: center;
}

body main article .properties .wrapper .properties_slider .slick-dots li {
  margin-left: 16px;
  width: 10px;
  height: 10px;
  background: #bfc3c7;
  border-radius: 50%;
}

body main article .properties .wrapper .properties_slider .slick-dots li:hover {
  cursor: pointer;
}

body main article .properties .wrapper .properties_slider .slick-dots li button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  font-size: 0px;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

body main article .properties .wrapper .properties_slider .slick-dots li:nth-of-type(1) {
  margin-left: 0;
}

body main article .properties .wrapper .properties_slider .slick-dots .slick-active {
  background: #5d6975;
}

body main article .properties .wrapper .properties_slider .slick-prev,
body main article .properties .wrapper .properties_slider .slick-next {
  position: absolute;
  top: -5%;
  bottom: 0;
  margin: auto;
  z-index: 1;
  width: 56px;
  height: 56px;
  background: #253949;
  border-radius: 50%;
  border: none;
  font-size: 0px;
  opacity: 0.8;
  cursor: pointer;
}

body main article .properties .wrapper .properties_slider .slick-prev::before,
body main article .properties .wrapper .properties_slider .slick-next::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40%;
  margin: auto;
  width: 16px;
  height: 16px;
  display: inline-block;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(45deg);
}

@media (max-width: 1050px) {
  body main article .properties .wrapper .properties_slider .slick-prev::before,
  body main article .properties .wrapper .properties_slider .slick-next::before {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 600px) {
  body main article .properties .wrapper .properties_slider .slick-prev::before,
  body main article .properties .wrapper .properties_slider .slick-next::before {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 400px) {
  body main article .properties .wrapper .properties_slider .slick-prev::before,
  body main article .properties .wrapper .properties_slider .slick-next::before {
    width: 8px;
    height: 8px;
  }
}

@media (max-width: 1050px) {
  body main article .properties .wrapper .properties_slider .slick-prev,
  body main article .properties .wrapper .properties_slider .slick-next {
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 600px) {
  body main article .properties .wrapper .properties_slider .slick-prev,
  body main article .properties .wrapper .properties_slider .slick-next {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 400px) {
  body main article .properties .wrapper .properties_slider .slick-prev,
  body main article .properties .wrapper .properties_slider .slick-next {
    top: -8%;
    width: 32px;
    height: 32px;
  }
}

body main article .properties .wrapper .properties_slider .slick-prev {
  left: -2%;
}

@media (max-width: 1400px) {
  body main article .properties .wrapper .properties_slider .slick-prev {
    left: 12%;
  }
}

@media (max-width: 1050px) {
  body main article .properties .wrapper .properties_slider .slick-prev {
    left: 8%;
  }
}

@media (max-width: 600px) {
  body main article .properties .wrapper .properties_slider .slick-prev {
    left: -4%;
  }
}

body main article .properties .wrapper .properties_slider .slick-next {
  right: -2%;
}

@media (max-width: 1400px) {
  body main article .properties .wrapper .properties_slider .slick-next {
    right: 12%;
  }
}

@media (max-width: 1050px) {
  body main article .properties .wrapper .properties_slider .slick-next {
    right: 8%;
  }
}

@media (max-width: 600px) {
  body main article .properties .wrapper .properties_slider .slick-next {
    right: -4%;
  }
}

body main article .properties .wrapper .properties_slider .slick-next::before {
  left: 30%;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  border-left: none;
  transform: rotate(-45deg);
}




/* 会社概要 */

body main article .company {
  padding-top: 64px;
}

@media (max-width: 1050px) {
  body main article .company {
    padding-top: 56px;
  }
}

@media (max-width: 800px) {
  body main article .company {
    padding-top: 48px;
  }
}

@media (max-width: 600px) {
  body main article .company {
    padding-top: 40px;
  }
}

body main article .company .wrapper {
  padding: 0 24px;
  padding-top: 64px;
  padding-bottom: 88px;
}

@media (max-width: 1050px) {
  body main article .company .wrapper {
    padding-top: 56px;
    padding-bottom: 80px;
  }
}

@media (max-width: 800px) {
  body main article .company .wrapper {
    padding-top: 48px;
    padding-bottom: 72px;
  }
}

@media (max-width: 600px) {
  body main article .company .wrapper {
    padding-top: 40px;
    padding-bottom: 64px;
  }
}

body main article .company .wrapper h1 {
  margin-bottom: 56px;
  text-align: center;
  letter-spacing: 0;
  font-family: "Noto Sans JP";
  font-weight: bold;
  font-size: 30px;
  color: #0C7246;
}

@media (max-width: 1050px) {
  body main article .company .wrapper h1 {
    margin-bottom: 48px;
    font-size: 28px;
  }
}

@media (max-width: 800px) {
  body main article .company .wrapper h1 {
    margin-bottom: 40px;
    text-align: center;
    font-size: 25px;
  }
}

@media (max-width: 600px) {
  body main article .company .wrapper h1 {
    margin-bottom: 32px;
    font-size: 20px;
  }
}

body main article .company .wrapper .outer {
  margin: 0 auto;
  padding: 56px 0;
  padding-left: 80px;
  max-width: 720px;
  background: #fff;
  color: #000;
}

@media (max-width: 1050px) {
  body main article .company .wrapper .outer {
    padding: 48px 0;
    padding-right: 32px;
    padding-left: 32px;
  }
}

@media (max-width: 600px) {
  body main article .company .wrapper .outer {
    padding: 32px 0;
    padding-right: 24px;
    padding-left: 24px;
  }
}

body main article .company .wrapper .outer dl {
  width: 100%;
  display: block;
  font-weight: bold;
  font-size: 14px;
}

body main article .company .wrapper .outer dl div {
  margin-bottom: 40px;
  min-height: 48px;
  display: flex;
}

@media (max-width: 600px) {
  body main article .company .wrapper .outer dl div {
    margin-bottom: 24px;
    flex-direction: column;
    border-bottom: 1px solid #bfc3c7;
  }
}

body main article .company .wrapper .outer dl div dt {
  max-width: 136px;
  width: 100%;
  border-right: 1px solid #bfc3c7;
  line-height: 1.5;
}

@media (max-width: 600px) {
  body main article .company .wrapper .outer dl div dt {
    margin-bottom: 16px;
    max-width: none;
    border-right: none;
  }
}

body main article .company .wrapper .outer dl div dd {
  padding-left: 32px;
  width: 100%;
  display: block;
  line-height: 2;
  font-size: 13px;
}

@media (max-width: 600px) {
  body main article .company .wrapper .outer dl div dd {
    margin-bottom: 8px;
    padding-left: 0;
  }
}

body main article .company .wrapper .outer dl div:nth-last-of-type(1) {
  margin-bottom: 0;
  border-bottom: none;
}


































































body main article .top_person {
  padding: 0 24px;
  padding-top: 30px;
  margin-bottom: 90px;
}

@media (max-width: 1050px) {
  body main article .top_person {
    padding-top: 72px;
    margin-bottom: 120px;
  }
}

@media (max-width: 750px) {
  body main article .top_person {
    padding-top: 35px;
    margin-bottom: 20px;
  }
}

body main article .top_person .wrapper {
  max-width: 840px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px;
}

@media (max-width: 1050px) {
  body main article .top_person .wrapper {
    gap: 32px;
  }
}

@media (max-width: 750px) {
  body main article .top_person .wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

body main article .top_person .wrapper .outer {
  padding: 10px 30px;
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
  height: 240px;
  height: auto;
  border-radius: 50%;
  background: #00AAF2;
}

@media (max-width: 1050px) {
  body main article .top_person .wrapper .outer {
    max-width: 208px;
    height: 208px;
    padding: 20px 16px;
  }
}

@media (max-width: 750px) {
  body main article .top_person .wrapper .outer {
    max-width: 184px;
    height: 184px;
    margin: 0 auto;
    padding: 12px 16px;
  }
}

body main article .top_person .wrapper .outer h1 {
  text-align: center;
  color: #fff;
  font-size: 28px;
  line-height: 1.5;
  font-weight: 500;
}

@media (max-width: 1050px) {
  body main article .top_person .wrapper .outer h1 {
    font-size: 20px;
  }
}

@media (max-width: 750px) {
  body main article .top_person .wrapper .outer h1 {
    font-size: 24px;
  }
}

body main article .top_person .wrapper .outer h2 {
  color: #fff;
  font-size: 50px;
  font-weight: 800;
  font-family: "Avenir";
  line-height: 85px;
  padding-left: 40px;
  float: left;

}

@media (max-width: 750px) {
  body main article .top_person .wrapper .outer h2 {
    font-size: 45px;
    line-height: 60px;
  }
}

body main article .top_person .wrapper .outer p {
  color: #fff;
  font-size: 28px;
  font-weight: 500;
  float: right;
  padding-top: 33px;
  padding-right: 40px;
}

@media (max-width: 750px) {
  body main article .top_person .wrapper .outer p {
    font-size: 22px;
    padding-top: 24px;
    padding-right: 30px;
  }
}

body main article .top_person .wrapper .outer span {
  color: #fff;
  font-size: 12px;
  font-weight: 300;
  padding-left: 33px;
  padding-bottom: 20px;
  float: left;
}

@media (max-width: 750px) {
  body main article .top_person .wrapper .outer span {
    padding-left: 22px;
  }
}

body main article .top_person .wrapper .outer_2 {
  padding: 10px 30px;
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
  height: 240px;
  height: auto;
  border-radius: 50%;
  background: #00AAF2;
}

@media (max-width: 1050px) {
  body main article .top_person .wrapper .outer_2 {
    max-width: 208px;
    height: 208px;
    padding: 38px 16px;
  }
}

@media (max-width: 750px) {
  body main article .top_person .wrapper .outer_2 {
    max-width: 184px;
    height: 184px;
    margin: 0 auto;
    padding: 30px 16px;
  }
}

body main article .top_person .wrapper .outer_2 h1 {
  text-align: center;
  color: #fff;
  font-size: 28px;
  line-height: 1.5;
  font-weight: 500;
  padding-top: 25px;
}

@media (max-width: 1050px) {
  body main article .top_person .wrapper .outer_2 h1 {
    font-size: 22px;
    padding-top: 0px;
  }
}

@media (max-width: 750px) {
  body main article .top_person .wrapper .outer_2 h1 {
    font-size: 24px;
  }
}

body main article .top_person .wrapper .outer_2 h2 {
  color: #fff;
  font-size: 36px;
  font-weight: 800;
  font-family: "Avenir";
  line-height: 72px;
  padding-left: 27px;
  float: left;
}

@media (max-width: 750px) {
  body main article .top_person .wrapper .outer_2 h2 {
    font-size: 33px;
    line-height: 60px;
    padding-left: 20px;
  }
}

body main article .top_person .wrapper .outer_3 {
  padding: 10px 30px;
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
  height: 240px;
  height: auto;
  border-radius: 50%;
  background: #00AAF2;
}

@media (max-width: 1050px) {
  body main article .top_person .wrapper .outer_3 {
    max-width: 208px;
    height: 208px;
    padding: 38px 16px;
  }
}

@media (max-width: 750px) {
  body main article .top_person .wrapper .outer_3 {
    max-width: 184px;
    height: 184px;
    margin: 0 auto;
    padding: 27px 16px;
  }
}

body main article .top_person .wrapper .outer_3 h1 {
  text-align: center;
  color: #fff;
  font-size: 28px;
  line-height: 1.5;
  font-weight: 500;
  padding-top: 25px;
}

@media (max-width: 1050px) {
  body main article .top_person .wrapper .outer_3 h1 {
    font-size: 22px;
    padding-top: 0px;
  }
}

@media (max-width: 750px) {
  body main article .top_person .wrapper .outer_3 h1 {
    font-size: 24px;
  }
}

body main article .top_person .wrapper .outer_3 h2 {
  color: #fff;
  font-size: 36px;
  font-weight: 800;
  font-family: "Avenir";
  line-height: 72px;
  padding-left: 16px;
  float: left;
}

@media (max-width: 750px) {
  body main article .top_person .wrapper .outer_3 h2 {
    font-size: 33px;
    line-height: 58px;
    padding-left: 11px;
  }
}

body .seminar_contact_image {
  position: fixed;
  bottom: 5%;
  right: 0;
  z-index: 999;
}

body .seminar_contact_image img {
  width: auto;
  height: 120px;
  object-fit: contain;
}

@media (max-width: 1050px) {
  body .seminar_contact_image img {
    height: 88px;
  }
}

@media (max-width: 600px) {
  body .seminar_contact_image img {
    height: 64px;
  }
}

body main {
  overflow: hidden;
}

body main article {
  position: relative;
}

body main article .fh5co-title {
    padding: 20px 0 100px;
}

@media (max-width: 600px) {
body main article .fh5co-title {
     padding: 15px 0;
   }
}


body main article .text-white {
  color: #ffffff!important;
}

.to-contact {
  text-align: center;
}
.to-contact a.main-btn {
    display: block;
    width: 80%;
    max-width: 430px;
    height: 75px;
    margin: 0 auto;
    line-height: 65px;
    text-align: center;
    color: #ffffff;
    font-size: 37px;
    font-weight: 600;
    background: #21A56F;
    border: 2px solid #21A56F;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none!important;
    box-shadow: 0 5px 8px rgb(0 0 0 / 25%);
}
.to-contact a.main-btn:hover {
    color: #ffffff;
    background: rgba(100,200,155,1);
    text-decoration: none;
}

@media (max-width: 600px) {
  body main article .to-contact a.main-btn {
    width: 70%;
    height: 65%;
    line-height: 57px;
    font-size: 24px;
  }
}


body main article .fh5co-title .image_pc {
  margin: 0 auto;
  margin-bottom: 20px;
  max-width: 380px;
  width: 100%;
}

@media (max-width: 800px) {
  body main article .fh5co-title .image_pc {
    margin-bottom: 40px;
    display: none;
  }
}

body main article .fh5co-title .image_pc img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body main article .fh5co-title .image_sp {
  margin-bottom: 15px;
  width: 100%;
  display: none;
}

@media (max-width: 800px) {
  body main article .fh5co-title .image_sp {
    display: block;
    padding: 0 30px;
  }
}

body main article .fh5co-title .image_sp img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}



body main article .title_01 {
    margin: 0 auto;
    margin-bottom: 30px;
    max-width: 400px;
}

body main article .title_02 {
    margin: 0 auto;
    margin-bottom: 30px;
    max-width: 600px;
}

body main article .title_03 {
    margin: 0 auto;
    margin-bottom: 30px;
    max-width: 700px;
}

body main article .title_04 {
    margin: 0 auto;
    margin-bottom: 30px;
    max-width: 300px;
}

body main article .title_05 {
    margin: 0 auto;
    margin-bottom: 30px;
}




body main article .sec_05 {
  position: relative;
  padding: 80px 20px 15px;
  background-color: #E9F4E9;
}

@media (max-width: 600px) {
  body main article .sec_05 {
    padding: 40px 20px 30px;
  }
}

body main article .sec_05 h1 {
  position: relative;
  display: block;
  margin-bottom: 50px;
  text-align: center;
  line-height: 1.5;
  font-family: "Noto Sans JP";
  font-weight: 600;
  font-size: 30px;
}

@media (max-width: 600px) {
  body main article .sec_05 h1 {
    position: relative;
    display: block;
    margin: 0px 30px 5px;
    text-align: center;
    line-height: 1.5;
    font-family: "Noto Sans JP";
    font-weight: 600;
    font-size: 18px;
    color: #253949;
  }
}

@media (max-width: 1050px) {
  body main article .sec_05 h1 {
    margin-bottom: 80px;
    font-size: 28px;
  }
}

@media (max-width: 800px) {
  body main article .sec_05 h1 {
    margin-bottom: 72px;
    font-size: 25px;
  }
}

@media (max-width: 600px) {
  body main article .sec_05 h1 {
    margin-bottom: 64px;
    font-size: 18px;
  }
}

body main article .sec_05 span {
  font-weight: 600;
  color: #00AAF2;
}


body main article .text_pc {
  margin-bottom: 48px;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.8;
  font-family: "Noto Sans JP";
  font-weight: 500;  
  font-size: 22px;
}



body main article .sec_05 .text_pc {
  margin-bottom: 48px;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.8;
  font-size: 22px;
}

@media (max-width: 1050px) {
  body main article .sec_05 .text_pc {
    margin-bottom: 32px;
    font-size: 20px;
  }
}

@media (max-width: 800px) {
  body main article .sec_05 .text_pc {
    font-size: 18px;
  }
}


@media (max-width: 600px) {
  body main article .sec_05 .text_pc {
    display: none;
  }
}

body main article .sec_05 .text_sp {
  margin-bottom: 40px;
  display: none;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 2;
  font-weight: bold;
  font-size: 16px;
}

@media (max-width: 600px) {
  body main article .sec_05 .text_sp {
    display: block;
  }
}

body main article .sec_05 .image_pc {
  margin: 0 auto;
  margin-bottom: 56px;
  max-width: 900px;
  width: 100%;
}

@media (max-width: 600px) {
  body main article .sec_05 .image_pc {
    margin-bottom: 10px;
  }
}

body main article .sec_05 .image_pc img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body main article .sec_05 .image_sp {
  margin-bottom: 32px;
  width: 100%;
  display: none;
}

@media (max-width: 800px) {
  body main article .sec_05 .image_sp {
    display: block;
  }
}

body main article .sec_05 .image_sp img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body main article .interview {
  padding-top: 128px;
}

@media (max-width: 1050px) {
  body main article .interview {
    padding-top: 108px;
  }
}

@media (max-width: 800px) {
  body main article .interview {
    padding-top: 80px;
  }
}

@media (max-width: 600px) {
  body main article .interview {
    padding-top: 64px;
  }
}

body main article .interview header {
  position: relative;
}

body main article .interview header h1 {
  display: block;
  position: relative;
  text-align: center;
  line-height: 1.7;
  font-family: "Noto Sans JP";
  font-size: 26px;
  color: #ffffff;
  width: 80%;
  padding: 2em 0;
  max-width: 350px;
  height: 200px;
  margin: 0 auto;
  background: #0d2133;
  border: 2px solid #253949;
  margin-bottom: 100px;
}

@media (max-width: 1050px) {
  body main article .interview header h1 {
    margin-bottom: 80px;
    font-size: 28px;
  }
}

@media (max-width: 800px) {
  body main article .interview header h1 {
    margin-bottom: 50px;
    font-size: 25px;
  }
}

@media (max-width: 600px) {
  body main article .interview header h1 {
   font-size: 20px;
   line-height: 1.7;
   max-width: 250px;
   height: 150px;
  }
}

body main article .interview header .title_image {
  position: absolute;
  top: 30%;
  left: 44%;
  z-index: -1;
  max-width: 480px;
  width: 100%;
}

@media (max-width: 1050px) {
  body main article .interview header .title_image {
    max-width: 400px;
  }
}

@media (max-width: 800px) {
  body main article .interview header .title_image {
    max-width: 320px;
  }
}

@media (max-width: 600px) {
  body main article .interview header .title_image {
    left: 35%;
    max-width: 240px;
  }
}

@media (max-width: 400px) {
  body main article .interview header .title_image {
    left: 30%;
  }
}

body main article .interview header .title_image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body main article .interview .wrapper {
  margin: 0 auto;
  padding: 0 24px;
  max-width: 960px;
}

body main article .interview .wrapper .outer {
  margin-bottom: 120px;
  display: flex;
  justify-content: center;
}

@media (max-width: 1050px) {
  body main article .interview .wrapper .outer {
    margin-bottom: 96px;
  }
}

@media (max-width: 800px) {
  body main article .interview .wrapper .outer {
    margin-bottom: 64px;
    flex-direction: column-reverse;
  }
}

@media (max-width: 600px) {
  body main article .interview .wrapper .outer {
    margin-bottom: 40px;
  }
}

body main article .interview .wrapper .outer .inner {
  margin-right: 64px;
  min-width: 464px;
}

@media (max-width: 1050px) {
  body main article .interview .wrapper .outer .inner {
    margin-right: 24px;
  }
}

@media (max-width: 800px) {
  body main article .interview .wrapper .outer .inner {
    margin-right: 0;
    min-width: auto;
  }
}

body main article .interview .wrapper .outer .inner h2 {
  margin-bottom: 24px;
  letter-spacing: 0.25em;
  line-height: 1.8;
  font-weight: bold;
  font-size: 20px;
}

@media (max-width: 800px) {
  body main article .interview .wrapper .outer .inner h2 {
    text-align: center;
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  body main article .interview .wrapper .outer .inner h2 {
    margin-bottom: 16px;
    text-align: center;
    font-size: 16px;
  }
}

body main article .interview .wrapper .outer .inner .text_pc {
  margin-bottom: 16px;
  display: block;
  line-height: 1.8;
  font-size: 14px;
  text-align: justify;
  text-justify: inter-ideograph;
}

@media (max-width: 1050px) {
  body main article .interview .wrapper .outer .inner .text_pc {
    font-size: 13px;
  }
}

@media (max-width: 800px) {
  body main article .interview .wrapper .outer .inner .text_pc {
    display: none;
  }
}

body main article .interview .wrapper .outer .inner .text_pc:nth-last-of-type(2) {
  margin-bottom: 0;
}

body main article .interview .wrapper .outer .inner .text_sp {
  margin-bottom: 16px;
  display: none;
  line-height: 1.8;
  font-size: 14px;
  text-align: justify;
  text-justify: inter-ideograph;
}

@media (max-width: 800px) {
  body main article .interview .wrapper .outer .inner .text_sp {
    display: block;
  }
}

body main article .interview .wrapper .outer .inner .text_sp:nth-last-of-type(1) {
  margin-bottom: 0;
}

@media (max-width: 800px) {
  body main article .interview .wrapper .outer .image_outer {
    margin-bottom: 24px;
  }
}

body main article .interview .wrapper .outer .image_outer .image_pc {
  margin-bottom: 24px;
}

@media (max-width: 800px) {
  body main article .interview .wrapper .outer .image_outer .image_pc {
    display: none;
  }
}

body main article .interview .wrapper .outer .image_outer .image_pc img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1050px) {
  body main article .interview .wrapper .outer .image_outer .image_pc img {
    height: 400px;
  }
}

body main article .interview .wrapper .outer .image_outer .image_sp {
  margin-bottom: 16px;
  display: none;
}

@media (max-width: 800px) {
  body main article .interview .wrapper .outer .image_outer .image_sp {
    display: block;
  }
}

body main article .interview .wrapper .outer .image_outer .image_sp img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

body main article .interview .wrapper .outer .image_outer .image_sp img::before {
  content: '';
  padding-top: 62%;
  display: block;
}

body main article .interview .wrapper .outer .image_outer .name {
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 30px;
  color: #595757;
}

@media (max-width: 1050px) {
  body main article .interview .wrapper .outer .image_outer .name {
    font-size: 26px;
  }
}

@media (max-width: 800px) {
  body main article .interview .wrapper .outer .image_outer .name {
    margin-bottom: 8px;
    text-align: right;
    font-size: 22px;
  }
}

@media (max-width: 600px) {
  body main article .interview .wrapper .outer .image_outer .name {
    font-size: 18px;
  }
}

body main article .interview .wrapper .outer .image_outer .age_profession {
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 20px;
  color: #595757;
}

@media (max-width: 1050px) {
  body main article .interview .wrapper .outer .image_outer .age_profession {
    font-size: 18px;
  }
}

@media (max-width: 800px) {
  body main article .interview .wrapper .outer .image_outer .age_profession {
    text-align: right;
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  body main article .interview .wrapper .outer .image_outer .age_profession {
    font-size: 14px;
  }
}

body main article .interview .wrapper .entry_image {
  padding: 0 40px;
  width: 100%;
  display: block;
}

@media (max-width: 800px) {
  body main article .interview .wrapper .entry_image {
    padding: 0;
  }
}

body main article .interview .wrapper .entry_image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}



body main article .images {
  padding: 0 64px;
  padding-top: 108px;
}

@media (max-width: 1400px) {
  body main article .images {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (max-width: 800px) {
  body main article .images {
    padding-top: 64px;
  }
}

@media (max-width: 600px) {
  body main article .images {
    padding-right: 24px;
    padding-left: 24px;
  }
}

body main article .images .images_slider {
  position: relative;
}

body main article .images .images_slider .slick-list .slick-track {
  margin-bottom: 56px;
}

@media (max-width: 1050px) {
  body main article .images .images_slider .slick-list .slick-track {
    margin-bottom: 40px;
  }
}

@media (max-width: 600px) {
  body main article .images .images_slider .slick-list .slick-track {
    margin-bottom: 24px;
  }
}

body main article .images .images_slider .slick-list .slick-track li {
  margin: 0 16px;
}

@media (max-width: 600px) {
  body main article .images .images_slider .slick-list .slick-track li {
    margin: 0;
  }
}

body main article .images .images_slider .slick-list .slick-track li .image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

body main article .images .images_slider .slick-list .slick-track li .image img::before {
  content: "";
  padding-top: 100%;
  display: block;
}

@media (max-width: 1400px) {
  body main article .images .images_slider .slick-list .slick-track li .image img::before {
    padding-top: 62%;
  }
}

body main article .images .images_slider .slick-dots {
  display: flex;
  justify-content: center;
}

body main article .images .images_slider .slick-dots li {
  margin-left: 16px;
  width: 10px;
  height: 10px;
  background: #bfc3c7;
  border-radius: 50%;
}

body main article .images .images_slider .slick-dots li:hover {
  cursor: pointer;
}

body main article .images .images_slider .slick-dots li button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  font-size: 0px;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

body main article .images .images_slider .slick-dots li:nth-of-type(1) {
  margin-left: 0;
}

body main article .images .images_slider .slick-dots .slick-active {
  background: #5d6975;
}

body main article .images .images_slider .slick-prev,
body main article .images .images_slider .slick-next {
  position: absolute;
  top: -5%;
  bottom: 0;
  margin: auto;
  z-index: 1;
  width: 56px;
  height: 56px;
  background: #253949;
  border-radius: 50%;
  border: none;
  font-size: 0px;
  opacity: 0.8;
  cursor: pointer;
}

body main article .images .images_slider .slick-prev::before,
body main article .images .images_slider .slick-next::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40%;
  margin: auto;
  width: 16px;
  height: 16px;
  display: inline-block;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(45deg);
}

@media (max-width: 1050px) {
  body main article .images .images_slider .slick-prev::before,
  body main article .images .images_slider .slick-next::before {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 600px) {
  body main article .images .images_slider .slick-prev::before,
  body main article .images .images_slider .slick-next::before {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 400px) {
  body main article .images .images_slider .slick-prev::before,
  body main article .images .images_slider .slick-next::before {
    width: 8px;
    height: 8px;
  }
}

@media (max-width: 1050px) {
  body main article .images .images_slider .slick-prev,
  body main article .images .images_slider .slick-next {
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 600px) {
  body main article .images .images_slider .slick-prev,
  body main article .images .images_slider .slick-next {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 400px) {
  body main article .images .images_slider .slick-prev,
  body main article .images .images_slider .slick-next {
    top: -8%;
    width: 32px;
    height: 32px;
  }
}

body main article .images .images_slider .slick-prev {
  left: -3%;
}

@media (max-width: 1400px) {
  body main article .images .images_slider .slick-prev {
    left: 12%;
  }
}

@media (max-width: 1050px) {
  body main article .images .images_slider .slick-prev {
    left: 8%;
  }
}

@media (max-width: 600px) {
  body main article .images .images_slider .slick-prev {
    left: -4%;
  }
}

body main article .images .images_slider .slick-next {
  right: -3%;
}

@media (max-width: 1400px) {
  body main article .images .images_slider .slick-next {
    right: 12%;
  }
}

@media (max-width: 1050px) {
  body main article .images .images_slider .slick-next {
    right: 8%;
  }
}

@media (max-width: 600px) {
  body main article .images .images_slider .slick-next {
    right: -4%;
  }
}

body main article .images .images_slider .slick-next::before {
  left: 30%;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  border-left: none;
  transform: rotate(-45deg);
}

body main article .company {
  padding: 0 24px 30px;
}

@media (max-width: 1050px) {
  body main article .company {
    padding-top: 56px;
  }
}

@media (max-width: 800px) {
  body main article .company {
    padding-top: 48px;
  }
}

@media (max-width: 600px) {
  body main article .company {
    padding-top: 5px;
  }
}

body main article .company h1 {
  margin-bottom: 40px;
  text-align: center;
  letter-spacing: 0;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 24px;
  line-height: 35px;
}

@media (max-width: 1050px) {
  body main article .company h1 {
    margin-bottom: 48px;
    font-size: 28px;
  }
}

@media (max-width: 800px) {
  body main article .company h1 {
    margin-bottom: 40px;
    text-align: center;
    font-size: 25px;
  }
}

@media (max-width: 600px) {
  body main article .company h1 {
    margin-bottom: 15px;
    font-size: 16px;
  }
}

body main article .company span {
  font-weight: 600;
  color: #00AAF2;
}

body main article .company .h2text {
  margin: 15px auto 30px;
  max-width: 555px;
}

@media (max-width: 600px) {
  body main article .company .h2text {
    max-width: 330px;
  }
}

body main article .company h2 {
  text-align: center;
  letter-spacing: 0;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 24px;
  line-height: 45px;
  border-bottom: 4px solid #00AAF2;
}

@media (max-width: 1050px) {
  body main article .company h2 {
    margin-bottom: 48px;
    font-size: 24px;
  }
}

@media (max-width: 800px) {
  body main article .company h2 {
    margin-bottom: 40px;
    text-align: center;
    font-size: 24px;
  }
}

@media (max-width: 600px) {
  body main article .company h2 {
    margin-bottom: 32px;
    font-size: 14px;
  }
}

body main article .company .image_pc {
  margin: 0 auto;
  max-width: 800px;
  width: 100%;
}

@media (max-width: 800px) {
  body main article .company .image_pc {
    margin-bottom: 40px;
    display: none;
  }
}

body main article .company .image_pc img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


body main article .company .image_sp {
  margin-bottom: 27px;
  width: 100%;
  display: none;
}

@media (max-width: 800px) {
  body main article .company .image_sp {
    display: block;
  }
}

body main article .company .image_sp img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


/*
------
thanks
------
*/

@media (max-width: 599px){
  .sp_none {
    display: none!important;
  }
}
@media (min-width: 600px){
  .pc_none {
    display: none!important;
  }
}

body .header_thanks {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 75px;
  background: #ffffff;
  padding-left: 120px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1050px) {
  body .header_thanks {
    height: 64px;
    padding-right: 0;
  }
}

@media (max-width: 400px) {
  body .header_thanks {
    padding-left: 20px;
  }
}

body .logo a img {
  width: 200px;
  height: auto;
  object-fit: contain;g
}

@media (max-width: 1050px) {
  body .logo a img {
    width: 176px;
  }
}

@media (max-width: 750px) {
  body .logo a img {
    width: 144px;
  }
}

body main article .message_pc {
  position: relative;
  padding: 80px 20px 10px;
}

body main article .message_sp {
  position: relative;
  padding: 55px 20px 0;
}

body main article .message_pc h1 {
  position: relative;
  display: block;
  margin-top: 130px;
  margin-bottom: 50px;
  text-align: center;
  line-height: 1.5;
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 36px;
  color: #000;
}

body main article .message_pc h2 {
  position: relative;
  display: block;
  margin-bottom: 50px;
  text-align: center;
  line-height: 2;
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 22px;
  color: #000;
}

body main article .message_sp h1 {
  margin-top: 40px;
  margin-bottom: 25px;
  margin-top: 130px;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: 700;
  font-size: 24px;
}

body main article .message_sp h2 {
  margin-top: 25px;
  margin-bottom: 25px;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 2;
  font-weight: 400;
  font-size: 20px;
}




body main article .to_ic-lp_pc .to_ic-lp_sp {
  text-align: center;
}


body main article .to_ic-lp_pc a.main-btn_pc {
  display: block;
  width: 80%;
  max-width: 500px;
  height: 75px;
  margin: 0 auto 100px;
  line-height: 73px;
  text-align: center;
  color: #fff;
  font-size: 26px;
  font-weight: 600;
  background: #21A56F;
  border: 2px solid #21A56F;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none!important;
  box-shadow: 0 5px 8px rgb(0 0 0 / 25%);
}
body main article .to_ic-lp_pc a.main-btn_pc:hover {
  color: #fff;
  background: rgba(100,200,155,1);
  text-decoration: none;
}
body main article .to_ic-lp_sp a.main-btn_sp {
  display: block;
  width: 88%;
  max-width: 500px;
  height: 75px;
  margin: 0 auto 60px;
  line-height: 73px;
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  background: #21A56F;
  border: 2px solid #21A56F;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none!important;
  box-shadow: 0 5px 8px rgb(0 0 0 / 25%);
}
body main article .to_ic-lp_sp a.main-btn_sp:hover {
  color: #fff;
  background: rgba(100,200,155,1);
  text-decoration: none;
}





body main article .image .image_pc {
  margin: 80px auto;
  max-width: 850px;
  width: 100%;
}

@media (max-width: 800px) {
  body main article .image .image_pc {
    margin-bottom: 40px;
    display: none;
  }
}

body main article .image .image_pc img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body main article .image .image_sp {
  margin: 55px 0;
  width: 100%;
  display: none;
}

@media (max-width: 800px) {
  body main article .image .image_sp {
    display: block;
  }
}

body main article .image .image_sp img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}



body .footer {
  padding: 80px 0;
  background: #21A56F;
  color: #fff;
}

body .footer .footer_logo {
  margin-bottom: 50px;
  text-align: center;
}

body .footer .footer_logo img {
  width: 170px;
  object-fit: contain;
}

body .footer_links {
  text-align: center;
  margin-bottom: 60px;
}

@media (max-width: 800px) {
  body .footer_links {
    margin-top: 35px;
  }
}

body .footer a {
  padding: 0 16px;  
  text-align: center;
  color: #fff;
  font-size: 12px;
  font-weight: medium;
  font-family: "Noto Sans JP";
  font-weight: 300;
  letter-spacing: 0.08em;
  text-decoration: none;
}

@media (max-width: 800px) {
  body .footer a {
    display: inline-block;
    width: 100%;
    height: 35px;
  }
}

body .footer small {
  display: block;
  text-align: center;
  letter-spacing: 0.05em;
  font-family: "Avenir";
  font-size: 9px;
  color: #fff;
}