@charset "UTF-8";
/* リキッドレイアウト対応 */
html {
  font-family: "Noto Sans", sans-serif;
  color: #464D48;
  line-height: 1.5;
}

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

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

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

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

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

button {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
button:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  button:hover {
    opacity: 1;
  }
}

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

/* Remove default type */
ul,
ol {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

/* Remove default margin padding */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

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

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

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

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

/* フォームリセット */
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;
}

button {
  padding: 0;
}

/* l-article */
.l-article {
  width: 57.5%;
}
@media screen and (max-width: 767px) {
  .l-article {
    width: 100%;
  }
}

/* l-cards */
.l-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
  gap: 2.5rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .l-cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.875rem;
  }
}

.l-inner {
  width: 100%;
  max-width: 1210px;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-right: 30px;
    padding-left: 30px;
  }
}

/* l-sidebar */
.l-sidebar {
  width: 37.5%;
}
@media screen and (max-width: 767px) {
  .l-sidebar {
    width: 100%;
    margin-top: 3.75rem;
  }
}

/* l-wrapper */
.l-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .l-wrapper {
    display: block;
  }
}

/* bg */
.bg {
  background: #ECF5FD;
  margin: 120px 0;
  margin: 7.5rem 0;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .bg {
    margin: 3.4375rem 0;
    padding: 1.25rem 0 1.875rem;
  }
}
.bg::before, .bg::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 120px;
  height: 7.5rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .bg::before, .bg::after {
    height: 3.125rem;
  }
}
.bg::before {
  top: -120px;
  top: -7.5rem;
  background: url(../img/common/bg01.png) no-repeat center top/cover;
}
@media screen and (max-width: 767px) {
  .bg::before {
    top: -2.8125rem;
  }
}
.bg::after {
  bottom: -120px;
  bottom: -7.5rem;
  background: url(../img/common/bg02.png) no-repeat center bottom/cover;
}
@media screen and (max-width: 767px) {
  .bg::after {
    bottom: -2.8125rem;
  }
}
.bg .card__inner {
  background: #fff;
}

.bg--blue {
  background: #044793;
}
.bg--blue::before {
  background: url(../img/common/bg03.png) no-repeat center top/cover;
}
.bg--blue::after {
  background: url(../img/common/bg04.png) no-repeat center bottom/cover;
}

/* breadcrumb */
.breadcrumb__item {
  display: inline;
}
.breadcrumb__item + .breadcrumb__item {
  margin-left: 25px;
  margin-left: 1.5625rem;
  position: relative;
}
.breadcrumb__item + .breadcrumb__item::before {
  position: absolute;
  content: "";
  width: 6px;
  width: 0.375rem;
  height: 10px;
  height: 0.625rem;
  top: 8px;
  top: 0.5rem;
  left: -16px;
  left: -1rem;
}
.breadcrumb__item a, .breadcrumb__item span {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .breadcrumb__item a, .breadcrumb__item span {
    display: inline;
  }
}

/* btn */
.btn {
  text-align: center;
  display: block;
  width: 220px;
  width: 13.75rem;
  max-width: 100%;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  background: #044793;
  border-radius: 1.75rem;
  border: 1px solid #044793;
  border: 0.0625rem solid #044793;
  padding: 13px 0;
  padding: 0.8125rem 0;
}
@media screen and (max-width: 767px) {
  .btn {
    width: 8.125rem;
    font-size: 0.75rem;
    padding: 0.375rem 0;
  }
}

.btn--white {
  background: #fff;
  color: #044793;
}

/* card */
.card__inner {
  display: block;
  height: 100%;
  background: #ECF5FD;
  border-radius: 0.5625rem;
  padding: 15px 15px 30px;
  padding: 0.9375rem 0.9375rem 1.875rem;
}

.card__img-wrapper {
  position: relative;
}

.card__img img {
  border-radius: 0.5625rem;
}
@media screen and (max-width: 767px) {
  .card__img img {
    border-radius: 0.3125rem;
  }
}

.card__caption {
  position: absolute;
  top: 4px;
  top: 0.25rem;
  right: 4px;
  right: 0.25rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #fff;
  background: #F06DA5;
  border-radius: 0.875rem;
  padding: 3px 9px;
  padding: 0.1875rem 0.5625rem;
}

.card__body {
  margin-top: 25px;
  margin-top: 1.5625rem;
  padding: 0 15px;
  padding: 0 0.9375rem;
}
@media screen and (max-width: 767px) {
  .card__body {
    padding: 0 0.625rem;
  }
}

.card__category {
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .card__category {
    margin-top: 0.625rem;
  }
}
.card__category span {
  text-align: center;
  display: inline-block;
  min-width: 166px;
  min-width: 10.375rem;
  font-size: 14px;
  font-size: 0.875rem;
  background: #ECF5FD;
  color: #044793;
  font-weight: 600;
  letter-spacing: 0;
  border-radius: 1.875rem;
  padding: 6px 10px;
  padding: 0.375rem 0.625rem;
}
@media screen and (max-width: 767px) {
  .card__category span {
    min-width: 7.5rem;
    font-size: 0.875rem;
    padding: 0.1875rem 0.625rem;
  }
}

.card__title {
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: 600;
  color: #044793;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  .card__title {
    font-size: 1.125rem;
  }
}

.card__text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.56;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .card__text {
    font-size: 0.875rem;
    line-height: 1.85;
    margin-top: 0.3125rem;
  }
}
.card__text a {
  text-decoration: underline;
  color: #0040EF;
}

.card__tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  gap: 0.625rem;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .card__tag {
    gap: 0.3125rem;
    margin-top: 0.625rem;
  }
}
.card__tag span {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  color: #fff;
  font-weight: 600;
  background: #044793;
  border-radius: 1.125rem;
  padding: 6px 20px;
  padding: 0.375rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .card__tag span {
    padding: 0.25rem 0.9375rem;
  }
}

.card__link {
  display: inline-block;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #044793;
  text-decoration: underline;
  margin-top: 15px;
  margin-top: 0.9375rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .card__link {
    margin-top: 0.625rem;
  }
}
.card__link::after {
  position: absolute;
  content: "";
  width: 15px;
  width: 0.9375rem;
  height: 15px;
  height: 0.9375rem;
  background: url(../img/common/link-icon.png) no-repeat center/contain;
}

.card__caution {
  text-align: right;
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .card__caution {
    margin-top: 0.625rem;
  }
}

.card__box {
  background: #ECF5FD;
  border-radius: 0.5625rem;
  margin-top: 15px;
  margin-top: 0.9375rem;
  padding: 19px 20px;
  padding: 1.1875rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .card__box {
    font-size: 0.875rem;
    padding: 0.9375rem 0.9375rem;
  }
}

.card__box-title {
  color: #044793;
  font-weight: 600;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  .card__box-title {
    margin-bottom: 0.25rem;
  }
}

.card__list {
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .card__list {
    margin-top: 0.625rem;
  }
}

.card__list-item {
  font-size: 18px;
  font-size: 1.125rem;
  background: url(../img/common/check-icon.png) no-repeat left top 4px/14px;
  background: url(../img/common/check-icon.png) no-repeat left top 0.25rem/0.875rem;
  padding-left: 23px;
  padding-left: 1.4375rem;
}
@media screen and (max-width: 767px) {
  .card__list-item {
    font-size: 0.875rem;
    background: url(../img/common/check-icon.png) no-repeat left top 0.3125rem/0.6875rem;
    padding-left: 0.9375rem;
  }
}
.card__list-item + .card__list-item {
  margin-top: 6px;
  margin-top: 0.375rem;
}

.card__btn {
  margin: 25px auto 0;
  margin: 1.5625rem auto 0;
}
@media screen and (max-width: 767px) {
  .card__btn {
    width: 7.75rem;
  }
}

/* category */
.category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 25px;
  gap: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .category {
    gap: 0.625rem;
  }
}
.category a {
  display: inline-block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  color: #044793;
  border: 2px solid #044793;
  border: 0.125rem solid #044793;
  border-radius: 1.875rem;
  padding: 7px 30px;
  padding: 0.4375rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .category a {
    font-size: 0.875rem;
    padding: 0.3125rem 1.25rem;
  }
}
.category a.current {
  pointer-events: none;
  color: #fff;
  background: #044793;
}

/* cv */
.cv {
  text-align: center;
  padding: 155px 0 80px;
  padding: 9.6875rem 0 5rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .cv {
    background-size: contain;
    padding: 3.75rem 0 2.5rem;
  }
}
.cv::before, .cv::after {
  position: absolute;
  content: "";
  width: 100%;
  left: 0;
  z-index: -1;
}
.cv::before {
  bottom: -200px;
  bottom: -12.5rem;
  top: 200px;
  top: 12.5rem;
  background: #ECF5FD;
}
@media screen and (max-width: 767px) {
  .cv::before {
    bottom: -6.25rem;
    top: 3.125rem;
  }
}
.cv::after {
  height: 200px;
  height: 12.5rem;
  top: 0;
  background: url(../img/common/cv-bg.png) no-repeat center top/cover;
}
@media screen and (max-width: 767px) {
  .cv::after {
    background-size: contain;
  }
}

.cv--coin {
  background: #ECF5FD;
  padding-top: 140px;
  padding-top: 8.75rem;
}
@media screen and (max-width: 767px) {
  .cv--coin {
    padding-top: 3.75rem;
  }
}
.cv--coin::after {
  display: none;
}

.cv__inner {
  position: relative;
}
.cv__inner::after {
  position: absolute;
  content: "";
  width: 176px;
  width: 11rem;
  height: 195px;
  height: 12.1875rem;
  right: 80px;
  right: 5rem;
  bottom: -60px;
  bottom: -3.75rem;
  background: url(../img/common/cv-icon.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .cv__inner::after {
    width: 7.5rem;
    height: 8.75rem;
    right: -1.875rem;
  }
}

.cv__title {
  font-size: 38px;
  font-size: 2.375rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  color: #044793;
}
@media screen and (max-width: 767px) {
  .cv__title {
    font-size: 1.5rem;
  }
}

.cv__text {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #044793;
  line-height: 2.3;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .cv__text {
    font-size: 0.875rem;
    line-height: 1.8;
  }
}

.cv__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 28px;
  gap: 1.75rem;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .cv__btns {
    display: block;
    margin-top: 1.25rem;
  }
}
.cv__btns .cv__btn {
  margin-top: 0;
}

