@charset "UTF-8";
/* placeholder color */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700;900&display=swap");
/**********************************************************************************************

　common

**********************************************************************************************/
#site-wrpper {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  overflow: hidden;
}
/* @media (min-width: 768px) {
  #site-wrpper {
    min-width: 1280px;
  }
} */
@media (max-width: 767px) {
  #site-wrpper {
    font-size: 3.43vw;
  }
}

img[src$=".svg"] {
  width: 100%;
}

/* common */
img {
  max-width: 100%;
  height: auto;
}

.inner {
  max-width: 1320px;
  width: 94%;
  margin: auto;
  position: relative;
}
@media (max-width: 767px) {
  .inner {
    width: 92vw;
  }
}

main {
  display: block;
  position: relative;
}

@media (min-width: 768px) {
  .fadelink {
    transition: 0.4s opacity;
  }
  .fadelink:hover {
    opacity: 0.6;
  }
}

/* フェードイン */
.is-fadeIn {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition: opacity 1s, transform 1s;
}
@media (min-width: 768px) {
  .is-fadeIn {
    transform: translate3d(0, 40px, 0);
  }
}

.is-fadeIn.is-scrollIn {
  opacity: 1;
  transform: translate(0, 0);
}

@media (min-width: 768px) {
  .u-sp {
    display: none !important;
  }

  a[href^="tel:"] {
    pointer-events: none;
  }
}
@media (max-width: 767px) {
  .u-pc {
    display: none !important;
  }
}

/**********************************************************************************************

　header

**********************************************************************************************/
/* header {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 1000;
  background: rgba(223, 235, 248, 0.8);
  display: flex;
  justify-content: space-between;
  padding: 30px 50px;
}
@media (min-width: 768px) {
  header {
    min-width: 1280px;
  }
}
@media (max-width: 1380px) {
  header {
    padding: 15px 20px;
  }
}
@media (max-width: 767px) {
  header {
    align-items: center;
  }
} */

.head_logo {
  width: 350px;
  position: relative;
  z-index: 10000;
}
@media (max-width: 1300px) {
  .head_logo {
    width: 300px;
  }
}
@media (max-width: 767px) {
  .head_logo {
    width: 35vw;
  }
}

@media (min-width: 768px) {
  .headNav {
    display: flex !important;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .headNav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fefefe;
    z-index: 100;
    padding: 25vw 0 10vw;
    overflow: auto;
    display: none;
    text-align: center;
  }
}

.headNav_list {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  margin: 0 70px 0 0;
}
@media (max-width: 1380px) {
  .headNav_list {
    margin: 0 40px 0 0;
  }
}
@media (max-width: 767px) {
  .headNav_list {
    display: block;
    margin: 0 0 16vw;
    text-align: center;
    font-size: 4vw;
  }
}
.headNav_list li {
  margin: 0 70px 0 0;
}
@media (max-width: 1380px) {
  .headNav_list li {
    margin: 0 40px 0 0;
  }
}
@media (max-width: 767px) {
  .headNav_list li {
    margin: 0 0 10vw;
  }
}

.contactBtn,
.footBtn {
  font-size: 1.8rem;
  padding: 20px 45px;
  display: inline-block;
  color: #fefefe;
  background: #006ab2;
}
@media (max-width: 767px) {
  .contactBtn,
  .footBtn {
    font-size: 4vw;
    padding: 5vw 15vw;
  }
}

.menuBtn,
.menuBtn span {
  display: inline-block;
  transition: all 0.4s;
  cursor: pointer;
  z-index: 1000;
}

.menuBtn {
  width: 8vw;
  height: 4.5vw;
  position: relative;
}
.menuBtn span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #006ab2;
}
.menuBtn span:nth-of-type(1) {
  top: 0;
}
.menuBtn span:nth-of-type(2) {
  top: calc(50% - 1px);
}
.menuBtn span:nth-of-type(3) {
  bottom: 0;
}
.menuBtn.active span:nth-of-type(1) {
  transform: translateY(2vw) rotate(-45deg);
}
.menuBtn.active span:nth-of-type(2) {
  opacity: 0;
}
.menuBtn.active span:nth-of-type(3) {
  transform: translateY(-2.2vw) rotate(45deg);
}

/**********************************************************************************************

　footer

**********************************************************************************************/
footer {
  background: #222426;
  color: #fefefe;
}
@media (max-width: 767px) {
  footer {
    padding: 12vw 0 5vw;
  }
}
footer .inner {
  display: flex;
  justify-content: space-between;
}
@media (min-width: 1500px) {
  footer .inner {
    max-width: 1420px;
    padding: 0 50px;
  }
}
@media (max-width: 767px) {
  footer .inner {
    display: block;
  }
}

