@charset "UTF-8";
/*
 * 参考
 * https: //github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https: //css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https: //webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.4545454545vw;
  }
}
@media (min-width: 1100px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: "メイリオ", "ヒラギノ角ゴ Pro W3";
  font-weight: 400;
  color: #333;
  background-color: #fff;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

.l-inner {
  max-width: 31.25rem;
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    padding-right: 25px;
    padding-left: 25px;
    max-width: 1150px;
  }
}

.l-page {
  padding: 5rem 0;
}
@media screen and (min-width: 768px) {
  .l-page {
    padding: 5.625rem 0;
  }
}

.l-pager {
  margin-top: 2rem;
}

.l-post-connect {
  margin-top: 1rem;
}

.c-breadcrumb {
  padding: 1rem 0;
}

.c-breadcrumb a {
  color: #0000cd;
}

.c-btnWrap {
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 200px;
  padding: 10px 20px;
  color: #333;
  font-size: 16px;
  font-weight: 700;
  background-color: #fff100;
  border: 1px solid #333;
  transition: 0.3s;
}

.c-btn::after {
  content: "";
  display: inline-block;
  margin-left: 16px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: rotate(45deg);
  transition: 0.3s;
}

.c-btn:hover {
  text-decoration: none;
  background-color: #fff;
  color: #0000cd;
  opacity: 1;
  cursor: pointer;
}

.c-btn:hover::after {
  border-top: 1px solid #0000cd;
  border-right: 1px solid #0000cd;
  transform: translateX(5px) rotate(45deg);
}

.c-btnWrap--right {
  margin-top: 1.25rem;
  display: flex;
  justify-content: end;
  align-items: center;
}

.c-btn--right {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-width: 200px;
  padding: 10px 20px;
  color: #333;
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px dotted #333;
  transition: 0.3s;
}

.c-btn--right i {
  color: #0000cd;
}

.c-section {
  padding: 1.25rem 0;
}

.section-title {
  text-align: center;
  font-weight: 700;
  padding: 0.125rem;
  background-color: #0000cd;
  color: #fff;
  font-size: 1.125rem;
  border-radius: 6px 6px 0 0;
}
@media screen and (min-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

.area__imageWrap {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .area__imageWrap {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
}

.area__text {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .area__text {
    font-size: 1.25rem;
  }
}

.case__lead {
  font-size: 1.125rem;
  font-weight: 700;
  color: #e00;
  margin-top: 1.25rem;
  text-align: center;
}

.case__items {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .case__items {
    display: grid;
    gap: 1.25rem 2.5rem;
    grid-template-columns: repeat(3, 1fr);
  }
}

.case__item + .case__item {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .case__item + .case__item {
    margin-top: initial;
  }
}

.case__imageWrap {
  aspect-ratio: 200/180;
}

.case__imageWrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.case-item__body {
  padding: 0.625rem;
  background-color: #f5f5f5;
}

.case-item__body p {
  font-size: 0.875rem;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .case-item__body p {
    font-size: 1rem;
  }
}

.case-item__title {
  font-size: 1.375rem;
  text-align: center;
}

.case-item__text {
  margin-top: 1.25rem;
}

.case-item__text span {
  display: block;
  font-weight: 700;
  font-size: 1.125rem;
}

.case-item__text + .case-item__text {
  margin-top: 0.625rem;
}

.cta {
  /* 方眼紙模様に必須のスタイル */
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px));
  background-size: 16px 16px;
  background-repeat: repeat;
  background-position: center center;
}

.cta-title {
  position: relative;
  padding: 0.625rem 0.625rem calc(1rem + 10px);
  background: #fdeff2;
  text-align: center;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .cta-title {
    font-size: 2.25rem;
  }
}

.cta-title::before {
  position: absolute;
  top: -7px;
  left: -7px;
  width: 100%;
  height: 100%;
  content: "";
  border: 4px solid #000;
}

.cta__lead {
  margin-top: 0.625rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .cta__lead {
    font-size: 1.5rem;
    margin-top: 1.25rem;
  }
}

.cta__lead span {
  font-weight: 700;
  font-size: 1.375rem;
  color: #e00;
}
@media screen and (min-width: 768px) {
  .cta__lead span {
    font-size: 2rem;
  }
}

.cta__imageWrap {
  transform-origin: center;
  cursor: pointer;
  margin-top: 0.625rem;
  box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 768px) {
  .cta__imageWrap {
    margin-top: 1.25rem;
  }
}

@keyframes fuwafuwa {
  from {
    transform: scale(0.95, 0.95);
  }
  to {
    transform: scale(1, 1);
  }
}
.cta__imageWrap-sub {
  margin-top: 0.625rem;
  margin-bottom: 1.875rem;
}

.cta__text {
  margin-top: 1.25rem;
}

.cta__text a {
  text-decoration: underline;
  color: #e73562;
  font-weight: 700;
}

.lp-danger__items {
  padding-top: 1.25rem;
}

.lp-danger__item {
  padding: 0.625rem;
  border: solid 2px #333;
  background-color: #fff;
}

.lp-danger__item + .lp-danger__item {
  margin-top: 0.625rem;
}

.lp-danger__item-title {
  text-align: center;
  font-weight: 700;
  font-size: 1.125rem;
}

.lp-danger__item-title i {
  font-size: 1.25rem;
  color: #e00;
  padding-right: 0.625rem;
}

