/*=============================
font
=============================*/
@font-face {
  font-family: "A1MinchoStd-Bold";
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/A-OTF-A1MinchoStd-Bold.otf") format("opentype");
}
@font-face {
  font-family: "LEMONMILK";
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/LEMONMILK-Medium.woff2") format("woff2");
  src: url("../fonts/LEMONMILK-Medium.woff") format("woff");
  src: url("../fonts/LEMONMILK-Medium.otf") format("opentype");
}
[lang=en] {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
}

/*=============================
color
=============================*/
/*=============================
responsive
=============================*/
.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.pc-only {
  display: block;
}
@media screen and (max-width: 959px) {
  .pc-only {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

.tab {
  display: none;
}
@media screen and (max-width: 959px) {
  .tab {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .tab {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

/*=============================
common
=============================*/
html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  width: 100%;
}

body {
  background-color: #1a1a1a;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: clamp(13px, 1.15vw, 15px);
  font-style: normal;
  line-height: 2;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.3rem;
  }
}

img {
  width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}
a:hover {
  opacity: 0.9;
  transition: all ease 0.5s;
}

ul,
li {
  list-style: none;
}

button {
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.inner {
  width: 80%;
  max-width: 1250px;
  margin: 0 auto;
}
@media screen and (max-width: 959px) {
  .inner {
    width: 85%;
  }
}
@media screen and (max-width: 767px) {
  .inner {
    width: 88%;
  }
}

h2 {
  font-family: "LEMONMILK", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  text-align: center;
  letter-spacing: 0.3em;
  display: inline-block;
  border-bottom: solid 1px #fff;
}
@media screen and (max-width: 767px) {
  h2 {
    font-size: 1.6rem;
  }
}

header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
}

.header-left {
  width: 140px;
}
@media screen and (max-width: 767px) {
  .header-left {
    width: 120px;
  }
}
.header-left a {
  display: block;
}

.header-right {
  display: flex;
  align-items: center;
}
.header-right > a {
  display: inline-block;
}
.header-right a:first-child {
  color: #fff;
  text-decoration: none;
  margin-right: 30px;
}
.header-right a:last-child {
  color: #fff;
  text-decoration: none;
  width: 150px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  header {
    padding: 12px 10px 12px 10px;
  }
  .header-left {
    width: 30%;
  }
  .header-right {
    width: auto;
  }
  .header-right a:first-child {
    display: none;
    margin: 26px 0px 0;
  }
  .header-right a:last-child {
    /* position: fixed;
    top: 0;
    right: 0; */
    width: 120px;
  }
}
.message {
  padding: 70px 0;
  margin: 0 auto;
  background-image: url("../img/top_bg.jpg");
  background-size: 103%;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .message {
    padding: 50px 0 40px;
    background-image: url("../img/top_bg_sp.jpg");
    background-size: 100%;
  }
}
.message .message-wrapper {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .message .message-wrapper {
    display: block;
    text-align: center;
    letter-spacing: 0.1em;
    margin: 0 auto;
  }
}
.message .message-wrapper .message-l {
  width: 65%;
}
@media screen and (max-width: 767px) {
  .message .message-wrapper .message-l {
    width: 100%;
  }
}
.message .message-wrapper .message-l .message-ja {
  line-height: 2.5;
}
@media screen and (max-width: 767px) {
  .message .message-wrapper .message-l .message-ja {
    line-height: 2;
  }
}
.message .message-wrapper .message-l .message-en {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .message .message-wrapper .message-l .message-en {
    font-size: 1.2rem;
    letter-spacing: 0em;
  }
}
.message .message-wrapper .message-r {
  width: 35%;
}
@media screen and (max-width: 767px) {
  .message .message-wrapper .message-r {
    width: 80%;
    margin: 30px auto 0;
  }
}

.achievemnets {
  text-align: center;
  padding: 80px 0;
  background-image: url(../img/achievements_bg.jpg);
  background-size: cover;
  background-position: center;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .achievemnets {
    padding: 50px 0;
    background-image: url(../img/achievements_bg_sp.jpg);
  }
}
.achievemnets .achievemnets-container {
  margin-top: 60px;
  text-align: left;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 767px) {
  .achievemnets .achievemnets-container {
    margin-top: 50px;
  }
}
.achievemnets .achievemnets-container .card {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  padding: 20px 35px;
  margin-bottom: 35px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 0.2px solid #fff;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 959px) {
  .achievemnets .achievemnets-container .card {
    padding: 20px 20px 20px 15px;
    margin-bottom: 30px;
  }
}
.achievemnets .achievemnets-container .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
.achievemnets .achievemnets-container .card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .achievemnets .achievemnets-container .card-header {
    gap: 12px;
  }
}
.achievemnets .achievemnets-container .icon {
  width: 12px;
  height: 12px;
  margin-top: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .achievemnets .achievemnets-container .icon {
    margin-top: 5px;
  }
}
.achievemnets .achievemnets-container .icon-green {
  background: #d5fc6e;
}
.achievemnets .achievemnets-container .icon-pink {
  background: #ce82f8;
}
.achievemnets .achievemnets-container .icon-red {
  background: #ef4444;
}
.achievemnets .achievemnets-container .icon-blue {
  background: #688af7;
}
.achievemnets .achievemnets-container .card-title {
  font-size: clamp(14px, 1.6vw, 18px);
  font-weight: 600;
  line-height: 1.5;
}
.achievemnets .achievemnets-container .card-subtitle {
  font-size: clamp(13px, 1.35vw, 15px);
  margin-left: 28px;
}
@media screen and (max-width: 767px) {
  .achievemnets .achievemnets-container .card-subtitle {
    margin-left: 25px;
  }
}
.achievemnets .achievemnets-container .divider {
  height: 1px;
  background-color: #fff;
  margin: 10px 0;
  margin-left: 25px;
}
.achievemnets .achievemnets-container .achievement-list {
  display: flex;
  flex-direction: column;
  margin-left: 28px;
}
.achievemnets .achievemnets-container .achievement-item {
  font-size: clamp(13px, 1.3vw, 14px);
  line-height: 1.5;
  padding-left: 0;
}
@media screen and (max-width: 767px) {
  .achievemnets .achievemnets-container .achievement-item {
    letter-spacing: 0.05em;
  }
}
.achievemnets .achievemnets-container .grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .achievemnets .achievemnets-container .grid-2 {
    gap: 0;
  }
}

.movie {
  padding: 70px 0;
  text-align: center;
  background-color: #fff;
  color: #333;
}
@media screen and (max-width: 767px) {
  .movie {
    padding: 50px 0;
  }
}
.movie h2 {
  border-bottom: 1px #333 solid;
}
.movie .movie-container {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.movie .movie-container .movie-list {
  width: 48%;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .movie .movie-container .movie-list {
    width: 95%;
    margin: 0 auto 35px;
  }
}
.movie .movie-container .movie-list h3 {
  margin-top: 10px;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
}

.profile {
  padding: 70px 0;
}
@media screen and (max-width: 959px) {
  .profile {
    padding: 50px 0;
  }
}
.profile .profile-title {
  display: flex;
  gap: 10px;
}
.profile .profile-title .icon {
  width: 12px;
  height: 12px;
  margin-top: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 13px;
}
@media screen and (max-width: 767px) {
  .profile .profile-title .icon {
    margin-top: 10px;
  }
}
.profile .profile-title .icon-purple {
  background-color: #db7dff;
}
.profile .profile-title h2 {
  border-bottom: none;
}
.profile .profile-title_sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .profile .profile-title_sp {
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  .profile .profile-title_pc {
    display: none;
  }
}
.profile .profile01 {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 959px) {
  .profile .profile01 {
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .profile .profile01 {
    display: block;
  }
}
.profile .profile01 .profile01-l {
  width: 45%;
  font-size: 1.4rem;
}
@media screen and (max-width: 959px) {
  .profile .profile01 .profile01-l {
    width: 50%;
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  .profile .profile01 .profile01-l {
    width: 100%;
    margin-top: 25px;
  }
}
.profile .profile01 .profile01-l .profile-table {
  width: 100%;
  border-collapse: collapse;
}
.profile .profile01 .profile01-l .profile-table th,
.profile .profile01 .profile01-l .profile-table td {
  text-align: left;
  padding: 5px 0;
  position: relative;
  border: none;
}
.profile .profile01 .profile01-l .profile-table td::after,
.profile .profile01 .profile01-l .profile-table th::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transform: scaleY(0.5);
  transform-origin: bottom;
}
.profile .profile01 .profile01-l .profile-table th {
  font-family: "LEMONMILK", sans-serif;
  width: 45%;
  padding-right: 30px;
}
@media screen and (max-width: 767px) {
  .profile .profile01 .profile01-l .profile-table th {
    padding-right: 20px;
  }
}
.profile .profile01 .profile01-l .profile-table td {
  width: 55%;
  font-weight: 300;
}
.profile .profile01 .profile01-l p {
  margin-top: 20px;
  text-align: justify;
  line-height: 2.3;
  font-weight: 300;
}
.profile .profile01 .profile01-r {
  width: 45%;
}
@media screen and (max-width: 767px) {
  .profile .profile01 .profile01-r {
    width: 100%;
    margin-top: 25px;
  }
}
.profile .profile02 {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 959px) {
  .profile .profile02 {
    align-items: center;
    font-size: 1.2rem;
  }
}
.profile .profile02 .profile02-l {
  width: 30%;
}
@media screen and (max-width: 959px) {
  .profile .profile02 .profile02-l {
    width: 28%;
  }
}
.profile .profile02 .profile02-r {
  width: 60%;
  font-weight: 300;
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 959px) {
  .profile .profile02 .profile02-r {
    width: 68%;
  }
}
@media screen and (max-width: 767px) {
  .profile .profile02 .profile02-r {
    width: 100%;
    display: block;
  }
}
.profile .profile02 .profile02-r h3 {
  font-family: "LEMONMILK", sans-serif;
  display: flex;
  gap: 10px;
}
.profile .profile02 .profile02-r .icon-blue {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
  background-color: #7a95bc;
}
.profile .profile02 .profile02-r .profile02-r__left .profile-item {
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .profile .profile02 .profile02-r .profile02-r__left .profile-item {
    margin-bottom: 20px;
  }
}
.profile .profile02 .profile02-r .profile02-r__left .profile-item p {
  font-weight: 300;
  padding-left: 20px;
  line-height: 1.5;
}
.profile .profile02 .profile02-r .profile02-r__right .profile-table {
  margin-left: 20px;
}
.profile .profile02 .profile02-r .profile02-r__right .profile-table th,
.profile .profile02 .profile02-r .profile02-r__right .profile-table td {
  font-weight: 300;
  padding-bottom: 5px;
}
.profile .profile02 .profile02-r .profile02-r__right .profile-table td {
  padding-left: 10px;
}
@media screen and (max-width: 767px) {
  .profile .profile02 .profile02-r .profile02-r__right .profile-table td {
    padding-left: 5px;
  }
}
@media screen and (max-width: 767px) {
  .profile .profile02 .profile02-r .profile02-r__right .profile-table_wrap {
    display: flex;
  }
}

.contact {
  padding: 50px 0 90px;
}
@media screen and (max-width: 959px) {
  .contact {
    padding: 40px 0 50px;
  }
}
@media screen and (max-width: 767px) {
  .contact {
    padding: 20px 0;
  }
}
.contact h2 {
  width: 100%;
  border-bottom: none;
}
.contact .inner {
  width: 50%;
  max-width: 400px;
}
@media screen and (max-width: 959px) {
  .contact .inner {
    width: 40%;
  }
}
@media screen and (max-width: 767px) {
  .contact .inner {
    width: 80%;
  }
}
.contact .web {
  margin: 50px auto 0;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .contact .web {
    margin-top: 40px;
  }
}
.contact .sns-wrapper {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 959px) {
  .contact .sns-wrapper {
    gap: 35px;
  }
}
@media screen and (max-width: 767px) {
  .contact .sns-wrapper {
    margin-bottom: 25px;
    gap: 25px;
  }
}
.contact .sns-wrapper .icon {
  width: 38px;
  height: 38px;
}
@media screen and (max-width: 959px) {
  .contact .sns-wrapper .icon {
    width: 35px;
    height: 35px;
  }
}
@media screen and (max-width: 767px) {
  .contact .sns-wrapper .icon {
    width: 27px;
    height: 27px;
  }
}

footer {
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  footer {
    padding-bottom: 25px;
  }
}
footer a {
  display: block;
  width: 25%;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  footer a {
    width: 70%;
  }
}/*# sourceMappingURL=style.css.map */