.cv__btn {
  text-align: center;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .cv__btn {
    margin-top: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .cv__btn:nth-child(2) {
    margin-top: 0.625rem;
  }
}
.cv__btn:nth-child(2) a {
  background: #fff;
  color: #044793;
}
.cv__btn .btn {
  display: inline-block;
  width: unset;
  max-width: unset;
  min-width: 220px;
  min-width: 13.75rem;
  padding: 13px 40px;
  padding: 0.8125rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .cv__btn .btn {
    min-width: 7.8125rem;
    padding: 0.375rem 1.25rem;
  }
}

/* drawer */
.drawer {
  position: fixed;
  z-index: 20;
  top: 45px;
  top: 2.8125rem;
  left: 0;
  border-top: 1px solid #E0E0E0;
  border-top: 0.0625rem solid #E0E0E0;
  background: #fff;
  -webkit-transform: translateY(-150%);
          transform: translateY(-150%);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  width: 100%;
  padding: 0 30px 30px;
  padding: 0 1.875rem 1.875rem;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, .16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, .16);
}
.drawer.active {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

.drawer__item + .drawer__item {
  border-top: 1px solid #E0E0E0;
  border-top: 0.0625rem solid #E0E0E0;
}
.drawer__item a, .drawer__item span {
  display: block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #0F0F0F;
  letter-spacing: 0.06em;
  padding: 13px 15px;
  padding: 0.8125rem 0.9375rem;
}
.drawer__item span {
  position: relative;
}
.drawer__item span::after {
  position: absolute;
  content: "";
  width: 14px;
  width: 0.875rem;
  height: 7px;
  height: 0.4375rem;
  top: 22px;
  top: 1.375rem;
  right: 15px;
  right: 0.9375rem;
  background: url(../img/common/dropdown-icon.png) no-repeat center/contain;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.drawer__item.active span::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.drawer__subitems {
  display: none;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
}

.drawer__subitem a {
  font-size: 15px;
  font-size: 0.9375rem;
  padding: 6px 15px;
  padding: 0.375rem 0.9375rem;
}

/* entitle */
/* floating */
.floating {
  position: fixed;
  right: 65px;
  right: 4.0625rem;
  bottom: 65px;
  bottom: 4.0625rem;
  z-index: 10;
  display: block;
  width: 102px;
  width: 6.375rem;
}
@media screen and (max-width: 767px) {
  .floating {
    right: 0.9375rem;
    bottom: 0.9375rem;
    width: 3.75rem;
  }
}
.floating:hover {
  opacity: 1;
}

/* fnav */
.fnav__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 96px;
  gap: 6rem;
}
@media screen and (max-width: 1200px) {
  .fnav__items {
    gap: 3.75rem;
  }
}
@media screen and (max-width: 767px) {
  .fnav__items {
    display: block;
  }
}

.fnav__item {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.78;
}
@media screen and (max-width: 767px) {
  .fnav__item + .fnav__item {
    margin-top: 0.3125rem;
  }
  .fnav__item:nth-child(3) {
    margin-top: 0.9375rem;
  }
}
.fnav__item p, .fnav__item span {
  font-weight: 700;
}
.fnav__item a {
  display: inline-block;
}
.fnav__item span {
  pointer-events: none;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .fnav__item span {
    pointer-events: unset;
    padding-right: 1.125rem;
    position: relative;
  }
  .fnav__item span::after, .fnav__item span::before {
    position: absolute;
    content: "";
    width: 0.5rem;
    height: 0.0625rem;
    background: #fff;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .fnav__item span::before {
    top: 48%;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .fnav__item span.active::before {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

.fnav__subitems {
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .fnav__subitems {
    display: none;
  }
}

.fnav__subitem a {
  font-weight: 500;
}

.fnav__tel {
  font-size: 23px;
  font-size: 1.4375rem;
  font-weight: 700;
}

/* footer */
.footer {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  color: #fff;
  padding-top: 120px;
  padding-top: 7.5rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .footer {
    text-align: center;
    padding-top: 4.375rem;
  }
}
.footer::before, .footer::after {
  position: absolute;
  content: "";
  width: 100%;
  left: 0;
  z-index: -1;
}
.footer::before {
  top: 200px;
  top: 12.5rem;
  bottom: 0;
  background: #044793;
}
@media screen and (max-width: 767px) {
  .footer::before {
    top: 3.125rem;
  }
}
.footer::after {
  height: 200px;
  height: 12.5rem;
  top: 0;
  background: url(../img/common/footer-bg01.png) no-repeat center top/cover;
}
@media screen and (max-width: 767px) {
  .footer::after {
    height: 18.75rem;
    background-size: contain;
  }
}
.footer .l-inner {
  max-width: 1290px;
  max-width: 80.625rem;
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 130px;
  gap: 8.125rem;
  padding: 0 40px;
  padding: 0 2.5rem;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .footer__inner {
    gap: 6.25rem;
  }
}
@media screen and (max-width: 767px) {
  .footer__inner {
    display: block;
    padding: 0;
  }
}
.footer__inner::before {
  position: absolute;
  content: "";
  width: 80px;
  width: 5rem;
  height: 100px;
  height: 6.25rem;
  top: -155px;
  top: -9.6875rem;
  left: -30px;
  left: -1.875rem;
  background: url(../img/common/footer-bg02.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .footer__inner::before {
    top: -7.8125rem;
    left: -0.9375rem;
  }
}

.footer__title {
  font-family: "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: 0.07em;
  font-weight: 600;
}

.footer__text {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .footer__text {
    margin-top: 0.3125rem;
  }
}

@media screen and (max-width: 767px) {
  .footer__nav {
    margin-top: 1.25rem;
  }
}

.footer__copyright {
  text-align: center;
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: 500;
  border-top: 1px solid #81BCFF;
  border-top: 0.0625rem solid #81BCFF;
  padding: 15px 0;
  padding: 0.9375rem 0;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    font-size: 1.0625rem;
    line-height: 1.6;
    padding: 1.25rem 0 2.5rem;
    margin-top: 2.5rem;
  }
}

/* form */
.form {
  border-radius: 0.75rem;
  border: 1px solid #044793;
  border: 0.0625rem solid #044793;
  padding: 80px 80px;
  padding: 5rem 5rem;
}
@media screen and (max-width: 767px) {
  .form {
    border-radius: 0.625rem;
    padding: 1.875rem 1.25rem 2.5rem;
  }
}

.form__text {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 2;
  color: #044793;
}
@media screen and (max-width: 767px) {
  .form__text {
    font-size: 0.875rem;
  }
}

.form__box {
  background: #F4F4F4;
  border-radius: 0.9375rem;
  margin-top: 25px;
  margin-top: 1.5625rem;
  padding: 32px 35px;
  padding: 2rem 2.1875rem;
}
@media screen and (max-width: 767px) {
  .form__box {
    padding: 1.5625rem 1.25rem;
    border-radius: 0.625rem;
    margin-top: 1.25rem;
  }
}

.form__box-text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.89;
}
@media screen and (max-width: 767px) {
  .form__box-text {
    font-size: 0.875rem;
  }
}
.form__box-text + .form__box-text {
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .form__box-text + .form__box-text {
    margin-top: 0.625rem;
  }
}

.form__items {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .form__items {
    margin-top: 2.5rem;
  }
}

.form__item + .form__item {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .form__item + .form__item {
    margin-top: 1.875rem;
  }
}

.form__item-label label {
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .form__item-label label {
    font-size: 1rem;
  }
}
.form__item-label span {
  display: inline-block;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  background: #044793;
  border-radius: 0.375rem;
  padding: 3px 14px;
  padding: 0.1875rem 0.875rem;
  margin-left: 40px;
  margin-left: 2.5rem;
}
@media screen and (max-width: 767px) {
  .form__item-label span {
    font-size: 0.875rem;
    margin-left: 1.25rem;
  }
}

.form__item-input {
  margin-top: 8px;
  margin-top: 0.5rem;
}
.form__item-input input[type=text], .form__item-input input[type=tel], .form__item-input input[type=email], .form__item-input textarea {
  width: 100%;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  border-radius: 0.375rem;
  border: 2px solid #C9C9C9;
  border: 0.125rem solid #C9C9C9;
  padding: 10px 20px;
  padding: 0.625rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .form__item-input input[type=text], .form__item-input input[type=tel], .form__item-input input[type=email], .form__item-input textarea {
    font-size: 1rem;
    padding: 0.625rem 0.9375rem;
  }
}
.form__item-input input[type=text]::-webkit-input-placeholder, .form__item-input input[type=tel]::-webkit-input-placeholder, .form__item-input input[type=email]::-webkit-input-placeholder, .form__item-input textarea::-webkit-input-placeholder {
  color: #C9C9C9;
}
.form__item-input input[type=text]::-moz-placeholder, .form__item-input input[type=tel]::-moz-placeholder, .form__item-input input[type=email]::-moz-placeholder, .form__item-input textarea::-moz-placeholder {
  color: #C9C9C9;
}
.form__item-input input[type=text]::-ms-input-placeholder, .form__item-input input[type=tel]::-ms-input-placeholder, .form__item-input input[type=email]::-ms-input-placeholder, .form__item-input textarea::-ms-input-placeholder {
  color: #C9C9C9;
}
.form__item-input input[type=text]::placeholder, .form__item-input input[type=tel]::placeholder, .form__item-input input[type=email]::placeholder, .form__item-input textarea::placeholder {
  color: #C9C9C9;
}
.form__item-input input[type=text], .form__item-input input[type=tel], .form__item-input input[type=email] {
  height: 46px;
  height: 2.875rem;
}
.form__item-input textarea {
  resize: none;
  height: 300px;
  height: 18.75rem;
}

.form__radio label, .form__check label {
  display: block;
  margin-top: 16px;
  margin-top: 1rem;
}
.form__radio input[type=radio] + span, .form__radio input[type=checkbox] + span, .form__check input[type=radio] + span, .form__check input[type=checkbox] + span {
  cursor: pointer;
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  padding-left: 38px;
  padding-left: 2.375rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .form__radio input[type=radio] + span, .form__radio input[type=checkbox] + span, .form__check input[type=radio] + span, .form__check input[type=checkbox] + span {
    font-size: 1rem;
  }
}
.form__radio input[type=radio] + span::before, .form__radio input[type=radio] + span::after, .form__radio input[type=checkbox] + span::before, .form__radio input[type=checkbox] + span::after, .form__check input[type=radio] + span::before, .form__check input[type=radio] + span::after, .form__check input[type=checkbox] + span::before, .form__check input[type=checkbox] + span::after {
  position: absolute;
  content: "";
}
.form__radio input[type=radio] + span::before, .form__radio input[type=checkbox] + span::before, .form__check input[type=radio] + span::before, .form__check input[type=checkbox] + span::before {
  display: block;
  width: 28px;
  width: 1.75rem;
  height: 28px;
  height: 1.75rem;
  border-radius: 0.25rem;
  border: 2px solid #C9C9C9;
  border: 0.125rem solid #C9C9C9;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
.form__radio input[type=radio] + span::after, .form__radio input[type=checkbox] + span::after, .form__check input[type=radio] + span::after, .form__check input[type=checkbox] + span::after {
  border-bottom: 3px solid #464D48;
  border-bottom: 0.1875rem solid #464D48;
  border-left: 3px solid #464D48;
  border-left: 0.1875rem solid #464D48;
  height: 10px;
  height: 0.625rem;
  width: 17px;
  width: 1.0625rem;
  opacity: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  left: 5px;
  left: 0.3125rem;
  top: 6px;
  top: 0.375rem;
}
.form__radio input[type=radio]:checked + span::after, .form__radio input[type=checkbox]:checked + span::after, .form__check input[type=radio]:checked + span::after, .form__check input[type=checkbox]:checked + span::after {
  opacity: 1;
}

.form__address input[type=text]:first-child {
  width: 120px;
  width: 7.5rem;
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
}

.form__btn {
  text-align: center;
  display: block;
  width: 243px;
  width: 15.1875rem;
  max-width: 100%;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  background: #044793;
  border-radius: 1.75rem;
  padding: 14px 0;
  padding: 0.875rem 0;
  margin: 60px auto 0;
  margin: 3.75rem auto 0;
}
@media screen and (max-width: 767px) {
  .form__btn {
    font-size: 1rem;
    margin-top: 2.5rem;
  }
}

/* gnav */
.gnav.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #fff;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
          box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
}

.gnav-placeholder {
  height: 0;
}

.gnav__items {
  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;
  gap: 25px;
  gap: 1.5625rem;
}

.gnav__item {
  position: relative;
}
.gnav__item a, .gnav__item span {
  display: inline-block;
  font-weight: 600;
  color: #0F0F0F;
  letter-spacing: 0.06em;
  padding: 16px 0;
  padding: 1rem 0;
}
.gnav__item span {
  background: url(../img/common/dropdown-icon.png) no-repeat center right/8px;
  background: url(../img/common/dropdown-icon.png) no-repeat center right/0.5rem;
  padding-right: 13px;
  padding-right: 0.8125rem;
  position: relative;
}

.gnav__subitems {
  display: none;
  position: absolute;
  background: #fff;
  white-space: nowrap;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, .16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, .16);
}

.gnav__subitem a {
  font-size: 15px;
  font-size: 0.9375rem;
  padding: 8px 15px;
  padding: 0.5rem 0.9375rem;
}

/* hamburger */
.hamburger {
  display: block;
  position: absolute;
  z-index: 30;
  right: 15px;
  right: 0.9375rem;
  top: 17px;
  top: 1.0625rem;
  width: 15px;
  width: 0.9375rem;
  height: 15px;
  height: 0.9375rem;
  cursor: pointer;
  text-align: center;
}
.hamburger.active .hamburger__border {
  top: 8px;
  top: 0.5rem;
}
.hamburger.active .hamburger__border:nth-child(1) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.hamburger.active .hamburger__border:nth-child(2), .hamburger.active .hamburger__border:nth-child(3) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.hamburger__border {
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  height: 0.0625rem;
  left: 0;
  background: #044793;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.hamburger__border:nth-child(1) {
  top: 0;
}
.hamburger__border:nth-child(2) {
  top: 6px;
  top: 0.375rem;
}
.hamburger__border:nth-child(3) {
  top: 12px;
  top: 0.75rem;
}

/* header */
.header {
  position: relative;
  z-index: 10;
  background: #fff;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, .16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, .16);
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px 15px 10px 65px;
  padding: 0.9375rem 0.9375rem 0.625rem 4.0625rem;
}
@media screen and (max-width: 767px) {
  .header__inner {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 0.75rem;
  }
}

.header__logo {
  width: 188px;
  width: 11.75rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 6.125rem;
  }
}
.header__logo a {
  display: block;
}

.header__text {
  font-weight: 700;
  color: #044793;
  letter-spacing: 0.04em;
  line-height: 2;
  border-left: 1px solid #044793;
  border-left: 0.0625rem solid #044793;
  padding-left: 20px;
  padding-left: 1.25rem;
  margin-left: 20px;
  margin-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .header__text {
    font-size: 0.5rem;
    line-height: 1.4;
    padding-left: 0.5rem;
    margin-left: 0.5rem;
  }
}

.header__tel {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 26px;
  font-size: 1.625rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #044793;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .header__tel {
    display: none;
  }
}

.header__btn {
  text-align: center;
  display: block;
  width: 153px;
  width: 9.5625rem;
  max-width: 100%;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 0.5rem;
  color: #fff;
  background: #044793;
  margin-left: 40px;
  margin-left: 2.5rem;
  padding: 11px;
  padding: 0.6875rem;
}
@media screen and (max-width: 767px) {
  .header__btn {
    display: none;
  }
}

.header__nav {
  border-top: 1px solid #E0E0E0;
  border-top: 0.0625rem solid #E0E0E0;
}
@media screen and (max-width: 767px) {
  .header__nav {
    display: none;
  }
}

/* heading */
.heading {
  text-align: center;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  .heading {
    font-size: 1.625rem;
  }
}
.heading span {
  color: #044793;
}

/* lead */
.lead {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2;
  font-weight: 600;
  color: #044793;
  margin-top: 10px;
  margin-top: 0.625rem;
}

/* list */
.list {
  border-radius: 0.625rem;
  border: 1px solid #ADD2FC;
  border: 0.0625rem solid #ADD2FC;
}

.list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .list__item {
    display: block;
    font-size: 0.875rem;
  }
}
.list__item + .list__item {
  border-top: 1px solid #ADD2FC;
  border-top: 0.0625rem solid #ADD2FC;
}
.list__item:first-child .list__item-title {
  border-radius: 0.625rem 0 0 0;
}
.list__item:last-child .list__item-title {
  border-radius: 0 0 0 0.625rem;
}
@media screen and (max-width: 767px) {
  .list__item:last-child .list__item-title {
    border-radius: 0;
  }
}

.list__item-title {
  width: 16%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #ECF5FD;
  color: #044793;
  padding: 28px 20px;
  padding: 1.75rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .list__item-title {
    width: 100%;
    display: block;
    padding: 0.9375rem;
  }
}

.list__item-text {
  width: 84%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 28px 30px;
  padding: 1.75rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .list__item-text {
    width: 100%;
    display: block;
    padding: 0.9375rem;
  }
}

/* main */
/* mv */
.mv {
  overflow: hidden;
  min-height: 500px;
  min-height: 31.25rem;
  padding: 70px 0;
  padding: 4.375rem 0;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .mv {
    min-height: unset;
    padding: 3.125rem 0;
    margin-bottom: 1.25rem;
  }
}
.mv::before, .mv::after {
  position: absolute;
  content: "";
  width: 100%;
  left: 0;
  z-index: -1;
}
.mv::before {
  top: 0;
  bottom: 200px;
  bottom: 12.5rem;
  background: #ECF5FD;
}
@media screen and (max-width: 767px) {
  .mv::before {
    bottom: 6.25rem;
  }
}
.mv::after {
  height: 200px;
  height: 12.5rem;
  bottom: 50px;
  bottom: 3.125rem;
  background: url(../img/common/mv-bg01.png) no-repeat center bottom/cover;
}
@media screen and (max-width: 767px) {
  .mv::after {
    background-size: contain;
  }
}

.mv__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .mv__inner {
    display: block;
  }
}

.mv__body {
  width: 60%;
}
@media screen and (max-width: 767px) {
  .mv__body {
    width: 100%;
  }
}

.mv__subtitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 767px) {
  .mv__subtitle {
    display: block;
    font-size: 1rem;
  }
}
.mv__subtitle span {
  display: block;
  font-size: 22px;
  font-size: 1.375rem;
  color: #044793;
  margin-right: 13px;
  margin-right: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .mv__subtitle span {
    font-size: 1.125rem;
  }
}

.mv__title {
  font-size: 42px;
  font-size: 2.625rem;
  font-weight: 600;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: #044793;
}
@media screen and (max-width: 767px) {
  .mv__title {
    font-size: 1.75rem;
    line-height: 1.3;
  }
}

.mv__text {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.9;
  letter-spacing: 0.07em;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .mv__text {
    font-size: 1rem;
  }
}
.mv__text.w-580 {
  width: 580px;
  width: 36.25rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .mv__text.w-580 {
    width: 100%;
  }
}
.mv__text.w-650 {
  width: 650px;
  width: 40.625rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .mv__text.w-650 {
    width: 100%;
  }
}

.mv__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
  gap: 0.9375rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .mv__category {
    gap: 0.3125rem;
    margin-top: 0.9375rem;
  }
}
.mv__category span {
  display: inline-block;
  font-weight: 600;
  color: #fff;
  border-radius: 1rem;
  background: #044793;
  padding: 3px 18px;
  padding: 0.1875rem 1.125rem;
}
@media screen and (max-width: 767px) {
  .mv__category span {
    font-size: 0.875rem;
  }
}