.lp-danger__item-text {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.8;
}

.faq {
  padding-bottom: 2.5rem;
}

.faq__inner {
  margin: auto;
  padding: 0 1.25rem;
}

.p-faq__list {
  margin-top: 1.25rem;
}

.p-faq-list__item {
  background-color: #fff;
  box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.05);
}

.p-faq-list__item + .p-faq-list__item {
  margin-top: 1.25rem;
}

.p-faq-list__item-question {
  padding: 0.75rem 2.5rem 0.75rem 3.75rem;
  position: relative;
  font-size: 0.9375rem;
  text-indent: -1.25rem;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-faq-list__item-question {
    padding: 0.875rem 3.75rem 0.875rem 5rem;
    font-size: 1.125rem;
  }
}

.p-faq-list__item-question::before,
.p-faq-list__item-question::after {
  content: "";
  position: absolute;
  top: 1.3125rem;
  right: 1.25rem;
  width: 1.125rem;
  height: 0.1875rem;
  background: #DE8430;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-faq-list__item-question::before,
  .p-faq-list__item-question::after {
    top: 1.5rem;
    width: 1.25rem;
  }
}

.p-faq-list__item-question::after {
  transform: rotate(90deg);
}

.p-faq-list__item-question.is-open::after {
  transform: rotate(0deg);
}

.p-faq-list__item-question span {
  margin-right: 1.25rem;
  display: inline-block;
  color: #F6D970;
}

.p-faq-list__item-answer {
  padding: 0.9375rem 1.875rem 0.9375rem 3.75rem;
  display: none;
  font-size: 0.9375rem;
  text-indent: -1.25rem;
}
@media screen and (min-width: 768px) {
  .p-faq-list__item-answer {
    padding: 1.25rem 2.5rem 0.9375rem 5rem;
    font-size: 1.125rem;
  }
}

.p-faq-list__item-answer span {
  margin-right: 1.25rem;
  display: inline-block;
  color: #DE8430;
}

.flow {
  background-color: #F8F9FA;
}

.flow__lead {
  text-align: center;
  font-size: 1.5rem;
  color: #ff8c00;
  font-weight: 700;
  margin-top: 1.25rem;
}

.flow-list {
  counter-reset: number;
  margin-top: 0.625rem;
}

@media screen and (min-width: 768px) {
  .flow-list__item {
    display: flex;
  }
}

.flow-list__item + .flow-list__item {
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .flow-list__item + .flow-list__item {
    margin-top: 5rem;
  }
}

.flow-list__item-img {
  aspect-ratio: 1/1;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .flow-list__item-img {
    width: 40%;
  }
}

.flow-list__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.flow-list__item-content {
  padding: 1.5rem 0.625rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .flow-list__item-content {
    margin-left: 6.25rem;
    padding: 1.875rem 2.5rem;
    width: 60%;
  }
}

.flow-list__item-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .flow-list__item-title {
    font-size: 1.5rem;
    text-align: left;
  }
}

.flow-list__item-text {
  margin-top: 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .flow-list__item-text {
    font-size: 1.125rem;
  }
}

.flow-list__item-text a {
  text-decoration: underline;
  color: #0000cd;
}

.p-footer {
  padding: 2.5rem 0 5.625rem;
  background-color: #004aad;
  color: #fff;
}

.footer__items {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, 1fr);
}

.footer__item {
  font-size: 0.75rem;
}

.p-footer__copyright {
  font-size: 0.625rem;
  text-align: center;
  margin-top: 1.25rem;
}

.footer-fixed-btnArea {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 80px;
  display: flex;
}

.footer-fixed-btnWrap {
  width: 50%;
}

.footer-fixed-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #0000cd 0%, #0000cd 50%, #0000ff 50%, #0000ff 100%);
  height: 100%;
  width: 100%;
  font-size: 1.25rem;
  font-weight: 700;
  border: solid 1px #f5f5f5;
  z-index: 10;
  color: #fff;
}

.footer-fixed-btn.is-tell {
  background: linear-gradient(180deg, #ff8c00 0%, #ff8c00 50%, #f4a460 50%, #f4a460 100%);
}

.footer-fixed-btn span {
  display: block;
  margin-bottom: -30px;
  font-size: 0.875rem;
  font-weight: 400;
}

.grecaptcha-badge {
  visibility: hidden;
}

.fv {
  margin-top: 1.5625rem;
  padding: 0 0 1.25rem;
  background-color: #fff;
  position: relative;
}
@media screen and (min-width: 768px) {
  .fv {
    margin-top: 1.875rem;
    padding: 4.375rem 0 1.25rem;
  }
}

.fv-head {
  position: absolute;
  top: 0px;
  z-index: 100;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background-color: #0000cd;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .fv-head {
    top: 15px;
    font-size: 1.125rem;
  }
}

.fv picture img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .fv picture img {
    -o-object-fit: contain;
       object-fit: contain;
  }
}

