@charset "UTF-8";
.flex {
  display: flex;
}

.justify-start {
  justify-content: start;
}

.justify-end {
  justify-content: end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.items-stretch {
  align-items: stretch;
}

.items-start {
  align-items: start;
}

.items-center {
  align-items: center;
}

.items-end {
  align-items: end;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.sp {
  display: none;
}

@media (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
.center-x {
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.center-y {
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.center-xy {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

html {
  font-size: 100%;
  line-height: 1.4;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #333333;
  font-weight: 500;
}

body {
  background: white;
}

@media screen and (max-width: 1279px) and (min-width: 769px) {
  html {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 2.0833333333vw;
  }
}
.inner-m {
  max-width: 1160px;
  margin: 0 auto;
  width: 90%;
  padding: 5rem 0;
}

@media (max-width: 768px) {
  .inner-m {
    margin: 0 auto;
    width: 92%;
    padding: 6.144rem 0;
  }
}
main {
  margin-top: 6.25rem;
  min-height: calc(100vh - 35rem);
}

#body_wrap {
  margin-top: 6.5rem !important;
}

@media (max-width: 768px) {
  main {
    margin-top: 0 !important;
    min-height: calc(100vh - 108rem);
  }
  #body_wrap {
    margin-top: 7.68rem !important;
  }
}
.header {
  background: white;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
.header .inner {
  margin: 0 auto;
}
.header .wrap {
  gap: 20px;
}
.header .logo {
  width: 13rem;
  padding-left: 2.5rem;
}
.header .nav {
  padding: 1rem 0;
}
.header .phone {
  gap: 7.5px;
}
.header .phone img {
  width: 1.875rem;
}
.header .phone span {
  font-size: 1.625rem;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  letter-spacing: 0.075em;
}
.header .text {
  font-size: 0.875rem;
}
.header .texts {
  margin-bottom: 0.5rem;
}
.header ul {
  gap: 20px;
}
.header .item {
  font-size: 1rem;
}
.header .btn {
  background: var(--grade, linear-gradient(99deg, #62c6ff 9.95%, #0085d0 92.68%));
  height: 100%;
  padding: 0 1.4rem;
}
.header .btn img {
  width: 1.625rem;
  margin-bottom: 0.75rem;
}
.header .btn span {
  font-size: 1rem;
  color: white;
  line-height: 1;
}

@media (max-width: 1000px) {
  .header {
    background: none;
  }
  .header::before {
    content: "";
    background: white;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    z-index: -1;
    transition: all 0.3s;
  }
  .header.active::before {
    height: 100vh;
  }
  .header .inner {
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  .header .wrap {
    gap: 20px;
    height: 0;
    overflow-y: scroll;
    transition: all 0.3s;
  }
  .header .wrap.active {
    height: 100vh;
  }
  .header .wrap.pc {
    display: none;
  }
  .header .wrap.sp {
    display: flex;
  }
  .header .logo {
    width: 21rem;
    max-width: 200px;
    padding-left: 1.9rem;
  }
  .header .nav {
    padding: 1rem 0;
    align-items: center;
  }
  .header .phone {
    gap: 5px;
  }
  .header .phone img {
    width: 3.33rem;
  }
  .header .phone span {
    font-size: 2.56rem;
  }
  .header .text {
    font-size: 1.2rem;
  }
  .header .texts {
    flex-direction: column;
    margin-bottom: 0.5rem;
  }
  .header ul {
    gap: 20px;
    align-items: center;
  }
  .header .item {
    font-size: 1.66rem;
  }
  .header .btn {
    height: auto;
    width: 80%;
    max-width: 425px;
    padding: 2rem 0;
    margin: 1rem auto 0;
    flex-direction: row;
    gap: 1rem;
  }
  .header .btn img {
    width: 3rem;
    margin-bottom: 0rem;
  }
  .header .btn span {
    font-size: 1.75rem;
    line-height: 1.4;
  }
  .header .hamburger {
    display: block;
  }
}
.hamburger {
  position: relative;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  width: 60px;
  height: 60px;
}

.hamburger span {
  display: inline-block;
  transition: all 0.3s;
  position: absolute;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  height: 3px;
  border-radius: 2px;
  background: #0085d0;
  width: 55%;
}

.hamburger span:nth-of-type(1) {
  top: 20px;
}

.hamburger span:nth-of-type(2) {
  top: 30px;
}

.hamburger span:nth-of-type(3) {
  top: 40px;
}

.hamburger.active span:nth-of-type(1) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
}

.hamburger.active span:nth-of-type(2) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
}

.hamburger.active span:nth-of-type(3) {
  display: none;
}

.footer {
  background-image: url("../img/footer_background.webp");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
}
.footer .inner {
  width: 80%;
  margin: 0 auto;
  padding: 3.5rem 0 7.5rem;
}
.footer .logo {
  width: 14rem;
}
.footer .company {
  font-size: 1rem;
}
.footer .name {
  font-size: 2rem;
}
.footer .name span {
  font-size: 1.25rem;
}
.footer .wrap {
  gap: 2rem;
  margin-bottom: 1rem;
}
.footer .copy {
  background: rgba(0, 133, 208, 0.7);
  color: white;
  text-align: center;
  color: #fff;
  font-size: 12px;
  padding: 1.25rem 0;
}
.footer .texts02 {
  gap: 0.5rem;
}
.footer .texts02 img {
  width: 2.625rem;
}
.footer .texts02 p {
  font-size: 2rem;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  letter-spacing: 0.075em;
}
.footer .fax {
  font-size: 1.25rem;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.footer .text {
  font-size: 1rem;
}
.footer .block02 {
  gap: 4.625rem;
}
.footer li:not(:last-child) {
  margin-bottom: 1.5rem;
}
.footer li a {
  font-size: 1rem;
}

@media (max-width: 768px) {
  .footer {
    background-image: url("../img/footer_background-sp.webp");
  }
  .footer .inner {
    width: 92%;
    padding: 5.75rem 0 10.88rem;
    flex-direction: column;
    gap: 5rem;
  }
  .footer .logo {
    width: 24.32rem;
  }
  .footer .company {
    font-size: 1.66rem;
    margin-bottom: 1.79rem;
  }
  .footer .name {
    font-size: 2.56rem;
  }
  .footer .name span {
    font-size: 1.66rem;
  }
  .footer .wrap {
    flex-direction: column;
    align-items: start;
    gap: 2.8rem;
    margin-bottom: 2.8rem;
  }
  .footer .copy {
    font-size: 1.15rem;
    padding: 2.56rem 0;
  }
  .footer .texts02 {
    gap: 1.02rem;
  }
  .footer .texts02 img {
    width: 3.33rem;
  }
  .footer .texts02 p {
    font-size: 2.56rem;
  }
  .footer .fax {
    font-size: 1.92rem;
    margin-bottom: 2.75rem;
  }
  .footer .text {
    font-size: 1.66rem;
  }
  .footer .block02 {
    gap: 4.61rem;
  }
  .footer li:not(:last-child) {
    margin-bottom: 2.56rem;
  }
  .footer li a {
    font-size: 1.66rem;
  }
}
.title {
  margin-bottom: 40px;
}
.title p {
  width: fit-content;
  background: linear-gradient(99deg, #62c6ff 9.95%, #0085d0 92.68%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.5rem;
  font-family: "Outfit", sans-serif;
  margin-bottom: 20px;
  line-height: 1;
}
.title h2, .title h1 {
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 500;
}
.title.center {
  text-align: center;
}
.title.center p {
  margin: 0 auto 20px;
}
.title.yellow p {
  color: #ffef62;
  background: none;
  -webkit-text-fill-color: #ffef62;
}
.title.yellow h2 {
  color: white;
}

@media (max-width: 768px) {
  .title {
    margin-bottom: 3.9rem;
  }
  .title p {
    font-size: 2.048rem;
    margin-bottom: 2.048rem;
  }
  .title h2, .title h1 {
    font-size: 2.56rem;
  }
  .title.center p {
    margin: 0 auto 2.048rem;
  }
}
.moreBtn {
  font-size: 1rem;
  line-height: 1.7;
  background: white;
  border: 1px solid #333;
  padding: 1rem 4rem;
  width: 16.875rem;
  margin: auto;
  position: relative;
}
.moreBtn img {
  display: block;
  width: 1.25rem;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 768px) {
  .moreBtn {
    font-size: 1.664rem;
    padding: 1.25rem 4.5rem;
    width: 28.544rem;
  }
  .moreBtn img {
    width: 2.048rem;
    right: 2.75rem;
  }
}
.thanks {
  padding-top: 4rem;
}
.thanks .text {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .thanks {
    padding-top: 12rem;
    padding-bottom: 20rem;
  }
  .thanks .text {
    margin-bottom: 4rem;
    font-size: 1.5rem;
  }
}
/* 関連記事 */
.l-articleBottom__section.-related .-type-card .p-postList__thumb {
  display: none;
}
.l-articleBottom__section.-related .p-relatedPosts .p-postList__item {
  width: 100% !important;
  border-bottom: 1px solid var(--color_border);
  padding: 1em 0.25em;
  margin-bottom: 0;
  transition: background-color 0.25s;
}
.l-articleBottom__section.-related .p-relatedPosts .p-postList__item:first-of-type {
  border-top: 1px solid var(--color_border);
}
.l-articleBottom__section.-related .p-relatedPosts .p-postList__item:hover {
  background-color: var(--swl-color_hov_gray);
}
.l-articleBottom__section.-related .p-relatedPosts .p-postList__item:hover .p-postList__body {
  opacity: 1;
}
.l-articleBottom__section.-related .p-postList__body {
  display: flex;
  flex-direction: column;
  padding-top: 0;
}
.l-articleBottom__section.-related .p-postList__body .p-postList__meta {
  order: 1;
}
.l-articleBottom__section.-related .p-postList__body .p-postList__title {
  order: 2;
  font-size: 3.6vw;
}
@media (min-width: 600px) {
  .l-articleBottom__section.-related .p-postList__body .p-postList__title {
    font-size: 16px;
  }
}/*# sourceMappingURL=common.css.map */