@charset "UTF-8";
@keyframes btn {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateX(100%);
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
  word-break: normal;
}

img,
video {
  display: block;
  max-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

li {
  padding-left: 0;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

button {
  cursor: pointer;
  text-align: inherit;
}

button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

table {
  border-collapse: collapse;
}

.bold {
  font-weight: bold;
}

.txt-right {
  text-align: right;
}

.txt-center {
  text-align: center;
}

.d-block {
  display: block !important;
}

.mb-xs {
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .mb-xs {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .mb-xs {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1280px) {
  .mb-xs {
    margin-bottom: 30px;
  }
}

.mb-sm, .p-title {
  margin-bottom: 30px;
}
@media screen and (min-width: 1024px) {
  .mb-sm, .p-title {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 1280px) {
  .mb-sm, .p-title {
    margin-bottom: 50px;
  }
}

.mb-md {
  margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .mb-md {
    margin-bottom: 65px;
  }
}
@media screen and (min-width: 1024px) {
  .mb-md {
    margin-bottom: 80px;
  }
}

.mb-lr {
  margin-bottom: 70px;
}
@media screen and (min-width: 1024px) {
  .mb-lr {
    margin-bottom: 90px;
  }
}
@media screen and (min-width: 1280px) {
  .mb-lr {
    margin-bottom: 100px;
  }
}

.pd-sm {
  padding: 30px 0;
}
@media screen and (min-width: 1024px) {
  .pd-sm {
    padding: 40px 0;
  }
}
@media screen and (min-width: 1280px) {
  .pd-sm {
    padding: 50px 0;
  }
}

.pd-md {
  padding: 50px 0;
}
@media screen and (min-width: 768px) {
  .pd-md {
    padding: 65px 0;
  }
}
@media screen and (min-width: 1024px) {
  .pd-md {
    padding: 80px 0;
  }
}

.pd-lr {
  padding: 70px 0;
}
@media screen and (min-width: 1024px) {
  .pd-lr {
    padding: 90px 0;
  }
}
@media screen and (min-width: 1280px) {
  .pd-lr {
    padding: 100px 0;
  }
}

.c-container {
  padding: 0 6vw;
}
@media screen and (min-width: 1280px) {
  .c-container {
    padding: 0 8vw;
  }
}
@media screen and (min-width: 1500px) {
  .c-container {
    padding: 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}

.appear.up .item {
  transform: translateY(10px);
}

.appear.down .item {
  transform: translateY(20px);
}

.appear.left .item {
  transform: translateX(30px);
}

.appear.right .item {
  transform: translateX(-30px);
}

.appear.skew .item {
  transform: translateX(30px) translateY(30px);
}

.appear-l.up .item {
  transform: translateY(10px);
}

.appear-l.down .item {
  transform: translateY(20px);
}

.appear-l.left .item {
  transform: translateX(30px);
}

.appear-l.right .item {
  transform: translateX(-30px);
}

.appear-l.skew .item {
  transform: translateX(30px) translateY(30px);
}

.appear .item {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  transform: translateY(20px);
}
.appear.inview .item {
  opacity: 1;
  transform: translateY(0);
}
.appear.inview .item:nth-child(1) {
  transition-delay: 0s;
}
.appear.inview .item:nth-child(2) {
  transition-delay: 0.08s;
}
.appear.inview .item:nth-child(3) {
  transition-delay: 0.16s;
}
.appear.inview .item:nth-child(4) {
  transition-delay: 0.24s;
}
.appear.inview .item:nth-child(5) {
  transition-delay: 0.32s;
}
.appear.inview .item:nth-child(6) {
  transition-delay: 0.4s;
}
.appear.inview .item:nth-child(7) {
  transition-delay: 0.48s;
}
.appear.inview .item:nth-child(8) {
  transition-delay: 0.56s;
}
.appear.inview .item:nth-child(9) {
  transition-delay: 0.64s;
}
.appear.inview .item:nth-child(10) {
  transition-delay: 0.72s;
}
.appear.inview .item:nth-child(11) {
  transition-delay: 0.8s;
}
.appear.inview .item:nth-child(12) {
  transition-delay: 0.88s;
}
.appear.inview .item:nth-child(13) {
  transition-delay: 0.96s;
}
.appear.inview .item:nth-child(14) {
  transition-delay: 1.04s;
}
.appear.inview .item:nth-child(15) {
  transition-delay: 1.12s;
}
.appear.inview .item:nth-child(16) {
  transition-delay: 1.2s;
}
.appear.inview .item:nth-child(17) {
  transition-delay: 1.28s;
}
.appear.inview .item:nth-child(18) {
  transition-delay: 1.36s;
}
.appear.inview .item:nth-child(19) {
  transition-delay: 1.44s;
}
.appear.inview .item:nth-child(20) {
  transition-delay: 1.52s;
}
.appear.inview .item:nth-child(21) {
  transition-delay: 1.6s;
}
.appear.inview .item:nth-child(22) {
  transition-delay: 1.68s;
}
.appear.inview .item:nth-child(23) {
  transition-delay: 1.76s;
}
.appear.inview .item:nth-child(24) {
  transition-delay: 1.84s;
}
.appear.inview .item:nth-child(25) {
  transition-delay: 1.92s;
}
.appear.inview .item:nth-child(26) {
  transition-delay: 2s;
}
.appear.inview .item:nth-child(27) {
  transition-delay: 2.08s;
}
.appear.inview .item:nth-child(28) {
  transition-delay: 2.16s;
}
.appear.inview .item:nth-child(29) {
  transition-delay: 2.24s;
}
.appear.inview .item:nth-child(30) {
  transition-delay: 2.32s;
}
.appear.inview .item:nth-child(31) {
  transition-delay: 2.4s;
}
.appear.inview .item:nth-child(32) {
  transition-delay: 2.48s;
}
.appear.inview .item:nth-child(33) {
  transition-delay: 2.56s;
}
.appear.inview .item:nth-child(34) {
  transition-delay: 2.64s;
}
.appear.inview .item:nth-child(35) {
  transition-delay: 2.72s;
}
.appear.inview .item:nth-child(36) {
  transition-delay: 2.8s;
}
.appear.inview .item:nth-child(37) {
  transition-delay: 2.88s;
}
.appear.inview .item:nth-child(38) {
  transition-delay: 2.96s;
}
.appear.inview .item:nth-child(39) {
  transition-delay: 3.04s;
}

.faq__icon {
  position: absolute;
  top: 50%;
  right: 1em;
  width: 20px;
  height: 20px;
  margin-top: -10px;
}
.faq__icon::before {
  position: absolute;
  content: "";
  margin: auto;
  box-sizing: border-box;
  vertical-align: middle;
  border-top: 1px solid #40b5fa;
  width: 16px;
  height: 0;
  top: 0;
  bottom: 0;
  right: 0;
}
.faq__icon::after {
  position: absolute;
  content: "";
  margin: auto;
  box-sizing: border-box;
  vertical-align: middle;
  border-left: 1px solid #40b5fa;
  width: 0;
  height: 16px;
  top: 0;
  bottom: 0;
  right: 7.5px;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .faq__icon {
    right: 2em;
  }
}

.ac-title.is-active {
  transition: all 3s;
}
.ac-title.is-active .faq__icon::after {
  height: 0;
  transition: all 0.3s;
}

.ac-content {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s;
}

.ac-content.is-open {
  height: auto;
  opacity: 1;
  display: block;
  transition: all 0.3s;
}

/******************************************************************

Stylesheet: ベーススタイル

******************************************************************/
body {
  color: #333333;
  letter-spacing: 0.05em;
  font-family: "Roboto", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: clamp(1.3rem, 1.2rem + 0.3vw, 1.7rem);
  font-weight: 400;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.hidden {
  overflow: hidden;
}

.superwrapper,
#main-wrapper {
  overflow: hidden;
}

.p-title {
  text-align: center;
  position: relative;
  z-index: 10;
  font-weight: 600;
}
.p-title .en {
  display: inline-block;
  letter-spacing: 2px;
  font-size: 28px;
  background: linear-gradient(90deg, #0d6dac 0%, #40b5fa 25%, #40b5fa 65%, #1a8fd1 85%, #0d6dac 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.p-title .ja {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .p-title .en {
    font-size: 32px;
  }
}
@media screen and (min-width: 1024px) {
  .p-title .en {
    font-size: 36px;
  }
  .p-title .ja {
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .p-title .en {
    font-size: 42px;
  }
  .p-title .ja {
    font-size: 18px;
  }
}

.more-btn {
  position: relative;
  display: block;
  text-align: center;
  margin-top: 50px;
}
.more-btn__link {
  background-color: #40b5fa;
  display: inline-block;
  padding: 15px 30px;
  border-radius: 9999px;
  border: 2px solid #40b5fa;
  border-image-slice: 1;
  z-index: 1;
}
.more-btn__link span {
  position: relative;
  color: #fff;
}
.more-btn__link span:first-child {
  padding-right: 30px;
}
.more-btn__link span:first-child::before {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 10px;
  background-image: url(../images/common/arrow-wh.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: 0.3s;
  z-index: 100;
}
.more-btn__link.slide-bg {
  position: relative;
  overflow: hidden;
}
.more-btn__link.slide-bg .bg {
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-101%);
  transition: transform 0.3s;
  z-index: -1;
}
.more-btn__link.slide-bg:hover {
  z-index: 1;
}
.more-btn__link.slide-bg:hover span {
  color: #333333;
  transform: none;
}
.more-btn__link.slide-bg:hover span:first-child::before {
  background-image: url(../images/common/arrow.png);
}
@media screen and (min-width: 768px) {
  .more-btn__link {
    padding: 20px 40px;
    height: auto;
  }
}

.line-marker {
  font-weight: 700;
  background: linear-gradient(transparent 40%, #fff25b 60%);
  padding: 0 2px;
}

.p-header {
  height: 64px;
  width: 100%;
}
.p-header .logo__img {
  display: inline-block;
  margin: 0px 10px 0 10px;
}
.p-header .logo {
  background-image: url(../images/common/logo-v2.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 30px;
  width: 160px;
  opacity: 1;
}
.p-header .sp-navbtn {
  position: fixed;
  bottom: 0;
  left: 0;
  height: 9vh;
  min-height: 60px;
  width: 100%;
  z-index: 9999;
  transition: all 0.3s;
  background-color: rgba(255, 255, 255, 0.8235294118);
}
.p-header .sp-navbtn__container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.p-header .sp-navbtn__container li {
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, #5bb8f5 0%, #0d6dac 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-header .sp-navbtn__container a {
  position: relative;
  letter-spacing: 2px;
  color: #fff;
  font-weight: bold;
  padding-top: 25px;
  font-size: 13px;
}
.p-header .sp-navbtn__container a::before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  margin: auto;
  content: "";
  height: 20px;
  width: 20px;
  background-image: url(../images/common/tel-white.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.p-header .sp-navbtn__container .sp2 {
  background: linear-gradient(135deg, #ffb347 0%, #e8620a 100%);
}
.p-header .sp-navbtn__container .sp2 a::before {
  background-image: url(../images/common/ico-mail-wh.png);
}
.p-header .sp-navbtn__container .sp3 {
  background: linear-gradient(135deg, #06c755 0%, #05a647 100%);
}
.p-header .sp-navbtn__container .sp3 a::before {
  width: 23px;
  height: 23px;
  background-image: url(../images/common/line-cta.svg);
}
.p-header .sp-navbtn__container a:hover,
.p-header .sp-navbtn__container a:active {
  text-decoration: underline;
}
.p-header .pc-navbtn {
  position: fixed;
  bottom: 30px;
  right: 20px;
  top: auto;
  margin: 0;
  width: -moz-max-content;
  width: max-content;
  z-index: 2000;
  transition: opacity 0.4s ease-in-out;
}
.p-header .pc-navbtn__container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.p-header .pc-navbtn__item a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 9999px;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s, transform 0.2s;
}
.p-header .pc-navbtn__item a:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
  transform: translateY(-2px);
}
.p-header .pc-navbtn__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-header .pc-navbtn__icon img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-header .pc-navbtn__text {
  color: #0d6dac;
  font-size: 1.25em;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
}
.p-header .hide.sp-navbtn {
  transform: translateY(100%);
  transition: all 0.4s;
}
.p-header .hide.pc-navbtn {
  opacity: 0;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .p-header .logo__img {
    margin: 0 10px 0 15px;
  }
  .p-header .logo {
    height: 42px;
    width: 230px;
  }
}
@media screen and (max-width: 1023px) {
  .p-header .pc-navbtn {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .p-header {
    height: 100px;
  }
  .p-header .sp-navbtn {
    display: none;
  }
  .p-header .logo__img {
    margin: 0 10px 0 20px;
  }
  .p-header .logo {
    height: 50px;
    width: 280px;
  }
}
@media screen and (max-width: 1279px) {
  .p-header .pc-container {
    display: none;
  }
}
@media screen and (min-width: 1280px) {
  .p-header .mobile-container,
  .p-header .mobile-menu {
    display: none !important;
  }
  .p-header .pc-container {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999;
    overflow: hidden;
    height: 100px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8666666667);
    box-shadow: 10px 0 10px rgba(119, 119, 119, 0.5254901961);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .p-header .pc-container .flex-right {
    display: flex;
    align-items: center;
  }
  .p-header .pc-container .logo-link {
    margin: 0 20px;
  }
  .p-header .pc-container .pc-nav {
    margin-bottom: 10px;
  }
  .p-header .pc-container .pc-nav-list {
    display: flex;
    margin-right: 15px;
  }
  .p-header .pc-container .pc-nav-item {
    font-size: 16px;
    font-weight: 600;
    padding-right: 1.8vw;
    padding-top: 15px;
    transition: all 0.3s;
  }
  .p-header .pc-container .pc-nav-item a {
    color: #333333;
  }
  .p-header .pc-container .pc-nav-item:hover {
    transform: translateY(4px);
    transition: all 0.3s;
  }
  .p-header .pc-container .logo__img {
    margin: 30px 10px 20px 10px;
  }
  .p-header .pc-container .logo__img .logo {
    height: 58px;
    width: 220px;
  }
  .p-header .pc-container .pc-button {
    margin: 0 10px 0 30px;
    position: relative;
    display: flex;
    align-items: center;
  }
  .p-header .pc-container .pc-button::before {
    content: "";
    width: 2px;
    height: 100%;
    background: #ccc;
    position: absolute;
    top: 0;
    left: -35px;
  }
  .p-header .pc-container .pc-button .tel-btn {
    display: inline-block;
    margin-right: 15px;
  }
  .p-header .pc-container .pc-button .tel-btn a {
    color: #333333;
    font-size: 20px;
    font-weight: 600;
  }
  .p-header .pc-container .pc-button .tel-btn a span {
    position: relative;
  }
  .p-header .pc-container .pc-button .tel-btn a span::before {
    content: "";
    width: 15px;
    height: 15px;
    background: url(../images/common/icon-tel.png) no-repeat center/contain;
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
  }
  .p-header .pc-container .pc-button .tel-btn small {
    display: block;
    text-align: center;
    font-size: 12px;
  }
  .p-header .pc-container .pc-button .request-btn {
    display: flex;
  }
  .p-header .pc-container .pc-button .request-btn a {
    display: block;
    margin-right: 10px;
    background-color: #40b5fa;
    border: 2px solid #40b5fa;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 45px 8px 30px;
    border-radius: 9999px;
  }
  .p-header .pc-container .pc-button .request-btn a span {
    position: relative;
  }
  .p-header .pc-container .pc-button .request-btn a span::before {
    content: "";
    width: 13px;
    height: 13px;
    background: url(../images/common/btn-dl.svg) no-repeat center/contain;
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
  }
  .p-header .pc-container .pc-button .request-btn a.mail {
    background-color: #fff;
    color: #40b5fa;
  }
  .p-header .pc-container .pc-button .request-btn a.mail span::before {
    background: url(../images/common/btn-mail.svg) no-repeat center/contain;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.5s;
  opacity: 0;
  z-index: -1;
  background-color: rgba(255, 255, 255, 0.9411764706);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu__nav {
  display: block;
  height: auto;
  width: 100%;
  min-height: 100vh;
}
.mobile-menu__list {
  width: 100%;
  list-style: none;
  padding-top: 120px;
  padding-bottom: 60px;
}
.mobile-menu__item {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
}
.mobile-menu a {
  color: #333333;
}
@media screen and (min-width: 768px) {
  .mobile-menu__item {
    font-size: 18px;
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .mobile-menu {
    width: 60%;
  }
  .mobile-menu__list {
    padding-top: 160px;
  }
  .mobile-menu__item {
    font-size: 20px;
    margin-bottom: 40px;
  }
}

.mobile-menu-hidden {
  overflow: hidden !important;
  position: fixed !important;
  width: 100% !important;
  -webkit-overflow-scrolling: touch;
}

.mobile-container {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  overflow: hidden;
  height: 64px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8666666667);
  box-shadow: 10px 0 10px rgba(119, 119, 119, 0.5254901961);
  display: flex;
  align-items: center;
}
.mobile-container .mobile-button {
  position: fixed;
  top: 15px;
  right: 10px;
  z-index: 200;
  display: flex;
}
.mobile-container .request-btn {
  margin-right: 10px;
}
.mobile-container .request-btn a {
  display: block;
  border: 2px solid #40b5fa;
  background-color: #fff;
  color: #40b5fa;
  font-size: 12px;
  font-weight: 600;
  padding: 10px 40px 8px 20px;
  border-radius: 9999px;
}
.mobile-container .request-btn a span {
  position: relative;
}
.mobile-container .request-btn a span::before {
  content: "";
  width: 13px;
  height: 13px;
  background: url(../images/common/btn-mail.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
}
.mobile-container .tel-btn {
  display: none;
}
.mobile-container .mobile-menu__btn {
  background-color: unset;
  border: none;
  outline: none !important;
  cursor: pointer;
  display: block;
}
.mobile-container .mobile-menu__btn.inview > span {
  background-color: #fff;
}
.mobile-container .mobile-menu__btn > span {
  background-color: #333333;
  width: 25px;
  height: 2px;
  display: block;
  margin-bottom: 5px;
  transition: transform 0.7s;
  opacity: 1;
}
.mobile-container .mobile-menu__btn > span:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .mobile-container .mobile-menu__btn span {
    width: 35px;
    margin-bottom: 7px;
  }
}
@media screen and (min-width: 1024px) {
  .mobile-container {
    height: 100px;
  }
  .mobile-container .mobile-button {
    top: 25px;
    right: 20px;
  }
  .mobile-container .mobile-button::before {
    content: "";
    width: 2px;
    height: 100%;
    background: #ccc;
    position: absolute;
    top: 0;
    left: -50px;
  }
  .mobile-container .request-btn {
    margin: 0 15px;
  }
  .mobile-container .request-btn a {
    display: block;
    font-size: 15px;
    font-weight: 600;
    padding: 15px 55px 12px 30px;
    border-radius: 9999px;
  }
  .mobile-container .request-btn a span {
    position: relative;
  }
  .mobile-container .request-btn a span::before {
    content: "";
    width: 18px;
    height: 18px;
    right: -25px;
  }
  .mobile-container .tel-btn {
    display: inline-block;
  }
  .mobile-container .tel-btn a {
    color: #333333;
    font-size: 20px;
    font-weight: 600;
  }
  .mobile-container .tel-btn a span {
    position: relative;
  }
  .mobile-container .tel-btn a span::before {
    content: "";
    width: 15px;
    height: 15px;
    background: url(../images/common/icon-tel.png) no-repeat center/contain;
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
  }
  .mobile-container .tel-btn small {
    display: block;
    text-align: center;
    font-size: 12px;
  }
}

.menu-open.mobile-menu {
  z-index: 8000;
  transition: all 0.5s;
  opacity: 1;
}
.menu-open.mobile-menu nav li {
  opacity: 1;
  transition: 0.1s;
}
.menu-open.mobile-menu nav li:nth-child(1) {
  transition-delay: 0.03s;
}
.menu-open.mobile-menu nav li:nth-child(2) {
  transition-delay: 0.06s;
}
.menu-open.mobile-menu nav li:nth-child(3) {
  transition-delay: 0.09s;
}
.menu-open.mobile-menu nav li:nth-child(4) {
  transition-delay: 0.12s;
}
.menu-open.mobile-menu nav li:nth-child(5) {
  transition-delay: 0.15s;
}
.menu-open.mobile-menu nav li:nth-child(6) {
  transition-delay: 0.18s;
}
.menu-open.mobile-menu nav li:nth-child(7) {
  transition-delay: 0.21s;
}
.menu-open.mobile-menu nav li:nth-child(8) {
  transition-delay: 0.24s;
}
.menu-open.mobile-menu nav li:nth-child(9) {
  transition-delay: 0.27s;
}
.menu-open.mobile-menu nav li:nth-child(10) {
  transition-delay: 0.3s;
}
.menu-open .mobile-menu__btn > span {
  background-color: #333333 !important;
}
.menu-open .mobile-menu__btn > span:nth-child(1) {
  transition-delay: 70ms;
  transform: translateY(6px) rotate(135deg);
}
.menu-open .mobile-menu__btn > span:nth-child(2) {
  transition-delay: 140ms;
  transform: scaleX(0);
}
.menu-open .mobile-menu__btn > span:nth-child(3) {
  transition-delay: 140ms;
  transform: translateY(-8px) rotate(-135deg);
}
@media screen and (min-width: 1024px) {
  .menu-open .mobile-menu__btn > span:nth-child(1) {
    transform: translateY(11px) rotate(135deg);
  }
}

.p-footer {
  padding: 50px 0 0;
  background-color: #0d6dac;
}
.p-footer__logo {
  text-align: center;
  margin-bottom: 30px;
}
.p-footer__logo img {
  display: inline-block;
  width: 85%;
  filter: brightness(0) invert(1);
}
.p-footer .sns-link {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
.p-footer .sns-link li {
  width: 40px;
  height: 40px;
}
.p-footer .sns-link li img {
  -o-object-fit: contain;
     object-fit: contain;
}
.p-footer__bottom {
  border-top: 1px solid #ccc;
}
.p-footer .privacy {
  text-align: center;
  padding: 20px 0 10px;
}
.p-footer .privacy a {
  color: #fff;
  border-bottom: 1px solid #fff;
  font-size: 13px;
}
.p-footer .copyright {
  text-align: center;
  font-size: 12px;
  color: #ccc;
  padding: 10px 0 20px;
}
@media screen and (min-width: 768px) {
  .p-footer {
    padding: 70px 0 0;
  }
  .p-footer__logo img {
    width: 60%;
  }
  .p-footer .privacy {
    padding: 30px 0 10px;
  }
  .p-footer .copyright {
    padding: 10px 0 30px;
  }
}
@media screen and (min-width: 1024px) {
  .p-footer {
    padding: 80px 0 0;
  }
  .p-footer__flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    width: 80%;
    max-width: 1000px;
    margin: 0 auto;
  }
  .p-footer .privacy {
    padding: 0;
  }
  .p-footer .copyright {
    padding: 0;
  }
  .p-footer__logo img {
    width: 350px;
  }
  .p-footer .sns-link {
    margin-bottom: 40px;
  }
  .p-footer .sns-link li {
    width: 50px;
    height: 50px;
  }
}

.top-view {
  position: relative;
  overflow: hidden;
  padding: 30px 0 50px;
}
.top-view::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(225, 225, 225, 0.6), rgba(225, 225, 225, 0.85));
}
.top-view__slide {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.top-view__track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  height: 100%;
}
.top-view__item {
  flex: 0 0 auto;
  width: 220px;
  height: 100%;
}
.top-view__item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-view__inner {
  position: relative;
  z-index: 2;
}
.top-view__img {
  margin: 0 -3vw 30px;
}
.top-view__desc {
  text-align: center;
  font-size: 1.2em;
  text-shadow: 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff;
}
.top-view__btn {
  text-align: center;
}
.top-view__btn a {
  display: inline-block;
  padding: 12px 30px 12px 0;
  width: 80%;
  max-width: 280px;
  background: #0d6dac;
  font-size: 1.15em;
  color: #fff;
  border-radius: 9999px;
  font-weight: 700;
  position: relative;
  animation: top-view-btn-pulse 1.8s ease-out infinite;
}
.top-view__btn a::before {
  content: "";
  width: 34px;
  height: 34px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
}
.top-view__btn a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #0d6dac;
  border-right: 2px solid #0d6dac;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 24px;
  transform: rotate(45deg);
  margin: auto;
  animation: top-view-btn-arrow 1.8s ease-in-out infinite;
}
@keyframes top-view-btn-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(13, 109, 172, 0.5);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(13, 109, 172, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(13, 109, 172, 0);
  }
}
@keyframes top-view-btn-arrow {
  0%, 100% {
    transform: rotate(45deg) translate(0, 0);
  }
  50% {
    transform: rotate(45deg) translate(3px, -3px);
  }
}
@media screen and (max-width: 767px) {
  .top-view .view-pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .top-view {
    padding: 30px 0 60px;
  }
  .top-view .view-sp {
    display: none;
  }
  .top-view__img {
    margin: 0 0 30px;
    text-align: center;
  }
  .top-view__img img {
    display: inline-block;
    width: 90%;
    max-width: 900px;
  }
  .top-view__desc {
    font-size: 1.45em;
  }
  .top-view__btn a {
    padding: 15px 30px 15px 0;
    max-width: 340px;
    font-size: 1.45em;
  }
  .top-view__btn a::before {
    width: 42px;
    height: 42px;
    right: 12px;
  }
  .top-view__btn a::after {
    width: 12px;
    height: 12px;
    border-top: 3px solid #0d6dac;
    border-right: 3px solid #0d6dac;
    right: 30px;
  }
  .top-view__item {
    width: 280px;
  }
}
@media screen and (min-width: 1024px) {
  .top-view__img img {
    width: 80%;
    max-width: 1100px;
  }
}
@media screen and (min-width: 1280px) {
  .top-view {
    padding: 40px 0 90px;
  }
  .top-view__desc {
    font-size: 1.55em;
  }
  .top-view__desc br {
    display: none;
  }
  .top-view__btn a {
    padding: 20px 40px 20px 0;
    max-width: 440px;
    font-size: 1.65em;
  }
  .top-view__btn a::before {
    width: 52px;
    height: 52px;
    right: 20px;
  }
  .top-view__btn a::after {
    width: 16px;
    height: 16px;
    border-top: 4px solid #0d6dac;
    border-right: 4px solid #0d6dac;
    right: 40px;
  }
  .top-view__item {
    width: 320px;
  }
}

.p-about {
  background: #686d73;
  color: #fff;
  position: relative;
}
.p-about::before {
  content: "";
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(to bottom right, transparent 49.5%, #686d73 50%) left/50% 100% no-repeat, linear-gradient(to bottom left, transparent 49.5%, #686d73 50%) right/50% 100% no-repeat;
  transform: rotate(180deg);
}
.p-about__title {
  font-size: 1.4em;
  text-align: center;
  line-height: 2;
}
.p-about__title strong {
  font-weight: 700;
  letter-spacing: 1.2px;
  border-bottom: 1px solid #fff;
  line-height: 1;
  display: inline-block;
  margin-right: 5px;
}
.p-about__desc {
  position: relative;
  background-color: #fff;
  padding: 20px;
  color: #333333;
}
.p-about__desc ul {
  display: grid;
  gap: 15px;
}
.p-about__desc ul li {
  padding-bottom: 15px;
  border-bottom: 1px solid #ccc;
}
.p-about__desc ul li p {
  position: relative;
  font-weight: 500;
  padding-left: 20px;
}
.p-about__desc ul li p::before {
  content: "";
  width: 12px;
  height: 12px;
  background: url(../images/common/check.svg) no-repeat center/contain;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .p-about__title {
    font-size: 1.6em;
  }
  .p-about__title strong {
    margin-right: 10px;
  }
  .p-about__img {
    text-align: center;
  }
  .p-about__img img {
    width: 50%;
    max-width: 300px;
  }
  .p-about__desc {
    padding: 30px;
    max-width: 500px;
    margin: 0 auto;
  }
  .p-about__desc ul li p {
    padding-left: 30px;
  }
  .p-about__desc ul li p::before {
    width: 16px;
    height: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .p-about::before {
    bottom: -100px;
    height: 100px;
  }
  .p-about__title {
    font-size: 2em;
  }
  .p-about__title br {
    display: none;
  }
  .p-about__desc {
    max-width: 650px;
  }
  .p-about__desc ul li p {
    font-size: 1.2em;
  }
}

.p-str {
  padding-top: 50px;
  scroll-margin: 64px;
  position: relative;
}
.p-str__title {
  text-align: center;
  font-weight: 600;
  font-size: 1.3em;
  margin-bottom: 15px;
}
.p-str__title span {
  display: inline-block;
  background: linear-gradient(90deg, #0d6dac 0%, #40b5fa 25%, #40b5fa 65%, #1a8fd1 85%, #0d6dac 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.p-str__lead {
  text-align: center;
  padding-bottom: 15px;
  margin-bottom: 30px;
  position: relative;
}
.p-str__lead::before {
  content: "";
  width: 50px;
  height: 2px;
  background-color: #0d6dac;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.p-str__desc {
  text-align: center;
  font-weight: 600;
  font-size: 1.05em;
}
.p-str__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px 15px;
}
.p-str__list__item .Img {
  margin-bottom: 6px;
}
.p-str__list__item .Img img {
  aspect-ratio: 3/2;
}
.p-str__list__item h4 {
  font-size: 1em;
}
@media screen and (min-width: 768px) {
  .p-str__title {
    font-size: 1.6em;
  }
  .p-str__lead {
    font-size: 1.35em;
    padding-bottom: 15px;
    margin-bottom: 45px;
  }
  .p-str__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 20px;
  }
  .p-str__list__item .Img {
    margin-bottom: 10px;
  }
  .p-str__list__item h4 {
    font-size: 1.1em;
  }
  .p-str__desc {
    font-size: 1.2em;
  }
  .p-str__desc .onlySP {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .p-str {
    padding-top: 80px;
    scroll-margin: 80px;
  }
  .p-str__title {
    font-size: 2em;
    margin-bottom: 20px;
  }
  .p-str__lead {
    font-size: 1.5em;
    margin-bottom: 60px;
  }
  .p-str__list {
    grid-template-columns: repeat(4, 1fr);
  }
  .p-str__list__item h4 {
    font-size: 1.25em;
  }
  .p-str__desc {
    font-size: 1.4em;
  }
}
@media screen and (min-width: 1280px) {
  .p-str {
    scroll-margin: 100px;
  }
}

.p-kaiketu {
  background-color: #ebf8ff;
}
.p-kaiketu__title {
  text-align: center;
}
.p-kaiketu__title h2 {
  font-size: 1.35em;
  line-height: 1.8;
  font-weight: 700;
  margin-bottom: 20px;
}
.p-kaiketu__list {
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
}
.p-kaiketu__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ccc;
}
.p-kaiketu__list li::before {
  content: "";
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border: 2px solid #40b5fa;
  border-radius: 6px;
  background: #fff url(../images/common/check.svg) no-repeat center/55%;
}
.p-kaiketu__list li p {
  font-weight: 600;
  font-size: 1.05em;
}
.p-kaiketu__band {
  background-color: #fff;
  border: 1px solid #40b5fa;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}
.p-kaiketu__band p {
  font-weight: 600;
  line-height: 1.8;
}
.p-kaiketu__band p:nth-child(1) {
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .p-kaiketu__title h2 {
    font-size: 1.65em;
  }
  .p-kaiketu__title h2 .onlySP {
    display: none;
  }
  .p-kaiketu__title p {
    font-size: 1.1em;
  }
  .p-kaiketu__list {
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
  }
  .p-kaiketu__list li {
    flex-direction: column;
    text-align: center;
    border-bottom: none;
    padding: 25px 10px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  }
  .p-kaiketu__list li::before {
    width: 32px;
    height: 32px;
  }
  .p-kaiketu__band {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 30px;
  }
  .p-kaiketu__band p {
    font-size: 1.15em;
  }
  .p-kaiketu__band p br {
    display: none;
  }
}

.comparison {
  scroll-margin: 64px;
  padding-bottom: 0;
}
.comparison__title {
  text-align: center;
  font-size: 1.3em;
  line-height: 1.7;
  font-weight: 700;
  margin-bottom: 15px;
}
.comparison__lead .onlyPC {
  display: none;
}
.comparison__table {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px 15px;
}
.comparison__table-title {
  text-align: center;
  font-size: 1.05em;
  font-weight: 700;
  margin-bottom: 15px;
}
.comparison__table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.comparison__table-scroll table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
}
.comparison__table-scroll th,
.comparison__table-scroll td {
  padding: 14px 12px;
  font-size: 15px;
  line-height: 1.6;
  border: 1px solid #e2e8f0;
  width: 50%;
}
.comparison__table-scroll th {
  background: linear-gradient(90deg, #0d6dac 0%, #40b5fa 25%, #40b5fa 65%, #1a8fd1 85%, #0d6dac 100%);
  color: #fff;
  font-weight: 700;
  text-align: center;
}
.comparison__table-scroll th:nth-child(1) {
  background: #888;
}
.comparison__table-scroll td {
  background: #fff;
  color: #333333;
}
.comparison__table-scroll td:last-child {
  background: #ebf8ff;
  font-weight: 600;
}
.comparison__note {
  color: #7a7a7a;
  font-size: 0.8em;
  line-height: 1.8;
  margin-top: 15px;
}
.comparison__main {
  background: url(../images/home/bg-1.webp) no-repeat center/cover;
  color: #fff;
}
.comparison__main h3 {
  line-height: 2;
  font-size: 1.25em;
}
@media screen and (min-width: 768px) {
  .comparison__title {
    font-size: 1.8em;
  }
  .comparison__lead {
    text-align: center;
    line-height: 2;
  }
  .comparison__lead .onlyPC {
    display: block;
  }
  .comparison__table {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    padding: 40px;
  }
  .comparison__table-title {
    font-size: 1.3em;
    margin-bottom: 25px;
  }
  .comparison__table-scroll th,
  .comparison__table-scroll td {
    padding: 18px 20px;
    font-size: 17px;
  }
  .comparison__main {
    text-align: center;
    line-height: 2.4;
  }
  .comparison__main h3 {
    font-size: 1.35em;
  }
}
@media screen and (min-width: 1024px) {
  .comparison {
    scroll-margin: 80px;
  }
  .comparison__lead {
    font-size: 1.2em;
  }
  .comparison__table-title {
    font-size: 1.5em;
  }
  .comparison__main {
    line-height: 2.8;
  }
  .comparison__main h3 {
    font-size: 1.5em;
  }
}
@media screen and (min-width: 1280px) {
  .comparison {
    scroll-margin: 100px;
  }
}

.p-service {
  position: relative;
  scroll-margin: 64px;
}
.p-service__list {
  display: grid;
  gap: 25px;
  margin-bottom: 45px;
}
.p-service__list__item {
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  position: relative;
}
.p-service__list__item .num {
  position: absolute;
  top: -20px;
  left: 5px;
  font-size: 5em;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(45deg, #40b5fa, #1a8fd1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.p-service__list__item .Img {
  margin-bottom: 15px;
}
.p-service__list__item .Img img {
  aspect-ratio: 3/2;
  border-radius: 10px;
}
.p-service__list__item .Desc h3 {
  position: relative;
  padding-left: 15px;
  font-size: 1.15em;
  color: #0d6dac;
  margin-bottom: 15px;
}
.p-service__list__item .Desc h3::before {
  content: "";
  width: 4px;
  height: 100%;
  background-color: #40b5fa;
  border-radius: 2px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.p-service__lead {
  font-weight: 600;
  line-height: 2;
  font-size: 1.1em;
  color: #0d6dac;
}
.p-service__lead .onlyPC {
  display: none;
}
.p-service__special {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}
.p-service__special .Img img {
  -o-object-fit: contain;
     object-fit: contain;
}
.p-service__special .Btn a {
  display: inline-block;
  position: absolute;
  bottom: 2%;
  right: 5px;
  width: 45%;
  transition: all 0.3s;
}
.p-service__special .Btn a:hover {
  opacity: 0.6;
}
@media screen and (min-width: 768px) {
  .p-service__list__item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 30px;
  }
  .p-service__list__item .Img {
    margin-bottom: 0;
  }
  .p-service__list__item .Desc {
    align-self: center;
  }
  .p-service__lead {
    text-align: center;
  }
  .p-service__lead .onlyPC {
    display: block;
  }
}
@media screen and (max-width: 1023px) {
  .p-service .view-pc {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .p-service {
    scroll-margin: 80px;
  }
  .p-service .view-sp {
    display: none;
  }
  .p-service__list {
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 60px;
  }
  .p-service__list__item .Desc h3 {
    padding-left: 20px;
    font-size: 1.35em;
    margin-bottom: 25px;
  }
  .p-service__list__item .Desc h3::before {
    width: 6px;
  }
  .p-service__lead {
    font-size: 1.25em;
  }
  .p-service__special {
    max-width: 1000px;
  }
  .p-service__special .Btn a {
    display: inline-block;
    position: absolute;
    bottom: 11%;
    right: 2.6%;
    width: 15%;
  }
}
@media screen and (min-width: 1280px) {
  .p-service {
    scroll-margin: 100px;
  }
}

.p-voice {
  background-color: #ebf8ff;
  scroll-margin: 64px;
}
.p-voice__slider .swiper {
  overflow: hidden;
}
.p-voice__slider .swiper-slide {
  height: auto;
}
.p-voice__card {
  height: 100%;
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid #ccc;
  padding: 20px;
}
.p-voice__card__icon {
  margin-bottom: 15px;
}
.p-voice__card__icon img {
  aspect-ratio: 3/2;
  border-radius: 10px;
}
.p-voice__card__title {
  font-size: 1.2em;
  font-weight: 700;
  line-height: 1.6;
  color: #0d6dac;
  margin-bottom: 15px;
}
.p-voice__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 25px;
}
.p-voice__note {
  text-align: center;
  font-size: 11px;
  color: #7a7a7a;
  margin-top: 15px;
}
.p-voice .swiper-button-prev,
.p-voice .swiper-button-next {
  position: static;
  width: 36px;
  height: 36px;
  margin: 0;
  background-color: #0d6dac;
  border-radius: 50%;
  transition: background-color 0.3s;
  --swiper-navigation-color: #fff;
}
.p-voice .swiper-button-prev svg,
.p-voice .swiper-button-next svg {
  width: 8px;
}
.p-voice .swiper-button-prev:hover,
.p-voice .swiper-button-next:hover {
  background-color: #40b5fa;
}
.p-voice .swiper-button-prev.swiper-button-disabled,
.p-voice .swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
}
.p-voice .swiper-pagination {
  position: static;
  display: flex;
  align-items: center;
  gap: 8px;
  width: auto;
}
.p-voice .swiper-pagination-bullet {
  margin: 0;
  background: #0d6dac;
  opacity: 0.3;
}
.p-voice .swiper-pagination-bullet-active {
  opacity: 1;
  background: #40b5fa;
}
@media screen and (min-width: 600px) {
  .p-voice__controls {
    justify-content: center;
    gap: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .p-voice {
    scroll-margin: 80px;
  }
  .p-voice__controls {
    gap: 60px;
  }
  .p-voice .swiper-button-prev,
  .p-voice .swiper-button-next {
    width: 55px;
    height: 55px;
  }
  .p-voice .swiper-button-prev svg,
  .p-voice .swiper-button-next svg {
    width: 12px;
  }
  .p-voice__card {
    padding: 30px;
  }
  .p-voice__card__icon {
    margin-bottom: 20px;
  }
  .p-voice__card__title {
    font-size: 1.2em;
    margin-bottom: 20px;
  }
  .p-voice__note {
    font-size: 14px;
    margin-top: 30px;
  }
}
@media screen and (min-width: 1280px) {
  .p-voice {
    scroll-margin: 100px;
  }
  .p-voice__card__title {
    font-size: 1.15em;
  }
  .p-voice__card__body p {
    font-size: 0.95em;
  }
  .p-voice__controls {
    display: none;
  }
}

.p-content {
  background-color: #fff;
  padding-bottom: 0;
  scroll-margin: 64px;
}
.p-content__note {
  text-align: center;
  font-size: 10px;
  line-height: 1.8;
}
.p-content__list__item {
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 20px;
  border-left: 4px solid #40b5fa;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
}
.p-content__list__item::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(64, 181, 250, 0.1019607843) 0%, transparent 70%);
  border-radius: 0 20px 0 60px;
}
.p-content__list__item h3 {
  position: relative;
  padding-left: 36px;
  margin-bottom: 15px;
  font-size: 1.1em;
  font-weight: 600;
}
.p-content__list__item h3::before {
  content: "✓";
  width: 24px;
  height: 24px;
  background-color: #40b5fa;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  font-weight: bold;
}
.p-content__list__item .Box dl {
  margin-bottom: 20px;
  text-align: center;
}
.p-content__list__item .Box dl:last-child {
  margin-bottom: 0;
}
.p-content__list__item .Box dl dt {
  font-size: 0.9em;
  font-weight: 600;
  margin-bottom: 8px;
  display: inline-block;
  background-color: #40b5fa;
  color: #fff;
  padding: 5px 20px;
  border-radius: 9999px;
}
.p-content__list__item .Box dl dd {
  font-weight: 600;
  font-size: 1.15em;
}
.p-content__list__item .Box dl dd strong {
  font-size: 1.4em;
  display: inline-block;
  margin: 0 5px;
  background: linear-gradient(-45deg, #0d6dac 0%, #1a8fd1 40%, #40b5fa 70%, #1a8fd1 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.p-content__img {
  aspect-ratio: 3/2;
  background: url(../images/home/img15.webp) no-repeat center/cover;
}
@media screen and (min-width: 768px) {
  .p-content .c-container {
    padding: 0 4vw;
  }
  .p-content__note {
    font-size: 12px;
  }
  .p-content__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
  }
  .p-content__list__item {
    margin-bottom: 0;
  }
  .p-content__list__item .Box dl dd strong {
    font-size: 1.6em;
  }
  .p-content__img {
    aspect-ratio: auto;
    height: 70vh;
    background-attachment: fixed;
  }
}
@media screen and (min-width: 1024px) {
  .p-content {
    scroll-margin: 80px;
  }
  .p-content .c-container {
    padding: 0;
  }
  .p-content__note {
    font-size: 13px;
  }
  .p-content__list__item h3 {
    font-size: 1.3em;
  }
  .p-content__list__item .Box dl dt {
    font-size: 1.1em;
  }
  .p-content__list__item .Box dl dd {
    font-size: 1.25em;
  }
  .p-content__img {
    height: 50vh;
  }
}
@media screen and (min-width: 1280px) {
  .p-content {
    scroll-margin: 100px;
  }
  .p-content__list {
    max-width: 1000px;
  }
  .p-content__list__item h3 {
    font-size: 1.5em;
  }
  .p-content__list__item .Box dl dt {
    font-size: 1.3em;
  }
  .p-content__list__item .Box dl dd {
    font-size: 1.4em;
  }
}

#flow {
  scroll-margin: 64px;
}
#flow .flow__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
#flow .flow__list__item {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  text-align: center;
  background-color: #fff;
  border-radius: 16px;
  border: 1px solid #ccc;
  padding: 25px 20px;
}
#flow .flow__list__item:not(:last-child)::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-right: 3px solid #0d6dac;
  border-bottom: 3px solid #0d6dac;
  transform: rotate(45deg);
  position: absolute;
  left: 50%;
  bottom: -20px;
  margin-left: -6px;
}
#flow .flow__list__item .Icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background-color: #ebf8ff;
}
#flow .flow__list__item .Icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 14px;
}
#flow .flow__list__item .num {
  display: inline-block;
  background-color: #40b5fa;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 14px;
  border-radius: 9999px;
  margin-bottom: 10px;
}
#flow .flow__list__item h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
}
#flow .flow__list__item:nth-child(2) .num {
  background-color: #1a8fd1;
}
#flow .flow__list__item:nth-child(3) .num {
  background-color: #0d6dac;
}
#flow .flow__list__item:nth-child(4) .num {
  background-color: #f97316;
}
#flow .flow__note {
  text-align: center;
  font-size: 12px;
  color: #7a7a7a;
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  #flow .flow__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }
  #flow .flow__list__item {
    max-width: none;
    margin: 0;
  }
  #flow .flow__list__item:not(:last-child)::after {
    top: 50%;
    left: auto;
    right: -24px;
    bottom: auto;
    margin: -6px 0 0;
    border-bottom: none;
    border-top: 3px solid #0d6dac;
  }
  #flow .flow__list__item h3 {
    height: 3em;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (min-width: 1024px) {
  #flow {
    scroll-margin: 80px;
  }
  #flow .flow__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 0 36px;
  }
  #flow .flow__list__item {
    padding: 35px 20px;
  }
  #flow .flow__list__item .Icon {
    width: 90px;
    height: 90px;
    margin-bottom: 20px;
  }
  #flow .flow__list__item .Icon img {
    padding: 18px;
  }
}
@media screen and (min-width: 1280px) {
  #flow {
    scroll-margin: 100px;
  }
  #flow .flow__list__item .Icon {
    width: 90px;
    height: 90px;
    margin-bottom: 20px;
  }
  #flow .flow__list__item .Icon img {
    padding: 18px;
  }
  #flow .flow__list__item .num {
    font-size: 15px;
    margin-bottom: 14px;
  }
  #flow .flow__list__item h3 {
    font-size: 18px;
  }
}