@media screen and (min-width: 768px) {
  .banner__inner a {
    aspect-ratio: 200/100;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}

.banner__inner a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.banner__lead {
  text-align: center;
  color: #e00;
  font-weight: 700;
}

.maker__lead {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
}

.maker__imageWrap {
  margin-top: 2.5rem;
}

.merit {
  background-color: #D0E8F2;
}

.merit__lead {
  font-size: 1.125rem;
  margin-top: 0.625rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .merit__lead {
    font-size: 1.25rem;
    margin-top: 1.25rem;
    text-align: center;
  }
}

.merit__title-sub {
  margin-top: 1.25rem;
  font-size: 1.375rem;
  color: #004aad;
}
@media screen and (min-width: 768px) {
  .merit__title-sub {
    font-size: 1.625rem;
  }
}

.merit__text {
  margin-top: 1.25rem;
  line-height: 1.8;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .merit__text {
    font-size: 1.5rem;
    margin-top: 2.5rem;
  }
}

.merit__items {
  display: grid;
  gap: 1.25rem 2.5rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .merit__items {
    gap: 2.5rem 3.75rem;
    justify-content: center;
  }
}

.merit__item {
  position: relative;
}

.merit-item__num {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.875rem;
  font-weight: 700;
  font-family: "Impact", sans-serif;
  color: #fff100;
}
@media screen and (min-width: 768px) {
  .merit-item__num {
    font-size: 3.75rem;
  }
}

.merit-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 100/100;
}

.merit-item__icon img {
  border-radius: 999px;
  border: solid 5px #f5f5f5;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.merit-item__text {
  margin-top: 0.625rem;
  font-size: 1rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .merit-item__text {
    font-size: 1.25rem;
  }
}

.merit-item__text span {
  background: linear-gradient(transparent 10%, #fff100 50%);
  font-weight: 700;
}

.message {
  background-image: url(./../images/top/img_syokunin.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  z-index: -1;
}

.message::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: -2;
}

.message__imageWrap {
  width: 70%;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1.25rem;
}

.message__text {
  margin-top: 1.25rem;
  line-height: 1.8;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .message__text {
    font-size: 1.375rem;
  }
}

.message__text span {
  display: block;
  font-weight: 700;
}

.message__imageWrap-sub {
  margin-top: 2.5rem;
}

.p-404 {
  padding: 12.5rem 0;
}
@media screen and (min-width: 768px) {
  .p-404 {
    padding: 18.75rem 0;
  }
}

.p-404__title {
  text-align: center;
}

.p-contact {
  padding-top: 5rem;
  padding-bottom: 2.5rem;
}

.p-contact__title {
  text-align: center;
}

.p-contact__text {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  text-align: justify;
  line-height: 1.88;
}
@media screen and (min-width: 768px) {
  .p-contact__text {
    font-size: 1rem;
  }
}

.p-contact__description {
  margin-top: 2.5rem;
  font-size: 0.875rem;
  line-height: 1.88;
}

.p-contact__btn {
  display: flex;
  justify-content: center;
}

.p-contact__head {
  width: 15.625rem;
}

.p-contact__item {
  margin-top: 0.375rem;
}

.p-contact__item-example {
  margin-top: 0.375rem;
  color: gray;
}

.p-contact__required {
  color: red;
  padding-left: 1em;
}

.p-contact__policy,
.p-contact__content,
.p-contact__btn {
  margin: 1.5rem 0;
}

.p-contact__policy-link {
  color: blue;
  transition: all 0.3s;
}

.p-contact__btn-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-contact__btn-wrap {
    flex-direction: row;
    gap: 2.5rem;
  }
}

.p-contact__btn {
  display: inline-block;
  text-align: center;
}

.p-contact__item-text,
.p-contact__item-tel,
.p-contact__item-email,
.p-contact__item-textarea,
.p-contact__item-select {
  margin: 0;
  padding: 0.8em;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0;
  outline: none;
  background: none;
  background-color: transparent;
  font-size: 1rem;
  color: inherit;
  font-family: inherit;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}

.p-contact__item-text:focus,
.p-contact__item-tel:focus,
.p-contact__item-email:focus,
.p-contact__item-textarea:focus,
.p-contact__item-select:focus {
  border: 1px solid rgba(0, 0, 0, 0.7);
  box-shadow: none;
  outline: none;
}

.p-contact__item-textarea {
  height: 200px;
  resize: none;
  overflow: auto;
}

.p-contact__item-message {
  white-space: pre-wrap;
}

.p-contact__item-select {
  padding-right: 3em;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAALJJREFUeNrslssNgCAQRCmB0ijBEuyEEijBEijBEizBEnAPy0UBWVj8JDvJJB5w3gsXVUoikXwsBrpAPdRCNcOmxi2P2yZ3cIKGU9dOCY0b590pdXhPHOyRyMEDsi4JhVIlSvBYTRGgSNTAQ+pFyyBRC7e5AdchUQt3d1fYIsEGb5Fgh1MktlFwisQwOIeE4/pGuDfhLRLscIrEMHiNxHB4SeIxeMyMPxkenyUSyT9zCDAAj5btZ4c3zaUAAAAASUVORK5CYII=");
  background-repeat: no-repeat;
  background-size: 1em;
  background-position: right 0.5em center;
  color: inherit;
}

.p-contact__item-select:invalid {
  color: rgba(0, 0, 0, 0.32);
}

.p-contact__item-select select::-ms-expand {
  display: none;
}

