@charset "UTF-8";
:root {
  --primary-color: #1f3b9e;
  --primary-color-light: #c1dbff;
  --primary-color-dark: #4566da;
  --secondary-color: #c3ecfc;
  --color-katekyo: #1f3b9e;
  --color-online: #e5013b;
  --color-kobekyo: #4291f7;

  --accent-color: #fff995;
  --background-color: #ffffff;
  --background-color-secondary: #c3ecfc;
  --text-color: #1e2b5a;
  --text-color-secondary: #ffffff;

  --Zen-Maru: 'Zen Maru Gothic', sans-serif;
  --Noto-Sans-JP: Noto Sans JP, Hiragino Sans, Meiryo, sans-serif;
  --Roboto: 'Roboto', sans-serif;

  --shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
body {
  background-color: var(--background-color);
  color: var(--text-color);
}
main {
  font-family: var(--Zen-Maru);
}
#main img {
  display: block;
  margin: auto;
}
@media (any-hover: hover) {
  main a {
    opacity: 1;
    transition: all ease 0.3s;
    cursor: pointer;
  }
  main a:hover {
    opacity: 0.7;
  }
}

/*============================
  common
============================*/
.pc {
  display: none;
}
.sp {
  display: block;
}
section[id] {
  position: relative;
}
.layout-inner {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 0px 15px;
}
.--text-highlight {
  background: linear-gradient(transparent 50%, var(--accent-color) 60%);
}
.--text-center {
  text-align: center;
}
.--text-left {
  text-align: left;
}
.--text-right {
  text-align: right;
}
.--rounded-rectangle {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--secondary-color-light);
  color: var(--text-color);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.6;
  text-align: center;
  width: 100%;
  border-radius: 50px;
  padding: 4px 0;
}
@media (min-width: 1025px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
  .layout-inner {
    max-width: 1000px;
    /* max-width: 1065px;
    padding: 0; */
    padding: 0;
  }
}

/*============================
  CTA
============================*/
.cv-area {
  padding: 25px 0 40px;
}
.cv-area .layout-inner {
}
.cv-area .cv-area__content {
}
.cv-area .cv-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.cv-area .cv-item {
  position: relative;
}
.cv-area .cv-title {
  transform: translateY(10px);
}
.cv-area .cv-title-img {
}
.cv-area .cv-btn-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  max-width: 85%;
  margin: auto;
  /* transform: translateY(-20px); */
}
.cv-area .cv-item:nth-child(4) .cv-btn-wrap {
  gap: 5px;
  max-width: 90%;
  padding-top: 10px;
}
.cv-area .cv-btn__title {
  width: 50%;
}
.cv-area .cv-btn__link {
  width: 50%;
}
.cv-area .cv-btn__title-img {
}
.cv-area .cv-notes {
  font-size: 10px;
}
/* telボタン */
.cv-area .cv-tel-btn {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: normal;
  text-align: center;
  text-decoration: none;
  border-radius: 12px;
  width: 60%;
  filter: drop-shadow(1px 2px 3px rgba(0, 0, 0, 0.4));
}
.cv-area .cv-tel-btn__bg-img {
  width: 100%;
}
.cv-area .cv-tel-btn__number {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-size: min(calc(30 / 767 * 100vw), 30px);
  font-weight: 700;
  line-height: 1;
  color: var(--text-color-secondary);
  text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.5);
}
.cv-area .cv-tel-btn__text {
  position: absolute;
  bottom: 6%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  font-size: min(calc(10 / 767 * 100vw), 10px);
  color: var(--text-color-secondary);
}
.cv-area .cv-tel-btn__icon--before {
  position: absolute;
  top: 50%;
  left: 4%;
  transform: translateY(-50%);
  width: min(calc(45 / 767 * 100vw), 45px);
  aspect-ratio: 1 / 1;
}
.cv-area .cv-tel-btn__icon--after {
  position: absolute;
  top: 50%;
  right: 6%;
  transform: translateY(-50%);
  width: min(calc(26 / 767 * 100vw), 26px);
  aspect-ratio: 1/1;
}

