@charset "UTF-8";
/* 文字コードの指定 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
html {
  width: 100%;
}

box {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

body {
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-size: 110%;
}

a {
  text-decoration: none;
}

dl, dt, dd, ol, ul, li {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

.header {
  position: fixed;
  top: 0;
  display: flex;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 45px;
  font-size: 14px;
  line-height: 0;
  border-radius: 2%;
  /* 角丸 */
}

.header-container {
  position: fixed;
  top: 0;
  display: flex;
  z-index: 9999;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 45px;
  margin: auto;
  padding: 0 2.5% 0 2.5%;
  border-radius: 2px;
  background-color: #ffffff;
  opacity: 0.9;
  line-height: 0;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
  /* 影*/
}
@media (min-width: 769px) {
  .header-container {
    width: calc(100% - 0px);
    height: 60px;
    padding: 0 20px 0 20px;
  }
}
@media (min-width: 769px) {
  .header-container .company-name {
    display: none;
  }
}

.logo-sp {
  z-index: 1000;
  padding-left: 10px;
}
@media (min-width: 769px) {
  .logo-sp {
    display: none;
  }
}

.logo-pc {
  z-index: 1000;
  padding-left: 80px;
}
@media (max-width: 768px) {
  .logo-pc {
    display: none;
  }
}

.nav-button {
  display: flex;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 24px;
  color: #080808;
  cursor: pointer;
  padding-right: 10px;
}
@media (min-width: 769px) {
  .nav-button {
    display: none;
  }
}

@media (max-width: 768px) {
  .sp-nav {
    position: absolute;
    top: 60px;
    left: 50%;
    display: none;
    z-index: 100;
    width: 50%;
    padding: 40px 30px 40px 30px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    background-color: #ffffff;
    box-sizing: border-box;
    border-radius: 2%;
    /* 角丸 */
  }
}
@media (min-width: 769px) {
  .sp-nav {
    display: none;
  }
}

.sp-nav-list {
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 12px;
  line-height: 16px;
}
.sp-nav-list li {
  margin-bottom: 40px;
}
.sp-nav-list a {
  color: #313233;
}

.pc-nav {
  display: block;
}
.pc-nav a {
  color: #080808;
  /* リンクの色を変えない */
}
.pc-nav a:hover {
  color: #1BA1E6;
}
@media (max-width: 768px) {
  .pc-nav {
    display: none;
  }
}

.pc-nav-list {
  display: flex;
  align-items: center;
  height: 100%;
  padding-right: 80px;
  margin: 0;
  list-style: none;
  font-size: 12px;
  line-height: 12px;
  font-weight: bold;
}
.pc-nav-list li {
  margin: 0 0 0 50px;
}
@media (max-width: 768px) {
  .pc-nav-list li {
    display: none;
  }
}

.header-item {
  color: #080808;
  z-index: 1000;
}

@media (min-width: 769px) {
  .sp-cover {
    display: none;
  }
}

@media (max-width: 768px) {
  .pc-cover {
    display: none;
  }
}

.sp-cover {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  height: 543px;
  padding-top: 65px;
  padding-right: 20px;
  color: #ffffff;
  background-image: url("../images/top_main.jpg");
  background-color: rgba(255, 255, 255, 0.3);
  /*background-imageは要素ではないのでopacityが効かない、なのでこれで明るくする*/
  background-blend-mode: lighten;
  /*background-imageは要素ではないのでopacityが効かない、なのでこれで明るくする*/
  background-size: cover;
  background-position: center;
}
@media (min-width: 769px) {
  .sp-cover {
    display: none;
  }
}

.sp-cover-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 36px;
  line-height: 60px;
  text-align: left;
  color: #0B3A89;
  opacity: 1;
  text-shadow: 2px 2px 2px #ffffff;
}
@media (min-width: 769px) {
  .sp-cover-title {
    display: none;
  }
}

.pc-cover-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100vh;
  background-color: #F2F3F4;
}
@media (max-width: 768px) {
  .pc-cover-container {
    display: none;
  }
}