.p-contact__item-radio input[type=radio],
.p-contact__item-checkbox input[type=checkbox] {
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.p-contact__item-radio input[type=radio] + span,
.p-contact__item-checkbox input[type=checkbox] + span {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding: 0.5em 1em 0.5em 1.5em;
  color: #333;
  font-size: 1rem;
}

.p-contact__item-radio input[type=radio]:focus + span,
.p-contact__item-checkbox input[type=checkbox]:focus + span {
  opacity: 0.7;
}

.p-contact__item-radio input[type=radio] + span::before,
.p-contact__item-checkbox input[type=checkbox] + span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1em;
  height: 1em;
  content: "";
  transform: translateY(-50%);
  background: white;
  border: 1px solid black;
}

.p-contact__item-checkbox input[type=checkbox]:checked + span::before {
  background: #333;
}

.p-contact__item-radio input[type=radio]:checked + span::before {
  background: white;
}

.p-contact__item-radio input[type=radio] + span::before {
  border-radius: 50%;
}

.p-contact__item-radio input[type=radio] + span::after {
  position: absolute;
  content: "";
  background: #333;
  border: 1px solid transparent;
  border-radius: 50%;
  height: 0.5em;
  left: 0.25em;
  opacity: 0;
  padding: 0.125em;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease 0s;
  width: 0.5em;
}

.p-contact__item-checkbox input[type=checkbox] + span::after {
  border-bottom: 2px solid white;
  border-left: 2px solid white;
  content: "";
  display: block;
  height: 0.35em;
  left: 0.15em;
  margin-top: -0.1em;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  transition: all 0.3s ease 0s;
  width: 0.8em;
}

.p-contact__item-checkbox input[type=checkbox]:checked + span::after,
.p-contact__item-radio input[type=radio]:checked + span::after {
  opacity: 1;
}

/* button */
.p-contact__btn input[type=submit],
.p-contact__btn input[type=button] {
  display: inline-block;
  margin: 0;
  padding: 1em 2em;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  background: #004aad;
  color: #fff;
  -moz-appearance: button;
       appearance: button;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 0;
  border: none;
  transition: all 0.3s;
}

.p-contact__btn input[type=submit]:hover,
.p-contact__btn input[type=button]:hover,
.p-contact__btn input[type=submit]:focus,
.p-contact__btn input[type=button]:focus {
  outline: none;
  opacity: 0.7;
}

.p-contact__item,
.p-contact__btn-submit {
  min-width: 9.375rem;
}

.p-contact__description-thanks {
  text-align: center;
}

.wpcf7-spinner {
  position: absolute;
}

.l-header {
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
}

.p-header {
  height: 3.125rem;
  background-color: rgba(255, 255, 255, 0.8);
}
@media screen and (min-width: 768px) {
  .p-header {
    height: 4.375rem;
  }
}

.p-header__inner {
  padding-left: 0.9375rem;
  height: inherit;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .p-header__inner {
    padding: 0 3.125rem;
    max-width: 1600px;
    margin-right: auto;
    margin-left: auto;
  }
}

.p-header__logo {
  max-width: 12.5rem;
  width: 100%;
  height: inherit;
  color: #0000cd;
}
@media screen and (min-width: 768px) {
  .p-header__logo {
    max-width: 13.75rem;
  }
}

.p-header__logo a {
  height: inherit;
  display: flex;
  align-items: center;
}

.p-header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-header__nav {
  display: none;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .p-header__nav {
    display: block;
  }
}

.p-header__nav-list {
  display: flex;
  height: inherit;
}

.p-header__nav-item {
  height: inherit;
}

.p-header__nav-item.p-header__nav-item--contact {
  margin-left: 0.9375rem;
  display: flex;
  align-items: center;
}

.p-header__nav-item a {
  padding: 0 0.9375rem;
  height: inherit;
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  color: #333;
  text-transform: uppercase;
}

.p-header__nav-item.p-header__nav-item--contact a {
  padding: 0.625rem 1.25rem;
  position: relative;
  height: initial;
  color: #fff;
  background-color: #004aad;
}

.p-header__nav-item.p-header__nav-item--contact a::after {
  content: "";
  margin-left: 0.625rem;
  width: 0.6875rem;
  height: 0.75rem;
  display: inline-block;
  background-image: url(./../images/common/contact-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.header__telWrap {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__telWrap {
    display: block;
    max-width: 16.25rem;
    width: 100%;
  }
}

.p-header__hamburger {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  position: relative;
  z-index: 999;
  width: 3.75rem;
  height: inherit;
  background-color: rgba(0, 0, 205, 0.8);
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-header__hamburger {
    display: none;
  }
}

.p-header__hamburger.is-open {
  background-color: transparent;
}

.p-header__hamburger span {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 0.9375rem;
  height: 1px;
  background-color: #fff;
  transition: 0.5s;
}

.p-header__hamburger span:nth-of-type(1) {
  top: -0.25rem;
}

.p-header__hamburger span:nth-of-type(2) {
  top: 0;
}

.p-header__hamburger span:nth-of-type(3) {
  top: 0.25rem;
}

.p-header__hamburger.is-open span:nth-of-type(1) {
  top: 0;
  transform: translateX(-50%) rotate(45deg);
}

.p-header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}

.p-header__hamburger.is-open span:nth-of-type(3) {
  top: -0.125rem;
  transform: translateX(-50%) rotate(-45deg);
}

.p-header__drawer {
  padding: 6.25rem 0;
  position: absolute;
  z-index: 900;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 205, 0.8);
  overflow-y: scroll;
  scrollbar-width: none;
  transition: 0.6s;
}

