@import url("https://fonts.googleapis.com/css2?family=Hind:wght@700&family=Noto+Sans+JP:wght@400;500;700&family=Roboto:wght@400;500;700&display=swap");
* {
  box-sizing: border-box;
}

a {
  color: #0E7696;
  text-decoration: none;
  font-weight: 500;
}
a:hover {
  text-decoration: underline;
}

body {
  margin: 0px;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  color: #212121;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 30px;
}

.main {
  width: 100%;
}

.large_button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-top: 52px;
  margin-bottom: 0;
  width: 100%;
  max-width: 335px;
  height: 80px;
  border: 4px solid #212121;
  border-radius: 3px;
  box-sizing: border-box;
  color: #212121;
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
}

.header {
  margin-top: 30px;
  display: flex;
  height: 58px;
  justify-content: space-between;
}
.header .menu {
  flex-wrap: wrap;
  margin-left: 8px;
  justify-content: flex-end;
  margin-right: -8px;
}
@media screen and (min-width: 0px) {
  .header .menu {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .header .menu {
    display: flex;
  }
}
.header .menu .menu_item {
  margin: 0 8px;
  color: #212121;
  font-weight: 500;
  font-size: 16px;
  line-height: 32px;
  opacity: 1;
  margin-right: 8px;
  text-align: center;
}

.message {
  display: flex;
  justify-content: space-around;
}
@media screen and (min-width: 0px) {
  .message {
    flex-direction: column;
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
@media screen and (min-width: 768px) {
  .message {
    flex-direction: row;
    padding-top: 144px;
    padding-bottom: 144px;
  }
  .message .message_text {
    margin-right: 32px;
  }
}
.message .message_text {
  font-family: "Hind", sans-serif;
  font-weight: Bold;
}
@media screen and (min-width: 0px) {
  .message .message_text {
    font-size: 32px;
    line-height: 48px;
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 768px) {
  .message .message_text {
    font-size: 60px;
    line-height: 72px;
    margin-bottom: 0;
  }
}
.message .message_text__nowrap {
  display: block;
  white-space: nowrap;
}
.message .message_box {
  display: flex;
  flex-direction: column;
  max-width: 500px;
}
.message .message_box .message_main {
  font-weight: 500;
}
@media screen and (min-width: 0px) {
  .message .message_box .message_main {
    font-size: 24px;
  }
}
@media screen and (min-width: 768px) {
  .message .message_box .message_main {
    font-size: 40px;
  }
}
@media screen and (min-width: 0px) {
  .message .message_box .message_sub {
    margin-top: 8px;
    font-size: 14px;
    word-break: break-all;
  }
}
@media screen and (min-width: 768px) {
  .message .message_box .message_sub {
    margin-top: 32px;
    font-size: 20px;
    word-break: normal;
  }
}

.section {
  min-height: 200px;
  margin: 0 auto;
  padding-top: 48px;
  padding-bottom: 48px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .section {
    width: 80%;
  }
}
.section_header {
  font-weight: 500;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
  margin-top: 0;
  margin-bottom: 60px;
}
@media screen and (min-width: 0px) {
  .section_header {
    font-size: 24px;
  }
}
@media screen and (min-width: 768px) {
  .section_header {
    font-size: 40px;
  }
}

.notification {
  background: #f2f2f2;
}
.notification.section {
  width: auto;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}
.notification .notification_box {
  display: block;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .notification .notification_box {
    width: 80%;
  }
}
.notification .notification_box .notification_item {
  font-size: 16px;
  line-height: 32px;
}
@media screen and (min-width: 0px) {
  .notification .notification_box .notification_item:not(:first-child) {
    margin-top: 16px;
  }
}
@media screen and (min-width: 768px) {
  .notification .notification_box .notification_item {
    display: flex;
    margin-top: 0;
  }
}
.notification .notification_box .notification_item .notification_header {
  font-weight: bold;
  width: 160px;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .notification .notification_box .notification_item .notification_header {
    margin-right: 36px;
  }
}
.notification .notification_box .notification_item .notification_type {
  display: inline-block;
  width: 64px;
  margin-right: 8px;
}

.mission .mission_text {
  display: block;
  margin: auto;
}
.mission .mission_text .mission_title {
  margin: auto;
  font-style: normal;
  font-weight: bold;
  font-size: 42px;
  line-height: 70px;
  display: block;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 0px) {
  .mission .mission_text .mission_title {
    font-size: 24px;
    margin-bottom: 32px;
  }
}
@media screen and (min-width: 768px) {
  .mission .mission_text .mission_title {
    font-size: 42px;
    margin-top: 72px;
    margin-bottom: 72px;
  }
}
.mission .mission_text .mission_sub {
  font-style: normal;
  font-size: 16px;
  line-height: 25px;
}

.product.section {
  width: auto;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}
.product .product_box {
  margin: auto;
  background: #e3f6fccc;
  padding-top: 48px;
  padding-bottom: 48px;
}
.product .product_box .product_main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .product .product_box .product_main {
    width: 80%;
    margin: auto;
  }
}
@media screen and (min-width: 1440px) {
  .product .product_box .product_main {
    width: 100%;
  }
}
@media screen and (min-width: 0px) {
  .product .product_box .product_main {
    flex-direction: column;
  }
}
@media screen and (min-width: 1440px) {
  .product .product_box .product_main {
    flex-direction: row;
  }
}
.product .product_box .product_image {
  display: block;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 0px) {
  .product .product_box .product_image {
    max-height: 400px;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 48px;
  }
}
@media screen and (min-width: 1440px) {
  .product .product_box .product_image {
    max-height: unset;
    width: 50%;
    flex-shrink: 0;
    margin-right: 64px;
    margin-bottom: 0;
  }
}
.product .product_box .product_texts {
  display: block;
}
.product .product_box .product_texts .xl-break {
  display: none;
}
@media screen and (min-width: 1440px) {
  .product .product_box .product_texts .xl-break {
    display: inline;
  }
}
.product .product_box .product_texts .product_concept {
  font-style: normal;
  font-weight: 500;
  display: block;
}
@media screen and (min-width: 0px) {
  .product .product_box .product_texts .product_concept {
    font-size: 20px;
  }
}
@media screen and (min-width: 768px) {
  .product .product_box .product_texts .product_concept {
    font-size: 28px;
    line-height: 50px;
    letter-spacing: 0.05em;
  }
}
.product .product_box .product_texts .product_feature {
  font-style: normal;
  font-weight: bold;
  display: block;
  margin-top: 8px;
  margin-bottom: 8px;
}
@media screen and (min-width: 0px) {
  .product .product_box .product_texts .product_feature {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  .product .product_box .product_texts .product_feature {
    font-size: 18px;
    line-height: 48px;
  }
}
.product .product_box .product_texts .product_name {
  font-style: normal;
  font-weight: bold;
  display: block;
  color: #1189b0;
  margin: 0;
}
@media screen and (min-width: 0px) {
  .product .product_box .product_texts .product_name {
    font-size: 36px;
  }
}
@media screen and (min-width: 768px) {
  .product .product_box .product_texts .product_name {
    font-size: 50px;
    line-height: 55px;
  }
}
.product .product_box .product_texts .product_detail {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  display: block;
  margin-top: 18px;
  line-height: 1.7;
}
@media screen and (min-width: 1440px) {
  .product .product_box .product_texts .product_link {
    margin-left: 0;
  }
}

.members.section {
  width: 100%;
  width: auto;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}
.members .members_box {
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  grid-gap: 64px;
}
.members .members_box .element .profile {
  display: flex;
}
.members .members_box .element .profile .icon {
  width: 170px;
  height: 170px;
  display: block;
  margin-bottom: 16px;
  filter: contrast(115%) saturate(105%) brightness(95%);
}
.members .members_box .element .profile .icon.round {
  border-radius: 50%;
}
.members .members_box .element .profile .info {
  margin-top: 32px;
  margin-left: 24px;
}
.members .members_box .element .profile .info .name {
  font-weight: 500;
  font-size: 24px;
  display: block;
}
.members .members_box .element .profile .info .name_en {
  font-size: 14px;
  display: block;
  color: #757575;
}
.members .members_box .element .profile .info .position {
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  display: block;
  margin-top: 12px;
}
.members .members_box .element .profile .info .portfolio {
  font-size: 24px;
  line-height: 24px;
  margin-top: 12px;
}
.members .members_box .element .profile .info .portfolio a {
  display: inline-flex;
  text-decoration: none !important;
}
.members .members_box .element .profile .info .portfolio a:not(:first-child) {
  margin-left: 8px;
}
.members .members_box .element .detail {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 24px;
  display: block;
}
.members .members_box .element .hero {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
}
.members .members_box .element.and-you {
  padding: 48px;
  background: #f5f5f5;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.values {
  background: #212121;
  color: #ffffff;
}
.values.section {
  width: auto;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  margin-top: 48px;
}
.values_header {
  margin: auto;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .values_header {
    width: 80%;
  }
}
.values_header .title {
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  line-height: 23px;
}
.values_header .border {
  width: 50px;
  height: 0px;
  border: 1px solid #ffffff;
  margin-left: 20px;
  margin-top: 10px;
}
.values_header .description {
  font-size: 16px;
  margin-left: 20px;
}
.values_box {
  margin: auto;
  margin-top: 72px;
  margin-bottom: 72px;
}
@media screen and (min-width: 768px) {
  .values_box {
    width: 80%;
  }
}
.values_box .value {
  display: flex;
  justify-content: space-between;
  margin-bottom: 72px;
}
@media screen and (min-width: 0px) {
  .values_box .value {
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  .values_box .value {
    flex-direction: row;
  }
}
.values_box .value .value_main {
  display: block;
}
@media screen and (min-width: 0px) {
  .values_box .value .value_main {
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 768px) {
  .values_box .value .value_main {
    width: 170px;
    flex-shrink: 0;
    margin-right: 32px;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1000px) {
  .values_box .value .value_main {
    width: 270px;
  }
}
.values_box .value .value_main .value_title {
  font-weight: bold;
  font-size: 30px;
  display: block;
}
.values_box .value .value_main .value_title_jp {
  font-weight: 500;
  font-size: 12px;
  display: block;
  margin-top: 4px;
}
.values_box .value .value_sub {
  max-width: 660px;
  font-size: 16px;
  display: block;
}
.values_box .value:last-of-type {
  margin-bottom: 0;
}

.application .application_box {
  display: block;
  margin: auto;
}
.application .application_box .application_main {
  display: block;
  margin: auto;
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  margin-bottom: 32px;
}
.application .application_box .application_sub {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
}

.contact .contact_box {
  display: block;
  margin: auto;
}
.contact .contact_box .contact_main {
  display: block;
  margin: auto;
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  margin-bottom: 32px;
}
.contact .contact_box .contact_sub {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
}

.company {
  align-content: center;
}
.company .company_box {
  display: block;
}
.company .company_box .row {
  display: flex;
  margin-top: 40px;
}
@media screen and (min-width: 0px) {
  .company .company_box .row {
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  .company .company_box .row {
    flex-direction: row;
  }
}
.company .company_box .row .title {
  width: 64px;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  display: block;
  margin-right: 52px;
}
.company .company_box .row .content {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  display: block;
}
.company .company_box .row .content ul {
  padding-inline-start: 20px;
}

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