.mv__img {
  width: 41.5%;
  margin-right: -35px;
  margin-right: -2.1875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .mv__img {
    width: 100%;
    margin-right: 0;
    margin-top: 1.5625rem;
  }
}
.mv__img::before, .mv__img::after {
  position: absolute;
  content: "";
}
.mv__img::before {
  width: 62px;
  width: 3.875rem;
  height: 58px;
  height: 3.625rem;
  left: 17px;
  left: 1.0625rem;
  top: -34px;
  top: -2.125rem;
  background: url(../img/common/mv-bg02.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .mv__img::before {
    width: 2.5rem;
    height: 2.1875rem;
    left: 0.625rem;
    top: -1.25rem;
  }
}
.mv__img::after {
  width: 81px;
  width: 5.0625rem;
  height: 124px;
  height: 7.75rem;
  right: -35px;
  right: -2.1875rem;
  bottom: -110px;
  bottom: -6.875rem;
  background: url(../img/common/mv-bg03.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .mv__img::after {
    width: 3.75rem;
    height: 5rem;
    right: -0.625rem;
    bottom: -3.125rem;
  }
}
.mv__img img {
  border-radius: 1.125rem;
}
@media screen and (max-width: 767px) {
  .mv__img img {
    border-radius: 0.5625rem;
  }
}

.mv__btn {
  text-align: center;
  display: block;
  width: 243px;
  width: 15.1875rem;
  max-width: 100%;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  background: #044793;
  border: 1px solid #044793;
  border: 0.0625rem solid #044793;
  border-radius: 1.75rem;
  margin-top: 40px;
  margin-top: 2.5rem;
  padding: 13px 0;
  padding: 0.8125rem 0;
}
@media screen and (max-width: 767px) {
  .mv__btn {
    font-size: 0.875rem;
    margin: 1.25rem auto 0;
  }
}

.mv__btn {
  text-align: center;
  display: block;
  width: 220px;
  width: 13.75rem;
  max-width: 100%;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #044793;
  background: #fff;
  border: 1px solid #044793;
  border: 0.0625rem solid #044793;
  border-radius: 1.75rem;
  margin-top: 30px;
  margin-top: 1.875rem;
  padding: 13px 0;
  padding: 0.8125rem 0;
}
@media screen and (max-width: 767px) {
  .mv__btn {
    font-size: 0.875rem;
    margin: 1.25rem auto 0;
  }
}

.mv__subheading {
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: 600;
  color: #044793;
  letter-spacing: 0.07em;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .mv__subheading {
    font-size: 1.125rem;
    margin-top: 1.25rem;
  }
}

.mv__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .mv__footer {
    display: block;
  }
}

.mv__list {
  width: 44%;
}
@media screen and (max-width: 767px) {
  .mv__list {
    width: 100%;
  }
}

.mv__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  gap: 0.5rem;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.56;
}
@media screen and (max-width: 767px) {
  .mv__list-item {
    font-size: 0.875rem;
  }
}
.mv__list-item + .mv__list-item {
  margin-top: 3px;
  margin-top: 0.1875rem;
}
.mv__list-item span {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  color: #044793;
  font-weight: 700;
}

.mv__icon {
  width: 46%;
}
@media screen and (max-width: 767px) {
  .mv__icon {
    width: 80%;
    margin-top: 0.625rem;
    margin-left: auto;
  }
}

.mv__tel {
  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;
  gap: 22px;
  gap: 1.375rem;
  width: 460px;
  width: 28.75rem;
  max-width: 100%;
  color: #044793;
  font-weight: 600;
  background: #fff;
  border: 1px solid #044793;
  border: 0.0625rem solid #044793;
  border-radius: 1.75rem;
  margin-top: 20px;
  margin-top: 1.25rem;
  padding: 15px 10px;
  padding: 0.9375rem 0.625rem;
}
@media screen and (max-width: 767px) {
  .mv__tel {
    display: block;
    text-align: center;
    margin: 0.9375rem auto 0;
    padding: 0.625rem 0.625rem 0.3125rem;
  }
}

.mv__tel-text {
  font-size: 19px;
  font-size: 1.1875rem;
}
@media screen and (max-width: 767px) {
  .mv__tel-text {
    font-size: 1rem;
  }
}

.mv__tel-number {
  font-size: 34px;
  font-size: 2.125rem;
}
@media screen and (max-width: 767px) {
  .mv__tel-number {
    font-size: 1.75rem;
  }
}

/* news */
/* pagination */
.pagination {
  margin-top: 70px;
  margin-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .pagination {
    margin-top: 2.5rem;
  }
}
.pagination ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
  gap: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .pagination ul {
    gap: 0.5rem;
  }
}
.pagination a, .pagination span {
  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;
  width: 48px;
  width: 3rem;
  min-width: 48px;
  min-width: 3rem;
  height: 48px;
  height: 3rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 700;
  color: #044793;
  background: #ECF5FD;
}
@media screen and (max-width: 767px) {
  .pagination a, .pagination span {
    width: 2.5rem;
    min-width: 2.5rem;
    height: 2.5rem;
  }
}
.pagination .current {
  color: #fff;
  background: #044793;
}
.pagination .dots {
  border: none;
  background: none;
}
.pagination .prev, .pagination .next {
  position: relative;
}
.pagination .prev::before, .pagination .next::before {
  position: absolute;
  content: "";
  width: 8px;
  width: 0.5rem;
  height: 14px;
  height: 0.875rem;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.pagination .prev {
  margin-right: 10px;
  margin-right: 0.625rem;
}
.pagination .prev::before {
  background: url(../img/common/prev-icon.png) no-repeat center/contain;
}
.pagination .next {
  margin-left: 10px;
  margin-left: 0.625rem;
}
.pagination .next::before {
  background: url(../img/common/next-icon.png) no-repeat center/contain;
}

/* sidebar */
.sidebar__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 25px;
  gap: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .sidebar__category {
    gap: 0.625rem;
  }
}
.sidebar__category a, .sidebar__category span {
  display: inline-block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #044793;
  letter-spacing: 0.07em;
  border: 2px solid #044793;
  border: 0.125rem solid #044793;
  border-radius: 1.875rem;
  padding: 6px 28px;
  padding: 0.375rem 1.75rem;
}
@media screen and (max-width: 767px) {
  .sidebar__category a, .sidebar__category span {
    font-size: 1rem;
    padding: 0.375rem 1.125rem;
  }
}
.sidebar__category a.current, .sidebar__category span {
  pointer-events: none;
  color: #fff;
  background: #044793;
}

.sidebar__subtitle {
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 600;
  background: #044793;
  color: #fff;
  border-radius: 0.625rem;
  margin-top: 30px;
  margin-top: 1.875rem;
  padding: 12px 30px;
  padding: 0.75rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .sidebar__subtitle {
    font-size: 1.125rem;
    margin-top: 1.25rem;
  }
}

.sidebar__links {
  margin-top: 25px;
  margin-top: 1.5625rem;
  margin-left: 25px;
  margin-left: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .sidebar__links {
    margin-left: 0;
    margin-top: 0.9375rem;
  }
}

.sidebar__link + .sidebar__link {
  margin-top: 7px;
  margin-top: 0.4375rem;
}
.sidebar__link a {
  display: inline-block;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .sidebar__link a {
    font-size: 1.125rem;
  }
}

/* store-card */
.store-card {
  background: #fff;
  border-radius: 0.5625rem;
  padding: 15px 15px 40px;
  padding: 0.9375rem 0.9375rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .store-card {
    padding-bottom: 1.875rem;
  }
}

.store-card__img-wrapper {
  position: relative;
}

.store-card__img img {
  border-radius: 0.5625rem;
}
@media screen and (max-width: 767px) {
  .store-card__img img {
    border-radius: 0.3125rem;
  }
}

.store-card__caption {
  position: absolute;
  top: 4px;
  top: 0.25rem;
  right: 4px;
  right: 0.25rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #fff;
  background: #F06DA5;
  border-radius: 0.875rem;
  padding: 3px 9px;
  padding: 0.1875rem 0.5625rem;
}

.store-card__body {
  padding: 0 15px;
  padding: 0 0.9375rem;
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .store-card__body {
    padding: 0 0.625rem;
    margin-top: 1.875rem;
  }
}

.store-card__title {
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: 600;
  color: #044793;
  line-height: 1.33;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  .store-card__title {
    font-size: 1.125rem;
  }
}

.store-card__text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.56;
  font-weight: 500;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .store-card__text {
    font-size: 0.875rem;
    line-height: 1.85;
    margin-top: 0.9375rem;
  }
}

.store-card__tel {
  display: inline-block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #044793;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .store-card__tel {
    font-size: 0.875rem;
    margin-top: 0.625rem;
  }
}

.store-card__open {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  background: #ECF5FD;
  color: #044793;
  border-radius: 1.125rem;
  margin-top: 20px;
  margin-top: 1.25rem;
  padding: 8px 20px;
  padding: 0.5rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .store-card__open {
    margin-top: 0.625rem;
    padding: 0.375rem 1.25rem;
  }
}

.store-card__list {
  margin-top: 13px;
  margin-top: 0.8125rem;
}

.store-card__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3px;
  gap: 0.1875rem;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.56;
}
@media screen and (max-width: 767px) {
  .store-card__list-item {
    font-size: 0.875rem;
  }
}
.store-card__list-item + .store-card__list-item {
  margin-top: 5px;
  margin-top: 0.3125rem;
}

.store-card__list-title {
  white-space: nowrap;
  font-weight: 700;
}

.store-card__items {
  background: #ECF5FD;
  border-radius: 0.5625rem;
  margin-top: 15px;
  margin-top: 0.9375rem;
  padding: 15px 20px;
  padding: 0.9375rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .store-card__items {
    padding: 0.9375rem;
  }
}

.store-card__item {
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .store-card__item {
    font-size: 0.875rem;
  }
}
.store-card__item + .store-card__item {
  border-top: 2px dotted #044793;
  border-top: 0.125rem dotted #044793;
  margin-top: 15px;
  margin-top: 0.9375rem;
  padding-top: 15px;
  padding-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .store-card__item + .store-card__item {
    margin-top: 0.625rem;
    padding-top: 0.625rem;
  }
}

.store-card__item-title {
  font-weight: 700;
  color: #044793;
}

.store-card__item-text {
  margin-top: 4px;
  margin-top: 0.25rem;
  padding-left: 0.5em;
}

.store-card__map {
  width: 100%;
  padding-top: 55.3054662379%;
  margin-top: 20px;
  margin-top: 1.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .store-card__map {
    margin-top: 0.625rem;
  }
}
.store-card__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.5625rem;
}

.store-card__subtext {
  background: #ECF5FD;
  border-radius: 0.5625rem;
  margin-top: 20px;
  margin-top: 1.25rem;
  padding: 15px 20px;
  padding: 0.9375rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .store-card__subtext {
    font-size: 0.875rem;
    padding: 0.9375rem;
    margin-top: 0.625rem;
  }
}

/* subheading */
.subheading {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  gap: 1.875rem;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 600;
  color: #fff;
  background: #044793;
  border-radius: 0.625rem;
  padding: 17px 30px;
  padding: 1.0625rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .subheading {
    display: block;
    font-size: 1.25rem;
    padding: 0.75rem 1.0625rem;
  }
}
.subheading span {
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .subheading span {
    font-size: 0.875rem;
  }
}

/* subtitle */
.subtitle {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #044793;
  line-height: 2;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .subtitle {
    font-size: 0.875rem;
    line-height: 1.8;
  }
}

/* table */
.table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 0.625rem;
  overflow: hidden;
}
.table tr:first-child th {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  background: #044793;
  color: #fff;
  padding: 18px;
  padding: 1.125rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .table tr:first-child th {
    font-size: 0.875rem;
    padding: 0.9375rem;
  }
}
.table tr:first-child th span {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .table tr:first-child th span {
    font-size: 1.125rem;
  }
}
.table tr:last-child td {
  border-bottom: 1px solid #E3E3E3;
  border-bottom: 0.0625rem solid #E3E3E3;
}
.table tr:last-child td:last-child {
  border-radius: 0 0 0.625rem 0;
}
.table th, .table td {
  border-top: 1px solid #E3E3E3;
  border-top: 0.0625rem solid #E3E3E3;
}
.table th {
  text-align: left;
  width: 50%;
  font-size: 18px;
  font-size: 1.125rem;
  background: #ECF5FD;
  padding: 26px 10px 26px 30px;
  padding: 1.625rem 0.625rem 1.625rem 1.875rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .table th {
    font-size: 0.875rem;
    padding: 0.9375rem 0.625rem;
  }
}
.table th span {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #044793;
}
@media screen and (max-width: 767px) {
  .table th span {
    font-size: 1rem;
  }
}
.table td {
  text-align: right;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
  border-right: 1px solid #E3E3E3;
  border-right: 0.0625rem solid #E3E3E3;
  padding: 20px 40px;
  padding: 1.25rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .table td {
    font-size: 0.875rem;
    padding: 0.9375rem 1.25rem;
  }
}
.table td span {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  color: #044793;
}
@media screen and (max-width: 767px) {
  .table td span {
    font-size: 1.25rem;
  }
}

/* title */
.title {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  padding-bottom: 15px;
  padding-bottom: 0.9375rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .title {
    font-size: 1.5rem;
    line-height: 1.3;
  }
}
.title::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 55px;
  width: 3.4375rem;
  height: 2px;
  height: 0.125rem;
  border: 1px dashed #044793;
  border: 0.0625rem dashed #044793;
}
.title span {
  color: #044793;
}

/* about */
.about {
  overflow: hidden;
  padding-bottom: 140px;
  padding-bottom: 8.75rem;
}
@media screen and (max-width: 767px) {
  .about {
    padding-bottom: 3.75rem;
  }
}

.about__header {
  padding: 120px 0 110px;
  padding: 7.5rem 0 6.875rem;
}
@media screen and (max-width: 767px) {
  .about__header {
    padding: 2.5rem 0 3.75rem;
  }
}

.about__imgs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .about__imgs {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
  }
}

.about__img img {
  border-radius: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .about__img img {
    border-radius: 0.5625rem;
  }
}

/* other */
.other__cards {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .other__cards {
    margin-top: 1.5625rem;
  }
}

/* service */
.service .title {
  text-align: center;
}
.service .title::after {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.service__header-cards {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .service__header-cards {
    margin-top: 1.875rem;
  }
}
.service__header-cards .card:nth-child(3) .card__inner {
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff9dc));
  background: linear-gradient(#fff 0%, #fff9dc 100%);
}

.service__header-img {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .service__header-img {
    margin-top: 1.25rem;
  }
}
.service__header-img img {
  border-radius: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .service__header-img img {
    border-radius: 0.5625rem;
    height: 9.375rem;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.service__footer {
  padding: 100px 0 120px;
  padding: 6.25rem 0 7.5rem;
}
@media screen and (max-width: 767px) {
  .service__footer {
    padding: 3.75rem 0;
  }
}

.service__footer-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 30px;
  gap: 2.5rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .service__footer-cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
  }
}
.service__footer-cards .card__body {
  padding: 0 25px;
  padding: 0 1.5625rem;
}
@media screen and (max-width: 767px) {
  .service__footer-cards .card__body {
    padding: 0 0.9375rem;
  }
}
.service__footer-cards .card__title {
  text-align: center;
  font-size: 22px;
  font-size: 1.375rem;
}
@media screen and (max-width: 767px) {
  .service__footer-cards .card__title {
    font-size: 1.125rem;
  }
}