@media (min-width: 1025px) {
  .cv-area {
    padding: 43px 0;
  }
  .cv-area .cv-btn-wrap {
    gap: 15px;
    max-width: 530px;
  }
  .cv-area .cv-item:nth-child(4) .cv-btn-wrap {
    gap: 10px;
    max-width: 500px;
  }
  .cv-area .cv-notes {
    font-size: 10px;
    text-align: right;
  }
  /* telボタン */
  .cv-area .cv-tel-btn__bg-img {
    width: 100%;
  }
  .cv-area .cv-tel-btn__number {
    font-size: 24px;
  }
  .cv-area .cv-tel-btn__text {
    font-size: 8px;
  }
  .cv-area .cv-tel-btn__icon--before {
    width: 36px;
  }
  .cv-area .cv-tel-btn__icon--after {
    width: 26px;
  }
}

/*============================
#mainvisual
============================*/
#mainvisual {
  width: 100%;
  height: auto;
  text-align: center;
}
#mainvisual h1 {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

/*============================
#consideration
============================*/
#consideration {
  background-color: var(--primary-color-light);
  /* padding: 40px 0 260px; */
  padding: 40px 0 0;
  clip-path: polygon(0 0, 100% 0%, 100% 94%, 50% 100%, 0 94%);
}
#consideration .consideration__content {
  font-weight: 900;
  line-height: 1.6;
}
#consideration .consideration__title {
  font-size: 18px;
  font-weight: 900;
  text-align: center;
}
#consideration .consideration__title .--fz-lg {
  font-size: 30px;
}
#consideration .consideration__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}
#consideration .consideration__item {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  background: #fff;
  border: 2px solid #398bfd;
  border-radius: 20px;
  text-align: center;
  padding: 15px 10px;
  box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.26);
}
#consideration .consideration__img {
  /* position: absolute; */
  bottom: 0;
  left: 50%; /* transform: translate(-50% ,10%); */
  transform: translateY(9%);
  width: 85%;
}

@media (min-width: 1025px) {
  #consideration {
    background-color: var(--primary-color-light);
    padding: 50px 0 0;
    clip-path: polygon(0 0, 100% 0%, 100% 92%, 50% 100%, 0 92%);
  }
  #consideration .consideration__content {
    font-weight: 900;
    line-height: 1.6;
  }
  #consideration .consideration__title {
    font-size: 34px;
    margin-bottom: 20px;
  }
  #consideration .consideration__title .--fz-lg {
    font-size: 48px;
  }
  #consideration .consideration__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
  }
  #consideration .consideration__item {
    /* display: flex; */
    /* justify-content: center; */
    /* align-items: center; */
    font-size: 20px;
    /* background: #fff; */
    /* border: 2px solid #398bfd; */
    /* border-radius: 20px; */
    /* text-align: center; */
    padding: 20px;
  }
  #consideration .consideration__img {
    /* position: absolute; */
    bottom: 0;
    left: 50%;
    /* transform: translate(-50% ,10%); */
    transform: translateY(10%);
    width: 85%;
  }
}

/*============================
#advice
============================*/
#advice {
  padding: 0px 0 40px;
}
#advice .advice__content {
  font-weight: 900;
  line-height: 1.6;
}
#advice .advice__content-img {
}
/* merit */
#advice .merit-section {
}
#advice .merit__title {
  font-size: 20px;
  text-align: center;
}
#advice .merit__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}
#advice .merit__item {
  display: flex;
  align-items: center;
  gap: 20px;
}
#advice .merit__item-img {
  width: 90px;
  aspect-ratio: 1/1;
}
#advice .merit__item-text {
}
#advice .merit__item-title {
  font-size: 18px;
  text-align: center;
  background-image: linear-gradient(to right, var(--color-kobekyo), var(--color-kobekyo) 9px, transparent 2px, transparent 5px);
  background-size: 12px 2px;
  background-position: bottom;
  background-repeat: repeat-x;
  padding-bottom: 3px;
}
#advice .merit__item-description {
  font-size: 14px;
  font-weight: 400;
  margin-top: 15px;
}
/* result */
#advice .result-section {
}
#advice .result-arrow {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  text-align: center;
  padding: 20px 0 30px;
}
#advice .result-arrow::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  border-style: solid;
  border-width: 40px 100px 0 100px;
  border-color: var(--primary-color-light) transparent transparent transparent;
  z-index: -1;
}
#advice .result__description {
  font-size: 18px;
  text-align: center;
}
#advice .result__img {
  max-width: 30%;
  margin-top: 20px;
}
#advice .result__list {
  display: flex;
  margin: 20px 0;
}
#advice .result__item {
}
#advice .result__item-img {
}

