@charset "UTF-8";
/*!
 * ress.css • v4.0.0
 * MIT License
 * github.com/filipelinhares/ress
 */
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  word-break: normal;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
}
*,
:after,
:before {
  background-repeat: no-repeat;
  box-sizing: inherit;
}
:after,
:before {
  text-decoration: inherit;
  vertical-align: inherit;
}
* {
  padding: 0;
  margin: 0;
}
hr {
  overflow: visible;
  height: 0;
  color: inherit;
}
details,
main {
  display: block;
}
summary {
  display: list-item;
}
small {
  font-size: 80%;
}
[hidden] {
  display: none;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}
a {
  background-color: transparent;
}
a:active,
a:hover {
  outline-width: 0;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
}
pre {
  font-size: 1em;
}
b,
strong {
  font-weight: bolder;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
table {
  border-color: inherit;
  text-indent: 0;
}
input {
  border-radius: 0;
}
[disabled] {
  cursor: default;
}
[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
  height: auto;
}
[type='search'] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}
textarea {
  overflow: auto;
  resize: vertical;
}
button,
input,
optgroup,
select,
textarea {
  font: inherit;
}
optgroup {
  font-weight: 700;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
[role='button'],
[type='button'],
[type='reset'],
[type='submit'],
button {
  cursor: pointer;
  color: inherit;
}
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner,
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}
[type='reset'],
[type='submit'],
button,
html [type='button'] {
  -webkit-appearance: button;
}
button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
}
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline-width: 0;
}
select {
  -moz-appearance: none;
  -webkit-appearance: none;
}
select::-ms-expand {
  display: none;
}
select::-ms-value {
  color: currentColor;
}
legend {
  border: 0;
  color: inherit;
  display: table;
  white-space: normal;
  max-width: 100%;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  color: inherit;
  font: inherit;
}
img {
  border-style: none;
}
progress {
  vertical-align: baseline;
}
[aria-busy='true'] {
  cursor: progress;
}
[aria-controls] {
  cursor: pointer;
}
[aria-disabled='true'] {
  cursor: default;
}

/******************
 * variables
 ******************/
:root {
  --font-family-gothic: 'Helvetica Neue', 'Helvetica', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Arial', 'Yu Gothic', 'Meiryo', sans-serif;
}

/******************
 * base
 ******************/
html {
  /** 1rem = 10px */
  font-size: clamp(8px, 2.666666666666667vw, 16px);
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-gothic);
  font-style: normal;
  font-size: 1.4rem;
  letter-spacing: 0.05rem;
  line-height: 1.4;
}

img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

/******************
 * utils
 ******************/
.u__color--magenta {
  color: #d4145a;
}
.u__color--yellow {
  color: #f2e633;
}
.u__fs--s {
  font-size: 1.4rem;
}
.u__fs--m {
  font-size: 2rem;
}
.u__fs--l {
  font-size: 3.5rem;
}
.u__anime-bounce {
  -webkit-animation: bounce 1.6s ease-in infinite;
  animation: bounce 2.6 ease-in infinite;
}

@-webkit-keyframes bounce {
  0% {
    transform: scale(1.04);
  }
  10% {
    transform: scale(1.04);
  }
  30% {
    transform: scale(1.01);
  }
  40% {
    transform: scale(1.02);
  }
  50% {
    transform: scale(1, 1.05);
  }
  60% {
    transform: scale(1.02);
  }
  70% {
    transform: scale(1.04);
  }
  100% {
    transform: scale(1.04);
  }
}

@-webkit-keyframes puyoBtn {
  0% {
    transform: scale(1.03);
  }
  10% {
    transform: scale(1.03);
  }
  30% {
    transform: scale(1.01);
  }
  40% {
    transform: scale(1.02);
  }
  50% {
    transform: scale(1, 1.03);
  }
  60% {
    transform: scale(1.02);
  }
  70% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1.03);
  }
}

@keyframes puyoBtn {
  0% {
    transform: scale(1.03);
  }
  10% {
    transform: scale(1.03);
  }
  30% {
    transform: scale(1.01);
  }
  40% {
    transform: scale(1.02);
  }
  50% {
    transform: scale(1, 1.03);
  }
  60% {
    transform: scale(1.02);
  }
  70% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1.03);
  }
}

/******************
 * page wrap
 ******************/
.page-wrap {
  max-width: 640px;
  min-width: 300px;
  margin: 0 auto;
}

/******************
 * cv
 ******************/
.cv-01 {
  padding: 5% 0;
  background: url(../img/u_bg-02.jpg) 0 0 repeat;
}
.cv-02 {
  padding: 5% 0 10% 0;
  background: url('../img/u_bg-01.jpg') 0 0/100% repeat-y;
}
.cv-03 {
  padding: 8% 0;
  background-color: #e2f4fb;
}
.cv__inner {
  position: relative;
}
.cv__btn {
  width: 86%;
  position: absolute;
  top: 64%;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.2s;
}
@media (any-hover: hover) {
  .cv__btn:hover {
    opacity: 0.7;
    transition: opacity 0.2s;
  }
}
/******************
 * reason
 ******************/
