@keyframes fadeUpAnime {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(64px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(60px);
  }
}
:root {
  --text-black: #333333;
  --blue01:#2288CC;
  --blue02:#2188Ca;
  --gray01:#dddddd;
  --gray02:#f5f5f5;
  --blak01:#000;
  --montserrat: "Montserrat", sans-serif;
}

* {
  margin: 0;
  padding: 0;
}

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

html {
  font-size: 62.5%;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 500;
  color: var(--text-black);
  background: #fff;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: auto;
}
@media screen and (max-width:768px) {
  body {
    font-size: 1.5rem;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

a {
  color: var(--text-black);
  text-decoration: none;
  transition: opacity 0.3s ease-in-out, back-ground 0.3s ease-in-out, color 0.3s ease-in-out;
  opacity: 1;
}

a:hover {
  opacity: 1;
}

ul,
li {
  list-style: none;
}

table {
  border-collapse: collapse;
}

table thead th,
table thead td {
  background-color: #f2f2f2;
}

table th,
table td {
  border-collapse: collapse;
}

table th {
  text-align: left;
}

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

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.is-pc {
  display: block;
}

@media screen and (max-width: 768px) {
  .is-pc {
    display: none;
  }
}
.is-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .is-sp {
    display: block;
  }
}
a[href^=tel] {
  text-decoration: none;
  color: inherit;
}

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
.en {
  font-family: var(--montserrat);
  font-weight: 800;
}

.bold {
  font-weight: 700;
}

.semi-bold {
  font-weight: 600;
}

.medium {
  font-weight: 500;
}

section {
  padding: 100px 0;
}
@media screen and (max-width:768px) {
  section {
    padding: 64px 0;
  }
}

.inner {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
}

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

.ta-j {
  text-align: justify;
}

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

hgroup {
  margin-bottom: 48px;
  text-align: center;
}
@media screen and (max-width:768px) {
  hgroup {
    margin-bottom: 32px;
  }
}
hgroup .sec-ttl {
  font-family: var(--montserrat);
  font-weight: 800;
  text-align: center;
  letter-spacing: 0;
  line-height: 1.2222222222;
  color: var(--blue01);
  font-size: clamp(3.6rem, 5vw, 7.2rem);
}
hgroup p {
  font-weight: 700;
  line-height: 1.4583333333;
  font-size: clamp(1.8rem, 1.6666666667vw, 2.4rem);
}

.text-strong {
  color: var(--blue02);
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width:768px) {
  .text-strong {
    font-size: 1.7rem;
  }
}

.link-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--blue01);
  font-weight: 700;
  column-gap: 16px;
  width: fit-content;
  margin: 32px auto 0;
}
.link-btn:hover .icon::after {
  transform: translateX(6px);
}
.link-btn .icon {
  width: 60px;
  height: 60px;
  border: 1px solid var(--blue01);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.link-btn .icon::after {
  content: "";
  background-color: var(--blue02);
  -webkit-mask: url(../../assets/images/arrow-right.svg) no-repeat center/contain;
  mask: url(../../assets/images/arrow-right.svg) no-repeat center/contain;
  width: 16px;
  height: 6px;
  transition: all 0.3s ease;
}

.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fade.fadeUp {
  -webkit-animation-name: fadeUpAnime;
  animation-name: fadeUpAnime;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  opacity: 0;
  will-change: opacity, transform;
}

.p-ab {
  position: absolute;
}

.p-rel {
  position: relative;
}

.p-fixed {
  position: fixed;
}

.footer {
  background: #000;
  padding: 16px 0;
}
.footer small {
  color: white;
  font-size: 1.4rem;
  text-align: center;
  display: block;
}

#page-top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  opacity: 0;
  transform: translateY(60px);
}
#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}
#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--blue01);
  border-radius: 5px;
  width: 40px;
  height: 40px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1rem;
  font-family: var(--montserrat);
  transition: all 0.3s ease;
}
#page-top a:hover {
  background-color: #2288CC;
}

:root {
  --text-black: #333333;
  --blue01: #2288cc;
  --blue02: #2188ca;
  --gray01: #dddddd;
  --gray02: #f5f5f5;
  --blak01: #000;
  --montserrat: "Montserrat", sans-serif;
}

.mv {
  position: relative;
  display: grid;
  place-content: center;
  width: 100%;
  height: 680px;
  background: url(../../assets/images/mv.jpg) no-repeat center/cover;
}
@media screen and (max-width:768px) {
  .mv {
    height: 340px;
  }
}
.mv::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  content: "";
  background-color: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
}
.mv .mv-contents {
  position: relative;
  z-index: 3;
}
.mv .mv-contents .mv-text {
  color: white;
  font-size: clamp(2.3rem, 2.7777777778vw, 4rem);
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 1.6666666667vw;
}
@media screen and (max-width:768px) {
  .mv .mv-contents .mv-text {
    margin-bottom: 16px;
  }
}
.mv .mv-contents .mv-logo {
  width: clamp(250px, 34.7222222222vw, 500px);
  display: block;
  margin: auto;
}

