@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;500;700;800;900&display=swap");
html {
  font-family: "M PLUS Rounded 1c", "Albert Sans", Futura, Trebuchet MS, Arial, sans-serif;
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  font-weight: 400;
  font-family: "M PLUS Rounded 1c", "Albert Sans", Futura, Trebuchet MS, Arial, sans-serif;
  line-height: 1.7;
  letter-spacing: 0.05rem;
  min-height: 100%;
  min-width: 100%;
  height: 100%;
  overflow-x: hidden;
  margin: 0px;
  padding: 0px;
}

main {
  margin-top: 0;
}

p {
  line-height: 1.6;
}

.container-wrap {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}
.container-wrap.full {
  max-width: 100%;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .container-wrap.full {
    padding: 0 48px;
  }
}

.btn {
  display: inline-block;
  text-align: center;
  width: 100%;
  min-width: 280px;
  max-width: 280px;
  padding: 10px;
  border-radius: 100px;
}
@media (min-width: 768px) {
  .btn {
    min-width: 320px;
    max-width: 320px;
    padding: 16px;
  }
}
.btn.btn-cta {
  min-width: 320px;
  max-width: 320px;
}
@media (min-width: 768px) {
  .btn.btn-cta {
    min-width: 360px;
    max-width: 360px;
    padding: 16px;
  }
}
.btn.btn-header {
  min-width: 320px;
  max-width: 320px;
}
@media (min-width: 768px) {
  .btn.btn-header {
    min-width: 164px;
    max-width: 164px;
    padding: 8px;
  }
}
.btn.btn-submit {
  min-width: 100%;
  max-width: 100%;
  padding: 16px;
  transition: all 0.3s ease;
  transform: translateY(0);
}
@media (min-width: 768px) {
  .btn.btn-submit {
    min-width: 320px;
    max-width: 320px;
  }
}
.btn.btn-submit:hover {
  opacity: 0.8;
  transition: all ease 0.25;
}

.font-albert {
  font-family: "Albert Sans", sans-serif;
}

.dot-lists li {
  position: relative;
  padding-left: 20px;
}
.dot-lists li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 10px;
  height: 10px;
  background-color: #FCB606;
  border-radius: 50%;
}
.dot-lists.gray li::before {
  background-color: #B1B1B1;
}

.check-lists.sm li {
  font-size: 14px;
  padding-left: 36px;
  padding-bottom: 0;
  margin-bottom: 8px;
  border: none;
}
.check-lists.sm li::before {
  width: 28px;
  height: 28px;
  top: -2px;
}
@media (min-width: 768px) {
  .check-lists.sm li {
    font-size: 16px;
  }
}
.check-lists li {
  font-size: 16px;
  position: relative;
  padding-left: 32px;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: dashed 2px #D2D2D2;
}
@media (min-width: 768px) {
  .check-lists li {
    padding-left: 40px;
    font-size: 18px;
  }
}
.check-lists li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background-image: url(../img/icon_check.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 768px) {
  .check-lists li::before {
    width: 32px;
    height: 32px;
  }
}

/*------------------
 setting
------------------*/
.section-wrap {
  position: relative;
  padding: 64px 0;
}
@media (min-width: 768px) {
  .section-wrap {
    padding: 80px 0;
  }
}

a {
  transition: all 0.2s ease-in;
}
a:hover, a:focus, a:hover img, a:focus img {
  opacity: 0.8;
  transition: all ease 0.25;
}

.section-ttl {
  position: relative;
  margin-bottom: 24px;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  letter-spacing: 0.05rem;
}
@media (min-width: 768px) {
  .section-ttl {
    font-size: 36px;
    margin-bottom: 32px;
  }
}

.marker {
  background: linear-gradient(transparent 60%, #FCB606 60%);
}

.diagonal-txt {
  position: relative;
  text-align: center;
  font-weight: bold;
  line-height: 1.3;
  font-size: 14px;
}
@media (min-width: 768px) {
  .diagonal-txt {
    font-size: 18px;
  }
}
.diagonal-txt::before, .diagonal-txt::after {
  position: relative;
  display: inline-block;
  content: "";
  width: 2px;
  height: 1.5em;
  margin: 0 1em;
  margin-top: -0.2em;
  vertical-align: middle;
}
.diagonal-txt::before {
  transform: rotate(-35deg);
}
.diagonal-txt::after {
  transform: rotate(35deg);
}
.diagonal-txt.orange {
  color: #FF9000;
}
.diagonal-txt.orange::before, .diagonal-txt.orange::after {
  background-color: #FF9000;
}
.diagonal-txt.red {
  color: #E63946;
}
.diagonal-txt.red::before, .diagonal-txt.red::after {
  background-color: #E63946;
}

/*------------------
 header
------------------*/
.header {
  background-color: #fff;
  padding: 12px 0;
  transition: padding 0.2s ease, background-color 0.3s ease;
}
.header.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.95);
  z-index: 9999;
}
.header .header-logo img {
  height: 64px;
  width: auto;
  transition: transform 0.3s ease, height 0.3s ease;
  transform-origin: top left;
}
.header .menu-logo {
  display: none;
}

