@charset "utf-8";
/* formatting setting */
:root {
  /* カラー指定 */
  --white: #ffffff;
  --black: #000000;
  --main-orange: #9b111e;
  --accent-yellow: #fabe00;
  --bg-gray: #1d1d1d;
}
* {
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN",
    sans-serif;
}
@media (min-width: 768px) {
  html.active {
    /* 85% */
    transform: scale(0.8);
    transform-origin: left top;
    height: calc(100% / 0.8);
    width: calc(100% / 0.8);
    overflow-x: hidden;
  }
}
body {
  font-size: 62.5%;
  font-weight: normal;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN",
    sans-serif;
  color: var(--black);
  background-color: var(--white);
}
/* body * {
    outline: red 1px solid;
} */
a {
  text-decoration: none;
  color: inherit;
}

.sp-only {
  display: none !important;
}
.pc-only {
  display: block !important;
}
@media (max-width: 767px) {
  .sp-only {
    display: block !important;
  }
  .pc-only {
    display: none !important;
  }
}
main {
  margin-top: 136px;
  overflow-x: hidden;
}
@media (max-width: 767px) {
  main {
    margin-top: 77px;
  }
}
/*
*  ヘッダー
*/
.header {
  background-color: var(--bg-gray);
  width: 100%;
  height: 136px;
  /*box-shadow: 5px 7px 20px rgba(115,54,0,0.1) ;*/
  top: 0;
  z-index: 10;
  position: fixed;
}
.header.scroll {
  position: fixed;
  animation-name: anime;
  animation-duration: 0.3s;
}

@keyframes anime {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
.header-inner {
  width: 100%;
  max-width: 1240px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-inner h1 {
  margin-top: 30px;
  margin-left: 10px;
}
.header-inner h1 img {
  display: block;
  height: auto;
  width: 147px;
}
.header-inner .header-right {
  margin-top: 30px;
  display: flex;
  margin-right: 16px;
  gap: 30px;
  align-items: center;
}
.header-inner .header-right .tel-box01 {
  font-weight: 600;
  font-size: 27px;
  line-height: 1.2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
}
.header-inner .header-right .tel-box01 a {
  display: flex;
}
@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
.header-inner .header-right .contact-btn1 {
  width: 284px;
  height: 66px;
  background-color: var(--main-orange);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-size: 24px;
}
.header-inner .header-right .contact-btn1:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
.header-inner .header-right .contact-btn1 .mail-icon {
  background: url(../img/mailicon.png);
  width: 41px;
  height: 39px;
}
.header-inner .header-right .contact-btn2 {
  width: 284px;
  height: 66px;
  background-color: var(--main-orange);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 24px;
}
.header-inner .header-right .contact-btn2:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
.header-inner .header-right .contact-btn2 .contact-icon1 {
  background: url(../img/contacticon.png);
  width: 46px;
  height: 48px;
}
.header-cta img:hover {
  opacity: 0.8;
  transition: all 0.3s;
}
.header-cta img {
  width: 295px;
  height: auto;
}
@media (max-width: 767px) {
  .header {
    height: auto;
    min-height: 77px;
  }
  .header-inner {
    height: 77px;
  }
  .header-inner h1 {
    margin-top: 10px;
  }
  .header-inner h1 img {
    width: 73.5px;
    height: auto;
  }
  .header-inner .header-right {
    margin-top: 10px;
  }
  .header-inner .header-right .contact-btn1 {
    width: 100px;
    font-size: 14px;
    gap: 5px;
    height: auto;
    padding: 10px 5px;
  }
  .header-inner .header-right .contact-btn2 {
    width: 100px;
    font-size: 12px;
    gap: 3px;
    height: auto;
    padding: 10px 5px;
  }
  .header-inner .header-right .tel-box01 {
    gap: 10px;
  }
  .header-inner .header-right .contact-btn1 .mail-icon {
    width: 22px;
    height: 21px;
    gap: 3px;
    background-size: contain;
  }
  .header-inner .header-right .contact-btn2 .contact-icon1 {
    width: 21px;
    height: 21px;
    background-size: contain;
  }
}
/*
* メインビジュアル
*/
.webp .main-visual {
  width: 100%;
  min-height: 890px;
  background: url(../img/mainvisual1.webp) 50% 0 / cover;
  position: relative;
}
.no-webp .main-visual {
  width: 100%;
  min-height: 890px;
  background: url(../img/mainvisual1.jpg) 50% 0 / cover;
  position: relative;
}
.main-visual .main-visual-inner {
  width: 100%;
  max-width: 1240px;
  margin: auto;
}
.main-visual .main-visual-inner .main-text1 {
  text-align: center;
}
.main-visual .main-visual-inner .main-text1 h2 {
  min-width: 1240px;
  font-size: 100px;
  color: var(--bg-gray);
  font-weight: 900;
  padding-top: 120px;
  line-height: 1.5;
}

.main-visual .main-visual-inner .main-cta {
  width: 1100px;
  position: absolute;
  left: 50%;
  transform: translateX(-550px);
  bottom: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
}
.main-visual .main-visual-inner .main-cta .main-cta-btn1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 517px;
  height: 117px;
  background-color: var(--bg-gray);
  color: var(--white);
  font-size: 30px;
  font-weight: 600;
  position: relative;
}
.main-visual .main-visual-inner .main-cta .main-cta-btn1 span {
  position: relative;
  z-index: 2;
}
.main-visual .main-visual-inner .main-cta .main-cta-btn1 .dl-icon {
  width: 63px;
  height: 50px;
  position: relative;
  z-index: 2;
  -webkit-mask-image: url(../img/downloadicon.png);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(../img/downloadicon.png);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: var(--white);
}
/*== 背景が流れる（中央から横全体） */
.main-visual .main-visual-inner .main-cta .main-cta-btn1::before {
  content: "";
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: var(--white);
  width: 100%;
  height: 100%;
  /*アニメーション*/
  transition: transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: top;
}
/*hoverした際の形状*/
.main-visual .main-visual-inner .main-cta .main-cta-btn1:hover::before {
  transform: scale(1, 1);
}
.main-visual .main-visual-inner .main-cta .main-cta-btn1:hover span {
  color: var(--bg-gray);
}
.main-visual .main-visual-inner .main-cta .main-cta-btn1:hover .dl-icon {
  background-color: var(--bg-gray);
}

.main-visual .main-visual-inner .main-cta .main-cta-btn2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 479px;
  height: 117px;
  background-color: var(--white);
  border: 10px solid var(--main-orange);
  color: var(--main-orange);
  font-size: 30px;
  font-weight: 600;
  box-shadow: rgba(90, 49, 0, 0.27) 1px 7px 9px;
  position: relative;
}
.main-visual .main-visual-inner .main-cta .main-cta-btn2 span {
  position: relative;
  z-index: 2;
}
.main-visual .main-visual-inner .main-cta .main-cta-btn2 .contact-icon2 {
  width: 61px;
  height: 64px;
  background: url(../img/contacticon2.png);
}
/*== 背景が流れる（中央から横全体） */
.main-visual .main-visual-inner .main-cta .main-cta-btn2::before {
  content: "";
  /*絶対配置で位置を指定*/
  position: absolute;
  top: -10px;
  left: -10px;
  z-index: 2;
  /*色や形状*/
  background: var(--main-orange);
  border: 10px solid var(--white);
  width: 479px;
  height: 117px;
  /*アニメーション*/
  transition: transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: top;
}
/*hoverした際の形状*/
.main-visual .main-visual-inner .main-cta .main-cta-btn2:hover::before {
  transform: scale(1, 1);
}
.main-visual .main-visual-inner .main-cta .main-cta-btn2:hover span {
  color: var(--white);
}