@media (min-width: 1025px) {
  #advice {
    padding: 0px 0 40px;
  }
  #advice .advice__content {
    font-weight: 900;
    line-height: 1.6;
  }
  #advice .advice__content-img {
  }
  /* merit */
  #advice .merit-section {
  }
  #advice .merit__title {
    font-size: 40px;
    /* text-align: center; */
  }
  #advice .merit__list {
    /* display: flex; */
    /* flex-direction: column; */
    gap: 20px;
    /* margin-top: 30px; */
    max-width: 750px;
    margin: 30px auto 0;
  }
  #advice .merit__item {
    /* display: flex; */
    /* align-items: center; */
    gap: 50px;
  }
  #advice .merit__item-img {
    width: 197px;
    /* aspect-ratio: 1/1; */
  }
  #advice .merit__item-text {
  }
  #advice .merit__item-title {
    font-size: 30px;
    /* text-align: center; */
    background-image: linear-gradient(to right, var(--color-kobekyo), var(--color-kobekyo) 9px, transparent 2px, transparent 5px);
    background-size: 12px 2px;
    /* background-position: bottom; */
    /* background-repeat: repeat-x; */
    padding-bottom: 5px;
    margin-bottom: 15px;
  }
  #advice .merit__item-description {
    font-size: 18px;
    /* font-weight: 400; */
    margin-top: 0;
  }
  /* result */
  #advice .result-section {
    max-width: 750px;
    margin: auto;
  }
  #advice .result-arrow {
    /* position: relative; */
    /* display: flex; */
    /* justify-content: center; */
    /* align-items: center; */
    font-size: 36px;
    /* text-align: center; */
    padding: 20px 0 30px;
  }
  #advice .result-arrow::after {
    /* content: ''; */
    /* position: absolute; */
    /* top: 50%; */
    /* left: 50%; */
    /* transform: translate(-50%, -50%); */
    /* display: inline-block; */
    /* border-style: solid; */
    border-width: 60px 160px 0 160px;
    /* border-color: var(--primary-color-light) transparent transparent transparent; */
    /* z-index: -1; */
  }
  #advice .result__description {
    font-size: 40px;
    /* text-align: center; */
  }
  #advice .result__img {
    max-width: 25%;
    margin-top: 30px;
  }
  #advice .result__list {
    display: flex;
    margin: 20px 0;
  }
  #advice .result__item {
  }
  #advice .result__item-img {
  }
}

/*============================
#point
============================*/
#point {
  /* background: var(--secondary-color); */
  padding: 0 0 40px;
}
#point .point__title {
  margin: 0 calc(50% - 50vw); /* padding: 0 calc(50vw - 50%); */
  width: 100vw; /* background: var(--primary-color); */
}
#point .point__title-img {
}
#point .layout-inner {
}
#point .point__content {
}
#point .point__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 30px;
}
#point .point__item {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 20px;
  border: 2px solid var(--primary-color);
  border-radius: 20px;
  padding: 40px 20px 20px;
}
#point .point__item-label {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--primary-color);
  color: var(--text-color-secondary);
  font-size: 18px;
  font-weight: 700;
  width: 200px;
  border-radius: 50px;
  padding: 2px 0;
}
#point .point__item-text {
  /* width: 100%; */
  text-align: center;
}
#point .point__item-title {
  font-size: 24px;
  /* text-align: center; */
}
#point .point__item-description {
  font-size: 16px;
  font-weight: 700;
  margin-top: 5px;
  /* text-align: center; */
}
#point .point__item-img {
  max-width: 65%;
}
#point .point__item:nth-child(3) .point__item-img {
  max-width: 30%;
}

