@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+Antique:wght@100;200;300;400;500;700&display=swap');

:root {
  --C-black: #000;
  --C-white: #fff;
  --C-gray: #5F5F5B;
  --C-green: #7DBE64;
  --C-Dgreen: #4f652e;
  --C-blue: #C4E1EF;
  --C-Dblue: #7DBEDC;
  --C-DDblue: #369bc9;
  --C-yellow: #b9973b;
  --C-beige: #c0ad86;
  --C-red: #d3887d;
  --C-tel: #FF8C1E;
  --C-line: #45A221;
  --C-mail: #00809C;
}

/* ===============================
	site utility
 =============================== */
html {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-image: url(../img/common/common_bg.webp);
}
body *{ color: var(--C-gray); font-feature-settings: "palt" 1; -webkit-text-size-adjust: 100%; font-family: 'Noto Sans JP', sans-serif;}
img { max-width: 100%; height: auto;}
a {transition: 0.4s;}
a:hover {transition: 0.4s; opacity: 0.7;}
@media screen and (max-width: 750px) {
  html {background: none;}
  html::after {
    content: '';
    width: 100vw;
    height: 100%;
    background-image: url(../img/common/common_bg_sp.webp);
    background-size: cover;
    background-position: center;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
  }
  body {overflow-x: hidden;}
}

/* 最大width幅 */
.w666,.w900,.w1030,.w1100,.w1194,.w1200 {max-width: 100%;}
.w666 {width: calc(666px + (30px * 2));}
.w900 {width: calc(900px + (30px * 2));}
.w1030 {width: calc(1030px + (30px * 2));}
.w1100 {width: calc(1100px + (30px * 2));}
.w1194 {width: calc(1194px + (30px * 2));}
.w1200 {width: calc(1200px + (30px * 2));}

/* ボタン */
.btn_area {
  position: relative;
  z-index: +1;
}
.btn {
  font-family: "Zen Kaku Gothic Antique", sans-serif;    
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: var(--C-white);
  border-radius: 100px;
  display: inline-block;
  min-width: 268px;
  text-align: center;
  position: relative;
  margin: auto;
  padding: 10px 0;
}
.btn:hover {
  opacity: 1;
  color: var(--C-white);
}
.btn::before {
  content: '';
  width: 25px;
  height: 25px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 14px;
  margin: auto;
}
.btn::after {
  content: '';
  filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, .1));
  width: calc(100% + (5px * 2));
  height: calc(100% + (5px * 2));
  border-radius: 100px;  
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -5px;
  right: -5px;
  margin: auto;
  z-index: -1;
}
.btn.blue:hover {
  background: #7DBEDC;
}
.btn.blue::before {
  background-image: url(../img/common/btn_arrow_blue.svg);
}
.btn.blue::after {
  background-image: url(../img/common/btn_bg_blue.svg);
}
.btn.green:hover {
  background: #7DBE64;
}
.btn.green::before {
  background-image: url(../img/common/btn_arrow_green.svg);
}
.btn.green::after {
  background-image: url(../img/common/btn_bg_green.svg);
}
@media screen and (max-width: 750px) {
  .btn {
    font-size: 3.8vw;
    min-width: 70vw;
    padding: 4vw;
  }
  .btn::before {
    width: 4.8vw;
    height: 4.8vw;
    right: 6.5%;
  }  
  .btn::after {
    width: calc(100% + (.8vw * 2));
    height: calc(100% + (.8vw * 2));
    left: -.8vw;
    right: -.8vw;
  }
}

/* ===============================
	追従お問合せ
 =============================== */