.main-visual .main-visual-inner .main-cta .main-cta-btn2:hover .contact-icon2 {
  position: relative;
  z-index: 3;
}

.main-visual .beaver-kun1 {
  position: absolute;
  left: 30px;
  bottom: -80px;
  z-index: 8;
}

@media (max-width: 767px) {
  .webp .main-visual {
    min-height: 311px;
    background: url(../img/sp/bg-main.webp) 50% 100% / cover;
  }
  .no-webp .main-visual {
    min-height: 311px;
    background: url(../img/sp/bg-main.png) 50% 100% / cover;
  }
  .main-visual .beaver-kun1 img {
    width: 125px;
  }
  .main-visual .main-visual-inner .main-text1 h2 {
    font-size: 20px;
    padding-top: 40px;
    min-width: auto;
    font-size: 27px;
    line-height: 1;
    width: 95vw;
    text-align: right;
    line-height: 1.5;
  }
  .main-visual .main-visual-inner .main-cta {
    flex-direction: column;
    width: auto;
    margin: auto;
    transform: translateX(-50%);
    left: 50%;
    bottom: 70px;
    gap: 10px;
  }
  .main-visual .main-visual-inner .main-cta .main-cta-btn1 {
    width: 252px;
    font-size: 20px;
    height: auto;
    font-size: 20px;
    gap: 10px;
    padding: 10px 5px;
  }
  .main-visual .main-visual-inner .main-cta .main-cta-btn1 .dl-icon {
    width: 30px;
    height: 25px;
    background-size: contain;
  }
  .main-visual .main-visual-inner .main-cta .main-cta-btn2 {
    width: auto;
    height: auto;
    font-size: 17px;
    border-width: 3px;
    padding: 10px;
    gap: 5px;
  }
  .main-visual .main-visual-inner .main-cta .main-cta-btn2 .contact-icon2 {
    width: 21px;
    height: 23px;
    background-size: contain;
  }
  .main-visual .beaver-kun1 {
    bottom: -21px;
    left: 20px;
  }
  .main-visual .main-visual-inner .main-cta .main-cta-btn2:hover::before {
    transform: scale(0, 0);
  }
  .main-visual .main-visual-inner .main-cta .main-cta-btn2:hover span {
    color: inherit;
  }
}
/* トップスライダーWP */
.bvs-slider {
  padding-top: 3rem;
  padding-bottom: 2.5rem;
  & h2 {
    font-size: 1.75rem;
    text-align: center;
    padding-bottom: 1.8rem;
  }
}
.bvs-slider .slick-slide {
  margin: 0 10px;
}

/*
* セクション1
*/
.webp .support {
  width: 100%;
  background: url(../img/section02.webp) 50% 0% / cover;
  min-height: 987px;
  position: relative;
}
.no-webp .support {
  width: 100%;
  background: url(../img/section02.png) 50% 0% / cover;
  min-height: 987px;
  position: relative;
}
.support .support-inner {
  max-width: 1240px;
  margin: auto;
}
.support .support-inner h2 {
  font-size: 75px;
  font-weight: 600;
  color: var(--white);
  transform: rotate(-8deg);
  position: absolute;
  top: 170px;
  right: 13%;
  line-height: 1.3;
}
@media (min-width: 768px) and (max-width: 1500px) {
  .support .support-inner h2 {
    right: 10%;
    font-size: 5vw;
  }
}
.support .support-inner .list-heading {
  position: absolute;
  right: 200px;
  bottom: 450px;
  color: var(--main-orange);
  font-weight: 600;
  font-size: 40px;
}
.support .support-inner .list-box1 {
  width: 1000px;
  height: 320px;
  border: 2px solid var(--main-orange);
  border-radius: 35px;
  position: absolute;
  right: 200px;
  bottom: 100px;
  background-color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
}
.support .support-inner .list-box1::before {
  display: block;
  content: "";
  width: 300px;
  height: 70px;
  border: 2px solid var(--white);
  border-top-left-radius: 35px;
  position: absolute;
  left: -2px;
  top: -2px;
}
.support .support-inner .list-box1::after {
  display: block;
  content: "";
  width: 300px;
  height: 70px;
  border: 3px solid var(--white);
  border-end-end-radius: 35px;
  position: absolute;
  right: -2px;
  bottom: -2px;
}
.support .support-inner .list-box1 ul {
  list-style-type: disc;
  font-size: 26px;
  font-weight: 500;
}
.color-orange {
  color: var(--main-orange);
}
@media (max-width: 767px) {
  .webp .support {
    background: url(../img/sp/section2.webp) 50% 0% / cover;
    min-height: 288px;
  }
  .no-webp .support {
    background: url(../img/sp/section2.png) 50% 0% / cover;
    min-height: 288px;
  }
  .support .support-inner h2 {
    top: 36px;
    right: 4%;
    font-size: 17px;
    line-height: 1.8;
  }
  .support .support-inner .list-heading {
    font-size: 20px;
    bottom: 120px;
    right: 6%;
  }
  .support .support-inner .list-box1 {
    width: 270px;
    height: auto;
    right: 6%;
    gap: 15px;
    bottom: 20px;
    border-radius: 17px;
    padding: 15px 0;
  }
  .support .support-inner .list-box1 ul {
    font-size: 10px;
    list-style-position: inside;
    z-index: 2;
  }
  .support .support-inner .list-box1::before {
    width: 120px;
    border-top-left-radius: 17px;
    height: 40px;
  }
  .support .support-inner .list-box1::after {
    width: 120px;
    border-bottom-right-radius: 17px;
    height: 40px;
  }
}
/*
* 選ばれる理由（セクション2）
*/
.webp .feature {
  width: 100%;
  min-height: 1578px;
  background: url(../img/section03.webp) 0 50% / cover;
  position: relative;
}
.no-webp .feature {
  width: 100%;
  min-height: 1578px;
  background: url(../img/section03.png) 0 50% / cover;
  position: relative;
}
.feature .feature-inner {
  /* position: relative; */
  width: 100%;
  max-width: 1168px;
  margin: auto;
}
.feature .feature-inner h3 {
  font-family: Oswald, sans-serif;
  font-weight: 400;
  padding-top: 150px;
  font-size: 20px;
  letter-spacing: 2px;
}
.feature .feature-inner h2 {
  padding-top: 150px;
  font-weight: 600;
  font-size: 46px;
  margin-bottom: 40px;
}
.feature .feature-inner .hr-line {
  display: block;
  width: 1100px;
  height: 2px;
  background-color: var(--main-orange);
  margin-bottom: 100px;
  position: absolute;
  left: 0;
}
.feature .feature-inner p.desc {
  font-size: 30px;
  font-weight: 500;
  color: var(--white);
  padding-top: 45px;
}
.feature .feature-inner p.desc2 {
  font-size: 18px;
  font-weight: 300;
  color: var(--white);
  padding-top: 45px;
  line-height: 2.3;
  padding-bottom: 50px;
}
.feature .feature-inner .feature-flex {
  margin: auto;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: stretch;
}
.feature .feature-inner .feature-item {
  width: 368px;
  height: auto;
  background-color: var(--white);
  padding: 0 40px 80px;
}
.feature .feature-inner .feature-item h4 {
  font-family: Oswald, sans-serif;
  font-weight: 500;
  font-size: 74px;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 20px;
  border-bottom: 7px solid var(--main-orange);
  color: var(--main-orange);
  width: 92px;
  margin: auto;
}
.feature .feature-inner .feature-item h5 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
  margin-top: 20px;
}
.feature .feature-inner .feature-item p {
  font-size: 22px;
  font-weight: normal;
  line-height: 1.8;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .webp .feature {
    background: url(../img/sp/section3.webp) 50% 0 / cover;
    min-height: auto;
    padding-bottom: 50px;
  }
  .no-webp .feature {
    background: url(../img/sp/section3.png) 50% 0 / cover;
    min-height: auto;
    padding-bottom: 50px;
  }
  .feature .heading-flex {
    display: flex;
    gap: 0;
    align-items: center;
    justify-content: center;
    border-bottom: 3px solid var(--main-orange);
  }
  .feature .feature-inner h2 {
    padding-top: 30px;
    font-size: 20px;
    margin-bottom: 30px;
    text-align: center;
  }
  .feature .feature-inner .feature-item {
    padding: 20px 15px;
    width: 90%;
  }
  .feature .feature-inner .feature-item h4 {
    font-size: 40px;
    padding-bottom: 10px;
    padding-top: 0;
    border-bottom: none;
  }
  .feature .feature-inner .hr-line {
    width: 86vw;
  }
  .feature .feature-inner p.desc {
    font-size: 14px;
    padding-right: 20px;
    padding-left: 20px;
    line-height: 1.5;
  }
  .feature .feature-inner p.desc2 {
    font-size: 14px;
    padding-right: 20px;
    padding-left: 20px;
    line-height: 1.5;
  }
  .feature .feature-inner .feature-flex {
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
  }
  .feature .feature-inner .feature-item h5 {
    font-size: 12px;
    padding-left: 7px;
    margin-top: 0;
    padding-bottom: 10px;
  }
  .feature .feature-inner .feature-item p {
    font-size: 12px;
  }
}