@media (max-width: 1279.98px) {
  .header .header-logo img {
    height: auto;
    width: 172px;
  }
  .header .menu {
    display: none;
  }
  .header .menu .container-wrap.full {
    padding: 0;
  }
  .header .menu.active {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    height: 100vh;
    padding: 8px 16px;
    display: block;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 999;
    transition: all 0.3s ease;
    overflow-y: scroll;
  }
  .header .menu.active .menu-logo {
    display: block;
  }
  .header .menu.active ul {
    height: 100%;
  }
  .header .menu.active ul li {
    width: 100%;
  }
  .header .menu.active ul li a {
    display: block;
  }
  .hamburger {
    position: relative;
    width: 48px;
    height: 48px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    background-color: #FCB606;
    border-radius: 100px;
  }
  .hamburger span {
    display: inline-block;
    text-align: center;
    font-size: 10px;
    line-height: 1;
    margin-top: 6px;
  }
  .line {
    position: relative;
    width: 100%;
    height: 1px;
    background-color: #fff;
    transition: all 0.3s ease;
  }
  .line:nth-child(2), .line:nth-child(3) {
    margin-top: 8px;
  }
  .hamburger.clicked .line:nth-child(1) {
    width: 85%;
    transform: rotate(45deg);
    top: 3px;
    left: 2px;
  }
  .hamburger.clicked .line:nth-child(2) {
    display: none;
  }
  .hamburger.clicked .line:nth-child(3) {
    width: 85%;
    transform: rotate(-45deg);
    bottom: 6px;
    left: 2px;
  }
}
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateX(320px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/*------------------
 mainkv
------------------*/
.section-mainkv {
  background-color: #F3F8FA;
  background: url(../img/mainkv_sp.svg) center center/cover no-repeat;
  padding: 40px 0;
}
@media (min-width: 768px) {
  .section-mainkv {
    background: url(../img/mainkv.svg) center center/cover no-repeat;
    padding: 64px 0;
  }
}
.section-mainkv .mainkv-inner__image {
  width: 100%;
}
@media (min-width: 768px) {
  .section-mainkv .mainkv-inner__image {
    width: 50vw;
    margin-right: calc(50% - 50vw);
    flex: 1;
  }
}
.section-mainkv .mainkv-balloon {
  display: inline-block;
  position: relative;
  background-color: #FCB606;
  color: #fff;
  padding: 12px 24px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-mainkv .mainkv-balloon::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 12px 0 12px;
  border-color: #FCB606 transparent transparent transparent;
}

/*------------------
aside
------------------*/
.aside-title {
  position: relative;
  padding: 0 28px;
  display: inline-block;
}
@media (min-width: 768px) {
  .aside-title {
    padding: 0 32px;
  }
}
.aside-title.wide {
  padding: 0 40px;
}
@media (min-width: 768px) {
  .aside-title.wide {
    padding: 0 44px;
  }
}
.aside-title::before, .aside-title::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(55deg);
  width: 1.75em;
  height: 2px;
  background-color: #FCB606;
}
@media (min-width: 768px) {
  .aside-title::before, .aside-title::after {
    width: 1.5em;
  }
}
.aside-title::before {
  left: 0;
}
.aside-title::after {
  right: 0;
  transform: translateY(-50%) rotate(-55deg);
}
.aside-title.orange::before, .aside-title.orange::after {
  background-color: #FF9000;
}
.aside-title.cyan::before, .aside-title.cyan::after {
  background-color: #4FBFC0;
}
.aside-title.red::before, .aside-title.red::after {
  background-color: #E63946;
}

/*------------------
 reason
------------------*/
.section-reason .reason-wrap .reason-block + .reason-block {
  margin-top: 40px;
}
.section-reason .reason-wrap .reason-block .reason-info__head p {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 3em;
}

