@charset "UTF-8";
/* リキッドレイアウト対応 */
body {
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
  overflow-x: hidden;
  color: #275060;
}

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.25vw;
  }
}
@media (min-width: 1280px) {
  html {
    font-size: 16px;
  }
}

body br.sbr {
  display: inline;
}
@media screen and (min-width: 768px) {
  body br.sbr {
    display: none;
  }
}
body br.pbr {
  display: none;
}
@media screen and (min-width: 768px) {
  body br.pbr {
    display: inline;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

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

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

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

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

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

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

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

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.l-archive {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  padding-top: 80px;
  padding-top: 5rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
  gap: 64px;
  gap: 4rem;
}
@media screen and (min-width: 768px) {
  .l-archive {
    display: grid;
    grid-template-columns: 1fr 13.75rem;
    padding-top: 11.25rem;
    padding-bottom: 7.5rem;
  }
}

.body {
  /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none;
}
.body::-webkit-scrollbar {
  display: none;
}
.body__fixed {
  -ms-touch-action: none;
      touch-action: none;
  -webkit-overflow-scrolling: none;
  overflow: hidden;
  overscroll-behavior: none;
}
.body__fixed .p-header__logo {
  visibility: hidden;
}
@media screen and (min-width: 768px) {
  .body__fixed .p-header__logo {
    visibility: visible;
  }
}

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

.l-main {
  margin-top: 45px;
  margin-top: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .l-main {
    margin-top: 5rem;
  }
}

.l-sidebar {
  width: 100%;
}
.l-sidebar h2 {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
  font-family: "Hind", sans-serif;
  color: #4e9fbf;
}
@media screen and (min-width: 768px) {
  .l-sidebar h2 {
    font-size: 1.125rem;
  }
}
.l-sidebar li {
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .l-sidebar li {
    font-size: 1rem;
  }
}

.l-single {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  padding-top: 80px;
  padding-top: 5rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
  gap: 64px;
  gap: 4rem;
}
@media screen and (min-width: 768px) {
  .l-single {
    display: grid;
    grid-template-columns: 1fr 13.75rem;
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
    min-height: 31.25rem;
  }
}

.c-breadcrumbs__inner {
  padding: 6px 20px 16px;
  padding: 0.375rem 20px 1rem;
}
@media screen and (min-width: 768px) {
  .c-breadcrumbs__inner {
    padding: 0.5rem 25px 1rem;
  }
}
.c-breadcrumbs span {
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .c-breadcrumbs span {
    font-size: 1rem;
  }
}

.c-button__contact {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-button__contact {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 12.0625rem;
    max-height: 3rem;
  }
}
.c-button__contact img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.c-button__primary {
  display: inline-block;
  padding: 12px 40px;
  padding: 0.75rem 2.5rem;
  border: solid 2px #4e9fbf;
  background: #fff;
  font-weight: 700;
  border-radius: 9999px;
  color: #4e9fbf;
  position: relative;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .c-button__primary {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}
.c-button__primary:after {
  position: absolute;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  top: 50%;
  right: 16px;
  right: 1rem;
  left: auto;
  bottom: auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-button__primary:hover {
    background: #4e9fbf;
    color: #fff;
  }
}
@media screen and (min-width: 768px) {
  .c-button__primary:hover:after {
    right: 0.625rem;
  }
}
.c-button__primary--contact {
  background: #fff;
  color: #4e9fbf;
  padding-left: 64px;
  padding-left: 4rem;
  padding-right: 64px;
  padding-right: 4rem;
}
@media screen and (min-width: 768px) {
  .c-button__primary--contact {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}
@media screen and (min-width: 768px) {
  .c-button__primary--contact:hover {
    background: #4e9fbf;
    color: #fff;
  }
}
@media screen and (min-width: 768px) {
  .c-button__primary--contact:hover:after {
    right: 0.625rem;
  }
}
.c-button__primary--form {
  background: #4e9fbf;
  color: #fff;
  padding-left: 64px;
  padding-left: 4rem;
  padding-right: 64px;
  padding-right: 4rem;
}
@media screen and (min-width: 768px) {
  .c-button__primary--form {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}
@media screen and (min-width: 768px) {
  .c-button__primary--form:hover {
    background: #fff;
    color: #4e9fbf;
  }
}
@media screen and (min-width: 768px) {
  .c-button__primary--form:hover:after {
    right: 0.625rem;
  }
}
.c-button__send {
  display: block;
  width: 280px;
  width: 17.5rem;
  height: 56px;
  height: 3.5rem;
  background: #4e9fbf;
  color: #fff;
  font-weight: 700;
  margin: auto;
  font-size: 16px;
  font-size: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 9999px;
}

.c-card {
  display: grid;
  grid-template-columns: 32% 1fr;
  grid-template-rows: 1fr;
}
@media screen and (min-width: 768px) {
  .c-card {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
@media screen and (min-width: 768px) {
  .c-card:hover {
    -webkit-transform: translate(0, -5px);
            transform: translate(0, -5px);
  }
}
.c-card__head {
  width: 100%;
  height: 100%;
  height: 115px;
  height: 7.1875rem;
  overflow: hidden;
}
.c-card__head img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .c-card__head {
    height: 11.25rem;
  }
}
.c-card__head--noimage {
  border: solid 1px #e5e5e5;
  border: solid 0.0625rem #e5e5e5;
}
.c-card__head img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-card__body {
  background: #fff;
}
.c-card__date {
  padding: 20px 12px 8px;
  padding: 1.25rem 0.75rem 0.5rem;
  color: #939393;
}
@media screen and (min-width: 768px) {
  .c-card__date {
    padding: 1.125rem 1.25rem 0.75rem;
  }
}
.c-card__text--sm {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-right: -0.04em;
}
@media screen and (min-width: 768px) {
  .c-card__text--sm {
    font-size: 0.875rem;
  }
}
.c-card__title {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-right: -0.05em;
  font-weight: 700;
  padding: 0 12px;
  padding: 0 0.75rem;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (min-width: 768px) {
  .c-card__title {
    margin-bottom: 0.75rem;
    padding: 0 1.25rem;
    min-height: 6.125rem;
    -webkit-line-clamp: 3;
  }
}
@media screen and (min-width: 768px) {
  .c-card__title {
    font-size: 1.125rem;
  }
}
.c-card__arrow {
  width: 20px;
  width: 1.25rem;
  height: 10px;
  height: 0.625rem;
  margin-left: auto;
  margin-right: 12px;
  margin-right: 0.75rem;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
}
@media screen and (min-width: 768px) {
  .c-card__arrow {
    margin-right: 1.25rem;
    margin-bottom: 0.75rem;
  }
}
.c-card__arrow img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-contact {
  background: url(../images/contact/bg-sp.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-contact {
    background: url(../images/contact/bg-pc.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}
.c-contact:after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: #275060;
  opacity: 0.65;
  width: 100%;
  height: 100%;
}
.c-contact .c-section-heading {
  margin-bottom: 32px;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .c-contact .c-section-heading {
    margin-bottom: 3rem;
  }
}
.c-contact .c-section-heading__sub-title {
  color: #fff;
}
.c-contact__inner {
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
  position: relative;
  z-index: 3;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-contact__inner {
    padding-top: 5rem;
    padding-bottom: 6.25rem;
  }
}
.c-contact__text {
  font-weight: 700;
}
.c-contact__link {
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .c-contact__link {
    margin-top: 2.5rem;
  }
}

.c-fnav {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  gap: 40px;
  gap: 2.5rem;
}
@media screen and (min-width: 768px) {
  .c-fnav {
    grid-template-columns: 1fr 12.5rem 1fr;
  }
}
.c-fnav__list a {
  font-weight: 700;
}
.c-fnav__list > * + * {
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .c-fnav__list > * + * {
    margin-top: 0.875rem;
  }
}
.c-fnav__item:not(.c-fnav__item--title) {
  margin-left: 16px;
  margin-left: 1rem;
}
@media screen and (min-width: 768px) {
  .c-fnav__item:not(.c-fnav__item--title) {
    margin-left: 0;
  }
}
.c-fnav__item:not(.c-fnav__item--title) a {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .c-fnav__item:not(.c-fnav__item--title) a {
    font-size: 1rem;
  }
}
.c-fnav__item--title a {
  font-weight: 700;
}

.c-footer__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  gap: 32px;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .c-footer__wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.c-footer__logo {
  width: 120px;
  width: 7.5rem;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}
.c-footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 768px) {
  .c-footer__link .c-fnav {
    margin-left: auto;
  }
}
.c-footer__text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-right: -0.05em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .c-footer__text {
    font-size: 1rem;
  }
}
.c-footer__address {
  font-style: normal;
}
.c-footer__copyright {
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-right: -0.1em;
  text-align: center;
  margin-top: 40px;
  margin-top: 2.5rem;
}
.c-footer__sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-footer__sns-item {
  margin-right: 24px;
  margin-right: 1.5rem;
  margin-top: 24px;
  margin-top: 1.5rem;
}
.c-footer__sns-item:last-child {
  margin-right: 0;
}
.c-footer__sns-item a {
  background: #fff;
  width: 32px;
  width: 2rem;
  height: 32px;
  height: 2rem;
  border-radius: 62.4375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .c-footer__sns-item a {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.c-hamburger__btn {
  position: absolute;
  top: 10px;
  top: 0.625rem;
  right: 25px;
  right: 1.5625rem;
  z-index: 9999;
  width: 36px;
  width: 2.25rem;
  height: 24px;
  height: 1.5rem;
}
@media screen and (min-width: 768px) {
  .c-hamburger__btn {
    top: 1rem;
    right: 3rem;
    width: 2.5rem;
    height: 1.5rem;
  }
}
.c-hamburger__line {
  position: absolute;
  visibility: hidden;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 36px;
  width: 2.25rem;
  height: 1px;
  height: 0.0625rem;
  background: #000000;
}
@media screen and (min-width: 768px) {
  .c-hamburger__line {
    width: 2.5rem;
  }
}
.c-hamburger__line:before {
  visibility: visible;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: inherit;
  position: absolute;
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  top: -4px;
  top: -0.25rem;
}
.c-hamburger__line:after {
  visibility: visible;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: inherit;
  position: absolute;
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  bottom: -4px;
  bottom: -0.25rem;
}
.c-hamburger__menu {
  margin-top: 60px;
  margin-top: 3.75rem;
  margin-bottom: 120px;
  margin-bottom: 7.5rem;
}
@media screen and (min-width: 768px) {
  .c-hamburger__menu {
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 0;
    padding-bottom: 0;
  }
}
.c-hamburger__wrapper {
  max-width: 1280px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}
@media screen and (min-width: 768px) {
  .c-hamburger__wrapper {
    padding-top: 0;
    max-width: 48.125rem;
    padding-bottom: 0;
  }
}
.c-hamburger__logo {
  width: 148px;
  width: 9.25rem;
  height: 32px;
  height: 2rem;
  margin: 0 0 58px;
  margin: 0 0 3.625rem;
}
.c-hamburger__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.c-hamburger__logo svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.c-hamburger__nav {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}
@media screen and (min-width: 768px) {
  .c-hamburger__nav {
    grid-template-columns: 1fr 17.5rem;
    gap: 7.8125rem;
  }
}
.c-hamburger__list {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}
.c-hamburger__item--title {
  display: grid;
  grid-template-columns: 6.875rem 1fr;
  grid-template-rows: 1fr;
  font-weight: 700;
}
.c-hamburger__item--title > a {
  position: relative;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .c-hamburger__item--title > a {
    font-size: 1rem;
    padding-right: 2rem;
  }
}
.c-hamburger__list-left {
  gap: 35px;
  gap: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .c-hamburger__list-left {
    gap: 1.5rem;
  }
}
.c-hamburger__list-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 36px;
  margin-top: 2.25rem;
}
@media screen and (min-width: 768px) {
  .c-hamburger__list-right {
    margin-top: 0;
  }
}
.c-hamburger__list-right .c-hamburger__item--title {
  display: block;
  margin-bottom: 56px;
  margin-bottom: 3.5rem;
}
@media screen and (min-width: 768px) {
  .c-hamburger__list-right .c-hamburger__item--title {
    margin-bottom: 3.3125rem;
  }
}
.c-hamburger__list-right .c-hamburger__item--title:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .c-hamburger__list-right .c-hamburger__item--title:last-child {
    margin-top: auto;
    height: 4.875rem;
  }
}
.c-hamburger__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: solid 1px #fff;
  border-left: 0;
  border-right: 0;
  padding: 12px 0 14px;
  padding: 0.75rem 0 0.875rem;
  font-family: "Hind", sans-serif;
}
.c-hamburger__tel a {
  padding-right: 0;
}
.c-hamburger__tel-text {
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-right: -0.1em;
  font-family: "Hind", sans-serif;
  line-height: 1;
}
.c-hamburger__tel-text--lg {
  font-size: 35px;
  font-size: 2.1875rem;
  letter-spacing: 0.1em;
  margin-right: -0.1em;
  font-family: "Hind", sans-serif;
  line-height: 1;
}
.c-hamburger__tel-text--sm {
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: 0.17em;
  margin-right: -0.17em;
  font-family: "Hind", sans-serif;
  line-height: 1;
}
.c-hamburger__tel-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (min-width: 768px) {
  .c-hamburger__item-tel {
    margin-top: auto;
  }
}
.c-hamburger__sub-list {
  padding-left: 24px;
  padding-left: 1.5rem;
  border-left: solid 1px #275060;
}
@media screen and (min-width: 768px) {
  .c-hamburger__sub-list {
    padding-left: 2rem;
  }
}
.c-hamburger__sub-item {
  line-height: 1;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}
.c-hamburger__sub-item:last-child {
  margin-bottom: 0;
}
.c-hamburger__sub-item a {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-right: -0.05em;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-right: -0.1em;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .c-hamburger__sub-item a {
    font-size: 0.8125rem;
  }
}
.c-hamburger__item {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-right: -0.05em;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .c-hamburger__item {
    font-size: 1rem;
  }
}
.c-hamburger__text {
  display: block;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .c-hamburger__text {
    margin-bottom: 1.875rem;
  }
}

.c-hamburger__btn[aria-expanded=true] .c-hamburger__line {
  background-color: transparent;
}
.c-hamburger__btn[aria-expanded=true] .c-hamburger__line:before {
  top: 0;
  background-color: #275060;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
}
.c-hamburger__btn[aria-expanded=true] .c-hamburger__line:after {
  top: 0;
  background-color: #275060;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
}

.c-info__list {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  gap: 12px;
  gap: 0.75rem;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
  border-bottom: solid 1px #f2f2f2;
  border-bottom: solid 0.0625rem #f2f2f2;
}
@media screen and (min-width: 768px) {
  .c-info__list {
    grid-template-columns: 7.5rem 1fr;
    gap: 2.5rem;
  }
}
.c-info__term {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-right: -0.05em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .c-info__term {
    font-size: 1rem;
  }
}
.c-info__description {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-right: -0.05em;
}
@media screen and (min-width: 768px) {
  .c-info__description {
    font-size: 1rem;
  }
}

.c-number-card {
  position: relative;
}
.c-number-card:after {
  position: absolute;
  top: -36px;
  top: -2.25rem;
  left: 0;
  right: 0;
  margin: auto;
  content: attr(data-num);
  color: #fff;
  background: #4e9fbf;
  font-family: "Hind", sans-serif;
  display: block;
  font-weight: 700;
  border-radius: 50%;
  width: 72px;
  width: 4.5rem;
  height: 72px;
  height: 4.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-number-card:after {
    font-size: 1.5rem;
  }
}
.c-number-card__head {
  margin: 48px auto 18px;
  margin: 3rem auto 1.125rem;
  width: 164px;
  width: 10.25rem;
  height: 164px;
  height: 10.25rem;
  text-align: center;
  background: #fafafa;
  border-radius: 50%;
  padding: 0 12px;
  padding: 0 0.75rem;
}
@media screen and (min-width: 768px) {
  .c-number-card__head {
    margin: 4rem auto 1.125rem;
  }
}
.c-number-card__icon {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-number-card__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-number-card__body {
  text-align: center;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
  padding: 0 12px;
  padding: 0 0.75rem;
}
@media screen and (min-width: 768px) {
  .c-number-card__body {
    margin-bottom: 1rem;
  }
}
.c-number-card__title {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-right: -0.05em;
  color: #4e9fbf;
}
@media screen and (min-width: 768px) {
  .c-number-card__title {
    font-size: 1.5rem;
  }
}
.c-number-card__foot {
  padding: 0 20px 24px;
  padding: 0 1.25rem 1.5rem;
}
.c-number-card__text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-right: -0.05em;
}
@media screen and (min-width: 768px) {
  .c-number-card__text {
    font-size: 1rem;
  }
}

.opening {
  width: 100%;
  height: 100vh;
  position: relative;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.opening__mask {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 1;
}

.opening__logo {
  display: block;
  width: 400px;
  height: auto;
  z-index: 2;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0); /*予め切り取り*/
  -webkit-transform: scale(1.1);
          transform: scale(1.1); /*予め大きくしておく*/
  opacity: 0; /*予め透明に*/
}

.c-section-heading__title {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  display: block;
}
@media screen and (min-width: 768px) {
  .c-section-heading__title {
    font-size: 2.25rem;
  }
}
.c-section-heading__sub-title {
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: "Hind", sans-serif;
  color: #4e9fbf;
}
@media screen and (min-width: 768px) {
  .c-section-heading__sub-title {
    font-size: 1rem;
  }
}

.c-sub-header__inner {
  text-align: center;
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .c-sub-header__inner {
    padding-top: 5rem;
    padding-bottom: 6.25rem;
  }
}
.c-sub-header__title {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  display: block;
}
@media screen and (min-width: 768px) {
  .c-sub-header__title {
    font-size: 1rem;
  }
}
.c-sub-header__sub-title {
  display: block;
  font-size: 48px;
  font-size: 3rem;
  font-weight: 700;
  font-family: "Hind", sans-serif;
  color: #275060;
  line-height: 1;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-sub-header__sub-title {
    font-size: 7.5rem;
    margin-bottom: 2rem;
  }
}
.c-sub-header__lead {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #899aa0;
}
@media screen and (min-width: 768px) {
  .c-sub-header__lead {
    font-size: 1rem;
  }
}

.wpcf7-spinner {
  display: none !important;
}

.wpcf7-list-item.first {
  margin: 0;
}

.wpcf7-list-item-label {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .wpcf7-list-item-label {
    font-size: 1rem;
  }
}

.wpcf7-list-item {
  margin: 0;
}

.wpcf7-form dl {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  margin-bottom: 18px;
  margin-bottom: 1.125rem;
  gap: 4px;
  gap: 0.25rem;
}
@media screen and (min-width: 768px) {
  .wpcf7-form dl {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
  }
}
.wpcf7-form dl:first-child {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.wpcf7-form dl:last-child {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 0;
}
.wpcf7-form dt {
  color: #275060;
  font-weight: 700;
	text-align:left;
}

.wpcf7-not-valid-tip {
  margin-top: 8px;
  margin-top: 0.5rem;
  display: inline-block;
  margin-left: 6px;
  margin-left: 0.375rem;
  border-radius: 0.1875rem;
  color: #d90000;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* デフォルトのボタン */
input[type=radio] {
  opacity: 0; /* デフォルトのボタンを非表示 */
  position: absolute;
}

/* チェック前のボタン */
.p-contact__radio-button .wpcf7-list-item-label::before,
.p-entry__radio-button .wpcf7-list-item-label::before {
  background: #fff;
  border-radius: 100%; /* ラジオボタンっぽく丸くする */
  content: "";
  height: 1.2em;
  margin-bottom: auto;
  margin-right: 0.5em;
  margin-top: auto;
  -webkit-transition: background-color 0.5s;
  transition: background-color 0.5s; /* 色をじんわり変化させる */
  width: 1.2em;
}

/* チェック後のボタン */
.p-contact__radio-button input[type=radio]:checked + .wpcf7-list-item-label::before,
.p-entry__radio-button input[type=radio]:checked + .wpcf7-list-item-label::before {
  background-color: #4e9fbf; /* チェック後の中心の色 */
  -webkit-box-shadow: inset 0 0 0 3px #fff;
          box-shadow: inset 0 0 0 3px #fff; /* 中心の色のスタイル */
}

.wpcf7-acceptance span.wpcf7-list-item {
  margin: 0 0 0 0; /* 項目右側の余白設定と、デフォルトの左側の余白を打ち消す */
  position: relative;
}
.wpcf7-acceptance .wpcf7-list-item-label {
  cursor: pointer; /* labelにhoverした時にカーソルを表示させる */
  font-size: 16px; /* 項目のフォントサイズ */
}
.wpcf7-acceptance input[type=checkbox] {
  opacity: 0; /* デフォルトのチェックボックスを見えなくする */
  position: absolute;
}
.wpcf7-acceptance .wpcf7-list-item-label::before {
  /* チェックボックスのデザイン */
  content: "";
  display: inline-block;
  height: 20px;
  height: 1.25rem;
  margin-right: 10px;
  position: relative;
  border: solid 1px #899aa0;
  top: 2px;
  top: 0.125rem;
  vertical-align: middle;
  width: 20px;
  width: 1.25rem;
  background: #fff;
}
.wpcf7-acceptance input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  /* チェックアイコン */
  background: url(../images/common/check.png) no-repeat center;
  background-size: contain;
  content: "";
  height: 14px;
  height: 0.875rem;
  left: 2px;
  left: 0.125rem;
  position: absolute;
  top: 4px;
  top: 0.25rem;
  width: 14px;
  width: 0.875rem;
}
.wpcf7-acceptance input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  /* チェックしたボックスの背景色を設定 */
  background-color: #fff;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 999;
}

.modal__container {
  background-color: #fff;
  opacity: 0.9;
  padding: 36px 20px;
  padding: 2.25rem 1.25rem;
  max-height: 90vh;
  max-width: calc(100vw - 40px);
  border-radius: 4px;
  overflow-y: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
@media screen and (min-width: 768px) {
  .modal__container {
    padding: 2.5rem;
    max-width: 45.625rem;
    max-height: 100vh;
  }
}

.modal__header {
  border-bottom: solid 1px rgba(0, 0, 0, .6509803922);
}

.modal__title {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-right: -0.05em;
  margin-top: 0;
  margin-bottom: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
  line-height: 1.875;
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
}
@media screen and (min-width: 768px) {
  .modal__title {
    font-size: 1.5rem;
  }
}

.modal__close {
  background: transparent;
  border: 0;
  position: absolute;
  right: 10px;
  right: 0.625rem;
  top: 10px;
  top: 0.625rem;
  color: #000000;
}

.modal__header .modal__close:before {
  content: "✕";
  color: #000000;
}

.modal__content {
  margin-top: 24px;
  margin-top: 1.5rem;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  line-height: 1.875;
  color: rgba(0, 0, 0, .8);
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-right: -0.05em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .modal__content {
    font-size: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .modal__content {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
  }
}

/**************************\
  Demo Animation Style
\**************************/
@-webkit-keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes mmslideIn {
  from {
    -webkit-transform: translateY(15%);
            transform: translateY(15%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes mmslideIn {
  from {
    -webkit-transform: translateY(15%);
            transform: translateY(15%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes mmslideOut {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
}
@keyframes mmslideOut {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  -webkit-animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  -webkit-animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  -webkit-animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  -webkit-animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

.wp-pagenavi span {
  padding: 6px 10px;
  padding: 0.375rem 0.625rem;
  margin: 8px;
  margin: 0.5rem;
}
.wp-pagenavi .current {
  border-color: #4e9fbf;
  color: #fff;
  background-color: #4e9fbf;
}
.wp-pagenavi a {
  border-color: #4e9fbf;
  padding: 6px 10px;
  padding: 0.375rem 0.625rem;
  margin: 8px;
  margin: 0.5rem;
}

.p-error__inner {
  padding-top: 64px;
  padding-top: 4rem;
  padding-bottom: 64px;
  padding-bottom: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-error__inner {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.p-error__wrapper {
  margin-top: 64px;
  margin-top: 4rem;
}
.p-error__wrapper:last-child {
  margin-top: 80px;
  margin-top: 5rem;
}
.p-error__head {
  margin-top: 40px;
  margin-top: 2.5rem;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-error__head {
    margin-bottom: 2.5rem;
  }
}
.p-error__body {
  text-align: left;
}
@media screen and (min-width: 600px) {
  .p-error__body {
    text-align: center;
  }
}
.p-error__foot {
  margin-top: 40px;
  margin-top: 2.5rem;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
  text-align: center;
}
.p-error__title {
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: #4e9fbf;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-error__title {
    font-size: 1.5rem;
  }
}
.p-error__text {
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .p-error__text {
    font-size: 1rem;
  }
}

.p-archive__inner {
  padding-bottom: 64px;
  padding-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .p-archive__inner {
    padding-bottom: 7.5rem;
  }
}
.p-archive__inner--custom-post {
  padding-top: 64px;
  padding-top: 4rem;
  padding-bottom: 64px;
  padding-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .p-archive__inner--custom-post {
    padding-top: 9.375rem;
    padding-bottom: 7.5rem;
  }
}
.p-archive__body {
  margin-bottom: 48px;
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .p-archive__body {
    margin-bottom: 4rem;
  }
}
.p-archive__foot {
  text-align: center;
}
.p-archive__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  gap: 24px;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-archive__wrapper {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.5rem;
  }
}
.p-archive__link {
  margin-bottom: 32px;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .p-archive__link {
    margin-bottom: 3rem;
  }
}
.p-archive__list {
  white-space: nowrap;
  overflow-x: scroll;
}
@media screen and (min-width: 768px) {
  .p-archive__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    min-height: 3.125rem;
    padding: 0;
    margin: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.p-archive__item {
  list-style: none;
  display: inline-block;
  width: auto;
  max-width: 320px;
  max-width: 20rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
  border: solid 2px #4e9fbf;
  border: solid 0.125rem #4e9fbf;
  text-align: center;
  color: #4e9fbf;
  background-color: #fff;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s; /* アニメーション */
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-right: 12px;
  margin-right: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-archive__item {
    width: 100%;
    font-size: 1rem;
    margin-right: 0.75rem;
    margin-left: 0.75rem;
  }
}
.p-archive__item a {
  padding: 12px 32px;
  padding: 0.75rem 2rem;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-archive__item a {
    padding: 0.75rem 1.5rem;
  }
}
.p-archive__item.is-current {
  background: #4e9fbf;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-archive__item:last-of-type {
    margin-right: 0;
  }
}

.p-infomation__inner {
  padding: 64px 20px;
  padding: 4rem 20px;
}
@media screen and (min-width: 768px) {
  .p-infomation__inner {
    padding: 2.5rem 25px 7.5rem;
  }
}
.p-infomation .c-section-heading {
  margin-bottom: 32px;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .p-infomation .c-section-heading {
    margin-bottom: 3rem;
  }
}
@media screen and (min-width: 768px) {
  .p-infomation__wrapper {
    max-width: 56.25rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-philosophy__inner {
  padding: 64px 20px;
  padding: 4rem 20px;
}
@media screen and (min-width: 768px) {
  .p-philosophy__inner {
    padding: 9.375rem 25px 4rem;
  }
}
.p-philosophy .c-section-heading {
  margin-bottom: 32px;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .p-philosophy .c-section-heading {
    margin-bottom: 3rem;
  }
}
.p-philosophy__infomation {
  margin-bottom: 80px;
  margin-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .p-philosophy__infomation {
    margin-bottom: 7.5rem;
    text-align: center;
  }
}
.p-philosophy__image {
  width: 100vw;
  margin: auto calc(50% - 50vw);
}
.p-philosophy__image img {
  width: 100%;
  height: 100%;
}
.p-philosophy__text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-right: -0.05em;
}
@media screen and (min-width: 768px) {
  .p-philosophy__text {
    font-size: 1rem;
  }
}

.p-contact {
  position: relative;
}
.p-contact__wrapper {
  border-radius: 0.75rem;
  padding: 0 12px 24px;
  padding: 0 0.75rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-contact__wrapper {
    padding: 0 0 4rem;
    max-width: 44.625rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-contact__head {
  margin-bottom: 32px;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .p-contact__head {
    text-align: center;
    margin-bottom: 3rem;
  }
}
.p-contact__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-contact__foot {
  text-align: center;
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-contact__foot {
    margin-top: 2.5rem;
  }
}
.p-contact__foot input {
  margin-left: auto;
  margin-right: auto;
}
.p-contact__select {
  display: block;
  color: #000000 !important;
  background: #fff;
  border: solid 1px #d9d9d9;
  border: solid 0.0625rem #d9d9d9;
  font-size: 16px;
  font-size: 1rem;
  border-radius: 0.5rem;
  width: 100%;
  max-width: 100%;
  padding: 12px 30px 12px 10px;
  padding: 0.75rem 1.875rem 0.75rem 0.625rem;
  letter-spacing: 0.05em;
  margin-right: -0.05em;
  -webkit-appearance: auto !important;
     -moz-appearance: auto !important;
          appearance: auto !important;
}
@media screen and (min-width: 768px) {
  .p-contact__select {
    padding: 0.75rem 1.875rem 0.75rem 0.875rem;
    max-width: 15.625rem;
  }
}
.p-contact__input {
  border: solid 1px #d3d9e5;
  border: solid 0.0625rem #d3d9e5;
  font-size: 16px;
  font-size: 1rem;
  width: 100%;
  max-width: 100%;
  padding: 12px 14px;
  padding: 0.75rem 0.875rem;
  letter-spacing: 0.07em;
  margin-right: -0.07em;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .p-contact__input {
    max-width: 100%;
    padding: 0.9375rem 1.25rem;
  }
}
.p-contact__input::-webkit-input-placeholder {
  color: #cecece;
  font-size: 14px;
  font-size: 0.875rem;
}
.p-contact__input::-moz-placeholder {
  color: #cecece;
  font-size: 14px;
  font-size: 0.875rem;
}
.p-contact__input::-ms-input-placeholder {
  color: #cecece;
  font-size: 14px;
  font-size: 0.875rem;
}
.p-contact__input::placeholder {
  color: #cecece;
  font-size: 14px;
  font-size: 0.875rem;
}
.p-contact__input:focus::-webkit-input-placeholder {
  color: #555;
  opacity: 0.6;
}
.p-contact__input:focus::-moz-placeholder {
  color: #555;
  opacity: 0.6;
}
.p-contact__input:focus::-ms-input-placeholder {
  color: #555;
  opacity: 0.6;
}
.p-contact__input:focus::placeholder {
  color: #555;
  opacity: 0.6;
}
.p-contact__input--lg {
  border: solid 1px #d9d9d9;
  border: solid 0.0625rem #d9d9d9;
  border-radius: 0.5rem;
  font-size: 16px;
  font-size: 1rem;
  width: 100%;
  max-width: 100%;
  height: 80px;
  height: 5rem;
  padding: 12px 14px;
  padding: 0.75rem 0.875rem;
  letter-spacing: 0.07em;
  margin-right: -0.07em;
  background: #fff;
}
@media screen and (min-width: 600px) {
  .p-contact__input--lg {
    max-width: 23.75rem;
  }
}
@media screen and (min-width: 768px) {
  .p-contact__input--lg {
    max-width: 100%;
    padding: 0.75rem 1.25rem;
  }
}
.p-contact__textarea {
  border: solid 1px #d3d9e5;
  border: solid 0.0625rem #d3d9e5;
  font-size: 16px;
  font-size: 1rem;
  width: 100%;
  max-width: 100%;
  padding: 16px 14px;
  padding: 1rem 0.875rem;
  background: #fff;
  height: 120px;
  height: 7.5rem;
}
@media screen and (min-width: 768px) {
  .p-contact__textarea {
    max-width: 100%;
    height: 11.25rem;
    padding: 1.375rem 1.25rem;
  }
}
.p-contact__textarea--address {
  height: 80px;
  height: 5rem;
  padding: 4px 14px;
  padding: 0.25rem 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-contact__textarea--address {
    padding: 0.75rem 1.25rem;
  }
}
.p-contact__radio {
  margin-left: 28px;
  margin-left: 1.75rem;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-contact__radio {
    width: 8.75rem;
  }
}
.p-contact__checkbox {
  position: relative;
  display: block;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 24px;
  gap: 1.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-contact__checkbox {
    grid-template-columns: 12.5rem 12.5rem;
  }
}
.p-contact__checkbox input {
  display: none;
}
.p-contact__checkbox input:checked + .c-button__checkmark:after {
  opacity: 1;
}
.p-contact__checkbox span.wpcf7-list-item {
  margin-right: 0;
}
.p-contact__title {
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  margin-right: -0.01em;
}
@media screen and (min-width: 768px) {
  .p-contact__title {
    font-size: 1rem;
  }
}
.p-contact__title--sm {
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin-right: -0.01em;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
  margin-top: 4px;
  margin-top: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-contact__title--sm {
    font-size: 0.875rem;
  }
}
.p-contact__text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-right: -0.05em;
}
@media screen and (min-width: 768px) {
  .p-contact__text {
    font-size: 1rem;
  }
}
.p-contact__text--red {
  color: #f16b6b;
  font-size: 10px;
  font-size: 0.625rem;
}
.p-contact__text--primary {
  color: #f94b4b;
  display: inline-block;
  padding: 0;
  font-size: 12px;
  font-size: 0.75rem;
  margin-left: 4px;
  margin-left: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-contact__text--primary {
    font-size: 0.875rem;
  }
}
.p-contact__text--secondary {
  background: #909090;
  color: #fff;
  display: inline-block;
  padding: 2px 10px;
  padding: 0.125rem 0.625rem;
  font-size: 12px;
  font-size: 0.75rem;
  margin-left: 12px;
  margin-left: 0.75rem;
  border-radius: 0.25rem;
}
.p-contact__pp {
  margin-top: 48px;
  margin-top: 3rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-contact__pp {
    margin-top: 2.5rem;
  }
}
.p-contact__pp a {
  text-decoration: underline;
  color: #3952d2;
}
.p-contact__day {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  gap: 4px;
  gap: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-contact__day {
    grid-template-columns: 5rem 1fr;
    gap: 1.5rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.p-contact dd .p-contact__day {
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-contact dd .p-contact__day {
    margin-bottom: 1rem;
  }
}
.p-contact dd .p-contact__day:last-child {
  margin-bottom: 0;
}
.p-contact__pp {
  background: #fafafa;
  max-width: 300px;
  max-width: 18.75rem;
  padding: 12px 4px;
  padding: 0.75rem 0.25rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
  font-size: 0.875rem;
}
.p-contact__pp a {
  font-size: 14px;
  font-size: 0.875rem;
  color: #308aad;
  font-weight: 700;
}

.p-footer {
  background: #fafafa;
}
.p-footer__inner {
  padding-top: 48px;
  padding-top: 3rem;
  padding-bottom: 48px;
  padding-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .p-footer__inner {
    padding-top: 4rem;
    padding-bottom: 1.5rem;
  }
}
.p-footer__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  gap: 40px;
  gap: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-footer__wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
.p-footer__copyright {
  text-align: center;
  font-size: 12px;
  font-size: 0.75rem;
  color: #899aa0;
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-footer__copyright {
    margin-top: 3rem;
    text-align: right;
  }
}

.p-mainview {
  width: 100%;
  height: 100%;
  max-height: calc(100vh - 2.8125rem);
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-mainview {
    max-height: 100%;
  }
}
.p-mainview__bg {
  width: 100%;
  height: 100%;
}
.p-mainview__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-mainview__inner {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 3;
  inset: 0;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .p-mainview__inner {
    margin-top: 13%;
  }
}
.p-mainview__lead {
  width: 100%;
  max-width: 330px;
  max-width: 20.625rem;
  height: auto;
  position: absolute;
  bottom: 24px;
  bottom: 1.5rem;
  left: 0;
  right: 0;
  margin: auto;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .p-mainview__lead {
    position: static;
    margin: 0;
    width: 100%;
    max-width: clamp(25rem, -3.8963rem + 60.2007vw, 47.5rem);
    height: auto;
  }
}
.p-mainview__lead img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-mainview__logo {
  display: none;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .p-mainview__logo {
    display: block;
    width: 100%;
    height: 100%;
    max-width: clamp(18.75rem, -0.755rem + 40.6355vw, 33.9375rem);
    height: auto;
    margin-top: 2.125rem;
  }
}
.p-mainview__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-top-about {
  margin-top: -45px;
  margin-top: -2.8125rem;
  padding-top: 45px;
  padding-top: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .p-top-about {
    margin-top: -5rem;
    padding-top: 5rem;
  }
}
.p-top-about__inner {
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 70px;
  padding-bottom: 4.375rem;
}
@media screen and (min-width: 768px) {
  .p-top-about__inner {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.p-top-about .c-section-heading {
  text-align: center;
}
.p-top-about__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  gap: 0;
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-top-about__wrapper {
    gap: 6.6875rem;
    margin-top: 3rem;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}
.p-top-about__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: -28px;
  margin-top: -1.75rem;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .p-top-about__heading {
    margin-top: 1.5rem;
    margin-left: -6.6875rem;
  }
}
.p-top-about__heading span {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #4e9fbf;
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 2px 6px;
  padding: 0.125rem 0.375rem;
  margin-bottom: 4px;
  margin-bottom: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-top-about__heading span {
    padding: 0.125rem 0.625rem;
  }
}
.p-top-about__heading span:last-child {
  margin-bottom: 0;
}
.p-top-about__title {
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #4e9fbf;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  line-height: 1.5555555556;
}
@media screen and (min-width: 768px) {
  .p-top-about__title {
    margin-bottom: 1.5rem;
  }
}
.p-top-about__text {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.75;
}
.p-top-about__image {
  width: 100%;
  height: 100%;
}
.p-top-about__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-info {
  margin-top: -45px;
  margin-top: -2.8125rem;
  padding-top: 45px;
  padding-top: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .p-top-info {
    margin-top: -5rem;
    padding-top: 5rem;
  }
}
.p-top-info__inner {
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 70px;
  padding-bottom: 4.375rem;
}
@media screen and (min-width: 768px) {
  .p-top-info__inner {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.p-top-info .c-section-heading {
  text-align: center;
}
.p-top-info__wrapper {
  margin-top: 32px;
  margin-top: 2rem;
  padding-top: 24px;
  padding-top: 1.5rem;
  border-top: solid 1px #e9edf7;
}
@media screen and (min-width: 768px) {
  .p-top-info__wrapper {
    margin-top: 3rem;
    padding-top: 1.5rem;
    max-width: 44.625rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-top-service {
  background: #f2fafe;
  margin-top: -45px;
  margin-top: -2.8125rem;
  padding-top: 45px;
  padding-top: 2.8125rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top-service {
    margin-top: -5rem;
    padding-top: 5rem;
  }
}
.p-top-service:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 45px;
  height: 2.8125rem;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-top-service:after {
    height: 5rem;
  }
}
.p-top-service__inner {
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 70px;
  padding-bottom: 4.375rem;
}
@media screen and (min-width: 768px) {
  .p-top-service__inner {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.p-top-service .c-section-heading {
  text-align: center;
}
.p-top-service__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  gap: 64px;
  gap: 4rem;
  margin-top: 64px;
  margin-top: 4rem;
  max-width: 360px;
  max-width: 22.5rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .p-top-service__wrapper {
    max-width: 67.875rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5.5rem;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1.875rem;
  }
}
.p-top-service__card {
  background: #fff;
  -webkit-box-shadow: 0px 0px 29px rgba(78, 159, 191, .2);
          box-shadow: 0px 0px 29px rgba(78, 159, 191, .2);
  text-align: center;
  position: relative;
  padding: 40px 12px 24px;
  padding: 2.5rem 0.75rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-service__card {
    padding: 3.75rem 1rem 1.875rem;
  }
}
.p-top-service__card:after {
  content: "";
  position: absolute;
  width: 48px;
  width: 3rem;
  height: 48px;
  height: 3rem;
  top: -24px;
  top: -1.5rem;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .p-top-service__card:after {
    width: 4rem;
    height: 4rem;
    top: -2rem;
  }
}
.p-top-service__card:nth-child(1):after {
  background: url(../images/front-page/num-01.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.p-top-service__card:nth-child(2):after {
  background: url(../images/front-page/num-02.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.p-top-service__card:nth-child(3):after {
  background: url(../images/front-page/num-03.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.p-top-service__card:nth-child(4):after {
  background: url(../images/front-page/num-04.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.p-top-service__image {
  width: 90px;
  width: 5.625rem;
  height: 90px;
  height: 5.625rem;
  margin: 0 auto 20px;
  margin: 0 auto 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-top-service__image {
    margin: 0 auto 1.75rem;
  }
}
.p-top-service__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-top-service__title {
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-top-service__title {
    font-size: 1.25rem;
  }
}
.p-top-service__foot {
  text-align: center;
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-top-service__foot {
    margin-top: 3.625rem;
  }
}
.p-top-service__link {
  text-align: center;
  margin-top: 18px;
  margin-top: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-top-service__link {
    margin-top: 1.5rem;
  }
}
.p-top-service__text {
  font-size: 14px;
  font-size: 0.875rem;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .p-top-service__text {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 768px) {
  .p-top-service__text.u-desktop {
    display: inline-block !important;
  }
}
.p-top-service__text--marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #fbfe11));
  background: linear-gradient(transparent 60%, #fbfe11 60%);
}

.p-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background: #fff;
}
.p-header__inner {
  width: 100%;
  height: 100%;
  margin: auto;
  position: relative;
  padding: 14px 20px;
  padding: 0.875rem 20px;
}
@media screen and (min-width: 768px) {
  .p-header__inner {
    padding: 1rem 25px;
  }
}
.p-header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-header__nav {
    display: block;
    margin-left: auto;
  }
}
@media screen and (min-width: 768px) {
  .p-header__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .p-header__item {
    margin-right: 3rem;
  }
}
.p-header__item:last-child {
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  .p-header__item:last-child {
    margin-top: -0.125rem;
  }
}
.p-header__item a {
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
}
.p-header__logo {
  width: 108px;
  width: 6.75rem;
  height: 17px;
  height: 1.0625rem;
  position: relative;
  z-index: 9999;
}
@media screen and (min-width: 768px) {
  .p-header__logo {
    width: 9.4375rem;
    height: 1.5rem;
  }
}
.p-header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-header__mobile-menu {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  right: -100%;
  visibility: hidden;
  display: block;
  overflow-y: scroll;
  background: rgba(214, 237, 246, .9607843137);
  -webkit-transition: right 0.6s;
  transition: right 0.6s;
}
.p-header__mobile-menu.visible {
  visibility: visible;
  right: 0;
  -webkit-animation: fade-in cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
          animation: fade-in cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
}
@media screen and (min-width: 768px) {
  .p-header__mobile-menu.visible {
    max-width: 56.25rem;
  }
}
.p-header__mobile-menu.fade-out {
  -webkit-animation: fade-out cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s forwards;
          animation: fade-out cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s forwards;
  visibility: visible;
}

@-webkit-keyframes fade-in {
  0% {
    visibility: visible;
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fade-in {
  0% {
    visibility: visible;
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes fade-out {
  0% {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    visibility: visible;
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes fade-out {
  0% {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    visibility: visible;
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
.p-privacy-policy__inner {
  padding-top: 0;
  padding-bottom: 80px;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .p-privacy-policy__inner {
    padding-top: 0;
    padding-bottom: 6.25rem;
  }
}
.p-privacy-policy__section-title {
  margin-bottom: 56px;
  margin-bottom: 3.5rem;
}
@media screen and (min-width: 768px) {
  .p-privacy-policy__section-title {
    margin-bottom: 5.5rem;
  }
}
.p-privacy-policy__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-privacy-policy__wrapper {
    margin-top: 4rem;
    max-width: 57.625rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-privacy-policy__content {
  margin-bottom: 34px;
  margin-bottom: 2.125rem;
}
@media screen and (min-width: 768px) {
  .p-privacy-policy__content {
    margin-bottom: 2rem;
  }
}
.p-privacy-policy__content:last-child {
  margin-bottom: 0;
}
.p-privacy-policy__title {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-right: -0.05em;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-right: -0.05em;
  line-height: 1.5;
  display: block;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .p-privacy-policy__title {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 768px) {
  .p-privacy-policy__title {
    margin-bottom: 2rem;
  }
}
.p-privacy-policy__wrap {
  margin-top: 32px;
  margin-top: 2rem;
}
.p-privacy-policy__text {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-right: -0.05em;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-right: -0.05em;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-privacy-policy__text {
    font-size: 1rem;
  }
}

.p-advice {
  background: url(../images/service/advice-bg-sp.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-advice {
    background: url(../images/service/advice-bg-pc.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}
.p-advice:after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#20779a), to(rgba(124, 189, 214, .7)));
  background: linear-gradient(#20779a 0%, rgba(124, 189, 214, .7) 100%);
  opacity: 0.8;
  width: 100%;
  height: 100%;
}
.p-advice .c-section-heading {
  margin-bottom: 32px;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .p-advice .c-section-heading {
    margin-bottom: 3rem;
  }
}
.p-advice .c-section-heading__sub-title {
  color: #fff;
}
.p-advice__inner {
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
  position: relative;
  z-index: 3;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-advice__inner {
    padding-top: 5rem;
    padding-bottom: 6.25rem;
  }
}
.p-advice__text {
  font-weight: 700;
  line-height: 1.75;
  font-size: 15px;
  font-size: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-advice__text {
    font-size: 1rem;
  }
}
.p-advice__link {
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-advice__link {
    margin-top: 2.5rem;
  }
}

.p-appeal {
  margin-top: -45px;
  margin-top: -2.8125rem;
  padding-top: 45px;
  padding-top: 2.8125rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f2fafe));
  background: linear-gradient(#fff 0%, #f2fafe 100%);
}
@media screen and (min-width: 768px) {
  .p-appeal {
    margin-top: -5rem;
    padding-top: 5rem;
  }
}
.p-appeal__inner {
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 70px;
  padding-bottom: 4.375rem;
}
@media screen and (min-width: 768px) {
  .p-appeal__inner {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.p-appeal__image {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-appeal__image {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 3;
    max-width: 15.4375rem;
    max-height: 19.5625rem;
  }
}
.p-appeal__image img {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .p-appeal__body {
    max-width: 56.25rem;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 36.25rem 1fr;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    gap: 1.5rem;
  }
}
.p-appeal__list {
  max-width: 390px;
  max-width: 24.375rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .p-appeal__list {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
.p-appeal__list > * + * {
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-appeal__list > * + * {
    margin-top: 1.25rem;
  }
}
.p-appeal__item {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .p-appeal__item {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.p-appeal__item .p-appeal__text {
  border-bottom: solid 1px #d3d9e5;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-appeal__item .p-appeal__text {
    font-size: 1.25rem;
  }
}
.p-appeal__icon {
  width: 28px;
  width: 1.75rem;
  height: 28px;
  height: 1.75rem;
  margin-right: 8px;
  margin-right: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-appeal__icon {
    width: 2rem;
    height: 1.875rem;
    margin-right: 0.75rem;
  }
}
.p-appeal__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-appeal__head {
  width: 100%;
  height: 100%;
  max-width: 335px;
  max-width: 20.9375rem;
  margin: auto auto 40px;
  margin: auto auto 2.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-appeal__head {
    width: 100%;
    height: 100%;
    max-width: 22.25rem;
    margin: auto auto 4.25rem;
  }
}
.p-appeal__head img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-appeal__text {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-right: -0.05em;
  line-height: 1.75;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-appeal__text {
    font-size: 1.25rem;
  }
}
.p-appeal__textarea {
  margin-top: 28px;
  margin-top: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-appeal__textarea {
    margin-top: 1.5rem;
  }
}
.p-appeal__foot {
  background: #fff;
  padding: 24px 12px;
  padding: 1.5rem 0.75rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-appeal__foot {
    margin-top: 0;
    padding: 2rem 1rem;
    max-width: 56.25rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-appeal__info-image {
  width: 100%;
  height: 100%;
  max-width: 319px;
  max-width: 19.9375rem;
  max-height: 245px;
  max-height: 15.3125rem;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .p-appeal__info-image {
    max-width: 38.6875rem;
    max-height: 12.5rem;
  }
}
.p-appeal__info-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-faq {
  background: #f2fafe;
  margin-top: -45px;
  margin-top: -2.8125rem;
  padding-top: 45px;
  padding-top: 2.8125rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-faq {
    margin-top: -5rem;
    padding-top: 5rem;
  }
}
.p-faq:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 45px;
  height: 2.8125rem;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-faq:after {
    height: 5rem;
  }
}
.p-faq__inner {
  padding-top: 48px;
  padding-top: 3rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .p-faq__inner {
    padding-top: 5rem;
    padding-bottom: 7.5rem;
    max-width: 67.5rem;
  }
}
.p-faq .c-section-heading {
  text-align: center;
}
.p-faq__wrapper {
  margin-top: 32px;
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  gap: 24px;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-faq__wrapper {
    margin-top: 3rem;
    gap: 2rem;
  }
}
.p-faq__content {
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
  border-bottom: solid 1px #e9edf7;
}
@media screen and (min-width: 768px) {
  .p-faq__content {
    padding-bottom: 2rem;
  }
}
.p-faq__question {
  display: grid;
  grid-template-columns: 2rem 1fr;
  grid-template-rows: 1fr;
  gap: 16px;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-faq__question {
    grid-template-columns: 3.5rem 1fr;
    margin-bottom: 1.5rem;
  }
}
.p-faq__title {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-faq__title {
    font-size: 1.25rem;
  }
}
.p-faq__text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-faq__text {
    font-size: 1rem;
  }
}
.p-faq__answer {
  display: grid;
  grid-template-columns: 2rem 1fr;
  grid-template-rows: 1fr;
  gap: 16px;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-faq__answer {
    grid-template-columns: 3.5rem 1fr;
  }
}
.p-faq__icon {
  width: 100%;
  height: 100%;
}
.p-faq__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-flow {
  background: #f2fafe;
  margin-top: -45px;
  margin-top: -2.8125rem;
  padding-top: 45px;
  padding-top: 2.8125rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-flow {
    margin-top: -5rem;
    padding-top: 5rem;
  }
}
.p-flow:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 45px;
  height: 2.8125rem;
  top: 0;
  left: 0;
  background: #fafafa;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-flow:after {
    height: 5rem;
  }
}
.p-flow__inner {
  padding-top: 48px;
  padding-top: 3rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .p-flow__inner {
    padding-top: 5rem;
    padding-bottom: 7.5rem;
    max-width: 67.5rem;
  }
}
.p-flow .c-section-heading {
  text-align: center;
}
.p-flow__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  gap: 80px;
  gap: 5rem;
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-flow__wrapper {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 6.25rem;
    max-width: 67.5rem;
    margin-top: 3rem;
  }
}
.p-flow__content {
  background: #fff;
  -webkit-box-shadow: 0px 0px 29px rgba(78, 159, 191, .2);
          box-shadow: 0px 0px 29px rgba(78, 159, 191, .2);
  padding: 24px 16px 30px;
  padding: 1.5rem 1rem 1.875rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-flow__content {
    padding: 1.875rem 1rem 2rem;
  }
}
.p-flow__content:nth-child(1) {
  position: relative;
}
.p-flow__content:nth-child(1):after {
  position: absolute;
  content: "";
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../images/service/arrow.svg);
  left: 0;
  right: 0;
  bottom: -21%;
  margin: auto;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media screen and (min-width: 768px) {
  .p-flow__content:nth-child(1):after {
    width: 3.5rem;
    height: 3.5rem;
    top: 40%;
    right: -5rem;
    left: inherit;
    bottom: inherit;
    margin: 0;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
.p-flow__content:nth-child(2) {
  position: relative;
}
.p-flow__content:nth-child(2):after {
  position: absolute;
  content: "";
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../images/service/arrow.svg);
  left: 0;
  right: 0;
  bottom: -19%;
  margin: auto;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media screen and (min-width: 768px) {
  .p-flow__content:nth-child(2):after {
    width: 3.5rem;
    height: 3.5rem;
    top: 40%;
    right: -5rem;
    left: inherit;
    bottom: inherit;
    margin: 0;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
.p-flow__step {
  font-family: "Hind", sans-serif;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  color: #4e9fbf;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-flow__step {
    font-size: 1.5rem;
  }
}
.p-flow__num {
  font-size: 28px;
  font-size: 1.75rem;
  font-family: "Hind", sans-serif;
}
@media screen and (min-width: 768px) {
  .p-flow__num {
    font-size: 2rem;
  }
}
.p-flow__title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.6;
  margin-top: 24px;
  margin-top: 1.5rem;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-flow__title {
    font-size: 1.125rem;
  }
}
.p-flow__icon {
  width: 100px;
  width: 6.25rem;
  height: 100px;
  height: 6.25rem;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .p-flow__icon {
    width: 8.125rem;
    height: 8.125rem;
  }
}
.p-flow__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-price {
  margin-top: -45px;
  margin-top: -2.8125rem;
  padding-top: 45px;
  padding-top: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .p-price {
    margin-top: -5rem;
    padding-top: 5rem;
  }
}
.p-price__inner {
  padding-top: 48px;
  padding-top: 3rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .p-price__inner {
    padding-top: 5rem;
    padding-bottom: 6.25rem;
    max-width: 67.5rem;
  }
}
.p-price .c-section-heading {
  text-align: center;
  margin-bottom: 32px;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .p-price .c-section-heading {
    margin-bottom: 3rem;
  }
}
.p-price__text {
  text-align: center;
  font-weight: 400;
  line-height: 1.75;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-price__text {
    font-size: 1rem;
  }
}
.p-price__info {
  background: #fafafa;
  margin: 24px auto 0;
  margin: 1.5rem auto 0;
  padding: 20px 12px;
  padding: 1.25rem 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-price__info {
    margin: 2.5rem auto 0;
    max-width: 44.625rem;
    padding: 2.5rem 1rem;
  }
}
.p-price__info-image {
  width: 100%;
  height: 100%;
  max-width: 320px;
  max-width: 20rem;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .p-price__info-image {
    max-width: 20.875rem;
  }
}
.p-price__info-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-service {
  margin-top: -45px;
  margin-top: -2.8125rem;
  padding-top: 45px;
  padding-top: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .p-service {
    margin-top: -5rem;
    padding-top: 5rem;
  }
}
.p-service__inner {
  padding-top: 48px;
  padding-top: 3rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .p-service__inner {
    padding-top: 5rem;
    padding-bottom: 7.5rem;
    max-width: 71.25rem;
  }
}
.p-service .c-section-heading {
  text-align: center;
}
.p-service__wrapper {
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-service__wrapper {
    margin-top: 4rem;
  }
}
.p-service__wrapper > * + * {
  margin-top: 48px;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-service__wrapper > * + * {
    margin-top: 5.5rem;
  }
}
.p-service__heading {
  display: block;
  color: #4e9fbf;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 28px;
  margin-bottom: 1.75rem;
  position: relative;
}
.p-service__heading:after {
  position: absolute;
  content: "";
  width: 32px;
  height: 2px;
  background: #4e9fbf;
  left: 0;
  bottom: -12px;
  bottom: -0.75rem;
}
.p-service__title {
  font-size: 20px;
  font-size: 1.25rem;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .p-service__title {
    margin-bottom: 2.5rem;
    font-size: 1.75rem;
  }
}
.p-service__text {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .p-service__text {
    font-size: 1rem;
    line-height: 1.75;
  }
}
.p-service__num {
  font-size: 20px;
  font-size: 1.25rem;
  padding-left: 8px;
  padding-left: 0.5rem;
}
.p-service__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .p-service__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (min-width: 768px) {
  .p-service__content:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media screen and (min-width: 768px) {
  .p-service__content:nth-child(even) .p-service__desc {
    padding-left: 0.9375rem;
    padding-right: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-service__content:nth-child(even) .p-service__image {
    padding-left: 0;
    padding-right: 0.9375rem;
  }
}
.p-service__content:nth-child(even) .p-service__image:after {
  left: inherit;
  right: -12px;
  right: -0.75rem;
}
@media screen and (min-width: 768px) {
  .p-service__content:nth-child(even) .p-service__image:after {
    width: 15.625rem;
    height: 15.625rem;
    left: inherit;
    right: -0.3125rem;
    bottom: -1.25rem;
  }
}
.p-service__desc {
  width: 100%;
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-service__desc {
    margin-top: 0;
    width: 50%;
    padding-right: 0.9375rem;
  }
}
.p-service__image {
  width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-service__image {
    width: 50%;
    padding-left: 0.9375rem;
  }
}
.p-service__image:after {
  position: absolute;
  content: "";
  width: 150px;
  width: 9.375rem;
  height: 150px;
  height: 9.375rem;
  background: #f2fafe;
  left: -12px;
  left: -0.75rem;
  bottom: -12px;
  bottom: -0.75rem;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-service__image:after {
    width: 15.625rem;
    height: 15.625rem;
    left: -0.3125rem;
    bottom: -1.25rem;
  }
}
.p-service__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 3;
}

.p-voice {
  background: #fafafa;
}
.p-voice__inner {
  padding-top: 48px;
  padding-top: 3rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .p-voice__inner {
    padding-top: 5rem;
    padding-bottom: 7.5rem;
    max-width: 67.5rem;
  }
}
.p-voice .c-section-heading {
  text-align: center;
}
.p-voice__wrapper {
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-voice__wrapper {
    margin-top: 3rem;
    max-width: 56.25rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-voice__wrapper > * + * {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-voice__wrapper > * + * {
    margin-top: 2rem;
  }
}
.p-voice__content {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  gap: 24px;
  gap: 1.5rem;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
  border-bottom: solid 1px #e9edf7;
}
@media screen and (min-width: 768px) {
  .p-voice__content {
    padding-bottom: 2rem;
    grid-template-columns: 21.375rem 1fr;
    gap: 2rem;
  }
}
.p-voice__image {
  width: 100%;
  height: 100%;
}
.p-voice__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-voice__desc {
  width: 100%;
  height: 100%;
}
.p-voice__heading {
  color: #4e9fbf;
  font-family: "Hind", sans-serif;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}
.p-voice__num {
  font-size: 18px;
  font-size: 1.125rem;
}
.p-voice__title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .p-voice__title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
}
.p-voice__text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .p-voice__text {
    font-size: 1rem;
  }
}

.p-single-works__inner {
  padding-top: 64px;
  padding-top: 4rem;
  padding-bottom: 64px;
  padding-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .p-single-works__inner {
    padding-top: 9.375rem;
    padding-bottom: 7.5rem;
  }
}
.p-single-works__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  gap: 48px;
  gap: 3rem;
}
@media screen and (min-width: 768px) {
  .p-single-works__wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}
.p-single-works__title {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 12px;
  margin-top: 0.75rem;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
  padding-bottom: 6px;
  padding-bottom: 0.375rem;
  font-weight: 700;
  border-left: solid 2px #4e9fbf;
  border-left: solid 0.125rem #4e9fbf;
  padding: 6px 12px 6px 24px;
  padding: 0.375rem 0.75rem 0.375rem 1.5rem;
  background: #f2f2f2;
}
@media screen and (min-width: 768px) {
  .p-single-works__title {
    font-size: 1.125rem;
  }
}
.p-single-works__text {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-right: -0.05em;
}
@media screen and (min-width: 768px) {
  .p-single-works__text {
    font-size: 0.875rem;
  }
}
.p-single-works__main-image {
  width: 100%;
  height: auto;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}
.p-single-works__main-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-single-works__thumbnails {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 20px;
  gap: 1.25rem;
}
.p-single-works__thumbnail {
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.p-single-works__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-single-works__thumbnail:hover {
  cursor: pointer;
  opacity: 0.7;
}
.p-single-works__description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-single-works__list {
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-single-works__list {
    margin-bottom: 2.25rem;
  }
}
.p-single-works__list:last-child {
  margin-bottom: 0;
}
.p-single-works__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 64px;
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .p-single-works__link {
    margin-top: 5rem;
  }
}
.p-single-works__prev {
  width: 30%;
  text-align: left;
}
.p-single-works__prev a {
  font-size: 14px;
  font-size: 0.875rem;
  color: #4e9fbf;
}
@media screen and (min-width: 768px) {
  .p-single-works__prev a {
    font-size: 1rem;
  }
}
.p-single-works__archive {
  width: 40%;
  text-align: center;
}
.p-single-works__archive a {
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-single-works__archive a {
    font-size: 1rem;
  }
}
.p-single-works__next {
  width: 30%;
  text-align: right;
}
.p-single-works__next a {
  font-size: 14px;
  font-size: 0.875rem;
  color: #4e9fbf;
}
@media screen and (min-width: 768px) {
  .p-single-works__next a {
    font-size: 1rem;
  }
}

.p-single__head {
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-single__head {
    margin-bottom: 2.5rem;
  }
}
.p-single__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-single__meta {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.p-single__category-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-single__category-list {
    margin-top: 0rem;
  }
}
.p-single__category-item {
  display: inline-block;
  padding: 2px 12px;
  padding: 0.125rem 0.75rem;
  font-size: 12px;
  font-size: 0.75rem;
  color: #fff;
  border-radius: 0.3125rem;
  margin-bottom: 4px;
  margin-bottom: 0.25rem;
  background: rgba(152, 120, 77, .7176470588);
  margin-right: 12px;
  margin-right: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-single__category-item {
    font-size: 0.875rem;
  }
}
.p-single__category-item:last-child {
  margin-right: 0;
}
.p-single__body {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-single__body {
    margin-bottom: 5rem;
  }
}
.p-single__description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-single__description h1 {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.5;
  margin-top: 12px;
  margin-top: 0.75rem;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
  padding-bottom: 6px;
  padding-bottom: 0.375rem;
  font-weight: 700;
  border-bottom: solid 2px #4e9fbf;
  border-bottom: solid 0.125rem #4e9fbf;
}
@media screen and (min-width: 768px) {
  .p-single__description h1 {
    font-size: 1.75rem;
  }
}
.p-single__description h2 {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.5;
  margin-top: 12px;
  margin-top: 0.75rem;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
  padding-bottom: 6px;
  padding-bottom: 0.375rem;
  font-weight: 700;
  border-bottom: solid 2px #4e9fbf;
  border-bottom: solid 0.125rem #4e9fbf;
}
@media screen and (min-width: 768px) {
  .p-single__description h2 {
    font-size: 1.5rem;
  }
}
.p-single__description h3 {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5;
  margin-top: 12px;
  margin-top: 0.75rem;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
  padding-bottom: 6px;
  padding-bottom: 0.375rem;
  font-weight: 700;
  border-left: solid 2px #4e9fbf;
  border-left: solid 0.125rem #4e9fbf;
  padding: 6px 12px 6px 24px;
  padding: 0.375rem 0.75rem 0.375rem 1.5rem;
  background: #f2f2f2;
}
@media screen and (min-width: 768px) {
  .p-single__description h3 {
    font-size: 1.25rem;
  }
}
.p-single__description h4 {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5;
  margin-top: 12px;
  margin-top: 0.75rem;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: #4e9fbf;
}
@media screen and (min-width: 768px) {
  .p-single__description h4 {
    font-size: 1.25rem;
  }
}
.p-single__description h5 {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 12px;
  margin-top: 0.75rem;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: #4e9fbf;
}
@media screen and (min-width: 768px) {
  .p-single__description h5 {
    font-size: 1.125rem;
  }
}
.p-single__description h6 {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 12px;
  margin-top: 0.75rem;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: #4e9fbf;
}
@media screen and (min-width: 768px) {
  .p-single__description h6 {
    font-size: 1.125rem;
  }
}
.p-single__description p {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-right: -0.05em;
}
@media screen and (min-width: 768px) {
  .p-single__description p {
    font-size: 1rem;
  }
}
.p-single__description ul {
  margin-top: 16px;
  margin-top: 1rem;
  margin-bottom: 16px;
  margin-bottom: 1rem;
  list-style: disc;
  margin-left: 24px;
  margin-left: 1.5rem;
}
.p-single__description li {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-right: -0.05em;
}
@media screen and (min-width: 768px) {
  .p-single__description li {
    font-size: 1rem;
  }
}
.p-single__description dl {
  margin-top: 16px;
  margin-top: 1rem;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}
.p-single__description dt {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-right: -0.05em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-single__description dt {
    font-size: 1.125rem;
  }
}
.p-single__description dl {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-right: -0.05em;
}
@media screen and (min-width: 768px) {
  .p-single__description dl {
    font-size: 1rem;
  }
}
.p-single__description img {
  margin-top: 16px;
  margin-top: 1rem;
  margin-bottom: 16px;
  margin-bottom: 1rem;
  width: 100%;
  height: 100%;
}
.p-single__thumbnail {
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  width: 100%;
  height: 100%;
}
.p-single__thumbnail img {
  width: 100%;
  height: 100%;
}
.p-single__title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-single__title {
    font-size: 1.75rem;
  }
}
.p-single__date {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-right: -0.05em;
  color: #939393;
}
@media screen and (min-width: 768px) {
  .p-single__date {
    font-size: 0.875rem;
  }
}
.p-single__foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-single__prev {
  width: 33.3333%;
  text-align: left;
}
.p-single__prev a {
  font-size: 14px;
  font-size: 0.875rem;
  color: #4e9fbf;
}
@media screen and (min-width: 768px) {
  .p-single__prev a {
    font-size: 1rem;
  }
}
.p-single__archive {
  width: 33.3333%;
  text-align: center;
}
.p-single__archive a {
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-single__archive a {
    font-size: 1rem;
  }
}
.p-single__next {
  width: 33.3333%;
  text-align: right;
}
.p-single__next a {
  font-size: 14px;
  font-size: 0.875rem;
  color: #4e9fbf;
}
@media screen and (min-width: 768px) {
  .p-single__next a {
    font-size: 1rem;
  }
}

.u-delay-time1 {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.u-delay-time2 {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.u-delay-time3 {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}

.u-delay-time4 {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

.u-delay-time5 {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

.u-delay-time6 {
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}

.u-delay-time7 {
  -webkit-animation-delay: 2.1s;
          animation-delay: 2.1s;
}

.u-delay-time8 {
  -webkit-animation-delay: 2.4s;
          animation-delay: 2.4s;
}

.u-delay-time9 {
  -webkit-animation-delay: 2.7s;
          animation-delay: 2.7s;
}

.u-delay-time10 {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

.u-block {
  display: block;
}

@media screen and (max-width: 767px) {
  .u-mobile-block {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-desktop-block {
    display: block;
  }
}

.u-inline-block {
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .u-mobile-inline-block {
    display: inline-block;
  }
}

@media screen and (min-width: 768px) {
  .u-desktop-inline-block {
    display: inline-block;
  }
}

.u-inline {
  display: inline;
}

@media screen and (max-width: 767px) {
  .u-mobile-inline {
    display: inline;
  }
}

@media screen and (min-width: 768px) {
  .u-desktop-inline {
    display: inline;
  }
}

.u-scroll-fade {
  opacity: 0;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
.u-scroll-fade.done {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.u-scroll-up {
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
.u-scroll-up.done {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.u-load-fade {
  opacity: 0;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
.u-load-fade.done {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.u-load-fadeup {
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
.u-load-fadeup.done {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.u-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (min-width: 768px) {
  .u-desktop-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (max-width: 767px) {
  .u-mobile-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.u-flex-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (min-width: 768px) {
  .u-desktop-flex-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (max-width: 767px) {
  .u-mobile-flex-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.u-flex-center-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.u-flex-center-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.u-text-xs {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 16px;
  line-height: 1rem;
}

@media screen and (max-width: 767px) {
  .u-mobile-text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .u-desktop-text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
  }
}

.u-text-sm {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 20px;
  line-height: 1.25rem;
}

@media screen and (max-width: 767px) {
  .u-mobile-text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}

@media screen and (min-width: 768px) {
  .u-desktop-text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}

.u-text-base {
  font-size: 16px;
  font-size: 1rem;
  line-height: 24px;
  line-height: 1.5rem;
}

@media screen and (max-width: 767px) {
  .u-mobile-text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

@media screen and (min-width: 768px) {
  .u-desktop-text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

.u-text-lg {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 28px;
  line-height: 1.75rem;
}

@media screen and (max-width: 767px) {
  .u-mobile-text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}

@media screen and (min-width: 768px) {
  .u-desktop-text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}

.u-text-xl {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 28px;
  line-height: 1.75rem;
}

@media screen and (max-width: 767px) {
  .u-mobile-text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

@media screen and (min-width: 768px) {
  .u-desktop-text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

.u-text-2xl {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 32px;
  line-height: 2rem;
}

@media screen and (max-width: 767px) {
  .u-mobile-text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

@media screen and (min-width: 768px) {
  .u-desktop-text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

.u-text-3xl {
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 36px;
  line-height: 2.25rem;
}

@media screen and (max-width: 767px) {
  .u-mobile-text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}

@media screen and (min-width: 768px) {
  .u-desktop-text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}

.u-text-4xl {
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 40px;
  line-height: 2.5rem;
}

@media screen and (max-width: 767px) {
  .u-mobile-text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .u-desktop-text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}

.u-text-5xl {
  font-size: 48px;
  font-size: 3rem;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .u-mobile-text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
}

@media screen and (min-width: 768px) {
  .u-desktop-text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
}

.u-text-6xl {
  font-size: 60px;
  font-size: 3.75rem;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .u-mobile-text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
}

@media screen and (min-width: 768px) {
  .u-desktop-text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
}

.u-text-7xl {
  font-size: 72px;
  font-size: 4.5rem;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .u-mobile-text-7xl {
    font-size: 4.5rem;
    line-height: 1;
  }
}

@media screen and (min-width: 768px) {
  .u-desktop-text-7xl {
    font-size: 4.5rem;
    line-height: 1;
  }
}

.u-text-8xl {
  font-size: 96px;
  font-size: 6rem;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .u-mobile-text-8xl {
    font-size: 6rem;
    line-height: 1;
  }
}

@media screen and (min-width: 768px) {
  .u-desktop-text-8xl {
    font-size: 6rem;
    line-height: 1;
  }
}

.u-text-9xl {
  font-size: 128px;
  font-size: 8rem;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .u-mobile-text-9xl {
    font-size: 8rem;
    line-height: 1;
  }
}

@media screen and (min-width: 768px) {
  .u-desktop-text-9xl {
    font-size: 8rem;
    line-height: 1;
  }
}

.u-text-bold {
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .u-desktop-text-bold {
    font-weight: 700;
  }
}

@media screen and (max-width: 767px) {
  .u-mobile-bold {
    font-weight: 700;
  }
}

.u-text-normal {
  font-weight: 400;
}

@media screen and (min-width: 768px) {
  .u-desktop-text-normal {
    font-weight: 400;
  }
}

@media screen and (max-width: 767px) {
  .u-mobile-text-normal {
    font-weight: 400;
  }
}

.u-text-light {
  font-weight: 300;
}

@media screen and (min-width: 768px) {
  .u-desktop-text-light {
    font-weight: 300;
  }
}

@media screen and (max-width: 767px) {
  .u-mobile-text-light {
    font-weight: 300;
  }
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

.u-hidden {
  display: none;
}

.u-lineheight-s {
  line-height: 1.2;
}

.u-lineheight-m {
  line-height: 1.5;
}

.u-lineheight-l {
  line-height: 1.8;
}

.u-lineheight-xl {
  line-height: 2;
}

.u-pt0 {
  padding-top: 0px;
}

.u-pt4 {
  padding-top: 4px;
}

.u-pt5 {
  padding-top: 5px;
}

.u-pt8 {
  padding-top: 8px;
}

.u-pt10 {
  padding-top: 10px;
}

.u-pt12 {
  padding-top: 12px;
}

.u-pt15 {
  padding-top: 15px;
}

.u-pt16 {
  padding-top: 16px;
}

.u-pt20 {
  padding-top: 20px;
}

.u-pt24 {
  padding-top: 24px;
}

.u-pt25 {
  padding-top: 25px;
}

.u-pt28 {
  padding-top: 28px;
}

.u-pt30 {
  padding-top: 30px;
}

.u-pt32 {
  padding-top: 32px;
}

.u-pt35 {
  padding-top: 35px;
}

.u-pt36 {
  padding-top: 36px;
}

.u-pt40 {
  padding-top: 40px;
}

.u-pt44 {
  padding-top: 44px;
}

.u-pt45 {
  padding-top: 45px;
}

.u-pt48 {
  padding-top: 48px;
}

.u-pt50 {
  padding-top: 50px;
}

.u-pt52 {
  padding-top: 52px;
}

.u-pt55 {
  padding-top: 55px;
}

.u-pt56 {
  padding-top: 56px;
}

.u-pt60 {
  padding-top: 60px;
}

.u-pt64 {
  padding-top: 64px;
}

.u-pt65 {
  padding-top: 65px;
}

.u-pt68 {
  padding-top: 68px;
}

.u-pt70 {
  padding-top: 70px;
}

.u-pt72 {
  padding-top: 72px;
}

.u-pt75 {
  padding-top: 75px;
}

.u-pt76 {
  padding-top: 76px;
}

.u-pt80 {
  padding-top: 80px;
}

.u-pt84 {
  padding-top: 84px;
}

.u-pt85 {
  padding-top: 85px;
}

.u-pt88 {
  padding-top: 88px;
}

.u-pt90 {
  padding-top: 90px;
}

.u-pt92 {
  padding-top: 92px;
}

.u-pt95 {
  padding-top: 95px;
}

.u-pt96 {
  padding-top: 96px;
}

.u-pt100 {
  padding-top: 100px;
}

.u-pb0 {
  padding-bottom: 0px;
}

.u-pb4 {
  padding-bottom: 4px;
}

.u-pb5 {
  padding-bottom: 5px;
}

.u-pb8 {
  padding-bottom: 8px;
}

.u-pb10 {
  padding-bottom: 10px;
}

.u-pb12 {
  padding-bottom: 12px;
}

.u-pb15 {
  padding-bottom: 15px;
}

.u-pb16 {
  padding-bottom: 16px;
}

.u-pb20 {
  padding-bottom: 20px;
}

.u-pb24 {
  padding-bottom: 24px;
}

.u-pb25 {
  padding-bottom: 25px;
}

.u-pb28 {
  padding-bottom: 28px;
}

.u-pb30 {
  padding-bottom: 30px;
}

.u-pb32 {
  padding-bottom: 32px;
}

.u-pb35 {
  padding-bottom: 35px;
}

.u-pb36 {
  padding-bottom: 36px;
}

.u-pb40 {
  padding-bottom: 40px;
}

.u-pb44 {
  padding-bottom: 44px;
}

.u-pb45 {
  padding-bottom: 45px;
}

.u-pb48 {
  padding-bottom: 48px;
}

.u-pb50 {
  padding-bottom: 50px;
}

.u-pb52 {
  padding-bottom: 52px;
}

.u-pb55 {
  padding-bottom: 55px;
}

.u-pb56 {
  padding-bottom: 56px;
}

.u-pb60 {
  padding-bottom: 60px;
}

.u-pb64 {
  padding-bottom: 64px;
}

.u-pb65 {
  padding-bottom: 65px;
}

.u-pb68 {
  padding-bottom: 68px;
}

.u-pb70 {
  padding-bottom: 70px;
}

.u-pb72 {
  padding-bottom: 72px;
}

.u-pb75 {
  padding-bottom: 75px;
}

.u-pb76 {
  padding-bottom: 76px;
}

.u-pb80 {
  padding-bottom: 80px;
}

.u-pb84 {
  padding-bottom: 84px;
}

.u-pb85 {
  padding-bottom: 85px;
}

.u-pb88 {
  padding-bottom: 88px;
}

.u-pb90 {
  padding-bottom: 90px;
}

.u-pb92 {
  padding-bottom: 92px;
}

.u-pb95 {
  padding-bottom: 95px;
}

.u-pb96 {
  padding-bottom: 96px;
}

.u-pb100 {
  padding-bottom: 100px;
}

.u-pl0 {
  padding-left: 0px;
}

.u-pl4 {
  padding-left: 4px;
}

.u-pl5 {
  padding-left: 5px;
}

.u-pl8 {
  padding-left: 8px;
}

.u-pl10 {
  padding-left: 10px;
}

.u-pl12 {
  padding-left: 12px;
}

.u-pl15 {
  padding-left: 15px;
}

.u-pl16 {
  padding-left: 16px;
}

.u-pl20 {
  padding-left: 20px;
}

.u-pl24 {
  padding-left: 24px;
}

.u-pl25 {
  padding-left: 25px;
}

.u-pl28 {
  padding-left: 28px;
}

.u-pl30 {
  padding-left: 30px;
}

.u-pl32 {
  padding-left: 32px;
}

.u-pl35 {
  padding-left: 35px;
}

.u-pl36 {
  padding-left: 36px;
}

.u-pl40 {
  padding-left: 40px;
}

.u-pl44 {
  padding-left: 44px;
}

.u-pl45 {
  padding-left: 45px;
}

.u-pl48 {
  padding-left: 48px;
}

.u-pl50 {
  padding-left: 50px;
}

.u-pl52 {
  padding-left: 52px;
}

.u-pl55 {
  padding-left: 55px;
}

.u-pl56 {
  padding-left: 56px;
}

.u-pl60 {
  padding-left: 60px;
}

.u-pl64 {
  padding-left: 64px;
}

.u-pl65 {
  padding-left: 65px;
}

.u-pl68 {
  padding-left: 68px;
}

.u-pl70 {
  padding-left: 70px;
}

.u-pl72 {
  padding-left: 72px;
}

.u-pl75 {
  padding-left: 75px;
}

.u-pl76 {
  padding-left: 76px;
}

.u-pl80 {
  padding-left: 80px;
}

.u-pl84 {
  padding-left: 84px;
}

.u-pl85 {
  padding-left: 85px;
}

.u-pl88 {
  padding-left: 88px;
}

.u-pl90 {
  padding-left: 90px;
}

.u-pl92 {
  padding-left: 92px;
}

.u-pl95 {
  padding-left: 95px;
}

.u-pl96 {
  padding-left: 96px;
}

.u-pl100 {
  padding-left: 100px;
}

.u-pr0 {
  padding-right: 0px;
}

.u-pr4 {
  padding-right: 4px;
}

.u-pr5 {
  padding-right: 5px;
}

.u-pr8 {
  padding-right: 8px;
}

.u-pr10 {
  padding-right: 10px;
}

.u-pr12 {
  padding-right: 12px;
}

.u-pr15 {
  padding-right: 15px;
}

.u-pr16 {
  padding-right: 16px;
}

.u-pr20 {
  padding-right: 20px;
}

.u-pr24 {
  padding-right: 24px;
}

.u-pr25 {
  padding-right: 25px;
}

.u-pr28 {
  padding-right: 28px;
}

.u-pr30 {
  padding-right: 30px;
}

.u-pr32 {
  padding-right: 32px;
}

.u-pr35 {
  padding-right: 35px;
}

.u-pr36 {
  padding-right: 36px;
}

.u-pr40 {
  padding-right: 40px;
}

.u-pr44 {
  padding-right: 44px;
}

.u-pr45 {
  padding-right: 45px;
}

.u-pr48 {
  padding-right: 48px;
}

.u-pr50 {
  padding-right: 50px;
}

.u-pr52 {
  padding-right: 52px;
}

.u-pr55 {
  padding-right: 55px;
}

.u-pr56 {
  padding-right: 56px;
}

.u-pr60 {
  padding-right: 60px;
}

.u-pr64 {
  padding-right: 64px;
}

.u-pr65 {
  padding-right: 65px;
}

.u-pr68 {
  padding-right: 68px;
}

.u-pr70 {
  padding-right: 70px;
}

.u-pr72 {
  padding-right: 72px;
}

.u-pr75 {
  padding-right: 75px;
}

.u-pr76 {
  padding-right: 76px;
}

.u-pr80 {
  padding-right: 80px;
}

.u-pr84 {
  padding-right: 84px;
}

.u-pr85 {
  padding-right: 85px;
}

.u-pr88 {
  padding-right: 88px;
}

.u-pr90 {
  padding-right: 90px;
}

.u-pr92 {
  padding-right: 92px;
}

.u-pr95 {
  padding-right: 95px;
}

.u-pr96 {
  padding-right: 96px;
}

.u-pr100 {
  padding-right: 100px;
}

.u-mt0 {
  margin-top: 0px;
}

.u-mt4 {
  margin-top: 4px;
}

.u-mt5 {
  margin-top: 5px;
}

.u-mt8 {
  margin-top: 8px;
}

.u-mt10 {
  margin-top: 10px;
}

.u-mt12 {
  margin-top: 12px;
}

.u-mt15 {
  margin-top: 15px;
}

.u-mt16 {
  margin-top: 16px;
}

.u-mt20 {
  margin-top: 20px;
}

.u-mt24 {
  margin-top: 24px;
}

.u-mt25 {
  margin-top: 25px;
}

.u-mt28 {
  margin-top: 28px;
}

.u-mt30 {
  margin-top: 30px;
}

.u-mt32 {
  margin-top: 32px;
}

.u-mt35 {
  margin-top: 35px;
}

.u-mt36 {
  margin-top: 36px;
}

.u-mt40 {
  margin-top: 40px;
}

.u-mt44 {
  margin-top: 44px;
}

.u-mt45 {
  margin-top: 45px;
}

.u-mt48 {
  margin-top: 48px;
}

.u-mt50 {
  margin-top: 50px;
}

.u-mt52 {
  margin-top: 52px;
}

.u-mt55 {
  margin-top: 55px;
}

.u-mt56 {
  margin-top: 56px;
}

.u-mt60 {
  margin-top: 60px;
}

.u-mt64 {
  margin-top: 64px;
}

.u-mt65 {
  margin-top: 65px;
}

.u-mt68 {
  margin-top: 68px;
}

.u-mt70 {
  margin-top: 70px;
}

.u-mt72 {
  margin-top: 72px;
}

.u-mt75 {
  margin-top: 75px;
}

.u-mt76 {
  margin-top: 76px;
}

.u-mt80 {
  margin-top: 80px;
}

.u-mt84 {
  margin-top: 84px;
}

.u-mt85 {
  margin-top: 85px;
}

.u-mt88 {
  margin-top: 88px;
}

.u-mt90 {
  margin-top: 90px;
}

.u-mt92 {
  margin-top: 92px;
}

.u-mt95 {
  margin-top: 95px;
}

.u-mt96 {
  margin-top: 96px;
}

.u-mt100 {
  margin-top: 100px;
}

.u-mb0 {
  margin-bottom: 0px;
}

.u-mb4 {
  margin-bottom: 4px;
}

.u-mb5 {
  margin-bottom: 5px;
}

.u-mb8 {
  margin-bottom: 8px;
}

.u-mb10 {
  margin-bottom: 10px;
}

.u-mb12 {
  margin-bottom: 12px;
}

.u-mb15 {
  margin-bottom: 15px;
}

.u-mb16 {
  margin-bottom: 16px;
}

.u-mb20 {
  margin-bottom: 20px;
}

.u-mb24 {
  margin-bottom: 24px;
}

.u-mb25 {
  margin-bottom: 25px;
}

.u-mb28 {
  margin-bottom: 28px;
}

.u-mb30 {
  margin-bottom: 30px;
}

.u-mb32 {
  margin-bottom: 32px;
}

.u-mb35 {
  margin-bottom: 35px;
}

.u-mb36 {
  margin-bottom: 36px;
}

.u-mb40 {
  margin-bottom: 40px;
}

.u-mb44 {
  margin-bottom: 44px;
}

.u-mb45 {
  margin-bottom: 45px;
}

.u-mb48 {
  margin-bottom: 48px;
}

.u-mb50 {
  margin-bottom: 50px;
}

.u-mb52 {
  margin-bottom: 52px;
}

.u-mb55 {
  margin-bottom: 55px;
}

.u-mb56 {
  margin-bottom: 56px;
}

.u-mb60 {
  margin-bottom: 60px;
}

.u-mb64 {
  margin-bottom: 64px;
}

.u-mb65 {
  margin-bottom: 65px;
}

.u-mb68 {
  margin-bottom: 68px;
}

.u-mb70 {
  margin-bottom: 70px;
}

.u-mb72 {
  margin-bottom: 72px;
}

.u-mb75 {
  margin-bottom: 75px;
}

.u-mb76 {
  margin-bottom: 76px;
}

.u-mb80 {
  margin-bottom: 80px;
}

.u-mb84 {
  margin-bottom: 84px;
}

.u-mb85 {
  margin-bottom: 85px;
}

.u-mb88 {
  margin-bottom: 88px;
}

.u-mb90 {
  margin-bottom: 90px;
}

.u-mb92 {
  margin-bottom: 92px;
}

.u-mb95 {
  margin-bottom: 95px;
}

.u-mb96 {
  margin-bottom: 96px;
}

.u-mb100 {
  margin-bottom: 100px;
}

.u-ml0 {
  margin-left: 0px;
}

.u-ml4 {
  margin-left: 4px;
}

.u-ml5 {
  margin-left: 5px;
}

.u-ml8 {
  margin-left: 8px;
}

.u-ml10 {
  margin-left: 10px;
}

.u-ml12 {
  margin-left: 12px;
}

.u-ml15 {
  margin-left: 15px;
}

.u-ml16 {
  margin-left: 16px;
}

.u-ml20 {
  margin-left: 20px;
}

.u-ml24 {
  margin-left: 24px;
}

.u-ml25 {
  margin-left: 25px;
}

.u-ml28 {
  margin-left: 28px;
}

.u-ml30 {
  margin-left: 30px;
}

.u-ml32 {
  margin-left: 32px;
}

.u-ml35 {
  margin-left: 35px;
}

.u-ml36 {
  margin-left: 36px;
}

.u-ml40 {
  margin-left: 40px;
}

.u-ml44 {
  margin-left: 44px;
}

.u-ml45 {
  margin-left: 45px;
}

.u-ml48 {
  margin-left: 48px;
}

.u-ml50 {
  margin-left: 50px;
}

.u-ml52 {
  margin-left: 52px;
}

.u-ml55 {
  margin-left: 55px;
}

.u-ml56 {
  margin-left: 56px;
}

.u-ml60 {
  margin-left: 60px;
}

.u-ml64 {
  margin-left: 64px;
}

.u-ml65 {
  margin-left: 65px;
}

.u-ml68 {
  margin-left: 68px;
}

.u-ml70 {
  margin-left: 70px;
}

.u-ml72 {
  margin-left: 72px;
}

.u-ml75 {
  margin-left: 75px;
}

.u-ml76 {
  margin-left: 76px;
}

.u-ml80 {
  margin-left: 80px;
}

.u-ml84 {
  margin-left: 84px;
}

.u-ml85 {
  margin-left: 85px;
}

.u-ml88 {
  margin-left: 88px;
}

.u-ml90 {
  margin-left: 90px;
}

.u-ml92 {
  margin-left: 92px;
}

.u-ml95 {
  margin-left: 95px;
}

.u-ml96 {
  margin-left: 96px;
}

.u-ml100 {
  margin-left: 100px;
}

.u-mr0 {
  margin-right: 0px;
}

.u-mr4 {
  margin-right: 4px;
}

.u-mr5 {
  margin-right: 5px;
}

.u-mr8 {
  margin-right: 8px;
}

.u-mr10 {
  margin-right: 10px;
}

.u-mr12 {
  margin-right: 12px;
}

.u-mr15 {
  margin-right: 15px;
}

.u-mr16 {
  margin-right: 16px;
}

.u-mr20 {
  margin-right: 20px;
}

.u-mr24 {
  margin-right: 24px;
}

.u-mr25 {
  margin-right: 25px;
}

.u-mr28 {
  margin-right: 28px;
}

.u-mr30 {
  margin-right: 30px;
}

.u-mr32 {
  margin-right: 32px;
}

.u-mr35 {
  margin-right: 35px;
}

.u-mr36 {
  margin-right: 36px;
}

.u-mr40 {
  margin-right: 40px;
}

.u-mr44 {
  margin-right: 44px;
}

.u-mr45 {
  margin-right: 45px;
}

.u-mr48 {
  margin-right: 48px;
}

.u-mr50 {
  margin-right: 50px;
}

.u-mr52 {
  margin-right: 52px;
}

.u-mr55 {
  margin-right: 55px;
}

.u-mr56 {
  margin-right: 56px;
}

.u-mr60 {
  margin-right: 60px;
}

.u-mr64 {
  margin-right: 64px;
}

.u-mr65 {
  margin-right: 65px;
}

.u-mr68 {
  margin-right: 68px;
}

.u-mr70 {
  margin-right: 70px;
}

.u-mr72 {
  margin-right: 72px;
}

.u-mr75 {
  margin-right: 75px;
}

.u-mr76 {
  margin-right: 76px;
}

.u-mr80 {
  margin-right: 80px;
}

.u-mr84 {
  margin-right: 84px;
}

.u-mr85 {
  margin-right: 85px;
}

.u-mr88 {
  margin-right: 88px;
}

.u-mr90 {
  margin-right: 90px;
}

.u-mr92 {
  margin-right: 92px;
}

.u-mr95 {
  margin-right: 95px;
}

.u-mr96 {
  margin-right: 96px;
}

.u-mr100 {
  margin-right: 100px;
}

@media screen and (max-width: 767px) {
  .u-mobile-m-auto {
    margin: auto !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mobile-m0 {
    margin: 0 !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mobile-mt-auto {
    margin-top: auto !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mobile-mt0 {
    margin-top: 0 !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mobile-mb-auto {
    margin-bottom: auto !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mobile-mb0 {
    margin-bottom: 0 !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mobile-ml-auto {
    margin-left: auto !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mobile-ml0 {
    margin-left: 0 !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mobile-mr-auto {
    margin-right: auto !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mobile-mr0 {
    margin-right: 0 !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mobile-p0 {
    padding: 0 !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mobile-pt0 {
    padding-top: 0 !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mobile-pb0 {
    padding-bottom: 0 !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mobile-pl0 {
    padding-left: 0 !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mobile-pr0 {
    padding-right: 0 !important;
  }
}

@media screen and (min-width: 768px) {
  .u-desktop-m-auto {
    margin: auto !important;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-m0 {
    margin: 0 !important;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-mt-auto {
    margin-top: auto !important;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-mt0 {
    margin-top: 0 !important;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-mb-auto {
    margin-bottom: auto !important;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-mb0 {
    margin-bottom: 0 !important;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-ml-auto {
    margin-left: auto !important;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-ml0 {
    margin-left: 0 !important;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-mr-auto {
    margin-right: auto !important;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-mr0 {
    margin-right: 0 !important;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-p0 {
    padding: 0 !important;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-pt0 {
    padding-top: 0 !important;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-pb0 {
    padding-bottom: 0 !important;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-pl0 {
    padding-left: 0 !important;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-pr0 {
    padding-right: 0 !important;
  }
}

.u-fixed {
  position: fixed;
}

.u-relative {
  position: relative;
}

.u-absolute {
  position: absolute;
}

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

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

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

.u-text-bottom {
  text-align: right;
}

@media screen and (max-width: 767px) {
  .u-mobile-text-center {
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .u-mobile-text-left {
    text-align: left;
  }
}

@media screen and (max-width: 767px) {
  .u-mobile-text-right {
    text-align: right;
  }
}

@media screen and (max-width: 767px) {
  .u-mobile-text-bottom {
    text-align: right;
  }
}

@media screen and (min-width: 768px) {
  .u-desktop-text-center {
    text-align: center;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile-text-left {
    text-align: left;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile-text-right {
    text-align: right;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile-text-bottom {
    text-align: right;
  }
}
/*# sourceMappingURL=styles.css.map */