.p-promise {
  background-color: #ebf8ff;
}
.p-promise__list {
  display: grid;
  gap: 12px;
}
.p-promise__list__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ccc;
}
.p-promise__list__item::before {
  content: "";
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border: 2px solid #40b5fa;
  border-radius: 6px;
  background: #fff url(../images/common/check.svg) no-repeat center/55%;
}
.p-promise__list__item p {
  font-weight: 600;
  font-size: 1.05em;
}
.p-promise__list__item p .onlyPC {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-promise__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .p-promise__list__item {
    flex-direction: column;
    text-align: center;
    border-bottom: none;
    padding: 25px 10px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  }
  .p-promise__list__item::before {
    width: 32px;
    height: 32px;
  }
}
@media screen and (min-width: 1024px) {
  .p-promise__list {
    grid-template-columns: repeat(4, 1fr);
  }
  .p-promise__list__item p .onlyPC {
    display: block;
  }
}

.faq-contents {
  scroll-margin: 64px;
}
.faq-contents .faq__inner {
  max-width: 600px;
  margin: 0 auto;
}
.faq-contents .faq__item {
  padding: 25px 0;
  border-bottom: 1px solid #e5e5e5;
}
.faq-contents .faq dt button {
  position: relative;
  display: block;
  width: 100%;
  transition: color 0.2s cubic-bezier(0, 0, 0.58, 1);
}
.faq-contents .faq dt button:focus-visible {
  outline: 2px solid #40b5fa;
}
.faq-contents .faq dt span {
  display: block;
  position: relative;
  padding-left: 30px;
  padding-right: 50px;
}
.faq-contents .faq dt span::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "Q";
  font-weight: 400;
  font-style: italic;
  color: #40b5fa;
  font-size: 1.6em;
  line-height: 1;
}
.faq-contents .faq dd {
  position: relative;
}
.faq-contents .faq dd p {
  padding: 20px 10px 10px 30px;
  position: relative;
}
.faq-contents .faq dd p::before {
  position: absolute;
  top: 20px;
  left: 0;
  content: "A";
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: italic;
  color: #0d6dac;
  font-size: 1.8em;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .faq-contents .faq dt span {
    padding-left: 40px;
    padding-right: 60px;
  }
  .faq-contents .faq dd p {
    padding: 30px 10px 10px 40px;
  }
  .faq-contents .faq dd p::before {
    top: 32px;
  }
}
@media screen and (min-width: 1024px) {
  .faq-contents .faq__inner {
    max-width: 800px;
  }
}

