@charset "UTF-8";
/* リキッドレイアウト対応 */
html {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  color: #000;
  line-height: 1.5;
  font-weight: 500;
}

@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.372212693vw;
  }
}
@media (min-width: 1166px) {
  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-btns */
.l-btns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 28px;
  gap: 0 1.75rem;
}
@media screen and (max-width: 767px) {
  .l-btns {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.9375rem 0;
  }
}

/* l-cards */
.l-cards--2, .l-cards--3 {
  display: grid;
}
.l-cards--2 .box, .l-cards--3 .box {
  padding: 40px 40px 30px;
  padding: 2.5rem 2.5rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .l-cards--2 .box, .l-cards--3 .box {
    padding: 1.875rem 1.25rem;
  }
}
.l-cards--2 .box__title, .l-cards--3 .box__title {
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .l-cards--2 .box__title, .l-cards--3 .box__title {
    padding-bottom: 0.625rem;
  }
}

.l-cards--2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 30px;
  gap: 3.75rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .l-cards--2 {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
  }
}

.l-cards--3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 25px;
  gap: 3.75rem 1.5625rem;
}
@media screen and (max-width: 767px) {
  .l-cards--3 {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
  }
}

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

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

/* l-section */
.l-section {
  padding: 80px 0;
  padding: 5rem 0;
}
@media screen and (max-width: 767px) {
  .l-section {
    padding: 3.75rem 0;
  }
}

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

/* 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;
  }
}

/* accordion */
.accordion__item {
  background: #fff;
  border: 1px solid #00418B;
  border: 0.0625rem solid #00418B;
  border-radius: 0.625rem;
  padding: 0 30px;
  padding: 0 1.875rem;
}
@media screen and (max-width: 767px) {
  .accordion__item {
    padding: 0 1.25rem;
  }
}
.accordion__item + .accordion__item {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .accordion__item + .accordion__item {
    margin-top: 1.25rem;
  }
}

.accordion__item-header {
  padding: 35px 40px 35px 10px;
  padding: 2.1875rem 2.5rem 2.1875rem 0.625rem;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 767px) {
  .accordion__item-header {
    padding: 1.5625rem 1.875rem 1.5625rem 0;
  }
}
.accordion__item-header.active .accordion__item-toggle::before {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.accordion__item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.accordion__item-question, .accordion__item-answer {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  min-width: 48px;
  min-width: 3rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .accordion__item-question, .accordion__item-answer {
    font-size: 1.25rem;
    min-width: 1.875rem;
  }
}
.accordion__item-question::after, .accordion__item-answer::after {
  position: absolute;
  content: "";
  width: 1px;
  width: 0.0625rem;
  height: 30px;
  height: 1.875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
}
@media screen and (max-width: 767px) {
  .accordion__item-question::after, .accordion__item-answer::after {
    height: 1.25rem;
  }
}

.accordion__item-question {
  color: #00418B;
}
.accordion__item-question::after {
  background: #00418B;
}

.accordion__item-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #00418B;
  padding-top: 4px;
  padding-top: 0.25rem;
  margin-left: 30px;
  margin-left: 1.875rem;
}
@media screen and (max-width: 767px) {
  .accordion__item-title {
    font-size: 1rem;
    line-height: 1.4;
    margin-left: 0.625rem;
  }
}

.accordion__item-toggle {
  position: absolute;
  top: 40px;
  top: 2.5rem;
  right: 0;
  display: block;
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  border: 1px solid #00418B;
  border: 0.0625rem solid #00418B;
}
@media screen and (max-width: 767px) {
  .accordion__item-toggle {
    top: 1.875rem;
  }
}
.accordion__item-toggle::after, .accordion__item-toggle::before {
  position: absolute;
  content: "";
  width: 10px;
  width: 0.625rem;
  height: 1px;
  height: 0.0625rem;
  background: #00418B;
  top: 50%;
  right: 6px;
  right: 0.375rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.accordion__item-toggle::before {
  top: 49%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.accordion__item-body {
  display: none;
  background: #F2F6FA;
  border-radius: 0.625rem;
  padding: 40px;
  padding: 2.5rem;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 767px) {
  .accordion__item-body {
    padding: 1.25rem;
    margin-bottom: 1.5625rem;
  }
}

.accordion__item-answer {
  color: #F19303;
}
.accordion__item-answer::after {
  background: #F19303;
}

.accordion__item-texts {
  margin-left: 30px;
  margin-left: 1.875rem;
  padding-top: 5px;
  padding-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .accordion__item-texts {
    margin-left: 0.625rem;
    padding-top: 0;
  }
}

.accordion__item-text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.67;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .accordion__item-text {
    font-size: 1rem;
  }
}
.accordion__item-text:not(:last-child) {
  margin-bottom: 35px;
  margin-bottom: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .accordion__item-text:not(:last-child) {
    margin-bottom: 1.25rem;
  }
}

.accordion__item-img {
  width: 767px;
  width: 47.9375rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .accordion__item-img {
    width: 100%;
  }
}
.accordion__item-img:not(:last-child) {
  margin-bottom: 35px;
  margin-bottom: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .accordion__item-img:not(:last-child) {
    margin-bottom: 1.25rem;
  }
}

/* arrow */
.arrow {
  width: 120px;
  width: 7.5rem;
  max-width: 100%;
  margin: 20px auto;
  margin: 1.25rem auto;
}

/* bg */
.bg {
  background: #F2F6FA;
}

.bg-orange {
  background: #FCF3ED;
}

/* box */
.box {
  border-radius: 0.625rem;
  background: #fff;
  border: 1px solid #00418B;
  -webkit-box-shadow: 0px 6px 16px rgba(0, 65, 139, .08);
          box-shadow: 0px 6px 16px rgba(0, 65, 139, .08);
  padding: 45px 50px;
  padding: 2.8125rem 3.125rem;
}
@media screen and (max-width: 767px) {
  .box {
    display: block;
    padding: 1.875rem 1.25rem;
  }
}
.box.green {
  border-color: #00A968;
}
.box.green .box__title {
  color: #00A968;
  border-color: #00A968;
}
.box.green .box__price-number {
  color: #00A968;
}
.box.green .box__unit {
  background: #EBF7F3;
}
.box.green .box__list-item::before {
  background: #6FC759;
}
.box.orange {
  border-color: #F19303;
}
.box.orange .box__title {
  color: #F19303;
  border-color: #F19303;
}
.box.orange .box__point-item {
  color: #F19303;
  background: #FCF3ED;
}
.box.orange .box__sublist-item::before {
  background: #F19303;
}

.box__category {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 1.25rem;
  color: #00418B;
  background: #F2F6FA;
  padding: 5px 20px;
  padding: 0.3125rem 1.25rem;
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .box__category {
    font-size: 0.9375rem;
  }
}
.box__category.blue {
  color: #00418B;
  background: #F2F6FA;
}
.box__category.green {
  color: #00A968;
  background: #EBF7F3;
}
.box__category.pink {
  color: #C90054;
  background: #FAF2F6;
}
.box__category.orange {
  color: #F19303;
  background: #FDF4EC;
}

.box__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 16px;
  gap: 0 1rem;
  font-size: 20px;
  font-size: 1.25rem;
  color: #00418B;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-bottom: 1px solid #00418B;
  border-bottom: 0.0625rem solid #00418B;
  padding-bottom: 15px;
  padding-bottom: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .box__title {
    font-size: 1.125rem;
    padding-bottom: 0.625rem;
    gap: 0 0.625rem;
  }
}
.box__title.center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.box__title span {
  display: inline-block;
  width: 42px;
  width: 2.625rem;
  min-width: 42px;
  min-width: 2.625rem;
}

.box__text {
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  line-height: 1.67;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .box__text {
    font-size: 1rem;
    margin-top: 1.25rem;
  }
}
.box__text.center {
  text-align: center;
}
.box__text:not(:last-child) {
  margin-bottom: 25px;
  margin-bottom: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .box__text:not(:last-child) {
    margin-bottom: 1.25rem;
  }
}

.box__price {
  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: 5px;
  gap: 0.3125rem;
}

.box__price-number {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  color: #00418B;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .box__price-number {
    font-size: 1.5rem;
  }
}
.box__price-number span {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 56px;
  font-size: 3.5rem;
  font-weight: 600;
  margin-right: 5px;
  margin-right: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .box__price-number span {
    font-size: 2.625rem;
  }
}

.box__price-tax {
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .box__price-tax {
    font-size: 1rem;
    margin-top: 0.625rem;
  }
}

.box__subtext {
  letter-spacing: 0.04em;
  line-height: 1.67;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .box__subtext {
    font-size: 1rem;
  }
}
.box__subtext.center {
  text-align: center;
}
.box__subtext:not(:last-child) {
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}

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

.box__unit {
  min-height: 300px;
  min-height: 18.75rem;
  background: #F2F6FA;
  border-radius: 0.625rem;
  margin-top: auto;
  padding: 35px 40px;
  padding: 2.1875rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .box__unit {
    min-height: unset;
    padding: 1.5625rem 1.25rem;
  }
}