.foot_logo {
  width: 300px;
}
@media (max-width: 767px) {
  .foot_logo {
    width: 45vw;
    margin: 0 0 8vw;
  }
}

.footNav {
  display: flex;
}
@media (max-width: 767px) {
  .footNav {
    display: block;
    text-align: center;
  }
}

.footNav_list {
  font-size: 1.8rem;
  border-left: 1px solid #fefefe;
  padding: 0 0 0 30px;
  margin: 0 100px 0 0;
}
@media (max-width: 767px) {
  .footNav_list {
    margin: 0 0 15vw;
    text-align: left;
    font-size: 3.43vw;
    padding: 0 0 0 5vw;
  }
}
.footNav_list li:not(:last-child) {
  margin: 0 0 35px;
}
@media (max-width: 767px) {
  .footNav_list li:not(:last-child) {
    margin: 0 0 1.5em;
  }
}

.footBtn {
  background: none;
  border: 1px solid #fefefe;
}

.footLink {
  margin: 40px 0 0;
}
@media (max-width: 767px) {
  .footLink {
    margin: 8vw 0 0;
  }
}

.copyright {
  margin: 210px 0 0;
  display: block;
  text-align: center;
  font-size: 1.4rem;
}
@media (max-width: 767px) {
  .copyright {
    margin: 20vw 0 0;
    font-size: 3.2vw;
  }
}

/**********************************************************************************************

　main

**********************************************************************************************/
/*---------------------------------------------
common
---------------------------------------------*/
.pagetop {
  display: block;
  position: fixed;
  width: 80px;
  bottom: 20px;
  right: 30px;
  z-index: 1000;
}
@media (max-width: 767px) {
  .pagetop {
    bottom: 8vw;
    right: 2.6vw;
    width: 9.6vw;
  }
}

.linkBtn {
  display: block;
  width: 360px;
  text-align: center;
  font-size: 2.4rem;
  background: #F3973D;
  color: #fefefe;
  margin: 200px auto 0;
  padding: 24px;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .linkBtn {
    width: 100%;
    font-size: 4vw;
    margin: 15vw auto 0;
    padding: 5vw;
  }
}

.sec_tit {
  font-size: 4.2rem;
  text-align: center;
  margin: 0 0 90px;
  letter-spacing: 0.15em;
}
@media (max-width: 767px) {
  .sec_tit {
    font-size: 7vw;
    margin: 0 0 10vw;
  }
}

.sec_txt {
  font-size: 2.4rem;
  text-align: center;
  margin: 60px 0 90px;
  line-height: 1.9;
}
@media (max-width: 767px) {
  .sec_txt {
    font-size: 3.73vw;
    margin: 8vw 0;
  }
}

.indentTxt {
  padding-left: 1em;
  text-indent: -1em;
}

.commentTxt {
  font-weight: 500;
  margin: 30px 0 0;
}

/*---------------------------------------------
kv
---------------------------------------------*/
.kv {
  background: url("../img/kv_bg.png") repeat-x center bottom;
  background-size: auto 100%;
  padding: 265px 0 85px;
  position: relative;
}
@media (max-width: 767px) {
  .kv {
    padding: 25vw 0 20vw;
  }
}
.kv::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("../img/kv_item.png") no-repeat center center;
  background-size: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.kv .inner {
  max-width: 1620px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}
@media (max-width: 767px) {
  .kv .inner {
    display: block;
  }
}

.kv_img {
  width: 40%;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .kv_img {
    width: 70%;
    margin: auto;
  }
}

.kv_copy {
  font-size: 7rem;
  margin: 0 0 7%;
  letter-spacing: 0.2em;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .kv_copy {
    font-size: 9vw;
    line-height: 1.5;
    margin: 0 0 5vw;
  }
}

.kv_txt {
  font-size: 2.4rem;
  margin: 0 0 5%;
  letter-spacing: 0.1em;
  line-height: 1.9;
}
@media (max-width: 767px) {
  .kv_txt {
    font-size: 3.43vw;
  }
}

.kv_comment {
  font-weight: 500;
}
@media (max-width: 767px) {
  .kv_comment {
    font-size: 3vw;
  }
}

