@charset "UTF-8";

/* RESET */
p,
ol,
ul,
h6,
h5,
h4,
h3,
h2,
h1 {
  color: inherit;
  padding: 0;
  margin: 0;
}

ol,
ul {
  list-style: none;
}

button {
  all: unset;
  box-sizing: border-box;
  cursor: pointer;
  outline: revert;
}

/* BASE */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  color: #3C3C3C;
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

a {
  color: inherit;
}

/* 変数 */
:root {
  --brand-color: #30323F;
}

.kerning {
  font-feature-settings: "palt";
}

.wrapper {
  min-height: 100vh;
  position: relative;
  padding-bottom: 50px;
  box-sizing: border-box;
}

/* KOSEID共通ヘッダー sp */
.pane-header {
  background-color: #F1F0EB;
}
.pane-header .logo {
  box-sizing: content-box;
  padding: 13px;
  margin: 0px auto;
  height: 31px;
}

/* KOSEID共通ヘッダー pc */
@media (min-width: 769px) {
  .pane-header .logo {
    height: 34px;
    padding: 13px 20px;
  }
}

/* ページ上部テンプレート sp */
.title {
  margin: 0 auto 40px;
  display: table;
}

.title-txt {
  font-size: 12px;
  text-align: center;
}

.title h1 {
  font-size: 20px;
  font-family: 'Quicksand', sans-serif;
  border-bottom: 1px solid #3C3C3C;
  letter-spacing: 0.1em;
  font-weight: 100;
  padding: 10px 20px;
  margin: 30px 0 0;
  text-align: center;
}


/* ページ上部テンプレート pc */
@media (min-width: 769px) {
  h1 {
    font-size: 26px;
    margin: 40px 0 0;
  }
}

/* KOSEID共通フッター sp */
.pane-footer {
  width: 100%;
  height: 40px;
  background-color: #A2ACB2;
  position: absolute;
  bottom: 0;
  margin: 0;
}

.copylight {
  color: #fff;
  font-size: 10px;
  text-align: center;
  line-height: 4;
  margin: 0;
}

/* KOSEID共通フッター pc */
@media (min-width: 769px) {
  .pane-footer {
    height: 50px;
  }

  .copylight {
    line-height: 5;
    margin: 0 30px 0 0;
  }
}