.box__unit-title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #00418B;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .box__unit-title {
    font-size: 1rem;
  }
}
.box__unit-title:not(:first-child) {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.box__unit-text {
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  line-height: 1.6;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .box__unit-text {
    font-size: 1rem;
    margin-top: 0.625rem;
  }
}

.box__list-item {
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  padding-left: 31px;
  padding-left: 1.9375rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .box__list-item {
    font-size: 1rem;
    padding-left: 1.25rem;
  }
}
.box__list-item + .box__list-item {
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (max-width: 767px) {
  .box__list-item + .box__list-item {
    margin-top: 0.3125rem;
  }
}
.box__list-item::before {
  position: absolute;
  content: "";
  width: 18px;
  width: 1.125rem;
  height: 18px;
  height: 1.125rem;
  background: #03A6E2;
  border-radius: 50%;
  left: 0;
  top: 5px;
  top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .box__list-item::before {
    width: 0.75rem;
    height: 0.75rem;
  }
}
.box__list-item a {
  text-decoration: underline;
}

.box__sublist {
  margin-top: 25px;
  margin-top: 1.5625rem;
}

.box__sublist-item {
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  padding-left: 18px;
  padding-left: 1.125rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .box__sublist-item {
    font-size: 1rem;
  }
}
.box__sublist-item + .box__sublist-item {
  margin-top: 12px;
  margin-top: 0.75rem;
}
.box__sublist-item::before {
  position: absolute;
  content: "";
  width: 8px;
  width: 0.5rem;
  height: 8px;
  height: 0.5rem;
  background: #03A6E2;
  border-radius: 50%;
  left: 0;
  top: 10px;
  top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .box__sublist-item::before {
    top: 0.4375rem;
  }
}
.box__sublist-item a {
  text-decoration: underline;
}

.box__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) {
  .box__inner {
    display: block;
  }
}
.box__inner .box__body {
  width: 41%;
}
@media screen and (max-width: 767px) {
  .box__inner .box__body {
    width: 100%;
  }
}
.box__inner .box__img {
  width: 56%;
}
@media screen and (max-width: 767px) {
  .box__inner .box__img {
    width: 100%;
    margin-top: 1.25rem;
  }
}

.box__dev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .box__dev {
    gap: 15px;
  }
}

.box__dev-icon {
  display: inline-block;
  width: 64px;
  width: 4rem;
  min-width: 64px;
  min-width: 4rem;
}
@media screen and (max-width: 767px) {
  .box__dev-icon {
    width: 3.125rem;
    min-width: 3.125rem;
  }
}

.box__dev-title {
  font-size: 20px;
  font-weight: 700;
  color: #00418B;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .box__dev-title {
    font-size: 18px;
  }
}

.box__dev-text {
  font-size: 18px;
  letter-spacing: 0.04em;
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .box__dev-text {
    font-size: 16px;
  }
}

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

.box__point-item {
  width: 180px;
  width: 11.25rem;
  max-width: 100%;
  height: 180px;
  height: 11.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #00418B;
  background: #F2F6FA;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .box__point-item {
    width: 7.5rem;
    height: 7.5rem;
    font-size: 1.125rem;
  }
}

.box__check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 40px;
  margin-top: 2.5rem;
  gap: 20px 0;
  gap: 1.25rem 0;
}
@media screen and (max-width: 767px) {
  .box__check {
    display: block;
    margin-top: 1.875rem;
  }
}

.box__check-item {
  width: 50%;
  font-size: 18px;
  font-size: 1.125rem;
  background: url(../img/common/check-icon.png) no-repeat left top/30px;
  background: url(../img/common/check-icon.png) no-repeat left top/1.875rem;
  padding-left: 42px;
  padding-left: 2.625rem;
  padding: 2px 0 2px 42px;
  padding: 0.125rem 0 0.125rem 2.625rem;
}
@media screen and (max-width: 767px) {
  .box__check-item {
    width: 100%;
    font-size: 1rem;
    background: url(../img/common/check-icon.png) no-repeat left top 0.125rem/1.5625rem;
    padding-left: 2.1875rem;
  }
  .box__check-item + .box__check-item {
    margin-top: 0.3125rem;
  }
}

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

/* breadcrumb */
.breadcrumb {
  padding: 15px 0;
  padding: 0.9375rem 0;
  background: #D4E8FE;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    padding: 0.625rem 0;
  }
}
.breadcrumb.orange {
  background: #FAE8CF;
}

.breadcrumb__item {
  display: inline;
}
.breadcrumb__item + .breadcrumb__item {
  margin-left: 30px;
  margin-left: 1.875rem;
  position: relative;
}
.breadcrumb__item + .breadcrumb__item::before {
  position: absolute;
  content: "";
  width: 6px;
  width: 0.375rem;
  height: 12px;
  height: 0.75rem;
  top: 1px;
  top: 0.0625rem;
  left: -20px;
  left: -1.25rem;
  background: url(../img/common/arrow-icon02.png) no-repeat center/contain;
}
.breadcrumb__item a, .breadcrumb__item span {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .breadcrumb__item a, .breadcrumb__item span {
    display: inline;
  }
}

/* btn */
.primary-btn, .secondary-btn, .download-btn {
  text-align: center;
  display: block;
  width: 370px;
  width: 23.125rem;
  max-width: 100%;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #00418B;
  border: 1px solid transparent;
  border: 0.0625rem solid transparent;
  border-radius: 0.625rem;
  padding: 25px;
  padding: 1.5625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .primary-btn, .secondary-btn, .download-btn {
    width: 100%;
  }
}
.primary-btn::before, .primary-btn::after, .secondary-btn::before, .secondary-btn::after, .download-btn::before, .download-btn::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.primary-btn:after, .secondary-btn:after, .download-btn:after {
  width: 8px;
  width: 0.5rem;
  height: 16px;
  height: 1rem;
  right: 30px;
  right: 1.875rem;
  background: url(../img/common/arrow-icon01.png) no-repeat center/contain;
}

.primary-btn {
  border-color: #00418B;
}

.secondary-btn {
  background: rgba(0, 65, 139, .08);
}

.download-btn {
  background: rgba(0, 65, 139, .08);
}
.download-btn::before {
  width: 24px;
  width: 1.5rem;
  height: 32px;
  height: 2rem;
  left: 24px;
  left: 1.5rem;
  background: url(../img/common/document-icon.png) no-repeat center/contain;
}

/* card */
.card {
  background: #fff;
  border-radius: 0.625rem;
  -webkit-box-shadow: 0px 6px 16px rgba(0, 65, 139, .08);
          box-shadow: 0px 6px 16px rgba(0, 65, 139, .08);
}
.card.border {
  border: 1px solid #00418B;
  border: 0.0625rem solid #00418B;
}
.card.orange .card__title {
  color: #F19303;
}

.card__inner {
  display: block;
  height: 100%;
  border-radius: 0.625rem;
}

.card__img {
  width: 100%;
  padding-top: 56.1827956989%;
  position: relative;
}
.card__img img, .card__img video, .card__img iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.625rem 0.625rem 0 0;
}

.card__body {
  padding: 30px 40px 35px;
  padding: 1.875rem 2.5rem 2.1875rem;
}
@media screen and (max-width: 767px) {
  .card__body {
    padding: 1.25rem 1.25rem 1.5625rem;
  }
}

.card__category {
  display: inline-block;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 1.25rem;
  color: #00418B;
  background: #F2F6FA;
  margin: 0 -5px;
  margin: 0 -0.3125rem;
  padding: 5px 15px;
  padding: 0.3125rem 0.9375rem;
}
@media screen and (max-width: 767px) {
  .card__category {
    margin: 0;
  }
}
.card__category.blue {
  color: #00418B;
  background: #F2F6FA;
}
.card__category.green {
  color: #00A968;
  background: #EBF7F3;
}
.card__category.pink {
  color: #C90054;
  background: #FAF2F6;
}
.card__category.orange {
  color: #F19303;
  background: #FDF4EC;
}

.card__name {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #00418B;
  letter-spacing: 0.04em;
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .card__name {
    font-size: 1.25rem;
    margin-top: 0.625rem;
  }
}

.card__position {
  letter-spacing: 0.04em;
  border-bottom: 1px solid #00418B;
  border-bottom: 0.0625rem solid #00418B;
  margin-top: 2px;
  margin-top: 0.125rem;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .card__position {
    font-size: 1rem;
    padding-bottom: 0.9375rem;
    margin-bottom: 0.9375rem;
  }
}

.card__title {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #00418B;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .card__title {
    font-size: 1.125rem;
  }
}

.card__text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.67;
  letter-spacing: 0.04em;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .card__text {
    font-size: 1rem;
  }
}

/* category */
.category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
  gap: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .category {
    gap: 0.625rem;
    margin-top: 0.9375rem;
  }
}
.category a, .category button {
  display: inline-block;
  background: #fff;
  font-weight: 700;
  color: #00418B;
  border-radius: 1rem;
  border: 1px solid #00418B;
  border: 0.0625rem solid #00418B;
  padding: 3px 14px;
  padding: 0.1875rem 0.875rem;
}
.category a.current, .category button.current {
  color: #fff;
  background: #00418B;
}
.category a:hover, .category button:hover {
  opacity: 1;
}

/* chart */
.chart {
  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;
  border: 1px solid #00418B;
  border: 0.0625rem solid #00418B;
  border-radius: 0.625rem;
  background: #fff;
  -webkit-box-shadow: 0px 6px 16px rgba(0, 65, 139, .08);
          box-shadow: 0px 6px 16px rgba(0, 65, 139, .08);
  padding: 50px 110px 40px;
  padding: 3.125rem 6.875rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .chart {
    display: block;
    padding: 1.875rem 1.25rem;
  }
}

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

.chart__body {
  width: 50%;
  border-radius: 0.625rem;
  background: #F2F6FA;
  padding: 35px 40px;
  padding: 2.1875rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .chart__body {
    width: 100%;
    margin-top: 1.25rem;
    padding: 1.5625rem 1.25rem;
  }
}

.chart__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0 8px;
  gap: 0 0.5rem;
}
.chart__item + .chart__item {
  margin-top: 13px;
  margin-top: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .chart__item + .chart__item {
    margin-top: 0.625rem;
  }
}

.chart__item-img {
  width: 40px;
  width: 2.5rem;
  min-width: 40px;
  min-width: 2.5rem;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .chart__item-img {
    margin-top: 0.125rem;
  }
}

.chart__item-text {
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .chart__item-text {
    font-size: 1rem;
  }
}

/* cv */
.cv {
  color: #fff;
  background: url(../img/common/cv-bg.png) no-repeat center/cover;
  padding: 60px 0 80px;
  padding: 3.75rem 0 5rem;
}
@media screen and (max-width: 767px) {
  .cv {
    padding: 2.5rem 0 3.75rem;
  }
}
.cv .title {
  color: #fff;
}

.cv__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 25px;
  gap: 0 1.5625rem;
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .cv__btns {
    display: block;
    margin-top: 1.5625rem;
  }
}

