@charset "UTF-8";
@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);
body {
  font-family: "Noto Sans JP", sans-serif;
}

.section-header {
  margin: 0; /* マージンをリセット */
  margin-bottom: 20px;
}
.section-header .section-subtitle {
  margin-bottom: 10px;
  color: #003273;
  font-size: 16px;
}
.section-header .section-title {
  margin: 0; /* マージンをリセット */
  font-size: 32px;
}

.section-title {
  padding-bottom: 1rem;
  border-bottom: 1px #ddd solid;
}

.inner {
  width: 62.5%;
  margin: 0 auto;
}

#header {
  display: flex;
  justify-content: space-between;
  margin-left: 60px;
  margin-right: 70px;
  margin-bottom: 42px;
  margin-top: 15px;
  height: 60px;
}
#header button {
  display: none;
}
#header .header-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#header .header-container .header-img {
  width: 190px;
  height: 60px;
}
#header .header-container .header-img img {
  width: 100%;
  height: 100%;
}
#header .header-container .nav .nav__list {
  display: flex;
  flex-direction: row;
  padding-top: 20px;
  padding-bottom: 20px;
}
#header .header-container .nav .nav__list .nav__item {
  list-style-type: none;
  margin-left: 50px;
  cursor: pointer;
  position: relative;
  color: #545454;
}
#header .header-container .nav .nav__list .nav__item a {
  text-decoration: none;
  color: #545454;
}
#header .header-container .nav .nav__list .nav__item:hover a {
  color: #61BBD8;
}
#header .header-container .nav .nav__list .nav__item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background-color: #61BBD8;
  visibility: hidden;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
#header .header-container .nav .nav__list .nav__item:hover::after {
  visibility: visible;
  transform-origin: left;
  transform: scaleX(1);
}
#header .header-container .nav .nav__list .nav__item:active a {
  color: #61BBD8;
}

#mainvisual {
  display: flex;
  flex-direction: row;
  width: 85%;
  margin: 0 auto;
  margin-bottom: 7rem;
}
#mainvisual .top-left {
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#mainvisual .top-left .top-left-text {
  display: flex;
  flex-direction: column;
}
#mainvisual .top-left .top-left-text .top-title {
  font-size: 45px;
  margin-bottom: 18px;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  color: #000000;
  line-height: 1.3;
}
#mainvisual .top-left .top-left-text .top-subtitle {
  font-size: 20px;
  color: #CDCDCD;
}
#mainvisual .top-right {
  width: 70%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 450px;
}
#mainvisual .top-right .image-container {
  position: relative;
  width: 100%;
}
#mainvisual .top-right .image-container .background-image,
#mainvisual .top-right .image-container .overlay-image {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#mainvisual .top-right .image-container .background-image {
  width: 90%;
  height: 450px;
}
#mainvisual .top-right .image-container .overlay-image {
  width: 70%;
  height: 350px;
  border-radius: 30px;
  -o-object-fit: cover;
     object-fit: cover;
}

#about {
  /* 方眼紙模様に必須のスタイル */
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px)),
                    linear-gradient(90deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px));
  background-size: 16px 16px;
  background-repeat: repeat;
  background-position: center center;

  /* 以下任意のスタイル */
  padding: 5rem;
}

#about .about-container .about-title {
  font-size: 30px;
  margin-bottom: 55px;
}
#about .about-container .about-title .span-commit {
  color: #61BBD8;
}
#about .about-container .about-title .span-trust {
  color: #003273;
}
#about .about-container p {
  font-size: 20px;
  line-height: 2.6;
  color: #545454;
}
#about .about-container .about-container-image {
  width: 62.5%;
}
#about .about-container .about-container-image img {
  width: 65%;
  height: auto; /* 縦横比率を保つためにautoに設定 */
  display: block; /* インライン要素の余白削除 */
  margin: 0 auto; /* 水平方向に中央揃え */
  border-radius: 30px;
}

#service {
  padding: 4rem 0 2.5rem 0;
  background-color: #eee;
}
#service .service-list {
  display: flex;
  flex-direction: column;
  margin-top: 60px;
}
#service .service-list .service-list-item {
  margin-bottom: 50px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center; /* 垂直方向に中央揃え */
  width: 100%;
}
#service .service-list .service-list-item .service-item-image {
  width: 35%;
}
#service .service-list .service-list-item .service-item-image img {
  width: 100%;
  display: block; /* 余白の削除 */
  margin: 0 auto; /* 水平方向に中央配置 */
  border-radius: 30px;
  height: 230px;
}
#service .service-list .service-list-item .service-item-text {
  width: 60%;
}
#service .service-list .service-list-item .service-item-text .service-title {
  font-size: 24px;
  margin-bottom: 12px;
}
#service .service-list .service-list-item .service-item-text .space {
  width: 60px;
}
#service .service-list .service-list-item .service-item-text .service-explanation {
  font-size: 18px;
  line-height: 1.4;
}