/*------------------
 cases
------------------*/
.section-cases .cases-wrap .cases-block + .cases-block {
  margin-top: 24px;
}
@media (min-width: 768px) {
  .section-cases .cases-wrap .cases-block + .cases-block {
    margin-top: 40px;
  }
}
.section-cases .cases-wrap .cases-block .ba-lists > li {
  position: relative;
}
.section-cases .cases-wrap .cases-block .ba-lists > li:first-child::after {
  content: "";
  position: absolute;
  bottom: -28px;
  left: 50%;
  width: 24px;
  height: 24px;
  background-image: url(../img/icon_arrow_right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translateX(-50%) rotate(90deg);
}
@media (min-width: 768px) {
  .section-cases .cases-wrap .cases-block .ba-lists > li:first-child::after {
    bottom: -36px;
    width: 32px;
    height: 32px;
  }
}

/*------------------
 problem
------------------*/
.section-problem {
  padding-bottom: 40px;
}

/*------------------
 solution
------------------*/
/*------------------
 cta
------------------*/
/*------------------
 intro
------------------*/
/*------------------
 flow
------------------*/
.section-flow .flow-wrap .flow-block + .flow-block {
  margin-top: 32px;
}
@media (min-width: 768px) {
  .section-flow .flow-wrap .flow-block + .flow-block {
    margin-top: 48px;
  }
}

/*------------------
 comparison
------------------*/
.comparison-table {
  width: 100%;
  min-width: 780px;
  max-width: 780px;
}
@media (min-width: 768px) {
  .comparison-table {
    min-width: 100%;
    max-width: 100%;
  }
}

/*------------------
 service
------------------*/
.section-service .service-card .num {
  color: #FCB606;
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
}
@media (min-width: 768px) {
  .section-service .service-card .num {
    font-size: 80px;
  }
}

/*------------------
 reason
------------------*/
/*------------------
 benefit
------------------*/
/*------------------
 reccomend
------------------*/
/*------------------
 voice
------------------*/
.section-voice .voice-wrap .voice-block + .voice-block {
  margin-top: 24px;
}
@media (min-width: 768px) {
  .section-voice .voice-wrap .voice-block + .voice-block {
    margin-top: 32px;
  }
}
.section-voice .voice-wrap .voice-block dt {
  width: 80px;
}
@media (min-width: 768px) {
  .section-voice .voice-wrap .voice-block dt {
    width: 200px;
  }
}
.section-voice .voice-wrap .voice-block dd {
  padding-left: 12px;
  width: calc(100% - 80px);
}
@media (min-width: 768px) {
  .section-voice .voice-wrap .voice-block dd {
    padding-left: 32px;
    width: calc(100% - 200px);
  }
}

/*------------------
 faq
------------------*/
.section-faq .faq-wrap .faq-block + .faq-block {
  padding-top: 24px;
  margin-top: 24px;
  border-top: dashed 2px #E3E3E3;
}
.section-faq .faq-wrap .faq-block dt, .section-faq .faq-wrap .faq-block dd {
  display: flex;
  align-items: center;
}
.section-faq .faq-wrap .faq-block dt p, .section-faq .faq-wrap .faq-block dd p {
  flex: 1;
}
.section-faq .faq-wrap .faq-block dt .faq-q {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 100px;
  background-color: #FCB606;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  margin-right: 16px;
  line-height: 1;
  position: relative;
}
@media (min-width: 768px) {
  .section-faq .faq-wrap .faq-block dt .faq-q {
    margin-right: 32px;
    font-size: 20px;
  }
}
.section-faq .faq-wrap .faq-block dt .faq-q::after {
  content: "";
  position: absolute;
  right: -7px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #FCB606;
}
.section-faq .faq-wrap .faq-block dd {
  margin-top: 12px;
}
.section-faq .faq-wrap .faq-block dd .faq-a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 100px;
  background-color: #FFFAEE;
  color: #FCB606;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  margin-right: 16px;
  position: relative;
}
@media (min-width: 768px) {
  .section-faq .faq-wrap .faq-block dd .faq-a {
    margin-right: 32px;
    font-size: 20px;
  }
}
.section-faq .faq-wrap .faq-block dd .faq-a::after {
  content: "";
  position: absolute;
  right: -7px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #FFFAEE;
}

/*------------------
 company
------------------*/
.section-company .copany-table dt, .section-company .copany-table dd {
  font-size: 16px;
}
@media (min-width: 768px) {
  .section-company .copany-table dt, .section-company .copany-table dd {
    font-size: 18px;
  }
}
.section-company .copany-table dt {
  font-weight: bold;
  width: 120px;
}
@media (min-width: 768px) {
  .section-company .copany-table dt {
    width: 164px;
  }
}
.section-company .copany-table dd {
  width: calc(100% - 120px);
}
@media (min-width: 768px) {
  .section-company .copany-table dd {
    width: calc(100% - 164px);
  }
}

/*------------------
 contact
------------------*/
select {
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
}

/*------------------
 subkv
------------------*/
.section-subkv {
  height: 280px;
  background-color: #FFFAEE;
}
@media (min-width: 768px) {
  .section-subkv {
    height: 360px;
  }
}
.section-subkv p {
  color: #FCB606;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  letter-spacing: 0.05rem;
}
@media (min-width: 768px) {
  .section-subkv p {
    font-size: 24px;
  }
}
.section-subkv h1 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  letter-spacing: 0.05rem;
}
@media (min-width: 768px) {
  .section-subkv h1 {
    font-size: 40px;
  }
}

.wpcf7-list-item {
  margin-left: 0;
}

.wpcf7-spinner {
  display: none !important;
}

/*------------------
 キラリと光るアニメーション
------------------*/
.cta-btn-shine {
  position: relative;
  overflow: hidden;
  display: inline-block;
  animation: pulse-scale 2s ease-in-out infinite;
  transition: transform 0.3s ease;
}
.cta-btn-shine:hover {
  transform: scale(1.05);
}
.cta-btn-shine::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shine 3s infinite;
  z-index: 1;
  pointer-events: none;
}
.cta-btn-shine figure {
  position: relative;
  z-index: 0;
}

@keyframes shine {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
@keyframes pulse-scale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}