.p-last {
  position: relative;
  padding: 60px 0 80px;
  background: url(../images/home/bg-2.webp) no-repeat center/cover;
  color: #fff;
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 60px), 50% 100%, 0 calc(100% - 60px));
}
.p-last .c-container {
  position: relative;
}
.p-last__title {
  font-size: 1.4em;
  line-height: 1.7;
  font-weight: 700;
  margin-bottom: 20px;
}
.p-last__desc {
  font-size: 0.9em;
  line-height: 2;
  margin-bottom: 25px;
  font-weight: 500;
}
.p-last__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}
.p-last__badges li {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 9999px;
  padding: 8px 18px;
  font-size: 0.8em;
  font-weight: 600;
}
.p-last__btn a {
  display: inline-block;
  background: #fff;
  color: #0d6dac;
  font-size: 1.15em;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 9999px;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}
.p-last__btn a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 768px) {
  .p-last {
    padding: 90px 0 110px;
  }
  .p-last__title {
    font-size: 1.6em;
    margin-bottom: 25px;
  }
  .p-last__desc {
    font-size: 1.05em;
    margin-bottom: 35px;
  }
  .p-last__badges {
    gap: 15px;
    margin-bottom: 40px;
  }
  .p-last__badges li {
    font-size: 0.9em;
    padding: 10px 24px;
  }
  .p-last__btn a {
    font-size: 1.3em;
    padding: 20px 55px;
  }
  .p-last .onlySP {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .p-last {
    padding: 110px 0 140px;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 100px), 50% 100%, 0 calc(100% - 100px));
  }
  .p-last__title {
    font-size: 2em;
    margin-bottom: 50px;
  }
  .p-last__desc {
    font-size: 1.1em;
    margin-bottom: 40px;
  }
  .p-last__badges {
    gap: 20px;
    margin-bottom: 50px;
  }
  .p-last__badges li {
    font-size: 1.2em;
    padding: 10px 30px;
  }
  .p-last__btn a {
    font-size: 1.5em;
    padding: 20px 65px;
  }
}