@media (min-width: 1025px) {
  #point {
    /* background: var(--secondary-color); */
    padding: 0 0 40px;
  }
  #point .point__title {
    margin: 0 calc(50% - 50vw);
    /* padding: 0 calc(50vw - 50%); */
    width: 100vw;
    background: var(--primary-color);
  }
  #point .point__title-img {
    max-width: 750px;
    /* width: 90%; */
  }
  #point .layout-inner {
    max-width: 750px;
  }
  #point .point__content {
    /* width: 90%; */
    /* margin: auto; */
  }
  #point .point__list {
    /* display: flex; */
    /* flex-direction: column; */
    gap: 40px;
    margin-top: 40px;
  }
  #point .point__item {
    /* position: relative; */
    /* display: flex; */
    flex-direction: row;
    /* align-items: center; */
    gap: 20px;
    border: 3px solid var(--primary-color);
    border-radius: 30px;
    padding: 40px 50px 20px;
  }
  #point .point__item-label {
    /* position: absolute; */
    top: -17px;
    /* left: 50%; */
    /* transform: translateX(-50%); */
    /* display: flex; */
    /* justify-content: center; */
    /* align-items: center; */
    /* background: var(--primary-color); */
    /* color: var(--text-color-secondary); */
    font-size: 20px;
    /* font-weight: 700; */
    width: 300px;
    /* border-radius: 50px; */
    padding: 3px 0;
  }
  #point .point__item-text {
    /* width: 100%; */
    flex: 1 0 auto;
    text-align: left;
  }
  #point .point__item-title {
    font-size: 30px;
    /* text-align: left; */
  }
  #point .point__item-description {
    font-size: 22px;
    /* font-weight: 700; */
    /* margin-top: 5px; */
    /* text-align: left; */
  }
  #point .point__item-img {
    max-width: 38%;
  }
  #point .point__item:nth-child(3) .point__item-img {
    max-width: 30%;
    padding-right: 40px;
  }
}

/*============================
#support
============================*/
#support {
  background: var(--primary-color);
  padding: 40px 0;
}
#support .support__title {
  margin-bottom: 20px;
}
#support .support__content {
  background: var(--background-color);
  border-radius: 50px;
  padding: 20px;
}
#support .support__content-title {
  font-size: 20px;
  text-align: center;
}
#support .support__content-title:nth-of-type(2) {
  margin-top: 20px;
}
#support .support__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 20px 0;
}
#support .support__item {
}
#support .support__item-header {
  display: flex;
  flex-direction: column-reverse;
  gap: 25px;
}
#support .support__item-header-img {
  max-width: 160px;
}
#support .support__item-header-title {
  position: relative;
  background: var(--primary-color-light);
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  border-radius: 10px;
  padding: 10px;
}
#support .support__item-header-title::after {
  content: '';
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color-light);
  width: 20px;
  aspect-ratio: 1/1;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}
#support .support__item-body {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
#support .support__item-body-img {
  max-width: 30px;
}
#support .support__item-body-text {
  /* max-width: 85%; */
  flex: 1;
}
#support .cv-btn-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid;
  border-radius: 100px;
  padding: 14px 24px 8px;
  box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.36);
}
#support .support__item:nth-child(1) .cv-btn-wrap {
  border-color: var(--color-katekyo);
}
#support .support__item:nth-child(2) .cv-btn-wrap {
  border-color: var(--color-online);
}
#support .support__item:nth-child(3) .cv-btn-wrap {
  border-color: var(--color-kobekyo);
}
#support .cv-btn__title {
  max-width: 160px;
}
#support .cv-btn__title-img {
}
#support .cv-btn__link {
  max-width: 200px;
}
#support .cv-btn__link-img {
}
#support .cv-notes {
  font-size: 10px;
}
/* environment */
#support .environment__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}
#support .environment__item {
}
#support .environment__item-img {
  max-width: 50%;
  aspect-ratio: 1/1;
  object-fit: contain;
}
#support .environment__item-description {
  font-size: 14px;
  font-weight: 700;
  margin-top: 10px;
  text-align: center;
}