#tuiju_contact {
  background-color: var(--C-green);
  background-image: url(../img/common/contact_bg.webp);
  background-size: auto 100%;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  padding-top: 70px;
  padding-bottom: 106px;
}
#tuiju_contact .title {
  font-family: "Zen Kaku Gothic Antique", sans-serif;  
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--C-white);
  margin-bottom: 14px;
}
#tuiju_contact .title + p {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
  color: var(--C-white);
  margin-bottom: 28px;
}
.tuiju_contact_area {
  display: flex;
  flex-direction: row;
  justify-content: center;  
  flex-wrap: wrap;  
  gap: 12px 8px;
}
.tuiju_contact_area a {
  background: var(--C-white);
  border-radius: 100px;
  filter: drop-shadow(7px 7px 5px rgba(0,0,0,.25));
  width: calc((100% - (8px * 2)) / 3);
  min-width: 294px;
  height: 68px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;  
  padding-bottom: 4px;    
}
.tuiju_contact_area a.tel {
  letter-spacing: 0.04em;
}
.tuiju_contact_area a img {
  margin-top: 4px;
}
.tuiju_contact_area a p {
  font-family: "Zen Kaku Gothic Antique", sans-serif;  
  font-size: 24px;
  font-weight: 700;
}
.tuiju_contact_area a.tel p {
  font-family: 'Noto Sans JP', sans-serif;
}
@media screen and (min-width: 1918px) {
  #tuiju_contact {
    background-size: cover;
  }
}
@media screen and (max-width: 750px) {
  #tuiju_contact {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;    
    padding-top: 2vw;
    padding-bottom: 3vw;
  }
  #tuiju_contact .wrap {
    overflow: visible;
  }  
  #tuiju_contact .title {
    font-size: 3.33333333333333vw;
    margin-bottom: 2vw;
  }
  #tuiju_contact .title + p {
    display: none;
  }
  .tuiju_contact_area { 
    gap: 2.13333333333333vw;
  }
  .tuiju_contact_area a {
    border-radius: 1.86666666666667vw;
    width: 23.33333333333333vw;
    min-width: inherit;
    height: 11vw;
    padding-bottom: 0;
  }
  .tuiju_contact_area a p {
    display: none;
  }
  .tuiju_contact_area a img {
    width: 8.8vw;
    height: 8.8vw;
    margin-top: 0;
  }
  .tuiju_contact_area a.line img {
    height: 8.26666666666667vw;
  }
}

/* ===============================
	MV
 =============================== */
/* mv_common */
#mv_common {
  height: 640px;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  margin-top: -162px;
}
#mv_common .wrap {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#mv_common .title {
  background: rgba(255,255,255,.9);
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;  
  position: relative;
  margin-bottom: -78px;
  z-index: +1;
}
#mv_common .title p,
#mv_common .title p span {
  font-family: "Zen Kaku Gothic Antique", sans-serif;  
  font-size: 35px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.857142857142857;
  writing-mode: tb;  
}
#mv_common .title p span {
  color: var(--C-green);
}
#mv_common .mv_img {
  position: absolute;
}
@media screen and (max-width: 1136px) {
  #mv_common {
    margin-top: -206px;
  }
}
@media screen and (max-width: 750px) {
  #mv_common {
    height: 80vw;
    background-size: cover;
  }
  #mv_common .title {
    width: 27.33333333333333vw;
    height: 27.33333333333333vw;
    margin-bottom: 0;
  }
  #mv_common .title p,
  #mv_common .title p span {
    font-size: 4.13333333333333vw;
    line-height: 1.774193548387097;
  }  
}

/* mv_common_2 */
#mv_common_2 {
  position: relative;
  z-index: +1;
  margin-top: -182px;  
}
#mv_common_2 .wrap {
  display: flex;
  flex-direction: row;
  position: relative;
}
#mv_common_2 h2.title {
  font-family: "Zen Kaku Gothic Antique", sans-serif;  
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--C-white);
  writing-mode: tb;  
  width: 148px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;  
  margin-right: calc(27% - 148px);  
}
#mv_common_2 .txt_area {
  width: calc((100% - 300px) - 27%);
  margin-left: auto;
  margin-right: 0;
  padding-top: 250px;
}
#mv_common_2 h3 {
  font-family: "Zen Kaku Gothic Antique", sans-serif;  
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.88;
  margin-bottom: 16px;
}
#mv_common_2 p {
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 2;
}
#mv_common_2 .mv_img {
  position: relative;
  z-index: 998;
}
#mv_common_2 .mv_bg {
  position: absolute;
  top: 0;
  left: -166px;
  z-index: -1;
}
@media screen and (max-width: 750px) {
  #mv_common_2 {
    margin-top: -12.7vw;
  }
  #mv_common_2 .wrap {
    flex-wrap: wrap;
  }
  #mv_common_2 h2.title {
    font-size: 4.26666666666667vw;
    width: 17.6vw;
    margin-top: 4.26666666666667vw;  
    margin-right: calc(100% - (17.6vw + 42vw));  
  }
  #mv_common_2 .txt_area {
    width: 100%;
    padding-top: 4vw;
  }
  #mv_common_2 h3 {
    font-size: 5.8vw;
    line-height: 1.615384615384615;
    margin-bottom: 3.2vw;
    padding: 0 calc(10.13333333333333vw - 4%);    
  }
  #mv_common_2 p {
    font-size: 3.8vw;
    padding: 0 calc(10.13333333333333vw - 4%);    
  }
  #mv_common_2 picture:has(.mv_img) {
    width: 42vw;
    margin-left: -6.13333333333333vw;
  }
  #mv_common_2 .mv_bg {
    width: 62.26666666666667vw;
    top: 21.33333333333333vw;
    left: 0;
    right: 0;
    margin: auto;
  }
}

