@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.3333333333vw;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}

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

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

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

.l-inner {
  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: 1250px;
  }
}

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

.l-post-connect {
  padding: 5rem 0;
}

@media screen and (min-width: 1000px) {
  .layout-desktop {
    max-width: 62.5rem;
    width: 100%;
    margin-left: 12.5rem;
    margin-right: auto;
    background-color: #fff;
    position: relative;
  }
}

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

.c-breadcrumb a {
  color: #00bfff;
  font-size: 0.75rem;
}

.c-breadcrumb span {
  font-size: 0.75rem;
}

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

.c-btn {
  display: inline-block;
  min-width: 200px;
  padding: 10px 20px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  background-color: #00bfff;
  border: 1px solid #00bfff;
  border-radius: 8px;
  transition: all 0.3s;
  box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 0.4);
}

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

.c-btn:hover {
  text-decoration: none;
  background-color: #fff;
  color: #00bfff;
  opacity: 1;
  cursor: pointer;
  transform: translate(5px, 5px);
  box-shadow: none;
}

.c-btn:hover::after {
  border-top: 1px solid #00bfff;
  border-right: 1px solid #00bfff;
  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: #00bfff;
}

.c-dot-text {
  background-image: radial-gradient(circle at center, orange 20%, transparent 20%); /* 点の色とサイズ調整 */
  background-position: top right; /* 点の位置 */
  background-repeat: repeat-x; /* 横方向に繰り返し */
  background-size: 1em 0.3em; /* 点の間隔とサイズ調整 */
  padding-top: 0.5em; /* 縦方向の位置調整 */
  font-weight: 700;
}