/*
* ビーバーズCTA
*/
.webp .omakase {
  width: 100%;
  min-height: 629px;
  background: url(../img/section04.webp) 50% 50% / cover;
}
.no-webp .omakase {
  width: 100%;
  min-height: 629px;
  background: url(../img/section04.png) 50% 50% / cover;
}
.omakase .omakase-inner {
  width: 100%;
  max-width: 1168px;
  margin: auto;
}
.omakase .omakase-inner .omakase-desc1 {
  color: var(--bg-gray);
  text-align: center;
  font-size: 30px;
  font-weight: 400;
  padding-top: 105px;
}
.omakase .omakase-inner .omakase-heading {
  text-align: center;
  font-size: 55px;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 60px;
  color: var(--bg-gray);
}

.omakase .omakase-inner .omakase-heading span {
  color: var(--main-orange);
}

.omakase .omakase-inner .cta-main {
  display: flex;
  margin: auto;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.omakase .omakase-inner .cta-kyujin a {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  width: 479px;
  height: 117px;
  background-color: var(--main-orange);
  text-align: center;
  font-size: 35px;
  color: var(--white);
  font-weight: 600;
  box-shadow: 1px 7px 9px rgba(90, 49, 0, 0.1);
}

.omakase .omakase-inner .cta-kyujin a span {
  position: relative;
  z-index: 3;
  /* vertical-align: middle; */
}

.omakase .omakase-inner .cta-kyujin a i.mushimegane {
  display: inline-block;
  width: 63px;
  height: 50px;
  -webkit-mask-image: url(../img/downloadicon.png);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(../img/downloadicon.png);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: var(--white);
  z-index: 3;
}

.omakase .omakase-inner .cta-kyujin a:hover span {
  color: var(--black);
}

.omakase .omakase-inner .cta-kyujin a:hover i.mushimegane {
  background-color: var(--black);
}

.omakase .omakase-inner .cta-kyujin a span.kyujinjouhou {
  font-size: 45px;
}

/*== 背景が流れる（中央から横全体） */
.omakase .omakase-inner .cta-kyujin a:before {
  content: "";
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: var(--accent-yellow);
  width: 100%;
  height: 100%;
  /*アニメーション*/
  transition: transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: top;
}

/*hoverした際の形状*/
.omakase .omakase-inner .cta-kyujin a:hover:before {
  transform: scale(1, 1);
}

.omakase .omakase-inner .cta-line a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  position: relative;
  width: 517px;
  height: 117px;
  background-color: var(--white);
  text-align: center;
  font-size: 35px;
  color: var(--main-orange);
  font-weight: 600;
  line-height: 117px;
  border: 10px solid var(--main-orange);
  box-shadow: 1px 7px 9px rgba(90, 49, 0, 0.1);
}

.omakase .omakase-inner .cta-line a span {
  /* position: relative; */
  z-index: 3;
  /* vertical-align: middle; */
}

.omakase .omakase-inner .cta-line a img.sumaho {
  position: absolute;
  width: 390px;
  height: auto;
  left: 50%;
  transform: translate(-50%, -120%);
  z-index: 3;
}

.omakase .omakase-inner .cta-line a i.sumaho {
  display: block;
  width: 61px;
  height: 64px;
  /* position: absolute; */
  background: url(../img/contacticon2.png);
  z-index: 3;
  /* -webkit-mask-image: url(../img/contacticon2.png);
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-image: url(../img/contacticon2.png);
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center; */
  /* background-color: var(--main-orange); */
}

.omakase .omakase-inner .cta-line a:hover span {
  color: var(--white);
}

.omakase .omakase-inner .cta-line a:hover i.sumaho {
  background: url(../img/contacticon2.png);
}

.omakase .omakase-inner .cta-line a span.line-soudan {
  font-size: 50px;
}

/*== 背景が流れる（中央から横全体） */
.omakase .omakase-inner .cta-line a:before {
  content: "";
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: var(--main-orange);
  width: 100%;
  height: 100%;
  /*アニメーション*/
  transition: transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: top;
}

/*hoverした際の形状*/
.omakase .omakase-inner .cta-line a:hover:before {
  transform: scale(1, 1);
}

.tel-renraku-area {
  width: 100%;
  max-width: 1031px;
  height: 166px;
  margin: 25px auto 40px;
  background-color: var(--white);
  box-shadow: 5px 7px 20px rgba(115, 54, 0, 0.1);
}

.tel-renraku-flex {
  display: flex;
  gap: 35px;
  justify-content: center;
  align-items: center;
  min-height: 166px;
}

.tel-renraku-left {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 270px;
}

.tel-renraku-left .tel-renraku-desc {
  font-size: 22px;
}

.tel-renraku-right .tel-renraku-num {
  font-size: 55px;
  font-weight: 600;
}

.tel-renraku-right .tel-renraku-uketuke {
  font-size: 22px;
  font-weight: 400;
}