.p-header__drawer.is-open {
  right: 0;
}

.p-header__drawer::-webkit-scrollbar {
  display: none;
}

.p-header__drawer-item a {
  padding: 0.9375rem 0;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}

.p-header__drawer-item.p-header__drawer-item--contact a {
  color: #fff100;
}

.p-header__drawer-imageWrap {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 3.125rem;
}

.p-pager-list {
  display: flex;
  justify-content: space-between;
}

.p-pager-list__btn a {
  display: inline-block;
  padding: 10px 20px;
  color: #0000cd;
  border: 1px solid #0000cd;
}

.p-post-article__inner.l-inner {
  margin-top: 2rem;
}

.p-post-article__title {
  font-size: 3rem;
  color: #0000cd;
}

.p-post-article__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.p-post-article__category {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3125rem;
}

.p-post-article__category li {
  padding: 0.3125rem;
  color: #0000cd;
  border: 1px solid #0000cd;
}

.p-post-article__box {
  margin: 6.4rem auto 0;
}

.p-post-article__content {
  padding: 1.25rem 1.4375rem 0;
  background-color: #fff;
  width: 100%;
}

.p-post-article__content-wrap {
  padding-bottom: 1.875rem;
  width: 100%;
  margin: auto;
}

.p-post-article__contents {
  margin-top: 1.875rem;
}

.p-post-article__main-img {
  aspect-ratio: 7/4;
}

.p-post-article__main-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-post-article__category {
  letter-spacing: 0;
}

.p-post-article__data {
  margin-left: auto;
  font-size: 1.3125rem;
  text-align: right;
  letter-spacing: 0.05em;
}

.p-post-article__content h2 {
  margin: 1.875rem 0 0.9375rem;
  padding: 0.3125rem 1.25rem;
  color: #fff;
  background-color: #0000cd;
  font-size: 1.75rem;
}

.p-post-article__contents h3 {
  margin: 1.875rem 0 0.9375rem;
  padding-left: 0.625rem;
  color: #0000cd;
  font-size: 1.75rem;
  border-left: 0.5em solid #0000cd;
}

.p-post-article__contents h4 {
  margin: 0.625rem 0;
  font-size: 1.5rem;
}

.p-post-article__contents h5 {
  margin: 0.625rem 0;
  padding: 0.125rem 0.78125rem;
  display: inline-block;
  color: #0000cd;
  font-size: 1.25rem;
  border-top: 2px solid #0000cd;
  border-bottom: 2px solid #0000cd;
}

.p-post-article__contents p {
  font-size: 1.25rem;
}

.p-post-article__contents a {
  color: #0000cd;
  text-decoration: underline;
}

.p-post-article__contents img {
  margin: 0.625rem 0;
}

.p-post-article__contents figure {
  margin: 0.625rem 0;
}

.p-post-article__contents figcaption {
  margin: 0.625rem 0;
  font-size: 0.75rem;
}

.p-post-card__img {
  width: 100%;
  aspect-ratio: 400/300;
}

.p-post-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-post-card__body {
  position: relative;
}

.p-post-card__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
}

.p-post-card__category li {
  padding: 0.3125rem;
  color: #0000cd;
  border: 1px solid #0000cd;
}

.p-post-card__new {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  color: #0000cd;
  padding: 0.3125rem 0.625rem;
  border: 1px solid #0000cd;
}

.p-post-connect__title {
  font-size: 1.5rem;
  color: #0000cd;
}

.p-post-connect__items {
  display: grid;
  gap: 3.125rem;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-post-connect__items {
    row-gap: 2.5rem;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
    grid-template-columns: repeat(4, 1fr);
  }
}

.p-post-list {
  position: relative;
}

.p-post-list__wrap {
  margin: 2rem 0;
}

.p-post-list__title {
  font-size: 3rem;
  color: #0000cd;
}

.p-post-list__items {
  display: grid;
  gap: 3.125rem;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-post-list__items {
    row-gap: 2.5rem;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
    grid-template-columns: repeat(4, 1fr);
  }
}

.p-post-list__cards {
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-post-list__cards {
    margin-top: 6.25rem;
  }
}

.p-post-list__btn {
  margin-top: 1.25rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-post-list__btn {
    margin: 1.75rem auto 0;
    width: 100%;
    max-width: calc(61.25rem + 50px);
    padding: 0 0.625rem;
  }
}

.p-top-gallery__inner {
  margin: 5% 5% 0 5%;
}

.p-top-gallery .splide__slide {
  display: block;
  width: 100%;
  aspect-ratio: 600/300;
}

.p-top-gallery .splide__slide picture {
  height: inherit;
  height: 100%;
}

.p-top-gallery .splide__slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-gallery .swiper-slide {
  display: block;
  width: 100%;
  aspect-ratio: 600/300;
}

.p-top-gallery .swiper-slide picture {
  height: inherit;
  height: 100%;
}

.p-top-gallery .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-gallery .slick-track {
  display: block;
  width: 100%;
}

.p-top-gallery .slick-slide {
  display: block;
  width: 100%;
  aspect-ratio: 600/300;
  margin: 0 5px;
}

.p-top-gallery .slick-slide picture {
  height: inherit;
  height: 100%;
}

.p-top-gallery .slick-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-mv-slick {
  background: black;
}

.p-top-mv-slick__inner {
  margin: 5% 5% 0 5%;
}