@media screen and (max-width: 767px) {
  .cv__btn + .cv__btn {
    margin-top: 0.9375rem;
  }
}
.cv__btn a {
  text-align: center;
  display: block;
  width: 420px;
  width: 26.25rem;
  max-width: 100%;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: 1px solid #fff;
  border: 0.0625rem solid #fff;
  border-radius: 0.625rem;
  padding: 25px;
  padding: 1.5625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .cv__btn a {
    width: 100%;
  }
}
.cv__btn a::before, .cv__btn a::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.cv__btn a::after {
  width: 7px;
  width: 0.4375rem;
  height: 14px;
  height: 0.875rem;
  right: 30px;
  right: 1.875rem;
  background: url(../img/common/arrow-icon03.png) no-repeat center/contain;
}

.cv__btn--inquiry a::before {
  left: 24px;
  left: 1.5rem;
  width: 32px;
  width: 2rem;
  height: 32px;
  height: 2rem;
  background: url(../img/common/inquiry-icon.png) no-repeat center/contain;
}

.cv__btn--email a::before {
  left: 29px;
  left: 1.8125rem;
  width: 32px;
  width: 2rem;
  height: 23px;
  height: 1.4375rem;
  background: url(../img/common/mail-icon.png) no-repeat center/contain;
}

.cv__btn--tel a::before {
  left: 24px;
  left: 1.5rem;
  width: 32px;
  width: 2rem;
  height: 32px;
  height: 2rem;
  background: url(../img/common/tel-icon.png) no-repeat center/contain;
}

.cv__address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 865px;
  width: 54.0625rem;
  max-width: 100%;
  margin: 35px auto 0;
  margin: 2.1875rem auto 0;
}
@media screen and (max-width: 767px) {
  .cv__address {
    display: block;
    margin-top: 1.5625rem;
  }
}

.cv__address-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .cv__address-title {
    font-size: 1.125rem;
  }
}

.cv__address-text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.78;
  letter-spacing: 0.04em;
  padding-left: 30px;
  padding-left: 1.875rem;
  margin-left: 30px;
  margin-left: 1.875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .cv__address-text {
    font-size: 1rem;
    margin-left: 0;
    padding-left: 0;
    margin-top: 0.625rem;
  }
}
.cv__address-text::before {
  position: absolute;
  content: "";
  width: 1px;
  width: 0.0625rem;
  height: 52px;
  height: 3.25rem;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #fff;
}
@media screen and (max-width: 767px) {
  .cv__address-text::before {
    display: none;
  }
}
.cv__address-text span {
  font-weight: 700;
}

.cv__text {
  font-size: 15px;
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  line-height: 2.13;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .cv__text {
    line-height: 2;
    margin-top: 1.875rem;
  }
}

/* drawer */
.drawer {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  background: #D4E8FE;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  width: 100%;
  height: 100%;
  padding: 80px 0;
  padding: 5rem 0;
}
.drawer.active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.drawer__item {
  text-align: center;
}
.drawer__item + .drawer__item {
  position: relative;
}
.drawer__item:last-child a {
  background: #03A6E2;
}
.drawer__item a {
  display: block;
  color: #fff;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: #00418B;
  padding: 18px 0;
  padding: 1.125rem 0;
}

.drawer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 20px;
  gap: 0.625rem 1.25rem;
  padding: 0 20px;
  padding: 0 1.25rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.drawer__link a {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #00418B;
  padding-left: 0.6em;
  position: relative;
}
.drawer__link a::before {
  position: absolute;
  content: "-";
  left: 0;
  top: 0;
}

.drawer__search {
  width: 200px;
  width: 12.5rem;
  max-width: 100%;
  margin: 20px auto 0;
  margin: 1.25rem auto 0;
  position: relative;
}
.drawer__search input[type=text] {
  width: 100%;
  height: 36px;
  height: 2.25rem;
  font-weight: 700;
  background: #fff;
  border-radius: 0.5rem;
  border: 1px solid #ccc;
  border: 0.0625rem solid #ccc;
  padding: 10px 30px 10px 15px;
  padding: 0.625rem 1.875rem 0.625rem 0.9375rem;
}
.drawer__search input[type=text]::-webkit-input-placeholder {
  font-size: 15px;
  font-size: 0.9375rem;
  color: #C3C3C3;
}
.drawer__search input[type=text]::-moz-placeholder {
  font-size: 15px;
  font-size: 0.9375rem;
  color: #C3C3C3;
}
.drawer__search input[type=text]::-ms-input-placeholder {
  font-size: 15px;
  font-size: 0.9375rem;
  color: #C3C3C3;
}
.drawer__search input[type=text]::placeholder {
  font-size: 15px;
  font-size: 0.9375rem;
  color: #C3C3C3;
}
.drawer__search input[type=submit] {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 14px;
  right: 0.875rem;
  z-index: 1;
  width: 14px;
  width: 0.875rem;
  height: 14px;
  height: 0.875rem;
  background: url(../img/common/search-icon.png) no-repeat center/contain;
}

.drawer__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.drawer__btn {
  text-align: center;
}
.drawer__btn:first-child a, .drawer__btn:first-child span {
  border-radius: 0.5rem 0 0 0.5rem;
  border-right: none;
}
.drawer__btn:nth-child(2) a, .drawer__btn:nth-child(2) span {
  border-radius: 0 0.5rem 0.5rem 0;
  border-left: none;
}
.drawer__btn a, .drawer__btn span {
  display: block;
  width: 50px;
  width: 3.125rem;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 6px 0;
  padding: 0.375rem 0;
}
.drawer__btn a {
  color: #C3C3C3;
  background: #F2F2F2;
  border: 1px solid #ccc;
  border: 0.0625rem solid #ccc;
}
.drawer__btn span {
  color: #fff;
  border: 1px solid #00418B;
  border: 0.0625rem solid #00418B;
  background: #00418B;
}

/* english-btn */
.english-btn {
  display: block;
  width: 100px;
  width: 6.25rem;
  max-width: 100%;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  border: 1px solid #00418B;
  border: 0.0625rem solid #00418B;
  background: #00418B;
  border-radius: 0.5rem;
  padding: 6px 0;
  padding: 0.375rem 0;
}
@media screen and (max-width: 767px) {
  .english-btn {
    margin: 1.25rem auto 0;
  }
}
.english-btn:hover {
  opacity: 1;
}

/* entitle */
/* flow */
.flow__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 34px;
  gap: 0 2.125rem;
}
@media screen and (max-width: 767px) {
  .flow__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 3.75rem 0;
  }
}

.flow__item {
  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%;
}
@media screen and (max-width: 767px) {
  .flow__item {
    display: block;
  }
}
.flow__item + .flow__item {
  position: relative;
}
.flow__item + .flow__item::before {
  position: absolute;
  content: "";
  width: 85px;
  width: 5.3125rem;
  height: 45px;
  height: 2.8125rem;
  top: 15px;
  top: 0.9375rem;
  left: -60px;
  left: -3.75rem;
  background: url(../img/common/arrow-icon04.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .flow__item + .flow__item::before {
    width: 2.5rem;
    height: 1.5625rem;
    top: -2.5rem;
    left: 50%;
    -webkit-transform: translateX(-50%) rotate(90deg);
            transform: translateX(-50%) rotate(90deg);
  }
}

.flow__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: 80px;
  width: 5rem;
  height: 80px;
  height: 5rem;
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 600;
  background: #00418B;
  color: #fff;
  margin: 0 auto;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .flow__item-number {
    width: 3.75rem;
    height: 3.75rem;
    font-size: 1.75rem;
  }
}

.flow__item-title {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #00418B;
  letter-spacing: 0.04em;
  line-height: 1.25;
  min-height: 45px;
  min-height: 2.8125rem;
  margin-top: 13px;
  margin-top: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .flow__item-title {
    font-size: 1.125rem;
    min-height: unset;
  }
}

.flow__item-box {
  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;
  border-radius: 0.625rem;
  -webkit-box-shadow: 0px 6px 16px rgba(0, 65, 139, .08);
          box-shadow: 0px 6px 16px rgba(0, 65, 139, .08);
  background: #fff;
  margin-top: 10px;
  margin-top: 0.625rem;
  padding: 25px 30px 30px;
  padding: 1.5625rem 1.875rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .flow__item-box {
    padding: 1.5625rem 1.25rem;
  }
}

.flow__item-text {
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  line-height: 1.67;
}
@media screen and (max-width: 767px) {
  .flow__item-text {
    font-size: 1rem;
  }
}
.flow__item-text a {
  color: #03A6E2;
  text-decoration: underline;
}

/* footer */
.footer {
  background: #00418B;
  padding: 40px 0;
  padding: 2.5rem 0;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-bottom: 1.25rem;
  }
}

.footer__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) {
  .footer__inner {
    display: block;
  }
}

.footer__body {
  width: 440px;
  width: 27.5rem;
  max-width: 100%;
  border-radius: 1.25rem;
  background: #fff;
  padding: 40px;
  padding: 2.5rem;
}
@media screen and (max-width: 767px) {
  .footer__body {
    width: 100%;
    padding: 1.875rem 1.25rem;
  }
}

.footer__logo {
  width: 360px;
  width: 22.5rem;
  max-width: 100%;
}

.footer__text {
  line-height: 1.875;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .footer__text {
    line-height: 1.6;
  }
}

.footer__tel {
  font-family: "Poppins", sans-serif;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.footer__link-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #fff;
  padding-top: 20px;
  padding-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .footer__link-wrapper {
    padding-top: 0;
    margin-top: 1.875rem;
  }
}

.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 0 30px;
  gap: 0 1.875rem;
}
@media screen and (max-width: 767px) {
  .footer__links {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .footer__link + .footer__link {
    margin-top: 0.625rem;
  }
}
.footer__link a {
  display: inline-block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding-left: 0.7em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .footer__link a {
    font-size: 1rem;
  }
}
.footer__link a::before {
  position: absolute;
  content: "-";
  left: 0;
  top: 0;
}

.footer__sublinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 0 30px;
  gap: 0 1.875rem;
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .footer__sublinks {
    display: block;
    margin-top: 0.625rem;
  }
}