.scroll {
  display: block;
  position: absolute;
  left: 50%;
  bottom: 70px;
  font-size: 1.4rem;
  transform: translateX(-50%);
  z-index: 20;
}
@media (max-width: 767px) {
  .scroll {
    font-size: 3.2vw;
    bottom: 10vw;
  }
}
.scroll::after {
  content: "";
  display: block;
  width: 20px;
  height: 100px;
  background: url("../img/scroll.png") no-repeat;
  background-size: contain;
  position: absolute;
  left: 50%;
  top: calc(100% + 5px);
}
@media (max-width: 767px) {
  .scroll::after {
    width: 3vw;
    height: 15vw;
  }
}

/*---------------------------------------------
business
---------------------------------------------*/
.sec-business {
  padding: 200px 0;
  position: relative;
}
@media (max-width: 767px) {
  .sec-business {
    padding: 16vw 0;
  }
}
.sec-business::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("../img/top_bg.png") no-repeat center center;
  background-size: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.sec-business .inner {
  z-index: 10;
}

.businessList li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .businessList li {
    display: block;
  }
}
.businessList li:not(:last-child) {
  margin: 0 0 300px;
}
@media (max-width: 767px) {
  .businessList li:not(:last-child) {
    margin: 0 0 12vw;
  }
}
.businessList li:nth-child(even) {
  flex-direction: row-reverse;
}

.businessList_img {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.16);
  width: 45%;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .businessList_img {
    width: 80vw;
    margin: 6vw auto 0;
  }
}
.businessList_img img {
  width: 100%;
}

.monico_img {
  width: 45%;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .monico_img {
    width: 80vw;
    margin: 6vw auto 0;
  }
}
.monico_img img {
  width: 100%;
}

.businessList_num {
  width: 105px;
}
@media (max-width: 767px) {
  .businessList_num {
    width: 15vw;
    margin: 0 5vw 0 0;
  }
}
.businessList_num img {
  width: 100%;
}

@media (max-width: 767px) {
  .businessList_titArea {
    display: flex;
    align-items: center;
  }
}

.businessList_tit {
  font-size: 3.4rem;
  margin: 0 0 4%;
}
@media (max-width: 767px) {
  .businessList_tit {
    margin: 0;
    font-size: 5vw;
  }
}

.businessList_txt {
  line-height: 2;
}
@media (max-width: 767px) {
  .businessList_txt {
    line-height: 1.75;
  }
}

.my-2 {
  margin-top: 20px;
  margin-bottom: 20px;
}

/*---------------------------------------------
flow
---------------------------------------------*/
.sec-flow {
  background: #222426;
  color: #fefefe;
  padding: 200px 0;
}
@media (max-width: 767px) {
  .sec-flow {
    padding: 16vw 0;
  }
}
.sec-flow .inner {
  max-width: 1620px;
}
.sec-flow .linkBtn {
  margin: 250px auto 0;
  background: #fefefe;
  color: #222426;
}
@media (max-width: 767px) {
  .sec-flow .linkBtn {
    margin: 15vw auto 0;
  }
}

.flowList {
  display: flex;
  justify-content: space-between;
  text-align: center;
}
@media (max-width: 767px) {
  .flowList {
    display: block;
  }
}
.flowList li {
  width: 15.4%;
  position: relative;
}
@media (max-width: 767px) {
  .flowList li {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .flowList li:not(:last-child) {
    margin: 0 0 30vw;
  }
}
.flowList li:not(:last-child)::after {
  content: "";
  display: block;
  background: url("../img/arrow_white.png") no-repeat;
  background-size: contain;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 31%;
  left: calc(100% + 30%);
}
@media (max-width: 767px) {
  .flowList li:not(:last-child)::after {
    top: calc(100% + 10vw);
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
    width: 8vw;
    height: 8vw;
  }
}

.flowList_img {
  margin: 0 0 15%;
}
@media (max-width: 767px) {
  .flowList_img {
    width: 50vw;
    margin: 0 auto 6vw;
  }
}

.flowList_tit {
  font-size: 3.4rem;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .flowList_tit {
    font-size: 5.3vw;
    margin: 0 0 2vw;
  }
}

.flowList_txt {
  white-space: nowrap;
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%);
  line-height: 1.75;
}
@media (max-width: 767px) {
  .flowList_txt {
    transform: none;
    position: static;
  }
}

/*---------------------------------------------
faq
---------------------------------------------*/
.sec-faq {
  background: #e7f1f8;
  padding: 200px 0 150px;
}
@media (max-width: 767px) {
  .sec-faq {
    padding: 16vw 0;
  }
}

.faqList li {
  background: #fefefe;
}
.faqList li:not(:last-child) {
  margin: 0 0 70px;
}
@media (max-width: 767px) {
  .faqList li:not(:last-child) {
    margin: 0 0 8vw;
  }
}