.c-marker-text {
  background: linear-gradient(transparent 10%, #ffff00 50%);
  font-weight: 700;
}

.c-marker-text-grad {
  background: linear-gradient(to right, #00bfff 0%, #ffff00 100%);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 50%;
}

.c-marker-text-str {
  background-image: repeating-linear-gradient(-45deg, #21ff00 0, #21ff00 3px, transparent 3px, transparent 6px);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 50%;
}

.c-section-title {
  text-align: center;
  line-height: 1.8;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .c-section-title {
    font-size: 1.5rem;
  }
}

.c-section-title-str {
  text-shadow: 0 0 5px white;
  padding: 0.3em 0.5em;
  background: -webkit-repeating-linear-gradient(-45deg, #cce7ff, #cce7ff 3px, #e9f4ff 3px, #e9f4ff 7px);
  background: repeating-linear-gradient(-45deg, #cce7ff, #cce7ff 3px, #e9f4ff 3px, #e9f4ff 7px);
  text-align: center;
  font-size: 1.125rem;
  letter-spacing: 0.5em;
}
@media screen and (min-width: 768px) {
  .c-section-title-str {
    font-size: 1.5rem;
  }
}

.c-section-title-double {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 55px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.125rem;
  letter-spacing: 0.5em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-section-title-double {
    font-size: 1.5rem;
  }
}

.c-section-title-double:before, .c-section-title-double:after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 45px;
  height: 3px;
  border-top: solid 1px black;
  border-bottom: solid 1px black;
}

.c-section-title-double:before {
  left: 0;
}

.c-section-title-double:after {
  right: 0;
}

.c-section-title-arrow {
  position: relative;
  padding: 0.9375rem 0.625rem;
  text-align: center;
  font-size: 1.125rem;
  letter-spacing: 0.5em;
  color: #fff;
  background-color: #00bfff;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-section-title-arrow {
    font-size: 1.5rem;
  }
}

.c-section-title-arrow::after {
  position: absolute;
  content: "";
  bottom: -19px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 20px;
  background-color: #00bfff;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
}

.c-section {
  padding: 1.25rem 0;
}
@media screen and (min-width: 768px) {
  .c-section {
    padding: 2.5rem 0;
  }
}

.c-section-lead {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
}

.c-title {
  font-size: 1.5rem;
  color: black;
}
@media screen and (min-width: 768px) {
  .c-title {
    color: red;
  }
}
@media screen and (min-width: 1000px) {
  .c-title {
    color: blue;
  }
}
@media screen and (min-width: 1200px) {
  .c-title {
    color: green;
  }
}

.c-title-bg {
  text-align: center;
  padding: 1rem 0.625rem;
  text-shadow: #2e8e05 2px 2px 2px;
  font-size: 1.125rem;
  color: #fff;
  background: linear-gradient(#0000cd, #0000ff, #0000cd);
}

.c-title-imageWrap {
  width: 70%;
  margin: 0.625rem auto;
}
@media screen and (min-width: 768px) {
  .c-title-imageWrap {
    width: -moz-fit-content;
    width: fit-content;
  }
}

.c-contents-title {
  font-size: 1rem;
  margin-top: 0.625rem;
}

.archive-blog__inner {
  margin: auto;
  padding: 0 1.25rem;
  max-width: 37.5rem;
  width: 100%;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .archive-blog__inner {
    padding: 0 1.5625rem;
    max-width: 75rem;
    display: flex;
  }
}

.archive-blog__list {
  border-top: 1px solid rgba(0, 191, 255, 0.2);
}
@media screen and (min-width: 768px) {
  .archive-blog__list {
    width: 65%;
    display: flex;
    flex-wrap: wrap;
    border-top: none;
  }
}

@media screen and (min-width: 768px) {
  .archive-blog__item {
    width: 50%;
  }
}

.archive-blog__link {
  padding: 0.625rem 0;
  display: flex;
  border-bottom: 1px solid rgba(35, 79, 94, 0.2);
}
@media screen and (min-width: 768px) {
  .archive-blog__link {
    padding: 1.25rem;
    height: 100%;
    justify-content: flex-end;
    flex-direction: column-reverse;
    border: 1px solid rgba(35, 79, 94, 0.2);
  }
}

@media screen and (min-width: 768px) {
  .archive-blog__item + .archive-blog__item .archive-blog__link {
    border-left: none;
  }
}

@media screen and (min-width: 768px) {
  .archive-blog__item:nth-of-type(2n+1) .archive-blog__link {
    border-left: 1px solid rgba(35, 79, 94, 0.2);
  }
}

@media screen and (min-width: 768px) {
  .archive-blog__item:nth-of-type(n+3) .archive-blog__link {
    border-top: none;
  }
}

.archive-blog__content {
  flex-grow: 1;
}
@media screen and (min-width: 768px) {
  .archive-blog__content {
    margin-top: 1rem;
    flex-grow: initial;
  }
}

.archive-blog__meta {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .archive-blog__meta {
    justify-content: space-between;
  }
}

.archive-blog__date {
  font-size: 0.875rem;
  line-height: 1;
}

.archive-blog__category {
  margin-left: 1.5rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  line-height: 1;
  color: #fff;
  background-color: #00bfff;
}

.archive-blog__title {
  margin-top: 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.archive-blog__img {
  margin-left: 1.25rem;
  max-width: 6.25rem;
  width: 100%;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .archive-blog__img {
    margin-left: 0;
    max-width: initial;
  }
}

.archive-blog__img img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .archive-blog__img img {
    aspect-ratio: 320/180;
  }
}

.archive-blog__sidebar {
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .archive-blog__sidebar {
    margin-top: 0;
    margin-left: 4rem;
    width: 35%;
  }
}

.archive-blog__sidebar-item {
  padding-top: 1.5rem;
  position: relative;
  border-top: 1px solid rgba(35, 79, 94, 0.2);
}

.archive-blog__sidebar-item + .archive-blog__sidebar-item {
  margin-top: 4rem;
}

.archive-blog__sidebar-item::before {
  content: "";
  position: absolute;
  top: -0.0625rem;
  left: 0;
  width: 5rem;
  height: 1px;
  background-color: #73B2C8;
}

.archive-blog__sidebar-title {
  padding-bottom: 1.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
  border-bottom: 1px solid rgba(35, 79, 94, 0.2);
}

.archive-blog__ranking-link {
  padding: 1.5rem 0;
  display: flex;
  border-bottom: 1px solid rgba(35, 79, 94, 0.2);
}

.archive-blog__ranking-title {
  flex-grow: 1;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.3;
}

.archive-blog__ranking-img-wrap {
  margin-left: 1rem;
  position: relative;
  max-width: 4rem;
  width: 100%;
  flex-shrink: 0;
}

.archive-blog__ranking-img {
  width: 100%;
}

.archive-blog__ranking-img img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

.archive-blog__ranking-number {
  position: absolute;
  top: -0.9375rem;
  right: -0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.875rem;
  line-height: 1;
  color: #fff;
  border-radius: 50%;
}

.archive-blog__ranking-item:nth-of-type(1) .archive-blog__ranking-number {
  background-color: #52BCDE;
}

.archive-blog__ranking-item:nth-of-type(2) .archive-blog__ranking-number {
  background-color: #73B2A0;
}

.archive-blog__ranking-item:nth-of-type(3) .archive-blog__ranking-number {
  background-color: #A4B4B9;
}

.archive-blog__ranking-item:nth-of-type(4) .archive-blog__ranking-number {
  background-color: #5C7279;
}

.archive-blog__category-link {
  padding: 1.5rem 1.875rem 1.5rem 0;
  position: relative;
  display: block;
  font-size: 1.125rem;
  line-height: 1.3;
  border-bottom: 1px solid #F0ECF4;
}

.archive-blog__category-link::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 0.125rem solid #333;
  border-right: 0.125rem solid #333;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}

.archive-blog__tag-list {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.archive-blog__tag-link {
  font-size: 0.75rem;
  line-height: 1;
}

.banner {
  padding: 1.25rem 0;
}

.banner__imageWrap {
  margin-top: 1.25rem;
  width: 100%;
  aspect-ratio: 400/210;
  box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
  border: solid 5px #333;
}
@media screen and (min-width: 768px) {
  .banner__imageWrap {
    max-width: 50rem;
    margin-left: auto;
    margin-right: auto;
    aspect-ratio: 600/320;
  }
}

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

.cta {
  padding: 2.5rem 0;
  background-size: 20px 20px;
}

.cta-title {
  position: relative;
  padding: 0.625rem 0.625rem calc(1rem + 10px);
  background: #ffdbed;
  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;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  border: solid 5px #e00;
  box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 768px) {
  .cta__imageWrap {
    max-width: 50rem;
    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;
  margin-right: auto;
  margin-left: auto;
  max-width: 15.625rem;
  width: 100%;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .cta__imageWrap-sub {
    max-width: 31.25rem;
  }
}

.cta__text {
  margin-top: 1.25rem;
  text-align: center;
}

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

.cta__imageWrap-front {
  margin-top: 0.625rem;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .cta__imageWrap-front {
    max-width: 50rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.desktop-cta {
  display: none;
}
@media screen and (min-width: 1000px) {
  .desktop-cta {
    display: block;
    position: fixed;
    top: 20%;
    right: 50px;
    padding: 1.25rem;
    border-radius: 16px;
    background-color: #fff;
    width: 18.75rem;
  }
}

.desktop-ctaBox {
  margin-bottom: 3.75rem;
}

.desktop-cta-lead {
  text-align: center;
  font-weight: 700;
}

.desktop-ctaImage {
  width: 80%;
  margin-left: auto;
}

.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: #e00;
  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: #e00;
}

.footer {
  padding: 2.8125rem 0 7.5rem;
  background-color: #f5f6f7;
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 3.75rem 0 7.5rem;
  }
}

.footer__inner {
  margin: auto;
  padding: 0 0.9375rem;
  max-width: 39.375rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    padding: 0 1.5625rem;
    max-width: 78.125rem;
  }
}

.footer__wrap {
  display: flex;
  flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .footer__wrap {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media screen and (min-width: 768px) {
  .footer__right {
    max-width: 34.375rem;
    width: 100%;
  }
}

.footer__nav-items {
  display: grid;
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width: 768px) {
  .footer__nav-items {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer__nav-item a {
  padding: 0.9375rem 0.625rem;
  position: relative;
  display: block;
  font-size: 0.75rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .footer__nav-item a {
    font-size: 0.875rem;
  }
}

.footer__nav-item a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1.5625rem;
  height: 1px;
  background: #333;
}
@media screen and (min-width: 768px) {
  .footer__nav-item a::before {
    width: 2.1875rem;
  }
}

.footer__sns {
  margin-top: 1.5625rem;
  display: flex;
  justify-content: left;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .footer__sns {
    margin-top: 2.5rem;
  }
}

.footer__sns-icon {
  display: block;
  max-width: 1.875rem;
  width: 100%;
}

.footer__sns-icon + .footer__sns-icon {
  margin-left: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .footer__sns-icon + .footer__sns-icon {
    margin-left: 1.875rem;
  }
}

.footer__sns-icon i {
  font-size: 1.25rem;
  color: #00bfff;
}

.footer__sns-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

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

.footer__logo {
  max-width: 12.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    max-width: 13.75rem;
  }
}

.footer__logo a {
  padding: 0.625rem 0;
  display: block;
}
@media screen and (min-width: 768px) {
  .footer__logo a {
    padding: 0.9375rem 0;
  }
}

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

.footer__address {
  margin-top: 0.625rem;
  font-size: 0.75rem;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .footer__address {
    margin-top: 0.9375rem;
    font-size: 0.875rem;
  }
}

.footer__policy {
  margin-top: 1.25rem;
  padding: 0.625rem 0;
  display: inline-block;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .footer__policy {
    margin-top: 1.5625rem;
    font-size: 0.875rem;
  }
}

.footer__copyright {
  margin-top: 0.625rem;
  display: block;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    margin-top: 1.5625rem;
    text-align: right;
  }
}

.footer-fixed-btnArea {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6.25rem;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 999;
}

.footer-fixed-btn__lead {
  text-align: center;
  padding-top: 0.625rem;
  font-weight: 700;
}

.footer-fixed-btnBox {
  display: flex;
  gap: 0.625rem;
  padding: 0.625rem;
  justify-content: center;
}

.footer-fixed-btnWrap {
  width: 50%;
}
@media screen and (min-width: 768px) {
  .footer-fixed-btnWrap {
    max-width: 18.75rem;
    width: 100%;
  }
}

.footer-fixed-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #FFEB02 0%, #FFEB02 50%, #F2DF00 50%, #F2DF00 100%);
  width: 100%;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  z-index: 10;
  max-width: 18.75rem;
  width: 100%;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
  padding: 0.625rem;
}

.footer-fixed-btn.is-tell {
  background: linear-gradient(180deg, #ee7800 0%, #ee7800 50%, #ea5506 50%, #ea5506 100%);
  color: #fff;
  border-left: initial;
}

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

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

.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;
  color: #fff;
  text-transform: uppercase;
  border-radius: 50%;
  background-color: #00bfff;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .page-top {
    width: 5rem;
    height: 5rem;
    font-size: 0.875rem;
  }
}

.page-top::before {
  content: "";
  position: absolute;
  top: 0.625rem;
  left: 50%;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: translateX(-50%) rotate(-45deg);
}
@media screen and (min-width: 768px) {
  .page-top::before {
    top: 1.25rem;
  }
}

.footer__recaptcha {
  font-size: 0.625rem;
}

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

.header {
  height: 4rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .header {
    height: 5rem;
  }
}

.header__inner {
  padding-left: 0.9375rem;
  height: inherit;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding-left: 2.1875rem;
  }
}

.header__logo {
  max-width: 13.75rem;
  width: 100%;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .header__logo {
    max-width: 18.75rem;
  }
}

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

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

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

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

.header__nav-item,
.header__nav-modal-wrap {
  height: inherit;
}

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

.header__nav-item > a,
.header__nav-modal-wrap > p {
  padding: 0 0.9375rem;
  height: inherit;
  display: flex;
  align-items: center;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
  color: #333;
}

.header__nav-modal-wrap > p {
  transition: 0.3s;
}

.header__nav-modal {
  padding: 0.625rem 0;
  position: absolute;
  top: 5rem;
  left: -0.9375rem;
  transform: rotateX(90deg);
  max-width: 25rem;
  width: 100%;
  background-color: #e9f4ff;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}

.header__nav-modal-wrap:hover > .header__nav-modal {
  transform: rotateX(0deg);
  opacity: 1;
  visibility: visible;
}

.header__nav-modal-item a {
  padding: 0.9375rem 0 0.9375rem 3.125rem;
  position: relative;
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1;
  color: #333;
}

.header__nav-modal-item a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 2.5rem;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 0.125rem solid #333;
  border-right: 0.125rem solid #333;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}

@media screen and (min-width: 768px) {
  .header__nav-modal-item a:hover::before {
    opacity: 0.8;
  }
}

.header__nav-item.header__nav-item--contact a {
  padding: 0 3.125rem;
  position: relative;
  position: relative;
  color: #fff;
  text-align: center;
  background-color: #00bfff;
}

.header__nav-item.header__nav-item--contact a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.9375rem;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  background-image: url(./../images/common/mail-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.header__nav-item.header__nav-item--contact a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  width: 0.3125rem;
  height: 0.3125rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .header__nav-item.header__nav-item--contact a::after {
    width: 0.625rem;
    height: 0.625rem;
  }
}

.header__nav-item.header__nav-item--contact-sec a {
  padding: 0 3.125rem;
  position: relative;
  position: relative;
  color: #fff;
  text-align: center;
  background-color: #00bfff;
}

.header__nav-item.header__nav-item--contact-sec a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.9375rem;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  background-image: url(./../images/common/mail-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.header__nav-item.header__nav-item--contact-sec a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  width: 0.3125rem;
  height: 0.3125rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .header__nav-item.header__nav-item--contact-sec a::after {
    width: 0.625rem;
    height: 0.625rem;
  }
}

.header__hamburger {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  position: relative;
  z-index: 999;
  width: 4rem;
  height: inherit;
  background-color: #00bfff;
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .header__hamburger {
    display: none;
  }
}

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

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

.header__hamburger span:nth-of-type(2) {
  top: -0.5rem;
}

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

.header__hamburger p {
  position: relative;
  left: 50%;
  top: 0.5rem;
  transform: translateX(-50%);
  display: block;
  width: 100%;
  height: 1px;
  transition: 0.5s;
  text-align: center;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}

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

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

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

.header__drawer {
  margin-top: 4rem;
  padding-bottom: 6.875rem;
  display: none;
  position: absolute;
  z-index: 900;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #e9f4ff;
  overflow-y: scroll;
  scrollbar-width: none;
}

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

.header__drawer-item {
  border-bottom: 1px solid #fff;
}

.header__drawer-item.header__drawer-item--contact {
  margin-top: 2.5rem;
  margin-left: 2rem;
  border-bottom: none;
}

.header__drawer-item.header__drawer-item--contact-sec {
  margin-top: 2.5rem;
  margin-left: 2rem;
  border-bottom: none;
}

.header__drawer-item > a,
.header__drawer-accordion-title {
  padding: 1.25rem 2rem;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  cursor: pointer;
}

.header__drawer-item.header__drawer-item--contact a {
  padding: 0.9375rem 0;
  position: relative;
  max-width: 11.25rem;
  width: 100%;
  text-align: center;
  background-color: #ffff00;
  font-weight: 700;
  border: solid 2px #333;
}

.header__drawer-item.header__drawer-item--contact a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1.25rem;
  transform: translateY(-50%);
  width: 0.9375rem;
  height: 0.9375rem;
  display: inline-block;
  background-image: url(./../images/common/mail-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.header__drawer-item.header__drawer-item--contact a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}

.header__drawer-item.header__drawer-item--contact-sec a {
  padding: 0.9375rem 0;
  position: relative;
  max-width: 11.25rem;
  width: 100%;
  color: #fff;
  text-align: center;
  background-color: #00bfff;
}

.header__drawer-item.header__drawer-item--contact-sec a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1.25rem;
  transform: translateY(-50%);
  width: 0.9375rem;
  height: 0.9375rem;
  display: inline-block;
  background-image: url(./../images/common/mail-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.header__drawer-item.header__drawer-item--contact-sec a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}

.header__drawer-accordion-title {
  position: relative;
}

.header__drawer-accordion-title::before,
.header__drawer-accordion-title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  width: 0.75rem;
  height: 0.125rem;
  display: block;
  background: #333;
  transition: 0.3s;
}

.header__drawer-accordion-title::before {
  transform: translateY(-50%);
}

.header__drawer-accordion-title::after {
  transform: translateY(-50%) rotate(90deg);
}

.header__drawer-accordion-title.is-open::after {
  transform: translateY(-50%);
}

.header__drawer-accordion-list {
  padding-bottom: 0.625rem;
  display: none;
}

.header__drawer-accordion-list a {
  padding: 0.625rem 2rem;
  display: block;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.05em;
}

.lp-comparison {
  padding-bottom: 1.25rem;
}

.lp-comparison__infoBox {
  margin-top: 2.5rem;
  font-size: 0.75rem;
}

@media screen and (min-width: 768px) {
  .lp-comparison__info-sp {
    display: none;
  }
}

.lp-comparison__wrap {
  overflow-x: scroll;
}

.lp-comparison__table {
  border-collapse: collapse;
  margin: 0 auto;
  padding: 0;
  width: 37.5rem;
  table-layout: fixed;
  margin-top: 0.625rem;
  font-size: 0.9375rem;
}

.lp-comparison__table tr {
  background-color: #fff;
  padding: 0.625rem;
  border: 2px solid #eee;
}

.lp-comparison__table th {
  padding: 0.7em 0.5em;
  border-right: 2px solid #fff;
}

.lp-comparison__table td {
  padding: 0.7em 0.5em;
  border-right: 2px solid #eee;
  text-align: center;
}

.lp-comparison__table th {
  font-size: 0.875rem;
}

.lp-comparison__table thead tr {
  background-color: #50535d;
  color: #fff;
}

.lp-comparison__table tbody th {
  border-right: 2px solid #eee;
}

.lp-comparison__table .text-bold {
  color: #e00;
  font-weight: 700;
  font-size: 1.1875rem;
}

.lp-comparison__table .price span {
  font-size: 0.6em;
}

.lp-comparison__table .bg {
  background: #ffff00;
}

.lp-comparison__lead {
  text-align: center;
  margin-top: 1.25rem;
  padding: 0.9375rem 0.3125rem;
  border: solid 2px #00bfff;
  border-radius: 8px;
}

.lp-danger {
  background-color: #696969;
  padding-top: 0;
}

.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;
}

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

.maker__imageWrap {
  margin-top: 2.5rem;
}

.lp-merit__lead {
  text-align: center;
  font-weight: 700;
  font-size: 1.25rem;
  color: #e00;
}

.lp-merit__items {
  margin-top: 3.125rem;
}

.lp-merit__item + .lp-merit__item {
  margin-top: 3.125rem;
}

.lp-part__lead {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  color: #00bfff;
}

.lp-part__items {
  margin-top: 1.25rem;
}

.lp-part__item {
  padding: 0.625rem;
  display: flex;
}

.lp-part__item + .lp-part__item {
  margin-top: 1.25rem;
}

.lp-part__item:not(:first-child) {
  border-top: solid 1px #e9f4ff;
}

.lp-part__item-image {
  width: 6.25rem;
  height: 5rem;
  aspect-ratio: 100/80;
}
@media screen and (min-width: 768px) {
  .lp-part__item-image {
    width: 12.5rem;
    height: 10rem;
  }
}

.lp-part__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.lp-part__item-textBox {
  margin-left: 1.25rem;
  width: calc(100% - 5rem);
}

.lp-part__item-text-head {
  font-weight: 700;
}

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

.lp-part__item-text a {
  color: #00bfff;
  text-decoration: underline;
}

.lp-problem__lead {
  text-align: center;
  font-weight: 700;
  font-size: 1.25rem;
}

.lp-problem__lead span {
  color: #e00;
}

.lp-problem__items {
  margin-top: 2.5rem;
  max-width: 18.75rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.lp-problem__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lp-problem__item + .lp-problem__item {
  margin-top: 1.25rem;
}

.lp-problem__item-image {
  width: 50px;
  height: 50px;
  aspect-ratio: 50/50;
}

.lp-problem__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.lp-problem__item__textBox {
  padding: 0.625rem 0.9375rem;
  background-color: #e9f4ff;
  border-radius: 8px;
  position: relative;
}

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

.lp-problem__item-text span {
  color: #e00;
  font-weight: 700;
}

.lp-reason__lead {
  text-align: center;
  font-size: 1.375rem;
  font-weight: 700;
  color: #00bfff;
}

.lp-reason__items {
  margin-top: 1.25rem;
}

.lp-reason__item {
  padding: 0.625rem;
  border-radius: 8px;
  background-color: #e9f4ff;
}

.lp-reason__item + .lp-reason__item {
  margin-top: 1.25rem;
}

.lp-reason__item-title {
  text-align: center;
  font-weight: 700;
  color: #00bfff;
}

.lp-reason__item-image {
  margin-top: 0.625rem;
  align-self: 400/300;
}

.lp-reason__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.lp-reason__item-text {
  line-height: 1.8;
}

.mv {
  position: relative;
  z-index: 1;
  margin-top: 4rem;
}

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

.mv__inner {
  height: inherit;
  min-height: inherit;
}

.mv__title-wrap {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  color: #333;
  text-align: center;
}

.mv__main-title {
  font-size: 2.5rem;
}
@media screen and (min-width: 768px) {
  .mv__main-title {
    font-size: 3.75rem;
  }
}

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

.mv__container {
  position: relative;
  margin-inline: auto;
  max-width: 62.5rem;
  width: 100%;
  position: relative;
}

.mv__swiper,
.mv__swiper .swiper-img,
.mv__swiper .swiper-img img {
  height: inherit;
  min-height: inherit;
}

.mv__swiper .swiper-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.mv__btnWrap {
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
}

.mv__btnWrap a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  background-color: #333;
  color: #fff;
  max-width: 18.75rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .mv__btnWrap a {
    margin-top: 2.5rem;
  }
}

.mv .swiper {
  padding-bottom: 2.5rem;
}

/* 前への矢印 */
.swiper-button-prev {
  left: 0;
  background-color: #00bfff;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
}

/* 次への矢印 */
.swiper-button-next {
  right: 0;
  background-color: #00bfff;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
}

/* ページネーション */
.mv .swiper-pagination-bullet {
  border: solid 1px #333;
}

.mv .swiper-pagination-bullet-active {
  background: #00bfff;
}

.mv-bottom__inner {
  max-width: 43.75rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.mv-bottom__image {
  aspect-ratio: 1400/400;
}

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

.p-404 {
  padding: 12.5rem 0;
}

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

.p-404__btn {
  text-align: 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: 0.5em 2em;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  background: #00bfff;
  color: #333;
  -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;
}

.wpcf7-spinner {
  position: absolute;
}

.p-contact-thanks {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}

.contact-cta {
  margin-top: 2.5rem;
}

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

.contact-cta__image {
  margin-top: 0.625rem;
  max-width: 43.75rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

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

.p-pager-list__btn a {
  display: inline-block;
  padding: 10px;
  color: #00bfff;
  border-radius: 10px;
  border: 1px solid #00bfff;
  font-size: 0.75rem;
}

.p-post-article {
  padding: 4.375rem 0 2.5rem;
}

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

.p-post-article__title {
  font-size: 3rem;
  color: #00bfff;
}

.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: #00bfff;
  border: 1px solid #00bfff;
  font-size: 0.625rem;
}

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

.p-post-article__content {
  padding: 1.25rem 0 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;
  font-size: 0.75rem;
}

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

.p-post-article__content h1 {
  font-size: 1.75rem;
  padding-bottom: 0.625rem;
  border-bottom: solid 2px #00bfff;
  color: #333;
}

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

.p-post-article__contents h3 {
  margin: 1.875rem 0 0.9375rem;
  padding-left: 0.625rem;
  color: #00bfff;
  font-size: 1.0625rem;
  border-left: 3px solid #00bfff;
}

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

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

.p-post-article__contents p {
  font-size: 0.9375rem;
  line-height: 1.8;
}

.p-post-article__contents a {
  color: #00bfff;
  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: #00bfff;
  border: 1px solid #00bfff;
  border-radius: 32px;
  font-size: 0.625rem;
}

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

.p-post-connect__title {
  font-size: 1.5rem;
  color: #00bfff;
}

.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: #00bfff;
}

.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 {
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .p-top-mv-splide {
    margin-top: 5rem;
  }
}

.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 .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: 4.375rem;
}
@media screen and (min-width: 768px) {
  .p-top-post .swiper {
    padding-bottom: 5rem;
  }
}

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

.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;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  font-size: 1.25rem;
  color: #f5f5f5;
}