@media screen and (max-width: 767px) {
  .footer__sublink + .footer__sublink {
    margin-top: 0.625rem;
  }
}
.footer__sublink a {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding-left: 0.7em;
  position: relative;
}
.footer__sublink a::before {
  position: absolute;
  content: "-";
  left: 0;
  top: 0;
}

.footer__copyright {
  text-align: right;
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-size: 1.0625rem;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    text-align: center;
    font-size: 0.875rem;
    margin-top: 1.875rem;
  }
}

/* form */
.form__flow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 105px;
  gap: 6.5625rem;
  margin-bottom: 50px;
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 767px) {
  .form__flow {
    gap: 3.125rem;
    margin-bottom: 1.875rem;
  }
}

.form__flow-item {
  text-align: center;
  width: 105px;
  width: 6.5625rem;
  max-width: 100%;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #C3C3C3;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .form__flow-item {
    width: 5rem;
    font-size: 1rem;
  }
}
.form__flow-item + .form__flow-item {
  position: relative;
}
.form__flow-item + .form__flow-item::before {
  position: absolute;
  content: "";
  width: 80px;
  width: 5rem;
  height: 40px;
  height: 2.5rem;
  top: 25px;
  top: 1.5625rem;
  left: -90px;
  left: -5.625rem;
  background: url(../img/common/arrow-icon06.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .form__flow-item + .form__flow-item::before {
    width: 2.5rem;
    height: 1.25rem;
    left: -2.8125rem;
  }
}
.form__flow-item.current {
  color: #00418B;
}
.form__flow-item.current span {
  background: #00418B;
}
.form__flow-item 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: 80px;
  width: 5rem;
  height: 80px;
  height: 5rem;
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  border-radius: 50%;
  background: #C3C3C3;
  margin: 0 auto 10px;
  margin: 0 auto 0.625rem;
}
@media screen and (max-width: 767px) {
  .form__flow-item span {
    width: 4.375rem;
    height: 4.375rem;
    font-size: 1.5rem;
  }
}

.form__lead {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.78;
  letter-spacing: 0.04em;
  margin-bottom: 25px;
  margin-bottom: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .form__lead {
    font-size: 1rem;
    margin-bottom: 0.9375rem;
  }
}
.form__lead span {
  color: #03A6E2;
  font-weight: 700;
}

.form__subtitle {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #00418B;
  border-bottom: 1px solid #00418B;
  border-bottom: 0.0625rem solid #00418B;
  padding-bottom: 15px;
  padding-bottom: 0.9375rem;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .form__subtitle {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
  }
}

.form__content {
  background: #fff;
  border-radius: 0.625rem;
  border: 1px solid #00418B;
  border: 0.0625rem solid #00418B;
  padding: 55px 50px;
  padding: 3.4375rem 3.125rem;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="16" /><feOffset dx="1" dy="7" result="offsetblur" /><feFlood flood-color="rgba(0,65,139,0.08)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0px 6px 16px rgba(0, 65, 139, .08));
          filter: drop-shadow(0px 6px 16px rgba(0, 65, 139, .08));
}
@media screen and (max-width: 767px) {
  .form__content {
    padding: 2.5rem 1.25rem;
  }
}
.form__content + .form__content {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .form__content + .form__content {
    margin-top: 1.25rem;
  }
}

.form__item {
  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) {
  .form__item {
    display: block;
  }
}
.form__item + .form__item {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.form__item-label {
  width: 25%;
  padding-top: 15px;
  padding-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .form__item-label {
    width: 100%;
    padding-top: 0;
  }
}
.form__item-label label {
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #00418B;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .form__item-label label {
    font-size: 1rem;
  }
}
.form__item-label span {
  font-size: 16px;
  font-size: 1rem;
  color: #03A6E2;
}

.form__item-input {
  width: 74%;
}
@media screen and (max-width: 767px) {
  .form__item-input {
    width: 100%;
    margin-top: 0.625rem;
  }
}
.form__item-input input[type=text], .form__item-input input[type=tel], .form__item-input input[type=email], .form__item-input textarea, .form__item-input select {
  width: 100%;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  background: #F2F6FA;
  padding: 15px 20px;
  padding: 0.9375rem 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, .form__item-input select {
    font-size: 1rem;
  }
}
.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, .form__item-input select::-webkit-input-placeholder {
  color: #B3B3B3;
}
.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, .form__item-input select::-moz-placeholder {
  color: #B3B3B3;
}
.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, .form__item-input select::-ms-input-placeholder {
  color: #B3B3B3;
}
.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, .form__item-input select::placeholder {
  color: #B3B3B3;
}
.form__item-input input[type=text], .form__item-input input[type=tel], .form__item-input input[type=email] {
  height: 60px;
  height: 3.75rem;
}
.form__item-input textarea {
  resize: none;
  height: 160px;
  height: 10rem;
}
.form__item-input select {
  background: url(../img/common/select-icon.png) no-repeat center right 20px/12px;
  background: url(../img/common/select-icon.png) no-repeat center right 1.25rem/0.75rem;
  color: #000;
}

.form__caution {
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  margin: 15px 0 5px;
  margin: 0.9375rem 0 0.3125rem;
}
@media screen and (max-width: 767px) {
  .form__caution {
    font-size: 1rem;
  }
}

.form__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form__name span {
  text-align: right;
  display: inline-block;
  min-width: 37px;
  min-width: 2.3125rem;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .form__name span {
    font-size: 0.9375rem;
    min-width: 2rem;
  }
}
.form__name input[type=text] {
  width: 220px;
  width: 13.75rem;
  margin-left: 10px;
  margin-left: 0.625rem;
}
@media screen and (max-width: 767px) {
  .form__name input[type=text] {
    width: 6.875rem;
    margin-left: 0.3125rem;
  }
}
.form__name input[type=text]:first-of-type {
  margin-right: 30px;
  margin-right: 1.875rem;
}
@media screen and (max-width: 767px) {
  .form__name input[type=text]:first-of-type {
    margin-right: 0.9375rem;
  }
}

.form__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .form__tel {
    display: block;
  }
}
.form__tel span {
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  margin: 0 12px 0 30px;
  margin: 0 0.75rem 0 1.875rem;
}
@media screen and (max-width: 767px) {
  .form__tel span {
    font-size: 1rem;
    margin-left: 0;
  }
}
.form__tel input[type=tel]:first-child, .form__tel input[type=text]:first-child {
  width: 380px;
  width: 23.75rem;
}
@media screen and (max-width: 767px) {
  .form__tel input[type=tel]:first-child, .form__tel input[type=text]:first-child {
    width: 100%;
  }
}
.form__tel input[type=tel]:last-child, .form__tel input[type=text]:last-child {
  width: 140px;
  width: 8.75rem;
}
@media screen and (max-width: 767px) {
  .form__tel input[type=tel]:last-child, .form__tel input[type=text]:last-child {
    margin-top: 0.625rem;
  }
}