section .desc {
  text-align: center;
}
@media screen and (max-width:768px) {
  section .desc {
    text-align: left;
  }
}

.service {
  background: var(--gray02);
}
.service .link-list {
  display: flex;
  justify-content: center;
  margin-top: 56px;
  align-items: center;
}
@media screen and (max-width:768px) {
  .service .link-list {
    flex-direction: column;
    margin-top: 24px;
  }
}
.service .link-list .link-item {
  width: 50%;
  aspect-ratio: 540/300;
  position: relative;
  background: url(../../assets/images/service01.jpg) no-repeat center/cover;
}
@media screen and (max-width:768px) {
  .service .link-list .link-item {
    width: 100%;
  }
}
.service .link-list .link-item::after {
  content: "";
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.service .link-list .link-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.service .link-list .link-item a:hover .content .icon::after {
  transform: translateX(6px);
}
.service .link-list .link-item a .content {
  position: relative;
  z-index: 3;
}
.service .link-list .link-item a .content .text {
  text-align: center;
  font-weight: 700;
  font-size: 2.4rem;
  margin-bottom: 24px;
  color: white;
}
@media screen and (max-width:768px) {
  .service .link-list .link-item a .content .text {
    font-size: 2.2rem;
  }
}
.service .link-list .link-item a .content .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid white;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service .link-list .link-item a .content .icon::after {
  content: "";
  background: url(../../assets/images/arrow-right.svg) no-repeat center/contain;
  width: 16px;
  height: 6px;
  transition: all 0.3s ease;
}
.service .link-list .link-item.company-link {
  background: url(../../assets/images/service02.jpg) no-repeat center/cover;
}

.company-profile .profile {
  max-width: 680px;
  margin: 64px auto 0;
}
@media screen and (max-width:768px) {
  .company-profile .profile {
    margin-top: 24px;
  }
}
.company-profile .profile .flex {
  align-items: stretch;
}
.company-profile .profile dt,
.company-profile .profile dd {
  padding: 16px 0;
}
.company-profile .profile dt {
  width: 26.4705882353%;
  padding: 16px;
  border-bottom: 1px solid var(--blue02);
}
@media screen and (max-width:768px) {
  .company-profile .profile dt {
    padding: 16px 10px;
  }
}
.company-profile .profile dd {
  width: 73.5294117647%;
  border-bottom: 1px solid var(--gray01);
}

.contact {
  background: url(../../assets/images/contact-bg.jpg) no-repeat center/cover;
  position: relative;
}
.contact::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(33, 136, 202, 0.8);
}
.contact .inner {
  position: relative;
  z-index: 1;
}
.contact .inner.flex {
  justify-content: flex-start;
  -moz-column-gap: 4.4444444444%;
  column-gap: 4.4444444444%;
  align-items: flex-start;
}
@media screen and (max-width:768px) {
  .contact .inner.flex {
    flex-direction: column;
    align-items: center;
  }
}
.contact hgroup .sec-ttl {
  color: white;
  text-align: left;
}
.contact hgroup p {
  color: white;
  text-align: left;
}
@media screen and (max-width:768px) {
  .contact hgroup p {
    text-align: center;
  }
}
.contact .desc {
  color: white;
}
.contact .content {
  padding-top: 0.8em;
}

