@charset "UTF-8";

@font-face {
  font-family: "joyful";
  src: url(../fonts/joyful.otf) format("opentype");
  font-weight: normal;
  font-style: normal;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-size: 16px;
}

* {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}

a {
  text-decoration: none;
}

body {
  background-color: #fff;
  overflow-y: scroll;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

body.is-fixed {
  position: fixed;
  width: 100%;
}

main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

*:focus {
  outline: none;
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 13px;
  color: white;
  background-color: #043465;
  border-radius: 4px;
  padding: 16px 17px 16px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
}

.btn::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url(../img/common/icon_angle-btn.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 40px;
}

.breadcrumbs {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px 70px;
}

.breadcrumbs__list,
.breadcrumbs__list a {
  font-size: 13px;
  color: #000;
}

.breadcrumbs__list:not(:first-child)::before {
  content: "　＞　";
  display: inline-block;
  font-size: 13px;
  color: #000;
}

.company {
  padding: 100px 40px 160px;
  overflow: hidden;
}

.company__inner {
  width: 100%;
  max-width: 840px;
  margin: 22px auto 0;
}

.company-info {
  width: 100%;
  margin-top: 40px;
  background-image: linear-gradient(to right, #40B0E2, #40B0E2 2px, transparent 2px);
  background-size: 4px 1px;
  background-position: left bottom;
  background-repeat: repeat-x;
  position: relative;
}

.company-info::before {
  content: "";
  display: inline-block;
  width: 1100px;
  height: 1054px;
  background-image: url(../img/top/img_earth.webp);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 180px;
  -webkit-transform: translateX(20%);
          transform: translateX(20%);
  z-index: -1;
  opacity: 0.2;
}

.company-info__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-image: linear-gradient(to right, #40B0E2, #40B0E2 2px, transparent 2px);
  background-size: 4px 1px;
  background-position: left top;
  background-repeat: repeat-x;
  padding: 15px 0;
}

.company-info__term {
  width: 135px;
  padding-right: 10px;
  font-size: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #000;
}

.company-info__description,
.company-info__description a {
  font-size: 16px;
  color: #000;
}

.footer {
  width: 100%;
  padding-top: 45px;
}

.footer__inner {
  width: 100%;
  max-width: 920px;
  padding: 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
}

.footer__info-logo {
  display: inline-block;
}

.footer__info-under {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  border-top: 1px solid #7E898C;
}

.footer__tel,
.footer__tel a {
  font-size: 21px;
  font-family: "Lato", sans-serif;
  font-weight: 900;
  color: #043465;
}

.footer__tel::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url(../img/common/icon_tel.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 5px;
}

.footer__time {
  font-size: 13px;
  color: #043465;
  padding-left: 15px;
}

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

.footer__column + .footer__column {
  margin-left: 40px;
}

.footer__column-head {
  color: #043465;
  font-size: 14px;
  margin-bottom: 15px;
}

.footer__column-link {
  display: block;
  font-size: 14px;
  color: #828282;
}

.footer__column-link + .footer__column-link {
  margin-top: 10px;
}

.footer__copyright {
  font-size: 14px;
  background-color: #043465;
  color: white;
  text-align: center;
  padding: 10px 0;
  margin-top: 30px;
}

.greeting {
  width: 100%;
  padding: 35px 40px 75px;
}

.greeting__flex {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 45px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.greeting__flex2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 20px;
}

.greeting__img {
  width: 256px;
  height: 384px;
  margin-right: 60px;
}

.greeting__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top;
     object-position: top;
}

.greeting__text {
  font-size: 18px;
  color: #043465;
  line-height: 2.2;
  font-family: "Noto Serif JP", serif;
}

.greeting__en {
  font-size: 104px;
  font-family: "joyful";
  color: #97DDF1;
  -webkit-transform: rotate(-10deg);
          transform: rotate(-10deg);
  line-height: 0.3;
  letter-spacing: -0.02em;
}

.greeting__name {
  font-size: 18px;
  color: #043465;
  font-family: "Noto Serif JP", serif;
  padding-right: 15px;
}

.header {
  width: 100%;
  height: 75px;
  padding: 12px 15px;
  position: fixed;
  z-index: 100;
  background-color: #fff;
}

.header__inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__logo {
  display: inline-block;
  margin-right: auto;
}

.header__logo img {
  width: 350px;
  height: 50px;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}

.header__list {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-right: 1px solid #BABABA;
  padding: 5px 12px 0 0;
}

.header__list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__list > li > a {
  font-size: 15px;
  color: #043465;
  padding: 4px 4px;
  margin: 0 10px;
  position: relative;
}

.header__list > li > a::after {
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  background-color: #043465;
}

.header__list > li > a.is-active::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.header__list > li > a:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.header__tel {
  padding: 0 26px 0 23px;
}

.header__tel-upper {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  font-size: 13px;
  color: #043465;
  margin-left: auto;
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}

.header__tel-under {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__tel-under > img {
  width: 17px;
  height: 17px;
  display: block;
  margin-top: 5px;
  margin-right: 5px;
}

.header__tel-number,
.header__tel-number a {
  font-size: 21px;
  font-weight: 900;
  font-family: "Lato", sans-serif;
  color: #043465;
}

.header__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 13px;
  color: white;
  background-color: #043465;
  padding: 15px 20px 15px 22px;
  border-radius: 5px;
}

.header__contact::before {
  content: "";
  background-image: url(../img/common/icon_mail.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 17px;
  height: 14px;
  margin-right: 10px;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}

.header__menu {
  display: contents;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.header__menu::-webkit-scrollbar {
  display: none;
}

.header__menu-bg {
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 98;
}

.header__menu-bg.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.2s, visibility 0.2s;
  transition: opacity 0.2s, visibility 0.2s;
}

.header__toggle--open {
  display: none;
  width: 40px;
  cursor: pointer;
}

.header__toggle--open span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #043465;
}

.header__toggle--open span:nth-of-type(2) {
  margin: 10px 0;
}

.header__toggle--close {
  display: none;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 20px;
  right: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  cursor: pointer;
}

.header__toggle--close span {
  display: block;
  width: 140%;
  height: 2px;
  background-color: #043465;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: absolute;
  top: 50%;
  left: 50%;
}

.header__toggle--close span:nth-of-type(1) {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.header__toggle--close span:nth-of-type(2) {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.mainVisual {
  width: 100%;
  height: auto;
  aspect-ratio: 1750/750;
  position: relative;
}

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

.mainVisual__copy-wrapper {
  width: 100%;
  height: 100%;
  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: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.mainVisual__copy-wrapper {
  padding: 0 0 20px 0;
}

.mainVisual__copy {
  display: block;
  width: 41.92857vw;
  height: auto;
  aspect-ratio: 587/162;
  margin-left: 12%;
  margin-bottom: 18%;
  -o-object-fit: contain;
     object-fit: contain;
}

.mainVisual__note--first {
  font-size: 1.375rem;
  color: white;
  border-bottom: 1px solid white;
  padding: 0 0 8px 2.5rem;
}

.mainVisual__note--second {
  font-size: 1.125rem;
  color: white;
  padding: 5px 0 0 2.5rem;
}

.mainVisual-sub {
  width: 100%;
  background-color: #043465;
  padding: 20px 40px;
}

.mainVisual-sub-inner {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  position: relative;
}

.mainVisual-sub-heading {
  font-size: 32px;
  font-family: "Noto Serif JP", serif;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.mainVisual-sub-en {
  font-size: 80px;
  font-family: "Abril Fatface", cursive;
  letter-spacing: 0.1em;
  color: #0F4F84;
}

.news {
  width: 100%;
  background-color: #F7F9FA;
  padding: 90px 2.5rem;
}

.news__inner {
  max-width: 840px;
  width: 100%;
  margin: 0 auto;
  color: #000;
}

.news .newsList {
  margin-top: 50px;
  background-image: linear-gradient(to right, #40B0E2, #40B0E2 2px, transparent 2px);
  background-size: 4px 1px;
  background-position: left bottom;
  background-repeat: repeat-x;
}

.newsList__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px 0;
  background-image: linear-gradient(to right, #40B0E2, #40B0E2 2px, transparent 2px);
  background-size: 4px 1px;
  background-position: left top;
  background-repeat: repeat-x;
  cursor: pointer;
}

.newsList__item .newsList__text {
  display: none;
}

.newsList__item:nth-of-type(1) .newsList__text {
  display: block;
}

.newsList__item.is-active .newsList__title::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.newsList__time {
  width: 130px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 16px;
  font-weight: bold;
  margin-right: 40px;
  letter-spacing: -0.02em;
}

.newsList__title {
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.newsList__title::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 6px;
  background-image: url(../img/common/icon_angle-down.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.newsList__text {
  font-size: 15px;
  margin-top: 27px;
  line-height: 1.6;
  padding-bottom: 15px;
}

.newsList__text > a {
  text-decoration: underline;
  color: #000;
}

.newsList__contents {
  width: 100%;
}

.title {
  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;
}

.title__en {
  font-size: 38px;
  color: #043465;
  font-family: "Abril Fatface", cursive;
  letter-spacing: 0.13em;
  text-align: center;
}

.title__jp {
  font-size: 15px;
  color: #8E8E8E;
  margin-top: 4px;
}

.service {
  width: 100%;
  padding: 45px 0 0;
  overflow: hidden;
}

.service__inner {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

.mediaCard {
  position: relative;
  padding-top: 200px;
}

.mediaCard__contents {
  width: 100%;
  max-width: 555px;
  position: relative;
  background-color: white;
  border-radius: 33px;
  z-index: 2;
}

.mediaCard__contents .btn {
  margin: 32px 0 0 auto;
}

.mediaCard__attach {
  font-size: 140px;
  font-family: "joyful", serif;
  position: absolute;
  top: 0;
  right: 50%;
  -webkit-transform: rotate(-10deg) translate(80%, -80%);
          transform: rotate(-10deg) translate(80%, -80%);
  color: #97DDF1;
}

.mediaCard__title {
  font-size: 32px;
  font-family: "Noto Serif JP", serif;
  position: relative;
  padding-bottom: 20px;
  color: #043465;
}

.mediaCard__title::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  background-color: #B5DAE5;
  position: absolute;
  left: 0;
  bottom: 0;
}

.mediaCard__title::after {
  content: "";
  display: inline-block;
  width: 15.16%;
  height: 1px;
  background-color: #043465;
  position: absolute;
  left: 0;
  bottom: 0;
}

.mediaCard__heading {
  font-size: 19px;
  color: #043465;
  font-weight: bold;
  margin-top: 20px;
}

.mediaCard__text {
  font-size: 15px;
  margin-top: 22px;
  line-height: 1.55;
  color: #000;
}

.mediaCard__picture {
  width: 57.7vw;
  height: 100%;
  max-height: 376px;
  aspect-ratio: 807/376;
  position: absolute;
  top: 50px;
  overflow: hidden;
  z-index: 1;
  margin: 0 calc(50% - 7.7vw);
}

.mediaCard__picture img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.mediaCard--rtl .mediaCard__contents {
  padding: 52px 65px 40px 0;
}

.mediaCard--rtl .mediaCard__picture {
  left: 0;
}

.mediaCard--ltr {
  background-color: #E6F0F4;
  margin-top: 20px;
  padding-top: 232px;
}

.mediaCard--ltr .mediaCard__contents {
  background-color: #E6F0F4;
  padding: 57px 0px 0px 57px;
  margin-left: auto;
}

.mediaCard--ltr .mediaCard__picture {
  top: 80px;
  right: 0;
}

.mediaCard--ltr .mediaCard__picture img {
  -o-object-position: 50% 37%;
     object-position: 50% 37%;
}

.travelExample {
  width: 100%;
  background-color: #E6F0F4;
  padding: 105px 0;
  position: relative;
}

.travelExample__inner {
  padding: 0 40px;
}

.travelExample::before {
  content: "";
  display: inline-block;
  width: 778px;
  height: 741px;
  background-image: url(../img/top/img_earth.webp);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -50px;
  left: 50%;
  -webkit-transform: translate(-80%, 0);
          transform: translate(-80%, 0);
  z-index: 1;
}

.travelExample__title {
  font-size: 24px;
  font-family: "Noto Serif JP", serif;
  color: #043465;
  text-align: center;
  margin-bottom: 35px;
  position: relative;
  z-index: 2;
}

.travelExample__item {
  max-width: 1080px;
  min-height: 125px;
  border: 1px solid #043465;
  border-radius: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 10px 20px 15px;
  margin: 0 auto;
  background-color: white;
  position: relative;
  z-index: 2;
}

.travelExample__item::before {
  content: "";
  display: inline-block;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 1px solid #043465;
  border-radius: 2px;
  z-index: -1;
}

.travelExample__item + .travelExample__item {
  margin-top: 10px;
}

.travelExample__summary {
  width: 100%;
  max-width: 190px;
  color: #043465;
  font-size: 16px;
  text-align: center;
  padding-right: 15px;
}

.travelExample__summary::first-line {
  font-size: 19px;
}

.travelExample__description {
  padding-left: 25px;
  border-left: 1px solid #BABABA;
  color: #000;
  font-size: 16px;
}

.sponsor {
  width: 100%;
  padding: 55px 40px 75px;
  position: relative;
  overflow: hidden;
}

.sponsor::before {
  content: "";
  display: inline-block;
  width: 860px;
  height: 340px;
  background-image: url(../img/top/img_earth02.webp);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50px;
  right: 10px;
  z-index: -1;
  opacity: 0.6;
}

.sponsor__inner {
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
}

.sponsor__heading,
.sponsor__heading span {
  font-size: 25px;
  font-family: "Noto Serif JP", serif;
  color: #043465;
  text-align: center;
}

.sponsor__banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 70px;
}

.cta {
  width: 100%;
}

.cta__upper {
  width: 100%;
  position: relative;
  padding: 55px 40px 45px;
}

.cta__upper::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-image: url(../img/top/img_cta.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}

.cta__heading,
.cta__heading span {
  text-align: center;
  color: white;
  font-size: 32px;
  font-family: "Noto Serif JP", serif;
}

.cta__text {
  color: white;
  font-size: 15px;
  text-align: center;
  margin-top: 30px;
}

.cta__btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 18px 40px;
  color: #043465;
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 4px;
  margin: 25px auto 0;
  font-size: 15px;
}

.cta__btn::before {
  content: "";
  display: inline-block;
  width: 17px;
  height: 13px;
  background-image: url(../img/common/icon_mail--blue.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 10px;
  margin-top: 1px;
}

.cta__under {
  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;
  padding: 25px 0 30px;
  background-color: #F7F9FA;
}

.cta__induction {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #043465;
  font-size: 17px;
  font-family: "Noto Serif JP", serif;
  padding: 10px 20px 10px 0;
  border-right: 1px solid #7E898C;
  height: 100%;
}

.cta__tel,
.cta__tel a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 35px;
  font-family: "Lato", sans-serif;
  font-weight: 900;
  color: #043465;
  padding-left: 20px;
}

.cta__tel::before {
  content: "";
  display: inline-block;
  width: 27px;
  height: 27px;
  background-image: url(../img/common/icon_tel.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 8px;
}

.cta__time {
  font-size: 13px;
  color: #043465;
  padding-left: 10px;
}

@media screen and (min-width: 1920px) {
  .mediaCard__picture {
    max-height: 440px;
  }

  .mediaCard--ltr .mediaCard__picture img {
    -o-object-position: 50% 20%;
       object-position: 50% 20%;
  }
}

@media screen and (max-width: 1440px) {
  html {
    font-size: 1.1111111111vw;
  }
}

@media screen and (max-width: 1090px) {
  .header__menu {
    position: fixed;
    max-width: 500px;
    width: 100%;
    height: 100svh;
    top: 0;
    right: 0;
    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;
    z-index: 99;
    background-color: white;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    overflow-y: scroll;
  }

  .header__menu.is-active {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
  }

  .header__list {
    max-width: 300px;
    width: 100%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-right: none;
    margin: 0 auto;
    padding: 20px 0 0 0;
  }

  .header__tel {
    padding: 0;
  }

  .header__list > li {
    width: 100%;
  }

  .header__list > li > a {
    width: 100%;
    padding: 10px 0;
    text-align: center;
    font-size: 16px;
  }

  .header__list > li > a::after {
    display: none;
  }

  .header__tel-upper {
    margin: 20px auto 0;
  }

  .header__contact {
    margin-top: 20px;
  }

  .header__toggle--open {
    display: block;
  }

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

  .header__tel-under > img {
    margin-top: 0;
  }
}

@media screen and (max-width: 1024px) {
  .greeting__text {
    font-size: 16px;
  }

  .greeting__en {
    font-size: 80px;
  }

  .service__inner {
    max-width: 590px;
    width: 100%;
    padding: 0 20px;
  }

  .mediaCard__attach {
    left: 20px;
    right: initial;
    -webkit-transform: rotate(-10deg) translate(0, -80%);
            transform: rotate(-10deg) translate(0, -80%);
  }

  .mediaCard__picture {
    position: static;
    margin: 0 auto;
    max-width: 590px;
    width: 100%;
    padding: 0 20px;
  }

  .mediaCard {
    padding-top: 40px;
  }

  .mediaCard--ltr {
    padding-top: 40px;
    margin-top: 0;
  }

  .mediaCard--rtl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  .mediaCard--ltr .mediaCard__contents {
    padding: 40px 0 40px 0;
    margin-left: 0;
  }

  .mediaCard--rtl .mediaCard__contents {
    max-width: 590px;
    padding: 52px 0 40px 0;
  }

  .mediaCard__title {
    font-size: 24px;
  }

  .mediaCard__heading {
    font-size: 16px;
  }

  .mediaCard__text {
    margin-top: 16px;
  }
}

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

  .breadcrumbs {
    padding: 10px 20px;
  }

  .company {
    padding: 120px 20px;
  }

  .company-info::before {
    display: none;
  }

  .greeting {
    width: 100%;
    padding: 35px 20px 0;
  }

  .greeting__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 20px auto 0;
  }

  .greeting__img {
    margin: 0 auto;
  }

  .greeting__contents {
    margin-top: 20px;
  }

  .greeting__en {
    font-size: 64px;
  }

  .mainVisual {
    height: 500px;
    max-height: 100svh;
    aspect-ratio: initial;
  }

  .mainVisual .mainVisual__bg {
    left: initial;
    right: 0;
  }

  .mainVisual__copy-wrapper {
    padding: 0 0 20px 0;
  }

  .mainVisual__copy {
    display: block;
    width: 80vw;
    height: auto;
    aspect-ratio: 587/162;
    margin-left: 10px;
    margin-bottom: 18%;
    -o-object-fit: contain;
       object-fit: contain;
  }

  .mainVisual__note--first {
    font-size: 16px;
    padding: 0 0 8px 10px;
  }

  .mainVisual__note--second {
    font-size: 14px;
    padding: 5px 0 0 10px;
  }

  .mainVisual-sub {
    padding: 60px 20px;
  }

  .mainVisual-sub-heading {
    font-size: 24px;
  }

  .mainVisual-sub-en {
    font-size: 60px;
  }

  .news {
    padding: 40px 1.25rem;
  }

  .newsList__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .newsList__time {
    margin-right: 0;
  }

  .newsList__title {
    margin-top: 5px;
  }

  .newsList__title::after {
    margin-top: 10px;
  }

  .newsList__text {
    margin-top: 20px;
  }

  .news .newsList {
    margin-top: 40px;
  }

  .title__en {
    font-size: 32px;
  }

  .mediaCard__attach {
    font-size: 4.375rem;
    -webkit-transform: rotate(-10deg) translate(0, -60%);
            transform: rotate(-10deg) translate(0, -60%);
  }

  .travelExample {
    padding: 40px 0 80px;
  }

  .travelExample__inner {
    padding: 0 20px;
  }

  .travelExample__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .travelExample__summary {
    padding-right: 0;
    padding-bottom: 10px;
  }

  .travelExample__description {
    border-top: 1px solid #BABABA;
    border-left: none;
    padding: 10px 5px 0 5px;
    font-size: 14px;
  }

  .travelExample::before {
    width: 50%;
    height: 50%;
    top: 50px;
    left: 40%;
  }

  .sponsor {
    padding: 40px 20px;
  }

  .sponsor::before {
    width: 50%;
  }

  .sponsor__banner {
    margin-top: 40px;
  }

  .sponsor__heading,
  .sponsor__heading span {
    font-size: 24px;
  }

  .cta__heading,
  .cta__heading span {
    font-size: 24px;
  }

  .cta__upper {
    padding: 55px 20px 45px;
  }
}

@media screen and (max-width: 767px) {
  .header {
    height: 60px;
  }
  .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 20px;
  }

  .footer__info-under {
    padding-top: 10px;
  }

  .footer__links {
    padding-top: 40px;
  }

  .cta__under {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .cta__induction {
    font-size: 14px;
    padding: 10px 0 10px 0;
    border-right: none;
  }

  .cta__tel,
  .cta__tel a {
    font-size: 24px;
    padding-left: 0;
  }

  .cta__tel::before,
  .cta__tel a::before {
    width: 20px;
    height: 20px;
    margin-right: 4px;
  }
}

@media screen and (max-width: 545px) {
  .company-info__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .company-info__description {
    margin-top: 10px;
  }

  .mainVisual__copy-wrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .mainVisual__copy {
    width: 98%;
    margin: 0 auto;
  }

  .mainVisual__note {
    position: absolute;
    left: 0;
    bottom: 15px;
  }
}

@media screen and (max-width: 465px) {
  .header__logo img {
    width: 240px;
    height: auto;
  }
}

@media screen and (max-width: 375px) {
  .footer__links {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .footer__column {
    margin: 0 25px 25px 0;
  }

  .footer__column + .footer__column {
    margin-left: 0;
  }

  .greeting__en {
    font-size: 4rem;
  }

  .header__logo img {
    width: 15rem;
  }

  .header__toggle--open {
    width: 2.5rem;
  }

  .mainVisual-sub-en {
    font-size: 3.75rem;
  }

  .title__en {
    font-size: 2rem;
  }

  .mediaCard__title {
    font-size: 1.4625rem;
  }

  .travelExample__title {
    font-size: 1.5rem;
  }

  .sponsor__heading,
  .sponsor__heading span {
    font-size: 1.5rem;
  }

  .cta__heading,
  .cta__heading span {
    font-size: 1.5rem;
  }

  .cta__text {
    font-size: 0.9375rem;
  }
}
/*# sourceMappingURL=style.css.map */