@media (max-width: 767px) {
  .webp .omakase {
    min-height: 360px;
  }
  .no-webp .omakase {
    min-height: 360px;
  }

  .omakase .omakase-inner {
    padding-bottom: 30px;
  }

  .omakase .omakase-inner .omakase-desc1 {
    font-size: 14px;
    padding-top: 30px;
  }

  .omakase .omakase-inner .omakase-heading {
    font-size: 25px;
    margin-bottom: 30px;
    line-height: 1.5;
  }

  .omakase .omakase-inner .cta-main {
    flex-direction: column;
  }

  .omakase .omakase-inner .cta-kyujin a {
    width: 300px;
    margin: auto;
    padding: 0;
    position: static;
    margin: auto;
    height: 80px;
  }

  .omakase .omakase-inner .cta-kyujin a i.mushimegane {
    width: 25px;
    height: 25px;
    position: static;
    margin-right: 10px;
  }

  .omakase .omakase-inner .cta-kyujin a span.kyujinjouhou {
    font-size: 30px;
    line-height: 100px;
  }

  .omakase .omakase-inner .cta-kyujin a img.nyuryokujouhou {
    width: 230px;
    transform: translate(-50%, -50%);
  }

  .omakase .omakase-inner .cta-kyujin a span {
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .omakase .omakase-inner .cta-kyujin a:before,
  .omakase .omakase-inner .cta-kyujin a:hover:before {
    display: none;
  }

  .omakase .omakase-inner .cta-line a {
    width: 300px;
    font-size: 22px;
    padding-left: 0;
    margin: auto;
    border: 5px solid var(--main-orange);
    height: 80px;
    line-height: 80px;
  }

  .omakase .omakase-inner .cta-line a span.line-soudan {
    font-size: 30px;
  }

  .omakase .omakase-inner .cta-line a > span {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .omakase .omakase-inner .cta-line a span {
    vertical-align: top;
  }

  .omakase .omakase-inner .cta-line a i.sumaho {
    position: static;
    width: 28px;
    height: 30px;
    margin-right: 10px;
    background-size: contain;
  }

  .omakase .omakase-inner .cta-line a:before,
  .omakase .omakase-inner .cta-line a:hover:before {
    display: none;
  }

  .omakase .omakase-inner .cta-line a:hover span {
    color: inherit;
  }

  .omakase .omakase-inner .cta-line a:hover i.sumaho {
    background-color: var(--main-orange);
  }

  .tel-renraku-area {
    width: 360px;
    height: 90px;
  }

  .tel-renraku-flex {
    gap: 5px;
    min-height: 90px;
  }

  .tel-renraku-left img {
    width: 29px;
    height: 29px;
  }

  .tel-renraku-left {
    width: auto;
    min-width: 29px;
  }

  .tel-renraku-right .tel-renraku-num {
    font-size: 15px;
  }

  .tel-renraku-right .tel-renraku-num a {
    font-size: 18px;
    font-weight: 600;
  }

  .tel-renraku-right .tel-renraku-num > span {
    display: inline-block !important;
  }

  .tel-renraku-right .tel-renraku-uketuke {
    font-size: 12px;
  }
  .omakase .omakase-inner .cta-line a:hover i.sumaho {
    background: url(../img/contacticon2.png);
    background-size: contain;
  }
}

/*
* ToB向けサービスのご紹介
*/
.differences {
  width: 100%;
  min-height: 1157px;
  background-color: var(--main-orange);
}

.differences .differences-inner {
  width: 100%;
  max-width: 1240px;
  margin: auto;
  padding-top: 150px;
}

.differences .differences-inner h2 {
  font-weight: 600;
  font-size: 46px;
  text-align: center;
  margin: auto;
  margin-bottom: 150px;
  color: var(--white);
  width: fit-content;
  padding: 20px 40px;
  position: relative;
}
.differences .differences-inner h2 > span {
  position: relative;
  z-index: 2;
}
.differences .differences-inner h2::before {
  display: block;
  content: "";
  width: 100%;
  height: 100px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--bg-gray);
}
.differences .differences-inner .differences-flex {
  margin: auto;
  display: flex;
  gap: 55px;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1219px;
  flex-wrap: wrap;
}
.differences .differences-inner .differences-item {
  width: 582px;
  height: 460px;
  padding: 40px 15px;
  border-radius: 10px;
  /* border: 2px solid var(--main-orange); */
  text-align: center;
}
.webp .differences .differences-inner .differences-item.service01 {
  background: url(../img/servicebg01.webp) no-repeat;
}
.no-webp .differences .differences-inner .differences-item.service01 {
  background: url(../img/servicebg01.png) no-repeat;
}
.webp .differences .differences-inner .differences-item.service02 {
  background: url(../img/servicebg02.webp) no-repeat;
}
.no-webp .differences .differences-inner .differences-item.service02 {
  background: url(../img/servicebg02.png) no-repeat;
}
.webp .differences .differences-inner .differences-item.service03 {
  background: url(../img/servicebg03.webp) no-repeat;
}
.no-webp .differences .differences-inner .differences-item.service03 {
  background: url(../img/servicebg03.png) no-repeat;
}
.webp .differences .differences-inner .differences-item.service04 {
  background: url(../img/servicebg04.webp) no-repeat;
}
.no-webp .differences .differences-inner .differences-item.service04 {
  background: url(../img/servicebg04.png) no-repeat;
}
.differences .differences-inner .differences-item .differences-item-flex {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}
.differences
  .differences-inner
  .differences-item
  .differences-item-flex
  .differences-item-flex-inner {
  height: 260px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.differences
  .differences-inner
  .differences-item
  .differences-item-flex
  h3.diff-h3 {
  font-size: 38px;
  text-align: left;
  padding-left: 55px;
  font-weight: 900;
}
.differences
  .differences-inner
  .differences-item
  .differences-item-flex
  h4.diff-h4 {
  width: 433px;
  margin: 30px auto;
  line-height: 1.5;
  text-align: left;
  font-size: 18px;
}
.differences .differences-inner .differences-item .differences-item-flex a {
  display: block;
  width: 433px;
  height: 64px;
  background-color: var(--bg-gray);
  color: var(--main-orange);
  margin: 0 auto;
  font-size: 24px;
  font-weight: 700;
  line-height: 64px;
}

@media (max-width: 767px) {
  .differences {
    min-height: auto;
    padding-bottom: 50px;
  }
  .differences .differences-inner {
    padding-top: 50px;
  }
  .differences .differences-inner h2 {
    font-size: 23px;
    margin-bottom: 30px;
  }
  .differences .differences-inner h2::before {
    height: 70px;
  }
  .differences .differences-inner h3 {
    padding-top: 50px;
  }

  .differences .differences-inner .differences-flex {
    gap: 10px;
    justify-content: center;
    flex-direction: column;
  }

  .differences .differences-inner .differences-item img {
    width: 46px;
    height: auto;
  }

  .differences .differences-inner .differences-item h4 {
    font-size: 12px;
  }

  .differences .differences-inner .differences-item p {
    font-size: 10px;
    text-align: left;
    padding: 0 5px;
  }

  .differences .differences-inner .differences-item {
    height: auto;
    width: 90%;
    padding: 0;
  }
  .webp .differences .differences-inner .differences-item.service01 {
    background: url(../img/sp/jinzaibg.webp) 0 0 / cover;
  }
  .no-webp .differences .differences-inner .differences-item.service01 {
    background: url(../img/sp/jinzaibg.png) 0 0 / cover;
  }
  .webp .differences .differences-inner .differences-item.service02 {
    background: url(../img/sp/hakengb.webp) 0 0 / cover;
  }
  .no-webp .differences .differences-inner .differences-item.service02 {
    background: url(../img/sp/hakengb.png) 0 0 / cover;
  }
  .webp .differences .differences-inner .differences-item.service03 {
    background: url(../img/sp/gaikokubg.webp) 0 0 / cover;
  }
  .no-webp .differences .differences-inner .differences-item.service03 {
    background: url(../img/sp/gaikokubg.png) 0 0 / cover;
  }
  .webp .differences .differences-inner .differences-item.service04 {
    background: url(../img/sp/freelancebg.webp) 0 0 / cover;
  }
  .no-webp .differences .differences-inner .differences-item.service04 {
    background: url(../img/sp/freelancebg.png) 0 0 / cover;
  }
  .differences .differences-inner .differences-item .differences-item-flex {
    justify-content: space-between;
  }
  .differences
    .differences-inner
    .differences-item
    .differences-item-flex
    h3.diff-h3 {
    padding: 0;
    padding-left: 100px;
    padding-top: 20px;
    font-size: 20px;
    color: var(--main-orange);
  }
  .differences
    .differences-inner
    .differences-item
    .differences-item-flex
    h4.diff-h4 {
    padding-left: 100px;
    font-size: 12px;
    width: auto;
    margin: 0;
    margin-top: 15px;
    padding-bottom: 70px;
  }
  .differences
    .differences-inner
    .differences-item
    .differences-item-flex
    .differences-item-flex-inner {
    display: block;
    position: relative;
    height: auto;
  }
  .differences .differences-inner .differences-item .differences-item-flex a {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: auto;
    line-height: 40px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    font-size: 18px;
  }
}

/*
* ToCサービスのご紹介
*/
.tocservice {
  width: 100%;
  background-color: var(--bg-gray);
  padding-bottom: 100px;
}
.tocservice .tocservice-inner {
  width: 100%;
  max-width: 1600px;
  margin: auto;
}
.tocservice .tocservice-inner h2 {
  font-weight: 600;
  font-size: 46px;
  text-align: center;
  padding-top: 120px;
  margin-bottom: 100px;
  color: var(--main-orange);
}
.tocservice .tocservice-inner .tocservice-flex {
  width: 100%;
  height: 480px;
  background-color: transparent;
  display: flex;
  position: relative;
}
.tocservice .tocservice-inner .tocservice-flex.left {
  justify-content: flex-start;
}
.tocservice .tocservice-inner .tocservice-flex.right {
  justify-content: flex-end;
}
.tocservice .tocservice-inner .tocservice-flex.left .tocservice-flex-box {
  width: 1084px;
  background-color: var(--white);
  padding-left: 180px;
}
.tocservice .tocservice-inner .tocservice-flex.right .tocservice-flex-box {
  width: 1084px;
  background-color: var(--main-orange);
  padding-left: 470px;
}
.tocservice .tocservice-inner .tocservice-flex .right-bg {
  width: 900px;
  height: 430px;
  position: absolute;
  right: 0;
}
.tocservice .tocservice-inner .tocservice-flex .left-bg {
  width: 900px;
  height: 430px;
  position: absolute;
  left: 0;
}
@media (min-width: 1250px) and (max-width: 1500px) {
  .tocservice .tocservice-inner .tocservice-flex .left-bg,
  .tocservice .tocservice-inner .tocservice-flex .right-bg {
    width: 750px;
    height: 350px;
  }
  .tocservice .tocservice-inner .tocservice-flex.left .tocservice-flex-box {
    padding-left: 100px;
  }
}
@media (min-width: 768px) and (max-width: 1249px) {
  .tocservice .tocservice-inner .tocservice-flex .left-bg,
  .tocservice .tocservice-inner .tocservice-flex .right-bg {
    width: 40vw;
    height: 280px;
  }
  .tocservice .tocservice-inner .tocservice-flex.left .tocservice-flex-box {
    padding-left: 30px;
  }
}
.webp .tocservice .tocservice-inner .tocservice-flex .right-bg.houjin {
  background: url(../img/houjinconsul.webp);
}
.no-webp .tocservice .tocservice-inner .tocservice-flex .right-bg.houjin {
  background: url(../img/houjinconsul.png);
}
.webp .tocservice .tocservice-inner .tocservice-flex .left-bg.manda {
  background: url(../img/maconsul.webp) 100% 0;
}
.no-webp .tocservice .tocservice-inner .tocservice-flex .left-bg.manda {
  background: url(../img/maconsul.png) 100% 0;
}
.webp .tocservice .tocservice-inner .tocservice-flex .right-bg.saiyou {
  background: url(../img/saiyouconsul.webp);
}
.no-webp .tocservice .tocservice-inner .tocservice-flex .right-bg.saiyou {
  background: url(../img/saiyouconsul.png);
}
.webp .tocservice .tocservice-inner .tocservice-flex .left-bg.dxconsul {
  background: url(../img/dxconsul.webp) 100% 0;
}
.no-webp .tocservice .tocservice-inner .tocservice-flex .left-bg.dxconsul {
  background: url(../img/dxconsul.png) 100% 0;
}
.tocservice .tocservice-inner .tocservice-flex.left .tocservice-flex-box h3 {
  padding-top: 50px;
  padding-left: 40px;
  margin-bottom: 40px;
  font-family: Oswald, sans-serif;
  font-size: 90px;
  font-weight: 500;
  transform: skew(-15deg);
}
.tocservice
  .tocservice-inner
  .tocservice-flex.left
  .tocservice-flex-box
  h3::before {
  content: "";
  width: 3px;
  height: 85px;
  background-color: var(--bg-gray);
  transform: skew(-15deg);
  display: inline-block;
  margin-right: 20px;
}
.tocservice .tocservice-inner .tocservice-flex.left .tocservice-flex-box h4 {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 30px;
}
.tocservice
  .tocservice-inner
  .tocservice-flex.left
  .tocservice-flex-box
  p.desc {
  font-size: 16px;
  line-height: 1.8;
}
.tocservice .tocservice-inner .tocservice-flex.left .tocservice-flex-box a {
  display: block;
  width: 237px;
  height: 62px;
  background-color: var(--main-orange);
  text-align: center;
  line-height: 62px;
  margin-top: 20px;
  font-size: 25px;
  font-weight: 600;
}
.tocservice .tocservice-inner .tocservice-flex.right .tocservice-flex-box h3 {
  padding-top: 50px;
  padding-left: 40px;
  margin-bottom: 40px;
  font-family: Oswald, sans-serif;
  font-size: 90px;
  font-weight: 500;
  transform: skew(-15deg);
}

.tocservice
  .tocservice-inner
  .tocservice-flex.right
  .tocservice-flex-box
  h3::before {
  content: "";
  width: 3px;
  height: 85px;
  background-color: var(--bg-gray);
  transform: skew(-15deg);
  display: inline-block;
  margin-right: 20px;
}

.tocservice .tocservice-inner .tocservice-flex.right .tocservice-flex-box h4 {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 30px;
}

.tocservice
  .tocservice-inner
  .tocservice-flex.right
  .tocservice-flex-box
  p.desc {
  font-size: 16px;
  line-height: 1.8;
}
.tocservice .tocservice-inner .tocservice-flex.right .tocservice-flex-box a {
  display: block;
  width: 237px;
  height: 62px;
  color: var(--main-orange);
  background-color: var(--bg-gray);
  text-align: center;
  line-height: 62px;
  margin-top: 20px;
  font-size: 25px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .tocservice .tocservice-inner h2 {
    padding-top: 50px;
    font-size: 26px;
    margin-bottom: 50px;
  }
  .tocservice .tocservice-inner .tocservice-flex {
    height: auto;
  }
  .tocservice .tocservice-inner .tocservice-flex .right-bg {
    width: 155px;
    height: 120px;
    background-size: cover;
  }
  .tocservice .tocservice-inner .tocservice-flex .left-bg {
    width: 155px;
    height: 120px;
    background-size: cover;
  }
  .tocservice .tocservice-inner .tocservice-flex.left .tocservice-flex-box {
    width: 70%;
    padding: 10px 20px;
    margin-left: 5vw;
  }
  .tocservice .tocservice-inner .tocservice-flex.right .tocservice-flex-box {
    width: 70%;
    padding-left: 50px;
    padding-right: 15px;
    padding-bottom: 15px;
    margin-right: 5vw;
  }
  .webp .tocservice .tocservice-inner .tocservice-flex .right-bg.houjin {
    background: url(../img/houjinconsul.webp) 0 0 / cover no-repeat;
  }
  .no-webp .tocservice .tocservice-inner .tocservice-flex .right-bg.houjin {
    background: url(../img/houjinconsul.png) 0 0 / cover no-repeat;
  }
  .webp .tocservice .tocservice-inner .tocservice-flex .left-bg.manda {
    background: url(../img/maconsul.webp) 100% 0 / cover no-repeat;
  }
  .no-webp .tocservice .tocservice-inner .tocservice-flex .left-bg.manda {
    background: url(../img/maconsul.png) 100% 0 / cover no-repeat;
  }
  .webp .tocservice .tocservice-inner .tocservice-flex .right-bg.saiyou {
    background: url(../img/saiyouconsul.webp) 0 0 / cover no-repeat;
  }
  .no-webp .tocservice .tocservice-inner .tocservice-flex .right-bg.saiyou {
    background: url(../img/saiyouconsul.png) 0 0 / cover no-repeat;
  }
  .webp .tocservice .tocservice-inner .tocservice-flex .left-bg.dxconsul {
    background: url(../img/dxconsul.webp) 100 0 / cover no-repeat;
  }
  .no-webp .tocservice .tocservice-inner .tocservice-flex .left-bg.dxconsul {
    background: url(../img/dxconsul.png) 100 0 / cover no-repeat;
  }
  .tocservice .tocservice-inner .tocservice-flex.left .tocservice-flex-box h3,
  .tocservice .tocservice-inner .tocservice-flex.right .tocservice-flex-box h3 {
    font-size: 40px;
    padding-top: 15px;
    margin-bottom: 15px;
  }
  .tocservice .tocservice-inner .tocservice-flex.left .tocservice-flex-box h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .tocservice .tocservice-inner .tocservice-flex.right .tocservice-flex-box h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .tocservice
    .tocservice-inner
    .tocservice-flex.right
    .tocservice-flex-box
    h3::before {
    height: 38px;
  }
  .tocservice
    .tocservice-inner
    .tocservice-flex.left
    .tocservice-flex-box
    h3::before {
    height: 38px;
    padding-top: 15px;
  }
  .tocservice .tocservice-inner .tocservice-flex.right .tocservice-flex-box h3 {
    font-size: 40px;
  }
  .tocservice
    .tocservice-inner
    .tocservice-flex.left
    .tocservice-flex-box
    p.desc,
  .tocservice
    .tocservice-inner
    .tocservice-flex.right
    .tocservice-flex-box
    p.desc {
    font-size: 12px;
    line-height: 1.3;
  }
  .tocservice .tocservice-inner .tocservice-flex.left .tocservice-flex-box a,
  .tocservice .tocservice-inner .tocservice-flex.right .tocservice-flex-box a {
    width: 100px;
    height: 30px;
    font-size: 15px;
    line-height: 30px;
  }
}

/*
* お客様の声
*/
.webp .voice {
  width: 100%;
  min-height: 1079px;
  background: url(../img/section05.webp) 0 50% / cover;
  position: relative;
}
.no-webp .voice {
  width: 100%;
  min-height: 1079px;
  background: url(../img/section05.png) 0 50% / cover;
  position: relative;
}
.voice .voice-inner {
  /* position: relative; */
  width: 100%;
  /* max-width: 1600px; */
  margin: auto;
}
.voice .voice-inner h2 {
  padding-top: 150px;
  font-weight: 600;
  font-size: 46px;
  margin-bottom: 40px;
  color: var(--bg-gray);
  width: 1240px;
  text-align: left;
  margin-right: auto;
  margin-left: auto;
}
.voice .voice-inner .hr-line {
  display: block;
  width: 1100px;
  height: 2px;
  background-color: var(--main-orange);
  margin-bottom: 100px;
  position: absolute;
  left: 0;
}
.voice .voice-inner .voice-slide .js-flowing-voice {
  width: 100%;
  padding-top: 150px;
}
.voice .voice-inner .voice-slide .voice-item {
  height: 446px;
  background-color: var(--white);
  margin: 0 90px;
  border-radius: 63px;
  border: 2px solid var(--main-orange);
  padding: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  max-width: 1160px;
}
.voice .voice-inner .voice-slide .voice-item .picture-voice {
  min-width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: var(--main-orange);
}
.voice .voice-inner .voice-slide .voice-item .picture-voice img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.voice .voice-inner .voice-slide .voice-item .voice-desc {
  max-width: 600px;
}
.voice .voice-inner .voice-slide .voice-item .voice-desc h3 {
  font-size: 30px;
  margin-bottom: 20px;
}
.voice .voice-inner .voice-slide .voice-item .voice-desc h4 {
  font-size: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--bg-gray);
}
.voice .voice-inner .voice-slide .voice-item .voice-desc p {
  font-size: 17px;
  line-height: 1.8;
}
.slick-track {
  display: flex;
}

.slick-slide {
  height: auto !important;
}
@media (max-width: 767px) {
  .webp .voice {
    background: url(../img/sp/section4.webp) 50% 0 / cover;
    min-height: 300px;
    padding-bottom: 1px;
  }
  .no-webp .voice {
    background: url(../img/sp/section4.png) 50% 0 / cover;
    min-height: 300px;
    padding-bottom: 1px;
  }
  .voice .voice-inner h2 {
    padding-top: 50px;
    padding-left: 30px;
    font-size: 22px;
    width: 100%;
    margin-bottom: 10px;
  }
  .voice .voice-inner .hr-line {
    width: 250px;
    margin-bottom: 20px;
  }
  .voice .voice-inner .voice-slide .voice-item {
    max-width: 300px;
    height: auto;
    padding: 10px;
    gap: 10px;
    border-radius: 10px;
    margin: 0 10px;
  }
  .voice .voice-inner .voice-slide .js-flowing-voice {
    padding-top: 30px;
  }
  .voice .voice-inner .voice-slide .voice-item .picture-voice {
    min-width: 60px;
    height: 60px;
  }
  .voice .voice-inner .voice-slide .voice-item .voice-desc {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* min-height: 200px; */
  }
  .voice .voice-inner .voice-slide .voice-item .voice-desc h3 {
    font-size: 15px;
    margin-bottom: 5px;
  }

  .voice .voice-inner .voice-slide .voice-item .voice-desc h4 {
    font-size: 13px;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }

  .voice .voice-inner .voice-slide .voice-item .voice-desc p {
    font-size: 12px;
    line-height: 1.3;
  }
}

.webp .faq {
  width: 100%;
  background: var(--bg-gray) url(../img/section06.webp) 50% 100% / cover;
}
.no-webp .faq {
  width: 100%;
  background: var(--bg-gray) url(../img/section06.png) 50% 100% / cover;
}
.faq .faq-inner {
  width: 100%;
  max-width: 1240px;
  margin: auto;
  position: relative;
  padding-bottom: 100px;
}

.faq .faq-inner h2 {
  font-weight: 600;
  font-size: 46px;
  text-align: center;
  padding-top: 120px;
  margin-bottom: 150px;
  color: var(--main-orange);
}
.faq .faq-inner span.faq-hr {
  display: block;
  width: 1025px;
  height: 2px;
  background-color: var(--main-orange);
  margin: 50px auto;
}
.faq .faq-inner dl.parent-list {
  width: 100%;
  max-width: 1100px;
  margin: auto;
  text-align: center;
  background-color: var(--white);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 25px;
}
.faq .faq-inner dl.parent-list > dt {
  background-color: var(--main-orange);
  padding: 20px 0;
  color: var(--white);
  cursor: pointer;
  position: relative;
}
.faq .faq-inner dl.parent-list > dt::before {
  display: block;
  content: "";
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--white);
  position: absolute;
  top: 15px;
  right: 50px;
  transition: all 0.3s;
}
.faq .faq-inner dl.parent-list > dt::after {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  border-top: 2px solid var(--main-orange);
  border-left: 2px solid var(--main-orange);
  transform: rotate(225deg);
  position: absolute;
  top: 25px;
  right: 60px;
  transition: all 0.3s;
}
.faq .faq-inner dl.parent-list > dt.open::before {
  background-color: var(--bg-gray);
}
.faq .faq-inner dl.parent-list > dt.open::after {
  top: 30px;
  border-top: 2px solid var(--white);
  border-left: 2px solid var(--white);
  transform: rotate(45deg);
}