.pc-cover-inner-container {
  display: flex;
  flex-direction: column;
  padding-left: 5%;
}
@media (max-width: 768px) {
  .pc-cover-inner-container {
    display: none;
  }
}

.pc-cover-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 42px;
  line-height: 60px;
  text-align: left;
  color: #0B3A89;
  opacity: 1;
  text-shadow: 0px 3px 6px #ffffff;
  font-weight: bold;
}
@media (max-width: 768px) {
  .pc-cover-title {
    display: none;
  }
}

.pc-cover-description {
  font-weight: bold;
  font-size: 16px;
  line-height: 32px;
  text-align: left;
  color: #080808;
  padding-right: 60px;
}
@media (max-width: 768px) {
  .pc-cover-description {
    display: none;
  }
}

.pc-cover-image-container {
  display: flex;
  margin: 0 0 0 auto;
  /*右寄せ*/
  width: 50vw;
  height: auto;
  max-height: 100%;
  opacity: 0.7;
}
@media (max-width: 768px) {
  .pc-cover-image-container {
    display: none;
  }
}

@media (min-width: 769px) {
  .top-img {
    width: 50vw;
    /* 50%かつレスポンシブ */
    height: 50vw;
    /* 50%かつレスポンシブ */
  }
}

.sp-about-cover {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
  height: 405px;
  padding-top: 65px;
  padding-bottom: 30px;
  padding-left: 15px;
  color: #ffffff;
  background-image: url("../images/about_main.jpg");
  background-color: rgba(255, 255, 255, 0.3);
  background-blend-mode: lighten;
  background-size: cover;
  background-position: center;
}
.sp-about-cover .sp-about-title-ja {
  font-weight: bold;
  font-size: 14px;
  line-height: 1;
  text-align: left;
  color: #ffffff;
  text-shadow: 2px 2px 2px #0B3A89;
}
.sp-about-cover .sp-about-title-en {
  font-family: "Gill Sans";
  font-weight: bold;
  font-size: 24px;
  line-height: 1;
  text-align: left;
  color: #ffffff;
  text-shadow: 2px 2px 2px #0B3A89;
}
@media (min-width: 769px) {
  .sp-about-cover {
    display: none;
  }
}

.about {
  padding: 45px 20px 39px 20px;
}
@media (min-width: 769px) {
  .about {
    padding: 100px 200px 140px 200px;
  }
}
.about .about-ceo-message-title-ja {
  font-weight: 500;
  font-size: 12px;
  line-height: 2px;
  text-align: left;
  color: #0B3A89;
}
@media (min-width: 769px) {
  .about .about-ceo-message-title-ja {
    font-size: 16px;
    line-height: 1px;
    text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  }
}
.about .about-ceo-message-title-en {
  font-family: "Gill Sans";
  font-weight: bold;
  font-size: 24px;
  line-height: 2px;
  text-align: left;
  color: #0B3A89;
}
@media (min-width: 769px) {
  .about .about-ceo-message-title-en {
    font-size: 40px;
    line-height: 28px;
    text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  }
}
.about .about-ceo-message-inner {
  padding-top: 9px;
  padding-left: 19px;
  padding-right: 19px;
  padding-bottom: 14px;
}
@media (min-width: 769px) {
  .about .about-ceo-message-inner {
    padding-top: 10px;
    padding-bottom: 50px;
  }
}
.about .ceo-message-description {
  font-weight: 500;
  font-size: 14px;
  line-height: 28px;
  text-align: left;
  color: #313233;
}
@media (min-width: 769px) {
  .about .ceo-message-description {
    font-size: 16px;
  }
}
.about .ceo-name {
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  text-align: right;
  color: #313233;
  margin-top: 30px;
}
@media (min-width: 769px) {
  .about .ceo-name {
    font-size: 16px;
  }
}
.about .about-philosophy-title-ja {
  font-weight: 500;
  font-size: 12px;
  line-height: 2px;
  text-align: left;
  color: #0B3A89;
}
@media (min-width: 769px) {
  .about .about-philosophy-title-ja {
    font-size: 16px;
    line-height: 1px;
    text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  }
}
.about .about-philosophy-title-en {
  font-family: "Gill Sans";
  font-weight: bold;
  font-size: 24px;
  line-height: 2px;
  text-align: left;
  color: #0B3A89;
}
@media (min-width: 769px) {
  .about .about-philosophy-title-en {
    font-size: 40px;
    line-height: 28px;
    text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  }
}
.about .about-philosophy-inner {
  padding-top: 9px;
  padding-left: 19px;
  padding-right: 19px;
}
@media (min-width: 769px) {
  .about .about-philosophy-inner {
    padding-top: 10px;
  }
}
.about .philosophy-description {
  font-weight: 500;
  font-size: 14px;
  line-height: 28px;
  text-align: left;
  color: #313233;
}
@media (min-width: 769px) {
  .about .philosophy-description {
    font-size: 16px;
  }
}