#member {
  margin-top: 4rem;
  margin-bottom: 5rem;
}
#member .member-list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-top: 40px;
  width: 100%;
}
#member .member-list .member-container {
  width: 45%;
  display: flex;
  flex-direction: column;
}
#member .member-list .member-container .profile {
  display: flex;
  flex-direction: row;
  margin-bottom: 30px;
  justify-content: left;
}
#member .member-list .member-container .profile .member-image {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 40px;
}
#member .member-list .member-container .profile .member-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* 画像が切れずに中央に収まるように */
  border-radius: 50%; /* 画像も角を丸める */
}
#member .member-list .member-container .profile .member-information {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#member .member-list .member-container .profile .member-information .member-position {
  font-size: 18px;
  margin-bottom: 14px;
}
#member .member-list .member-container .profile .member-information .member-name {
  font-size: 24px;
  margin-bottom: 10px;
}
#member .member-list .member-container .profile .member-information .member-name-en {
  font-size: 18px;
}
#member .member-list .member-container .member-explanation p {
  font-size: 18px;
  line-height: 1.7;
}

#company {
  margin-bottom: 50px;
  padding: 4rem 0 2.5rem 0;
  background-color: #003273;
}
#company .section-subtitle {
  color: #61BBD8;
}
#company .section-title {
  color: #eee;
}
#company .company-information {
  width: 100%;
  margin-top: 60px;
}
#company .company-information .table {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  font-size: 20px;
  margin-bottom: 32px;
  width: 100%;
}
#company .company-information .table .table-header {
  width: 15%;
  text-align: left;
  color: #eee;
}
#company .company-information .table .table-data {
  width: 45%;
  text-align: left;
  line-height: 1.4;
  color: #eee;
}

#contact {
  margin-bottom: 5rem;
}
#contact .contact-container {
  margin-top: 16px;
}
#contact .contact-container .contact-text {
  font-size: 16px;
  line-height: 1.4;
  color: #888;
}
.contact-mail {
  font-size: 20px;
}