.faq .faq-inner dl.child-list {
  width: 100%;
  max-width: 1025px;
  margin: auto;
  border-bottom: 2px solid #9b9999;
  position: relative;
  background-color: var(--white);
  padding: 0 50px;
}
.faq .faq-inner dl.child-list dt {
  cursor: pointer;
}
.faq .faq-inner dl.child-list .ac-parent {
  width: 22px;
  height: 22px;
  position: absolute;
  right: 50px;
  top: 30px;
}
.faq .faq-inner dl.child-list .ac-parent span:first-of-type {
  width: 22px;
  height: 2px;
  background-color: #9b9999;
  display: block;
  transform: translateY(20px);
  transition: all 0.2s;
}
.faq .faq-inner dl.child-list .ac-parent span:last-of-type {
  width: 22px;
  height: 2px;
  background-color: #9b9999;
  display: block;
  transform: translateY(17px) rotate(90deg);
  transition: all 0.2s;
}
.faq .faq-inner dl.child-list:last-of-type {
  border-bottom: none;
}
.faq .faq-inner dl.child-list .ac-parent.clicked span:first-of-type {
  display: none;
}
.faq .faq-inner dl.child-list .ac-parent.clicked span:last-of-type {
  transform: translateY(17px) rotate(0deg);
}
.faq .faq-inner dl.child-list dt {
  width: 100%;
  font-size: 22px;
  font-weight: 600;
  padding: 20px 0;
  display: flex;
  gap: 20px;
  align-items: center;
  text-align: left;
  position: relative;
  z-index: 3;
}
.faq .faq-inner dl.child-list dt p.question {
  font-size: 36px;
  font-weight: 600;
  font-family: Oswald, sans-serif;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  color: var(--white);
  background-color: var(--main-orange);
  border-radius: 50%;
}
.faq .faq-inner dl.child-list dd {
  width: 100%;
  padding: 20px 75px;
  background-color: #e6e6e6;
  border-radius: 13px;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 30px;
  text-align: left;
}
.faq .faq-inner dl.child-list:last-of-type {
  padding-bottom: 30px;
}
.faq .faq-inner dl.child-list:last-of-type dd {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .webp .faq {
    min-height: auto;
    padding-bottom: 50px;
    background: url(../img/sp/qandabg.webp) no-repeat 0 100% / cover;
  }
  .no-webp .faq {
    min-height: auto;
    padding-bottom: 50px;
    background: url(../img/sp/qandabg.png) no-repeat 0 100% / cover;
  }
  .faq .faq-inner {
    padding-bottom: 0;
  }
  .faq .faq-inner span.faq-hr {
    width: 80%;
    margin: auto;
  }
  .faq .faq-inner h3 {
    padding-top: 50px;
  }
  .faq .faq-inner h2 {
    font-size: 23px;
    padding-top: 50px;
    margin-bottom: 30px;
  }
  .faq .faq-inner dl dt {
    gap: 5px;
  }
  .faq .faq-inner dl.parent-list {
    width: 90vw;
  }
  .faq .faq-inner dl dt p.question {
    font-size: 15px;
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
  .faq .faq-inner dl dt p.answer {
    font-size: 12px;
    padding-right: 27px;
    width: 290px;
  }
  .faq .faq-inner dl dd {
    font-size: 12px;
    padding: 10px 20px;
  }
  .faq .faq-inner dl.parent-list > dt::before {
    right: 10px;
  }
  .faq .faq-inner dl.parent-list > dt::after {
    right: 20px;
  }
  .faq .faq-inner dl.parent-list > dt {
    font-size: 16px;
  }
  .faq .faq-inner dl.child-list {
    padding: 0 10px;
  }
  .faq .faq-inner dl.child-list dt {
    gap: 10px;
  }
  .faq .faq-inner dl.child-list dt p.question {
    width: 56px;
    height: 32px;
    line-height: 32px;
    font-size: 25px;
  }
  .faq .faq-inner dl.child-list .ac-parent {
    right: 15px;
    top: 15px;
  }
  .faq .faq-inner dl.child-list dd {
    padding: 15px;
    font-size: 12px;
  }
}

.contact {
  width: 100%;
  background-color: #d1d1d1;
}
.contact .contact-inner {
  width: 100%;
  max-width: 1168px;
  margin: auto;
  padding-bottom: 100px;
}
.contact .contact-inner h2 {
  font-size: 44px;
  font-weight: bold;
  color: var(--black);
  text-align: center;
  padding-top: 150px;
  margin-bottom: 60px;
}
.contact .contact-inner .contact-hr {
  width: 121px;
  height: 10px;
  display: block;
  background-color: var(--main-orange);
  margin: auto;
  margin-bottom: 50px;
}
.contact .contact-inner .contact-form {
  width: 100%;
  max-width: 831px;
  margin: 30px auto;
  margin-top: -136px;
  padding-top: 136px;
}
.contact .contact-inner .contact-form dl dt label {
  display: flex;
  align-items: center;
  gap: 15px;
}
.contact .contact-inner .contact-form dl dt label p {
  font-size: 22px;
  font-weight: 600;
  display: inline-block;
  margin-right: 10px;
  color: var(--main-orange);
}
.contact .contact-inner .contact-form dl dt label p.sentakuka {
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
}
.contact .contact-inner .contact-form dl dt label span {
  display: inline-block;
  padding: 1px 25px;
  background-color: var(--main-orange);
  color: var(--white);
  font-size: 14px;
}
.contact .contact-inner .contact-form form input[type="text"],
.contact .contact-inner .contact-form form input[type="tel"],
.contact .contact-inner .contact-form form input[type="email"] {
  width: 100%;
  padding: 10px 10px 10px 35px;
  outline: none;
  border: 2px solid var(--black);
  border-radius: 5px;
  margin-top: 10px;
  margin-bottom: 15px;
  font-size: 22px;
  background-color: var(--white);
}
.contact .contact-inner .contact-form form textarea {
  background-color: var(--white);
}
input[type="checkbox"] {
  background-color: var(--white);
}
.contact .contact-inner .contact-form form input[type="text"]::placeholder,
.contact .contact-inner .contact-form form input[type="tel"]::placeholder,
.contact .contact-inner .contact-form form input[type="email"]::placeholder,
.contact .contact-inner .contact-form form textarea::placeholder {
  color: #d1d1d1;
}
.contact .contact-inner .contact-form dl dd textarea {
  width: 100%;
  min-height: 290px;
  padding: 10px 10px 10px 35px;
  outline: none;
  border: 2px solid var(--black);
  border-radius: 5px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 22px;
}
.contact .contact-inner .contact-form dl dd > p {
  margin-bottom: 15px;
  font-size: 1.2rem;
  font-weight: 700;
  color: red;
}
.contact .contact-inner .contact-form dl dd.checkbox {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.contact .contact-inner .contact-form form input[type="checkbox"] {
  display: block;
  width: 22px;
  height: 22px;
}
.contact .contact-inner .contact-form dl dd.checkbox label {
  display: flex;
  gap: 5px;
}
.contact .contact-inner .contact-form dl dd.checkbox label p {
  font-size: 16px;
  font-weight: 600;
}
.contact .contact-inner .contact-btn {
  display: block;
  margin: auto;
  width: 375px;
  height: 71px;
  line-height: 71px;
  border: 2px solid var(--main-orange);
  outline: none;
  text-align: center;
  font-size: 22px;
  color: var(--white);
  font-weight: 600;
  position: relative;
  background: var(--main-orange);
}
.contact .contact-inner .contact-btn span {
  position: relative;
  z-index: 3;
}
.contact .contact-inner .contact-btn:hover span {
  color: var(--main-orange);
}
/*== 背景が流れる（中央から横全体） */
.contact .contact-inner .contact-btn:before {
  content: "";
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: var(--white);
  width: 100%;
  height: 100%;
  /*アニメーション*/
  transition: transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: top;
}
/*hoverした際の形状*/
.contact .contact-inner .contact-btn:hover:before {
  transform: scale(1, 1);
}
@media (max-width: 767px) {
  .contact {
    height: auto;
    padding-bottom: 50px;
  }
  .contact .contact-inner {
    padding-bottom: 0;
  }
  .contact .contact-inner h2 {
    font-size: 23px;
    padding-top: 50px;
  }
  .contact .contact-inner .contact-form {
    width: 90vw;
    margin: 40px auto;
    margin-top: -77px;
    padding-top: 77px;
  }
  .contact .contact-inner .contact-btn {
    width: 300px;
    margin: 30px auto;
    border-radius: 30px;
  }
  .contact .contact-inner .contact-btn:before {
    display: none;
  }
  .contact .contact-inner .contact-btn:hover span {
    color: inherit;
  }
}
.footer1 {
  width: 100%;
  background-color: #282828;
}
.footer1 .footer1-inner {
  width: 100%;
  max-width: 1168px;
  margin: auto;
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 50px;
}
.footer1 .footer1-inner address p {
  margin-top: 20px;
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  font-style: normal;
}
.footer1 .footer1-inner address p:last-of-type {
  margin-top: 0;
}
.footer1 .footer1-inner picture {
  display: block;
  height: auto;
  width: 147px;
}
.footer2 {
  width: 100%;
  min-height: 61px;
  line-height: 61px;
  color: var(--white);
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  background: var(--main-orange);
}
@media (max-width: 767px) {
  .footer1 .footer1-inner {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 30px 20px;
  }
  .footer1 .footer1-inner address p {
    font-size: 12px;
    text-align: center;
  }
}
.thanks {
  width: 100%;
  min-height: 70vh;
  background-color: #d1d1d1;
}
.thanks-inner {
  width: 100%;
  max-width: 1168px;
  margin: auto;
  text-align: center;
  font-size: 16px;
  padding-top: 100px;
}
.thanks-inner h2 {
  color: var(--white);
  font-weight: 600;
  margin: 40px auto;
}
.thanks-inner a {
  text-decoration: underline;
}
@media (max-width: 767px) {
  .thanks-inner h2 {
    font-size: 20px;
  }
  .thanks-inner p {
    padding: 20px 30px;
    text-align: left;
    line-height: 2;
  }
  .thanks-inner p a {
    display: block;
    text-align: center;
  }
}

/* ブログのスライダードット設定 */
.slick-dots {
  width: 100px;
  display: flex;
  align-items: center;
  margin: 10px auto;
  justify-content: center;
  position: static !important;
}

.slick-dots li button:before {
  color: var(--main-orange) !important;
}

/* アニメーション設定 */
.animation1 {
  font-size: 40px;
  font-weight: bold;
  color: var(--white);
}

.animation2 {
  font-size: 40px;
  font-weight: bold;
  color: var(--white);
}

.fadeInDown {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 2s;
  -ms-animation-duration: 2s;
  animation-duration: 3s;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  visibility: visible !important;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -ms-transform: translateY(40px);
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

/* モーダルのセッティング */
/* モーダルを開くボタン */
.modal-open {
  /* position: fixed;*/
  /* display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 50px;
    font-weight: bold;
    color: #fff;
    background: #d06231;
    margin: auto;*/
  cursor: pointer;
  /* transform: translate(-50%, -50%); */
}

/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 75%);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  box-sizing: border-box;
  z-index: 9999;
}

.modal-open:hover {
  opacity: 0.7;
  transition: 0.3s;
}

/*モーダル本体の擬似要素の指定*/
.modal-container:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active {
  opacity: 1;
  visibility: visible;
}

/*モーダル枠の指定*/
.modal-body {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 800px;
  width: 85%;
  border-radius: 60px;
  border: 10px solid var(--main-orange);
  background-color: var(--white);
  padding: 110px 170px 80px;
  text-align: left;
}

/*モーダルを閉じるボタンの指定*/
.modal-close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 40px;
  right: 40px;
  width: 40px;
  height: 40px;
  font-size: 30px;
  color: var(--main-orange);
  cursor: pointer;
  border: 2px solid var(--main-orange);
}