@media (min-width: 1025px) {
  #support {
    background: var(--primary-color);
    padding: 50px 0 80px;
  }
  #support .support__title {
    /* margin-bottom: 20px; */
    max-width: 750px;
    margin: 0 auto 40px;
    /* width: 90%; */
    /* margin: 0 auto 20px; */
  }
  #support .support__content {
    background: var(--background-color);
    border-radius: 80px;
    padding: 40px 50px 50px;
  }
  #support .support__content-title {
    font-size: 38px;
    /* text-align: center; */
  }
  #support .support__content-title:nth-of-type(2) {
    margin-top: 20px;
  }
  #support .support__list {
    /* display: flex; */
    /* flex-direction: column; */
    gap: 60px;
    margin: 40px 0;
  }
  #support .support__item {
  }
  #support .support__item-header {
    /* display: flex; */
    flex-direction: row;
    gap: 10px;
  }
  #support .support__item-header-img {
    /* max-width: 180px; */
    max-height: 100px;
    object-fit: contain;
  }
  #support .support__item-header-title {
    /* position: relative; */
    /* background: var(--primary-color-light); */
    /* color: var(--primary-color); */
    font-size: 30px;
    /* font-weight: 700; */
    /* text-align: center; */
    border-radius: 20px;
    padding: 15px;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 75px;
    max-width: 80%;
  }
  #support .support__item-header-title::after {
    /* content: ''; */
    /* position: absolute; */
    bottom: -20px;
    left: 28px;
    transform: unset;
    /* background: var(--primary-color-light); */
    width: 45px;
    aspect-ratio: 3/2;
    /* clip-path: polygon(0 0, 50% 100%, 100% 0); */
    clip-path: polygon(8% 0, 0 100%, 100% 0);
  }
  #support .support__item-body {
    display: flex;
    gap: 10px;
    margin-top: 5px;
  }
  #support .support__item-body-img {
    max-width: 70px;
  }
  #support .support__item-body-text {
    max-width: 80%;
    /* flex: 1; */
  }
  #support .cv-btn-wrap {
    /* display: flex; */
    flex-direction: row;
    /* justify-content: center; */
    /* align-items: center; */
    gap: 30px;
    /* background: #fff; */
    border: 2px solid;
    /* border-radius: 100px; */
    padding: 8px 25px 8px 65px;
    /* box-shadow: 2px 3px 4px rgba(0, 0, 0, 0.36); */
  }
  #support .support__item:nth-child(1) .cv-btn-wrap {
    /* border-color: var(--color-katekyo); */
  }
  #support .support__item:nth-child(2) .cv-btn-wrap {
    /* border-color: var(--color-online); */
  }
  #support .support__item:nth-child(3) .cv-btn-wrap {
    /* border-color: var(--color-kobekyo); */
  }
  #support .cv-btn__title {
    max-width: 100%;
  }
  #support .cv-btn__title-img {
  }
  #support .cv-btn__link {
    max-width: 100%;
    padding-top: 10px;
  }
  #support .cv-btn__link-img {
  }
  #support .cv-notes {
    font-size: 14px;
    text-align: right;
  }
  /* environment */
  #support .environment__list {
    /* display: grid; */
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
  }
  #support .environment__item {
  }
  #support .environment__item-img {
    max-width: 100%;
    /* aspect-ratio: 1/1; */
    /* object-fit: contain; */
  }
  #support .environment__item-description {
    font-size: 20px;
    /* font-weight: 700; */
    margin-top: 20px;
    /* text-align: center; */
  }
}