.form__radio {
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
}
.form__radio label {
  display: block;
  margin-top: 16px;
  margin-top: 1rem;
}
.form__radio input[type=text] {
  margin-top: 10px;
  margin-top: 0.625rem;
}
.form__radio input[type=radio] + span {
  cursor: pointer;
  display: inline-block;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  padding-left: 36px;
  padding-left: 2.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .form__radio input[type=radio] + span {
    font-size: 1rem;
    padding-left: 1.5625rem;
  }
}
.form__radio input[type=radio] + span::before, .form__radio input[type=radio] + span::after {
  position: absolute;
  content: "";
}
.form__radio input[type=radio] + span::before {
  display: block;
  background: #fff;
  border-radius: 50%;
  border: 2px solid #03A6E2;
  border: 0.125rem solid #03A6E2;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 28px;
  width: 1.75rem;
  height: 28px;
  height: 1.75rem;
}
@media screen and (max-width: 767px) {
  .form__radio input[type=radio] + span::before {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.form__radio input[type=radio] + span::after {
  height: 18px;
  height: 1.125rem;
  width: 18px;
  width: 1.125rem;
  background: #03A6E2;
  border-radius: 50%;
  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;
}
@media screen and (max-width: 767px) {
  .form__radio input[type=radio] + span::after {
    width: 0.75rem;
    height: 0.75rem;
    left: 0.25rem;
  }
}
.form__radio input[type=radio]:checked + span::after {
  opacity: 1;
}

.form__check {
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .form__check {
    display: block;
  }
}
.form__check label {
  display: block;
  margin-top: 16px;
  margin-top: 1rem;
}
.form__check input[type=text] {
  margin-top: 10px;
  margin-top: 0.625rem;
}
.form__check input[type=checkbox] + span {
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  display: inline-block;
  padding-left: 36px;
  padding-left: 2.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .form__check input[type=checkbox] + span {
    font-size: 1rem;
  }
}
.form__check input[type=checkbox] + span::before, .form__check input[type=checkbox] + span::after {
  position: absolute;
  content: "";
  display: block;
}
.form__check input[type=checkbox] + span::before {
  background: #fff;
  border-radius: 0.25rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 1px solid #00418B;
  border: 0.0625rem solid #00418B;
  width: 28px;
  width: 1.75rem;
  height: 28px;
  height: 1.75rem;
  left: 0;
  top: 50%;
}
.form__check input[type=checkbox] + span::after {
  border-bottom: 2px solid #fff;
  border-bottom: 0.125rem solid #fff;
  border-left: 2px solid #fff;
  border-left: 0.125rem solid #fff;
  height: 9px;
  height: 0.5625rem;
  width: 15px;
  width: 0.9375rem;
  opacity: 0;
  left: 9px;
  left: 0.5625rem;
  top: 40%;
  -webkit-transform: rotate(-45deg) translateY(-50%);
          transform: rotate(-45deg) translateY(-50%);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.form__check input[type=checkbox] + span span {
  font-size: 16px;
  font-size: 1rem;
  color: #03A6E2;
}
.form__check input[type=checkbox]:checked + span::before {
  background: #03A6E2;
  border-color: #03A6E2;
}
.form__check input[type=checkbox]:checked + span::after {
  opacity: 1;
}

.form__select {
  width: 380px;
  width: 23.75rem;
  max-width: 100%;
  background: #F2F6FA;
}

.form__text {
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  line-height: 1.78;
}
@media screen and (max-width: 767px) {
  .form__text {
    font-size: 1rem;
  }
}
.form__text a {
  text-decoration: underline;
  color: #00418B;
}

.form__privacy {
  text-align: center;
  background: #F2F6FA;
  border-radius: 1.25rem;
  margin-top: 35px;
  margin-top: 2.1875rem;
  padding: 30px;
  padding: 1.875rem;
}
@media screen and (max-width: 767px) {
  .form__privacy {
    padding: 1.25rem;
    margin-top: 1.5625rem;
  }
}
.form__privacy input[type=checkbox] + span {
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  cursor: pointer;
  display: inline-block;
  padding-left: 36px;
  padding-left: 2.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .form__privacy input[type=checkbox] + span {
    font-size: 1.125rem;
  }
}
.form__privacy input[type=checkbox] + span::before, .form__privacy input[type=checkbox] + span::after {
  position: absolute;
  content: "";
  display: block;
}
.form__privacy input[type=checkbox] + span::before {
  background: #fff;
  border-radius: 0.25rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 1px solid #00418B;
  border: 0.0625rem solid #00418B;
  width: 28px;
  width: 1.75rem;
  height: 28px;
  height: 1.75rem;
  left: 0;
  top: 50%;
}
.form__privacy input[type=checkbox] + span::after {
  border-bottom: 2px solid #fff;
  border-bottom: 0.125rem solid #fff;
  border-left: 2px solid #fff;
  border-left: 0.125rem solid #fff;
  height: 9px;
  height: 0.5625rem;
  width: 15px;
  width: 0.9375rem;
  opacity: 0;
  left: 9px;
  left: 0.5625rem;
  top: 40%;
  -webkit-transform: rotate(-45deg) translateY(-50%);
          transform: rotate(-45deg) translateY(-50%);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media screen and (max-width: 767px) {
  .form__privacy input[type=checkbox] + span::after {
    top: 45%;
  }
}
.form__privacy input[type=checkbox] + span span {
  font-size: 16px;
  font-size: 1rem;
  color: #03A6E2;
}
.form__privacy input[type=checkbox]:checked + span::before {
  background: #03A6E2;
  border-color: #03A6E2;
}
.form__privacy input[type=checkbox]:checked + span::after {
  opacity: 1;
}

.form__btn-wrapper {
  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;
  gap: 40px;
  gap: 2.5rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .form__btn-wrapper {
    display: block;
  }
}

.form__reset {
  text-align: center;
  display: block;
  width: 200px;
  width: 12.5rem;
  max-width: 100%;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #00418B;
  letter-spacing: 0.04em;
  border-radius: 0.625rem;
  background: rgba(0, 65, 139, .08);
  padding: 16px 0;
  padding: 1rem 0;
}
@media screen and (max-width: 767px) {
  .form__reset {
    width: 100%;
    margin-bottom: 0.625rem;
  }
}
.form__reset:hover {
  opacity: 1;
}

.form__btn {
  display: block;
  width: 370px;
  width: 23.125rem;
  max-width: 100%;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #00418B;
  letter-spacing: 0.04em;
  background: #fff;
  border-radius: 0.625rem;
  border: 1px solid #00418B;
  border: 0.0625rem solid #00418B;
  padding: 25px 0;
  padding: 1.5625rem 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .form__btn {
    width: 100%;
  }
}
.form__btn::after {
  position: absolute;
  content: "";
  width: 8px;
  width: 0.5rem;
  height: 16px;
  height: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 25px;
  right: 1.5625rem;
  background: url(../img/common/arrow-icon01.png) no-repeat center/contain;
}
.form__btn:hover {
  opacity: 1;
}

/* gnav */
.gnav__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.gnav__item {
  text-align: center;
  width: 20%;
}
.gnav__item + .gnav__item {
  position: relative;
}
.gnav__item + .gnav__item::before {
  position: absolute;
  content: "";
  width: 1px;
  width: 0.0625rem;
  height: 18px;
  height: 1.125rem;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: rgba(255, 255, 255, .5);
  z-index: 1;
}
.gnav__item:first-child a {
  border-radius: 0.625rem 0 0 0.625rem;
}
.gnav__item:last-child {
  width: 24%;
}
.gnav__item:last-child::before {
  display: none;
}
.gnav__item:last-child a {
  background: #03A6E2;
  border-radius: 0 0.625rem 0.625rem 0;
}
.gnav__item a {
  display: block;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: #00418B;
  padding: 18px 0;
  padding: 1.125rem 0;
}

/* hamburger */
.hamburger {
  display: block;
  position: absolute;
  z-index: 30;
  right: 20px;
  right: 1.25rem;
  top: 25px;
  top: 1.5625rem;
  width: 25px;
  width: 1.5625rem;
  height: 25px;
  height: 1.5625rem;
  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: 2px;
  height: 0.125rem;
  left: 0;
  background: #000;
  -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: 8px;
  top: 0.5rem;
}
.hamburger__border:nth-child(3) {
  top: 16px;
  top: 1rem;
}

/* header */
.header {
  background: #D4E8FE;
}
.header.orange {
  background: #FAE8CF;
}

.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: 10px 0;
  padding: 0.625rem 0;
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding: 1.25rem 0;
  }
}

.header__logo {
  width: 340px;
  width: 21.25rem;
  max-width: 100%;
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 15.625rem;
  }
}
.header__logo a {
  display: block;
}

.header__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 30px;
  gap: 0 1.875rem;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .header__links {
    display: none;
  }
}

.header__link a {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #00418B;
  padding-left: 0.8em;
  position: relative;
}
.header__link a::before {
  position: absolute;
  content: "-";
  left: 0;
  top: 0;
}

.header__btn-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 10px;
  gap: 0 0.625rem;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .header__btn-wrapper {
    display: none;
  }
}

.header__search {
  width: 200px;
  width: 12.5rem;
  max-width: 100%;
  position: relative;
}
.header__search input[type=text] {
  width: 100%;
  height: 36px;
  height: 2.25rem;
  font-weight: 700;
  background: #fff;
  border-radius: 0.5rem;
  border: 1px solid #ccc;
  border: 0.0625rem solid #ccc;
  padding: 10px 30px 10px 15px;
  padding: 0.625rem 1.875rem 0.625rem 0.9375rem;
}
.header__search input[type=text]::-webkit-input-placeholder {
  font-size: 15px;
  font-size: 0.9375rem;
  color: #C3C3C3;
}
.header__search input[type=text]::-moz-placeholder {
  font-size: 15px;
  font-size: 0.9375rem;
  color: #C3C3C3;
}
.header__search input[type=text]::-ms-input-placeholder {
  font-size: 15px;
  font-size: 0.9375rem;
  color: #C3C3C3;
}
.header__search input[type=text]::placeholder {
  font-size: 15px;
  font-size: 0.9375rem;
  color: #C3C3C3;
}
.header__search input[type=submit] {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 14px;
  right: 0.875rem;
  z-index: 1;
  width: 14px;
  width: 0.875rem;
  height: 14px;
  height: 0.875rem;
  background: url(../img/common/search-icon.png) no-repeat center/contain;
}

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

.header__btn {
  text-align: center;
}
.header__btn:first-child a, .header__btn:first-child span {
  border-radius: 0.5rem 0 0 0.5rem;
  border-right: none;
}
.header__btn:nth-child(2) a, .header__btn:nth-child(2) span {
  border-radius: 0 0.5rem 0.5rem 0;
  border-left: none;
}
.header__btn a, .header__btn span {
  display: block;
  width: 50px;
  width: 3.125rem;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 6px 0;
  padding: 0.375rem 0;
}
.header__btn a {
  color: #C3C3C3;
  background: #F2F2F2;
  border: 1px solid #ccc;
  border: 0.0625rem solid #ccc;
}
.header__btn span {
  color: #fff;
  border: 1px solid #00418B;
  border: 0.0625rem solid #00418B;
  background: #00418B;
}

/* ホバー */
.hover {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.hover:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  opacity: 1;
}

/* lead */
.lead {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  line-height: 1.78;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .lead {
    text-align: left;
    font-size: 1rem;
  }
}

/* list */
.list__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 13px;
  gap: 1.25rem 0.8125rem;
}
@media screen and (max-width: 767px) {
  .list__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.625rem;
  }
}

.list__item {
  text-align: center;
  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;
  min-height: 80px;
  min-height: 5rem;
  font-size: 18px;
  font-size: 1.125rem;
  color: #00418B;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.56;
  border-radius: 0.625rem;
  background: #fff;
  border: 1px solid #00418B;
  border: 0.0625rem solid #00418B;
  padding: 10px;
  padding: 0.625rem;
}
@media screen and (max-width: 767px) {
  .list__item {
    font-size: 1rem;
    min-height: 4.375rem;
  }
}
.list__item.active {
  background: #FAFAFA;
  border-color: #FAFAFA;
}

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

/* 余白 */
.mt100 {
  margin-top: 100px;
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .mt100 {
    margin-top: 3.75rem;
  }
}

.mt80 {
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .mt80 {
    margin-top: 3.75rem;
  }
}

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

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

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

.mt20 {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.mt10 {
  margin-top: 10px;
  margin-top: 0.625rem;
}

/* menu */
.menu.orange .menu__item {
  background: #FCF3ED;
}
.menu.orange .menu__item-subtitle {
  color: #F19303;
}

.menu__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 13px;
  gap: 1.25rem 0.8125rem;
}
@media screen and (max-width: 767px) {
  .menu__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.625rem;
  }
}

.menu__item {
  text-align: center;
  min-height: 200px;
  min-height: 12.5rem;
  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;
  background: #F2F6FA;
  border-radius: 0.625rem;
  padding: 10px;
  padding: 0.625rem;
}
@media screen and (max-width: 767px) {
  .menu__item {
    min-height: 10rem;
  }
}