.service__footer-imgs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  gap: 3.125rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .service__footer-imgs {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
    margin-top: 1.25rem;
  }
}
.service__footer-imgs .service__footer-img {
  margin-top: 0;
}

.service__footer-img {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .service__footer-img {
    margin-top: 1.25rem;
  }
}
.service__footer-img img {
  border-radius: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .service__footer-img img {
    border-radius: 0.5625rem;
    height: 9.375rem;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

/* system */
.system {
  padding-bottom: 120px;
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .system {
    padding-bottom: 3.75rem;
  }
}

.system__list {
  margin-top: 12px;
  margin-top: 0.75rem;
}

.system__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  gap: 0.5rem;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.56;
}
@media screen and (max-width: 767px) {
  .system__list-item {
    font-size: 0.875rem;
  }
}
.system__list-item + .system__list-item {
  margin-top: 2px;
  margin-top: 0.125rem;
}
.system__list-item span {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 700;
  color: #044793;
}

.system__text {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #044793;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .system__text {
    font-size: 0.875rem;
  }
}

.system__cards {
  margin-top: 55px;
  margin-top: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .system__cards {
    margin-top: 1.875rem;
  }
}

/* coin */
.coin {
  overflow: hidden;
}

/* facility */
.facility {
  padding-bottom: 120px;
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .facility {
    padding-bottom: 3.75rem;
  }
}

.facility__text {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  color: #044793;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .facility__text {
    font-size: 1.125rem;
    margin-top: 1.875rem;
  }
}

.facility__imgs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 50px;
  gap: 2.5rem 3.125rem;
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .facility__imgs {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
    margin-top: 1.25rem;
  }
}

.facility__img img {
  border-radius: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .facility__img img {
    border-radius: 0.5625rem;
  }
}

/* fee */
.fee {
  padding-bottom: 120px;
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .fee {
    padding-bottom: 3.75rem;
  }
}
.fee .title, .fee .subtitle {
  text-align: center;
}
.fee .title::after {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.fee .l-inner {
  max-width: 890px;
  max-width: 55.625rem;
}

.fee__text {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .fee__text {
    font-size: 0.875rem;
    text-align: left;
    margin-top: 1.25rem;
  }
}

.fee__table {
  margin: 55px auto 0;
  margin: 3.4375rem auto 0;
}
@media screen and (max-width: 767px) {
  .fee__table {
    margin-top: 1.5625rem;
  }
}
.fee__table th {
  text-align: center;
  width: 24%;
  padding: 26px 10px;
  padding: 1.625rem 0.625rem;
}
@media screen and (max-width: 767px) {
  .fee__table th {
    width: 50%;
    padding: 0.9375rem 0.625rem;
  }
}

.fee__caution {
  text-align: right;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .fee__caution {
    text-align: left;
    font-size: 0.875rem;
    margin-top: 0.625rem;
  }
}

/* merit */
.merit {
  padding: 90px 0 120px;
  padding: 5.625rem 0 7.5rem;
}
@media screen and (max-width: 767px) {
  .merit {
    padding: 3.75rem 0 5rem;
  }
}

.merit__cards {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .merit__cards {
    margin-top: 1.875rem;
  }
}

/* notice */
.notice {
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .notice {
    padding-bottom: 1.25rem;
  }
}
.notice .title {
  text-align: center;
  color: #fff;
}
.notice .title::after {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-color: #fff;
}

.notice__units {
  margin-top: 75px;
  margin-top: 4.6875rem;
}
@media screen and (max-width: 767px) {
  .notice__units {
    margin-top: 1.875rem;
  }
}

.notice__unit {
  background: #fff;
  border-radius: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .notice__unit {
    border-radius: 0.5625rem;
  }
}
.notice__unit + .notice__unit {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .notice__unit + .notice__unit {
    margin-top: 1.25rem;
  }
}
.notice__unit:nth-child(3) .notice__unit-footer {
  padding-left: 0;
  padding-right: 0;
}

.notice__unit-header {
  padding: 30px 40px;
  padding: 1.875rem 2.5rem;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 767px) {
  .notice__unit-header {
    padding: 1.5625rem 2.5rem 1.5625rem 1.25rem;
  }
}
.notice__unit-header::after {
  position: absolute;
  content: "";
  width: 16px;
  width: 1rem;
  height: 14px;
  height: 0.875rem;
  top: 40px;
  top: 2.5rem;
  right: 40px;
  right: 2.5rem;
  background: url(../img/common/accordion-icon.png) no-repeat center/contain;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (max-width: 767px) {
  .notice__unit-header::after {
    width: 0.875rem;
    height: 0.75rem;
    right: 1.25rem;
    top: 2rem;
  }
}
.notice__unit-header.active::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.notice__unit-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  color: #044793;
}
@media screen and (max-width: 767px) {
  .notice__unit-title {
    font-size: 1.125rem;
  }
}

.notice__unit-footer {
  display: none;
  border-top: 2px dotted #044793;
  border-top: 0.125rem dotted #044793;
  margin: 0 40px;
  margin: 0 2.5rem;
  padding: 40px 10px;
  padding: 2.5rem 0.625rem;
}
@media screen and (max-width: 767px) {
  .notice__unit-footer {
    padding: 1.25rem 0;
    margin: 0 1.25rem;
  }
}

.notice__unit-body {
  background: #ECF5FD;
  border-radius: 0.5625rem;
  padding: 35px 40px;
  padding: 2.1875rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .notice__unit-body {
    padding: 1.5625rem 1.25rem;
  }
}

.notice__unit-list-item + .notice__unit-list-item {
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .notice__unit-list-item + .notice__unit-list-item {
    margin-top: 1.25rem;
  }
}

.notice__unit-list-title {
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: 0.07em;
  font-weight: 600;
  color: #044793;
}
@media screen and (max-width: 767px) {
  .notice__unit-list-title {
    font-size: 1.125rem;
  }
}

.notice__unit-list-text {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  line-height: 2.1;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .notice__unit-list-text {
    font-size: 0.875rem;
    line-height: 1.8;
  }
}

.notice__unit-text {
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.07em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .notice__unit-text {
    font-size: 0.875rem;
  }
}

.notice__unit-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 28px;
  gap: 2rem 1.75rem;
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .notice__unit-items {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
    margin-top: 1.25rem;
  }
}

.notice__unit-item {
  background: #fff;
  border-radius: 0.5625rem;
  padding: 30px 15px 25px;
  padding: 1.875rem 0.9375rem 1.5625rem;
}
@media screen and (max-width: 767px) {
  .notice__unit-item {
    padding: 1.25rem 0.625rem;
  }
}
.notice__unit-item:nth-child(2) .notice__unit-item-icon {
  width: 126px;
  width: 7.875rem;
}

.notice__unit-item-icon {
  width: 144px;
  width: 9rem;
  max-width: 100%;
  margin: 0 auto;
}

.notice__unit-item-text {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #044793;
  letter-spacing: 0.07em;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .notice__unit-item-text {
    font-size: 1rem;
    margin-top: 0.9375rem;
  }
}
.notice__unit-item-text span {
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .notice__unit-item-text span {
    font-size: 0.9375rem;
  }
}

.notice__unit-table-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .notice__unit-table-wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.9375rem;
  }
}

.notice__unit-table {
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 0.75rem;
  border: 1px solid #E3E3E3;
  border: 0.0625rem solid #E3E3E3;
  table-layout: fixed;
  width: 100%;
}
.notice__unit-table tr:first-child th {
  background: #044793;
  color: #fff;
}
.notice__unit-table tr:first-child .flex__item:nth-child(2)::before {
  height: 21px;
  height: 1.3125rem;
}
.notice__unit-table tr > :first-child {
  width: 47%;
}
.notice__unit-table th, .notice__unit-table td {
  border: 1px solid #E3E3E3;
  border: 0.0625rem solid #E3E3E3;
  line-height: 1.63;
  padding: 11px 0;
  padding: 0.6875rem 0;
}
@media screen and (max-width: 767px) {
  .notice__unit-table th, .notice__unit-table td {
    font-size: 0.875rem;
  }
}
.notice__unit-table th {
  background: #ECF5FD;
  color: #044793;
  font-weight: 600;
}
.notice__unit-table td {
  height: 100px;
  height: 6.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .notice__unit-table td {
    height: 5rem;
  }
}
.notice__unit-table td p {
  bottom: 10px;
  bottom: 0.625rem;
}
.notice__unit-table .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.notice__unit-table .flex__item {
  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;
  width: 50%;
  position: relative;
}
.notice__unit-table .flex__item:nth-child(2) {
  position: relative;
}
.notice__unit-table .flex__item:nth-child(2)::before {
  position: absolute;
  content: "";
  width: 1px;
  width: 0.0625rem;
  height: 34px;
  height: 2.125rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  background: #E3E3E3;
}
.notice__unit-table .flex__item p {
  bottom: -20px;
  bottom: -1.25rem;
}
.notice__unit-table p {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  text-align: center;
  font-family: "Lato", sans-serif;
  font-size: 10px;
  font-size: 0.625rem;
  color: #044793;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .notice__unit-table p {
    font-size: 0.5625rem;
  }
}
.notice__unit-table span {
  display: block;
  width: 33px;
  width: 2.0625rem;
  max-width: 100%;
  margin: 0 auto;
}
.notice__unit-table span.w-27 {
  width: 27px;
  width: 1.6875rem;
}

/* shop */
.shop {
  margin-bottom: 0;
}
.shop::after {
  display: none;
}

.shop__units {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .shop__units {
    margin-top: 1.875rem;
  }
}

.shop__unit {
  background: #fff;
  border-radius: 0.5625rem;
  padding: 25px 27px 22px;
  padding: 1.5625rem 1.6875rem 1.375rem;
}
@media screen and (max-width: 767px) {
  .shop__unit {
    padding: 1.5625rem 1.25rem;
  }
}

.shop__unit-title {
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: 600;
  color: #044793;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  .shop__unit-title {
    font-size: 1.125rem;
  }
}

.shop__unit-list {
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.shop__unit-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .shop__unit-list-item {
    font-size: 0.875rem;
  }
}
.shop__unit-list-item + .shop__unit-list-item {
  margin-top: 6px;
  margin-top: 0.375rem;
}

.shop__unit-list-title {
  white-space: nowrap;
  font-weight: 600;
}

.shop__unit-text {
  font-size: 18px;
  font-size: 1.125rem;
  border-radius: 0.5625rem;
  border: 2px dotted #044793;
  border: 0.125rem dotted #044793;
  margin-top: 20px;
  margin-top: 1.25rem;
  padding: 15px 20px;
  padding: 0.9375rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .shop__unit-text {
    font-size: 0.875rem;
    padding: 0.9375rem;
    margin-top: 0.9375rem;
  }
}
.shop__unit-text span {
  color: #044793;
  font-weight: 600;
}

.shop__unit-subtext {
  font-size: 18px;
  font-size: 1.125rem;
  background: #ECF5FD;
  border-radius: 0.5625rem;
  margin-top: 20px;
  margin-top: 1.25rem;
  padding: 15px 20px;
  padding: 0.9375rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .shop__unit-subtext {
    font-size: 0.875rem;
    margin-top: 0.625rem;
    padding: 0.9375rem;
  }
}
.shop__unit-subtext span {
  display: inline-block;
  color: #044793;
  font-weight: 600;
  margin-bottom: 4px;
  margin-bottom: 0.25rem;
}

/* support */
.support {
  padding-bottom: 120px;
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .support {
    padding-bottom: 3.75rem;
  }
}

.support__items {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .support__items {
    margin-top: 1.875rem;
  }
}

.support__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #fff;
  border-radius: 0.9375rem;
  padding: 20px;
  padding: 1.25rem;
}
@media screen and (max-width: 767px) {
  .support__item {
    display: block;
  }
}
.support__item + .support__item {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .support__item + .support__item {
    margin-top: 1.25rem;
  }
}

.support__item-body {
  width: 76%;
  padding: 10px;
  padding: 0.625rem;
}
@media screen and (max-width: 767px) {
  .support__item-body {
    width: 100%;
    padding: 0;
  }
}

.support__item-number {
  text-align: center;
  display: inline-block;
  width: 166px;
  width: 10.375rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  background: #044793;
  letter-spacing: 0.07em;
  border-radius: 1.875rem;
  padding: 9px;
  padding: 0.5625rem;
}
@media screen and (max-width: 767px) {
  .support__item-number {
    font-size: 1rem;
    width: 8.75rem;
    padding: 0.375rem;
  }
}

.support__item-title {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 600;
  color: #044793;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .support__item-title {
    font-size: 1.125rem;
  }
}

.support__item-text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.56;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .support__item-text {
    font-size: 0.875rem;
  }
}

.support__item-img {
  width: 22%;
}
@media screen and (max-width: 767px) {
  .support__item-img {
    width: 100%;
    margin-top: 0.9375rem;
  }
}
.support__item-img img {
  border-radius: 0.5625rem;
}

/* company */
.company {
  overflow: hidden;
}

.company__img-wrapper {
  padding: 100px 0;
  padding: 6.25rem 0;
}
@media screen and (max-width: 767px) {
  .company__img-wrapper {
    padding: 2.5rem 0;
  }
}

.company__img img {
  border-radius: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .company__img img {
    border-radius: 0.5rem;
  }
}

/* data */
.data {
  padding: 120px 0;
  padding: 7.5rem 0;
}
@media screen and (max-width: 767px) {
  .data {
    padding: 3.75rem 0;
  }
}

.data__units {
  margin-top: 55px;
  margin-top: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .data__units {
    margin-top: 2.5rem;
  }
}

.data__unit + .data__unit {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .data__unit + .data__unit {
    margin-top: 2.5rem;
  }
}

.data__list {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.data__box {
  border: 1px solid #ADD2FC;
  border: 0.0625rem solid #ADD2FC;
  border-radius: 0.625rem;
  margin-top: 40px;
  margin-top: 2.5rem;
  padding: 35px 40px;
  padding: 2.1875rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .data__box {
    margin-top: 1.875rem;
    padding: 1.5625rem 1.25rem;
  }
}

.data__text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.78;
}
@media screen and (max-width: 767px) {
  .data__text {
    font-size: 0.875rem;
  }
}

.data__item {
  border-top: 1px solid #ADD2FC;
  border-top: 0.0625rem solid #ADD2FC;
  margin-top: 35px;
  margin-top: 2.1875rem;
  padding-top: 35px;
  padding-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .data__item {
    margin-top: 1.5625rem;
    padding-top: 1.5625rem;
  }
}

.data__item-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  color: #044793;
}
@media screen and (max-width: 767px) {
  .data__item-title {
    font-size: 1.125rem;
  }
}