.pc-only {
  display: none;
}
.sec {
  padding-block: 40px 60px;
  padding-inline: min(15px, calc(15 / 375 * 100vw));
}
.sec:nth-of-type(odd) {
  background-color: #fff;
}
.sec:nth-of-type(even) {
  background-color: #EFF8FF;
}
.sec-inner > *:last-child {
  margin-bottom: 0;
}
.lead {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  margin-bottom: 25px;
}
.lead-txt {
  font-size: min(14px, calc(14 / 375 * 100vw));
  line-height: calc(30 / 14);
}
.lead.-ac .lead-txt {
  text-align: center;
}
.lead.-ac-sp .lead-txt {
  text-align: center;
}
.bullet-list {
  font-size: min(13px, calc(13 / 430 * 100vw));
  line-height: calc(23 / 13);
  display: flex;
  flex-direction: column;
  row-gap: 0;
  padding-left: 1em;
  text-indent: -1em;
  margin-bottom: 15px;
}
.note-list {
  color: #707070;
  font-size: min(12px, calc(12 / 430 * 100vw));
  line-height: calc(20 / 12);
  display: flex;
  flex-direction: column;
  row-gap: 4px;
  padding-left: 1em;
  text-indent: -1em;
  margin-bottom: 15px;
}
.sec-ttl {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  margin-bottom: 25px;
}
.sec-ttl.-bd {
  border-bottom: 1px solid #3D3D3D;
  padding-bottom: 25px;
}
.sec-ttl-icon {
  margin-bottom: 25px;
  width: min(55px, calc(55 / 375 * 100vw));
}
.sec-ttl-main {
  font-size: min(23px, calc(23 / 375 * 100vw));
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  margin-bottom: 16px;
}
.sec-ttl-sub {
  font-size: min(14px, calc(14 / 375 * 100vw));
  font-weight: bold;
}
.sec-ttl2 {
  display: flex;
  align-items: center;
  flex-direction: column;
  row-gap: 2px;
  text-align: center;
  margin-bottom: 25px;
}
.sec-ttl2-appeal {
  font-size: min(12px, calc(12 / 375 * 100vw));
  padding-inline: 1.5em;
  position: relative;
}
.sec-ttl2-appeal::before,
.sec-ttl2-appeal::after {
  content: '';
  background-color: currentColor;
  height: 100%;
  width: 1px;
  position: absolute;
  bottom: 0;
}
.sec-ttl2-appeal::before {
  left: 0;
  rotate: -40deg;
}
.sec-ttl2-appeal::after {
  right: 0;
  rotate: 40deg;
}
.sec-ttl2-appeal > span {
  font-size: min(19px, calc(19 / 375 * 100vw));
}
.sec-ttl2-main {
  font-size: min(23px, calc(23 / 375 * 100vw));
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
}
.box-items {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: min(18px, calc(18 / 375 * 100vw));
}
.box-item {
  background-color: #fff;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.11);
  padding: min(20px, calc(20 / 375 * 100vw)) min(10px, calc(10 / 375 * 100vw));
}
.box-item-ttl {
  color: #5185C5;
  display: flex;
  align-items: center;
  column-gap: min(9px, calc(9 / 375 * 100vw));
  justify-content: center;
  margin-bottom: 24px;
}
.box-item-ttl-num {
  font-family: 'Quicksand', sans-serif;
  font-size: min(23px, calc(23 / 375 * 100vw));
  font-weight: 100;
}
.box-item-ttl-txt {
  font-size: min(16px, calc(16 / 375 * 100vw));
  font-weight: bold;
}
.box-item-img {
  text-align: center;
  margin-bottom: 20px;
}
.box-item-txtarea > *:last-child {
  margin-bottom: 0;
}
.step {
  font-size: min(14px, calc(14 / 375 * 100vw));
  font-weight: 600;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  text-align: center;
}
.logo-items-bg {
  background-color: #F9FAFC;
  padding-block: min(30px, calc(30 / 375 * 100vw));
  margin-inline: calc(-1 * min(15px, calc(15 / 375 * 100vw)));
}
.logo-items-bg .logo-items {
  margin-bottom: 0;
}
.logo-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-inline: auto;
  margin-bottom: 15px;
  width: min(330px, calc(330 / 375 * 100vw));
}
.logo-item {
  background-color: #fff;
  color: inherit;
  font-size: min(12px, calc(12 / 375 * 100vw));
  display: flex;
  align-items: center;
  flex-direction: column;
  row-gap: min(20px, calc(20 / 375 * 100vw));
  text-align: center;
  text-decoration: none;
  padding-block: min(24px, calc(24 / 375 * 100vw)) min(12px, calc(12 / 375 * 100vw));
}
.logo-item-img {
  padding-inline: min(12px, calc(12 / 375 * 100vw));
}
.logo-item-caption {
  padding-inline: min(4px, calc(4 / 375 * 100vw));
}
.anchor-links {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  border-top: 1px solid #3D3D3D;
  margin-bottom: 70px;
}
.anchor-link {
  border-bottom: 1px solid #3D3D3D;
  color: #3C3C3C!important;
  font-size: min(13px, calc(13 / 375 * 100vw));
  line-height: calc(21 / 13);
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: min(10px, calc(10 / 375 * 100vw)) min(30px, calc(30 / 375 * 100vw)) min(10px, calc(10 / 375 * 100vw)) min(10px, calc(10 / 375 * 100vw));
  min-height: 70px;
  position: relative;
}
.anchor-link::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 7px solid currentColor;
  border-bottom: 0;
  position: absolute;
  right: 10px;
}
.anchor-link img {
  flex-shrink: 0;
  margin-right: 9px;
  width: 20px;
}
.subttl {
  font-size: min(14px, calc(14 / 375 * 100vw));
  margin-bottom: 25px;
}
.answer {
  margin-inline: calc(-1 * min(15px, calc(15 / 375 * 100vw)));
  margin-bottom: 70px;
}
.answer-ttl {
  background-color: #D9EEFF;
  font-size: min(14px, calc(14 / 375 * 100vw));
  font-weight: bold;
  line-height: calc(21 / 14);
  display: flex;
  align-items: center;
  padding: 16px min(22px, calc(22 / 375 * 100vw));
  min-height: 80px;
  margin-bottom: 35px;
}
.answer-body {
  padding-inline: min(15px, calc(15 / 375 * 100vw));
}
.answer-body > *:last-child {
  margin-bottom: 0;
}
.lay-btn {
  display: flex;
  align-items: center;
  flex-direction: column;
  row-gap: 12px;
  margin-bottom: 24px;
}
.lay-btn > * {
  width: min(280px, calc(280 / 375 * 100vw));
}
.link-btn {
  border-radius: 12px;
  font-size: min(13px, calc(13 / 375 * 100vw));
  line-height: calc(24 / 13);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  min-height: 54px;
  padding: 10px;
}
.link-btn.-primary {
  background-color: #F06364;
  color: #fff;
}
.link-btn.-secondary {
  background-color: var(--brand-color);
  color: #fff;
}
.link-btn.-plain {
  background-color: #fff;
  border: 1px solid currentColor;
  color: #3C3C3C;
}
.flow {
  display: flex;
  flex-direction: column;
  row-gap: 55px;
  margin-bottom: 70px;
}
.flow-item {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  position: relative;
}
.flow-item:not(:last-child)::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-top: 15px solid #5B8CC8;
  border-bottom: 0;
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  translate: -50%;
}
.flow-item-ttl {
  color: #5185C5;
  font-size: min(14px, calc(14 / 375 * 100vw));
  font-weight: bold;
}
.flow-item-txt {
  font-size: min(14px, calc(14 / 375 * 100vw));
}
@media (min-width: 769px) {
  a {
    transition: opacity .3s;
  }
  a:hover {
    opacity: .7;
  }
  .pc-only {
    display: block;
  }
  .sp-only {
    display: none;
  }
  .sec-inner {
    margin-inline: auto;
    width: 680px;
  }
  .lead.-ac-sp .lead-txt {
    text-align: left;
  }
  .box-items {
    grid-template-columns: repeat(2, minmax(0, 2fr));
    gap: min(10px, calc(10 / 375 * 100vw));
  }
  .box-item-txtarea {
    margin-inline: auto;
    width: fit-content;
  }
  .logo-items-bg {
    padding-inline: 8px;
    padding-block: min(25px, calc(25 / 375 * 100vw));
    margin-inline: 0;
  }
  .logo-items {
    grid-template-columns: repeat(4, minmax(0, 4fr));
    width: 100%;
  }
  .anchor-links {
    grid-template-columns: repeat(2, minmax(0, 2fr));
    margin-bottom: 70px;
  }
  .anchor-link:nth-child(odd) {
    padding-right: 36px;
  }
  .anchor-link:nth-child(even) {
    padding-left: 20px;
  }
  .anchor-link:nth-child(even)::before {
    content: '';
    background-color: currentColor;
    height: 35px;
    width: 1px;
    position: absolute;
    left: 0;
    top: 50%;
    translate: 0 -50%;
  }
  .anchor-link:nth-child(odd)::after {
    right: 20px;
  }
  .anchor-link:nth-child(even)::after {
    right: 14px;
  }
  .subttl {
    text-align: center;
  }
  .answer {
    margin-inline: 0;
  }
  .answer-body {
    padding: 0;
  }
}