@charset "UTF-8";
@media screen and (min-width: 768px) {
  .pc-none {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pc-none {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  br.pc-none {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  br.pc-none {
    display: inline;
  }
}

@media screen and (min-width: 768px) {
  .sp-none {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .sp-none {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  br.sp-none {
    display: inline;
  }
}
@media screen and (max-width: 767px) {
  br.sp-none {
    display: none;
  }
}

.flex-btw {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.flex-nml {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.flex-end {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.flex-cen {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.mb-15 {
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .mb-15 {
    font-size: 4vw;
  }
}

.mb-10 {
  margin-bottom: 10px;
}
@media (max-width: 375px) {
  .mb-10 {
    margin-bottom: 2.6666666667vw;
  }
}

.mb-20 {
  margin-bottom: 20px;
}
@media (max-width: 375px) {
  .mb-20 {
    margin-bottom: 5.3333333333vw;
  }
}

.mb-30 {
  margin-bottom: 30px;
}
@media (max-width: 375px) {
  .mb-30 {
    margin-bottom: 8vw;
  }
}

.mb-40 {
  margin-bottom: 40px;
}
@media (max-width: 375px) {
  .mb-40 {
    margin-bottom: 10.6666666667vw;
  }
}

.mb-50 {
  margin-bottom: 50px;
}
@media (max-width: 375px) {
  .mb-50 {
    margin-bottom: 13.3333333333vw;
  }
}

.mb-60 {
  margin-bottom: 60px;
}
@media (max-width: 375px) {
  .mb-60 {
    margin-bottom: 16vw;
  }
}

.mb-70 {
  margin-bottom: 70px;
}
@media (max-width: 375px) {
  .mb-70 {
    margin-bottom: 18.6666666667vw;
  }
}

.mb-80 {
  margin-bottom: 80px;
}
@media (max-width: 375px) {
  .mb-80 {
    margin-bottom: 21.3333333333vw;
  }
}

html {
  scroll-padding-top: 64px;
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 60px;
  }
}

body {
  font-family: "Noto Sans JP", "Yu Gothic Medium", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
  font-size: 0.875rem;
  color: #333;
  position: relative;
  width: 100%;
  min-height: 100%;
  display: grid;
  grid-template-rows: 1fr auto;
}

html, body {
  height: 100%;
}

p {
  font-size: 0.875rem;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  p {
    font-size: 3.7333333333vw;
  }
}

/******************************
　header
******************************/
header {
  background: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
  position: fixed;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  z-index: 99999;
}

.hd-sticky {
  width: 100%;
  background: #fff;
}

.header__inner {
  max-width: 965px;
  width: 100%;
  height: 64px;
  margin: 0 auto;
  align-items: center;
  padding: 15px 5px;
  background: #fff;
  flex-wrap: nowrap;
}
@media screen and (max-width: 850px) {
  .header__inner {
    padding: 13px 15px;
  }
}
@media screen and (max-width: 767px) {
  .header__inner {
    height: 60px;
  }
}

.hd_left {
  max-width: 295px;
}
@media screen and (max-width: 767px) {
  .hd_left {
    flex: 1;
  }
}

.hd_logo {
  flex-wrap: nowrap;
  align-items: center;
}

.hd__logo {
  max-width: 145px;
  width: 100%;
  margin-right: 20px;
}
.hd__logo a {
  transition: 0.3s;
}
.hd__logo a:hover {
  opacity: 0.5;
}
@media screen and (max-width: 850px) {
  .hd__logo {
    margin-right: 0;
  }
}

.logo__txt {
  font-size: 0.625rem;
  line-height: 1.5;
  white-space: nowrap;
}
@media screen and (max-width: 850px) {
  .logo__txt {
    display: none;
  }
}

.hd_right {
  max-width: 621px;
  width: 100%;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .hd_right {
    justify-content: flex-end;
    align-items: center;
    width: auto;
    gap: 20px;
  }
}

.g-nav__pc {
  max-width: 480px;
  width: calc(100% - 110px);
}
@media screen and (max-width: 767px) {
  .g-nav__pc {
    display: none;
  }
}

.g-nav__pc--ul .g-nav__li {
  font-size: 14px;
}
.g-nav__pc--ul .g-nav__li a {
  color: #333;
  transition: 0.5s;
  padding: 10px 0;
}
.g-nav__pc--ul .g-nav__li a:hover {
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  .g-nav__pc--ul {
    display: none;
  }
}

.hd__btn {
  width: 110px;
  white-space: nowrap;
}
.hd__btn a {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 34px;
  text-align: center;
  background: #FF842B;
  color: #fff;
  border-radius: 8px;
  transition: 0.5s;
}
.hd__btn a:hover {
  opacity: 0.5;
}
.hd__btn img {
  width: 16px;
  margin-right: 9px;
}

/************ハンバーガー*********/
.g-nav__bg {
  position: fixed;
  top: 0;
  right: -120%;
  height: 100vh;
}

@media screen and (max-width: 767px) {
  .header__menu-btn {
    position: relative;
    cursor: pointer;
    background: #249FDC;
    border-radius: 8px;
    width: 34px;
    height: 34px;
  }
  .hd__hamburger {
    display: flex;
    justify-content: center;
    align-items: end;
    width: 34px;
    height: 34px;
    padding: 5px;
  }
  .hd__hamburger span:nth-child(-n+3) {
    position: absolute;
    display: block;
    width: 21px;
    height: 2px;
    background: #fff;
  }
  .hd__hamburger span:nth-child(1) {
    top: calc(50% - 7px);
    transition: all 0.4s ease;
  }
  .hd__hamburger.active span:nth-child(1) {
    top: 50%;
    transform: rotate(45deg);
  }
  .hd__hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 0.4s ease;
  }
  .hd__hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hd__hamburger span:nth-child(3) {
    top: calc(50% + 5px);
    transition: all 0.4s ease;
  }
  .hd__hamburger.active span:nth-child(3) {
    top: 50%;
    transform: rotate(-45deg);
  }
  /***メニュー中身***/
  body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    display: none;
    transition: 0.5s;
  }
  html.active body:before {
    opacity: 0;
    z-index: 999;
    display: block;
    animation-name: BgAppear;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
  }
  @keyframes BgAppear {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes BgHide {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  .g-nav__bg {
    min-width: 100vw;
    transition: all 0.5s;
    background: #E9F8FF;
    overflow: auto;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    padding: 10px 10% 100px;
    margin-top: 60px;
    z-index: 9999;
  }
  .g-nav_bg-inr {
    margin: 0 auto;
  }
  .g-nav__bg.active {
    right: 0;
  }
  .g-nav_sp-ul .g-nav__li {
    position: relative;
    width: 100%;
    border-bottom: solid 1px #AAAAAA;
  }
  .g-nav_sp-ul .g-nav__li a {
    color: #333;
    display: block;
    padding: 24px 16px;
    background: url(../img/ico_arrow.svg) no-repeat center right 16px/6px;
  }
  .g-nav__sp {
    margin-bottom: 36px;
  }
  .g-nav_bg-inr .mail-btn a {
    font-size: 16px;
    height: 50px;
  }
  .g-nav_bg-inr .mail-btn a span {
    line-height: 50px;
    background: url(../img/ico_mail.svg) no-repeat center left/20px;
    padding-left: 30px;
  }
}
/******************************
　common
******************************/
.ttl {
  font-size: 36px;
  font-weight: 700;
  line-height: 150%;
  text-align: center;
  color: #1A81D7;
}
@media screen and (max-width: 767px) {
  .ttl {
    font-size: 6.4vw;
  }
}
.ttl small {
  font-size: 26px;
}
@media screen and (max-width: 767px) {
  .ttl small {
    font-size: 4.2666666667vw;
  }
}

.ttl-txt {
  font-size: 16px;
  line-height: 2;
  text-align: center;
}

.sub-ttl {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  color: #333;
}
@media screen and (max-width: 767px) {
  .sub-ttl {
    font-size: 4.8vw;
  }
}
.sub-ttl span {
  color: #1A81D7;
}
.sub-ttl small {
  font-size: 14px;
}

.mail-topic {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  color: #1A81D7;
  background: #fff;
  margin: 0 auto 30px;
  padding: 10px 37px;
  border-radius: 50px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .mail-topic {
    font-size: 4.2666666667vw;
  }
}
.mail-topic::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  bottom: -27%;
  left: 50%;
  transform: translateX(-50%);
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-top: 19px solid #fff;
}

.mail-btn a {
  font-size: 20px;
  font-weight: 700;
  width: 400px;
  display: block;
  height: 72px;
  background: #FF842B;
  box-shadow: 0 4px 0 #B66A00;
  border-radius: 8px;
  color: #fff;
  text-align: center;
  margin: 0 auto;
  position: relative;
  cursor: pointer;
  top: 0;
  transition: 0.2s ease-in-out;
}
.mail-btn a:hover {
  top: 4px;
  box-shadow: 0 0 #4C0F13;
  /* 影を0pxにする */
}
.mail-btn a span {
  line-height: 72px;
  padding-left: 36px;
  background: url(../img/ico_mail.svg) no-repeat center left/26px;
}
@media screen and (max-width: 767px) {
  .mail-btn a {
    font-size: 5.3333333333vw;
    width: 80vw;
  }
}

.inr {
  width: 98%;
}
@media screen and (max-width: 767px) {
  .inr {
    width: 84%;
  }
}

/******************************
　	kv
******************************/
.kv {
  background: #249FDC;
  margin-top: 64px;
  padding: 50px 0;
}
@media screen and (max-width: 767px) {
  .kv {
    margin-top: 60px;
    padding: 30px 0 40px;
  }
}
.kv .inr {
  max-width: 1020px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .kv .inr {
    width: 98%;
  }
}

.kv-left {
  width: 43%;
}
@media screen and (max-width: 767px) {
  .kv-left {
    width: 100%;
    text-align: center;
    margin-bottom: 7.7333333333vw;
  }
  .kv-left img {
    max-width: 80%;
    margin-left: 1%;
  }
}

.kv-right {
  width: 54%;
}
@media screen and (max-width: 767px) {
  .kv-right {
    width: 100%;
  }
}

.kv-txt01 {
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  color: #fff;
  font-family: "Noto Serif JP";
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .kv-txt01 {
    font-size: 6.4vw;
    letter-spacing: 1.2px;
    padding-left: 3vw;
  }
}

.kv-txt01-02 {
  font-size: 0.875rem;
  text-align: center;
  font-weight: 400;
  font-family: "Noto Sans JP";
  color: #fff;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .kv-txt01-02 {
    font-size: 3.7333333333vw;
    letter-spacing: 1.2px;
  }
}

.kv-img02 {
  text-align: center;
  margin-bottom: 18px;
}
.kv-img02 img {
  max-width: 527px;
}
@media screen and (max-width: 767px) {
  .kv-img02 img {
    width: 90%;
  }
}

.mv-list {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 15px;
}
.mv-list li {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8;
  color: #fff;
  padding-left: 1em;
  text-indent: -1em;
}
.mv-list li span {
  color: #FFDA48;
}
.mv-list li::before {
  content: "▶";
}
@media screen and (max-width: 767px) {
  .mv-list li {
    font-size: 4.2666666667vw;
    line-height: 1.6;
  }
  .mv-list li:not(:last-child) {
    margin-bottom: 10px;
  }
}

.kv-txt02 {
  font-size: 1.2rem;
  color: #FFF;
  text-align: center;
  font-weight: 700;
  line-height: 1.5;
}
.kv-txt02 span {
  color: #FFDA48;
}
@media screen and (max-width: 767px) {
  .kv-txt02 {
    font-size: 5.3333333333vw;
  }
}

.kv-mail {
  background: #1887d0;
  padding: 35px 0;
}
.kv-mail .inr {
  margin: 0 auto;
}

.kv-mail-txt {
  font-size: 2rem;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .kv-mail-txt {
    font-size: 5.8666666667vw;
    line-height: 1.5;
  }
}

/******************************
　top-about
******************************/
.top-about {
  padding: 120px 0;
  background: #E9F8FF;
}
.top-about .inr {
  max-width: 835px;
  margin: 0 auto;
}
.top-about .ttl span {
  color: #333;
}
@media screen and (max-width: 767px) {
  .top-about {
    padding: 50px 0;
  }
}

.comparison {
  background: #fff;
  border-radius: 16px;
  padding: 36px 48px;
}
.comparison .com-flex {
  margin-bottom: 20px;
}
.comparison li {
  position: relative;
}
@media screen and (max-width: 767px) {
  .comparison {
    padding: 24px 16px;
  }
}

.com01 {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .com01 {
    width: 100%;
    margin-bottom: 16px;
  }
}
.com01 img {
  max-width: 358px;
}

.com02 {
  width: 47%;
}
.com02 img {
  max-width: 268px;
}
@media screen and (max-width: 767px) {
  .com02 {
    width: 100%;
    padding-top: 33px;
  }
  .com02 img {
    max-width: 358px;
  }
}
.com02::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
  border-left: 18px solid #1887D0;
}
@media screen and (max-width: 767px) {
  .com02::before {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-left: 22px solid transparent;
    border-right: 22px solid transparent;
    border-top: 18px solid #1887D0;
    border-bottom: none;
  }
}

.com-img {
  text-align: center;
  margin-bottom: 15px;
}

.com-txt {
  font-size: 14px;
  text-align: center;
}

.com-topic {
  font-size: 18px;
  text-align: center;
  line-height: 1.5;
}
.com-topic span {
  color: #1887D0;
}
@media screen and (max-width: 767px) {
  .com-topic {
    font-size: 4.2666666667vw;
  }
}

/******************************
　top-flow
******************************/
.top-flow {
  padding: 120px 0;
}
.top-flow .inr {
  max-width: 965px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .top-flow {
    padding: 50px 0;
  }
}

.flow-num {
  font-size: 10px;
  position: absolute;
  background: #005591;
  color: #fff;
  font-family: "Be Vietnam Pro", sans-serif;
  font-weight: normal;
  text-align: center;
  line-height: 1;
  width: 60px;
  height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}
.flow-num span {
  font-size: 25px;
  display: block;
}

.flow-list {
  gap: 24px;
  flex-grow: 1;
  margin-bottom: 24px;
}
.flow-list li {
  position: relative;
  border-radius: 16px;
  background: #F4F9FE;
  flex: 1;
  padding: 48px 0 10px;
}

.flow-item {
  display: flex;
  flex-direction: column;
  align-self: stretch;
}
.flow-item.item-free {
  width: 57.6%;
}
.flow-item.item-paid {
  width: 37.7%;
}

.flow-ttl {
  font-size: 18px;
  text-align: center;
  line-height: 1.5;
  color: #1887D0;
  margin-bottom: 16px;
}
.flow-ttl small {
  font-size: 17px;
}

.flow-step-wrap {
  display: block;
}

.flow-img {
  text-align: center;
  margin-bottom: 16px;
}
.flow-img img {
  max-width: 130px;
  width: 100%;
}

.flow-txt {
  padding: 0 24px 24px;
}

.price-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  flex-grow: 1;
  text-align: center;
  box-sizing: border-box;
  border: solid 2px #249FDC;
  min-height: 107px;
  border-radius: 16px;
  padding: 24px 5px;
}

.price-ttl {
  font-size: 20px;
  font-weight: bold;
  color: #1887D0;
}

.price-txt {
  font-size: 12px;
}

@media screen and (max-width: 767px) {
  .flow-list-box {
    padding-top: 0;
  }
  .flow-item {
    border: solid 2px #249FDC;
    border-radius: 16px;
    padding: 48px 16px 24px;
  }
  .flow-item.item-free {
    width: 100%;
    margin-bottom: 6.4vw;
  }
  .flow-item.item-paid {
    width: 100%;
  }
  .flow-item .flow-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-bottom: 24px;
  }
  .flow-item .flow-list li {
    padding: 32px 17px 24px;
  }
  .flow-item .flow-ttl {
    font-size: 4.8vw;
    margin-bottom: 0;
  }
  .flow-item .flow-img {
    margin-bottom: 0;
  }
  .flow-item .flow-img img {
    max-width: 80px;
  }
  .flow-item .flow-txt {
    padding: 0 10px 0;
  }
  .flow-item .flow-step-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 3.2vw;
  }
  .flow-item .price-box {
    display: block;
    border: none;
    min-height: auto;
    border-radius: 0;
    padding: 0;
  }
  .flow-item .price-ttl {
    font-size: 5.3333333333vw;
    text-align: center;
  }
  .flow-item:last-child .price-ttl {
    margin-bottom: 8px;
  }
  .flow-item .price-txt {
    font-size: 3.2vw;
    text-align: center;
  }
}
/******************************
　top-reason
******************************/
.top-reason {
  background: #249FDC;
  padding: 120px 0;
}
@media screen and (max-width: 767px) {
  .top-reason {
    padding: 50px 0;
  }
}
.top-reason .inr {
  max-width: 965px;
  margin: 0 auto;
}
.top-reason .ttl, .top-reason .ttl-txt {
  color: #fff;
}

.reason-list {
  gap: 20px;
  margin-bottom: 40px;
}
.reason-list li {
  flex: 1 1 calc(50% - 20px);
  background: #fff;
  padding: 32px 24px;
  border-radius: 16px;
}

.reason-flex {
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .reason-flex {
    gap: 16px;
  }
}

.reason-img {
  line-height: 1;
  width: 150px;
}

.reason-txt {
  flex: 1;
}

@media screen and (max-width: 767px) {
  .reason-list {
    gap: 24px;
    margin-bottom: 8.5333333333vw;
  }
  .reason-list li {
    flex: 100%;
    background: #fff;
    padding: 32px;
    border-radius: 16px;
  }
  .reason-img {
    text-align: center;
    width: 100%;
  }
  .reason-img img {
    width: 150px;
  }
  .reason-txt {
    width: 100%;
  }
}
/******************************
　top-company
******************************/
.top-company {
  background: #E9F8FF;
  padding: 120px 0;
}
.top-company .inr {
  max-width: 965px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .top-company {
    padding: 50px 0;
  }
}

.company-wrap {
  gap: 54px;
  align-items: center;
}

.company-left {
  max-width: 200px;
  width: 100%;
  flex-shrink: 0;
}

.company-right {
  flex: 1;
}

.company-tbl {
  border-collapse: collapse;
  width: 100%;
}

.company-tbl th, .company-tbl td {
  line-height: 1.5;
  background-color: #fff;
  padding: 1em;
}

.company-tbl th {
  background-color: #1887D0;
  border-bottom: 1px solid #fff;
  color: #fff;
  font-weight: bold;
  text-align: center;
  width: 18%;
  vertical-align: middle;
}

.company-tbl td {
  border-bottom: 1px solid #AAA;
}

.company-tbl tr:first-child td {
  border-top: 1px solid #AAA;
}

.base-list li {
  margin-bottom: 3px;
  list-style-position: inside;
  list-style-type: disc;
  text-indent: -1.5em;
  padding-left: 1.8em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .base-list li {
    list-style-type: none;
    text-indent: 0;
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .base-list li:not(:last-child) {
    margin-bottom: 10px;
  }
}

.company-txt {
  text-align: center;
  line-height: 1.7;
}

.tel_link a {
  color: #333;
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .company-left {
    max-width: 100%;
    text-align: center;
  }
  .company-left img {
    max-width: 200px;
  }
  .company-tbl th {
    width: 70px;
  }
  .company-tbl td {
    padding: 16px;
  }
}
/******************************
　top-case
******************************/
.top-case {
  padding: 120px 0;
}
.top-case .inr {
  max-width: 965px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .top-case {
    padding: 50px 0;
  }
}

.case-wrap {
  gap: 20px;
}
.case-wrap .case-item {
  flex: 1 1 calc(50% - 20px);
  background: #F4F9FE;
  border-radius: 16px;
}
.case-wrap .case-item img {
  border-radius: 16px 16px 0 0;
}
.case-wrap .case-item .sub-ttl {
  text-align: left;
  margin-bottom: 15px;
}

.case-txt {
  padding: 32px;
}

.case-type {
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: bold;
  background: #1887D0;
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 0.5rem;
  margin-bottom: 8px;
  padding: 6px 16px;
}
@media screen and (max-width: 767px) {
  .case-type {
    font-size: 3.7333333333vw;
  }
}

.case-more {
  padding: 15px 24px;
  background: #fff;
  border-radius: 16px;
}
@media screen and (min-width: 768px) {
  .case-more .base-list li {
    list-style-type: disc;
    text-indent: -1.2em;
    padding-left: 1.2em;
  }
}

.case-more-ttl {
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 8px;
  color: #1887D0;
}

.case-more.before {
  margin-bottom: 16px;
}
.case-more.before .case-more-ttl {
  color: #0A1727;
}

.case-more.after {
  position: relative;
  margin-bottom: 62px;
}
.case-more.after::after {
  content: "";
  position: absolute;
  bottom: -46px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 18.5px solid transparent;
  border-right: 18.5px solid transparent;
  border-top: 26px solid #b2d7f0;
}

.case-result {
  height: 72px;
  background: #1887D0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
}

.result-txt {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
  background: url(../img/ico_case.svg) no-repeat center left/24px;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 32px;
}
.result-txt small {
  font-size: 0.875rem;
}

@media screen and (max-width: 767px) {
  .case-wrap {
    gap: 20px;
  }
  .case-wrap .case-item {
    flex: 1 1 100%;
  }
  .case-wrap .case-item img {
    border-radius: 16px 16px 0 0;
  }
  .case-wrap .case-item .sub-ttl {
    text-align: left;
    margin-bottom: 15px;
  }
  .case-txt {
    padding: 32px 24px;
  }
  .case-result {
    min-height: 72px;
    height: 100%;
    padding: 10px 15px;
  }
  .result-txt {
    font-size: 4.2666666667vw;
  }
}
.top-case .sub-mail .mail-topic {
  background: #1887D0;
  color: #fff;
}
.top-case .sub-mail .mail-topic::after {
  border-top: 19px solid #1887D0;
}

/******************************
　top-faq
******************************/
.top-faq {
  padding: 120px 0;
  background: #E9F8FF;
}
.top-faq .inr {
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .top-faq {
    padding: 50px 0;
  }
}

.accordion {
  position: relative;
  width: 100%;
}

.accordion-title {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 1rem;
  line-height: 1.5;
  padding: 24px 40px 24px 24px;
}
@media screen and (max-width: 767px) {
  .accordion-title {
    font-size: 3.7333333333vw;
    padding: 24px 50px 24px 24px;
  }
}
.accordion-title::before {
  content: "Q";
  display: flex;
  justify-content: center;
  color: #1887D0;
  font-size: 1.5rem;
  font-family: "Be Vietnam Pro";
  line-height: 1;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
  margin-right: 16px;
}
@media screen and (max-width: 767px) {
  .accordion-title::before {
    font-size: 5.3333333333vw;
  }
}

.accordion-content {
  display: none;
  padding: 0 24px 24px;
}

.faq-txt {
  position: relative;
  display: flex;
  align-items: flex-start;
  line-height: 1.5;
}
.faq-txt::before {
  content: "A";
  display: flex;
  justify-content: center;
  color: #DC3131;
  font-size: 1.5rem;
  font-family: "Be Vietnam Pro";
  line-height: 1.5;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
  margin-right: 16px;
}
@media screen and (max-width: 767px) {
  .faq-txt::before {
    font-size: 5.3333333333vw;
  }
}
.faq-txt p {
  padding-top: 8px;
}
@media screen and (max-width: 767px) {
  .faq-txt p {
    font-size: 3.7333333333vw;
    line-height: 1.5;
    padding-top: 2px;
  }
}
.faq-txt strong {
  font-weight: bold;
}
.faq-txt .base-list li {
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .faq-txt .base-list li {
    list-style-type: disc;
    text-indent: -1.2em;
    padding-left: 1.2em;
  }
}

/* コンテンツボックス */
.accordion-item {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 24px;
}

/* 矢印 */
.accordion-title {
  position: relative;
}

.accordion-title::after {
  border-right: solid 2px #1887D0;
  border-top: solid 2px #1887D0;
  content: "";
  display: block;
  height: 8px;
  position: absolute;
  right: 25px;
  top: 38%;
  transform: rotate(135deg);
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  width: 8px;
}
@media screen and (max-width: 767px) {
  .accordion-title::after {
    right: 35px;
  }
}

.accordion-title.open::after {
  top: 45%;
  transform: rotate(-45deg);
}

/******************************
　top-contact
******************************/
.top-contact {
  padding: 120px 0;
}
.top-contact .inr {
  max-width: 636px;
  margin: 0 auto;
}
.top-contact em {
  font-size: 0.875rem;
  vertical-align: super;
  font-style: normal;
  color: #DC3131;
}
@media screen and (max-width: 767px) {
  .top-contact {
    padding: 50px 0;
  }
}

.contact-note {
  text-align: center;
  line-height: 1.7;
}
.contact-note em {
  font-size: 100%;
  vertical-align: baseline;
}
@media screen and (max-width: 767px) {
  .contact-note {
    font-size: 3.7333333333vw;
  }
}

/*ContactForm7カスタマイズ*/
table.CF7_table {
  width: 100%;
  margin: 0 auto;
}

.single .entry-content table.CF7_table,
.page .entry-content table.CF7_table {
  display: table;
}

/*入力欄*/
.CF7_table input, .CF7_table textarea {
  font-size: 16px;
  line-height: 1.5;
  width: 100%;
  border: 1px solid #AAAAAA;
  border-radius: 8px;
  padding: 10px;
}

.CF7_table textarea {
  min-height: 169px;
}

/*「必須」文字*/
.CF7_req {
  font-size: 0.9em;
  padding: 5px;
  background: #f79034; /*オレンジ*/
  color: #fff;
  border-radius: 3px;
  margin-right: 1em;
}

/*「任意」文字*/
.CF7_unreq {
  font-size: 0.9em;
  padding: 5px;
  background: #bdbdbd; /*グレー*/
  color: #fff;
  border-radius: 3px;
  margin-right: 1em;
}

.CF7_table tr, .CF7_table td, .CF7_table th {
  display: block;
  width: 100%;
  line-height: 2.5em;
}

.CF7_table tr {
  margin-bottom: 25px;
}

/* タイトル列 */
.CF7_table th {
  font-weight: normal;
  text-align: left;
}

/* レスポンシブ */
@media screen and (max-width: 767px) {
  table.CF7_table {
    width: 95%;
  }
}
/* 「送信する」ボタン */
.CF7_btn {
  text-align: center;
  line-height: 1;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .CF7_btn {
    margin-bottom: 8vw;
  }
}
.CF7_btn [type=submit] {
  font-size: 1rem;
  font-weight: 700;
  width: 320px;
  height: 49px;
  background: #FF842B;
  box-shadow: 0 4px 0 #B66A00;
  border: none;
  border-radius: 8px;
  color: #fff;
  text-align: center;
  margin: 0 auto;
  position: relative;
  cursor: pointer;
  top: 0;
  transition: 0.2s ease-in-out;
}
.CF7_btn [type=submit]:hover {
  top: 4px;
  box-shadow: 0 0 #4C0F13;
  /* 影を0pxにする */
}

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

.grecaptcha-badge {
  visibility: hidden;
}

.recaptcha-txt {
  color: #bebebe;
}
.recaptcha-txt a {
  color: #bebebe;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .recaptcha-txt {
    font-size: 3.2vw;
    text-align: center;
  }
}

/******************************
　footer
******************************/
footer {
  grid-row-start: 2;
  grid-row-end: 3;
  border-top: solid 1px #BEBEBE;
  padding: 18px 0 20px;
}
@media screen and (max-width: 767px) {
  footer {
    padding: 32px 0;
  }
}

.footer__inner {
  max-width: 1380px;
  align-items: center;
  margin: 0 auto;
  padding: 0 10px;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    padding: 0 7%;
  }
}

.ft-left {
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .ft-left {
    gap: 20px;
    margin-bottom: 28px;
  }
}

.ft-logo {
  line-height: 1;
  max-width: 145px;
}
.ft-logo a {
  transition: 0.3s;
}
.ft-logo a:hover {
  opacity: 0.5;
}

.ft-nav {
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .ft-nav {
    width: 100%;
  }
}
.ft-nav li a {
  font-size: 0.75rem;
  color: #333;
  transition: 0.3s;
  background: url(../img/ico_link.svg) no-repeat center right/13px;
  padding-right: 17px;
}
.ft-nav li a:hover {
  opacity: 0.5;
}

.ft-copy p {
  font-size: 0.75rem;
}
@media screen and (max-width: 767px) {
  .ft-copy {
    text-align: center;
    width: 100%;
  }
}

/******************************
　固定ボタン
******************************/
/****サイド****/
.side-btn {
  position: fixed;
  right: 0;
  bottom: 5%;
}
.side-btn a {
  font-size: 1.25rem;
  letter-spacing: 2px;
  font-weight: 500;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: #fff;
  background: #FF842B;
  padding: 20px 15px;
  transition: 0.2s;
  border-top: 3px solid #FFF;
  border-bottom: 3px solid #FFF;
  border-left: 3px solid #FFF;
  border-radius: 0.5rem 0 0 0.5rem;
}
.side-btn a:hover {
  opacity: 0.5;
}
.side-btn a span {
  background: url(../img/ico_mail.svg) no-repeat top center/contain;
  padding-top: 30px;
}

/****画面下****/
.btm-btn {
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.2);
  padding: 16px 0;
}
.btm-btn .mail-btn a {
  font-size: 16px;
  height: 50px;
}
.btm-btn .mail-btn a span {
  line-height: 50px;
  background: url(../img/ico_mail.svg) no-repeat center left/20px;
  padding-left: 30px;
}

/****サンクスページ****/
.conatct-thanks {
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .conatct-thanks {
    margin-top: 60px;
  }
}/*# sourceMappingURL=style.css.map */