.data__item-text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.78;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .data__item-text {
    font-size: 0.875rem;
    margin-top: 0.625rem;
  }
}

.data__item-link {
  display: inline-block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #044793;
  text-decoration: underline;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .data__item-link {
    font-size: 0.875rem;
    margin-top: 0.9375rem;
  }
}

/* history */
.history__content {
  background: #fff;
  border-radius: 0.625rem;
  margin-top: 55px;
  margin-top: 3.4375rem;
  padding: 60px 60px;
  padding: 3.75rem 3.75rem;
}
@media screen and (max-width: 767px) {
  .history__content {
    margin-top: 1.875rem;
    padding: 1.875rem 1.25rem;
  }
}

.history__items {
  position: relative;
  z-index: 1;
}
.history__items::before {
  position: absolute;
  content: "";
  width: 1px;
  width: 0.0625rem;
  border-left: 5px dotted #044793;
  border-left: 0.3125rem dotted #044793;
  left: 100px;
  left: 6.25rem;
  top: 0;
  bottom: 50px;
  bottom: 3.125rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .history__items::before {
    left: 1.25rem;
    bottom: 6.25rem;
    border-left: 0.1875rem dotted #044793;
  }
}

.history__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 54px;
  gap: 3.375rem;
}
@media screen and (max-width: 767px) {
  .history__item {
    display: block;
  }
}
.history__item + .history__item {
  margin-top: 20px;
  margin-top: 1.25rem;
}
.history__item:not(:last-child) .history__item-body {
  border-bottom: 1px solid #ADD2FC;
  border-bottom: 0.0625rem solid #ADD2FC;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}

.history__item-date {
  text-align: center;
  min-width: 212px;
  min-width: 13.25rem;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  background: #044793;
  border-radius: 0.875rem;
  padding: 5px;
  padding: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .history__item-date {
    font-size: 1rem;
    padding: 0.625rem;
    border-radius: 0.625rem;
  }
}

.history__item-body {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .history__item-body {
    width: auto;
    margin-top: 1.25rem;
    margin-left: 2.5rem;
  }
}

.history__item-title {
  font-size: 24px;
  font-size: 1.5rem;
  color: #044793;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .history__item-title {
    font-size: 1.125rem;
  }
}

.history__item-text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.78;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .history__item-text {
    font-size: 0.875rem;
  }
}

/* message */
.message__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .message__inner {
    display: block;
    margin-top: 1.25rem;
  }
}

.message__body {
  width: 50%;
  margin-top: -5px;
  margin-top: -0.3125rem;
}
@media screen and (max-width: 767px) {
  .message__body {
    width: 100%;
    margin-top: 0;
  }
}

.message__subtitle {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  color: #044793;
}
@media screen and (max-width: 767px) {
  .message__subtitle {
    font-size: 1.125rem;
  }
}

.message__text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .message__text {
    font-size: 0.875rem;
    line-height: 1.86;
  }
}

.message__name {
  text-align: right;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2;
  font-weight: 600;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .message__name {
    font-size: 0.875rem;
    line-height: 1.6;
  }
}

.message__img-wrapper {
  width: 46.5%;
}
@media screen and (max-width: 767px) {
  .message__img-wrapper {
    width: 100%;
    margin-top: 1.875rem;
  }
}

.message__img img {
  border-radius: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .message__img img {
    border-radius: 0.625rem;
  }
}

.message__caption {
  text-align: right;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .message__caption {
    font-size: 0.875rem;
    margin-top: 0.625rem;
  }
}

/* contact */
.contact {
  overflow: hidden;
  padding-bottom: 120px;
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .contact {
    padding-bottom: 5rem;
  }
}

.contact__form {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .contact__form {
    margin-top: 2.5rem;
  }
}

/* faq */
.faq {
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .faq {
    padding-bottom: 5rem;
  }
}
.faq::before {
  position: absolute;
  content: "";
  width: 100%;
  left: 0;
  top: -200px;
  top: -12.5rem;
  bottom: -200px;
  bottom: -12.5rem;
  background: url(../img/faq/faq-bg02.png) repeat center/contain;
  z-index: -1;
}

.faq__unit + .faq__unit {
  margin-top: 70px;
  margin-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .faq__unit + .faq__unit {
    margin-top: 3.75rem;
  }
}
.faq__unit:first-child .faq__links {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.faq__subtitle {
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 700;
  color: #044793;
}
@media screen and (max-width: 767px) {
  .faq__subtitle {
    font-size: 1.25rem;
  }
}

.faq__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  gap: 1.25rem;
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .faq__links {
    display: block;
    margin-top: 1.5625rem;
  }
}

.faq__link {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(33.333% - 0.83333rem);
          flex: 0 1 calc(33.333% - 0.83333rem);
}
@media screen and (max-width: 767px) {
  .faq__link {
    width: 20rem;
    max-width: 100%;
    margin: 0 auto;
  }
  .faq__link + .faq__link {
    margin-top: 0.625rem;
  }
}
.faq__link:nth-child(2) {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .faq__link:nth-child(2) {
    margin-top: 0.625rem;
  }
}
.faq__link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  gap: 0.75rem;
  min-height: 128px;
  min-height: 8rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  line-height: 1.6;
  background: url(../img/faq/faq-bg01.png) no-repeat center/contain;
  padding: 20px 45px 20px 25px;
  padding: 1.25rem 2.8125rem 1.25rem 1.5625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .faq__link a {
    font-size: 1rem;
    min-height: 6.875rem;
    padding: 0.625rem 2.5rem 0.625rem 1.25rem;
  }
}
.faq__link a::after {
  position: absolute;
  content: "";
  width: 14px;
  width: 0.875rem;
  height: 9px;
  height: 0.5625rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 24px;
  right: 1.5rem;
  background: url(../img/faq/faq-arrow01.png) no-repeat center/contain;
}
.faq__link span {
  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;
  width: 34px;
  width: 2.125rem;
  min-width: 34px;
  min-width: 2.125rem;
  height: 34px;
  height: 2.125rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50%;
  background: #044793;
  color: #fff;
}

.faq__link--wide a {
  padding: 35px 45px 45px 25px;
  padding: 2.1875rem 2.8125rem 2.8125rem 1.5625rem;
  background: url(../img/faq/faq-bg03.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .faq__link--wide a {
    padding: 1.5625rem 2.5rem 2.5rem 1.25rem;
  }
}

.faq__content {
  background: #fff;
  border-top: 1px solid #ADD2FC;
  border-top: 0.0625rem solid #ADD2FC;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .faq__content {
    margin-top: 3.125rem;
  }
}

.faq__item + .faq__item {
  border-top: 1px solid #ADD2FC;
  border-top: 0.0625rem solid #ADD2FC;
}
.faq__item:last-child .faq__item-body {
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .faq__item:last-child .faq__item-body {
    padding-bottom: 1.25rem;
  }
}

.faq__item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  gap: 1.875rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  padding: 20px 40px;
  padding: 1.25rem 2.5rem;
  pointer-events: none;
  position: relative;
}
@media screen and (max-width: 767px) {
  .faq__item-title {
    gap: 0.9375rem;
    font-size: 1rem;
    padding: 1.25rem 2.5rem 1.25rem 1.25rem;
  }
}
.faq__item-title span {
  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;
  width: 42px;
  width: 2.625rem;
  min-width: 42px;
  min-width: 2.625rem;
  height: 42px;
  height: 2.625rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  border-radius: 50%;
  background: #044793;
}
@media screen and (max-width: 767px) {
  .faq__item-title span {
    width: 2.125rem;
    min-width: 2.125rem;
    height: 2.125rem;
    font-size: 1.125rem;
  }
}

.faq__item-content {
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .faq__item-content {
    margin-top: 0.9375rem;
  }
}

.faq__item-body {
  padding: 0 50px 20px 70px;
  padding: 0 3.125rem 1.25rem 4.375rem;
}
@media screen and (max-width: 767px) {
  .faq__item-body {
    padding: 0 1.25rem 1.25rem;
  }
}

.faq__item-text {
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.07em;
  line-height: 1.9;
  font-weight: 500;
  background: #ECF5FD;
  border-radius: 0.5625rem;
  padding: 35px 40px;
  padding: 2.1875rem 2.5rem;
  margin-right: 20px;
  margin-right: 1.25rem;
}
@media screen and (max-width: 767px) {
  .faq__item-text {
    font-size: 1rem;
    line-height: 1.8;
    padding: 1.5625rem 1.25rem;
    margin-right: 0;
  }
}
.faq__item-text span {
  color: #044793;
}

.faq__item-btn {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .faq__item-btn {
    margin-top: 1.25rem;
  }
}
.faq__item-btn.w-260 {
  width: 260px;
  width: 16.25rem;
}
@media screen and (max-width: 767px) {
  .faq__item-btn.w-260 {
    width: 10rem;
  }
}

.faq__item-link-wrapper {
  text-align: right;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.faq__item-link {
  font-size: 20px;
  font-size: 1.25rem;
  color: #044793;
  font-weight: 600;
  letter-spacing: 0.07em;
  background: url(../img/faq/faq-arrow02.png) no-repeat center right/16px;
  background: url(../img/faq/faq-arrow02.png) no-repeat center right/1rem;
  padding-right: 23px;
  padding-right: 1.4375rem;
  border-bottom: 1px solid #044793;
  border-bottom: 0.0625rem solid #044793;
}
@media screen and (max-width: 767px) {
  .faq__item-link {
    font-size: 1rem;
  }
}

/* housedo */
.housedo {
  overflow: hidden;
}

/* official */
.official {
  padding: 30px 0;
  padding: 1.875rem 0;
  margin: 240px 0 120px;
  margin: 15rem 0 7.5rem;
}
@media screen and (max-width: 767px) {
  .official {
    padding: 1.25rem 0;
    margin: 7.5rem 0 3.125rem;
  }
}

.official__inner {
  position: relative;
}

.official__title {
  color: #fff;
}
.official__title::after {
  background: #fff;
}

.official__text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2;
  font-weight: 600;
  color: #fff;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .official__text {
    font-size: 0.875rem;
    line-height: 1.86;
  }
}

.official__btn {
  width: 306px;
  width: 19.125rem;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .official__btn {
    margin: 1.875rem auto 0;
  }
}

.official__img {
  position: absolute;
  top: 60%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -60px;
  right: -3.75rem;
  width: 500px;
  width: 31.25rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .official__img {
    position: static;
    -webkit-transform: unset;
            transform: unset;
    margin: 1.25rem auto 0;
  }
}

/* news-archive */
.news-archive {
  overflow: hidden;
  padding: 40px 0 120px;
  padding: 2.5rem 0 7.5rem;
}
@media screen and (max-width: 767px) {
  .news-archive {
    padding: 0 0 5rem;
  }
}
.news-archive .l-inner {
  max-width: 1290px;
  max-width: 80.625rem;
}

.news-archive__cards .news-card:not(:first-child) {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .news-archive__cards .news-card:not(:first-child) {
    margin-top: 1.25rem;
  }
}

/* news-card */
.news-card__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #ECF5FD;
  border-radius: 0.5625rem;
  padding: 15px 30px 15px 15px;
  padding: 0.9375rem 1.875rem 0.9375rem 0.9375rem;
}
@media screen and (max-width: 767px) {
  .news-card__inner {
    display: block;
    padding: 0.9375rem 0.9375rem 1.25rem;
  }
}

.news-card__img {
  width: 42%;
}
@media screen and (max-width: 767px) {
  .news-card__img {
    width: 100%;
  }
}
.news-card__img img {
  border-radius: 0.5625rem;
}

.news-card__body {
  width: 54%;
  padding-top: 5px;
  padding-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .news-card__body {
    width: 100%;
    padding-top: 0;
    margin-top: 0.9375rem;
  }
}

.news-card__header {
  width: 310px;
  width: 19.375rem;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  gap: 1.25rem;
  border-bottom: 1px solid #044793;
  border-bottom: 0.0625rem solid #044793;
  padding-bottom: 15px;
  padding-bottom: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .news-card__header {
    width: 100%;
    gap: 0.625rem;
    padding-bottom: 0.625rem;
  }
}

.news-card__date {
  font-size: 18px;
  font-size: 1.125rem;
  color: #044793;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .news-card__date {
    font-size: 0.875rem;
  }
}

.news-card__category span {
  text-align: center;
  display: inline-block;
  min-width: 145px;
  min-width: 9.0625rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  background: #fff;
  color: #044793;
  border-radius: 1.875rem;
  padding: 3px 10px;
  padding: 0.1875rem 0.625rem;
}
@media screen and (max-width: 767px) {
  .news-card__category span {
    min-width: 7.5rem;
    font-size: 0.875rem;
  }
}

.news-card__title {
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: 600;
  color: #044793;
  letter-spacing: 0.07em;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .news-card__title {
    font-size: 1.125rem;
    margin-top: 0.625rem;
  }
}

/* news-single */
.news-single {
  overflow: hidden;
  padding: 40px 0 120px;
  padding: 2.5rem 0 7.5rem;
}
@media screen and (max-width: 767px) {
  .news-single {
    padding: 0 0 5rem;
  }
}

.news-single__category span {
  display: inline-block;
  color: #044793;
  font-weight: 600;
  border-radius: 1.875rem;
  background: #ECF5FD;
  letter-spacing: 0.07em;
  padding: 3px 37px;
  padding: 0.1875rem 2.3125rem;
}
@media screen and (max-width: 767px) {
  .news-single__category span {
    font-size: 0.875rem;
  }
}

.news-single__title {
  margin-top: 8px;
  margin-top: 0.5rem;
}