.p-top-mv-slick .slick-track {
  display: block;
  width: 100%;
}

.p-top-mv-slick .slick-slide {
  display: block;
  width: 100%;
  aspect-ratio: 600/300;
  margin: 0 5px;
}

.p-top-mv-slick .slick-slide picture {
  height: inherit;
  height: 100%;
}

.p-top-mv-slick .slick-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-mv-splide__inner {
  margin: 5% 5% 0 5%;
}

.p-top-mv-splide .splide__slide {
  display: block;
  width: 100%;
  aspect-ratio: 600/300;
}

.p-top-mv-splide .splide__slide picture {
  height: inherit;
  height: 100%;
}

.p-top-mv-splide .splide__slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-mv-swiper__inner {
  margin: 5% 5% 0 5%;
}

.p-top-mv-swiper .swiper-slide {
  display: block;
  width: 100%;
  aspect-ratio: 600/300;
}

.p-top-mv-swiper .swiper-slide picture {
  height: inherit;
  height: 100%;
}

.p-top-mv-swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-mv-swiper .swiper-button-prev,
.p-top-mv-swiper .swiper-button-next {
  text-rendering: initial;
}

.p-top-post__inner {
  margin: 5% 5% 0 5%;
}

.p-top-post .splide__slide {
  display: block;
  width: 100%;
}

.p-top-post .splide__slide a {
  display: block;
  aspect-ratio: 600/400;
}

.p-top-post .splide__slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-post .splide__pagination {
  bottom: -2em;
}

.p-top-post .splide__pagination__page.is-active {
  background-color: blue;
}

.p-top-post .swiper {
  padding-bottom: 20px;
}

.p-top-post .swiper-slide {
  display: block;
  width: 100%;
  aspect-ratio: 600/300;
}

.p-top-post .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-post .swiper-pagination {
  bottom: 0;
}

.p-top-post .swiper-button-prev,
.p-top-post .swiper-button-next {
  text-rendering: initial;
}

.p-top-post .slick-track {
  display: block;
  width: 100%;
}

.p-top-post .slick-slide {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 5px;
}

.p-top-post .slick-slide img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 600/300;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-post .slick-next,
.p-top-post .slick-prev {
  background: gray;
}

.p-top-works {
  padding-bottom: 3.125rem;
}

.p-top-works__inner {
  margin: 5% 5% 0 5%;
}

.p-top-works .splide__slide {
  display: block;
  width: 100%;
}

.p-top-works .splide__slide a {
  display: block;
  aspect-ratio: 600/400;
}

.p-top-works .splide__slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-works .splide__pagination {
  bottom: -2em;
}

.p-top-works .splide__pagination__page.is-active {
  background-color: blue;
}

.p-top-works .swiper {
  padding-bottom: 20px;
}

.p-top-works .swiper-slide {
  display: block;
  width: 100%;
  aspect-ratio: 600/300;
}

.p-top-works .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-works .swiper-pagination {
  bottom: 0;
}

.p-top-works .swiper-button-prev,
.p-top-works .swiper-button-next {
  text-rendering: initial;
}

.p-top-works .slick-track {
  display: block;
  width: 100%;
}

.p-top-works .slick-slide {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 5px;
}

.p-top-works .slick-slide img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 600/300;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-works .slick-next,
.p-top-works .slick-prev {
  background: gray;
}

.company {
  padding: 6.25rem 0 2.5rem;
}

.company-profile {
  margin-top: 2.5rem;
}

.company-profile__list {
  padding-bottom: 0.9375rem;
  display: flex;
  font-size: 0.8125rem;
  line-height: 1.3;
  letter-spacing: 0.08em;
  border-bottom: 1px solid #0000cd;
}

.company-profile__list + .company-profile__list {
  margin-top: 0.9375rem;
}

.company-profile__term {
  max-width: 7.5rem;
  width: 100%;
  flex-shrink: 0;
}

.page-fv {
  margin-top: 3.125rem;
  height: 9.375rem;
  background-image: url(./../images/top/img_amadoi_price03.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
@media screen and (min-width: 768px) {
  .page-fv {
    margin-top: 4.375rem;
    height: 12.5rem;
  }
}

.page-fv__inner {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 100%;
  padding-left: 10%;
}
@media screen and (min-width: 768px) {
  .page-fv__inner {
    padding-left: 20%;
  }
}

.page-fv__titleWrap {
  height: inherit;
}

.page-fv__title {
  display: flex;
  align-items: center;
  height: inherit;
}

.page-fv__title-ja {
  display: block;
  font-weight: 700;
  font-size: 1.625rem;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .page-fv__title-ja {
    font-size: 2.5rem;
  }
}

.privacy-policy {
  padding: 5rem 0 2.5rem;
}

.privacy-policy__inner {
  margin: auto;
  padding: 0 1.25rem;
  max-width: 37.5rem;
  width: 100%;
}

.privacy-policy__introduction {
  font-size: 1rem;
  line-height: 2;
}

.privacy-policy__items {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid #D0E8F2;
}

.privacy-policy__item {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #ccc;
}

.privacy-policy__item + .privacy-policy__item {
  margin-top: 1.25rem;
}

.privacy-policy__term {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
}

.privacy-policy__description {
  margin-top: 0.9375rem;
  font-size: 1rem;
  line-height: 2;
}

.privacy-policy__description-numbers {
  counter-reset: number;
}

.privacy-policy__description-text + .privacy-policy__description-numbers,
.privacy-policy__description-text + .privacy-policy__description-items {
  margin-top: 0.9375rem;
}

.privacy-policy__description-number {
  padding-left: 0.9375rem;
  text-indent: -0.9375rem;
}

.privacy-policy__description-number + .privacy-policy__description-number,
.privacy-policy__description-item + .privacy-policy__description-item {
  margin-top: 0.9375rem;
}

.privacy-policy__description-number::before {
  content: counter(number) ". ";
  counter-increment: number;
}

.privacy-policy__description-items {
  padding-left: 1.25rem;
  list-style: disc;
}

.privacy-policy__name {
  text-align: right;
  margin-top: 2.5rem;
}

.price {
  /* 方眼紙模様に必須のスタイル */
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px));
  background-size: 16px 16px;
  background-repeat: repeat;
  background-position: center center;
}