.faqList_tit {
  padding: 25px 40px;
  font-size: 2.4rem;
  position: relative;
  cursor: pointer;
}
@media (max-width: 767px) {
  .faqList_tit {
    padding: 4vw 5vw;
  }
}
.faqList_tit::after {
  content: "";
  display: block;
  background: url("../img/arrow_black.png") no-repeat;
  background-size: contain;
  transform: rotate(180deg) translateY(50%);
  position: absolute;
  top: 50%;
  right: 40px;
  width: 40px;
  height: 40px;
  transition: 0.4s;
}
@media (max-width: 767px) {
  .faqList_tit::after {
    width: 5vw;
    height: 5vw;
    right: 5vw;
  }
}
.faqList_tit.active::after {
  transform: rotate(0deg) translateY(-50%);
}

.faqList_content {
  padding: 25px 40px 40px;
  display: none;
}
@media (max-width: 767px) {
  .faqList_content {
    padding: 1vw 5vw 8vw;
  }
}

.faqList_txt {
  line-height: 2;
}
@media (max-width: 767px) {
  .faqList_txt {
    line-height: 1.75;
  }
}

/*---------------------------------------------
contact
---------------------------------------------*/
.sec-contact {
  padding: 100px 0 60px;
}
@media (max-width: 767px) {
  .sec-contact {
    padding: 16vw 0;
  }
  .sec-contact.-thanks {
    padding: 30vw 0 16vw;
  }
}
.sec-contact .sec_tit {
  margin: 0;
}

.contactTable {
  max-width: 960px;
  width: 100%;
  margin: auto;
}
.contactTable th {
  width: 10%;
  padding: 10px 65px 0 0;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .contactTable th {
    padding: 0 0 3vw;
  }
}
.contactTable td {
  padding: 0 0 30px;
}
@media (max-width: 767px) {
  .contactTable td {
    padding: 0 0 8vw;
  }
}
@media (max-width: 767px) {
  .contactTable th,
  .contactTable td {
    display: block;
    width: 100%;
  }
}
.contactTable .radio,
.contactTable .checkbox {
  display: none;
}
.contactTable label {
  position: relative;
  padding: 0 0 0 30px;
  cursor: pointer;
  display: inline-block;
}
@media (max-width: 767px) {
  .contactTable label {
    padding: 0 0 0 4.2vw;
  }
}
.contactTable label:not(:last-child) {
  margin: 0 0 0.5em;
}
.contactTable .checkbox + span::before,
.contactTable .radio + span::before,
.contactTable span::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  border-radius: 100%;
  transition: all 0.2s;
}
.contactTable .checkbox + span::before,
.contactTable .radio + span::before {
  left: 0;
  width: 18px;
  height: 18px;
  background: #fefefe;
  /* ラジオボタンの元の色の指定*/
  border: 1px solid #222426;
}
@media (max-width: 767px) {
  .contactTable .checkbox + span::before,
  .contactTable .radio + span::before {
    width: 3.2vw;
    height: 3.2vw;
  }
}
.contactTable .checkbox + span::after,
.contactTable .radio + span::after {
  opacity: 0;
  left: 4px;
  width: 12px;
  height: 12px;
  background: #cbcbcb;
  transform: scale(2) translateY(-50%);
}
@media (max-width: 767px) {
  .contactTable .checkbox + span::after,
  .contactTable .radio + span::after {
    left: 0.7vw;
    width: 2vw;
    height: 2vw;
  }
}
.contactTable .checkbox:checked + span::after,
.contactTable .radio:checked + span::after {
  opacity: 1;
  transform: scale(1) translateY(-50%);
  background-color: #2a80c4;
}

.inpTxt {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  width: 100%;
  background: #eee;
  padding: 15px;
  box-sizing: border-box;
}

.required {
  display: flex;
  align-items: center;
}
.required::after {
  content: "\5FC5\9808";
  background: red;
  font-size: 12px;
  display: inline-block;
  padding: 0 5px 1px;
  margin: 0 0 0 10px;
  color: #fefefe;
  border-radius: 4px;
}

.submitBtn {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  box-shadow: none;
  margin: 60px auto 90px;
  border: 1px solid #F3972D;
}
@media (max-width: 767px) {
  .submitBtn {
    margin: 8vw auto 0;
  }
}

.contact_checkList li:not(:last-child) {
  margin: 0 0 10px;
}
@media (max-width: 767px) {
  .contact_checkList li:not(:last-child) {
    margin: 0 0 2vw;
  }
}

.formErrorContent {
  color: #aa0707;
  margin: 0.5em 0 0;
}