.news-single__date {
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #044793;
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (max-width: 767px) {
  .news-single__date {
    font-size: 0.875rem;
  }
}

.news-single__img {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .news-single__img {
    margin-top: 2.5rem;
  }
}

.news-single__post {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .news-single__post {
    margin-top: 1.25rem;
  }
}
.news-single__post h2, .news-single__post h3, .news-single__post h4, .news-single__post h5, .news-single__post h6 {
  margin: 0;
  font-weight: 600;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  margin-top: 60px;
  margin-top: 3.75rem;
}
.news-single__post h2, .news-single__post h3 {
  font-size: 28px;
  font-size: 1.75rem;
  color: #044793;
}
@media screen and (max-width: 767px) {
  .news-single__post h2, .news-single__post h3 {
    font-size: 1.25rem;
  }
}
.news-single__post h4 {
  font-size: 24px;
  font-size: 1.5rem;
  color: #044793;
}
@media screen and (max-width: 767px) {
  .news-single__post h4 {
    font-size: 1.125rem;
  }
}
.news-single__post h5, .news-single__post h6 {
  font-size: 22px;
  font-size: 1.375rem;
}
@media screen and (max-width: 767px) {
  .news-single__post h5, .news-single__post h6 {
    font-size: 1rem;
  }
}
.news-single__post p {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .news-single__post p {
    font-size: 0.875rem;
  }
}
.news-single__post p:not(:last-child) {
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .news-single__post p:not(:last-child) {
    margin-bottom: 2.5rem;
  }
}
.news-single__post figure:not(:last-child) {
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .news-single__post figure:not(:last-child) {
    margin-bottom: 2.5rem;
  }
}
.news-single__post ul:not(:last-child), .news-single__post ol:not(:last-child) {
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .news-single__post ul:not(:last-child), .news-single__post ol:not(:last-child) {
    margin-bottom: 2.5rem;
  }
}
.news-single__post ul li {
  background: url(../img/common/check-icon.png) no-repeat left top 5px/13px;
  background: url(../img/common/check-icon.png) no-repeat left top 0.3125rem/0.8125rem;
  padding-left: 18px;
  padding-left: 1.125rem;
}
.news-single__post ol {
  margin-left: 20px;
  margin-left: 1.25rem;
}
.news-single__post ol li {
  list-style: decimal;
}
.news-single__post ol li::marker {
  color: #044793;
  font-weight: 700;
}
.news-single__post li {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .news-single__post li {
    font-size: 0.875rem;
  }
}
.news-single__post li:not(:first-child) {
  margin-top: 15px;
  margin-top: 0.9375rem;
}
.news-single__post .wp-block-group__inner-container {
  display: inline-block;
  min-width: 485px;
  min-width: 30.3125rem;
  border-radius: 1rem;
  padding: 35px 40px;
  padding: 2.1875rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .news-single__post .wp-block-group__inner-container {
    display: block;
    min-width: unset;
    padding: 1.5625rem 1.25rem;
    border-radius: 0.625rem;
  }
}
.news-single__post .wp-block-group__inner-container:not(:last-child) {
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .news-single__post .wp-block-group__inner-container:not(:last-child) {
    margin-bottom: 2.5rem;
  }
}
.news-single__post .wp-block-group__inner-container h2, .news-single__post .wp-block-group__inner-container h3, .news-single__post .wp-block-group__inner-container h4, .news-single__post .wp-block-group__inner-container h5, .news-single__post .wp-block-group__inner-container h6 {
  margin: 0;
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
}
.news-single__post table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid #E3E3E3;
  border: 0.0625rem solid #E3E3E3;
  border-radius: 0.5rem;
}
.news-single__post table tr:first-child td {
  border-top: none;
}
.news-single__post table td {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.33;
  border-top: 1px solid #E3E3E3;
  border-top: 0.0625rem solid #E3E3E3;
  padding: 27px 30px;
  padding: 1.6875rem 1.875rem;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .news-single__post table td {
    font-size: 0.8125rem;
    padding: 0.9375rem 0.625rem;
  }
}
.news-single__post table td:first-child {
  min-width: 190px;
  min-width: 11.875rem;
  font-weight: 600;
  color: #044793;
  background: #ECF5FD;
}
@media screen and (max-width: 767px) {
  .news-single__post table td:first-child {
    min-width: 5rem;
  }
}
.news-single__post table td:not(:first-child) {
  border-left: 1px solid #E3E3E3;
  border-left: 0.0625rem solid #E3E3E3;
}

.news-single__btn {
  width: 243px;
  width: 15.1875rem;
  margin: 60px auto 0;
  margin: 3.75rem auto 0;
}
@media screen and (max-width: 767px) {
  .news-single__btn {
    width: 12.5rem;
    margin-top: 2.5rem;
  }
}

/* benefits */
.benefits {
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}
.benefits .title, .benefits .subtitle {
  color: #fff;
}
.benefits .title::after {
  background: #fff;
}

.benefits__items {
  margin-top: 55px;
  margin-top: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .benefits__items {
    margin-top: 1.5625rem;
  }
}

.benefits__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  gap: 1.25rem;
  background: #fff;
  border-radius: 0.9375rem;
  padding: 40px 80px 35px 40px;
  padding: 2.5rem 5rem 2.1875rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .benefits__item {
    gap: 0.625rem;
    border-radius: 0.5625rem;
    padding: 1.25rem 0.9375rem;
  }
}
.benefits__item + .benefits__item {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .benefits__item + .benefits__item {
    margin-top: 1.25rem;
  }
}

.benefits__item-number {
  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;
  width: 48px;
  width: 3rem;
  min-width: 48px;
  min-width: 3rem;
  height: 48px;
  height: 3rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50%;
  color: #fff;
  background: #044793;
}
@media screen and (max-width: 767px) {
  .benefits__item-number {
    width: 2.5rem;
    min-width: 2.5rem;
    height: 2.5rem;
    font-size: 1.125rem;
  }
}

.benefits__item-texts {
  width: 100%;
}

.benefits__item-title {
  font-size: 22px;
  font-size: 1.375rem;
  color: #044793;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .benefits__item-title {
    font-size: 1.125rem;
  }
}

.benefits__item-text {
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .benefits__item-text {
    font-size: 0.875rem;
    margin-top: 0.3125rem;
  }
}

.benefits__item-box {
  background: #ECF5FD;
  border-radius: 0.5625rem;
  padding: 20px;
  padding: 1.25rem;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .benefits__item-box {
    font-size: 0.875rem;
    padding: 0.9375rem;
    margin-top: 0.625rem;
  }
}

.benefits__item-box-title {
  color: #044793;
  font-weight: 600;
}

.benefits__item-box-text {
  font-weight: 500;
  margin-top: 4px;
  margin-top: 0.25rem;
}

/* price */
.price {
  overflow: hidden;
}

.price__content {
  padding: 60px 0 120px;
  padding: 3.75rem 0 7.5rem;
}
@media screen and (max-width: 767px) {
  .price__content {
    padding: 1.25rem 0 3.75rem;
  }
}

.price__unit + .price__unit {
  margin-top: 120px;
  margin-top: 7.5rem;
}
@media screen and (max-width: 767px) {
  .price__unit + .price__unit {
    margin-top: 3.75rem;
  }
}
.price__unit:nth-child(3) .l-inner {
  max-width: 1210px;
  max-width: 75.625rem;
}
.price__unit .title, .price__unit .subtitle {
  text-align: center;
}
.price__unit .title::after {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.price__unit .l-inner {
  max-width: 890px;
  max-width: 55.625rem;
}

.price__table {
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .price__table {
    margin-top: 1.5625rem;
  }
}

.price__table--clothing {
  table-layout: fixed;
}
.price__table--clothing tr:nth-child(2) th {
  padding: 10px;
  padding: 0.625rem;
}
.price__table--clothing tr:nth-child(2) th:not(:first-child) {
  border-right: 1px solid #E3E3E3;
  border-right: 0.0625rem solid #E3E3E3;
}
.price__table--clothing th {
  text-align: center;
  padding: 10px 5px;
  padding: 0.625rem 0.3125rem;
}
@media screen and (max-width: 767px) {
  .price__table--clothing th {
    line-height: 1.3;
  }
  .price__table--clothing th span {
    font-size: 0.75rem;
  }
}
.price__table--clothing td {
  text-align: center;
  padding: 20px 0;
  padding: 1.25rem 0;
}
@media screen and (max-width: 767px) {
  .price__table--clothing td {
    font-size: 0.625rem;
    padding: 0.625rem 0.3125rem;
  }
  .price__table--clothing td span {
    font-size: 1rem;
  }
}

.price__caution {
  text-align: right;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .price__caution {
    text-align: left;
    font-size: 0.875rem;
    margin-top: 0.625rem;
  }
}

.price__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 25px;
  gap: 1.875rem 1.5625rem;
  margin-top: 55px;
  margin-top: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .price__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9375rem;
    margin-top: 1.5625rem;
  }
}

.price__item {
  text-align: center;
  background: #ECF5FD;
  border-radius: 0.5625rem;
  padding: 30px 20px 35px;
  padding: 1.875rem 1.25rem 2.1875rem;
}
@media screen and (max-width: 767px) {
  .price__item {
    padding: 0.9375rem 0.625rem 1.25rem;
  }
}

.price__item-icon {
  width: 144px;
  width: 9rem;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .price__item-icon {
    width: 6.25rem;
  }
}

.price__item-title {
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: 600;
  color: #044793;
  letter-spacing: 0.07em;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .price__item-title {
    font-size: 1rem;
  }
}

.price__item-number {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.3;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .price__item-number {
    font-size: 0.875rem;
    margin-top: 0.625rem;
  }
}
.price__item-number span {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 32px;
  font-size: 2rem;
  color: #044793;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .price__item-number span {
    font-size: 1.5rem;
  }
}

.price__footer {
  padding: 100px 0 120px;
  padding: 6.25rem 0 7.5rem;
}
@media screen and (max-width: 767px) {
  .price__footer {
    padding: 3.75rem 0;
  }
}

/* job */
.job {
  margin: 100px 0;
  margin: 6.25rem 0;
}
@media screen and (max-width: 767px) {
  .job {
    margin: 3.75rem 0;
  }
}
.job::before {
  top: -100px;
  top: -6.25rem;
}
@media screen and (max-width: 767px) {
  .job::before {
    top: -3.125rem;
  }
}
.job::after {
  bottom: -50px;
  bottom: -3.125rem;
}
@media screen and (max-width: 767px) {
  .job::after {
    bottom: -1.875rem;
  }
}

.job__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .job__inner {
    display: block;
  }
}

.job__body {
  width: 50%;
  text-align: center;
  color: #fff;
  padding-top: 50px;
  padding-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .job__body {
    width: 100%;
    padding-top: 0;
  }
}
.job__body .title::after {
  border-color: #fff;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.job__number {
  font-size: 35px;
  font-size: 2.1875rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .job__number {
    font-size: 1.5rem;
  }
}
.job__number span {
  font-size: 75px;
  font-size: 4.6875rem;
}
@media screen and (max-width: 767px) {
  .job__number span {
    font-size: 3.5rem;
  }
}

.job__text {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .job__text {
    font-size: 1rem;
  }
}

.job__img {
  width: 43%;
}
@media screen and (max-width: 767px) {
  .job__img {
    width: 100%;
    margin-top: 1.875rem;
  }
}

/* occupation */
.occupation {
  padding: 60px 0 120px;
  padding: 3.75rem 0 7.5rem;
}
@media screen and (max-width: 767px) {
  .occupation {
    padding: 2.5rem 0 3.75rem;
  }
}

.occupation__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 45px 30px;
  gap: 2.8125rem 1.875rem;
  margin-top: 55px;
  margin-top: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .occupation__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
    margin-top: 1.875rem;
  }
}

.occupation__item {
  background: #ECF5FD;
  border-radius: 0.625rem;
  padding: 35px 40px 20px 25px;
  padding: 2.1875rem 2.5rem 1.25rem 1.5625rem;
}
@media screen and (max-width: 767px) {
  .occupation__item {
    padding: 1.875rem 1.25rem;
  }
}

.occupation__item-title {
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: 600;
  color: #044793;
  letter-spacing: 0.07em;
  margin-left: 10px;
  margin-left: 0.625rem;
}
@media screen and (max-width: 767px) {
  .occupation__item-title {
    font-size: 1.125rem;
    margin-left: 0;
  }
}

.occupation__item-text {
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .occupation__item-text {
    font-size: 0.875rem;
  }
}

.occupation__item-link {
  text-align: center;
  display: block;
  width: 230px;
  width: 14.375rem;
  max-width: 100%;
  font-size: 18px;
  font-size: 1.125rem;
  color: #044793;
  background: #fff;
  font-weight: 600;
  border: 1px solid #044793;
  border: 0.0625rem solid #044793;
  border-radius: 1.75rem;
  margin-left: auto;
  margin-top: 30px;
  margin-top: 1.875rem;
  padding: 14px 0;
  padding: 0.875rem 0;
}
@media screen and (max-width: 767px) {
  .occupation__item-link {
    font-size: 1rem;
    margin: 1.25rem auto 0;
  }
}

/* promise */
.promise {
  text-align: center;
  padding: 145px 0 90px;
  padding: 9.0625rem 0 5.625rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .promise {
    background-size: contain;
    padding: 3.75rem 0 5rem;
  }
}
.promise::before, .promise::after {
  position: absolute;
  content: "";
  width: 100%;
  left: 0;
  z-index: -1;
}
.promise::before {
  height: 200px;
  height: 12.5rem;
  top: 0;
  background: url(../img/common/cv-bg.png) no-repeat center top/cover;
}
@media screen and (max-width: 767px) {
  .promise::before {
    background-size: contain;
  }
}
.promise::after {
  bottom: -200px;
  bottom: -12.5rem;
  top: 200px;
  top: 12.5rem;
  background: #ECF5FD;
}
@media screen and (max-width: 767px) {
  .promise::after {
    bottom: -6.25rem;
    top: 3.125rem;
  }
}

.promise__title {
  font-size: 38px;
  font-size: 2.375rem;
  font-weight: 600;
  color: #044793;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  .promise__title {
    font-size: 1.75rem;
  }
}

.promise__subtitle {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #044793;
  line-height: 2.3;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .promise__subtitle {
    text-align: left;
    font-size: 0.875rem;
    line-height: 2;
  }
}

.promise__units {
  width: 770px;
  width: 48.125rem;
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
  gap: 2.1875rem;
  margin: 50px auto 0;
  margin: 3.125rem auto 0;
}
@media screen and (max-width: 767px) {
  .promise__units {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
    margin-top: 1.5625rem;
  }
}

.promise__unit {
  background: #fff;
  border-radius: 0.5625rem;
  padding: 40px 30px 35px;
  padding: 2.5rem 1.875rem 2.1875rem;
}
@media screen and (max-width: 767px) {
  .promise__unit {
    padding: 1.875rem 1.25rem;
  }
}

.promise__unit-icon {
  width: 117px;
  width: 7.3125rem;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .promise__unit-icon {
    width: 6.25rem;
  }
}

.promise__unit-title {
  text-align: center;
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: 600;
  color: #044793;
  letter-spacing: 0.07em;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .promise__unit-title {
    font-size: 1.125rem;
  }
}

.promise__unit-text {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.56;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .promise__unit-text {
    font-size: 0.875rem;
  }
}

.promise__unit-tel {
  display: block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  background: #ECF5FD;
  color: #044793;
  border-radius: 0.5625rem;
  margin-top: 15px;
  margin-top: 0.9375rem;
  padding: 18px 10px;
  padding: 1.125rem 0.625rem;
}
@media screen and (max-width: 767px) {
  .promise__unit-tel {
    font-size: 1.125rem;
    padding: 0.9375rem 0.625rem;
  }
}

.promise__unit-btn {
  text-align: center;
  display: block;
  width: 275px;
  width: 17.1875rem;
  max-width: 100%;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #044793;
  border-radius: 1.75rem;
  border: 1px solid #044793;
  border: 0.0625rem solid #044793;
  padding: 13px 10px;
  padding: 0.8125rem 0.625rem;
  margin: 15px auto 0;
  margin: 0.9375rem auto 0;
}
@media screen and (max-width: 767px) {
  .promise__unit-btn {
    font-size: 1rem;
  }
}

.promise__text {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #044793;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .promise__text {
    text-align: left;
    font-size: 0.875rem;
    margin-top: 1.875rem;
  }
}

/* recruit */
.recruit {
  overflow: hidden;
}