.price__lead {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .price__lead {
    margin-top: 1.25rem;
    font-size: 1.5rem;
  }
}

.price__items {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .price__items {
    margin-top: 2.5rem;
    display: grid;
    gap: 1.875rem 1.25rem;
    grid-template-columns: repeat(2, 1fr);
  }
}

.price__item {
  border-radius: 16px;
  background-color: #fdeff2;
  box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
}

.price__item + .price__item {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .price__item + .price__item {
    margin-top: 0;
  }
}

.price-item__imageWrap {
  aspect-ratio: 600/500;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .price-item__imageWrap {
    aspect-ratio: 600/300;
  }
}

.price-item__imageWrap img {
  overflow: hidden;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.price-item__title {
  padding: 0.3125rem 0.625rem;
  border: 6px double #e73562;
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .price-item__title {
    font-size: 1.75rem;
  }
}

.price-item__title-sub {
  text-align: center;
  padding-bottom: 0.3125rem;
  border-bottom: solid 2px #e73562;
  margin-top: 1.25rem;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.price-item__lead {
  margin-top: 0.625rem;
}

.price-item__body {
  padding: 0.625rem 0.9375rem;
}
@media screen and (min-width: 768px) {
  .price-item__body {
    padding: 1.25rem 1.875rem;
  }
}

.price-item__case {
  display: block;
  padding: 0.3125rem;
  border-radius: 8px;
  background-color: #333;
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.625rem;
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .price-item__case {
    font-size: 1.5rem;
  }
}

.price-item__name {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .price-item__name {
    font-size: 1.5rem;
  }
}

.price-item__name span {
  display: block;
  font-size: 1.25rem;
  color: #fff;
  text-shadow: 1px 1px 0 #e73562, -1px -1px 0 #e73562, -1px 1px 0 #e73562, 1px -1px 0 #e73562, 0px 1px 0 #e73562, -1px 0 #e73562, -1px 0 0 #e73562, 1px 0 0 #e73562;
}

.price-item__detail {
  margin-top: 0.625rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .price-item__detail {
    font-size: 1.5rem;
  }
}

.price-item__detail span {
  display: inline-block;
  font-size: 2.125rem;
  font-weight: 700;
  margin-right: 0.3125rem;
  color: #e00;
  background: linear-gradient(transparent 60%, yellow 30%);
}
@media screen and (min-width: 768px) {
  .price-item__detail span {
    font-size: 1.875rem;
  }
}

.price-detail-strong {
  color: #e00;
}

.price-item__ex {
  margin-top: 1.25rem;
  color: #e73562;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .price-item__ex {
    font-size: 1.25rem;
  }
}

.price-item__ex span {
  font-weight: 700;
  color: #e00;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .price-item__ex span {
    font-size: 1.5rem;
  }
}

.problem {
  background: repeating-linear-gradient(-45deg, #F8F9FA, #F8F9FA 10px, #fff 10px, #fff 50px);
}

.problem__items {
  margin-top: 1.25rem;
}

.problem__item {
  position: relative;
}
@media screen and (min-width: 768px) {
  .problem__item {
    font-size: 1.5rem;
    padding-left: 20%;
  }
}

.problem__item::before {
  content: "\f14a";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
  color: #ff8c00;
}

.problem__item + .problem__item {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .problem__item + .problem__item {
    margin-top: 1.25rem;
  }
}

.profile {
  background-color: #F8F9FA;
}

.profile__imageWrap {
  margin-top: 1.25rem;
  width: 100%;
  border-radius: 32px;
  overflow: hidden;
}

.profile__imageWrap img {
  margin-left: auto;
  margin-right: auto;
}

.profile__textWrap {
  padding: 1.25rem;
  border-radius: 16px;
  background-color: #D0E8F2;
  margin-top: 1.25rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .profile__textWrap {
    margin-top: 1.25rem;
    max-width: 37.5rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.profile__textWrap::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #D0E8F2;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  width: 20px;
  height: 10px;
}

.profile__textWrap::after {
  position: absolute;
  content: "“";
  top: 0;
  right: 10px;
  font-size: 2.5rem;
  font-weight: 700;
  color: #f5f5f5;
}
@media screen and (min-width: 768px) {
  .profile__textWrap::after {
    font-size: 3.75rem;
  }
}

@media screen and (min-width: 768px) {
  .profile__text {
    font-size: 1.375rem;
    line-height: 1.88;
  }
}

.profile__text + .profile__text {
  margin-top: 0.625rem;
}

.reason__items {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .reason__items {
    margin-top: 2.5rem;
  }
}

.reason__item {
  position: relative;
}
@media screen and (min-width: 768px) {
  .reason__item {
    font-size: 1.5rem;
  }
}

.reason__item + .reason__item {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .reason__item + .reason__item {
    margin-top: 2.5rem;
  }
}

.reason-item__title {
  border-left: 5px solid #ff8c00;
  padding-left: 0.625rem;
  background: #F8F9FA;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .reason-item__title {
    font-size: 1.625rem;
    padding-left: 1.25rem;
  }
}

.reason-item__title i {
  margin-right: 0.625rem;
  color: #ff8c00;
}

.reason-item__text {
  margin-top: 0.625rem;
  letter-spacing: 0.02em;
  line-height: 1.88;
}
@media screen and (min-width: 768px) {
  .reason-item__text {
    font-size: 1rem;
  }
}

.reason__imageWrap {
  aspect-ratio: 200/150;
  width: 100%;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .reason__imageWrap {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
  }
}

.reason__imageWrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.solution {
  padding-top: 5rem;
  position: relative;
}

.solution::before {
  position: absolute;
  content: "";
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 40px;
  background-color: #e73562;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
}
@media screen and (min-width: 768px) {
  .solution::before {
    width: 40%;
  }
}

.solution__imageWrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.25rem;
  aspect-ratio: 200/130;
  max-width: 31.25rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .solution__imageWrap {
    aspect-ratio: 200/100;
  }
}