.reason {
  padding: 10% 0 2% 0;
  background:
    url('../img/reson_bg.png') 5px 10px/100% no-repeat,
    linear-gradient(180deg, rgba(194, 219, 238, 0) 0%, rgba(197, 221, 239, 0) 50%, rgba(252, 253, 254, 0.5) 92%, rgba(252, 253, 254, 0.7) 100%),
    linear-gradient(90deg, rgba(194, 219, 238, 1) 0%, rgba(197, 221, 239, 1) 50%, rgba(252, 253, 254, 1) 92%, rgba(252, 253, 254, 1) 100%);
}
.reason__item {
  margin-bottom: 5%;
}
.reason__item-text {
  padding: 2% 3%;
  font-weight: 700;
  font-size: 1.5rem;
}
/******************
 * case
 ******************/
.case {
  padding-bottom: 10%;
  background: url('../img/u_bg-01.jpg') 0 0 repeat-y;
}
.case__title {
  padding: 4%;
  margin-bottom: 8%;
  background: rgb(47, 110, 167);
  background: linear-gradient(90deg, rgba(47, 110, 167, 1) 0%, rgba(40, 78, 146, 1) 52%, rgba(46, 51, 127, 1) 92%);
  color: #fff;
  font-weight: 600;
  text-align: center;
  font-size: 2.3rem;
}

/******************
 * flow
 ******************/
.flow {
  padding: 10% 3%;
  background: rgb(38, 71, 166);
  background: linear-gradient(90deg, rgba(38, 71, 166, 1) 0%, rgba(25, 52, 138, 1) 52%, rgba(11, 34, 110, 1) 92%);
}
.flow__title {
  margin-bottom: 8%;
}
.flow__inner {
  padding-bottom: 10%;
  background: url('../img/u_bg-02.jpg') 0 0 repeat;
  border-radius: 10px;
}
.flow__step-item {
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.flow__step-item:not(:last-child) {
  margin-bottom: 13%;
}
.flow__step-item:not(:last-child)::after {
  content: '';
  display: block;
  width: 20%;
  height: 22%;
  background: url('../img/flow_step-arrow.png') 0 0/100% no-repeat;
  position: absolute;
  bottom: -30%;
  left: 50%;
  transform: translateX(-50%);
}
.flow__step-column--right {
  width: 35%;
}
.flow__step-column--left {
  width: 60%;
}
.flow__step-title {
  width: 100%;
  margin-bottom: 2%;
  font-size: 1.6rem;
  color: #023881;
  font-weight: 800;
  text-align: center;
}
.flow__step-title::after {
  width: 50%;
  height: 10px;
  margin: 2% auto 0 auto;
  background: url('../img/flow_step-border.png') 0 0/100% no-repeat;
  content: '';
  display: block;
}
.flow__step-description {
  font-size: 1.4rem;
  font-weight: 600;
}
.flow__step-btn {
  width: 90%;
  display: block;
  margin: 4% auto 0 auto;
}

/******************
 * faq
 ******************/
.faq {
  padding: 10% 3% 5% 3%;
}
.faq__title {
  margin-bottom: 5%;
  text-align: center;
  color: #2e3192;
  line-height: 1.5;
}
.faq__title-sub {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  font-weight: 400;
}
.faq__title-sub::before,
.faq__title-sub::after {
  content: '';
  width: 40px;
  height: 1px;
  background-color: #2e3192;
}
.faq__list {
  list-style: none;
}
.faq__list-q {
  margin-bottom: 5%;
  padding: 4% 9% 4% 10%;
  background-color: #2e3192;
  border-radius: 16px;
  position: relative;
  color: #fff;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
}
.faq__list-q::before {
  content: '';
  display: block;
  width: 7%;
  height: 34%;
  background: url('../img/faq_icon-q.png') 0 0/100% no-repeat;
  position: absolute;
  top: 15%;
  left: 2%;
}
.faq__list-q::after {
  content: '';
  display: block;
  width: 5%;
  height: 28%;
  background: url('../img/u_icon-arrow.png') 0 0/100% no-repeat;
  position: absolute;
  top: 50%;
  right: 2%;
  transform: translateY(-50%);
  transition: all 0.2s;
}
.faq__list-q.is-open::after {
  transform: scale(-1) translateY(50%);
  transition: all 0.2s;
}
.faq__list-a {
  padding: 0 2% 8% 10%;
  position: relative;
  line-height: 1.6;
  font-size: 1.5rem;
  display: none;
  font-weight: 600;
}
.faq__list-a::before {
  content: '';
  display: block;
  width: 7%;
  height: 40px;
  background: url('../img/faq_icon-a.png') 0 0/100% no-repeat;
  position: absolute;
  top: 0;
  left: 2%;
}

/******************
 * footer
 ******************/
.footer {
  padding: 5% 3%;
  background-color: #2e3192;
  color: #fff;
  text-align: center;
}
.footer__nav a {
  margin: 0 15px;
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  font-size: 1.1rem;
}