/* voice */
.voice__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  gap: 1.875rem;
  margin-top: 55px;
  margin-top: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .voice__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
    margin-top: 1.875rem;
  }
}

.voice__item {
  background: #fff;
  border-radius: 0.5rem;
  padding: 30px 30px;
  padding: 1.875rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .voice__item {
    padding: 1.5625rem 1.25rem;
  }
}

.voice__item-name {
  font-weight: 600;
  color: #044793;
  letter-spacing: 0.07em;
}
.voice__item-name span {
  font-size: 21px;
  font-size: 1.3125rem;
}

.voice__item-text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.67;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .voice__item-text {
    font-size: 0.875rem;
  }
}

/* welfare */
.welfare {
  padding: 100px 0 120px;
  padding: 6.25rem 0 7.5rem;
}
@media screen and (max-width: 767px) {
  .welfare {
    padding: 3.75rem 0;
  }
}

.welfare__units {
  width: 870px;
  width: 54.375rem;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px 25px;
  gap: 2.5rem 1.5625rem;
  margin: 55px auto 0;
  margin: 3.4375rem auto 0;
}
@media screen and (max-width: 767px) {
  .welfare__units {
    display: block;
    margin-top: 1.875rem;
  }
}

.welfare__unit {
  background: #ECF5FD;
  border-radius: 0.5625rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(33.333% - 1.04167rem);
          flex: 0 1 calc(33.333% - 1.04167rem);
  padding: 30px 27px 25px;
  padding: 1.875rem 1.6875rem 1.5625rem;
}
@media screen and (max-width: 767px) {
  .welfare__unit + .welfare__unit {
    margin-top: 1.25rem;
    padding: 1.875rem 1.5625rem;
  }
}
.welfare__unit:first-child {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
  padding: 35px 50px;
  padding: 2.1875rem 3.125rem;
}
@media screen and (max-width: 767px) {
  .welfare__unit:first-child {
    padding: 1.875rem 1.5625rem;
  }
}

.welfare__unit-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 55px;
  gap: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .welfare__unit-inner {
    display: block;
  }
}
.welfare__unit-inner .welfare__unit-icon {
  width: 160px;
  width: 10rem;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .welfare__unit-inner .welfare__unit-icon {
    width: 8.75rem;
    margin: 0 auto;
  }
}
.welfare__unit-inner .welfare__unit-title {
  text-align: left;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .welfare__unit-inner .welfare__unit-title {
    text-align: center;
    margin-top: 0.9375rem;
  }
}

.welfare__unit-icon {
  width: 144px;
  width: 9rem;
  max-width: 100%;
  margin: 0 auto;
}

.welfare__unit-title {
  text-align: center;
  font-size: 21px;
  font-size: 1.3125rem;
  color: #044793;
  font-weight: 600;
  letter-spacing: 0.07em;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .welfare__unit-title {
    font-size: 1.125rem;
    margin-top: 0.9375rem;
  }
}

.welfare__unit-list {
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.welfare__unit-list-item {
  font-size: 18px;
  font-size: 1.125rem;
  background: url(../img/common/check-icon.png) no-repeat left top 5px/14px;
  background: url(../img/common/check-icon.png) no-repeat left top 0.3125rem/0.875rem;
  padding-left: 23px;
  padding-left: 1.4375rem;
}
@media screen and (max-width: 767px) {
  .welfare__unit-list-item {
    font-size: 0.875rem;
    background: url(../img/common/check-icon.png) no-repeat left top 0.3125rem/0.6875rem;
    padding-left: 0.9375rem;
  }
}
.welfare__unit-list-item + .welfare__unit-list-item {
  margin-top: 6px;
  margin-top: 0.375rem;
}

/* work */
.work {
  padding: 20px 0 110px;
  padding: 1.25rem 0 6.875rem;
}
@media screen and (max-width: 767px) {
  .work {
    padding: 0 0 5rem;
  }
}

.work__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 35px;
  gap: 1.875rem 2.1875rem;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .work__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
    margin-top: 1.875rem;
  }
}

.work__item {
  background: #fff;
  border-radius: 0.5625rem;
  padding: 40px 28px 35px;
  padding: 2.5rem 1.75rem 2.1875rem;
}
@media screen and (max-width: 767px) {
  .work__item {
    padding: 1.875rem 1.25rem;
  }
}

.work__item-icon {
  width: 117px;
  width: 7.3125rem;
  max-width: 100%;
  margin: 0 auto;
}

.work__item-text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.56;
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .work__item-text {
    font-size: 0.875rem;
    margin-top: 1.25rem;
  }
}

/* area */
.area {
  padding-bottom: 120px;
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .area {
    padding-bottom: 3.75rem;
  }
}

.area__subtitle {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  color: #044793;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .area__subtitle {
    font-size: 1.125rem;
    margin-top: 1.875rem;
  }
}

.area__text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .area__text {
    font-size: 0.875rem;
    line-height: 1.86;
  }
}

.area__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .area__inner {
    display: block;
    margin-top: 1.5625rem;
  }
}

.area__items {
  width: 48.5%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px 20px;
  gap: 1.625rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .area__items {
    width: 100%;
    gap: 0.625rem;
  }
}

.area__item {
  font-size: 18px;
  font-size: 1.125rem;
  border-radius: 0.5625rem;
  background: #ECF5FD;
  padding: 25px 20px 25px 30px;
  padding: 1.5625rem 1.25rem 1.5625rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .area__item {
    font-size: 0.875rem;
    padding: 0.9375rem 0.9375rem;
  }
}

.area__item-title {
  font-weight: 600;
  letter-spacing: 0.07em;
  color: #044793;
}

.area__item-text {
  margin-top: 13px;
  margin-top: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .area__item-text {
    margin-top: 0.4375rem;
  }
}

.area__img {
  width: 48.5%;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .area__img {
    width: 100%;
    margin-top: 1.875rem;
  }
}

/* flow */
.flow {
  padding: 110px 0 100px;
  padding: 6.875rem 0 6.25rem;
}
@media screen and (max-width: 767px) {
  .flow {
    padding: 3.75rem 0;
  }
}

.flow__units {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 23px;
  gap: 1.4375rem;
  margin-top: 55px;
  margin-top: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .flow__units {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
    margin-top: 1.875rem;
  }
}

.flow__unit {
  background: #ECF5FD;
  border-radius: 0.5625rem;
  padding: 15px 15px 10px;
  padding: 0.9375rem 0.9375rem 0.625rem;
}

.flow__unit-img img {
  border-radius: 0.5625rem;
}

.flow__unit-number {
  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;
  width: 51px;
  width: 3.1875rem;
  max-width: 100%;
  height: 51px;
  height: 3.1875rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 700;
  border-radius: 50%;
  background: #044793;
  color: #fff;
  margin: 25px auto 0;
  margin: 1.5625rem auto 0;
}
@media screen and (max-width: 767px) {
  .flow__unit-number {
    width: 2.8125rem;
    height: 2.8125rem;
    font-size: 1.25rem;
    margin-top: 0.9375rem;
  }
}

.flow__unit-title {
  text-align: center;
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: 600;
  color: #044793;
  letter-spacing: 0.07em;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .flow__unit-title {
    font-size: 1.125rem;
    margin-top: 0.625rem;
  }
}

.flow__unit-text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.56;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .flow__unit-text {
    font-size: 0.875rem;
  }
}

.flow__text {
  text-align: right;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (max-width: 767px) {
  .flow__text {
    text-align: left;
  }
}

/* takuhai */
.takuhai {
  overflow: hidden;
}

/* type */
.type__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  gap: 2.5rem;
  margin-top: 55px;
  margin-top: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .type__cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
    margin-top: 1.875rem;
  }
}
.type__cards .card__inner {
  background: #fff;
}

/* info */
.info {
  padding-bottom: 120px;
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .info {
    padding-bottom: 3.75rem;
  }
}
.info .title, .info .subtitle {
  text-align: center;
}
.info .title::after {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.info__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 25px;
  gap: 2.5rem 1.5625rem;
  margin-top: 55px;
  margin-top: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .info__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem 0;
    margin-top: 1.875rem;
  }
}

.info__item {
  text-align: center;
  border-radius: 0.5625rem;
  background: #ECF5FD;
  color: #044793;
  padding: 35px 20px 45px;
  padding: 2.1875rem 1.25rem 2.8125rem;
}
@media screen and (max-width: 767px) {
  .info__item {
    padding: 0.9375rem 1.25rem 1.25rem;
  }
}

.info__item-title {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .info__item-title {
    font-size: 1.25rem;
  }
}
.info__item-title span {
  font-family: "Lato", sans-serif;
  font-size: 58px;
  font-size: 3.625rem;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .info__item-title span {
    font-size: 2.5rem;
  }
}

.info__item-text {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 7px;
  margin-top: 0.4375rem;
}
@media screen and (max-width: 767px) {
  .info__item-text {
    font-size: 0.875rem;
  }
}

/* store */
.store__header-inner {
  position: relative;
}
.store__header-inner::after {
  position: absolute;
  content: "";
  width: 212px;
  width: 13.25rem;
  height: 260px;
  height: 16.25rem;
  right: -40px;
  right: -2.5rem;
  bottom: -50px;
  bottom: -3.125rem;
  background: url(../img/tenpo/store-icon01.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .store__header-inner::after {
    width: 6.625rem;
    height: 8.125rem;
    right: -1.875rem;
    bottom: -4.375rem;
  }
}

.store__footer .store-card {
  background: #ECF5FD;
}
.store__footer .store-card__open, .store__footer .store-card__items, .store__footer .store-card__subtext {
  background: #fff;
}

.store__footer-inner {
  padding: 100px 0 140px;
  padding: 6.25rem 0 8.75rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .store__footer-inner {
    padding: 3.75rem 0 7.5rem;
  }
}
.store__footer-inner::after {
  position: absolute;
  content: "";
  width: 301px;
  width: 18.8125rem;
  height: 792px;
  height: 49.5rem;
  right: 20px;
  right: 1.25rem;
  bottom: 130px;
  bottom: 8.125rem;
  background: url(../img/tenpo/store-icon02_pc.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .store__footer-inner::after {
    width: 13.75rem;
    height: 8.125rem;
    right: -1.875rem;
    bottom: 1.25rem;
    background: url(../img/tenpo/store-icon02_sp.png) no-repeat center/contain;
  }
}

.store__cards {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .store__cards {
    margin-top: 1.25rem;
  }
}

/* tenpo */
.tenpo {
  overflow: hidden;
}

.tenpo__header {
  padding: 20px 0 120px;
  padding: 1.25rem 0 7.5rem;
}
@media screen and (max-width: 767px) {
  .tenpo__header {
    padding: 0 0 3.75rem;
  }
}

.tenpo__imgs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 50px;
  gap: 2.5rem 3.125rem;
}
@media screen and (max-width: 767px) {
  .tenpo__imgs {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.625rem;
  }
}

.tenpo__img img {
  border-radius: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .tenpo__img img {
    border-radius: 0.5rem;
  }
}

.tenpo__text {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .tenpo__text {
    font-size: 0.875rem;
    margin-top: 1.25rem;
  }
}

/* top-company */
.top-company {
  padding: 120px 0;
  padding: 7.5rem 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top-company {
    padding: 3.4375rem 0 3.75rem;
  }
}
.top-company .l-inner {
  max-width: 1290px;
  max-width: 80.625rem;
}
.top-company .heading {
  text-align: left;
}
.top-company .subtitle {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .top-company .subtitle {
    margin-top: 0.3125rem;
  }
}

.top-company__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .top-company__inner {
    display: block;
  }
}

.top-company__body {
  width: 50%;
  padding-top: 20px;
  padding-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .top-company__body {
    width: 100%;
    padding-top: 0;
  }
}

.top-company__subtitle {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 600;
  color: #044793;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .top-company__subtitle {
    font-size: 1.375rem;
    margin-top: 2.5rem;
  }
}

.top-company__text {
  width: 543px;
  width: 33.9375rem;
  max-width: 100%;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .top-company__text {
    font-size: 0.875rem;
    line-height: 1.85;
    margin-top: 0.625rem;
  }
}

.top-company__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 17px;
  gap: 1.0625rem;
  margin-top: 25px;
  margin-top: 1.5625rem;
  padding-right: 40px;
  padding-right: 2.5rem;
}
@media screen and (max-width: 767px) {
  .top-company__items {
    gap: 1.1875rem;
    margin-top: 1.875rem;
    padding-right: 0;
  }
}

.top-company__item {
  text-align: center;
  border: 1px solid #044793;
  border: 0.0625rem solid #044793;
  border-radius: 0.5625rem;
  padding: 20px 20px 30px;
  padding: 1.25rem 1.25rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .top-company__item {
    padding: 0.625rem;
  }
}

.top-company__item-number {
  font-family: "Lato", sans-serif;
  font-size: 73px;
  font-size: 4.5625rem;
  color: #044793;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .top-company__item-number {
    font-size: 2.25rem;
    line-height: 1.2;
  }
}

.top-company__item-text {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .top-company__item-text {
    font-size: 0.875rem;
  }
}

.top-company__btn {
  margin: 70px auto 0;
  margin: 4.375rem auto 0;
}
@media screen and (max-width: 767px) {
  .top-company__btn {
    margin-top: 2.1875rem;
  }
}

.top-company__img {
  width: 49%;
  margin-left: -20px;
  margin-left: -1.25rem;
}
@media screen and (max-width: 767px) {
  .top-company__img {
    width: 100%;
    margin-left: 0;
    margin-top: 1.875rem;
  }
}

/* top-contact */
.top-contact {
  padding-bottom: 120px;
  padding-bottom: 7.5rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top-contact {
    padding-bottom: 5rem;
  }
}
.top-contact .subtitle {
  text-align: center;
  margin-top: 0;
}

.top-contact__text {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2;
  font-weight: 600;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .top-contact__text {
    text-align: left;
    font-size: 0.875rem;
    line-height: 1.86;
  }
}

.top-contact__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-top: 45px;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .top-contact__inner {
    display: block;
    margin-top: 1.875rem;
  }
}

.top-contact__units {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .top-contact__units {
    width: 100%;
  }
}

.top-contact__unit {
  border-radius: 0.5625rem;
  background: #ECF5FD;
  padding: 35px 40px;
  padding: 2.1875rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .top-contact__unit {
    padding: 1.5625rem 1.375rem 1.875rem;
  }
}
.top-contact__unit + .top-contact__unit {
  margin-top: 20px;
  margin-top: 1.25rem;
}
.top-contact__unit:nth-child(2) .top-contact__unit-btn {
  background: #fff;
  color: #044793;
}

.top-contact__unit-title {
  font-size: 20px;
  font-size: 1.25rem;
  color: #044793;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .top-contact__unit-title {
    font-size: 1.125rem;
  }
}

.top-contact__unit-tel {
  display: inline-block;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 22px;
  font-size: 1.375rem;
  color: #044793;
  font-weight: 700;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .top-contact__unit-tel {
    margin-top: 0.3125rem;
  }
}

.top-contact__unit-text {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.78;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .top-contact__unit-text {
    font-size: 0.875rem;
    margin-top: 0.3125rem;
  }
}