/*============================
#case
============================*/
#case {
  padding: 40px 0 0;
}
#case .layout-inner {
}
#case .case__content {
}
#case .case__title-label {
  display: block;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50px;
  padding: 5px 40px;
  margin: auto;
  text-align: center;
  max-width: 300px;
  font-size: 16px;
  font-weight: 700;
}
#case .case__title {
  color: var(--primary-color);
  text-align: center;
  font-size: 24px;
  margin-top: 10px;
}
#case .case__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 30px 0;
}
#case .case__item {
}
#case .case__item-title {
  font-size: 18px;
  color: var(--primary-color);
  font-weight: 700;
  text-align: center;
}
#case .case__item-body {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
}
#case .case__item-body-img {
  max-width: 120px;
}
#case .case__item-body-description {
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 700;
}
#case .case__arrow {
  position: relative;
  height: 35px;
}
#case .case__arrow::before,
#case .case__arrow::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 35px;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}
#case .case__arrow::before {
  background: var(--primary-color-light);
}
#case .case__arrow::after {
  background: var(--background-color);
  top: 20%;
}
#case .case__arrow--text {
  position: relative;
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}
#case .case__arrow--text::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--primary-color-light);
  width: 40px;
  height: 20px;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  z-index: -1;
}
#case .case__message {
  color: var(--primary-color);
  text-align: center;
  font-size: 24px;
  margin: 20px 0;
}
#case .additionally__list {
  margin: 20px 0;
}
#case .additionally__item {
  display: flex;
  align-items: center;
  gap: 20px;
}
#case .additionally__item:nth-child(2) {
  flex-direction: row-reverse;
}
#case .additionally__item-img {
  width: 50%;
}
#case .additionally__item-description {
  width: 50%;
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

@media (min-width: 1025px) {
  #case {
    padding: 100px 0 0;
  }
  #case .layout-inner {
    /* max-width: 750px; */
  }
  #case .case__content {
    max-width: 750px;
    margin: auto;
  }
  #case .case__title-label {
    /* display: block; */
    /* background: var(--primary-color); */
    /* color: #fff; */
    /* border-radius: 50px; */
    /* padding: 5px 40px; */
    /* margin: auto; */
    /* text-align: center; */
    max-width: 360px;
    font-size: 20px;
  }
  #case .case__title {
    color: var(--primary-color);
    text-align: center;
    font-size: 40px;
    margin-top: 10px;
    line-height: 1.4;
  }
  #case .case__list {
    /* display: flex; */
    /* flex-direction: column; */
    gap: 50px;
    margin: 30px 0 70px;
  }
  #case .case__item {
  }
  #case .case__item-title {
    font-size: 30px;
    /* color: var(--primary-color); */
    /* font-weight: 700; */
    /* text-align: center; */
  }
  #case .case__item-body {
    /* display: flex; */
    /* align-items: center; */
    gap: 100px;
    margin-top: 20px;
  }
  #case .case__item-body-img {
    max-width: 250px;
  }
  #case .case__item-body-description {
    /* color: var(--primary-color); */
    font-size: 22px;
    /* font-weight: 700; */
  }
  #case .case__arrow {
    position: relative;
    height: 75px;
  }
  #case .case__arrow::before,
  #case .case__arrow::after {
    /* content: ''; */
    /* position: absolute; */
    /* top: 50%; */
    /* left: 50%; */
    /* transform: translate(-50%, -50%); */
    width: 750px;
    height: 75px;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
  }
  #case .case__arrow::before {
    /* background: var(--primary-color-light); */
  }
  #case .case__arrow::after {
    /* background: var(--background-color); */
    /* top: 20%; */
  }
  #case .case__arrow--text {
    /* position: relative; */
    /* color: var(--primary-color); */
    font-size: 30px;
    /* font-weight: 700; */
    /* text-align: center; */
  }
  #case .case__arrow--text::after {
    /* content: ''; */
    /* position: absolute; */
    /* top: 50%; */
    /* left: 50%; */
    /* transform: translate(-50%, -50%); */
    /* background: var(--primary-color-light); */
    width: 60px;
    height: 30px;
    /* clip-path: polygon(0 0, 50% 100%, 100% 0); */
    /* z-index: -1; */
  }
  #case .case__message {
    /* color: var(--primary-color); */
    /* text-align: center; */
    font-size: 40px;
    margin: 20px 0;
  }
  #case .additionally__list {
    margin: 30px 0;
  }
  #case .additionally__item {
    /* display: flex; */
    /* align-items: center; */
    /* gap: 20px; */
  }
  #case .additionally__item:nth-child(2) {
    flex-direction: row-reverse;
  }
  #case .additionally__item-img {
    /* width: 50%; */
  }
  #case .additionally__item-description {
    /* width: 50%; */
    /* color: var(--primary-color); */
    font-size: 30px;
    /* font-weight: 700; */
    /* text-align: center; */
  }
}