.menu__item-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  color: #00418B;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .menu__item-subtitle {
    font-size: 2rem;
  }
}

.menu__item-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .menu__item-title {
    font-size: 1.125rem;
  }
}

.menu__item-text {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #00418B;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .menu__item-text {
    font-size: 1.125rem;
  }
}

/* mv */
.mv {
  background: #D4E8FE;
  padding: 30px 0 70px;
  padding: 1.875rem 0 4.375rem;
}
@media screen and (max-width: 767px) {
  .mv {
    padding: 1.25rem 0 3.125rem;
  }
}
.mv.orange {
  background: #FAE8CF;
}
.mv.orange .mv__title {
  color: #F19303;
}

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

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

.mv__back {
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #00418B;
  background: url(../img/common/back-icon.png) no-repeat center left/7px;
  background: url(../img/common/back-icon.png) no-repeat center left/0.4375rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  margin-bottom: 50px;
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 767px) {
  .mv__back {
    font-size: 1rem;
    margin-bottom: 1.875rem;
  }
}

.mv__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #00418B;
}
@media screen and (max-width: 767px) {
  .mv__title {
    font-size: 1.75rem;
  }
}

.mv__text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.78;
  letter-spacing: 0.04em;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .mv__text {
    font-size: 1rem;
  }
}

.mv__btn {
  text-align: center;
  display: block;
  width: 34%;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  color: #fff;
  font-weight: 700;
  background: #05A6E2;
  border-radius: 0.625rem;
  padding: 26px;
  padding: 1.625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .mv__btn {
    width: 100%;
    font-size: 1rem;
    margin-top: 1.25rem;
  }
}
.mv__btn::after {
  position: absolute;
  content: "";
  width: 7px;
  width: 0.4375rem;
  height: 14px;
  height: 0.875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 30px;
  right: 1.875rem;
  background: url(../img/common/arrow-icon03.png) no-repeat center/contain;
}

.mv__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  border-radius: 0.625rem;
  margin-top: 55px;
  margin-top: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .mv__box {
    display: block;
    margin-top: 1.875rem;
  }
}

.mv__box-body {
  width: 50%;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px 60px;
  padding: 1.25rem 3.75rem;
}
@media screen and (max-width: 767px) {
  .mv__box-body {
    width: 100%;
    display: block;
    padding: 1.5625rem 1.25rem;
  }
}

.mv__box-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 32px;
  font-size: 2rem;
  color: #00418B;
  font-weight: 700;
  line-height: 1.56;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .mv__box-title {
    font-size: 1.375rem;
  }
}

.mv__box-text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2;
  letter-spacing: 0.04em;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .mv__box-text {
    font-size: 1rem;
    margin-top: 0.9375rem;
  }
}

.mv__box-img {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .mv__box-img {
    width: 100%;
  }
}
.mv__box-img img {
  border-radius: 0 0.625rem 0.625rem 0;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .mv__box-img img {
    border-radius: 0 0 0.625rem 0.625rem;
    height: auto;
  }
}

.mv__notes {
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  background: #FFF2F4;
  border-radius: 0.625rem;
  padding: 35px 50px 35px 95px;
  padding: 2.1875rem 3.125rem 2.1875rem 5.9375rem;
  margin-top: 25px;
  margin-top: 1.5625rem;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="16" /><feOffset dx="1" dy="7" result="offsetblur" /><feFlood flood-color="rgba(0,65,139,0.08)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0px 6px 16px rgba(0, 65, 139, .08));
          filter: drop-shadow(0px 6px 16px rgba(0, 65, 139, .08));
  position: relative;
}
@media screen and (max-width: 767px) {
  .mv__notes {
    font-size: 1rem;
    padding: 1.5625rem 1.25rem 1.5625rem 3.125rem;
    margin-top: 0.9375rem;
  }
}
.mv__notes::before {
  position: absolute;
  content: "";
  width: 32px;
  width: 2rem;
  height: 32px;
  height: 2rem;
  left: 50px;
  left: 3.125rem;
  top: 35px;
  top: 2.1875rem;
  background: url(../img/common/notes-icon02.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .mv__notes::before {
    width: 1.5625rem;
    height: 1.5625rem;
    left: 0.9375rem;
    top: 1.5625rem;
  }
}
.mv__notes span {
  display: inline-block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #C90025;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 767px) {
  .mv__notes span {
    font-size: 1.125rem;
  }
}

/* news */
.news__items {
  border-bottom: 1px solid #ccc;
  border-bottom: 0.0625rem solid #ccc;
}

.news__item {
  border-top: 1px solid #ccc;
  border-top: 0.0625rem solid #ccc;
}

.news__item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0 30px;
  gap: 0 1.875rem;
  padding: 40px 80px 40px 0;
  padding: 2.5rem 5rem 2.5rem 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .news__item-inner {
    display: block;
    padding: 1.5625rem 1.25rem 1.5625rem 0;
  }
}
.news__item-inner::after {
  position: absolute;
  content: "";
  width: 7px;
  width: 0.4375rem;
  height: 14px;
  height: 0.875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 25px;
  right: 1.5625rem;
  background: url(../img/common/arrow-icon01.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .news__item-inner::after {
    right: 0.625rem;
  }
}

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

.news__item-date {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  min-width: 116px;
  min-width: 7.25rem;
}
@media screen and (max-width: 767px) {
  .news__item-date {
    font-size: 1rem;
    min-width: 6.875rem;
  }
}

.news__item-category {
  text-align: center;
}
.news__item-category span {
  display: inline-block;
  min-width: 140px;
  min-width: 8.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #00418B;
  border-radius: 1.25rem;
  border: 1px solid #00418B;
  border: 0.0625rem solid #00418B;
  padding: 5px 10px;
  padding: 0.3125rem 0.625rem;
}
@media screen and (max-width: 767px) {
  .news__item-category span {
    min-width: 7.5rem;
    font-size: 0.9375rem;
    padding: 0.1875rem 0.625rem;
  }
}

.news__item-title {
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .news__item-title {
    font-size: 1rem;
    margin-top: 0.625rem;
  }
}

/* notes */
.notes {
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  background: #F2F6FA;
  border-radius: 0.625rem;
  padding: 38px 50px 38px 95px;
  padding: 2.375rem 3.125rem 2.375rem 5.9375rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .notes {
    font-size: 1rem;
    padding: 1.5625rem 1.25rem 1.5625rem 3.125rem;
  }
}
.notes::before {
  position: absolute;
  content: "";
  width: 32px;
  width: 2rem;
  height: 32px;
  height: 2rem;
  left: 50px;
  left: 3.125rem;
  top: 35px;
  top: 2.1875rem;
  background: url(../img/common/notes-icon.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .notes::before {
    width: 1.5625rem;
    height: 1.5625rem;
    left: 0.9375rem;
    top: 1.5625rem;
  }
}
.notes span {
  display: inline-block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #00418B;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 767px) {
  .notes span {
    font-size: 1.125rem;
  }
}
.notes li {
  padding-left: 1em;
  position: relative;
}
.notes li::before {
  position: absolute;
  content: "・";
  top: 0;
  left: 0;
}
.notes a {
  color: #00418B;
  text-decoration: underline;
}

.bg .notes {
  background: #fff;
  -webkit-box-shadow: 0px 6px 16px rgba(0, 65, 139, .08);
          box-shadow: 0px 6px 16px rgba(0, 65, 139, .08);
}

/* orange */
body.orange .header, body.orange .breadcrumb, body.orange .mv {
  background: #FAE8CF;
}
body.orange .box, body.orange .box__title {
  border-color: #F19303;
}
body.orange .title, body.orange .subtitle, body.orange .mv__title, body.orange .box__title, body.orange .card-title, body.orange .box__point-item, body.orange .menu__item-subtitle {
  color: #F19303;
}
body.orange .bg, body.orange .box__point-item, body.orange .menu__item {
  background: #FCF3ED;
}
body.orange .box__sublist-item::before {
  background: #F19303;
}
body.orange .cv .title {
  color: #fff;
}

/* pagination */
.pagination {
  margin-top: 40px;
  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: 10px;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .pagination ul {
    gap: 0.375rem;
  }
}
.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: 60px;
  width: 3.75rem;
  min-width: 60px;
  min-width: 3.75rem;
  height: 60px;
  height: 3.75rem;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  color: #00418B;
  border-radius: 0.625rem;
  border: 1px solid #00418B;
  border: 0.0625rem solid #00418B;
}
@media screen and (max-width: 767px) {
  .pagination a, .pagination span {
    width: 2.8125rem;
    min-width: 2.8125rem;
    height: 2.8125rem;
    font-size: 1rem;
  }
}
.pagination .current {
  background: #00418B;
  color: #fff;
}
.pagination .dots {
  border: none;
  width: unset;
  min-width: unset;
}
.pagination .prev {
  background: url(../img/common/back-icon.png) no-repeat center/8px;
  background: url(../img/common/back-icon.png) no-repeat center/0.5rem;
  margin-right: 20px;
  margin-right: 1.25rem;
}
@media screen and (max-width: 767px) {
  .pagination .prev {
    background-size: 0.375rem;
    margin-right: 0.625rem;
  }
}
.pagination .next {
  background: url(../img/common/arrow-icon01.png) no-repeat center/8px;
  background: url(../img/common/arrow-icon01.png) no-repeat center/0.5rem;
  margin-left: 20px;
  margin-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .pagination .next {
    background-size: 0.375rem;
    margin-left: 0.625rem;
  }
}

/* post */
.post__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  gap: 1.25rem;
}

.post__date {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .post__date {
    font-size: 1rem;
  }
}

.post__category {
  text-align: center;
}
.post__category span {
  display: inline-block;
  min-width: 140px;
  min-width: 8.75rem;
  background: #fff;
  font-weight: 700;
  color: #00418B;
  border-radius: 1rem;
  border: 1px solid #00418B;
  border: 0.0625rem solid #00418B;
  padding: 3px 14px;
  padding: 0.1875rem 0.875rem;
}
@media screen and (max-width: 767px) {
  .post__category span {
    min-width: 7.5rem;
  }
}