footer {
  height: 54px;
  width: 100%;
  background-color: #CDCDCD;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
footer p {
  text-align: center;
  font-size: #003273;
}

@media screen and (max-width: 480px) {
  .section-header {
    margin: 0; /* マージンをリセット */
    margin-bottom: 20px;
  }
  .section-header .section-subtitle {
    margin-bottom: 10px;
    color: #003273;
    font-size: 12px;
  }
  .section-header .section-title {
    margin: 0; /* マージンをリセット */
    font-size: 20px;
  }
  .inner {
    width: 80%;
    margin: 0 auto;
  }
  #header {
    width: 96%;
    margin: 0;
    height: 60px;
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background-color: #fff;
  }
  #header .header-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: inherit;
    color: #61BBD8;
    /* ===============================================
    メニューのスタイリング
    =============================================== */
  }
  #header .header-container .header-img {
    width: 120px;
    height: 40px;
  }
  #header .header-container .header-img img {
    width: 100%;
    height: 100%;
  }
  #header .header-container button {
    display: block;
  }
  #header .header-container .nav {
    position: fixed;
    width: 100%;
    top: 60px;
    right: -100%;
    height: calc(100vh - 60px);
    background-color: #003273;
    transition: all 0.5s;
    opacity: 0.96;
  }
  #header .header-container .nav .nav__list {
    flex-flow: column;
    justify-content: space-around;
    height: 90vh;
  }
  #header .header-container .nav .nav__list .nav__item a {
    display: block;
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    padding: 30px 0 30px 0;
    text-transform: uppercase;
  }
  #header .header-container .nav .nav__list .nav__item {
    margin-left: 0;
    text-align: center;
  }
  #header .header-container .nav .nav__list .nav__item a:hover {
    color: #003273;
    background-color: #fff;
  }
  #header .header-container .nav.open {
    right: 0;
    height: calc(100vh - 60px);
  }
  /* ===============================================
  ハンバーガーボタンのスタイリング
  =============================================== */
  .hamburger {
    width: 40px;
    height: 60px;
    position: relative;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: 0;
    padding: 0;
    margin: 0;
    background-color: #fff;
    cursor: pointer;
  }
  .hamburger span,
  .hamburger span::after,
  .hamburger span::before {
    position: absolute;
    display: block;
    content: "";
    width: 100%;
    height: 2px;
    background-color: #003273;
    transition: all 0.5s;
  }
  .hamburger span::before {
    top: -10px;
  }
  .hamburger span::after {
    bottom: -10px;
  }
  .hamburger.open span {
    background-color: transparent;
  }
  .hamburger.open span::before {
    top: 0;
    transform: rotate(45deg);
  }
  .hamburger.open span::after {
    bottom: 0;
    transform: rotate(-45deg);
  }

  #mainvisual {
    width: 90%;
    margin: 0 auto;
    margin-top: 8rem;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
  }
  #mainvisual .top-left {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #mainvisual .top-left .top-left-text {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-bottom: 40px;
  }
  #mainvisual .top-left .top-left-text .top-title {
    font-size: 24px;
    text-align: center;
    margin-bottom: 16px;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    color: #000000;
  }
  #mainvisual .top-left .top-left-text .top-title .br-top-title {
    display: none;
  }
  #mainvisual .top-left .top-left-text .top-subtitle {
    font-size: 16px;
    color: #CDCDCD;
  }
  #mainvisual .top-right {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 240px;
  }
  #mainvisual .top-right .image-container {
    width: 100%;
  }
  #mainvisual .top-right .image-container .background-image {
    width: 100%;
    height: auto;
  }
  #mainvisual .top-right .image-container .overlay-image {
    width: 80%;
    height: 170px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 14px;
  }
  #about {
    width: 90%;
    margin: 0 auto;
    padding: 3rem 0.5rem 1rem 0.5rem;
  }
  #about .about-container {
    margin-bottom: 2rem;
  }
  #about .about-container .about-title {
    font-size: 20px;
    margin-bottom: 40px;
  }
  #about .about-container .about-title .span-commit {
    color: #61BBD8;
  }
  #about .about-container .about-title .span-trust {
    color: #003273;
  }
  #about .about-container p {
    margin-bottom: 1rem;
    font-size: 14px;
    line-height: 2.6;
    color: #545454;
  }
  #about .about-container p .about-br {
    display: none;
  }
  #about .about-container .about-container-image {
    width: 80%;
  }
  #about .about-container .about-container-image img {
    width: 100%;
    height: 100%;
  }
  #service {
    margin-bottom: 40px;
    margin-top: 0px;
    padding-top: 2rem;
    padding-bottom: 0;
  }
  #service .service-list {
    display: flex;
    flex-direction: column;
    margin-top: 40px;
  }
  #service .service-list .service-list-item {
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  #service .service-list .service-list-item:nth-child(even) {
    flex-direction: column-reverse; /* 偶数番目の要素に適用 */
  }
  #service .service-list .service-list-item .service-item-image {
    width: 100%;
    margin-bottom: 20px;
  }
  #service .service-list .service-list-item .service-item-image img {
    width: 100%;
  }
  #service .service-list .service-list-item .service-item-text {
    width: 100%;
  }
  #service .service-list .service-list-item .service-item-text .service-title {
    font-size: 18px;
    margin-bottom: 16px;
  }
  #service .service-list .service-list-item .service-item-text .space {
    width: 60px;
  }
  #service .service-list .service-list-item .service-item-text .service-explanation {
    font-size: 13px;
    line-height: 1.6;
  }
  #service .service-list .service-list-item .service-item-text .service-explanation .service-br {
    display: none;
  }
  #member {
    margin-top: 2rem;
    margin-bottom: 0;
  }
  #member .member-list {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 10px;
    width: 100%;
  }
  #member .member-list .member-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 60px;
  }
  #member .member-list .member-container .profile {
    display: flex;
    flex-direction: row;
    margin-bottom: 30px;
    justify-content: left;
  }
  #member .member-list .member-container .profile .member-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 40px;
  }
  #member .member-list .member-container .profile .member-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover; /* 画像が切れずに中央に収まるように */
    border-radius: 50%; /* 画像も角を丸める */
  }
  #member .member-list .member-container .profile .member-information {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  #member .member-list .member-container .profile .member-information .member-position {
    font-size: 14px;
    margin-bottom: 14px;
  }
  #member .member-list .member-container .profile .member-information .member-name {
    font-size: 20px;
    margin-bottom: 10px;
  }
  #member .member-list .member-container .profile .member-information .member-name-en {
    font-size: 14px;
  }
  #member .member-list .member-container .member-explanation p {
    font-size: 13px;
    line-height: 1.4;
  }
  #company {
    margin-bottom: 2rem;
    padding-top: 2rem;
  }
  #company .company-information {
    width: 100%;
    margin-top: 10px;
  }
  #company .company-information .table {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 16px;
    width: 100%;
  }
  #company .company-information .table .table-header {
    width: 35%;
    text-align: left;
  }
  #company .company-information .table .table-data {
    width: 65%;
    text-align: left;
    line-height: 1.4;
  }
  #contact {
    margin-bottom: 30px;
  }
  #contact .contact-container {
    margin-top: 16px;
  }
  #contact .contact-container .contact-text {
    font-size: 12px;
    line-height: 1.1;
    color: #4D4D4D;
  }
  .contact-mail {
    font-size: 14px;
  }
  footer {
    height: 24px;
  }
  footer p {
    font-size: 10px;
  }
}/*# sourceMappingURL=style.css.map */

.mt-5 {
  margin-top: 5rem;
}