.link-btn02 {
  background-color: white;
  border-radius: 60px;
  max-width: 360px;
  width: 100%;
  height: 70px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
  padding: 0 42px;
  color: var(--text-black);
}
@media screen and (max-width:768px) {
  .link-btn02 {
    margin-top: 24px;
    height: 60px;
  }
}
.link-btn02 .text {
  position: absolute;
  top: 50%;
  font-weight: 500;
  left: 50%;
  transform: translate(-50%, -50%);
}
.link-btn02 .icon {
  margin-left: auto;
  width: 30px;
  height: 30px;
  border: 1px solid var(--blue02);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.link-btn02 .icon::after {
  content: "";
  width: 12px;
  height: 4px;
  background-color: var(--blue02);
  mask: url(../../assets/images/arrow-right.svg) no-repeat center/contain;
}

.map {
  padding: 80px 0 40px;
}
@media screen and (max-width:768px) {
  .map {
    padding: 60px 0;
  }
}
.map .iframe-wrapper {
  filter: grayscale(100%);
  width: 100%;
  margin-bottom: 60px;
  height: 400px;
}
@media screen and (max-width:768px) {
  .map .iframe-wrapper {
    margin-bottom: 32px;
  }
}
.map .iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.map .map-bottom-logo {
  text-align: center;
  max-width: 340px;
  display: block;
  width: 90%;
  margin: 0 auto;
}

:root {
  --text-black: #333333;
  --blue01: #2288cc;
  --blue02: #2188ca;
  --gray01: #dddddd;
  --gray02: #f5f5f5;
  --blak01: #000;
  --montserrat: "Montserrat", sans-serif;
}

.lower-page {
  position: relative;
}
.lower-page h1 {
  position: absolute;
  top: 40px;
  left: 30px;
  max-width: 300px;
  z-index: 99;
}
@media screen and (max-width:768px) {
  .lower-page h1 {
    max-width: 150px;
    top: 20px;
    left: 16px;
  }
}
.lower-page .page-ttl-area {
  position: relative;
  display: grid;
  place-content: center;
  height: 340px;
  width: 100%;
  background: url(../../assets/images/page-ttl01.jpg) no-repeat center/cover;
}
@media screen and (max-width:768px) {
  .lower-page .page-ttl-area {
    height: 240px;
  }
}
.lower-page .page-ttl-area::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 0;
}
.lower-page .page-ttl-area hgroup {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
.lower-page .page-ttl-area hgroup .page-ttl {
  color: white;
  font-weight: 700;
  line-height: 1.4583333333;
  font-size: clamp(3rem, 3.3333333333vw, 4.8rem);
  margin-bottom: 8px;
}
.lower-page .page-ttl-area hgroup .en {
  color: #2288cc;
  font-weight: 800;
  line-height: 1.2083333333;
  letter-spacing: 0;
}

.lead {
  font-size: clamp(1.8rem, 2.0833333333vw, 3rem);
  font-weight: 700;
  line-height: 1.4666666667;
  margin-bottom: 40px;
}

.corporate-trainning .trainning-list-wrapper {
  background-color: rgba(34, 136, 204, 0.1);
  padding: 3.3333333333vw 4.1666666667vw;
}
@media screen and (max-width:768px) {
  .corporate-trainning .trainning-list-wrapper {
    padding: 20px;
  }
}
.corporate-trainning .trainning-list-wrapper dl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 4.1666666667vw;
}
@media screen and (max-width:768px) {
  .corporate-trainning .trainning-list-wrapper dl {
    flex-direction: column;
  }
}
.corporate-trainning .trainning-list-wrapper dl dt {
  width: fit-content;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4583333333;
  color: var(--blue02);
}
@media screen and (max-width:768px) {
  .corporate-trainning .trainning-list-wrapper dl dt {
    font-size: 2.2rem;
    margin-bottom: 16px;
  }
}
.corporate-trainning .trainning-list-wrapper dl dd {
  display: flex;
  align-items: flex-start;
  flex: 1;
}
@media screen and (max-width:768px) {
  .corporate-trainning .trainning-list-wrapper dl dd {
    flex-direction: column;
  }
}
.corporate-trainning .trainning-list-wrapper dl dd ul {
  width: 50%;
}
@media screen and (max-width:768px) {
  .corporate-trainning .trainning-list-wrapper dl dd ul {
    width: 100%;
  }
}

.price {
  background-color: var(--gray02);
}
.price .price-list {
  column-gap: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width:768px) {
  .price .price-list {
    flex-direction: column;
    row-gap: 40px;
  }
}
.price .price-list .item h4 {
  font-size: clamp(1.8rem, 2.0833333333vw, 3rem);
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1.4666666667;
}
.price .price-list .item .img-wrapper {
  height: 200px;
}
.price .price-list .item .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.price .price-list .item .price {
  color: var(--blue02);
  text-align: center;
  line-height: 1.2166666667;
  margin: 10px 0;
}
.price .price-list .item .price .mark {
  font-size: clamp(2.4rem, 3.3333333333vw, 4.8rem);
}
.price .price-list .item .price .num {
  font-weight: 800;
  font-size: clamp(3.2rem, 4.1666666667vw, 6rem);
}
.price .price-list .item .price .zei {
  font-size: 1.8rem;
}
@media screen and (max-width:768px) {
  .price .price-list .item .price .zei {
    font-size: 1.4rem;
  }
}
.price .price-list .item .hours {
  text-align: center;
  color: var(--blue02);
  background-color: white;
  border-radius: 30px;
  font-size: 1.8rem;
  padding: 8px;
  font-weight: 700;
}
.price .note {
  text-align: center;
  font-size: 1.8rem;
}
@media screen and (max-width:768px) {
  .price .note {
    font-size: 1.6rem;
  }
}

/*# sourceMappingURL=style.css.map */