.pc-about-cover-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: auto;
  background-color: #F2F3F4;
}
@media (max-width: 768px) {
  .pc-about-cover-container {
    display: none;
  }
}

.pc-about-title-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 5%;
}
@media (max-width: 768px) {
  .pc-about-title-container {
    display: none;
  }
}

.pc-about-title-wrapper {
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .pc-about-title-wrapper {
    display: none;
  }
}

.pc-about-title-ja {
  font-weight: bold;
  font-size: 18px;
  line-height: 1;
  text-align: left;
  color: #0B3A89;
  text-shadow: 2px 2px 2px #ffffff;
}
@media (max-width: 768px) {
  .pc-about-title-ja {
    display: none;
  }
}

.pc-about-title-en {
  font-family: "Gill Sans";
  font-weight: bold;
  font-size: 44px;
  line-height: 1;
  text-align: left;
  color: #0B3A89;
  text-shadow: 2px 2px 2px #ffffff;
}
@media (max-width: 768px) {
  .pc-about-title-en {
    display: none;
  }
}

.pc-about-title-description {
  font-weight: bold;
  font-size: 14px;
  line-height: 14px;
  text-align: left;
  color: #313233;
}
@media (max-width: 768px) {
  .pc-about-title-description {
    display: none;
  }
}

.pc-about-cover-img-container {
  width: 50%;
  height: auto;
  opacity: 0.7;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
  height: 535px;
  padding-top: 65px;
  background-image: url("../images/about_main.jpg");
  background-color: rgba(255, 255, 255, 0.2);
  background-blend-mode: lighten;
  background-size: cover;
  background-position: center;
}
@media (max-width: 768px) {
  .pc-about-cover-img-container {
    display: none;
  }
}

.sp-business-description {
  font-weight: 500;
  font-size: 14px;
  font-weight: bold;
  line-height: 24px;
  color: #313233;
  background-color: #F2F3F4;
}
.sp-business-description p {
  margin: 0;
  padding-top: 40px;
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 40px;
}
@media (min-width: 769px) {
  .sp-business-description {
    display: none;
  }
}

.business {
  padding-left: 2.5%;
  padding-right: 2.5%;
  padding-bottom: 50px;
  background-color: #F2F3F4;
  list-style: none;
}
@media (min-width: 769px) {
  .business {
    padding-left: 80px;
    padding-right: 80px;
    padding-bottom: 80px;
  }
}
.business .business-department-title-ja {
  font-weight: 700;
  font-size: 12px;
  line-height: 1px;
  text-align: left;
  color: #0B3A89;
}
@media (min-width: 769px) {
  .business .business-department-title-ja {
    font-size: 16px;
  }
}
.business .business-department-title-en {
  font-family: "Gill Sans";
  font-weight: bold;
  font-size: 24px;
  line-height: 1px;
  text-align: left;
  color: #0B3A89;
  padding-bottom: 6px;
}
@media (min-width: 769px) {
  .business .business-department-title-en {
    font-size: 40px;
  }
}
.business .business-department-container {
  margin: auto;
  padding: 10px 20px 10px 20px;
  background-color: white;
  opacity: 1;
  border: 1px solid #ECEEF0;
  border-radius: 1%;
  /* 角丸 */
  box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.3);
  /* 影*/
  z-index: 100;
}
@media (min-width: 769px) {
  .business .business-department-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 26px 30px 40px;
  }
}
.business .business-department-inner {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  text-align: left;
  color: #313233;
}
@media (min-width: 769px) {
  .business .business-department-inner {
    font-size: 16px;
    line-height: 28px;
    padding-right: 50px;
  }
}
.business .business-department-image-item {
  display: flex;
  justify-content: center;
}