/*============================
#faq
============================*/
#faq {
  padding: 20px 0 40px;
}
#faq .faq__content .faq__title {
  background: var(--primary-color-dark);
  color: var(--text-color-secondary);
  font-size: 20px;
  text-align: center;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  padding: 8px;
}
#faq .faq__content .faq__item {
  margin-top: 20px;
}
#faq .faq__content .faq__item-question,
#faq .faq__content .faq__item-answer {
  display: flex;
  gap: 30px;
}
#faq .faq__content .faq__item-question {
  margin-bottom: 10px;
  justify-content: start;
}
#faq .faq__content .faq__item-question-img,
#faq .faq__content .faq__item-answer-img {
  max-width: 30px;
  flex: 1 0 auto;
}
#faq .faq__content .faq__item-question-text,
#faq .faq__content .faq__item-answer-text {
  font-size: 12px;
  font-weight: 500;
}
#faq .faq__content .faq__item-question-text .--fz-xl,
#faq .faq__content .faq__item-answer-text .--fz-xl {
  font-size: 16px;
  font-weight: 800;
}
#faq .faq__notes {
  font-size: 10px;
}

@media (min-width: 1025px) {
  #faq {
    padding: 40px 0 50px;
  }
  #faq .faq__content .faq__title {
    /* width: 50%; */
    font-size: 40px;
  }
  #faq .faq__content .faq__list {
    width: 90%;
    margin: 60px auto 0;
  }
  #faq .faq__content .faq__item {
    margin-top: 40px;
  }
  #faq .faq__content .faq__item-question,
  #faq .faq__content .faq__item-answer {
    display: flex;
    gap: 30px;
  }
  #faq .faq__content .faq__item-question-img,
  #faq .faq__content .faq__item-answer-img {
    max-width: 45px;
  }
  #faq .faq__content .faq__item-question-text,
  #faq .faq__content .faq__item-answer-text {
    font-size: 16px;
    font-weight: 500;
  }
  #faq .faq__content .faq__item-question-text .--fz-xl,
  #faq .faq__content .faq__item-answer-text .--fz-xl {
    font-size: 20px;
    font-weight: 800;
  }
}

