@charset "UTF-8";
/*---------------------
Reset
---------------------*/
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  height: 0;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

#root, #__next {
  isolation: isolate;
}

hr {
  height: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

ol, ul {
  list-style: none;
}

/*---------------------
base
---------------------*/
:root {
  --transition: 0.3s;
  --shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  --color-blue: #007ACC;
  --color-light-blue: #F2FAFF;
  --color-pattens-blue: #D0F3FF;
  --color-tertiary-blue: #C5EDFB;
  --color-link-blue: #004EA1;
  --color-navy: #334971;
  --color-gray: #999999;
  --color-light-gray: #CCC;
  --color-black: #333;
  --color-white: #FFF;
}

html {
  font-size: 62.5%;
  color: var(--color-black);
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
@media screen and (max-width: 768.98px) {
  html {
    scroll-padding-top: 60px;
  }
}

body {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", "Noto Sans CJK JP", "Noto Sans", "Helvetica Neue", Arial, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  height: 100%;
  z-index: -1;
}
body.no-scroll {
  overflow: hidden;
}
body:not(.home) {
  position: relative;
}

main {
  position: relative;
  z-index: 0;
}

a {
  color: var(--color-black);
  text-decoration: none;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

svg {
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

/*---------------------
header
---------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  margin: auto;
  z-index: 999;
}
.header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: rgba(255, 255, 255, 0.8);
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 70px;
}
@media screen and (max-width: 768.98px) {
  .header__inner {
    height: 55px;
    gap: 23%;
  }
}
.header__inner .site-logo__img {
  width: 300px;
  height: auto;
  margin: 0 0 0 30px;
}
@media screen and (max-width: 768.98px) {
  .header__inner .site-logo__img {
    max-width: 200px;
    margin: 0 0 0 20px;
    width: 100%;
  }
}
.header__nav {
  margin-left: 30px;
}
@media screen and (max-width: 768.98px) {
  .header__nav {
    position: absolute;
    top: -1000%;
    right: 0;
    width: 100%;
    background: var(--color-tertiary-blue);
    padding: 75px 0 40px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    z-index: -1;
    -webkit-transition: top 0.3s ease;
    transition: top 0.3s ease;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 96%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 96%);
  }
}
.header__nav--contact {
  padding: 0;
}
@media screen and (max-width: 768.98px) {
  .header__nav--contact {
    max-width: 261px;
    margin: 0 auto;
  }
}
.header__nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768.98px) {
  .header__nav-list {
    display: grid;
    text-align: center;
    font-weight: bold;
    font-size: 1.6rem;
    color: var(--color-blue);
    width: 86%;
    margin: 0 auto;
  }
}
.header__nav-item {
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.header .header__nav-item:hover {
  background: rgba(0, 122, 204, 0.2);
}
.header__nav-link {
  display: block;
  width: 100%;
  height: 100%;
  padding: 23px 25px;
  word-break: keep-all;
}
@media screen and (max-width: 768.98px) {
  .header__nav-link {
    padding: 15px 0;
    color: var(--color-blue);
    font-weight: bold;
  }
}

@media screen and (min-width: 768.97px) {
  .hamburger {
    display: none;
  }
}
@media screen and (max-width: 768.98px) {
  .hamburger {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 55px;
    height: 55px;
    cursor: pointer;
    z-index: 20;
    background: var(--color-blue);
    border: none;
  }
}
@media screen and (max-width: 768.98px) {
  .hamburger span {
    display: block;
    height: 1px;
    width: 50%;
    background-color: #fff;
    margin: 8px auto;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
}

span.header-hamburger__text {
  display: none;
}

.hamburger.is-active span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(6px, 6px);
          transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(6px, -6px);
          transform: rotate(-45deg) translate(6px, -6px);
}

.is-active {
  top: 0;
}

.mail__btn-text--head {
  padding: 23px 25px;
}
@media screen and (max-width: 768.98px) {
  .mail__btn-text--head {
    padding: 23px 33px;
  }
}

.form-navBtn {
  padding: 0;
}

/*---------------------
footer
---------------------*/
.footer {
  width: 100%;
  position: -webkit-sticky;
  position: sticky;
  top: 100vh;
}
.footer__inner {
  background: var(--color-navy);
  text-align: center;
  padding: 30px 0 15px;
}
@media screen and (max-width: 768.98px) {
  .footer__inner {
    padding: 10px 0;
  }
}
@media screen and (max-width: 768.98px) {
  .footer__wrap {
    display: none;
  }
}
.footer__copyright {
  padding: 0 0 15px;
}

.list--nav-footer,
.footer__copyright {
  color: var(--color-white);
  font-size: 1.4rem;
}

.list--nav-footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 24px 0 87px;
  font-size: 1.4rem;
}
.list--nav-footer .list__item {
  padding: 0 30px;
  border-left: 1px solid var(--color-white);
}
.list--nav-footer .list__item:first-child {
  border-left: none;
}
.list--nav-footer .list__item a {
  color: var(--color-white);
}
.list--nav-footer .list__item a:hover {
  opacity: 0.6;
}

.link--footer-logo {
  display: block;
  width: 320px;
  height: auto;
  margin: 0 auto;
}
.link--footer-logo:hover {
  opacity: 0.6;
}

/*---------------------
content
---------------------*/
.btn--white {
  border: 1px solid var(--color-blue);
  color: var(--color-blue);
  background: var(--color-white);
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  position: relative;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
}
.btn--white::before {
  position: absolute;
  width: 0;
  height: 100%;
  content: "";
  background-color: var(--color-blue);
  left: 0;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}
.btn--white:hover {
  color: var(--color-white);
  border: 1px solid var(--color-blue);
}
.btn--white:hover::before {
  width: 100%;
}
.btn--white p {
  position: absolute;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  width: 100%;
}

.btn--blue {
  border: 1px solid var(--color-blue);
  color: var(--color-white);
  background: var(--color-blue);
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  position: relative;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
}
.btn--blue::before {
  position: absolute;
  width: 0;
  height: 100%;
  content: "";
  background-color: var(--color-white);
  left: 0;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}
.btn--blue:hover {
  color: var(--color-blue);
  border: 1px solid var(--color-blue);
}
.btn--blue:hover::before {
  width: 100%;
}
.btn--blue p {
  position: absolute;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  width: 100%;
}

@media screen and (min-width: 1270px) {
  .bg-subpage {
    background: url("assets/img/bg_/bg_left.svg"), url("assets/img/bg_/bg_right.svg");
    background-repeat: no-repeat, no-repeat;
    background-size: 150px auto, 150px auto;
    background-position: left top 457px, right bottom 65px;
    overflow: hidden;
    min-height: 900px;
  }
}

@media screen and (min-width: 1270px) {
  .bg-company {
    background: url("assets/img/bg_/bg_left.svg"), url("assets/img/bg_/bg_right.svg");
    background-repeat: no-repeat, no-repeat;
    background-size: 150px auto, 150px auto;
    background-position: left top 905px, right bottom 538px;
  }
}

.sec--mv {
  margin: 0 auto 62px;
}
.sec__inner {
  max-width: 1200px;
  width: 100%;
  margin: 80px auto 75px;
}
@media screen and (min-width: 768.98px) and (max-width: 1200px) {
  .sec__inner {
    max-width: 90%;
  }
}
@media screen and (max-width: 768.98px) {
  .sec__inner {
    margin: 40px auto;
    width: 87%;
  }
}

.title__wrap {
  text-align: center;
  margin: 0 0 60px 0;
}
@media screen and (max-width: 768.98px) {
  .title__wrap {
    margin: 0 0 30px 0;
  }
}

.title {
  color: var(--color-blue);
  margin: 0 auto;
  letter-spacing: 0.049em;
  font-size: 4.9rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  font-style: normal;
  line-height: 1em;
  text-align: center;
}
@media screen and (max-width: 768.98px) {
  .title {
    font-size: 3rem;
  }
}

.sub-title {
  color: var(--color-gray);
  font-family: "NotoSansCJKjp", sans-serif;
  font-weight: bold;
  letter-spacing: 0.2em;
  margin: 0 0 12px;
  font-size: 1.8rem;
}
@media screen and (max-width: 768.98px) {
  .sub-title {
    margin: 0 0 5px;
    font-size: 1.4rem;
  }
}

.content--2column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: auto 0;
  gap: 2%;
}
@media screen and (max-width: 768.98px) {
  .content--2column {
    gap: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.content__wrap {
  display: grid;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.content__text {
  line-height: 2;
  font-size: 1.6rem;
}
@media screen and (max-width: 768.98px) {
  .content__text {
    font-size: 1.6rem;
  }
}
.content__btn {
  max-width: 245px;
  height: 50px;
}
.content__btn-text--blue {
  padding: 13px 30px;
}
.content__btn-text--blue::after {
  content: "";
  background: url("assets/img/ico_/ico_triangle_blue.svg");
  background-repeat: no-repeat;
  background-size: auto;
  width: 13px;
  height: 15px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.content__btn-text--blue:hover::after {
  content: "";
  background: url("assets/img/ico_/ico_triangle_white.svg");
  background-repeat: no-repeat;
  background-size: auto;
  width: 13px;
  height: 15px;
}
.content__btn-text--white {
  padding: 13px 30px;
}
.content__btn-text--white::after {
  content: "";
  background: url("assets/img/ico_/ico_triangle_white.svg");
  background-repeat: no-repeat;
  background-size: auto;
  width: 13px;
  height: 15px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.content__btn-text--white:hover::after {
  content: "";
  background: url("assets/img/ico_/ico_triangle_blue.svg");
  background-repeat: no-repeat;
  background-size: auto;
  width: 13px;
  height: 15px;
}

@media screen and (max-width: 768.98px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 768.97px) {
  .sp {
    display: none !important;
  }
}

/*---------------------
img
---------------------*/
.img {
  height: auto;
  vertical-align: middle;
  overflow: hidden;
}

.link {
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.link:hover {
  opacity: 0.6;
}

/*---------------------
button
---------------------*/
.page-top__btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: grid;
  justify-items: center;
  gap: 5px;
  z-index: 1000;
}
@media screen and (max-width: 768.98px) {
  .page-top__btn {
    display: none;
  }
}
.page-top__btn--text {
  font-size: 12px;
  font-weight: bold;
  color: var(--color-blue);
}
.page-top__btn--link {
  position: relative;
  display: block;
  height: 40px;
  width: 40px;
  background: var(--color-light-blue);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  border: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-top__btn--link::after {
  content: "";
  background: url("assets/img/ico_/ico_pagetop_blue.svg");
  background-repeat: no-repeat;
  background-size: auto;
  width: 10px;
  height: 9px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.page-top__btn--link:hover::after {
  content: "";
  background: url("assets/img/ico_/ico_pagetop_skyblue.svg");
  background-repeat: no-repeat;
  background-size: auto;
  width: 10px;
  height: 9px;
  position: relative;
  z-index: 2;
}
.page-top__btn .btn--white:hover {
  border: none;
}

.contact-tel {
  color: var(--color-blue);
  font-size: 3.2rem;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.032rem;
}
@media screen and (max-width: 768.98px) {
  .contact-tel {
    font-size: 2.5rem;
  }
}
.contact-tel span {
  font-size: 1.6rem;
  font-weight: normal;
}

.main-heading {
  background: -webkit-linear-gradient(330deg, #65D7FF, #004EA1);
  background: linear-gradient(120deg, #65D7FF, #004EA1);
}
.main-heading__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  height: 280px;
}
@media screen and (min-width: 768.98px) and (max-width: 1200px) {
  .main-heading__inner {
    max-width: 90%;
  }
}
@media screen and (max-width: 768.98px) {
  .main-heading__inner {
    width: 87%;
    height: 219px;
  }
}
.main-heading__title {
  color: var(--color-white);
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.049em;
  font-size: 4.9rem;
  font-weight: 600;
  position: absolute;
  top: 129px;
  left: 0;
  text-align: center;
  margin: 0 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768.98px) {
  .main-heading__title {
    width: 100%;
    font-size: 3rem;
    margin: 0 auto;
    top: 102px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.main-heading .breadcrumb {
  color: var(--color-white);
  margin: 0 0 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  top: 236px;
  right: 0;
}
@media screen and (max-width: 768.98px) {
  .main-heading .breadcrumb {
    width: 100%;
    top: 179px;
  }
}
.main-heading .breadcrumb__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.main-heading .breadcrumb__item {
  font-size: 1.6rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 768.98px) {
  .main-heading .breadcrumb__item {
    font-size: 1.4rem;
  }
}
.main-heading .breadcrumb__item:not(:last-child) {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.main-heading .breadcrumb__item:not(:last-child)::after {
  display: inline-block;
  margin: 0 20px;
  content: " > ";
}
@media screen and (max-width: 768.98px) {
  .main-heading .breadcrumb__item:not(:last-child)::after {
    margin: 0 10px;
  }
}
.main-heading .breadcrumb a {
  color: var(--color-white);
}
.main-heading .breadcrumb a:hover {
  opacity: 0.6;
}
.main-heading .breadcrumb span {
  word-break: keep-all;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
}

/*---------------------
text
---------------------*/
.text--center {
  text-align: center;
}

.title--large {
  font-size: 3rem;
  font-weight: bold;
  color: var(--color-blue);
  margin: 30px 0;
}
@media screen and (max-width: 768.98px) {
  .title--large {
    margin: 20px 0;
    font-size: 2.5rem;
  }
}

.title--medium {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--color-blue);
  margin: 30px 0;
}
@media screen and (max-width: 768.98px) {
  .title--medium {
    margin: 20px 0;
    font-size: 2rem;
  }
}

.date {
  color: var(--color-blue);
  font-weight: bold;
  font-size: 1.6rem;
  margin: 0 0 10px 0;
}
@media screen and (max-width: 768.98px) {
  .date {
    margin: 0 0 5px 0;
  }
}

.title--small {
  font-size: 2.5rem;
  font-weight: 600;
  margin: 0 0 30px;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 768.98px) {
  .title--small {
    margin: 0 0 20px 0;
    font-size: 2rem;
  }
}

.text {
  font-size: 1.6rem;
  line-height: 2.5;
  letter-spacing: 0.016rem;
  margin: 20px auto;
}
@media screen and (max-width: 768.98px) {
  .text {
    line-height: 1.5;
  }
}

.link {
  display: block;
  color: var(--color-link-blue);
  margin: 20px 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: underline;
}

.list {
  list-style: disc;
  margin: 30px 0 30px 1.2em;
  display: grid;
  gap: 10px;
}

li::marker {
  font-size: 0.6em;
}

.mail__btn-text {
  font-size: 1.6rem;
}
@media screen and (max-width: 768.98px) {
  .mail__btn-text {
    font-size: 1.4rem;
  }
}
.mail__btn-text::before {
  content: "";
  background: url("assets/img/ico_/ico_mail_white.svg");
  background-repeat: no-repeat;
  background-size: auto;
  width: 24px;
  height: 17px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.mail__btn-text:hover::before {
  content: "";
  background: url("assets/img/ico_/ico_mail_blue.svg");
  background-repeat: no-repeat;
  background-size: auto;
  width: 24px;
  height: 17px;
}
.mail__btn p {
  position: unset;
  gap: 8px;
  height: 100%;
  width: 100%;
}

.tel__link {
  color: var(--color-blue);
  margin: 0 5px 0 15px;
}
@media screen and (max-width: 768.98px) {
  .tel__link {
    margin: 0 5px 0 10px;
  }
}

.grecaptcha-badge {
  bottom: 200px !important;
  z-index: 1000 !important;
}
@media screen and (max-width: 768.98px) {
  .grecaptcha-badge {
    bottom: 50px !important;
  }
}

.has-text-align-center {
  bottom: 200px;
}

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

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

.has-text-align-left {
  text-align: left;
}

.wp-element-button {
  border-radius: 2em;
  display: inline-block;
  padding: 0.5em 1em;
  background: #32373c;
  color: #fff !important;
  text-decoration: none !important;
}

.wp-block-file__button {
  margin-left: 0.75em !important;
}

.wp-block-heading {
  margin: 20px auto;
}

.title-outer {
  text-align: center;
}

.mv {
  position: relative;
  overflow: hidden;
  z-index: -1;
}
@media screen and (max-width: 768.98px) {
  .mv {
    padding: 55px 0 0;
  }
}
.mv__title-wrap {
  z-index: 999;
  top: 120px;
  left: 3.8vw;
  padding: 1.95% 2vw;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 4px;
}
@media screen and (min-width: 768.98px) and (max-width: 1200px) {
  .mv__title-wrap {
    top: 99px;
  }
}
@media screen and (max-width: 768.98px) {
  .mv__title-wrap {
    position: unset;
    margin: 20px auto;
    width: 86.8%;
    padding: 0;
  }
}
.mv__title, .mv__sub-text {
  letter-spacing: 0.078em;
  color: var(--color-blue);
  font-weight: 600;
}
@media screen and (max-width: 768.98px) {
  .mv__title, .mv__sub-text {
    position: unset;
  }
}
.mv__title {
  font-size: clamp(3rem, 2rem + 1.302vw, 4rem);
}
@media screen and (max-width: 768.98px) {
  .mv__title {
    font-size: 3rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0;
  }
}
.mv__sub-text {
  font-size: clamp(1.8rem, 0.6rem + 1.563vw, 3rem);
  line-height: 1.53;
  margin: 0.98% 0 0 1.3vw;
}
@media screen and (max-width: 768.98px) {
  .mv__sub-text {
    font-size: 1.8rem;
    color: var(--color-blue);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 10px 0 0;
  }
}
.mv picture {
  height: 100%;
}
@media screen and (max-width: 768.98px) {
  .mv picture {
    width: 100%;
  }
}
.mv img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768.98px) {
  .mv img {
    display: block;
    margin: 0 auto;
  }
}
.mv .mv__swiper {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  overflow: hidden;
  -webkit-clip-path: polygon(0 0, 100% 9.2%, 100% 100%, 0 90.8%);
          clip-path: polygon(0 0, 100% 9.2%, 100% 100%, 0 90.8%);
  position: relative;
}
@media screen and (max-width: 768.98px) {
  .mv .mv__swiper {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    -webkit-clip-path: unset;
            clip-path: unset;
    -webkit-transform: skewY(1.284deg);
            transform: skewY(1.284deg);
    padding: 5px 0;
  }
}
.mv .mv__swiper .swiper-slide {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 49.5vw;
  min-height: 500px;
}
@media screen and (max-width: 768.98px) {
  .mv .mv__swiper .swiper-slide {
    aspect-ratio: 357/295;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 0;
    height: auto;
    min-height: initial;
  }
}

.about {
  width: 100%;
  height: auto;
}
.about__inner {
  margin: 65.5px auto 100px;
}
@media screen and (max-width: 768.98px) {
  .about__inner {
    margin: 40px auto;
  }
}
.about__item {
  display: grid;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-align-content: start;
      -ms-flex-line-pack: start;
          align-content: start;
}
@media screen and (max-width: 768.98px) {
  .about__item {
    height: auto;
    min-height: 224px;
    grid-template-rows: auto;
  }
}
.about__item-wrap {
  display: grid;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-content: start;
      -ms-flex-line-pack: start;
          align-content: start;
  grid-template-rows: 70px 30%;
  gap: 20px;
  min-height: 317px;
  padding: 60px 0;
}
@media screen and (max-width: 1200px) {
  .about__item-wrap {
    padding: 30px 0;
    gap: 15px;
  }
}
@media screen and (max-width: 768.98px) {
  .about__item-wrap {
    height: auto;
    min-height: 224px;
    padding: 30px 0;
    grid-template-rows: auto;
  }
}
.about__item-customer {
  content: "";
  background: url("assets/img/img_/img_point1.jpg");
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.about__item-polite {
  content: "";
  background: url("assets/img/img_/img_point2.png");
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.about__item-support {
  content: "";
  background: url("assets/img/img_/img_point3.jpg");
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.about__title, .about__text {
  color: var(--color-white);
}
.about__title {
  font-size: 2.5rem;
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
}
@media screen and (min-width: 768.98px) and (max-width: 1200px) {
  .about__title {
    font-size: 2.2rem;
    padding: 0 10px;
  }
}
@media screen and (max-width: 768.98px) {
  .about__title {
    font-size: 2rem;
  }
}
.about__text {
  width: 78%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: 0 auto;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.016em;
  text-align: left;
}
.about__text:nth-of-type(1) {
  margin-bottom: 0;
}
@media screen and (max-width: 768.98px) {
  .about__text {
    width: 87%;
    height: auto;
  }
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.about .support {
  display: grid;
  place-content: center;
  gap: 50px;
}
@media screen and (max-width: 768.98px) {
  .about .support {
    display: contents;
  }
}
.about .support__lead {
  font-size: 3.5rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  color: var(--color-blue);
  letter-spacing: 0.035em;
  line-height: 1.71;
}
@media screen and (max-width: 768.98px) {
  .about .support__lead {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    margin: 0 auto 30px;
    font-size: 2.5rem;
  }
}
.about .support__list {
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 480px;
  width: 100%;
  gap: 5%;
}
@media screen and (max-width: 768.98px) {
  .about .support__list {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 290px;
    -webkit-column-gap: 6.8%;
       -moz-column-gap: 6.8%;
            column-gap: 6.8%;
    row-gap: 0;
  }
}
.about .support__item {
  width: 40%;
  max-width: 135px;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 768.98px) {
  .about .support__item {
    width: 46.6%;
  }
}
.about .support__item-text {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--color-blue);
  color: var(--color-blue);
  font-weight: 600;
  border-radius: 50%;
  text-align: center;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  font-size: clamp(1.3rem, 1.1rem + 0.26vw, 1.5rem);
}
@media screen and (max-width: 768.98px) {
  .about .support__item-text {
    font-size: 1.6rem;
    padding: 0 3%;
  }
}
@media screen and (max-width: 768.98px) {
  .about .support__content-link {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
  }
}
.about .support__content-wrap {
  gap: 30px;
}
@media screen and (max-width: 768.98px) {
  .about .support__content-wrap {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media screen and (max-width: 768.98px) {
  .about .support__content-text:last-child {
    margin: 0 auto 30px;
  }
}
.about .about__item.animate {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-animation: fadeInUp 0.6s ease;
          animation: fadeInUp 0.6s ease;
}
.about .content--about {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto 75px;
  gap: 1px;
}
@media screen and (max-width: 768.98px) {
  .about .content--about {
    display: grid;
    margin: 0 auto;
  }
}
.about .no-margin {
  margin: 0;
}

.content__table {
  margin: 30px auto;
  max-width: 800px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.content__def {
  border-collapse: collapse;
  margin: 0 0 40px 0;
}
@media screen and (max-width: 768.98px) {
  .content__def {
    width: 100%;
    margin: 0 0 30px 0;
  }
}
@media screen and (max-width: 768.98px) {
  .content__table-list {
    padding: 10px 0;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    font-size: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.content__table-list .table__link {
  display: block;
  width: 100%;
  padding: 20px 20px;
  border-bottom: solid 1px var(--color-light-gray);
  position: relative;
}
@media screen and (max-width: 768.98px) {
  .content__table-list .table__link {
    display: grid;
    padding: 15px 25px 15px 10px;
  }
}
.content__table-list .table__link::after, .content__table-list .table__link:hover::after {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
@media screen and (max-width: 768.98px) {
  .content__table-list .table__link::after, .content__table-list .table__link:hover::after {
    display: none;
  }
}
.content__table-list .table__link::after {
  content: "";
  -webkit-mask-image: url("assets/img/ico_/ico_triangle_blue.svg");
          mask-image: url("assets/img/ico_/ico_triangle_blue.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: auto;
          mask-size: auto;
  background: #505050;
  width: 13px;
  height: 15px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.content__table-list .table__link--date {
  color: var(--color-blue);
  text-align: left;
  position: relative;
  font-weight: bold;
  width: 90%;
  margin: 0 20px;
  text-align: left;
}
@media screen and (max-width: 768.98px) {
  .content__table-list .table__link--date {
    width: 100%;
    margin: 0 0 5px;
  }
}
.content__table-list .table__link--title {
  width: 55%;
  margin: 0 20px;
}
@media screen and (max-width: 768.98px) {
  .content__table-list .table__link--title {
    width: 100%;
    margin: 0;
  }
}
.content__table-item {
  width: 100%;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.content__table-item:hover {
  background: var(--color-light-blue);
}

.news .content__btn {
  margin: 0 0 0 auto;
  max-width: 292px;
}
@media screen and (max-width: 768.98px) {
  .news .content__btn {
    margin: 0 auto;
  }
}

.service {
  position: relative;
  width: 100%;
  -webkit-clip-path: polygon(0 0, 100% 1.89%, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 1.89%, 100% 100%, 0% 100%);
  background: -webkit-linear-gradient(330deg, #65D7FF, #004EA1);
  background: linear-gradient(120deg, #65D7FF, #004EA1);
  z-index: -1;
  padding: 90px 0 110px;
}
@media screen and (max-width: 768.98px) {
  .service {
    -webkit-clip-path: polygon(0 0, 100% 0.6%, 100% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0.6%, 100% 100%, 0% 100%);
    padding: 30px 0;
  }
}
.service .sec__inner {
  margin: 0 auto;
}
.service .title, .service .sub-title {
  color: var(--color-white);
}
@media screen and (max-width: 768.98px) {
  .service .title__wrap {
    margin-bottom: 20px;
  }
}
.service__lead {
  font-size: 2.5rem;
  font-weight: 600;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: var(--color-white);
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 768.98px) {
  .service__lead {
    font-size: 2rem;
  }
}
.service__content-wrap {
  margin: 60px auto 0;
}
@media screen and (max-width: 768.98px) {
  .service__content-wrap {
    margin: 30px auto 0;
  }
}
.service__content-list {
  display: grid;
  gap: 30px;
}
@media screen and (max-width: 768.98px) {
  .service__content-list {
    gap: 20px;
  }
}
.service__content-item {
  background: var(--color-white);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 40px 25px;
  gap: 50px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768.98px) {
  .service__content-item {
    display: grid;
    padding: 30px 25px;
    gap: 15px;
  }
}
.service__content-item--small {
  display: grid;
  grid-template-rows: -webkit-max-content;
  grid-template-rows: max-content;
  grid-row-gap: 30px;
}
@media screen and (max-width: 768.98px) {
  .service__content-item--small {
    display: contents;
  }
}
.service__content-item picture {
  -webkit-flex-basis: 50%;
      -ms-flex-preferred-size: 50%;
          flex-basis: 50%;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  max-width: 500px;
}
@media screen and (max-width: 768.98px) {
  .service__content-item picture {
    max-width: unset;
    -webkit-flex-shrink: initial;
        -ms-flex-negative: initial;
            flex-shrink: initial;
  }
}
.service__content-img {
  max-width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 768.98px) {
  .service__content-img {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
    width: 100%;
  }
}
.service__item-title {
  color: var(--color-blue);
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.03em;
  line-height: 1.3;
}
@media screen and (max-width: 768.98px) {
  .service__item-title {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    font-size: 2.5rem;
  }
}
.service__item-title span {
  display: inline-block;
  color: var(--color-gray);
  font-size: 1.6rem;
  letter-spacing: 0.16em;
  margin: 0 0 10px 0;
}
.service__item-text {
  font-size: 1.6rem;
  letter-spacing: 0.016em;
  line-height: 2;
}
@media screen and (max-width: 768.98px) {
  .service__item-text {
    line-height: 1.6;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
}
.service .other__wrap {
  display: grid;
  place-content: center;
  gap: 30px;
}
@media screen and (max-width: 768.98px) {
  .service .other__wrap {
    gap: 15px;
  }
}
.service .other__wrap-text {
  color: var(--color-blue);
  font-weight: bold;
  font-size: 2.5rem;
  text-align: center;
}
@media screen and (max-width: 768.98px) {
  .service .other__wrap-text {
    text-align: left;
    font-size: 2rem;
  }
}
.service .other__wrap-list {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(3, auto);
  gap: 30px;
  -webkit-column-gap: 250px;
     -moz-column-gap: 250px;
          column-gap: 250px;
  row-gap: 10px;
}
@media screen and (min-width: 768.98px) and (max-width: 1200px) {
  .service .other__wrap-list {
    -webkit-column-gap: 10%;
       -moz-column-gap: 10%;
            column-gap: 10%;
  }
}
@media screen and (max-width: 768.98px) {
  .service .other__wrap-list {
    grid-auto-flow: unset;
    line-height: 1.6;
  }
}
.service .other__wrap-item {
  font-size: 1.6rem;
}
.service .other__wrap-item:last-of-type {
  text-align: end;
}
@media screen and (max-width: 768.98px) {
  .service .other__wrap-item {
    text-indent: -1em;
    padding-left: 1em;
  }
}

.contact {
  height: 492px;
  position: relative;
  content: "";
  background: url("assets/img/bg_/bg_plane_pc.jpg");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  margin: 400px auto -2px;
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 768.98px) {
  .contact {
    height: 357px;
    content: "";
    background: url("assets/img/bg_/bg_plane_sp.jpg");
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    margin: 300px auto -2px;
    width: 100%;
    z-index: -1;
  }
}
.contact__inner {
  margin: 0 auto;
  position: absolute;
  top: -330px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
@media screen and (max-width: 768.98px) {
  .contact__inner {
    width: 100%;
    top: -260px;
  }
}
.contact__wrap {
  max-width: 710px;
  margin: 0 auto;
}
@media screen and (max-width: 768.98px) {
  .contact__wrap {
    width: auto;
  }
}
.contact__item-small {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 50px;
  -webkit-box-align: end;
  -webkit-align-items: end;
      -ms-flex-align: end;
          align-items: end;
}
@media (max-width: 950px) {
  .contact__item-small {
    display: grid;
    gap: 30px;
  }
}
@media screen and (max-width: 768.98px) {
  .contact__item-small {
    gap: 20px;
  }
}
.contact .sec__content {
  background: var(--color-light-blue);
  padding: 80px 100px 90px;
  margin: 0 0 -2px;
}
@media screen and (max-width: 768.98px) {
  .contact .sec__content {
    width: 87%;
    margin: 0 auto;
    padding: 30px 24px;
  }
}
.contact .item__text {
  line-height: 2;
  margin: 0 0 40px;
}
@media screen and (max-width: 768.98px) {
  .contact .item__text {
    line-height: 1.5;
    margin: 0 auto 30px;
  }
}
.contact .mail__btn {
  max-width: 265px;
}
.contact .mail__btn-text--bottom {
  padding: 23px 35px;
}

.bg-company .title {
  font-size: 3.5rem;
}
@media screen and (max-width: 768.98px) {
  .bg-company .title {
    font-size: 2.5rem;
  }
}
.bg-company .sub-title {
  letter-spacing: 0.2em;
}

.message {
  margin: 80px auto 0;
}
@media screen and (max-width: 768.98px) {
  .message {
    margin: 0;
  }
}
.message__wrap--small {
  max-width: 810px;
  margin: 40px auto 0;
}
@media screen and (max-width: 768.98px) {
  .message__wrap--small {
    margin: 30px auto 0;
  }
}
.message__img {
  max-width: 400px;
  height: auto;
}
@media screen and (max-width: 768.98px) {
  .message__img {
    max-width: none;
    width: 84%;
  }
}
.message__text {
  line-height: 2.5;
  letter-spacing: 0.016rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 768.98px) {
  .message__text {
    max-width: none;
    width: 100%;
    margin-bottom: 10px;
  }
}
.message .message__text:has(+ .message__name) {
  margin-bottom: 0;
}
.message__name {
  margin: 20px auto 0;
  text-align: right;
}
.message__profile {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.profile {
  margin: 0 auto 80px;
}
@media screen and (min-width: 768.98px) and (max-width: 1200px) {
  .profile {
    max-width: 90%;
  }
}
@media screen and (max-width: 768.98px) {
  .profile {
    max-width: 87%;
    margin: 0 auto 40px;
  }
}
.profile__inner {
  max-width: 960px;
  margin: 0 auto 20px;
  background: var(--color-light-blue);
  padding: 50px 75px;
}
@media screen and (max-width: 768.98px) {
  .profile__inner {
    width: 100%;
    padding: 40px 24px;
  }
}
.profile__inner a {
  color: var(--color-link-blue);
  margin: 20px 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: underline;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.profile__def {
  margin: 30px auto 0;
  max-width: 810px;
  width: 100%;
}
.profile__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 768.98px) {
  .profile__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
.profile__list th {
  padding: 20px 0;
  width: 24.7%;
  border-bottom: 1px solid var(--color-blue);
  color: var(--color-blue);
  font-weight: bold;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768.98px) {
  .profile__list th {
    width: 100%;
    text-align: left;
    border: none;
    padding: 20px 10px 10px;
    -webkit-box-pack: left;
    -webkit-justify-content: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
}
@media screen and (max-width: 768.98px) {
  .profile__list .th--first {
    padding: 0 10px 10px;
  }
}
.profile__list td {
  padding: 20px 50px;
  width: 74.1%;
  border-bottom: 1px solid var(--color-light-gray);
  line-height: 1.8;
  display: grid;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768.98px) {
  .profile__list td {
    width: 100%;
    margin: 0;
    padding: 0 10px 20px;
  }
}
.profile .google-map {
  margin: 20px 0 0 0;
}
.profile .notice__text {
  margin: 0 auto;
  text-align: left;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.016rem;
  max-width: 810px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}
.profile ul {
  list-style: disc;
  margin: 0 0 0 1em;
}
.profile ol {
  list-style: decimal;
  margin: 0 0 0 1em;
}
.profile ol li::marker {
  font-size: 1em;
}

.pagination {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.pagination .page-numbers {
  display: block;
  color: var(--color-blue);
  font-size: 1.8rem;
  font-weight: bold;
  width: 22px;
  text-align: center;
  margin: 0 15px;
  position: relative;
}
@media screen and (max-width: 768.98px) {
  .pagination .page-numbers {
    width: auto;
  }
}
.pagination .page-numbers::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: var(--color-blue);
  bottom: -1px;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.pagination .page-numbers:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.pagination .dots:hover::after {
  -webkit-transform: scale(0, 0);
          transform: scale(0, 0);
}
.pagination .current::after {
  content: "";
  width: 100%;
  height: 2px;
  background: var(--color-blue);
  bottom: -1px;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.pagination .nav-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.s-info {
  margin: 80px auto;
}
.s-info__inner {
  border-bottom: solid 1px var(--color-light-gray);
  margin: 0 auto 40px;
}
.s-info__header {
  border-bottom: 1px solid var(--color-light-gray);
}
.s-info__title {
  font-size: 2.5rem;
  color: #000;
  padding: 0 0 30px;
}
@media screen and (max-width: 768.98px) {
  .s-info__title {
    font-size: 2rem;
    padding: 0 0 20px;
  }
}
.s-info__content-inner {
  margin: 30px 0 40px;
}
@media screen and (max-width: 768.98px) {
  .s-info__content-inner {
    margin: 20px 0 40px;
  }
}
.s-info__content-inner h1, .s-info__content-inner h2, .s-info__content-inner h3, .s-info__content-inner h4 {
  color: var(--color-blue);
}
@media screen and (max-width: 768.98px) {
  .s-info__content-inner h1, .s-info__content-inner h2, .s-info__content-inner h3, .s-info__content-inner h4 {
    margin: 20px 0;
  }
}
.s-info__content-inner h1 {
  font-size: 3rem;
}
@media screen and (max-width: 768.98px) {
  .s-info__content-inner h1 {
    font-size: 2.5rem;
  }
}
.s-info__content-inner h2 {
  font-size: 2.5rem;
}
@media screen and (max-width: 768.98px) {
  .s-info__content-inner h2 {
    font-size: 2rem;
  }
}
.s-info__content-inner ol, .s-info__content-inner ul {
  margin: 30px 0 30px 1.2em;
  display: grid;
  gap: 10px;
}
.s-info__content-inner ul {
  list-style: disc;
}
.s-info__content-inner ol {
  list-style: decimal;
}
.s-info__content-inner ol li::marker {
  font-size: 1em;
}
.s-info__content-inner li {
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.016rem;
}
.s-info__content-inner p {
  font-size: 1.6rem;
  line-height: 2.5;
  letter-spacing: 0.016rem;
  margin: 20px auto;
}
.s-info__content-inner a {
  color: var(--color-link-blue);
  margin: 20px 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: underline;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.s-info__content-inner img {
  display: block;
  width: 500px;
  height: auto;
  margin: 30px auto;
}
@media screen and (max-width: 768.98px) {
  .s-info__content-inner img {
    width: 100%;
    height: auto;
    margin: 20px auto;
  }
}

@media screen and (max-width: 768.98px) {
  .a-info .sec__inner {
    margin: 40px auto;
  }
}
@media screen and (max-width: 768.98px) {
  .a-info .content__table {
    margin: 0 auto;
  }
}

.select {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media screen and (max-width: 768.98px) {
  .select {
    gap: 5%;
  }
}
.select__next, .select__prev {
  cursor: pointer;
  position: relative;
  display: inline-block;
  width: 56px;
  height: 50px;
  border: 1px solid var(--color-blue);
  margin: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.select__next:after, .select__prev:after {
  content: "";
  background: url("assets/img/ico_/ico_triangle_blue.svg");
  width: 13px;
  height: 15px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.select__next:hover:after, .select__prev:hover:after {
  content: "";
  background: url("assets/img/ico_/ico_triangle_white.svg");
  width: 13px;
  height: 15px;
}
.select__next a, .select__prev a {
  display: block;
  width: 100%;
  height: auto;
}
.select__next:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.select__prev:after {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
.select__btn {
  color: var(--color-blue);
  border: 1px solid var(--color-blue);
  width: 157px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  font-weight: bold;
  margin: 0;
}
.select__btn:hover {
  background: var(--color-blue);
  color: var(--color-white);
}
.select__text {
  -webkit-box-pack: center !important;
  -webkit-justify-content: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}
.select .link {
  text-decoration: underline;
}

.p-contact {
  margin: 80px auto 0;
}
@media screen and (max-width: 768.98px) {
  .p-contact {
    margin: 40px auto 0;
  }
}
@media screen and (max-width: 768.98px) {
  .p-contact__inner {
    width: 100%;
    margin: 0 0 40px 0;
  }
}
.p-contact__item-small {
  display: grid;
  justify-items: center;
  gap: 30px;
  text-align: center;
}
@media screen and (max-width: 768.98px) {
  .p-contact__item-small {
    gap: 20px;
  }
}
.p-contact__tel-title {
  font-size: 3rem;
  color: var(--color-blue);
  margin: 0 auto;
}
@media screen and (max-width: 768.98px) {
  .p-contact__tel-title {
    font-size: 2.5rem;
  }
}
.p-contact__mail-wrap {
  background: var(--color-light-blue);
  padding: 40px 80px;
  max-width: 800px;
  margin: 50px auto 0;
}
@media screen and (max-width: 768.98px) {
  .p-contact__mail-wrap {
    padding: 40px 24px;
  }
}
.p-contact__mail-title {
  font-size: 3rem;
  text-align: center;
  color: var(--color-blue);
}
@media screen and (max-width: 768.98px) {
  .p-contact__mail-title {
    font-size: 2.5rem;
  }
}
.p-contact__label-wrap {
  margin: 30px auto;
  display: block;
}
.p-contact__btn {
  display: block;
  margin: 30px 0;
}
@media screen and (max-width: 768.98px) {
  .p-contact__btn {
    margin: 0;
  }
}
.p-contact__btn:after {
  content: "";
  background: url("assets/img/ico_/ico_triangle_white.svg");
  width: 13px;
  height: 15px;
}
.p-contact__privacylink {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 6px 0 0;
  color: var(--color-link-blue);
  text-decoration: underline;
  cursor: pointer;
}
.p-contact__privacylink:hover {
  opacity: 0.6;
}
.p-contact__privacy-img {
  width: 17px;
  height: 17px;
  margin: 0 8px 0 0;
}
.p-contact .revise-send__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  margin: 0 auto;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768.98px) {
  .p-contact .revise-send__wrap {
    margin: 30px auto 0;
    display: grid;
    place-items: center;
    -webkit-box-pack: unset;
    -webkit-justify-content: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
    gap: 20px;
  }
}
.p-contact .revise__btn {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 125px;
}
@media screen and (max-width: 768.98px) {
  .p-contact .revise__btn {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
}
.p-contact .revise__btn p {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768.98px) {
  .p-contact .send__btn {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
}
.p-contact .confirm__btn {
  margin: 30px auto 0;
}
.p-contact .form-text {
  font-size: 1.6rem;
  color: var(--color-blue);
  font-weight: bold;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 15px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-contact .mail-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-contact .title--large {
  text-align: center;
}
.p-contact .input__area {
  max-width: 640px;
  margin: 0 auto;
}
.p-contact .confirm__area .text {
  margin: 0 auto 20px;
}
.p-contact .wpcf7-text,
.p-contact .wpcf7-textarea {
  width: 100%;
  max-width: 640px;
  height: 44px;
  border: 1px solid var(--color-gray);
  background: var(--color-white);
  outline: none;
}
.p-contact .wpcf7-text:focus,
.p-contact .wpcf7-textarea:focus {
  border: 2px solid var(--color-blue);
}
.p-contact .bl_formConfirm,
.p-contact .wpcf7-response-output,
.p-contact .bl_formConfirm .wpcf7-spinner {
  display: none;
}
.p-contact .detail {
  height: 130px;
}
@media screen and (max-width: 768.98px) {
  .p-contact .detail {
    height: 110px;
  }
}
.p-contact .checkbox {
  width: 36px;
  height: 36px;
  margin: 0 13px 0 0;
  position: relative;
}
@media screen and (max-width: 768.98px) {
  .p-contact .checkbox {
    width: 28px;
    height: 28px;
  }
}
.p-contact .checkbox__flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-contact .wpcf7-list-item {
  margin: 0;
}
.p-contact .wpcf7-list-item-label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-contact input[type=checkbox] {
  opacity: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  position: absolute;
  pointer-events: none;
  border: 1px solid var(--color-gray);
}
.p-contact input[type=checkbox] + span::before {
  display: inline-block;
  content: "";
  width: 36px;
  height: 36px;
  margin-right: 13px;
  background-color: var(--color-white);
  border: 1px solid var(--color-gray);
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
.p-contact input[type=checkbox]:checked + span::before {
  background-image: url("assets/img/ico_/ico_check.svg");
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid var(--color-gray);
}
.p-contact .contact-tel span {
  color: #000;
}
.p-contact .send__img {
  width: 186px;
  height: auto;
  margin: 0 auto;
}
@media screen and (max-width: 768.98px) {
  .p-contact .send__img {
    width: 139px;
    height: auto;
  }
}
.p-contact .required__img,
.p-contact .optional__img {
  width: 44px;
  height: auto;
}
.p-contact .wpcf7-submit:disabled {
  pointer-events: none;
  cursor: not-allowed;
  background: var(--color-light-gray);
  border: 1px solid var(--color-light-gray);
}

/*確認画面と完了画面を非表示*/
.confirm__area {
  display: none;
}

/*デフォルトのサンクスメッセージを非表示*/
.wpcf7-response-output,
.wpcf7-spinner {
  display: none;
}

input[type=submit] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  color: var(--color-white);
  font-weight: bold;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

input[type=submit]:before {
  content: "";
  background-image: url("assets/img/ico_/ico_triangle_white.svg");
  background-repeat: no-repeat;
  background-size: auto;
  width: 13px;
  height: 15px;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

input[type=submit]:hover {
  color: var(--color-blue) !important;
}

input[type=submit]:hover:before {
  content: "";
  background-image: url("assets/img/ico_/ico_triangle_blue.svg");
  background-repeat: no-repeat;
  background-size: auto;
  width: 13px;
  height: 15px;
  display: block;
}

.sub-btn {
  color: #fff;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: var(--color-blue);
  font-weight: bold;
  max-width: 240px;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 13px 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 1px solid var(--color-blue);
  margin: 30px auto 0;
  cursor: pointer;
}
.sub-btn::before {
  content: "";
  background-image: url("assets/img/ico_/ico_triangle_white.svg");
  background-repeat: no-repeat;
  background-size: auto;
  width: 13px;
  height: 15px;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sub-btn::after {
  background: var(--color-white);
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.sub-btn:hover {
  color: var(--color-blue);
  border: 1px solid var(--color-blue);
}
.sub-btn:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.sub-btn:hover::before {
  content: "";
  background-image: url("assets/img/ico_/ico_triangle_blue.svg");
  background-repeat: no-repeat;
  background-size: auto;
  width: 13px;
  height: 15px;
  display: block;
}

.c-btn {
  color: #fff;
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding: 12px 0;
  background: var(--color-blue);
  font-weight: bold;
  max-width: 240px;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 13px 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 1px solid var(--color-blue);
  margin: 30px auto 0;
  cursor: pointer;
}
.c-btn::before {
  content: "";
  background-image: url("assets/img/ico_/ico_triangle_white.svg");
  background-repeat: no-repeat;
  background-size: auto;
  width: 13px;
  height: 15px;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-btn::after {
  background: var(--color-white);
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.c-btn:hover {
  color: var(--color-blue);
  border: 1px solid var(--color-blue);
}
.c-btn:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.c-btn:hover::before {
  content: "";
  background-image: url("assets/img/ico_/ico_triangle_blue.svg");
  background-repeat: no-repeat;
  background-size: auto;
  width: 13px;
  height: 15px;
  display: block;
}

.c-btn-white {
  color: var(--color-blue);
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding: 12px 0;
  background: var(--color-white);
  font-weight: bold;
  max-width: 125px;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 13px 28px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 1px solid var(--color-blue);
  margin: 30px auto 0;
}
.c-btn-white::after {
  background: var(--color-blue);
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.c-btn-white:hover {
  color: var(--color-white);
  border: 1px solid var(--color-blue);
}
.c-btn-white:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.p-contact .confirm__btn {
  margin: 30px auto 0;
  height: 50px;
  max-width: 125px;
  cursor: pointer;
}

.submit__btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  margin: 30px auto 0;
}
@media screen and (max-width: 768.98px) {
  .submit__btn {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
}
.submit__btn .c-btn,
.submit__btn .c-btn-white {
  margin: 0;
}

button[disabled] {
  pointer-events: none;
  background: var(--color-light-gray);
  color: var(--color-white);
  border: 1px solid var(--color-light-gray);
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.wpcf7-textarea {
  height: 130px !important;
}

.form-result {
  padding: 0 0 30px;
  white-space: pre-wrap;
}
.form-result span {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: block;
  min-height: 1em;
}

::-webkit-input-placeholder {
  color: var(--color-light-gray);
}

::-moz-placeholder {
  color: var(--color-light-gray);
}

:-ms-input-placeholder {
  color: var(--color-light-gray);
}

::-ms-input-placeholder {
  color: var(--color-light-gray);
}

::placeholder {
  color: var(--color-light-gray);
}

input, textarea {
  padding: 10px 20px;
}

input[type=button], input[type=text], input[type=submit], input[type=image], textarea {
  -webkit-appearance: none;
  border-radius: 0;
}

.privacy-policy {
  margin: 80px auto 0;
}
@media screen and (max-width: 768.98px) {
  .privacy-policy {
    margin: 0;
  }
}
.privacy-policy__inner {
  max-width: 800px;
  margin: 80px auto;
}
@media screen and (min-width: 768.98px) and (max-width: 1200px) {
  .privacy-policy__inner {
    max-width: 90%;
  }
}
@media screen and (max-width: 768.98px) {
  .privacy-policy__inner {
    margin: 40px auto;
  }
}
.privacy-policy__wrap {
  margin: 0 auto 30px;
}
.privacy-policy__wrap:last-child {
  margin: 0 auto;
}
@media screen and (max-width: 768.98px) {
  .privacy-policy__wrap {
    margin: 0 auto 20px;
  }
}
.privacy-policy .title--medium {
  margin: 0 auto 10px;
}
@media screen and (max-width: 768.98px) {
  .privacy-policy .title--medium {
    margin: 0 auto 10px;
  }
}
.privacy-policy .privacy-text--top {
  margin: 0 auto 40px;
}
@media screen and (max-width: 768.98px) {
  .privacy-policy .privacy-text--top {
    margin: 0 auto 30px;
  }
}
.privacy-policy .privacy-text--middle {
  margin: 0 auto;
}
.privacy-policy .list {
  margin: 10px 0 0 1.2em;
}

@media screen and (max-width: 768.98px) {
  .notfound__inner {
    margin: 0 auto;
  }
}
.notfound__wrap {
  margin: 80px auto;
  max-width: 800px;
}
@media screen and (max-width: 768.98px) {
  .notfound__wrap {
    margin: 40px auto;
  }
}
.notfound .redirect__text {
  color: var(--color-blue);
  text-align: center;
  margin: 0 0 10px 0;
}
@media screen and (max-width: 768.98px) {
  .notfound .redirect__text {
    text-align: left;
  }
}/*# sourceMappingURL=style.css.map */