.solution__imageWrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.solution__text {
  margin-top: 1.25rem;
  line-height: 1.8;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .solution__text {
    font-size: 1.5rem;
    margin-top: 2.5rem;
  }
}

.solution__text .is-line {
  background: linear-gradient(transparent 60%, yellow 30%);
  display: inline-block;
}

.solution__text span {
  font-weight: 700;
}

.solution__title-sub {
  background-color: #004aad;
  color: #fff;
  padding: 0.3125rem 1.25rem;
  font-style: oblique;
  margin-top: 1.25rem;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .solution__title-sub {
    font-size: 1.625rem;
  }
}

.solution__items {
  margin-top: 1.25rem;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width: 768px) {
  .solution__items {
    grid-template-columns: repeat(3, 1fr);
  }
}

.solution__item-text {
  padding: 0.625rem 0.3125rem;
  background-color: #333;
  color: #fff100;
  text-align: center;
  font-weight: 700;
}

.layout-page-top {
  position: fixed;
  right: 0.625rem;
  z-index: 10;
  bottom: 5.3125rem;
}
@media screen and (min-width: 768px) {
  .layout-page-top {
    bottom: 6.25rem;
    right: 1.25rem;
  }
}

.page-top {
  padding-top: 0.9375rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.125rem;
  height: 3.125rem;
  font-size: 0.75rem;
  line-height: 1;
  text-transform: uppercase;
  border-radius: 50%;
  background-color: #D0E8F2;
  cursor: pointer;
}

.page-top::before {
  content: "";
  position: absolute;
  top: 0.625rem;
  left: 50%;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #333;
  border-right: 0.125rem solid #333;
  transform: translateX(-50%) rotate(-45deg);
}

.voice__lead {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .voice__lead {
    font-size: 1.5rem;
  }
}

.voice__items {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .voice__items {
    margin-top: 2.5rem;
    display: grid;
    gap: 1.875rem 1.25rem;
    grid-template-columns: repeat(2, 1fr);
  }
}

.voice__item {
  margin-top: 1.25rem;
  padding: 0.625rem;
  border: solid 1px #333;
}

.voice-item__head {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.voice-item__imageWrap {
  width: 6.25rem;
  height: 6.25rem;
  border: solid 1px #0000cd;
  border-radius: 999px;
  overflow: hidden;
}

.voice-item__imageWrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.voice-item__body {
  margin-top: 0.625rem;
  padding: 0.625rem 1.25rem;
}

.voice-item__body-title {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .voice-item__body-title {
    font-size: 1rem;
  }
}

.voice-item__body-title.is-red {
  color: #e00;
}

.voice-item__text {
  padding-top: 0.3125rem;
  padding-bottom: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .voice-item__text {
    font-size: 1rem;
  }
}

.voice-item__text span {
  display: block;
  font-weight: 700;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .voice-item__text span {
    font-size: 1.125rem;
  }
}

.pagination {
  width: 100%;
}
.nav-links ul {
  display: flex;
  justify-content: center;
}

.nav-links ul li a,
.nav-links ul li span {
  color: #0000cd;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .nav-links ul li a,
  .nav-links ul li span {
    font-size: 1.5rem;
  }
}

.nav-links ul li span.current {
  color: #333;
}

.nav-links ul li {
  position: relative;
  margin: 0 0.3125rem;
}
@media screen and (min-width: 768px) {
  .nav-links ul li {
    margin: 0 0.625rem;
  }
}

.nav-links ul li a,
.nav-links ul li span {
  display: block;
  width: 100%;
  padding: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .nav-links ul li a,
  .nav-links ul li span {
    padding: 0.625rem;
  }
}

.nav-links ul li .nav-links ul .dots {
  padding-right: 0;
  padding-left: 0;
}
/*# sourceMappingURL=style.css.map */
