@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html, body {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: rgb(0, 72, 144);
  font-size: 16px;
}
@media screen and (max-width: 374px) {
  html, body {
    font-size: 12.8px;
  }
}

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

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
}

.select-wrap {
  position: relative;
}
.select-wrap::after {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  z-index: 2;
  width: 15px;
  height: 10px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  pointer-events: none;
}

input[type=submit],
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border: none;
  outline: none;
  border: 1px solid rgb(190, 190, 190);
  padding: 10px;
  border-radius: 5px;
}

section {
  padding: 50px 0;
}
section.section-bottom {
  padding-bottom: 0;
}

.contents-wrapper {
  width: calc(100% - 40px);
  margin: 0 auto;
}

.ipad-block {
  display: none;
}
@media (max-width: 1023px) {
  .ipad-block {
    display: block;
  }
}

@media (max-width: 1023px) {
  .ipad-none {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}
.main-contents {
  text-align: left;
  word-wrap: break-word;
  line-height: 200%;
}
.main-contents p:not(:last-child) {
  margin-bottom: 15px;
}
.main-contents img:not(.emoji) {
  width: 50% !important;
  height: auto !important;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .main-contents img:not(.emoji) {
    width: 100% !important;
  }
}

.left-float {
  float: left;
}

.right-float {
  float: right;
}

.clear {
  clear: both;
}

img, iframe {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

a {
  text-decoration: none;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

a:hover {
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

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

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

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

.color-black {
  color: rgb(0, 0, 0);
}

.color-white {
  color: rgb(255, 255, 255);
}

table {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
  border-spacing: 0;
}

.block-item {
  display: block;
}

.inlineblock-item {
  display: inline-block;
}

.inline-item {
  display: inline;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.right-flex {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

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

figure {
  margin: 0;
  padding: 0;
}

.menu-logo {
  padding: 10px;
  position: relative;
}
.menu-logo .bg-cloud {
  position: absolute;
  top: 0;
  left: 0;
}
.menu-logo .logo {
  position: relative;
  z-index: 1;
  font-size: 1.4rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  text-transform: uppercase;
}
.menu-logo .logo img {
  width: 165px;
}

.menu-list {
  margin-top: 60px;
  margin-left: 50px;
}
.menu-list li:not(:last-child) {
  margin-bottom: 10px;
}
.menu-list a {
  color: rgb(0, 72, 144);
  text-transform: uppercase;
  font-weight: 700;
}
.menu-list a span {
  display: inline-block;
  width: 100px;
  vertical-align: middle;
}
.menu-list a.instagram::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 22px;
  aspect-ratio: 1/1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url("../../images/instagram-icon.svg");
}

.arrow-link::after {
  vertical-align: middle;
  content: "";
  display: inline-block;
  width: 12px;
  aspect-ratio: 1/1;
  margin-left: 10px;
  background-color: rgb(0, 72, 144);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.arrow-link:hover::after {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

.blue-btn {
  display: block;
  background-color: rgb(3, 89, 176);
  border: 2px solid rgb(0, 72, 144);
  border-radius: 10px;
  color: rgb(255, 255, 255);
  font-weight: 700;
  text-align: center;
  padding: 15px;
}
.blue-btn .en {
  margin-bottom: 5px;
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
}
.blue-btn .ja {
  font-size: 0.9rem;
}
.blue-btn:hover .ja::after {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.blue-btn.white .ja.arrow-link::after {
  background-color: rgb(255, 255, 255);
}

.bg-image-title {
  margin-bottom: 30px;
  max-width: 400px;
  margin: 0 auto 30px;
  position: relative;
  font-size: 1.1rem;
  text-align: center;
}
.bg-image-title .text {
  position: absolute;
  top: 20%;
  left: 0;
  width: 100%;
}
.bg-image-title .en {
  display: block;
  color: rgb(255, 255, 255);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}
.bg-image-title .ja {
  display: block;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.bg-image-title .number {
  margin-inline: 2px 5px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 2rem;
}

.yellow-title {
  position: relative;
  font-size: 1.1rem;
  font-weight: 700;
  z-index: 2;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.yellow-title.center {
  text-align: center;
  margin-inline: auto;
}
.yellow-title .title-inner {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
.yellow-title img {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translateX(80%);
          transform: translateX(80%);
  width: 80px;
}
.yellow-title .en {
  display: block;
  margin-bottom: 5px;
  text-transform: uppercase;
  color: rgb(253, 223, 0);
  font-family: "Montserrat", sans-serif;
}
.yellow-title .ja {
  color: rgb(255, 255, 255);
}
.yellow-title .ja .small {
  font-weight: 500;
  font-size: 0.9rem;
}
.yellow-title .ja .big {
  font-weight: 600;
  font-size: 1.4rem;
}
.yellow-title .blue-text {
  color: rgb(0, 72, 144);
}

.bg-box {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("../../images/bg-image.jpg");
}
.bg-box .navi-wrapper {
  position: relative;
  background-color: rgb(237, 251, 255);
  width: 418px;
  height: 100vh;
  overflow: scroll;
  padding-bottom: 50px;
}
@media (max-width: 1023px) {
  .bg-box .navi-wrapper {
    display: none;
  }
}
.bg-box .navi-wrapper::-webkit-scrollbar {
  display: none;
}
.bg-box .menu-btn-wrapper {
  max-width: 335px;
  margin: 35px auto 50px;
  display: -ms-grid;
  display: grid;
  gap: 12px;
  -ms-grid-columns: 1fr 12px 1fr;
  grid-template-columns: repeat(2, 1fr);
}
.bg-box .menu-btn-wrapper .ja::after {
  background-color: rgb(255, 255, 255);
}
.bg-box .bg-tel-wrapper {
  position: relative;
  padding: 30px 40px;
  border-radius: 17px;
  background-color: rgb(255, 255, 255);
  text-align: center;
}
.bg-box .bg-tel-wrapper .arrow-link {
  font-weight: 700;
  color: rgb(0, 72, 144);
}
.bg-box .bg-tel-wrapper .tel-box {
  margin-top: 10px;
  padding-top: 15px;
  border-top: 2px dashed rgb(0, 72, 144);
  font-size: 0.7rem;
}
.bg-box .bg-tel-wrapper .title {
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 0.9rem;
}
.bg-box .bg-tel-wrapper .tel {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
.bg-box .bg-tel-wrapper .tel .number {
  font-size: 1.4rem;
}
.bg-box .bg-deco {
  pointer-events: none;
  position: absolute;
  right: 30px;
  top: 220px;
  width: 73px;
}
.bg-box .tel-deco {
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translate(20%, -50%);
          transform: translate(20%, -50%);
  width: 72px;
}

.main-box {
  background-color: rgb(237, 251, 255);
  position: relative;
  overflow: hidden;
  max-width: 375px;
  margin-inline: auto 30%;
  z-index: 2;
}
@media (max-width: 1500px) {
  .main-box {
    margin-inline: auto 10%;
  }
}
@media (max-width: 1023px) {
  .main-box {
    margin: auto;
  }
}
@media (max-width: 500px) {
  .main-box {
    max-width: 100%;
  }
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header-logo {
  position: relative;
  width: 180px;
}
.header-logo a {
  display: block;
  padding: 10px 20px 10px 40px;
}
.header-logo .bg-cloud {
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
}
.header-logo .logo {
  margin-left: 5px;
  width: 75px;
}
.header-logo .logo-text {
  display: block;
  color: rgb(0, 72, 144);
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}

.drawer--right .header-link-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.drawer--right button.drawer-hamburger {
  position: relative;
  top: auto;
  right: auto;
  background-color: rgb(253, 223, 0);
  width: 36px;
  padding: 0px 10px 10px;
  height: 36px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.drawer--right button.drawer-hamburger .drawer-hamburger-icon {
  background-color: rgb(0, 72, 144);
}
.drawer--right button.drawer-hamburger .drawer-hamburger-icon::before, .drawer--right button.drawer-hamburger .drawer-hamburger-icon::after {
  background-color: rgb(0, 72, 144);
}
.drawer--right button.drawer-hamburger .drawer-hamburger-icon::before {
  top: -5px;
}
.drawer--right button.drawer-hamburger .drawer-hamburger-icon::after {
  top: 5px;
}
.drawer--right .drawer-nav {
  position: absolute;
  width: 100%;
  height: 100vh;
  right: 0;
  padding: 0 35px 50px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: rgb(237, 251, 255);
  overflow: scroll;
}
.drawer--right .drawer-nav::-webkit-scrollbar {
  display: none;
}
.drawer--right .drawer-nav .menu-list {
  margin-left: 0;
  margin-bottom: 30px;
}
.drawer--right .drawer-nav .mini-menu-deco1 {
  position: absolute;
  top: 310px;
  right: 40px;
  width: 70px;
  -webkit-transform: rotate(20deg) !important;
          transform: rotate(20deg) !important;
}
.drawer--right .drawer-nav .mini-menu-deco2 {
  position: absolute;
  top: 180px;
  right: 30px;
  width: 60px;
}
.drawer--right .drawer-nav .blue-btn:not(:last-child) {
  margin-bottom: 15px;
}
.drawer--right .drawer-nav .blue-btn .ja::after {
  background-color: rgb(255, 255, 255);
}
.drawer--right .drawer-nav .blue-btn.tel {
  font-size: 0.7rem;
  font-family: "Montserrat", sans-serif;
  border-color: rgb(8, 135, 226);
  background-color: rgb(8, 135, 226);
  text-transform: uppercase;
}
.drawer--right .drawer-nav .blue-btn.tel .number {
  font-size: 1.4rem;
}
.drawer--right .drawer-nav .mini-menu-tel-box {
  margin-top: 20px;
  text-align: center;
}
.drawer--right .drawer-nav .mini-menu-tel-box > p {
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: rgb(0, 72, 144);
  font-weight: 500;
}
.drawer--right.drawer-open button.drawer-hamburger {
  right: 0;
  background-color: transparent;
}
.drawer--right.drawer-open button.drawer-hamburger .drawer-hamburger-icon {
  background-color: transparent;
}
.drawer--right.drawer-open button.drawer-hamburger .drawer-hamburger-icon::before, .drawer--right.drawer-open button.drawer-hamburger .drawer-hamburger-icon::after {
  top: 0;
}
.drawer--right.drawer-open .drawer-nav {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.entry-btn {
  height: 36px;
  padding: 5px 30px;
  background-color: rgb(253, 223, 0);
  color: rgb(0, 72, 144);
  font-family: "Montserrat", sans-serif;
  font-weight: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-right: 1px solid rgb(0, 72, 144);
  border-radius: 0 0 0 5px;
}

.recruit-mv {
  padding-top: 100px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-position: bottom;
  background-image: url("../../images/mv/bg.png");
}
.recruit-mv .contents-wrapper {
  width: 100%;
}
.recruit-mv .text-box {
  padding: 0 15px;
  color: rgb(255, 255, 255);
  font-size: 1.4rem;
}
.recruit-mv .text-box p {
  margin-bottom: 10px;
}
.recruit-mv .image-box {
  margin: auto;
  position: relative;
  z-index: 1;
}
.recruit-mv .speech-bubble {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-40%);
          transform: translateX(-40%);
  width: 125px;
  color: rgb(255, 255, 255);
  font-size: 0.7rem;
  line-height: 1.6em;
}
.recruit-mv .speech-bubble img {
  position: absolute;
  bottom: 0;
  left: 33%;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
}
.recruit-mv .people {
  margin-top: 30px;
  margin-right: 0;
  width: auto;
  height: 310px;
}
.recruit-mv .mountain {
  top: -60px;
  z-index: -1;
  position: absolute;
  width: 100%;
}
.recruit-mv .fire {
  position: absolute;
  width: 52%;
  bottom: 20px;
  left: 0;
}

.yellow-text {
  color: rgb(253, 223, 0);
}

.recruit-first-section {
  padding-bottom: 100px;
  position: relative;
  z-index: 2;
  background-color: rgb(237, 251, 255);
}
.recruit-first-section .line {
  position: absolute;
  width: 100%;
  left: 0;
}
.recruit-first-section .line.one {
  top: -160px;
}
.recruit-first-section .line.two {
  top: 130px;
}
.recruit-first-section .line.three {
  bottom: 0;
  left: 30px;
}
.recruit-first-section .first-item1 {
  position: absolute;
  top: -67px;
  left: 20px;
  width: 70px;
}
.recruit-first-section .first-item2 {
  position: absolute;
  width: 75px;
  top: 0;
  right: 10px;
  -webkit-transform: translateY(-30%);
          transform: translateY(-30%);
}
.recruit-first-section .first-text {
  position: relative;
  z-index: 2;
  max-width: 350px;
  margin: auto;
  font-weight: 500;
  line-height: 2em;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}
.recruit-first-section .link-wrapper {
  margin-top: 30px;
  position: relative;
  z-index: 2;
}
.recruit-first-section .link-wrapper .first-boy {
  width: 60px;
}
.recruit-first-section .link-wrapper .first-deco {
  width: 90px;
  position: absolute;
  right: 20px;
  bottom: 20px;
}
.recruit-first-section .boy-link-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.recruit-first-section .inner-link {
  position: relative;
  width: 235px;
}
.recruit-first-section .signboard-link {
  width: 175px;
  aspect-ratio: 176/135;
  padding-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url("../../images/first-link-bg.png");
  -ms-flex-line-pack: center;
      align-content: center;
  font-weight: 700;
  margin: -26px auto 0;
}
.recruit-first-section .signboard-link .en {
  display: block;
  width: 100%;
  color: rgb(255, 255, 255);
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  text-align: center;
}
.recruit-first-section .signboard-link .ja {
  color: rgb(0, 72, 144);
  font-size: 0.9rem;
}
.recruit-first-section .first-staff {
  -ms-flex-item-align: start;
      align-self: flex-start;
  width: calc(100% - 235px);
  -webkit-transform: translateY(70px);
          transform: translateY(70px);
}

.first-message-section {
  padding-bottom: 100px;
  position: relative;
  background-color: rgb(255, 255, 255);
  font-weight: 500;
}
.first-message-section::before {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  display: block;
  width: 100%;
  height: 150px;
  z-index: 2;
  background-color: rgb(255, 255, 255);
  clip-path: ellipse(50% 36% at 50% 50%);
}
.first-message-section .first-message {
  margin: 10px auto 50px;
  font-size: 0.9rem;
  line-height: 1.8em;
}

.speech-bubble-text {
  position: relative;
  font-size: 1.1rem;
  padding-bottom: 60px;
}
.speech-bubble-text img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
}

.first-main-message {
  position: relative;
  font-weight: 600;
  font-size: 1.4rem;
}
.first-main-message p:not(:last-child) {
  margin-bottom: 10px;
}
.first-main-message img {
  position: absolute;
  top: -30px;
  right: 0;
  width: 50%;
}

.red-text {
  color: rgb(221, 11, 0);
}

.mind-section {
  padding-top: 0;
}
.mind-section .bg-image-title {
  margin-top: -60px;
}

.mind-wrapper {
  counter-reset: number 0;
}
.mind-wrapper .mind-box {
  position: relative;
  counter-increment: number 1;
  background-color: rgb(255, 255, 255);
  border-radius: 10px;
  border: 2px solid rgb(8, 135, 226);
  padding: 0 20px 30px;
  font-size: 0.9rem;
}
.mind-wrapper .mind-box:not(:last-child) {
  margin-bottom: 80px;
}
.mind-wrapper .mind-title {
  position: absolute;
  top: 0;
  left: 50%;
  width: 215px;
  padding: 10px 20px;
  -webkit-transform: translate(-50%, -60%);
          transform: translate(-50%, -60%);
  border: 2px solid rgb(8, 135, 226);
  border-radius: 20px;
  background-color: rgb(255, 255, 255);
  font-weight: 700;
  font-size: 1.1rem;
}
.mind-wrapper .mind-title span {
  vertical-align: middle;
}
.mind-wrapper .mind-title::before {
  vertical-align: middle;
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  color: rgb(8, 135, 226);
  margin-right: 5px;
  content: counter(number, decimal-leading-zero) ".";
}
.mind-wrapper .inner-contents {
  margin-top: 50px;
}
.mind-wrapper .image-box {
  margin-bottom: 10px;
}
.mind-wrapper .image-box .one {
  max-width: 140px;
}
.mind-wrapper .image-box .two {
  max-width: 221px;
}
.mind-wrapper .image-box .three {
  max-width: 240px;
}
.mind-wrapper .small-text {
  margin-top: 5px;
  text-align: right;
  font-size: 0.7rem;
}

.mind-graph-wrapper {
  position: relative;
  border-radius: 10px;
  background-color: rgb(237, 251, 255);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 10px;
  padding: 10px;
  margin-bottom: 10px;
}
.mind-graph-wrapper h4 {
  margin-bottom: 10px;
  width: 100%;
  font-size: 0.7rem;
  font-weight: 600;
}
.mind-graph-wrapper .graph {
  width: 45%;
}
.mind-graph-wrapper .arrow {
  position: absolute;
  top: 50px;
  left: 36%;
  width: 40px;
}
.mind-graph-wrapper .graph-text {
  font-size: 0.9rem;
  font-weight: 600;
  width: calc(55% - 10px);
}
.mind-graph-wrapper .graph-text .yellow-text {
  font-size: 1.4rem;
}

.main-message-section {
  position: relative;
  overflow: hidden;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, rgb(255, 255, 255)));
  background: linear-gradient(to bottom, transparent 70%, rgb(255, 255, 255) 70%);
}
@media (max-width: 500px) {
  .main-message-section {
    padding: 30vw 0 45vw;
  }
}
@media (max-width: 400px) {
  .main-message-section {
    padding: 150px 0 0;
  }
}
.main-message-section .message-bg {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.main-message-section .message-swiper {
  overflow: visible;
}
.main-message-section .swiper-slide {
  padding-top: 100px;
  position: relative;
}
.main-message-section .main-image {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translateY(calc(-90% + 100px));
          transform: translateY(calc(-90% + 100px));
  width: 50%;
  margin-right: 0;
}
.main-message-section .message-item {
  position: absolute;
  width: 95px;
  top: -25px;
  left: -30px;
}
.main-message-section .text-box {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  border: 3px solid rgb(0, 72, 144);
  padding: 35px 20px 30px;
  background-color: rgb(255, 255, 255);
  font-size: 0.9rem;
}
.main-message-section .text-box P:not(:last-child) {
  margin-bottom: 15px;
}
.main-message-section .name {
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 1.1rem;
}
.main-message-section .name .small {
  font-size: 0.7rem;
  font-weight: 400;
}
.main-message-section .message-bg-deco {
  position: absolute;
  top: 20px;
  right: -100px;
}
.main-message-section .message-pagination {
  position: static;
}
.main-message-section .message-pagination .swiper-pagination-bullet {
  opacity: 1;
  background-color: rgb(255, 255, 255);
}
.main-message-section .message-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: rgb(253, 223, 0);
}
.main-message-section .deco-image-box {
  position: relative;
  z-index: 2;
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.main-message-section .deco-image-box img {
  margin: 0;
}
.main-message-section .deco-image-box .message-deco1 {
  width: 40%;
}
.main-message-section .deco-image-box .message-deco2 {
  width: 30%;
}

.job-contants-section {
  position: relative;
  background-color: rgb(255, 255, 255);
}
.job-contants-section .yellow-title {
  margin-bottom: 50px;
}
.job-contants-section .yellow-title img {
  width: 45px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
.job-contants-section .job-girl {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 40%;
}

.job-swiper {
  margin-top: -10px;
}
.job-swiper .swiper-slide {
  padding: 25px 20px;
  border-radius: 20px;
  background-color: rgb(255, 255, 255);
  border: 3px solid rgb(0, 72, 144);
}
.job-swiper .title {
  margin-bottom: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
}
.job-swiper .title img {
  margin: 0;
  width: 40px;
}
.job-swiper .job-pagination {
  position: static;
}
.job-swiper .job-pagination .swiper-pagination-bullet {
  opacity: 1;
  background-color: rgb(0, 72, 144);
}
.job-swiper .job-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: rgb(253, 223, 0);
}

.speech-bubble-text.mini {
  z-index: 2;
  padding-bottom: 40px;
  font-weight: 700;
  padding-left: 30px;
}
.speech-bubble-text.mini span {
  position: relative;
  z-index: 2;
}
.speech-bubble-text.mini img {
  width: 110px;
}

.dot-list {
  font-size: 0.9rem;
}
.dot-list:not(:last-child) {
  margin-bottom: 10px;
}
.dot-list li::before {
  content: "・";
}

.flow-section {
  padding-bottom: 70px;
  position: relative;
  background-color: rgb(255, 255, 255);
}
.flow-section .flow-line {
  bottom: 0;
  left: 0;
  position: absolute;
}
.flow-section .contents-wrapper {
  position: relative;
  z-index: 2;
}
.flow-section .flow-line2 {
  margin-left: 40px;
}
.flow-section .flow-deco {
  position: absolute;
  right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.flow-section .flow-deco img {
  margin: 0;
}
.flow-section .flow-deco1 {
  width: 23px;
}
.flow-section .flow-deco2 {
  width: 60px;
  -webkit-transform: translate(-10%, 20%);
          transform: translate(-10%, 20%);
}
.flow-section .tiem-icon {
  width: 24px;
  margin: 0 0 10px 0;
}
.flow-section .flow-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 30px;
  font-size: 0.9rem;
}
.flow-section .flow-box:not(:last-child) {
  margin-bottom: 15px;
}
.flow-section .flow-box .time {
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  width: 40px;
}
.flow-section .flow-box .cotnents {
  width: calc(100% - 40px - 30px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
}
.flow-section .flow-staff {
  position: absolute;
  bottom: 0;
  right: 5px;
  width: 30%;
}

.point-section {
  padding-top: 80px;
  position: relative;
}
.point-section .yellow-title {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  padding: 50px 0 20px;
  clip-path: ellipse(50% 36% at 50% 50%);
  background-color: rgb(237, 251, 255);
}
.point-section .yellow-title .point-title-deco1 {
  right: auto;
  left: 0;
  width: 50px;
  -webkit-transform: translateX(-80%);
          transform: translateX(-80%);
}
.point-section .yellow-title .point-title-deco2 {
  width: 55px;
}

.point-box {
  aspect-ratio: 330/145;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  color: rgb(255, 255, 255);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.point-box:not(:last-child) {
  margin-bottom: 40px;
}
.point-box.right {
  background-image: url("../../images/point-bg-right.png");
}
.point-box.left {
  background-image: url("../../images/point-bg-left.png");
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.point-box.left .inner-box {
  margin-left: auto;
}
.point-box .inner-box {
  width: 65%;
  padding: 5px;
  font-size: 0.9rem;
}
.point-box .title {
  margin-bottom: 10px;
  text-align: center;
  font-weight: 600;
}
.point-box .dot-list {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

.faq-section .yellow-title {
  margin-bottom: 30px;
  width: 100%;
}
.faq-section .yellow-title .faq-title-deco1 {
  right: auto;
  left: 0;
  width: 40px;
  -webkit-transform: translateX(-80%);
          transform: translateX(-80%);
}
.faq-section .yellow-title .faq-title-deco2 {
  width: 75px;
  -webkit-transform: translateX(110%);
          transform: translateX(110%);
}

.faq-wrapper:not(:last-child) {
  margin-bottom: 50px;
}

.faq-title {
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  color: rgb(8, 135, 226);
}
.faq-title img {
  display: inline-block;
  width: 24px;
  margin: 0;
  vertical-align: middle;
}
.faq-title span {
  vertical-align: middle;
}

.faq-box {
  font-size: 0.9rem;
  background-color: rgb(255, 255, 255);
  border-radius: 15px;
}
.faq-box:not(:last-child) {
  margin-bottom: 15px;
}
.faq-box .q-title {
  display: block;
  width: 100%;
  border-radius: 15px 15px 0 0;
  padding: 5px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  color: rgb(0, 72, 144);
  text-align: left;
  gap: 10px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.faq-box .q-title::before {
  content: "q";
  font-family: "Montserrat", sans-serif;
  width: 32px;
  aspect-ratio: 1/1;
  background-color: rgb(0, 72, 144);
  color: rgb(255, 255, 255);
  border-radius: 50%;
  text-transform: uppercase;
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  pointer-events: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.faq-box .q-title span {
  width: calc(100% - 20px - 32px - 20px);
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  pointer-events: none;
}
.faq-box .q-title .plus {
  pointer-events: none;
  position: relative;
  width: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.faq-box .q-title .plus::before, .faq-box .q-title .plus::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: rgb(0, 72, 144);
  border-radius: 5px;
}
.faq-box .q-title .plus::after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.faq-box .q-title.is-open {
  background-color: rgb(0, 72, 144);
  color: rgb(255, 255, 255);
}
.faq-box .q-title.is-open::before {
  background-color: rgb(255, 255, 255);
  color: rgb(0, 72, 144);
}
.faq-box .q-title.is-open .plus::before, .faq-box .q-title.is-open .plus::after {
  background-color: rgb(255, 255, 255);
}
.faq-box .q-title.is-open .plus::after {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.a-main-box {
  -webkit-transition: max-height 0.5s;
  transition: max-height 0.5s;
  overflow: hidden;
  max-height: 0;
}
.a-main-box.is-open {
  -webkit-transition: max-height 0.5s;
  transition: max-height 0.5s;
  max-height: var(--max-height);
  opacity: 1;
}
.a-main-box .a-inner {
  padding: 30px 15px;
}
.a-main-box li {
  padding-left: 15px;
  text-indent: -15px;
}

.job-escription-section {
  margin-top: 100px;
  padding: 0;
  position: relative;
  background-color: rgb(0, 116, 199);
}
.job-escription-section .job-escription-bg {
  position: absolute;
  width: 100%;
  left: 0;
}
.job-escription-section .job-escription-bg.top {
  top: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
.job-escription-section .job-escription-bg.bottom {
  bottom: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
.job-escription-section .contents-wrapper {
  position: relative;
  z-index: 2;
}
.job-escription-section .job-escription-staff {
  position: absolute;
  right: 0;
  top: -145px;
  width: 162px;
}
.job-escription-section .bg-image-title .text {
  top: 25%;
}

.job-escription-wrapper {
  font-size: 0.9rem;
}
.job-escription-wrapper:not(:last-child) {
  margin-bottom: 70px;
}
.job-escription-wrapper .inner-box:not(:last-child) {
  margin-bottom: 25px;
}
.job-escription-wrapper .inner-box.bg-blue {
  border-radius: 10px;
  padding: 15px 20px;
  background-color: rgb(237, 251, 255);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-weight: 600;
}
.job-escription-wrapper .model-title {
  width: 85px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url("../../images/job-escription-icon.png");
}
.job-escription-wrapper .model-contents {
  width: calc(100% - 85px);
}
.job-escription-wrapper .model-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.job-escription-wrapper .model-inner:not(:last-child) {
  margin-bottom: 5px;
  padding-bottom: 5px;
  border-bottom: 1px dashed rgb(0, 72, 144);
}
.job-escription-wrapper .model-inner .small {
  font-size: 0.7rem;
}
.job-escription-wrapper .model-inner .big {
  font-size: 1rem;
}

.job-escription-title {
  margin-bottom: 30px;
  color: rgb(253, 223, 0);
  text-align: center;
  font-weight: 500;
}
.job-escription-title .small {
  display: block;
  font-size: 0.8rem;
}
.job-escription-title .big {
  font-size: 1.1rem;
}

.dashed-title {
  padding-bottom: 5px;
  margin: 0 auto 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 95px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgb(255, 255, 255);
  border-bottom: 1px dashed rgb(255, 255, 255);
}

.job-data-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 0.9rem;
  gap: 10px;
}
.job-data-wrapper:not(:last-child) {
  margin-bottom: 10px;
}
.job-data-wrapper.big .data-title {
  padding: 10px 5px;
  width: 80px;
}
.job-data-wrapper.big .data-contents {
  width: calc(100% - 20px - 80px);
}
.job-data-wrapper .data-title {
  width: 50px;
  padding: 2px;
  color: rgb(255, 255, 255);
  text-align: center;
  background-color: rgb(0, 72, 144);
}
.job-data-wrapper .data-contents {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  width: calc(100% - 20px - 50px);
  color: rgb(255, 255, 255);
}
.job-data-wrapper .small {
  font-size: 0.7rem;
}

.yellow-check-list {
  color: rgb(255, 255, 255);
  font-size: 0.9rem;
}
.yellow-check-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
}
.yellow-check-list li::before {
  content: "";
  display: block;
  width: 24px;
  aspect-ratio: 1/1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url("../../images/check-link.svg");
}
.yellow-check-list li:not(:last-child) {
  margin-bottom: 10px;
}
.yellow-check-list li span {
  width: calc(100% - 10px - 24px);
}

.recruit-flow-section .yellow-title {
  margin-bottom: 30px;
}

.recruit-flow-wrapper {
  counter-reset: number 0;
}

.recruit-flow-box {
  counter-increment: number 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 15px;
}
.recruit-flow-box:not(:last-child) {
  margin-bottom: 10px;
}
.recruit-flow-box:not(:last-child)::after {
  margin: auto;
  content: "";
  display: block;
  width: 63px;
  aspect-ratio: 63/21;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url("../../images/recruit-flow-arrow.svg");
}
.recruit-flow-box .image-box {
  width: 40%;
}
.recruit-flow-box .text-box {
  font-size: 0.9rem;
  width: calc(60% - 15px);
}
.recruit-flow-box .recruit-info-title {
  margin-bottom: 5px;
  font-size: 0.9rem;
  font-weight: 600;
}
.recruit-flow-box .recruit-info-title::before {
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  color: rgb(8, 135, 226);
  content: counter(number, decimal-leading-zero) ".";
}

.bg-white-wrapper {
  margin-top: 130px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-position: top;
  background-image: url("../../images/bg-white.png");
}
.bg-white-wrapper .flow-white-deco1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 45px;
  -webkit-transform: translateY(calc(-100% - 30px));
          transform: translateY(calc(-100% - 30px));
}
.bg-white-wrapper .flow-white-deco2 {
  width: 45px;
  position: absolute;
  top: 0;
  right: 25%;
}
.bg-white-wrapper .flow-white-staff {
  position: absolute;
  top: -90px;
  right: 10px;
  width: 35%;
  z-index: -1;
}
.bg-white-wrapper .speech-bubble-text {
  -webkit-transform: translateY(-35px);
          transform: translateY(-35px);
}

.bg-mountain-wrapper {
  position: relative;
}
.bg-mountain-wrapper .bg-mountain {
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
}
.bg-mountain-wrapper .mountain-staff {
  position: absolute;
  bottom: 50px;
  right: 30px;
  z-index: 3;
  width: 90%;
  max-width: 120px;
}
.bg-mountain-wrapper .mountain-flag {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  z-index: 2;
}
.bg-mountain-wrapper .contents-wrapper {
  position: absolute;
  bottom: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 4;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 15px 1fr 15px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.bg-mountain-wrapper .contents-wrapper p {
  aspect-ratio: 1/1;
  background-color: rgb(8, 135, 226);
  color: rgb(255, 255, 255);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  border-radius: 50%;
}

.main-entry-section {
  position: relative;
  z-index: 2;
  background-color: rgb(0, 72, 144);
  color: rgb(255, 255, 255);
}
.main-entry-section .main-link-deco {
  width: 95px;
  margin-left: 0;
}
.main-entry-section .main-link-text {
  margin-top: -20px;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 600;
}
.main-entry-section .main-link-text .small {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.main-entry-section .main-link-text .big {
  font-size: 1.4rem;
}
.main-entry-section .main-link-fire {
  margin-bottom: 30px;
  max-width: 103px;
}
.main-entry-section .menu-btn-wrapper {
  display: -ms-grid;
  display: grid;
  gap: 15px;
  -ms-grid-columns: 1fr 15px 1fr;
  grid-template-columns: repeat(2, 1fr);
}
.main-entry-section .menu-btn-wrapper a {
  border: 2px solid rgb(255, 255, 255);
}
.main-entry-section .menu-btn-wrapper a .ja::after {
  background-color: rgb(255, 255, 255);
}

footer {
  position: relative;
  padding-top: 50px;
  background-color: rgb(1, 44, 86);
  color: rgb(255, 255, 255);
}
footer .contents-wrapper {
  margin-bottom: 50px;
}
footer a {
  color: rgb(255, 255, 255);
}
footer a:hover {
  color: rgb(253, 223, 0);
}
footer .footer-menu {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgb(56, 92, 127);
  max-width: 300px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
footer .instagram::before {
  content: "";
  display: block;
  width: 22px;
  aspect-ratio: 1/1;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: rgb(255, 255, 255);
  -webkit-mask-image: url("../../images/instagram.svg");
          mask-image: url("../../images/instagram.svg");
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
footer .instagram:hover::before {
  background-color: rgb(253, 223, 0);
}
footer .top-link {
  position: absolute;
  right: 0;
  bottom: 47px;
  width: 125px;
}
footer .top-link .arrow-link {
  position: absolute;
  bottom: 10px;
  right: 10px;
  color: rgb(0, 72, 144);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}
footer .top-link .arrow-link::after {
  -webkit-transform: translateY(-2px) rotate(-90deg);
          transform: translateY(-2px) rotate(-90deg);
}
footer .top-link:hover .arrow-link::after {
  -webkit-transform: translateY(-5px) rotate(-90deg);
          transform: translateY(-5px) rotate(-90deg);
}

.footer-logo {
  margin: 0 auto 30px;
  max-width: 140px;
}

.company-info-box {
  max-width: 335px;
  margin: auto;
  font-size: 0.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
  line-height: 1.8em;
}
.company-info-box:not(:last-child) {
  margin-bottom: 10px;
}
.company-info-box .title {
  width: 55px;
}
.company-info-box .contents {
  width: calc(100% - 55px - 20px);
}
.company-info-box .small {
  font-size: 0.7rem;
}

.copy-right {
  background-color: rgb(0, 33, 67);
  padding: 15px;
  text-align: center;
  font-size: 0.7rem;
}
.copy-right span {
  margin-right: 15px;
}
/*# sourceMappingURL=main.css.map */