.post__title {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #00418B;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .post__title {
    font-size: 1.125rem;
    margin-top: 1.25rem;
  }
}

.post__content {
  border-top: 1px solid #ccc;
  border-top: 0.0625rem solid #ccc;
  border-bottom: 1px solid #ccc;
  border-bottom: 0.0625rem solid #ccc;
  margin-top: 45px;
  margin-top: 2.8125rem;
  padding: 55px 0;
  padding: 3.4375rem 0;
}
@media screen and (max-width: 767px) {
  .post__content {
    margin-top: 1.875rem;
    padding: 2.5rem 0;
  }
}
.post__content h2, .post__content h3, .post__content h4, .post__content h5, .post__content h6 {
  font-weight: 700;
  color: #00418B;
  letter-spacing: 0.04em;
  margin: 0;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
.post__content h2 {
  font-size: 24px;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .post__content h2 {
    font-size: 1.25rem;
  }
}
.post__content h3 {
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .post__content h3 {
    font-size: 1.125rem;
  }
}
.post__content h4, .post__content h5, .post__content h6 {
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .post__content h4, .post__content h5, .post__content h6 {
    font-size: 0.9375rem;
  }
}
.post__content p {
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  line-height: 1.56;
}
@media screen and (max-width: 767px) {
  .post__content p {
    font-size: 1rem;
  }
}
.post__content p:not(:last-child) {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
.post__content p a {
  word-break: break-all;
  color: #00418B;
  text-decoration: underline;
}
.post__content figure:not(:last-child) {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
.post__content ul:not(:last-child), .post__content ol:not(:last-child) {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
.post__content li {
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  padding-left: 1em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .post__content li {
    font-size: 1rem;
  }
}
.post__content li::before {
  position: absolute;
  content: "・";
  left: 0;
  top: 0;
}

.post__btn {
  margin: 60px auto 0;
  margin: 3.75rem auto 0;
}
@media screen and (max-width: 767px) {
  .post__btn {
    margin-top: 2.5rem;
  }
}
.post__btn::after {
  right: unset;
  left: 30px;
  left: 1.875rem;
  background: url(../img/common/back-icon.png) no-repeat center/contain;
}

/* related */
.related {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 0.625rem;
  background: #FAFAFA;
  padding: 46px 50px;
  padding: 2.875rem 3.125rem;
}
@media screen and (max-width: 767px) {
  .related {
    display: block;
    padding: 1.875rem 1.25rem;
  }
}

.related__title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .related__title {
    font-size: 1.125rem;
  }
}

.related__links {
  margin-left: 14px;
  margin-left: 0.875rem;
}
@media screen and (max-width: 767px) {
  .related__links {
    margin-left: 0;
    margin-top: 0.625rem;
  }
}

.related__link + .related__link {
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .related__link + .related__link {
    margin-top: 0.625rem;
  }
}
.related__link a {
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  color: #00418B;
  letter-spacing: 0.04em;
  text-decoration: underline;
  background: url(../img/common/link-icon.png) no-repeat left top 5px/16px;
  background: url(../img/common/link-icon.png) no-repeat left top 0.3125rem/1rem;
  padding-left: 21px;
  padding-left: 1.3125rem;
}
@media screen and (max-width: 767px) {
  .related__link a {
    font-size: 1rem;
  }
}

.bg .related {
  -webkit-box-shadow: 0px 6px 16px rgba(0, 65, 139, .08);
          box-shadow: 0px 6px 16px rgba(0, 65, 139, .08);
}

/* sidebar */
.sidebar__unit {
  background: #F2F6FA;
  border-radius: 0.625rem;
  padding: 35px 30px 40px;
  padding: 2.1875rem 1.875rem 2.5rem;
}
.sidebar__unit + .sidebar__unit {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.sidebar__subtitle {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #00418B;
  border-bottom: 1px solid #00418B;
  border-bottom: 0.0625rem solid #00418B;
  padding-bottom: 25px;
  padding-bottom: 1.5625rem;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 767px) {
  .sidebar__subtitle {
    font-size: 1.125rem;
    padding-bottom: 0.9375rem;
    margin-bottom: 1.25rem;
  }
}

.sidebar__link + .sidebar__link {
  margin-top: 15px;
  margin-top: 0.9375rem;
}
.sidebar__link a {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #00418B;
  background: url(../img/common/arrow-icon01.png) no-repeat center left/8px;
  background: url(../img/common/arrow-icon01.png) no-repeat center left/0.5rem;
  padding-left: 17px;
  padding-left: 1.0625rem;
}

/* statistics */
.statistics__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 18px;
  gap: 0 1.125rem;
}
@media screen and (max-width: 767px) {
  .statistics__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem 0.625rem;
  }
}

.statistics__item {
  text-align: center;
  border-radius: 0.625rem;
  background: #F2F6FA;
  color: #00418B;
  padding: 50px 20px 35px;
  padding: 3.125rem 1.25rem 2.1875rem;
}
@media screen and (max-width: 767px) {
  .statistics__item {
    padding: 1.875rem 0.625rem 1.25rem;
  }
}

.statistics__item-number {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .statistics__item-number {
    font-size: 2rem;
  }
}

.statistics__item-text {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (max-width: 767px) {
  .statistics__item-text {
    font-size: 1rem;
  }
}

/* subtitle */
.subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #00418B;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .subtitle {
    font-size: 1.25rem;
  }
}
.subtitle.green {
  color: #6FC759;
}
.subtitle.orange {
  color: #00418B;
}

/* tab */
.tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 15px;
  gap: 0.625rem 0.9375rem;
  border-bottom: 1px solid #00418B;
  border-bottom: 0.0625rem solid #00418B;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .tab {
    padding-bottom: 0.625rem;
    gap: 0.3125rem 0.625rem;
  }
}
.tab a, .tab span {
  display: inline-block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  background: #fff;
  border: 1px solid #00418B;
  border: 0.0625rem solid #00418B;
  border-radius: 1.625rem;
  padding: 4px 19px;
  padding: 0.25rem 1.1875rem;
}
@media screen and (max-width: 767px) {
  .tab a, .tab span {
    font-size: 1rem;
    padding: 0.1875rem 0.9375rem;
  }
}
.tab a {
  color: #00418B;
}
.tab span, .tab a.current {
  color: #fff;
  background: #00418B;
}

/* table */
@media screen and (max-width: 767px) {
  .table-wrapper {
    overflow: auto;
  }
}

.table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid #00418B;
  border: 0.0625rem solid #00418B;
  border-radius: 0.625rem;
  -webkit-box-shadow: 0px 6px 16px rgba(0, 65, 139, .08);
          box-shadow: 0px 6px 16px rgba(0, 65, 139, .08);
  -webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 767px) {
  .table {
    width: 50rem;
  }
}
.table tr:not(:first-child) th, .table tr:not(:first-child) td {
  border-top: 1px solid #ccc;
  border-top: 0.0625rem solid #ccc;
}
.table tr:first-child th {
  color: #fff;
  background: #00418B;
  padding: 17px 20px 17px 40px;
  padding: 1.0625rem 1.25rem 1.0625rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .table tr:first-child th {
    padding: 1.25rem 0.625rem 1.25rem 1.25rem;
  }
}
.table th, .table td {
  text-align: left;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  padding: 26px 20px 26px 40px;
  padding: 1.625rem 1.25rem 1.625rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .table th, .table td {
    font-size: 1rem;
    padding: 1.25rem 0.625rem 1.25rem 1.25rem;
  }
}
.table th:not(:first-child), .table td:not(:first-child) {
  border-left: 1px solid #ccc;
  border-left: 0.0625rem solid #ccc;
}
.table th {
  font-weight: 700;
  background: #F8F8F8;
  color: #00418B;
}
.table td {
  background: #fff;
}
.table a {
  text-decoration: underline;
  color: #00418B;
}
.table .tel {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  background: url(../img/common/tel-icon02.png) no-repeat center left/23px;
  background: url(../img/common/tel-icon02.png) no-repeat center left/1.4375rem;
  padding-left: 32px;
  padding-left: 2rem;
  margin-right: 40px;
  margin-right: 2.5rem;
}
.table .mail {
  text-align: center;
  display: block;
  width: 370px;
  width: 23.125rem;
  max-width: 100%;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #00418B;
  background: rgba(0, 65, 139, .08);
  border: 1px solid transparent;
  border: 0.0625rem solid transparent;
  border-radius: 0.625rem;
  padding: 25px;
  padding: 1.5625rem;
  text-decoration: none;
  position: relative;
}
@media screen and (max-width: 767px) {
  .table .mail {
    width: 100%;
  }
}
.table .mail::before, .table .mail::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.table .mail::before {
  width: 32px;
  width: 2rem;
  height: 23px;
  height: 1.4375rem;
  left: 20px;
  left: 1.25rem;
  background: url(../img/common/mail-icon02.png) no-repeat center/contain;
}
.table .mail:after {
  width: 8px;
  width: 0.5rem;
  height: 16px;
  height: 1rem;
  right: 20px;
  right: 1.25rem;
  background: url(../img/common/arrow-icon01.png) no-repeat center/contain;
}

/* text */
.text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.67;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .text {
    font-size: 1rem;
  }
}
.text:not(:last-child) {
  margin-bottom: 25px;
  margin-bottom: 1.5625rem;
}
.text.green {
  color: #6FC759;
}
.text.orange {
  color: #00418B;
}

/* title */
.title {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  color: #00418B;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .title {
    font-size: 1.5rem;
    line-height: 1.35;
  }
}
.title.green {
  color: #6FC759;
}
.title.orange {
  color: #F19303;
}

/* unit */
.unit {
  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) {
  .unit {
    display: block;
  }
}
.unit:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.unit__img {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .unit__img {
    width: 100%;
  }
}
.unit__img img {
  border-radius: 0.625rem;
}

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

.unit__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #00418B;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .unit__title {
    font-size: 1.25rem;
  }
}