.sp-company-profile-cover {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
  height: 400px;
  padding-top: 65px;
  padding-bottom: 30px;
  padding-left: 15px;
  color: #ffffff;
  background-image: url("../images/profile_main.jpg");
  background-color: rgba(255, 255, 255, 0.4);
  background-blend-mode: lighten;
  background-size: cover;
  background-position: center;
}
.sp-company-profile-cover .sp-company-profile-title-ja {
  font-weight: bold;
  font-size: 14px;
  line-height: 1;
  text-align: left;
  color: #0B3A89;
  text-shadow: 2px 2px 2px #ffffff;
}
.sp-company-profile-cover .sp-company-profile-title-en {
  font-family: "Gill Sans";
  font-weight: bold;
  font-size: 28px;
  line-height: 1;
  text-align: left;
  color: #0B3A89;
  text-shadow: 2px 2px 8px #ffffff;
}
@media (min-width: 769px) {
  .sp-company-profile-cover {
    display: none;
  }
}

@media (max-width: 768px) {
  .pc-company-profile-cover {
    display: none;
  }
}

.company-profile {
  padding: 20px;
  list-style: none;
  color: #313233;
  text-align: left;
}
@media (min-width: 769px) {
  .company-profile {
    padding: 100px;
    background-color: #ffffff;
  }
}

@media (min-width: 769px) {
  .company-profile-inner {
    padding-right: 100px;
    padding-left: 100px;
    background-color: #F2F3F4;
  }
}

.list-item {
  padding-top: 14px;
  padding-bottom: 14px;
  list-style: none;
  font-weight: 500;
  font-size: 12px;
  color: #313233;
  line-height: 16px;
  border-top: 1px solid rgba(49, 50, 51, 0.5);
}
@media (min-width: 769px) {
  .list-item {
    padding-top: 24px;
    padding-bottom: 24px;
    display: flex;
    font-size: 16px;
  }
  .list-item .list-text {
    width: 200px;
    margin-right: 50px;
    margin-left: 10px;
  }
  .list-item .list-description {
    width: 500px;
  }
}

.list-item-bottom {
  padding-top: 14px;
  padding-bottom: 14px;
  list-style: none;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  border-top: 1px solid rgba(49, 50, 51, 0.5);
  border-bottom: 1px solid rgba(49, 50, 51, 0.5);
}
@media (min-width: 769px) {
  .list-item-bottom {
    padding-top: 24px;
    padding-bottom: 24px;
    display: flex;
    font-size: 16px;
  }
  .list-item-bottom .list-text {
    width: 200px;
    margin-right: 50px;
    margin-left: 10px;
  }
  .list-item-bottom .list-description {
    width: 500px;
  }
}

dt {
  color: #313233;
  opacity: 0.7;
  padding-bottom: 2px;
}

.pc-company-profile-cover-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: auto;
  background-color: #F2F3F4;
}
@media (max-width: 768px) {
  .pc-company-profile-cover-container {
    display: none;
  }
}

.pc-company-profile-title-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 5%;
}
@media (max-width: 768px) {
  .pc-company-profile-title-container {
    display: none;
  }
}

.pc-company-profile-title-wrapper {
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .pc-company-profile-title-wrapper {
    display: none;
  }
}

.pc-company-profile-title-ja {
  font-weight: bold;
  font-size: 18px;
  line-height: 1;
  text-align: left;
  color: #0B3A89;
  text-shadow: 2px 2px 2px #ffffff;
}
@media (max-width: 768px) {
  .pc-company-profile-title-ja {
    display: none;
  }
}

.pc-company-profile-title-en {
  font-family: "Gill Sans";
  font-weight: bold;
  font-size: 44px;
  line-height: 1;
  text-align: left;
  color: #0B3A89;
  text-shadow: 2px 2px 2px #ffffff;
}
@media (max-width: 768px) {
  .pc-company-profile-title-en {
    display: none;
  }
}

