/*
style
*/
* {
  margin: 0;
  padding: 0;
}

html, body, input, textarea, button {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 2.625;
}

html {
  scroll-behavior: smooth;
}

:target {
  scroll-margin-top: 95px;
}
@media screen and (max-width: 1050px) {
  :target {
    scroll-margin-top: 70px;
  }
}

body {
  background: #fff;
  color: #041138;
  line-height: 1.5;
  overflow-wrap: break-word;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 1rem;
  margin: 0;
}

a {
  color: #041138;
  text-underline-position: under;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

.for-tablet {
  display: none;
}
@media screen and (max-width: 1050px) {
  .for-tablet {
    display: block;
  }
}

.for-mobile {
  display: none;
}
@media screen and (max-width: 750px) {
  .for-mobile {
    display: block;
  }
}

.for-mobile-mini {
  display: none;
}
@media screen and (max-width: 389px) {
  .for-mobile-mini {
    display: block;
  }
}

.wrapper {
  position: relative;
}

/* common item */
.section__title {
  padding-top: 120px;
}
@media screen and (max-width: 750px) {
  .section__title {
    padding-top: 50px;
  }
}

.section__title-large {
  display: block;
  text-align: center;
}
.section__title-large span {
  display: inline-block;
  vertical-align: top;
  font-family: "Helvetica", "Noto Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 90px;
  line-height: 1.309;
  letter-spacing: 0.06em;
  color: #081E6B;
  background: #3FBBD7;
  background: linear-gradient(90deg, #3FBBD7 0%, #081E6B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}
@media screen and (max-width: 750px) {
  .section__title-large span {
    font-family: "Helvetica", "Noto Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 60px;
    line-height: 1.309;
    letter-spacing: 0.06em;
  }
  .section__university .section__title-large span {
    font-size: 50px;
    font-size: min(13.3333333333vw, 50px);
  }
}

.section__title-caption {
  display: block;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  line-height: 1.309;
  letter-spacing: 0.07em;
  color: #21659C;
}
@media screen and (max-width: 750px) {
  .section__title-caption {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 700;
  }
}

.section__content {
  max-width: 1250px;
  margin-right: auto;
  margin-left: auto;
  padding: 0 25px 120px;
}
@media screen and (max-width: 750px) {
  .section__content {
    padding-bottom: 50px;
  }
}
.section__title + .section__content {
  margin-top: 50px;
}
@media screen and (max-width: 750px) {
  .section__title + .section__content {
    margin-top: 30px;
  }
}
.section__news .section__content {
  padding-bottom: 100px;
}
@media screen and (max-width: 750px) {
  .section__news .section__content {
    padding-bottom: 50px;
  }
}
.section__scheme .section__content {
  padding-bottom: 0;
}
.section__content.scheme-3 {
  padding-bottom: 0;
}
@media screen and (max-width: 750px) {
  .section__content.scheme-3 {
    padding-right: 0;
    padding-left: 0;
  }
}

/* header */
.header {
  width: 100%;
  background: #fff;
  height: 85px;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 9990;
}
@media screen and (max-width: 1050px) {
  .header {
    transition: height 0.2s ease-in-out;
  }
}
@media screen and (max-width: 750px) {
  .header {
    height: 60px;
  }
}
@media screen and (max-width: 1050px) {
  .header:has(:checked) {
    background: #F3FAFD;
    height: 100vh;
    transition: height 0.5s ease-in-out, background-color 0.5s linear;
  }
}

.header__inner {
  max-width: 1390px;
  height: 100%;
  margin-right: auto;
  margin-left: auto;
  padding: 0 50px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 1050px) {
  .header__inner {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
    padding-right: 25px;
    padding-bottom: 40px;
    padding-left: 25px;
    overflow-y: auto;
  }
  .header__inner::-webkit-scrollbar {
    background: rgba(0, 0, 0, 0);
    width: 8px;
    height: 8px;
  }
  .header__inner::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0);
    border-radius: 16px;
  }
}

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

@media screen and (max-width: 1050px) {
  .header__nav {
    display: none;
  }
}
:checked ~ .header__nav {
  display: block;
}
@media screen and (max-width: 1050px) {
  :checked ~ .header__nav {
    margin-top: 125px;
  }
}
@media screen and (max-width: 750px) {
  :checked ~ .header__nav {
    margin-top: 100px;
  }
}

.header__link-list-001 {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  gap: 40px;
}
@media screen and (max-width: 1050px) {
  .header__link-list-001 {
    flex-direction: column;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 1050px) {
  .header__link-list-001 li {
    display: block;
    text-align: center;
  }
}
.header__link-list-001 li a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 1.3888888889;
  letter-spacing: 1.5px;
  color: #041138;
  text-decoration: none;
}
@media screen and (hover: hover) {
  .header__link-list-001 li a {
    transition: color 0.5s;
  }
  .header__link-list-001 li a:hover {
    color: #3FBBD7;
  }
}

@media screen and (max-width: 1050px) {
  .header__cta {
    display: none;
  }
}
:checked ~ .header__cta {
  display: block;
}
.header__cta a {
  display: flex;
  width: 181px;
  height: 54px;
  margin-right: auto;
  margin-left: auto;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  text-decoration: none;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 1.3888888889;
  letter-spacing: 1.5px;
  background: #C1C8EB;
  background: linear-gradient(90deg, #B3E2F2 0%, #C1C8EB 50%, #B3E2F2 100%);
  background-size: 200% auto;
  background-position: 100% 0;
}
@media screen and (hover: hover) {
  .header__cta a {
    transition: background 1s;
  }
  .header__cta a:hover {
    background: #C1C8EB;
    background: linear-gradient(90deg, #B3E2F2 0%, #C1C8EB 50%, #B3E2F2 100%);
    background-size: 200% auto;
    background-position: 0 0;
  }
}
@media screen and (max-width: 1050px) {
  .header__cta a {
    width: 220px;
  }
}

.header-menu__toggle {
  display: none;
  width: 40px;
  height: 0;
  padding-top: 40px;
  color: transparent;
  overflow: hidden;
  cursor: pointer;
  position: fixed;
  top: 22.5px;
  right: 18px;
  z-index: 9999;
  background: url(../img/menu_icon.svg) no-repeat 0 0;
  background-size: 100% auto;
}
:checked ~ .header-menu__toggle {
  background-image: url(../img/close_icon.svg);
}
@media screen and (max-width: 1050px) {
  .header-menu__toggle {
    display: block;
  }
}
@media screen and (max-width: 750px) {
  .header-menu__toggle {
    top: 10px;
  }
}

/* ------------------------- */
@media screen and (max-width: 750px) {
  .contents {
    padding-bottom: 30px;
  }
}

/* heroimage */
.heroimage {
  width: 100%;
  height: 0;
  padding-top: 52.0833333333%;
  overflow: hidden;
  color: transparent;
  background: url(../img/heroimage_pc.jpg) no-repeat 0 0;
  background-size: 100% auto;
}
@media screen and (max-width: 750px) {
  .heroimage {
    padding-top: 130.6666666667%;
    background-image: url(../img/heroimage_sp.jpg);
  }
}

/* intro */
@media screen and (max-width: 750px) {
  .section__intro {
    padding-bottom: 30px;
  }
}

.intro__title {
  text-align: center;
  padding-top: 120px;
}
@media screen and (max-width: 750px) {
  .intro__title {
    padding-top: 80px;
  }
}
.intro__title span {
  display: inline-block;
  vertical-align: top;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 32px;
  line-height: 1.3125;
  color: #081E6B;
  background: #3FBBD7;
  background: linear-gradient(90deg, #3FBBD7 0%, #081E6B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}
@media screen and (max-width: 750px) {
  .intro__title span {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 1.3888888889;
    letter-spacing: 1.5px;
    font-weight: 700;
  }
}

.intro__content {
  margin-top: 40px;
  padding-right: 25px;
  padding-left: 25px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 2.625;
  color: #041138;
  text-align: center;
}
@media screen and (max-width: 1050px) {
  .intro__content {
    text-align: left;
  }
  .intro__content br.for-pc {
    display: none;
  }
}
@media screen and (max-width: 750px) {
  .intro__content {
    margin-top: 20px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 1.875;
    letter-spacing: 0.03em;
  }
}
.intro__content p + p {
  margin-top: 20px;
}

/* NEWS */
.news__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .news__list {
    flex-wrap: wrap;
    justify-content: space-evenly;
    column-gap: 30px;
  }
}
@media screen and (max-width: 1050px) {
  .news__list {
    justify-content: space-between;
  }
}
.news__list:before {
  content: "";
  display: block;
  width: 280px;
  order: 1;
}
.news__list:after {
  content: "";
  display: block;
  width: 280px;
}

.news__item {
  opacity: 0;
  display: none;
  width: 280px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1200px) {
  .news__item {
    width: calc(50% - 16px);
  }
}
@media screen and (max-width: 1050px) {
  .news__item {
    width: calc(50% - 16px);
  }
}
@media screen and (max-width: 750px) {
  .news__item {
    width: 100%;
  }
}
.news__item a {
  display: block;
  text-decoration: none;
}
@media screen and (hover: hover) {
  .news__item a {
    opacity: 1;
    transition: opacity 0.5s;
  }
  .news__item a:hover {
    opacity: 0.6;
  }
}

.news__item-img {
  display: block;
  overflow: hidden;
  border-radius: 6px;
  width: 100%;
  height: 0;
  padding-top: 55.3846153846%; /* 650x360 */
  position: relative;
}
.news__item-img img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news__item-title {
  margin-top: 21px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 1.3888888889;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: #041138;
}
@media screen and (max-width: 750px) {
  .news__item-title {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 1.875;
    letter-spacing: 0.03em;
    font-weight: 700;
  }
}
.news__item-title span {
  display: -webkit-box;
  display: box;
  -webkit-box-orient: vertical;
  box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .news__item-title span {
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
}

.news__item-date {
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 13px;
  line-height: 2.3076923077;
  letter-spacing: 3px;
  color: #21659C;
  margin-top: 12px;
}
@media screen and (max-width: 750px) {
  .news__item-date {
    margin-top: 10px;
  }
}
.news__item-date span {
  vertical-align: top;
}

.news__readmore {
  margin-top: 20px;
}
@media screen and (max-width: 750px) {
  .news__readmore {
    margin-top: 0;
  }
}
.news__readmore a,
.news__readmore button {
  appearance: none;
  display: flex;
  width: 240px;
  height: 58px;
  margin-right: auto;
  margin-left: auto;
  padding: 10px 40px;
  justify-content: center;
  align-items: center;
  border: 0 transparent;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 1.3888888889;
  letter-spacing: 1.5px;
  background: #C1C8EB;
  background: linear-gradient(90deg, #B3E2F2 0%, #C1C8EB 50%, #B3E2F2 100%);
  background-size: 200% auto;
  background-position: 100% 0;
}
@media screen and (hover: hover) {
  .news__readmore a,
  .news__readmore button {
    transition: background 1s;
  }
  .news__readmore a:hover,
  .news__readmore button:hover {
    background: #C1C8EB;
    background: linear-gradient(90deg, #B3E2F2 0%, #C1C8EB 50%, #B3E2F2 100%);
    background-size: 200% auto;
    background-position: 0 0;
  }
}

/* SCHEME */
.section__scheme {
  background: #F3FAFD;
}

.scheme__nav {
  display: flex;
  justify-content: center;
  margin: 50px auto;
}
@media screen and (max-width: 750px) {
  .scheme__nav {
    margin-top: 30px;
    margin-bottom: 40px;
  }
}
.scheme__nav ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}
@media screen and (max-width: 750px) {
  .scheme__nav ol {
    display: inline-flex;
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }
}
.scheme__nav ol li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.scheme__nav ol li a {
  display: flex;
  padding: 10px 20px;
  align-items: center;
  gap: 18px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 1.3888888889;
  letter-spacing: 1.5px;
  color: #21659C;
  text-decoration: none;
  border-bottom: 1px solid #21659C;
}
@media screen and (max-width: 750px) {
  .scheme__nav ol li a {
    padding-top: 6px;
    padding-bottom: 6px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 1.875;
    letter-spacing: 0.03em;
  }
}
.scheme__nav ol li a:after {
  content: "";
  width: 14px;
  height: 0;
  padding-top: 14px;
  background: url(../img/nav_arrow_icon.svg) no-repeat 0 0;
  background-size: 100% auto;
}
@media screen and (max-width: 750px) {
  .scheme__nav ol li a:after {
    margin-right: 11px;
  }
}
@media screen and (hover: hover) {
  .scheme__nav ol li a {
    transition: border-color 0.5s;
  }
  .scheme__nav ol li a:hover {
    border-color: #3FBBD7;
  }
}
@media screen and (max-width: 750px) {
  .scheme__nav ol li a > span {
    flex: 1;
    display: flex;
    gap: 0.4em;
  }
}
.scheme__nav ol li a > span em {
  font-style: normal;
}

.scheme-1 {
  margin-bottom: 80px;
}
@media screen and (max-width: 750px) {
  .scheme-1 {
    margin-bottom: 40px;
  }
}

.scheme-2 {
  margin-bottom: 80px;
}
@media screen and (max-width: 750px) {
  .scheme-2 {
    margin-bottom: 40px;
  }
}
.scheme-2 .subsection__content {
  margin-top: 50px;
}
@media screen and (max-width: 750px) {
  .scheme-2 .subsection__content {
    margin-top: 20px;
  }
}

.scheme-1_img_pc {
  display: block;
}
@media screen and (max-width: 750px) {
  .scheme-1_img_pc {
    display: none;
  }
}

.scheme-1_img_sp {
  display: none;
}
@media screen and (max-width: 750px) {
  .scheme-1_img_sp {
    display: block;
  }
}

.subsection__title {
  display: flex;
  padding: 15px 40px;
  align-items: center;
  border-radius: 10px;
  background: #E3F0F6;
}
@media screen and (max-width: 750px) {
  .subsection__title {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.subsection__title span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: 0.07em;
  font-weight: 700;
  color: #21659C;
}
@media screen and (max-width: 750px) {
  .subsection__title span {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 18px;
    line-height: 1.309;
    letter-spacing: 0.07em;
  }
}
@media screen and (max-width: 750px) {
  .scheme-3 .subsection__title {
    margin-right: 25px;
    margin-left: 25px;
  }
}

.scheme-2__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-height: 366px;
  background: #fff url(../img/scheme-2_item_bg.jpg) no-repeat 100% 50%;
  background-size: 1200px auto;
  padding: 60px 90px;
  border-radius: 10px;
}
@media screen and (max-width: 750px) {
  .scheme-2__item {
    height: unset;
    background-image: none;
    padding: 30px 20px;
  }
}

.scheme-2__item + .scheme-2__item {
  margin-top: 30px;
}
@media screen and (max-width: 750px) {
  .scheme-2__item + .scheme-2__item {
    margin-top: 20px;
  }
}

.scheme-2__item-title {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 750px) {
  .scheme-2__item-title {
    gap: 14px;
  }
}
.scheme-2__item-title:before {
  content: "";
  display: block;
  width: 4px;
  height: 30px;
  background: linear-gradient(0deg, #3FBBD7 0%, #081E6B 100%);
}
@media screen and (max-width: 750px) {
  .scheme-2__item-title:before {
    height: 24px;
  }
}
.scheme-2__item-title span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: 0.07em;
  font-weight: 700;
  color: #21659C;
}
@media screen and (max-width: 750px) {
  .scheme-2__item-title span {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 1.3888888889;
    letter-spacing: 1.5px;
    font-weight: 700;
  }
}

.scheme-2__item-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.875;
  color: #041138;
}
@media screen and (max-width: 750px) {
  .scheme-2__item-text {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 1.875;
    letter-spacing: 0.03em;
  }
}
.scheme-2__item-text:has(.is_count) {
  counter-reset: is_count 0;
}
.scheme-2__item-text p {
  margin: 0;
}
.scheme-2__item-text p + p {
  margin-top: 20px;
}
.scheme-2__item-text h5 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 1.3888888889;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: #21659C;
  margin: 20px 0 4px;
}
@media screen and (max-width: 750px) {
  .scheme-2__item-text h5 {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 1.875;
    letter-spacing: 0.03em;
    font-weight: 700;
  }
}
.scheme-2__item-text h5.is_count:before {
  counter-increment: is_count 1;
  content: counter(is_count) ". ";
}

.scheme-3_img_pc {
  display: block;
}
@media screen and (max-width: 750px) {
  .scheme-3_img_pc {
    display: none;
  }
}

.scheme-3_img_sp {
  display: none;
}
@media screen and (max-width: 750px) {
  .scheme-3_img_sp {
    display: block;
  }
}

/* UNIVERSITY */
.section__university {
  background: #fff;
}

.university__list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  max-width: 1056px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 750px) {
  .university__list {
    gap: 10px;
  }
}
.university__list li {
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: calc((100% - 96px) / 4);
}
@media screen and (max-width: 750px) {
  .university__list li {
    width: calc((100% - 10px) / 2);
  }
}

.university__item-img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #BBD6F5;
  border-radius: 20px;
  overflow: hidden;
}

.university__item-caption {
  display: block;
  width: 100%;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 2.625;
}
@media screen and (max-width: 750px) {
  .university__item-caption {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 1.875;
    letter-spacing: 0.03em;
  }
}

.university__list-note {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.875;
  color: #041138;
  text-align: right;
  max-width: 1056px;
  margin: 0 auto 10px;
  margin-left: auto;
}
@media screen and (max-width: 750px) {
  .university__list-note {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 1.8571428571;
  }
}

/* footer */
.footer {
  background: #041138;
  color: #fff;
}
.footer a {
  color: #fff;
  text-decoration: none;
}
@media screen and (hover: hover) {
  .footer a {
    transition: color 0.5s;
  }
  .footer a:hover {
    color: #3FBBD7;
  }
}

.footer__inner {
  max-width: 1250px;
  margin-right: auto;
  margin-left: auto;
  padding: 60px 25px;
}
@media screen and (max-width: 1050px) {
  .footer__inner {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.footer__logo {
  width: 155px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1050px) {
  .footer__logo {
    width: 178px;
  }
}

.footer__content {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 1050px) {
  .footer__content {
    flex-direction: column;
    justify-content: unset;
    align-items: unset;
    gap: 40px;
  }
}

.footer__link-list-001,
.footer__link-list-002 {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  gap: 50px;
}
@media screen and (max-width: 1050px) {
  .footer__link-list-001,
  .footer__link-list-002 {
    flex-direction: column;
    justify-content: flex-start;
    gap: 14px;
  }
}
@media screen and (max-width: 1050px) {
  .footer__link-list-001 a,
  .footer__link-list-002 a {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 1.8571428571;
  }
}
.footer__link-list-001 a[target=_blank],
.footer__link-list-002 a[target=_blank] {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.external_icon {
  display: none;
  width: 20px;
  height: 20px;
}
a[target=_blank] .external_icon {
  display: inline-block;
  vertical-align: top;
}
.external_icon svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  transition: stroke 0.5s;
}
a:hover .external_icon svg {
  stroke: #3FBBD7;
}

.footer__link-list-002 {
  margin-top: 40px;
}
@media screen and (max-width: 1050px) {
  .footer__link-list-002 {
    margin-top: 14px;
  }
}

.footer__company-name {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 1.3888888889;
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-bottom: 4px;
}

.footer__company-address {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.footer__company-contact-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.875;
}

.footer__company-contact-mail {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 1.5;
}

.footer__copyright {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  line-height: 2.5;
  margin-top: 40px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1050px) {
  .footer__copyright {
    margin-bottom: 0;
  }
}