.p-cta {
  padding: 50px 0;
  position: relative;
}
.p-cta::before {
  content: "";
  width: 100%;
  height: 80%;
  background: linear-gradient(90deg, #0d6dac 0%, #40b5fa 25%, #40b5fa 65%, #1a8fd1 85%, #0d6dac 100%);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) skewY(-15deg);
  z-index: -1;
}
.p-cta__wrap {
  background-color: #fff;
  box-shadow: 0 0 20px rgba(79, 85, 112, 0.7019607843);
  padding: 40px 20px;
  display: grid;
  gap: 30px;
}
.p-cta__btn h3 {
  text-align: center;
  font-size: 15px;
  margin-bottom: 10px;
}
.p-cta__btn a {
  text-align: center;
  display: block;
  background: linear-gradient(135deg, #1a8fd1 0%, #40b5fa 100%);
  border-radius: 9999px;
  color: #fff;
  padding: 15px 0;
  font-weight: 600;
  max-width: 350px;
  box-shadow: 0 4px 12px rgba(64, 181, 250, 0.3);
  transition: all 0.3s ease;
  margin: 0 auto;
}
.p-cta__btn a p {
  display: inline-block;
  padding-right: 30px;
  position: relative;
}
.p-cta__btn a p::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../images/common/btn-mail-or.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.p-cta__btn a.line {
  background: transparent;
  border: 2px solid #1a8fd1;
  color: #1a8fd1;
  position: relative;
}
.p-cta__btn a.line p::before {
  background: url(../images/common/line-cta-or.svg) no-repeat center/contain;
}
.p-cta__btn a.line:hover {
  background: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(193, 19, 41, 0.2);
}
.p-cta__btn a:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(193, 19, 41, 0.4);
  background: linear-gradient(135deg, #e01a3a 0%, #c11329 100%);
}
@media screen and (min-width: 768px) {
  .p-cta::before {
    height: 70%;
    transform: translateY(-50%) skewY(-10deg);
  }
}
@media screen and (min-width: 1024px) {
  .p-cta::before {
    height: 80%;
    transform: translateY(-50%) skewY(-6deg);
  }
  .p-cta__wrap {
    grid-template-columns: repeat(2, 1fr);
    padding: 40px 30px;
    margin: 0 -6vw;
  }
  .p-cta__btn h3 {
    font-size: 17px;
    margin-bottom: 15px;
  }
  .p-cta__btn a {
    font-size: 18px;
  }
  .p-cta__btn a p {
    padding-right: 35px;
  }
  .p-cta__btn a p::before {
    width: 25px;
    height: 25px;
  }
}
@media screen and (min-width: 1200px) {
  .p-cta::before {
    height: 75%;
    transform: translateY(-50%) skewY(-5deg);
  }
  .p-cta__wrap {
    padding: 50px 40px;
    margin: 0;
  }
  .p-cta__btn a {
    max-width: 420px;
    padding: 20px 0;
  }
}

.c-contact {
  scroll-margin: 64px;
}
.c-contact__desc {
  text-align: center;
  font-weight: 600;
}
.c-contact__desc .hukidasi span {
  display: inline-block;
  background-color: #40b5fa;
  color: #fff;
  padding: 15px 30px 10px;
  border-radius: 9999px;
  margin-bottom: 20px;
  position: relative;
}
.c-contact__desc .hukidasi span::before {
  position: absolute;
  content: "";
  /* 上向きの二等辺三角形の場合 */
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #40b5fa;
  /* 色は任意に変更可能 */
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
}
.c-contact__desc .hukidasi span strong {
  font-size: 2em;
  line-height: 1;
  display: inline-block;
  margin-right: 8px;
}
.c-contact__desc .Desc {
  font-size: 1.05em;
  line-height: 2.2;
}
.c-contact__benefits {
  max-width: 500px;
  margin: 0 auto 30px;
  background-color: #ebf8ff;
  border-radius: 12px;
  padding: 20px;
}
.c-contact__benefits-lead {
  text-align: center;
  font-weight: 700;
  color: #0d6dac;
  margin-bottom: 12px;
}
.c-contact__benefits-list {
  display: grid;
  gap: 10px;
}
.c-contact__benefits-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.c-contact__benefits-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border: 2px solid #40b5fa;
  border-radius: 6px;
  background: #fff url(../images/common/check.svg) no-repeat center/55%;
}
.c-contact__benefits-list li p {
  font-size: 0.85em;
  text-align: left;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .c-contact__benefits {
    padding: 30px;
  }
  .c-contact__benefits-lead {
    font-size: 1.1em;
    margin-bottom: 15px;
  }
  .c-contact__benefits-list {
    gap: 12px;
  }
  .c-contact__benefits-list li::before {
    width: 22px;
    height: 22px;
  }
  .c-contact__benefits-list li p {
    font-size: 0.95em;
  }
}
.c-contact .contact-form .wrap {
  max-width: 520px;
  margin: 0 auto;
}
.c-contact .contact-form input[type=text], .c-contact .contact-form input[type=tel], .c-contact .contact-form input[type=email], .c-contact .contact-form textarea {
  width: 100%;
  border: none;
  background-color: #f2f2f2;
  padding: 8px;
}
.c-contact .contact-form textarea {
  margin-bottom: 0;
}
.c-contact .contact-form input[type=text], .c-contact .contact-form input[type=tel], .c-contact .contact-form input[type=email] {
  height: 45px;
}
.c-contact .contact-form select {
  width: 100%;
  border: none;
  background-color: #f2f2f2;
  padding: 8px;
  height: 45px;
  -moz-appearance: auto;
       appearance: auto;
  -webkit-appearance: auto;
  cursor: pointer;
}
.c-contact .contact-form dl {
  text-align: left;
  display: inline-block;
  width: 100%;
  padding-bottom: 30px;
}
.c-contact .contact-form dt {
  font-weight: 600;
}
.c-contact .contact-form dt p {
  display: inline;
}
.c-contact .contact-form .must {
  position: relative;
  padding-bottom: 10px;
}
.c-contact .contact-form .must::after {
  content: "必須";
  font-size: 0.8em;
  font-weight: 600;
  color: #fff;
  padding: 3px 6px;
  border-radius: 5px;
  background-color: red;
  margin-left: 5px;
  white-space: nowrap;
}
.c-contact .contact-form .free {
  position: relative;
  padding-bottom: 10px;
}
.c-contact .contact-form .wpcf7 form.invalid .wpcf7-response-output {
  border: 1px solid red;
}
.c-contact .contact-form .privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3em;
  line-height: 1.6;
  margin-bottom: 30px;
}
.c-contact .contact-form .privacy input[type=checkbox] {
  margin-top: 0.2em;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  -moz-appearance: auto;
       appearance: auto;
  -webkit-appearance: auto;
  cursor: pointer;
}
.c-contact .contact-form .privacy label {
  cursor: pointer;
}
.c-contact .contact-form .privacy .ms-1 {
  font-size: 1.1em;
  line-height: 1;
  color: rgb(33, 128, 218);
  border-bottom: 1px solid rgb(33, 128, 218);
}
.c-contact .contact-form .submit-btn {
  text-align: center;
}
.c-contact .contact-form .submit-btn input:disabled {
  border-color: #1a8fd1;
  background: #efefef;
}
.c-contact .contact-form .submit-btn input {
  border: none;
  background: #1a8fd1;
  color: #fff;
  font-size: 1.1em;
  letter-spacing: 0.08em;
  font-weight: bold;
  width: 70%;
  max-width: 320px;
  height: 45px;
  padding: 8px;
}
.c-contact .contact-form .ct-check .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px 20px;
}
.c-contact .contact-form .ct-check .wpcf7-list-item {
  margin: 0;
}
.c-contact .contact-form .ct-check label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 1em;
}
.c-contact .contact-form .ct-check input[type=checkbox] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  -moz-appearance: auto;
       appearance: auto;
  -webkit-appearance: auto;
  cursor: pointer;
}
.c-contact .contact-form .ajax-loader {
  display: none;
}
.c-contact .contact-form .wpcf7-spinner {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-contact .contact-form .submit-btn input {
    font-size: 1.3em;
    max-width: 380px;
    height: 64px;
  }
}
@media screen and (min-width: 1024px) {
  .c-contact .contact-form .wrap {
    max-width: 800px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .c-contact .contact-form dl {
    padding: 0;
  }
  .c-contact .contact-form .ct-other,
  .c-contact .contact-form .ct-check,
  .c-contact .contact-form .privacy,
  .c-contact .contact-form .submit-btn {
    grid-column: 1/-1;
  }
  .c-contact .contact-form .privacy {
    margin-bottom: 0;
    font-size: 1.1em;
  }
  .c-contact .contact-form .privacy input[type=checkbox] {
    width: 22px;
    height: 22px;
    margin-right: 5px;
  }
  .c-contact .contact-form .ct-check .wpcf7-checkbox {
    gap: 12px 24px;
  }
  .c-contact .contact-form .ct-check label {
    font-size: 1.1em;
  }
  .c-contact .contact-form dt {
    font-size: 1.1em;
  }
}
@media screen and (min-width: 1280px) {
  .c-contact .contact-form .wrap {
    max-width: 1000px;
    gap: 40px;
  }
}
.c-contact .grecaptcha-badge {
  box-shadow: none !important;
  width: 100% !important;
}
.c-contact .grecaptcha-badge iframe {
  box-shadow: grey 0px 0px 5px;
}
@media screen and (min-width: 1024px) {
  .c-contact__wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-bottom: 45px;
  }
  .c-contact__desc {
    flex-basis: 48%;
    max-width: 380px;
    margin-bottom: 0;
  }
  .c-contact__desc .hukidasi {
    font-size: 1.1em;
  }
  .c-contact__desc .Desc {
    font-size: 1.15em;
  }
  .c-contact__benefits {
    flex-basis: 48%;
    margin: 0;
    padding: 30px 40px;
  }
  .c-contact__benefits-lead {
    font-size: 1.25em;
    margin-bottom: 20px;
  }
  .c-contact__benefits-list li p {
    font-size: 1.05em;
  }
}