.pc-company-profile-title-description {
  font-weight: bold;
  font-size: 14px;
  line-height: 14px;
  text-align: left;
  color: #313233;
}
@media (max-width: 768px) {
  .pc-company-profile-title-description {
    display: none;
  }
}

.pc-company-profile-cover-img-container {
  width: 50%;
  height: auto;
  opacity: 0.7;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
  height: 535px;
  padding-top: 65px;
  background-image: url("../images/profile_main.jpg");
  background-color: rgba(255, 255, 255, 0.3);
  background-blend-mode: lighten;
  background-size: cover;
  background-position: center;
}
@media (max-width: 768px) {
  .pc-company-profile-cover-img-container {
    display: none;
  }
}

.footer {
  width: 100%;
  height: 160px;
  background: #ECEEF0;
}
.footer .copyright {
  display: flex;
  justify-content: center;
  font-family: "Gill Sans";
  font-weight: normal;
  font-size: 8px;
  line-height: 8px;
  text-align: center;
  color: #080808;
  margin-top: 80px;
}
@media (min-width: 769px) {
  .footer .copyright {
    margin-top: 40px;
  }
}

.footer-body {
  font-weight: 500;
  font-size: 10px;
  text-align: left;
  color: #080808;
}
.footer-body .container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 24px;
}
@media (min-width: 769px) {
  .footer-body .container {
    padding-top: 10px;
  }
}

.footer-item {
  margin: 10px;
}
.footer-item a:hover {
  color: #1BA1E6;
}
@media (min-width: 769px) {
  .footer-item {
    margin: 40px;
  }
}

a {
  color: #080808;
}

ul {
  padding-inline-start: 0px;
  list-style: none;
}

.upper-bottom {
  display: flex;
  height: auto;
  align-items: center;
  justify-content: center;
  background-color: #D9DDE0;
}
@media (min-width: 769px) {
  .upper-bottom {
    height: 200px;
    padding-right: 80px;
    padding-left: 80px;
  }
  .upper-bottom .container {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
}

.upper-bottom-item {
  display: flex;
  flex-direction: column;
  margin: 24px 0 24px 0;
  width: 260px;
  height: 40px;
  align-items: center;
  background-color: #ffffff;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
  color: #080808;
  border-radius: 2%;
  /* 角丸 */
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.5);
  /* 影*/
}
@media (min-width: 769px) {
  .upper-bottom-item {
    width: 200px;
    height: 50px;
    padding-top: 9px;
  }
}

.button {
  font-size: 14px;
  background: #ffffff;
  color: #080808;
  padding-top: 13px;
}

.button:hover {
  color: #1BA1E6;
}

.lower-bottom {
  display: flex;
  height: 194px;
  align-items: flex-start;
  justify-content: center;
  background-color: #0B3A89;
  text-align: center;
}
@media (min-width: 769px) {
  .lower-bottom {
    height: 260px;
  }
}

.lower-bottom-companyname h2 {
  font-family: "Noto Sans JP", dans-serif;
  font-weight: bold;
  font-size: 18px;
  line-height: 18px;
  text-align: left;
  color: #ffffff;
  margin-top: 46px;
  margin-bottom: 34px;
}
@media (min-width: 769px) {
  .lower-bottom-companyname h2 {
    font-size: 24px;
    margin-top: 64px;
    margin-bottom: 50px;
  }
}

.lower-bottom-item {
  display: flex;
  flex-direction: column;
  width: 200px;
  height: 50px;
  align-items: center;
  background-color: #ffffff;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  color: #0B3A89;
  margin: auto;
  border-radius: 12px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.5);
  /* 影*/
}
@media (min-width: 769px) {
  .lower-bottom-item {
    width: 240px;
    height: 60px;
    padding-top: 5px;
  }
  .lower-bottom-item a {
    font-size: 16px;
  }
}

.mail:hover {
  color: #1BA1E6;
}

.mail {
  font-size: 14px;
  background: #ffffff;
  color: #0B3A89;
  padding-top: 17px;
}

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