/* mv_common_normal */
#mv_common_normal {
  background-size: auto 100%;
  background-position: center;
  background-repeat: no-repeat;
  height: 340px;
  display: flex;
  align-items: end;  
  margin-top: -138px;  
}
@media screen and (max-width: 1136px) {
  #mv_common_normal {
    margin-top: -206px;
  }
}
@media screen and (max-width: 750px) {
  #mv_common_normal {
    background-size: cover;
    height: 62.26666666666667vw;
    margin-top: 0;
  }
  #mv_common_normal .wrap {
    overflow: visible;
  }
}

/* mv_service_detail */
#mv_service_detail {
  background-position: center top;
  background-size: auto 260px;
  background-repeat: no-repeat;
  margin-top: -138px;    
  padding-bottom: 54px;
}
#mv_service_detail .wrap {
  padding-top: 260px;
}
#mv_service_detail h2.title {
  font-family: "Zen Kaku Gothic Antique", sans-serif;  
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--C-white);
  writing-mode: tb;  
  position: relative;
  left: 90px;
}
#mv_service_detail h2.title::after {
  content: '';
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -50%;
  bottom: -50%;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;  
}
#mv_service_detail h3 {
  font-family: "Zen Kaku Gothic Antique", sans-serif;        
  font-size: 27px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.851851851851852;
  margin-left: 200px;
}
main.green #mv_service_detail {
  background-color: #bddeb0;
}
main.green #mv_service_detail + .wrap {
  border-image-source: linear-gradient(#bddeb0, #bddeb0);
}
main.green #mv_service_detail h2.title::after {
  width: 256px;
  height: 224px;
  background-image: url(../img/service/title_bg_green.svg);  
  margin-top: -20px;
}
main.blue #mv_service_detail {
  background-color: #acd5e9;
}
main.blue #mv_service_detail + .wrap {
  border-image-source: linear-gradient(#acd5e9, #acd5e9);
}
main.blue #mv_service_detail h2.title::after {
  width: 256px;
  height: 218px;
  background-image: url(../img/service/title_bg_blue.svg);  
}
@media screen and (max-width: 1144px) {
  #mv_service_detail {
    margin-top: -192px;
  }
}
@media screen and (max-width: 750px) {
  #mv_service_detail {
    background-size: auto 44.13333333333333vw;
    margin-top: 0;    
    padding-bottom: 4.8vw;
  }
  #mv_service_detail .wrap {
    padding-top: 44.13333333333333vw;
  }
  #mv_service_detail h2.title {
    font-size: 4vw;
    left: 0;
    right: 0;
    margin: auto;
  }
  #mv_service_detail h3 {     
    font-size: 4.66666666666667vw;
    letter-spacing: 0.10em;
    margin-left: 0;
  }
  main.green {
    background: none;
  }
  main.green #mv_service_detail h2.title::after {
    width: 34.13333333333333vw;
    height: 29.06666666666667vw;
    background-image: url(../img/service/title_bg_green.svg);  
    margin-top: -20px;
  }
  main.blue {
    background: none;
  }
  main.blue #mv_service_detail h2.title::after {
    width: 34.13333333333333vw;
    height: 29.86666666666667vw;
    background-image: url(../img/service/title_bg_blue.svg);  
  }  
}

/* simple_mv */
#simple_mv {
  text-align: center;
  margin-top: 88px;
}
#simple_mv h2.title {
  font-family: "Zen Kaku Gothic Antique", sans-serif;       
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-decoration: underline solid var(--C-green);
  text-decoration-thickness: 2px;
  text-underline-offset: 18px;
}
#simple_mv h2.title + span {
  font-size: 18px;
  font-weight: 700;
  color: var(--C-green);
  display: block;
  margin-top: 16px;
}
@media screen and (max-width: 750px) {
  #simple_mv {
    margin-top: 28.53333333333333vw;
  }
  #simple_mv .wrap {
    overflow: visible;
  }
  #simple_mv h2.title {      
    font-size: 3.33333333333333vw;
    text-underline-offset: 2.66666666666667vw;
  }
  #simple_mv h2.title + span {
    font-size: 3vw;
    margin-top: 3vw;
  }  
}

/* blue_line */
#header.blue_line::before {
  content: none;
}
#header.blue_line #header_top {
  position: relative;
}
#header.blue_line #header_top::after {
  content: '';
  width: 100%;
  height: 100%;
  background: var(--C-Dblue);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
  opacity: .6;
}
@media screen and (max-width: 750px) {
  #header.blue_line::before {
    content: '';
    width: 100vw;
    height: 15vw;
    background: var(--C-Dblue);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: -1;
    opacity: .6;
  }
  #header.blue_line #header_top::after {
    content: none;
  }
}