.grecaptcha-badge {
  visibility: hidden;
}

.breadcrumbs-wrap .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  color: #7a7a7a;
}
.breadcrumbs-wrap .breadcrumb a {
  color: #40b5fa;
  text-decoration: underline;
}
.breadcrumbs-wrap .breadcrumb .bc-sep {
  margin: 0 8px;
}

.c-privacy,
.c-thanks {
  margin-top: 30px;
}
.c-privacy-title,
.c-thanks-title {
  text-align: center;
  font-size: 1.8em;
  margin-bottom: 50px;
  font-weight: bold;
}
.c-privacy h2,
.c-thanks h2 {
  font-size: 1.2em;
  font-weight: 600;
  margin-bottom: 15px;
}
.c-privacy .List,
.c-thanks .List {
  margin-top: 15px;
  display: grid;
  gap: 8px;
}
.c-privacy .List li,
.c-thanks .List li {
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (min-width: 1024px) {
  .c-privacy,
  .c-thanks {
    margin-top: 50px;
  }
  .c-privacy-title,
  .c-thanks-title {
    font-size: 2.2em;
    margin-bottom: 70px;
  }
  .c-privacy h2,
  .c-thanks h2 {
    font-size: 1.4em;
  }
  .c-privacy .List,
  .c-thanks .List {
    margin-top: 30px;
    gap: 12px;
  }
}

.c-thanks-title {
  font-size: 1.5em;
}
@media screen and (min-width: 768px) {
  .c-thanks-title br {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .c-thanks-title {
    font-size: 1.8em;
  }
}

.p-404 {
  padding: 100px 0;
  text-align: center;
}
.p-404 h1 {
  font-size: 1.6em;
  font-weight: 700;
  margin-bottom: 15px;
}
.p-404 p {
  margin-bottom: 25px;
}
.p-404 a {
  display: inline-block;
  background-color: #40b5fa;
  color: #fff;
  padding: 12px 30px;
  border-radius: 9999px;
  font-weight: 600;
}
@media screen and (min-width: 1024px) {
  .p-404 {
    padding: 160px 0;
  }
}

article {
  padding: 30px 0;
  border-bottom: 1px solid #e5e5e5;
}
article h2 {
  font-size: 1.1em;
  font-weight: 700;
  margin-bottom: 10px;
}
article h2 a {
  color: #333333;
}

.pagination {
  margin-top: 40px;
}
.pagination ul {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.pagination li a,
.pagination li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 0.9em;
}
.pagination li span.current {
  background-color: #40b5fa;
  color: #fff;
  font-weight: 700;
}
.pagination li a {
  color: #333333;
}
.pagination li a:hover {
  background-color: #ebf8ff;
}/*# sourceMappingURL=style.css.map */