/*モーダル内のコンテンツの指定*/
/* .modal-content {
    background: #fff;
    text-align: left;
    padding: 30px;
    border-radius: 60px;
} */
.modal-body .modal-h3 {
  font-size: 38px;
  text-align: center;
  padding-left: 0;
  font-weight: 900;
}
.modal-body .modal-h4 {
  text-align: center;
}
.modal-body .modal-h5 {
  text-align: center;
  padding: 7px;
  background-color: var(--bg-gray);
  color: var(--main-orange);
  font-size: 25px;
  margin: 30px auto;
}
.modal-body h6.modal-h6 {
  font-size: 30px;
  font-weight: 700;
  margin-top: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--bg-gray);
}
.modal-body p.modal-desc {
  text-align: left;
  margin-top: 20px;
  line-height: 1.7;
  font-size: 18px;
}

@media (max-width: 767px) {
  .modal-body {
    padding: 50px 20px;
    border-width: 5px;
    border-radius: 25px;
  }
  .modal-close {
    right: 25px;
  }
  .modal-body .modal-image {
    width: 100% !important;
  }
  .modal-body h3.modal-h3 {
    font-size: 25px;
    padding-top: 20px;
  }
  .modal-body h6.modal-h6 {
    font-size: 19px;
    text-align: center;
  }
  .modal-body p.modal-desc {
    font-size: 14px;
  }
}