/*============================
#flow
============================*/
#flow {
  background: var(--secondary-color);
  padding: 50px 0 40px;
}
#flow .flow__content {
  font-family: var(--Noto-Sans-JP);
  position: relative;
  background: var(--background-color);
  padding: 30px 15px 0;
  background-size: 240px auto;
  background-position: right -20px bottom;
  border-radius: 10px;
}
#flow .flow__title {
  font-family: var(--Zen-Maru);
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  font-size: 20px;
  font-weight: 700;
  background: var(--secondary-color);
  color: var(--text-color);
  border: 2px solid #fff;
  text-align: center;
}
#flow .flow__content .flow__list {
  position: relative;
  list-style: none;
}
#flow .flow__content .flow__list::before {
  content: '';
  position: absolute;
  top: 0;
  left: 22px;
  width: 0;
  height: calc(100% - 60px);
  border-left: 6px dotted #6c7490;
}
#flow .flow__content .flow__item {
  position: relative;
  padding: 10px 0 30px 60px;
}
#flow .flow__content .flow__item-num {
  font-family: var(--Roboto);
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--text-color);
  border-radius: 50%;
  color: var(--text-color-secondary);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  width: 50px;
  aspect-ratio: 1/1;
}
#flow .flow__content .flow__item-num .--fz-xl {
  font-size: 2.4rem;
}
#flow .flow__content .flow__item-title {
  font-size: 20px;
  font-weight: 900;
}
#flow .flow__content .flow__item-text {
  font-size: 14px;
}
#flow .flow__content .flow__item-cta-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
}
#flow .flow__content .flow__item-cta {
  padding: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 90%;
}
#flow .flow__content .flow__item-cta-wrap .flow__item-cta {
  padding: 0;
}
#flow .flow__content .flow__item-cta .flow__item-cta-head {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}
#flow .flow__content .flow__item.--sub {
  padding: 10px 0 10px 60px;
}
#flow .flow__content .flow__item.--sub:nth-of-type(5) {
  margin-bottom: 20px;
}
#flow .flow__content .flow__item.--sub::before {
  content: '';
  position: absolute;
  top: 13px;
  left: 16px;
  width: 18px;
  height: 18px;
  background: var(--text-color);
  border-radius: 50%;
}
#flow .flow__content .flow__item.--sub .flow__item-title {
  font-size: 16px;
}
/* telボタン */
#flow .cv-tel-btn {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: normal;
  text-align: center;
  text-decoration: none;
  border-radius: 12px;
  width: 100%;
  filter: drop-shadow(1px 2px 3px rgba(0, 0, 0, 0.4));
}
#flow .cv-tel-btn__bg-img {
  width: 100%;
}
#flow .cv-tel-btn__number {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-size: min(calc(35 / 767 * 100vw), 35px);
  font-weight: 700;
  line-height: 1;
  color: var(--text-color-secondary);
  text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.5);
}
#flow .cv-tel-btn__text {
  position: absolute;
  bottom: 6%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  font-size: min(calc(12 / 767 * 100vw), 12px);
  color: var(--text-color-secondary);
}
#flow .cv-tel-btn__icon--before {
  position: absolute;
  top: 50%;
  left: 4%;
  transform: translateY(-50%);
  width: min(calc(56 / 767 * 100vw), 56px);
  aspect-ratio: 1 / 1;
}
#flow .cv-tel-btn__icon--after {
  position: absolute;
  top: 50%;
  right: 6%;
  transform: translateY(-50%);
  width: min(calc(40 / 767 * 100vw), 40px);
  aspect-ratio: 1/1;
}

@media (min-width: 1025px) {
  #flow {
    padding: 80px 0 60px;
  }
  #flow .flow__title {
    font-size: 40px;
    line-height: 1.4;
    width: 50%;
    top: -36px;
  }
  #flow .flow__title .--fz-xl {
    font-size: 46px;
  }
  #flow .flow__content {
    padding: 80px 100px 50px;
    border-radius: 16px;
  }
  #flow .flow__content .flow__list::before {
    left: 38px;
    height: calc(100% - 40px);
  }
  #flow .flow__content .flow__item {
    padding: 12px 0 40px 100px;
  }
  #flow .flow__content .flow__item-num {
    width: 80px;
    font-size: 1.8rem;
  }
  #flow .flow__content .flow__item-num .--fz-xl {
    font-size: 3.2rem;
  }
  #flow .flow__content .flow__item-title {
    font-size: 36px;
  }
  #flow .flow__content .flow__item-text {
    font-size: 20px;
  }
  #flow .flow__content .flow__item-cta-wrap {
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding-top: 20px;
  }
  #flow .flow__content .flow__item-cta {
    gap: 10px;
    width: 70%;
  }
  #flow .flow__content .flow__item-cta .flow__item-cta-head {
    width: 90%;
    height: 100%;
  }
  #flow .flow__content .flow__item.--sub {
    padding: 11px 0 10px 100px;
  }
  #flow .flow__content .flow__item.--sub:nth-of-type(5) {
    margin-bottom: 30px;
  }
  #flow .flow__content .flow__item.--sub::before {
    top: 15px;
    left: 27px;
    width: 28px;
    height: 28px;
  }
  #flow .flow__content .flow__item.--sub .flow__item-title {
    font-size: 22px;
  }
  /* telボタン */
  #flow .cv-tel-btn__bg-img {
    width: 100%;
  }
  #flow .cv-tel-btn__number {
    top: 45%;
    font-size: 38px;
  }
  #flow .cv-tel-btn__text {
    bottom: 4%;
    font-size: 12px;
  }
  #flow .cv-tel-btn__icon--before {
    width: 53px;
  }
  #flow .cv-tel-btn__icon--after {
    width: 38px;
  }
}