.top-contact__unit-btn {
  width: 200px;
  width: 12.5rem;
  font-size: 16px;
  font-size: 1rem;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .top-contact__unit-btn {
    width: 8.4375rem;
    font-size: 0.75rem;
  }
}

.top-contact__img {
  width: 46%;
}
@media screen and (max-width: 767px) {
  .top-contact__img {
    width: 100%;
    margin-top: 1.25rem;
  }
}
.top-contact__img img {
  border-radius: 0.5625rem;
}

/* top-facility */
.top-facility {
  background: url(../img/top/top-facility-bg_pc.png) no-repeat center/cover;
  padding: 70px 0 160px;
  padding: 4.375rem 0 10rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top-facility {
    background: url(../img/top/top-facility-bg_sp.png) no-repeat center/cover;
    padding: 2.1875rem 0 6.25rem;
  }
}
.top-facility .subtitle {
  text-align: center;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .top-facility .subtitle {
    line-height: 2;
  }
}

.top-facility__items {
  display: none;
  margin: 2.5rem calc(50% - 50vw) 0;
}
@media screen and (max-width: 767px) {
  .top-facility__items {
    margin-top: 2.1875rem;
  }
}
.top-facility__items.slick-initialized {
  display: block;
}
.top-facility__items .slider-dot {
  text-align: center;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -55px;
  bottom: -3.4375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 9px;
  gap: 0.5625rem;
}
@media screen and (max-width: 767px) {
  .top-facility__items .slider-dot {
    bottom: -2.1875rem;
  }
}
.top-facility__items .slider-dot li {
  display: inline-block;
  background: #C8CDD3;
  width: 8px;
  width: 0.5rem;
  height: 8px;
  height: 0.5rem;
  border-radius: 50%;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .top-facility__items .slider-dot li {
    width: 0.375rem;
    height: 0.375rem;
  }
}
.top-facility__items .slider-dot li button {
  text-indent: -9999px;
}
.top-facility__items .slider-dot li.slick-active {
  background: #044793;
}

.top-facility__item {
  margin: 0 18px;
  margin: 0 1.125rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-facility__item {
    margin: 0 0.5rem;
  }
}

.top-facility__item-img img {
  border-radius: 0.75rem;
}

.top-facility__item-text {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  border-radius: 0.75rem;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(#000));
  background: linear-gradient(rgba(0, 0, 0, 0) 0%, #000 100%);
  padding: 17px 25px;
  padding: 1.0625rem 1.5625rem;
}
@media screen and (max-width: 767px) {
  .top-facility__item-text {
    font-size: 1rem;
    padding: 0.625rem 1.25rem;
  }
}

/* top-mv */
.top-mv {
  text-align: center;
  padding: 170px 0 160px;
  padding: 10.625rem 0 10rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top-mv {
    padding: 3.4375rem 0 3.75rem;
  }
  .top-mv .l-inner {
    padding: 0 1.25rem;
  }
}

.top-mv__video {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.top-mv__video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-mv__title {
  font-size: 42px;
  font-size: 2.625rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.07em;
  text-shadow: 0px 3px 3px rgba(12, 22, 65, .62);
}
@media screen and (max-width: 767px) {
  .top-mv__title {
    font-size: 1.9375rem;
    line-height: 1.3;
  }
}
.top-mv__title span {
  font-size: 48px;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .top-mv__title span {
    font-size: 2.25rem;
  }
}

.top-mv__text {
  font-size: 20px;
  font-size: 1.25rem;
  color: #fff;
  letter-spacing: 0.07em;
  line-height: 1.9;
  text-shadow: 0px 2px 3px rgba(15, 22, 51, .62);
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .top-mv__text {
    font-size: 1rem;
    line-height: 1.63;
  }
}

.top-mv__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 37px;
  gap: 2.3125rem;
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .top-mv__items {
    gap: 0.5rem;
    margin-top: 1.25rem;
  }
}

.top-mv__item {
  width: 173px;
  width: 10.8125rem;
  max-width: 100%;
  background: rgba(255, 255, 255, .75);
  border-radius: 0.875rem;
  padding: 20px 10px 25px;
  padding: 1.25rem 0.625rem 1.5625rem;
}
@media screen and (max-width: 767px) {
  .top-mv__item {
    width: 6.4375rem;
    border-radius: 0.375rem;
    padding: 0.75rem 0.625rem 0.9375rem;
  }
}
.top-mv__item:first-child .top-mv__item-icon {
  width: 60px;
  width: 3.75rem;
  margin-top: 10px;
  margin-top: 0.625rem;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
}
@media screen and (max-width: 767px) {
  .top-mv__item:first-child .top-mv__item-icon {
    width: 2.25rem;
    margin-top: 0.3125rem;
    margin-bottom: 0.5rem;
  }
}
.top-mv__item:nth-child(2) .top-mv__item-icon {
  width: 82px;
  width: 5.125rem;
}
@media screen and (max-width: 767px) {
  .top-mv__item:nth-child(2) .top-mv__item-icon {
    width: 3.0625rem;
  }
}
.top-mv__item:nth-child(3) .top-mv__item-icon {
  width: 80px;
  width: 5rem;
}
@media screen and (max-width: 767px) {
  .top-mv__item:nth-child(3) .top-mv__item-icon {
    width: 3rem;
  }
}

.top-mv__item-icon {
  max-width: 100%;
  margin: 0 auto;
}

.top-mv__item-text {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .top-mv__item-text {
    font-size: 0.625rem;
    margin-top: 0.375rem;
  }
}

.top-mv__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  gap: 2.5rem;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .top-mv__btns {
    gap: 0.625rem;
    margin-top: 1.25rem;
  }
}

.top-mv__btn .btn {
  width: 210px;
  width: 13.125rem;
}
@media screen and (max-width: 767px) {
  .top-mv__btn .btn {
    width: 7.75rem;
  }
}

/* top-news */
.top-news {
  padding: 110px 0 120px;
  padding: 6.875rem 0 7.5rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top-news {
    padding: 3.75rem 0 4.375rem;
  }
}
.top-news .subtitle {
  text-align: center;
  margin-top: 0;
}

.top-news__items {
  border-bottom: 1px solid #989CC4;
  border-bottom: 0.0625rem solid #989CC4;
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .top-news__items {
    margin-top: 1.5625rem;
  }
}

.top-news__item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid #989CC4;
  border-top: 0.0625rem solid #989CC4;
  padding: 25px;
  padding: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .top-news__item-inner {
    display: block;
    padding: 0.5rem 0.9375rem 0.625rem;
  }
}

.top-news__item-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.top-news__item-date {
  display: inline-block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  min-width: 110px;
  min-width: 6.875rem;
}
@media screen and (max-width: 767px) {
  .top-news__item-date {
    font-size: 0.75rem;
    min-width: 4.375rem;
  }
}

.top-news__item-category span {
  text-align: center;
  display: inline-block;
  width: 116px;
  width: 7.25rem;
  font-weight: 600;
  background: #044793;
  color: #fff;
  border-radius: 0.375rem;
  padding: 3px;
  padding: 0.1875rem;
}
@media screen and (max-width: 767px) {
  .top-news__item-category span {
    width: 4.375rem;
    font-size: 0.5625rem;
    border-radius: 0.3125rem;
    margin-bottom: 0.3125rem;
    padding: 0.1875rem 0.1875rem 0.125rem;
  }
}

.top-news__item-title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  margin-left: 30px;
  margin-left: 1.875rem;
}
@media screen and (max-width: 767px) {
  .top-news__item-title {
    font-size: 0.875rem;
    margin-left: 0;
  }
}

.top-news__btn {
  font-size: 16px;
  font-size: 1rem;
  margin: 40px auto 0;
  margin: 2.5rem auto 0;
}
@media screen and (max-width: 767px) {
  .top-news__btn {
    font-size: 0.75rem;
    margin-top: 1.875rem;
  }
}

/* top-recruit */
.top-recruit {
  padding: 110px 0 150px;
  padding: 6.875rem 0 9.375rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top-recruit {
    padding: 3.125rem 0 4.375rem;
  }
}
.top-recruit .heading {
  text-align: left;
}
.top-recruit .subtitle {
  margin-top: 0;
}

.top-recruit__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .top-recruit__inner {
    display: block;
  }
}

.top-recruit__body {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .top-recruit__body {
    width: 100%;
  }
}

.top-recruit__subtitle {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 600;
  color: #044793;
}
@media screen and (max-width: 767px) {
  .top-recruit__subtitle {
    font-size: 1.375rem;
  }
}

.top-recruit__items {
  margin-top: 35px;
  margin-top: 2.1875rem;
}

.top-recruit__item {
  background: #ECF5FD;
  border-radius: 0.5625rem;
  padding: 35px 40px;
  padding: 2.1875rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .top-recruit__item {
    padding: 1.5625rem;
  }
}
.top-recruit__item + .top-recruit__item {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.top-recruit__item-title {
  font-size: 20px;
  font-size: 1.25rem;
  color: #044793;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .top-recruit__item-title {
    font-size: 1.125rem;
  }
}

.top-recruit__item-text {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.78;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .top-recruit__item-text {
    font-size: 0.875rem;
    margin-top: 0.9375rem;
  }
}

.top-recruit__btn {
  margin: 50px auto 0;
  margin: 3.125rem auto 0;
}
@media screen and (max-width: 767px) {
  .top-recruit__btn {
    margin-top: 1.875rem;
  }
}

.top-recruit__img {
  width: 53%;
  margin-right: -80px;
  margin-right: -5rem;
  margin-top: -115px;
  margin-top: -7.1875rem;
}
@media screen and (max-width: 767px) {
  .top-recruit__img {
    width: 90%;
    margin: 0.9375rem auto 0;
  }
}

/* top-service */
.top-service {
  background: url(../img/top/top-service-bg_pc.png) no-repeat center/cover;
  padding: 90px 0 110px;
  padding: 5.625rem 0 6.875rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top-service {
    background: url(../img/top/top-service-bg_sp.png) no-repeat center/cover;
    padding: 3.4375rem 0 3.75rem;
  }
}
.top-service .subtitle {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .top-service .subtitle {
    margin-top: 0.3125rem;
  }
}
@media screen and (max-width: 767px) {
  .top-service .heading {
    text-align: left;
  }
}

.top-service__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .top-service__header {
    display: block;
  }
}

.top-service__units {
  margin-top: 55px;
  margin-top: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .top-service__units {
    margin-top: 2.5rem;
  }
}

.top-service__unit + .top-service__unit {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .top-service__unit + .top-service__unit {
    margin-top: 2.1875rem;
  }
}

.top-service__cards {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .top-service__cards {
    margin-top: 1.875rem;
  }
}
.top-service__cards .card__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  background: #fff;
}
.top-service__cards .card__body {
  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-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.top-service__cards .card__title {
  text-align: center;
}
.top-service__cards .card__text {
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .top-service__cards .card__text {
    margin-bottom: 0;
  }
}
.top-service__cards .card__btn {
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .top-service__cards .card__btn {
    margin-top: 1.5625rem;
  }
}

.top-service__card {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .top-service__card {
    margin-top: 1.875rem;
  }
}

.top-service__card-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #fff;
  border-radius: 0.5625rem;
  padding: 15px 50px 15px 15px;
  padding: 0.9375rem 3.125rem 0.9375rem 0.9375rem;
}
@media screen and (max-width: 767px) {
  .top-service__card-inner {
    display: block;
    padding: 0.9375rem 0.9375rem 1.875rem;
  }
}

.top-service__card-img {
  width: 44%;
}
@media screen and (max-width: 767px) {
  .top-service__card-img {
    width: 100%;
  }
}
.top-service__card-img img {
  border-radius: 0.5625rem;
}
@media screen and (max-width: 767px) {
  .top-service__card-img img {
    border-radius: 0.3125rem;
  }
}

.top-service__card-body {
  width: 52%;
}
@media screen and (max-width: 767px) {
  .top-service__card-body {
    width: 100%;
    margin-top: 1.5625rem;
    padding: 0 0.625rem;
  }
}

.top-service__card-title {
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: 600;
  color: #044793;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  .top-service__card-title {
    text-align: center;
    font-size: 1.125rem;
  }
}

.top-service__card-text {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.56;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .top-service__card-text {
    font-size: 0.875rem;
    line-height: 1.85;
    margin-top: 0.3125rem;
  }
}

.top-service__card-btn {
  margin-left: auto;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .top-service__card-btn {
    width: 7.75rem;
    margin: 1.5625rem auto 0;
  }
}

/* top-store */
.top-store {
  padding: 30px 0 40px;
  padding: 1.875rem 0 2.5rem;
}
@media screen and (max-width: 767px) {
  .top-store {
    padding: 0.625rem 0 1.25rem;
  }
}
.top-store .subtitle {
  text-align: center;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .top-store .subtitle {
    margin-top: 0.3125rem;
  }
}

.top-store__subtitle {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 600;
  color: #044793;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .top-store__subtitle {
    font-size: 1.375rem;
    margin-top: 2.1875rem;
  }
}

.top-store__text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .top-store__text {
    font-size: 0.875rem;
    line-height: 1.85;
    margin-top: 1.25rem;
  }
}

.top-store__units {
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .top-store__units {
    margin-top: 2.1875rem;
  }
}

.top-store__unit + .top-store__unit {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .top-store__unit + .top-store__unit {
    margin-top: 3.125rem;
  }
}

.top-store__cards {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .top-store__cards {
    margin-top: 1.875rem;
  }
}

.top-store__box {
  text-align: center;
  background: #fff;
  border-radius: 1.25rem;
  margin-top: 75px;
  margin-top: 4.6875rem;
  padding: 70px 20px;
  padding: 4.375rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .top-store__box {
    margin-top: 3.125rem;
    padding: 2.1875rem 0.625rem 2.5rem;
  }
}

.top-store__box-title {
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  .top-store__box-title {
    font-size: 1.25rem;
  }
}

.top-store__box-tel {
  display: inline-block;
  font-family: "Lato", sans-serif;
  font-size: 69px;
  font-size: 4.3125rem;
  font-weight: 700;
  color: #044793;
  line-height: 1.3;
  background: url(../img/common/tel-icon.png) no-repeat center left/40px;
  background: url(../img/common/tel-icon.png) no-repeat center left/2.5rem;
  padding-left: 43px;
  padding-left: 2.6875rem;
}
@media screen and (max-width: 767px) {
  .top-store__box-tel {
    font-size: 1.875rem;
    background-size: 1.625rem;
    padding-left: 1.875rem;
    white-space: nowrap;
  }
}

.top-store__box-text {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .top-store__box-text {
    font-size: 0.875rem;
    line-height: 1.85;
    margin-top: 0.625rem;
  }
}

.top-store__box-btn {
  width: 260px;
  width: 16.25rem;
  margin: 55px auto 0;
  margin: 3.4375rem auto 0;
}
@media screen and (max-width: 767px) {
  .top-store__box-btn {
    width: 10.625rem;
    margin-top: 1.5625rem;
  }
}
/*# sourceMappingURL=style.css.map */