.unit__text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.67;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .unit__text {
    font-size: 1rem;
  }
}
.unit__text:not(:first-child) {
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .unit__text:not(:first-child) {
    margin-top: 0.9375rem;
  }
}

.unit__subtitle {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #00418B;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .unit__subtitle {
    font-size: 1rem;
    margin-top: 0.9375rem;
  }
}

.unit__box {
  border-radius: 0.625rem;
  background: #F2F6FA;
  margin-top: 25px;
  margin-top: 1.5625rem;
  padding: 35px 40px;
  padding: 2.1875rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .unit__box {
    padding: 1.25rem;
    margin-top: 1.25rem;
  }
}

.unit__box-title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #00418B;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .unit__box-title {
    font-size: 1rem;
  }
}

.unit__box-text {
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  line-height: 1.67;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .unit__box-text {
    font-size: 1rem;
  }
}

/* top-mv */
.top-mv {
  background: #D4E8FE;
  padding: 60px 0 340px;
  padding: 3.75rem 0 21.25rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top-mv {
    padding: 1.875rem 0 6.25rem;
  }
}
.top-mv::before {
  position: absolute;
  content: "";
  width: 1440px;
  width: 90rem;
  max-width: 100%;
  height: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
  background: url(../img/top/top-mv-bg.png) no-repeat center bottom/cover;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .top-mv::before {
    background-size: contain;
  }
}

.top-mv__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) {
  .top-mv__inner {
    display: block;
  }
}

.top-mv__titles {
  width: 50%;
  margin-top: -10px;
  margin-top: -0.625rem;
}
@media screen and (max-width: 767px) {
  .top-mv__titles {
    width: 100%;
    margin-top: 0;
  }
}

.top-mv__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 48px;
  font-size: 3rem;
  font-weight: 700;
  color: #00418B;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.23;
}
@media screen and (max-width: 767px) {
  .top-mv__title {
    font-size: 2.25rem;
  }
}

.top-mv__text {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .top-mv__text {
    font-size: 1rem;
  }
}

.top-mv__slider {
  width: 44%;
}
@media screen and (max-width: 767px) {
  .top-mv__slider {
    width: 100%;
    margin-top: 2.5rem;
  }
}

.top-mv__slider-items {
  display: none;
}
.top-mv__slider-items.slick-initialized {
  display: block;
}
.top-mv__slider-items .slider-dot {
  text-align: center;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  bottom: -30px;
  bottom: -1.875rem;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
  gap: 0.9375rem;
}
.top-mv__slider-items .slider-dot li {
  display: inline-block;
  background: #fff;
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
  border-radius: 50%;
  cursor: pointer;
}
.top-mv__slider-items .slider-dot li button {
  text-indent: -9999px;
}
.top-mv__slider-items .slider-dot li.slick-active {
  background: #00418B;
}

.top-mv__slider-item {
  position: relative;
}

.top-mv__slider-item-inner {
  display: block;
}

.top-mv__slider-item-img img {
  border-radius: 0.625rem;
  -webkit-box-shadow: 0px 3px 20px rgba(0, 0, 0, .16);
          box-shadow: 0px 3px 20px rgba(0, 0, 0, .16);
}

.top-mv__slider-item-text {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
  font-weight: 700;
  color: #fff;
  padding: 12px 20px;
  padding: 0.75rem 1.25rem;
  line-height: 1.56;
  background: rgba(0, 65, 139, .9);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top-mv__slider-item-text {
    font-size: 0.8125rem;
    padding: 0.625rem 0.9375rem;
  }
}

/* top-news */
.top-news {
  padding: 80px 0;
  padding: 5rem 0;
}
@media screen and (max-width: 767px) {
  .top-news {
    padding: 3.75rem 0;
  }
}

.top-news__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 0 60px;
  gap: 0 3.75rem;
}
@media screen and (max-width: 767px) {
  .top-news__header {
    display: block;
  }
}

.top-news__titles {
  white-space: nowrap;
}

.top-news__subtitle {
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.1em;
  color: #00418B;
  font-weight: 600;
}

.top-news__title {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  color: #00418B;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .top-news__title {
    font-size: 1.75rem;
  }
}

.top-news__content {
  margin-top: 35px;
  margin-top: 2.1875rem;
  display: none;
}
@media screen and (max-width: 767px) {
  .top-news__content {
    margin-top: 1.5625rem;
  }
}
.top-news__content.active {
  display: block;
  -webkit-animation-name: displayAnime;
          animation-name: displayAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.top-news__content .news__item-category span {
  min-width: 120px;
  min-width: 7.5rem;
}
.top-news__content .news__item-title {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

@-webkit-keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* top-pickup */
.top-pickup {
  background: #F2F6FA;
  padding: 55px 0 90px;
  padding: 3.4375rem 0 5.625rem;
}
@media screen and (max-width: 767px) {
  .top-pickup {
    padding: 2.8125rem 0 3.75rem;
  }
}

.top-pickup__title {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #00418B;
}
@media screen and (max-width: 767px) {
  .top-pickup__title {
    font-size: 1.75rem;
  }
}

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

/* top-related */
.top-related {
  background: #00418B;
  padding: 40px 0;
  padding: 2.5rem 0;
}

.top-related__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 43px;
  gap: 0 2.6875rem;
}
@media screen and (max-width: 767px) {
  .top-related__inner {
    display: block;
  }
}

.top-related__title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  padding-top: 20px;
  padding-top: 1.25rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .top-related__title {
    font-size: 1.375rem;
    padding-top: 0;
  }
}

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

@media screen and (max-width: 767px) {
  .top-related__link + .top-related__link {
    margin-top: 0.625rem;
  }
}
.top-related__link:first-child, .top-related__link:nth-child(2), .top-related__link:nth-child(3) {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(33.333% - 0.83333rem);
          flex: 0 1 calc(33.333% - 0.83333rem);
}
.top-related__link:first-child, .top-related__link:nth-child(2), .top-related__link:nth-child(3), .top-related__link:nth-child(4), .top-related__link:nth-child(5), .top-related__link:nth-child(6), .top-related__link:nth-child(7), .top-related__link:nth-child(8) {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(25% - 0.9375rem);
          flex: 0 1 calc(25% - 0.9375rem);
}
.top-related__link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 80px;
  min-height: 5rem;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.39;
  background: #F2F6FA;
  color: #00418B;
  border-radius: 0.625rem;
  padding: 10px 20px 10px 30px;
  padding: 0.625rem 1.25rem 0.625rem 1.875rem;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .top-related__link a {
    padding: 0.9375rem 0.9375rem;
  }
}
@media screen and (max-width: 767px) {
  .top-related__link a {
    font-size: 1rem;
  }
}
.top-related__link a::after {
  position: absolute;
  content: "";
  width: 10px;
  width: 0.625rem;
  height: 10px;
  height: 0.625rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 30px;
  right: 1.875rem;
  background: url(../img/common/link-icon02.png) no-repeat center/contain;
}
@media screen and (max-width: 1200px) {
  .top-related__link a::after {
    right: 1.25rem;
  }
}

/* top-service */
.top-service {
  padding: 60px 0;
  padding: 3.75rem 0;
  background: url(../img/top/top-service-bg.png) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .top-service {
    padding: 2.5rem 0;
  }
}

.top-service__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  gap: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .top-service__items {
    grid-template-columns: repeat(1, 1fr);
  }
}

.top-service__item:first-child .top-service__item-img, .top-service__item:nth-child(2) .top-service__item-img, .top-service__item:nth-child(5) .top-service__item-img, .top-service__item:nth-child(6) .top-service__item-img, .top-service__item:nth-child(7) .top-service__item-img, .top-service__item:nth-child(8) .top-service__item-img, .top-service__item:nth-child(9) .top-service__item-img, .top-service__item:nth-child(10) .top-service__item-img, .top-service__item:nth-child(13) .top-service__item-img {
  width: 110px;
  width: 6.875rem;
}
@media screen and (max-width: 767px) {
  .top-service__item:first-child .top-service__item-img, .top-service__item:nth-child(2) .top-service__item-img, .top-service__item:nth-child(5) .top-service__item-img, .top-service__item:nth-child(6) .top-service__item-img, .top-service__item:nth-child(7) .top-service__item-img, .top-service__item:nth-child(8) .top-service__item-img, .top-service__item:nth-child(9) .top-service__item-img, .top-service__item:nth-child(10) .top-service__item-img, .top-service__item:nth-child(13) .top-service__item-img {
    width: 50%;
  }
}
.top-service__item:nth-child(3) .top-service__item-img, .top-service__item:nth-child(4) .top-service__item-img {
  width: 150px;
  width: 9.375rem;
  margin-bottom: -15px;
  margin-bottom: -0.9375rem;
}
@media screen and (max-width: 767px) {
  .top-service__item:nth-child(3) .top-service__item-img, .top-service__item:nth-child(4) .top-service__item-img {
    width: 60%;
    margin-bottom: 0;
  }
}

.top-service__item-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%;
  min-height: 400px;
  min-height: 25rem;
  background: #fff;
  border-radius: 2.5rem;
  padding: 30px 30px 20px;
  padding: 1.875rem 1.875rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .top-service__item-inner {
    border-radius: 1.25rem;
    padding: 1.25rem 0.9375rem;
    min-height: unset;
    height: auto;
  }
}

.top-service__item-number {
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 600;
  color: #00418B;
}
@media screen and (max-width: 767px) {
  .top-service__item-number {
    font-size: 2.25rem;
  }
}

.top-service__item-title {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  color: #00418B;
  font-weight: 700;
  line-height: 1.25;
}
@media screen and (max-width: 767px) {
  .top-service__item-title {
    font-size: 1.125rem;
  }
}

.top-service__item-text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.39;
  margin-top: 15px;
  margin-top: 0.9375rem;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 767px) {
  .top-service__item-text {
    font-size: 1rem;
    margin-bottom: 0;
  }
}

.top-service__item-img {
  max-width: 100%;
  margin: auto auto 0;
}
@media screen and (max-width: 767px) {
  .top-service__item-img {
    margin-top: 1.25rem;
  }
}
/*# sourceMappingURL=style.css.map */