.swiper-pagination-bullet-active {
  background: #000080;
}

#post .swiper-button-next,
#post .swiper-button-prev {
  top: 40%;
  background-color: rgba(0, 191, 255, 0.7);
}

.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;
}

.page-area__text {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  max-width: 43.75rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .page-area__text {
    font-size: 1.125rem;
    margin-top: 1.25rem;
  }
}

.page-area__image {
  max-width: 31.25rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1.25rem;
}

.company {
  padding: 6.25rem 0 2.5rem;
}
@media screen and (min-width: 768px) {
  .company {
    padding: 15.625rem 0 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 #00bfff;
}

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

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

.p-contact {
  padding-top: 1.25rem;
}

.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: 0.5em 2em;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  background: #00bfff;
  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;
}

.wpcf7-spinner {
  position: absolute;
}

.page-guarentee-content01 {
  background: -webkit-repeating-linear-gradient(-45deg, #cce7ff, #cce7ff 3px, #e9f4ff 3px, #e9f4ff 7px);
  background: repeating-linear-gradient(-45deg, #cce7ff, #cce7ff 3px, #e9f4ff 3px, #e9f4ff 7px);
}

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

.page-guarentee-content01__title span {
  color: #00bfff;
}

.page-guarentee-content01__text {
  text-align: center;
  margin-top: 1.25rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .page-guarentee-content01__text {
    font-size: 1.125rem;
  }
}

.page-guarentee-content01__text span {
  font-weight: 700;
  color: #00bfff;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .page-guarentee-content01__text span {
    font-size: 1.25rem;
  }
}

.page-guarentee-content02__inner {
  max-width: 43.75rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.page-guarentee-content02__lead {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .page-guarentee-content02__lead {
    font-size: 1.125rem;
    line-height: 2;
  }
}

.page-guarentee-content02__imageWrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-message__image {
  aspect-ratio: 500/380;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .page-message__image {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
  }
}

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

.page-message__text {
  margin-top: 1.25rem;
  padding: 0.625rem;
  border: solid 2px #00bfff;
  border-radius: 8px;
  line-height: 2;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .page-message__text {
    max-width: 43.75rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.page-message__text span {
  font-weight: 700;
  font-size: 1rem;
}

.page-mv {
  position: relative;
  margin-top: 4rem;
  max-width: 43.75rem;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.page-mv__inner {
  height: inherit;
  min-height: inherit;
}

.page-mv__title-wrap {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-mv__title-wrap {
    left: calc(50% - min(50vw, 34.375rem));
    transform: translateY(-50%);
    width: initial;
  }
}

.page-mv__main-title {
  font-size: 1.5rem;
  text-align: left;
  padding-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .page-mv__main-title {
    font-size: 3.75rem;
  }
}

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

.page-mv__img,
.page-mv__img img {
  height: inherit;
  min-height: inherit;
}

.page-mv__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.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 #e9f4ff;
}

.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;
}

.page-price-camp {
  padding-bottom: 1.25rem;
}

.page-price-camp__inner {
  margin-top: 1.25rem;
  max-width: 43.75rem;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.page-price-camp__lead {
  text-align: center;
}

.page-price-camp__lead span {
  color: #e00;
  font-size: pem(22);
  font-weight: 700;
}

.page-price-camp__items {
  margin-top: 1.25rem;
  padding: 0.625rem 1.25rem;
  border: solid 2px #00bfff;
  border-radius: 8px;
}

.page-price-camp__item {
  font-weight: 700;
}

.page-price-content01 {
  background-color: #e9f4ff;
  padding-bottom: 2.5rem;
}

.page-price-content01__lead {
  margin-top: 1.875rem;
}

.page-price-content01Box {
  margin-top: 1.25rem;
}

.page-price-content01Box + .page-price-content01Box {
  margin-top: 2.5rem;
}

.page-price-content01__title {
  text-align: center;
  font-weight: 700;
  font-size: 1.125rem;
  padding-bottom: 0.625rem;
  border-bottom: 3px solid #00bfff;
}

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

.page-price-content01__item {
  padding: 0.625rem;
  background-color: #fff;
  border-radius: 8px;
  border: solid 1px #00bfff;
}

.page-price-content01__item-image {
  aspect-ratio: 100/70;
}

.page-price-content01__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-price-content01__item-title {
  text-align: center;
  font-weight: 700;
  font-size: 1.0625rem;
}

.page-price-content01__item-textBox {
  margin-top: 1.25rem;
  gap: 1.25rem;
}

.page-price-content01__item-desc {
  padding: 0.3125rem 0.625rem;
  background-color: #e9f4ff;
  border-radius: 32px;
  text-align: center;
  font-size: 0.625rem;
}

.page-price-content01__item-ex {
  font-size: 0.625rem;
  margin-top: 0.4375rem;
  text-align: center;
}

.page-price-content01__item-ex span {
  font-size: 1.5rem;
  letter-spacing: -0.05em;
  font-weight: 700;
  color: #e00;
}

.page-problem__title {
  background-color: #00bfff;
}

.page-problem-list {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .page-problem-list {
    display: flex;
    flex-wrap: wrap;
  }
}

.page-problem-list__item {
  background-color: #fff;
  box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.05);
  border: solid 2px #333;
}
@media screen and (min-width: 768px) {
  .page-problem-list__item {
    max-width: calc(33.333% - 4.375rem * 2 / 3);
    width: 100%;
  }
}

.page-problem-list__item + .page-problem-list__item {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .page-problem-list__item + .page-problem-list__item {
    margin-top: 0;
    margin-left: 4.375rem;
  }
}

@media screen and (min-width: 768px) {
  .page-problem-list__item:nth-of-type(3n+1) {
    margin-left: 0;
  }
}

@media screen and (min-width: 768px) {
  .page-problem-list__item:nth-of-type(n+4) {
    margin-top: 4.375rem;
  }
}

.page-problem-list__item-img {
  width: 100%;
}

.page-problem-list__item-img img {
  width: 100%;
  aspect-ratio: 360/200;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-problem-list__item-content {
  padding: 1.25rem 1.5625rem 1.5625rem;
}
@media screen and (min-width: 768px) {
  .page-problem-list__item-content {
    padding: 1.5625rem 1.875rem 1.875rem;
  }
}

.page-problem-list__item-title {
  margin-top: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  color: #e00;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-problem-list__item-title {
    margin-top: 0.625rem;
    font-size: 1.5rem;
  }
}

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

.page-reason-content01__items {
  margin-top: 1.25rem;
  max-width: 43.75rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.page-reason-content01__item {
  display: flex;
  align-items: center;
  justify-content: start;
}

.page-reason-content01__item-num {
  width: 2.5rem;
  height: 2.1875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: #fff;
  border-radius: 999px;
  background-color: #00bfff;
  margin-right: 0.625rem;
}
@media screen and (min-width: 768px) {
  .page-reason-content01__item-num {
    width: 3.125rem;
    height: 3.125rem;
    margin-right: 1.25rem;
  }
}

.page-reason-content01__item + .page-reason-content01__item {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .page-reason-content01__item + .page-reason-content01__item {
    margin-top: 1.875rem;
  }
}

.page-reason-content01__item-text {
  font-size: 0.9375rem;
  font-weight: 700;
  max-width: 25rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .page-reason-content01__item-text {
    font-size: 1.125rem;
    max-width: 31.25rem;
  }
}

.page-reason-content01__info {
  font-size: 0.625rem;
  margin-top: 0.625rem;
  text-align: right;
}

.page-reason-content02__inner {
  max-width: 43.75rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.page-reason-content02__imageWrap {
  aspect-ratio: 400/200;
}

.page-reason-content02__imageWrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

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

.page-reason-content02__item {
  display: flex;
  justify-content: start;
  align-items: center;
}

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

.page-reason-content02__item i {
  margin-right: 0.625rem;
  color: #00bfff;
  font-size: 1.75rem;
}
@media screen and (min-width: 768px) {
  .page-reason-content02__item i {
    margin-right: 1.25rem;
    font-size: 1.875rem;
  }
}

.page-reason-content02__item-text {
  font-size: 1rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .page-reason-content02__item-text {
    font-size: 1.25rem;
  }
}

.page-reason-content03 {
  margin-top: 1.875rem;
}

.page-reason-content03__inner {
  max-width: 43.75rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.page-reason-title {
  padding: 0.9375rem 0.625rem;
  background-color: #00bfff;
  font-weight: 700;
  font-size: 1.125rem;
  color: #fff;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-reason-title {
    font-size: 1.5rem;
  }
}

.page-reason-title-num {
  position: absolute;
  content: "";
  top: -45px;
  left: 10px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #e9f4ff;
  color: #00bfff;
}
@media screen and (min-width: 768px) {
  .page-reason-title-num {
    left: 30%;
  }
}

.page-reason-title-sub {
  margin-top: 0.625rem;
  padding: 0.3125rem 0.9375rem;
  background: transparent;
  border-left: solid 5px #00bfff;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .page-reason-title-sub {
    font-size: 1.125rem;
    margin-top: 1.25rem;
  }
}

.page-reason-content03__box-textBox {
  margin-top: 0.625rem;
}

.page-reason-content03__box-text {
  font-size: 0.9375rem;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .page-reason-content03__box-text {
    font-size: 1.0625rem;
    line-height: 2;
  }
}

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

.page-reason-content03__imageWrap {
  margin-top: 1.25rem;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  aspect-ratio: 400/400;
}
@media screen and (min-width: 768px) {
  .page-reason-content03__imageWrap {
    width: 50%;
  }
}

.page-reason-content03__imageWrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-reason-content03__items {
  margin-top: 1.25rem;
  font-size: 0.75rem;
  padding: 0.625rem;
  border: solid 1px #00bfff;
  border-radius: 8px;
}
@media screen and (min-width: 768px) {
  .page-reason-content03__items {
    font-size: 1rem;
  }
}

.page-reason-content03__item {
  padding-left: 0.9375rem;
  position: relative;
  margin-top: 0.625rem;
}

.page-reason-content03__item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 0.3125rem;
  height: 0.3125rem;
  border-radius: 999px;
  background-color: #00bfff;
}

.page-reason-content03__item-head {
  font-weight: 700;
  font-size: 1rem;
  position: static;
}

.page-reason-content03__btnArea {
  margin-top: 1.25rem;
}

.page-reason-content03__btnWrap {
  margin-top: 0.9375rem;
  display: flex;
  justify-content: center;
}

.page-reason-content03__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  width: 100%;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  z-index: 10;
  max-width: 18.75rem;
  width: 100%;
  padding: 0.625rem;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
}

.page-reason-content03__btn.--is-mail {
  background: linear-gradient(180deg, #FFEB02 0%, #FFEB02 50%, #F2DF00 50%, #F2DF00 100%);
  color: #333;
}

.page-reason-content03__btn.--is-tel {
  background: linear-gradient(180deg, #ee7800 0%, #ee7800 50%, #ea5506 50%, #ea5506 100%);
}

.page-reason-content03__btn.--is-line {
  background: linear-gradient(180deg, #7fff00 0%, #7fff00 50%, #00ff00 50%, #00ff00 100%);
  color: #333;
}

@media screen and (min-width: 768px) {
  .page-recommendation__inner {
    max-width: 37.5rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.page-recommendation__image {
  margin-top: 0.625rem;
  aspect-ratio: 400/230;
}

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

.page-recommendation__lead {
  text-align: center;
  padding-top: 3.75rem;
  line-height: 1.8;
  position: relative;
}

.page-recommendation__lead::before {
  position: absolute;
  content: "";
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: 12.5rem;
  height: 1.25rem;
  background-image: linear-gradient(0deg, rgb(65, 164, 253), rgb(14, 244, 255));
  clip-path: polygon(100% 0, 0 0, 50% 100%);
}

.page-recommendation__lead span {
  font-size: 1.25rem;
}

.page-recommendation__items {
  margin-top: 2.5rem;
}

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

.page-recommendation__item + .page-recommendation__item {
  margin-top: 1.25rem;
}

.page-recommendation__item i {
  display: inline-block;
  margin-right: 0.3125rem;
  color: #00bfff;
}

.page-service__content {
  margin-top: 5rem;
  padding-bottom: 2.5rem;
}

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

.page-service-content__item {
  border: solid 2px #dcdcdc;
}

.page-service-content__item + .page-service-content__item {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .page-service-content__item + .page-service-content__item {
    margin-top: initial;
  }
}

.page-service-content__item-title {
  padding: 0.625rem 1.25rem;
  border-bottom: 3px solid #00bfff;
  background-color: #f4f4f4;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .page-service-content__item-title {
    font-size: 1.25rem;
  }
}

.page-service-content__itemWrap {
  padding: 1.25rem 0.625rem;
}
.page-service-content__item-imageWrap {
  width: 100%;
  aspect-ratio: 640/320;
}
.page-service-content__item-imageWrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-service-content__item-textWrap {
  width: 100%;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .page-service-content__item-textWrap {
    width: 60%;
  }
}

.page-service-content__item-lead {
  font-weight: 700;
}

.page-service-content__item-text {
  margin-top: 0.3125rem;
  font-size: 0.875rem;
}

.page-service-content__item-text i {
  padding-right: 0.3125rem;
}

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

.page-solution__imageWrap img {
  width: 70%;
}
@media screen and (min-width: 768px) {
  .page-solution__imageWrap img {
    width: 40%;
  }
}

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

.page-voice__lead {
  text-align: center;
  margin-top: 0.625rem;
  font-size: 0.875rem;
  line-height: 2;
  color: #00bfff;
  font-weight: 700;
}

.page-voice__pager {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
}

.page-voice__pager a {
  color: #00bfff;
  padding: 0.3125rem;
}

.page-voice__pager a,
.page-voice__pager span {
  font-size: 0.875rem;
}

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

.place-tab__menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.place-tab__menu-item {
  padding: 0.625rem;
  min-width: 6.25rem;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.75rem;
  line-height: 1;
  color: #333;
  background-color: #e9f4ff;
  border-radius: 32px;
  text-align: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.6;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .place-tab__menu-item {
    font-size: 0.875rem;
  }
}

.place-tab__menu-item.is-active {
  color: #fff;
  background-color: #00bfff;
  border: solid 1px #00bfff;
}

.place-tab__content {
  margin-top: 1.25rem;
}

.place-tab__content-item {
  display: none;
  border: solid 2px #f5f5f5;
}

.place-tab__content-item.is-active {
  display: block;
  animation: fade 0.3s;
}
@media screen and (min-width: 768px) {
  .place-tab__content-item.is-active {
    display: flex;
  }
}

.place-tab__content-item-title {
  background: #f4f4f4;
  color: #00bfff;
  font-size: 1.125rem;
  border-bottom: #00bfff solid 2px;
  padding: 0.625rem;
}

.place-tab__content-imageWrap {
  width: 100%;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .place-tab__content-imageWrap {
    width: 50%;
  }
}

.place-tab__content-caseArea {
  width: 100%;
  padding: 1.25rem 0.625rem;
}
@media screen and (min-width: 768px) {
  .place-tab__content-caseArea {
    width: 50%;
    margin-left: 2.5rem;
    margin-top: 0;
  }
}

.place-tab__content-case-btnWrap {
  width: 100%;
}

.place-tab__content-case-btnWrap a {
  padding: 0.3125rem 0.625rem;
  width: 100%;
  display: block;
  font-weight: 700;
  font-size: 1rem;
}

.place-tab__content-case-category-title {
  font-weight: 700;
}

.place-tab__content-case-category {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.3125rem 0.625rem;
  font-size: 0.75rem;
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.single-voice__image {
  aspect-ratio: 400/300;
  max-width: 12.5rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 999px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .single-voice__image {
    max-width: 31.25rem;
  }
}

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

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

.top-about__item {
  border: solid 1px #333;
}

.top-about__item-image {
  aspect-ratio: 1/1;
}

.top-about__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-about__item-body {
  padding: 0.625rem 0.3125rem;
}

.top-about__item-body-text {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
}

.top-area__itemBox {
  margin-top: 1.25rem;
}

.top-area__items {
  display: grid;
  gap: 0.3125rem;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .top-area__items {
    grid-template-columns: repeat(6, 1fr);
    gap: 1.25rem;
    margin-top: 1.875rem;
  }
}

.top-area__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background-color: #00bfff;
  color: #fff;
  border-radius: 8px;
  font-size: 0.75rem;
}

.top-area__items--hokkai .top-area__item {
  background-color: #0000ff;
}

.top-area__items--tohoku .top-area__item {
  background-color: #1e90ff;
}

.top-area__items--kanto .top-area__item {
  background-color: #006400;
}

.top-area__items--chubu .top-area__item {
  background-color: #ff8c00;
}

.top-area__items--kinki .top-area__item {
  background-color: #b22222;
}

.top-area__items--chugoku .top-area__item {
  background-color: #800080;
}

.top-area__items--shikoku .top-area__item {
  background-color: #32cd32;
}

.top-area__items--kyusyu .top-area__item {
  background-color: #ffd700;
}

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

/* ページネーション */
.top-case .swiper-pagination-bullet {
  border: solid 1px #333;
}

.top-case .swiper-pagination-bullet-active {
  background: #00bfff;
}

.top-contact {
  padding: 2.5rem 0;
  background-color: #0E538B;
}
@media screen and (min-width: 768px) {
  .top-contact {
    padding: 7.5rem 0;
  }
}

.top-contact__text {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .top-contact__text {
    font-size: 2.25rem;
  }
}

.top-contact__btn-list {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .top-contact__btn-list {
    margin-top: 5rem;
    display: flex;
    justify-content: center;
  }
}

.top-contact__btn-item {
  margin: auto;
  max-width: 18.75rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .top-contact__btn-item {
    margin: initial;
    max-width: 25rem;
  }
}

.top-contact__btn-item + .top-contact__btn-item {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .top-contact__btn-item + .top-contact__btn-item {
    margin-top: initial;
    margin-left: 3.75rem;
  }
}

.top-contact__btn-text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.9375rem;
  line-height: 1;
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .top-contact__btn-text {
    font-size: 1.25rem;
  }
}

.top-contact__btn-text::before,
.top-contact__btn-text::after {
  content: "";
  width: 1px;
  height: 0.9375rem;
  background-color: #fff;
}

.top-contact__btn-text::before {
  margin-right: 0.5rem;
  transform: rotate(-35deg);
}

.top-contact__btn-text::after {
  margin-left: 0.5rem;
  transform: rotate(35deg);
}

.top-contact__btn-wrap {
  margin-top: 0.3125rem;
}

.top-contact__btn {
  padding: 1.9375rem 0;
  position: relative;
  display: inline-block;
  width: 100%;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  border-radius: 1.125rem;
  background: linear-gradient(180deg, #FFEB02 0%, #FFEB02 50%, #F2DF00 50%, #F2DF00 100%);
}
@media screen and (min-width: 768px) {
  .top-contact__btn {
    padding: 2.375rem 0;
    font-size: 1.5rem;
  }
}

.top-contact__btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.875rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #333;
  border-right: 0.125rem solid #333;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .top-contact__btn::before {
    width: 0.9375rem;
    height: 0.9375rem;
  }
}

.top-contact__tel-btn {
  padding: 1.25rem 0;
  display: inline-block;
  width: 100%;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #fff;
  text-align: center;
  border-radius: 1.125rem;
  background: linear-gradient(180deg, #ee7800 0%, #ee7800 50%, #ea5506 50%, #ea5506 100%);
}
@media screen and (min-width: 768px) {
  .top-contact__tel-btn {
    padding: 1.375rem 0;
    font-size: 1.5rem;
  }
}

.top-contact__tel-btn::before {
  content: "";
  margin-right: 0.5rem;
  position: relative;
  top: 0.1875rem;
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  background-image: url(./../images/common/tel-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .top-contact__tel-btn::before {
    top: 0.3125rem;
    width: 1.875rem;
    height: 1.875rem;
  }
}

.top-contact__tel-btn span {
  margin-top: 0.625rem;
  display: block;
  font-size: 0.75rem;
  font-weight: initial;
}
@media screen and (min-width: 768px) {
  .top-contact__tel-btn span {
    font-size: 0.875rem;
  }
}

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

.top-merit__item {
  padding: 0.625rem 0.9375rem;
  background-color: #e9f4ff;
}

.top-merit__item-image {
  aspect-ratio: 1/1;
  width: 100px;
  margin-left: auto;
  margin-right: auto;
}

.top-merit__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-merit__item-text {
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.2;
  margin-top: 0.625rem;
}

.top-message__title {
  margin-top: 2.5rem;
}

.top-message {
  padding-bottom: 9.375rem;
  background: url(../images/top/img_meassege_bg.png) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .top-message {
    padding-bottom: 18.75rem;
  }
}

.top-news__list {
  margin-top: 1.25rem;
}

.top-news-list__item + .top-news-list__item {
  margin-top: 1.875rem;
}

.top-news-list__item a {
  display: flex;
}

.top-news-list__item-img {
  max-width: 8.125rem;
  width: 100%;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .top-news-list__item-img {
    max-width: 12.5rem;
  }
}

.top-news-list__item-img img {
  width: 100%;
  aspect-ratio: 195/160;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-news-list__item-content {
  margin-left: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .top-news-list__item-content {
    margin-left: 4.375rem;
  }
}

.top-news-list__item-meta {
  display: flex;
  align-items: center;
}

.top-news-list__item-date {
  font-size: 0.75rem;
  line-height: 1;
}

.top-news-list__item-category {
  margin-left: 1.25rem;
  padding: 0.3125rem;
  min-width: 5rem;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.75rem;
  line-height: 1;
  color: #fff;
  background-color: #00bfff;
  text-align: center;
  border-radius: 32px;
}

.top-news-list__item-title {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.top-reason__inner {
  max-width: 31.25rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .top-reason__inner {
    max-width: 50rem;
  }
}

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

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

.top-reason__item {
  padding: 0.3125rem 0.625rem;
  border: solid 1px #00bfff;
  border-radius: 8px;
}
@media screen and (min-width: 768px) {
  .top-reason__item {
    padding: 0.625rem 0.9375rem;
  }
}

.top-reason__item-image {
  aspect-ratio: 50/50;
}

.top-reason__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-reason__item-text {
  font-size: 0.5625rem;
  text-align: center;
  margin-top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .top-reason__item-text {
    font-size: 0.875rem;
  }
}

.top-service-list {
  display: grid;
  gap: 1.25rem 0.625rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .top-service-list {
    gap: 1.875rem 3.75rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 5rem;
  }
}

.top-service-list__item a {
  display: block;
  height: 100%;
  background-color: #f5f5f5;
  padding: 0.3125rem;
  border-radius: 8px;
}

.top-service-list__item-img {
  width: 100%;
  margin-top: 0.3125rem;
}

.top-service-list__item-img img {
  width: 100%;
  aspect-ratio: 195/160;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}

.top-service-list__item-date {
  margin-top: 0.8125rem;
  display: flex;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .top-service-list__item-date {
    margin-top: 1.25rem;
    font-size: 0.9375rem;
  }
}

.top-service-list__item-date::before {
  content: "";
  margin-right: 0.375rem;
  width: 0.375rem;
  height: 0.375rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: #73B2C8;
}

.top-service-list__item-text {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  color: #00bfff;
}
@media screen and (min-width: 768px) {
  .top-service-list__item-text {
    margin-top: 0.5rem;
    font-size: 1.25rem;
  }
}

.top-service-list__item-body {
  margin-top: 0.3125rem;
}

.top-service-list__item-lead {
  text-align: center;
  font-size: 0.75rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .top-service-list__item-lead {
    font-size: 1rem;
  }
}

.top-service-list__item-price {
  text-align: center;
  font-weight: 700;
  color: #e00;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .top-service-list__item-price {
    margin-top: 0.625rem;
    font-size: 1rem;
  }
}

.top-service-list__item-price span {
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .top-service-list__item-price span {
    font-size: 1.875rem;
  }
}

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

.top-voice__item {
  border: solid 1px #00bfff;
}

.top-voice__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
}

.top-voice__item-image {
  aspect-ratio: 200/200;
  width: 25%;
  border-radius: 999px;
  overflow: hidden;
}

.top-voice__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-voice__item-body {
  width: calc(65% - 0.625rem);
  padding: 0.3125rem;
}

.top-voice__item-body-place {
  font-size: 0.75rem;
  font-weight: 700;
}

.top-voice__item-body-name {
  font-size: 0.75rem;
  font-weight: 700;
}

.top-voice__item-body-text {
  font-size: 0.75rem;
  margin-top: 0.3125rem;
}

.top-voice__imageWrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .top-voice__imageWrap {
    max-width: 37.5rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.top-voice__image {
  width: calc(50% - 0.625rem);
  aspect-ratio: 200/300;
}

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

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

.nav-links ul li a,
.nav-links ul li span {
  color: #00bfff;
  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 */
