/*===============================
フッター
===============================*/
.footer {
  background-color: #004896;
  color: #fff;
  em {
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    text-align: left;
  }
}

.footer_inner {
  width: 100%;
  max-width: var(--max-base-width);
  padding: 38px var(--padding-x-base-pc) 47px;
  margin: 0 auto;
}

.footer_container {
  max-width: 955px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
}

.footer_company-text {
  margin-top: 16px;
  font-weight: normal;
  font-size: 16px;
  text-align: left;
}

.footer_company-text2 {
  margin-top: 33px;
  max-width: 236px;
  font-size: 14px;
  line-height: 25px;
  text-align: left;
  color: #fff;
}

.footer_info-text,
.footer_info-tex2,
.footer_info-tex3 {
  margin-top: 25px;

  font-weight: normal;
  font-size: 14px;
  line-height: 25px;
  text-align: left;
  color: #fff;
}

.footer_site-map-list {
  margin-top: 25px;
  a {
    font-weight: normal;
    font-size: 14px;
    line-height: 40px;
    text-align: left;
    color: #fff;
  }
}

.footer_container2 {
  position: relative;
  margin-top: 52px;
  display: flex;
  justify-content: center;
}

.footer_copyright {
  font-size: 14px;
  line-height: 25px;
  text-align: left;
  color: #fff;
}

.footer_privacy {
  position: absolute;
  top: 0;
  right: 72px;
  font-size: 14px;
  line-height: 25px;
  text-align: left;
  color: #fff;
}

@media screen and (max-width: 769px) {
  .footer {
    em {
      text-align: center;
    }
  }

  .footer_inner {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .footer_container {
    display: block;
    max-width: unset;
  }
  .footer_company {
    display: grid;
  }

  .footer_company-text {
    text-align: center;
  }

  .footer_company-text2 {
    max-width: unset;
  }

  .footer_info {
    margin-top: 43px;
    text-align: center;
  }

  .footer_info-text,
  .footer_info-tex2,
  .footer_info-tex3 {
    text-align: center;
  }

  .footer_site-map {
    margin-top: 43px;
    text-align: center;
  }

  .footer_site-map-list {
    margin-top: 17px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .footer_container2 {
    margin-top: 31px;
  }
}
/*===============================
common
===============================*/

.heading-2 {
  font-weight: bold;
  font-size: 26px;
  text-align: center;
  color: #004896;
  &[data-color="white"] {
    color: white;
  }
}

.heading-2_sub {
  margin-top: 15px;
  font-weight: 500;
  font-size: 14px;
  line-height: 25px;
  text-align: center;
  color: #555;
  &[data-color="white"] {
    color: white;
  }
}

section {
  scroll-padding-top: 60px;
}

/*===============================
firstView
===============================*/

.fv {
  margin: 0 calc(50% - 50vw);
  padding: 178px calc(50vw - 50%) 165px;
  background-image: url("../img/page/index/fv-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.fv_heading {
  font-weight: bold;
  font-size: 40px;
  letter-spacing: 0.04em;
  line-height: 59px;
  text-align: center;
  color: #fff;
}

.fv_text {
  margin-top: 11px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #fff;
}

.fv_label {
  margin-top: 36px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #004896;
  color: #fff;
  width: 262px;
  height: 39px;
  font-weight: normal;
  font-size: 16px;
  line-height: 25px;
}

.fv_button {
  margin-top: 114px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 69px;
}

.fv_button1,
.fv_button2 {
  width: 315px;
  height: 60px;
  border-radius: 30px;
  display: grid;
  place-content: center;
  font-weight: 500;
  font-size: 20px;
  line-height: 40px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fv_button1 {
  background-color: #fff;
  border: 2px solid #ffffff;
  color: #004896;
  &:hover {
    background-color: #004896;
    border-color: #004896;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 72, 150, 0.3);
  }
}

.fv_button2 {
  background-color: #004896;
  border: 2px solid #ffffff;
  color: #fff;
  &:hover {
    background-color: #fff;
    color: #004896;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
  }
}

@media screen and (max-width: 769px) {
  .fv {
    padding-top: 87px;
    padding-bottom: 50px;
  }

  .fv_heading {
    font-size: 26px;
    line-height: 1.5;
    letter-spacing: 0.04em;
    text-align: left;
    color: #fff;
  }

  .fv_text {
    margin-top: 30px;
    font-size: 16px;
    line-height: 24px;
    text-align: left;
  }

  .fv_label {
    margin: 20px 0;
    width: 234px;
    height: 43px;
    font-size: 14px;
    line-height: 0;
  }

  .fv_button {
    margin-top: 90px;
    flex-direction: column;
    gap: 33px;
  }
}

/*===============================
Mission
===============================*/

.mission {
  padding: 70px 0 76px;
}

.mission_text {
  margin-top: 47px;
  font-size: 16px;
  line-height: 25px;
  text-align: center;
  color: #555;
}

.mission_list {
  margin-top: 62px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  place-content: center;
}

.mission_img {
  position: relative;
  aspect-ratio: 360/270;
  width: 100%;
}

.mission_item-text {
  margin-top: 20px;
  font-size: 16px;
  line-height: 25px;
  text-align: center;
  color: #555;
}

.mission_text2 {
  background-color: #f5f6f6;
  padding: 22px 48px;
  margin-top: 50px;
  font-size: 16px;
  line-height: 25px;
  text-align: center;
  color: #555;
}

@media screen and (max-width: 769px) {
  .mission {
    padding: 40px 0 30px;
  }

  .mission_text {
    margin-top: 42px;
    font-size: 16px;
    text-align: left;
    color: #555;
  }

  .mission_list {
    margin-top: 20px;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }

  .mission_item-text {
    margin-top: 10px;
  }

  .mission_text2 {
    padding: 18px;
    margin-top: 30px;
    font-size: 16px;
    line-height: 25px;
    text-align: left;
    color: #555;
  }
}

/*===============================
products
===============================*/

.products {
  margin: 0 calc(50% - 50vw);
  padding: 69px calc(50vw - 50%) 83px;
  background-color: #d2e2f2;
}

.proudcts_text {
  margin-top: 44px;
  font-size: 16px;
  line-height: 25px;
  text-align: center;
  color: #555;
}

.products_list {
  margin-top: 62px;
  display: grid;
  grid-template-rows: auto auto;
  gap: 84px;
}

.products_item_header {
  background-image: url("../img/page/index/products/product-bg1.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 46px;
  padding-left: 40px;
  width: 100%;
  height: 331px;
  &[data-number="2"] {
    background-image: url("../img/page/index/products/product-bg2.png");
  }
}

.product_item-hgroup {
  background-color: White;
  width: 430px;
  height: 120px;
  display: grid;
  place-content: center;
  grid-template-rows: auto auto;
  font-weight: bold;
  font-size: 26px;
  line-height: 40px;
  text-align: center;
  color: #004896;
}

.proudcts_item_heading_sub {
  display: block;
  font-size: 20px;
}

.products_item-text {
  margin-top: 33px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-align: left;
  color: #fff;
}

.products_item-text2 {
  margin-top: 31px;
  font-size: 16px;
  line-height: 25px;
  text-align: left;
  color: #555;
}

.products_item-point {
  margin-top: 61px;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

.products_item-point-heading {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: bold;
  font-size: 20px;
  line-height: 30px;
  text-align: left;
  color: #004896;
  &::before {
    content: "";
    background: #004896;
    width: 10px;
    height: 42px;
  }
}

.products_item-point-list {
  margin-top: 30px;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 35px;
}

.products_item-point-item-container {
  background-color: white;
  padding-top: 20px;
  max-height: 144px;
}

.products_item-point-item-heading {
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #004896;
}

.products_item-point-icon {
  position: relative;
  max-width: 120px;
  margin-left: auto;
  margin-right: auto;
  aspect-ratio: 120/100;
  &[data-number="9"] {
    top: -10px;
  }
}

.products_item-point-text {
  margin-top: 15px;
  font-size: 16px;
  line-height: 25px;
  text-align: center;
  color: #555;
}

.product_item-point-btn {
  margin-top: 45px;
}

.product_item-point-btn-link {
  width: 315px;
  height: 51px;
  background: transparent;
  border: 2px solid #004896;
  border-radius: 30px;
  margin: 0 auto;
  display: grid;
  place-content: center;
  font-weight: 500;
  font-size: 20px;
  line-height: 40px;
  text-align: center;
  color: #004896;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  &:hover {
    background-color: #004896;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 72, 150, 0.25);
  }
}

@media screen and (max-width: 1024px) {
  .proudcts_text {
    margin-top: 32px;
  }

  .products_list {
    margin-top: 32px;
  }

  .products_item_header {
    background-image: url("../img/page/index/products/product-bg1-sp.png");
    padding: 16px 16px 0;
    aspect-ratio: 335/452;
    height: auto;
    &[data-number="2"] {
      background-image: url("../img/page/index/products/product-bg2-sp.png");
    }
  }

  .product_item-hgroup {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    height: 120px;
    line-height: 1.4;
    font-size: 36px;
  }

  .proudcts_item_heading_sub {
    font-size: 30px;
  }

  .products_item-text {
    font-size: 41px;
    line-height: 160%;
  }
}

@media screen and (max-width: 769px) {
  .products_list {
    gap: 40px;
  }

  .product_item-hgroup {
    height: 80px;
    font-size: 20px;
  }

  .proudcts_item_heading_sub {
    font-size: 16px;
  }
  .products_item-text {
    font-size: 16px;
  }

  .products_item-point {
    margin-top: 30px;
  }

  .products_item-point-item {
    background-color: white;
    display: grid;
    grid-template-columns: 120px auto;
    align-items: center;
    gap: 8px;
  }
  .products_item-point-item-container {
    padding: 0;
    max-height: unset;
  }

  .products_item-point-iten-container2 {
    justify-self: baseline;
  }

  .products_item-point-item-heading {
    text-align: left;
  }

  .products_item-point-text {
    margin-top: 0;
    text-align: left;
  }

  .products_item-point-icon {
    &[data-number="9"] {
      top: 0;
    }
  }
}

/*===============================
company
===============================*/

.company {
  padding: 71px 0 61px;
}

.company_text {
  margin-top: 42px;
  max-width: 1140px;
  font-size: 16px;
  line-height: 25px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  color: #555;
}
.company_container {
  margin-top: 61px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  gap: 40px;
}

.company_table {
  width: 100%;
  tr {
    border: 2px dashed #707070;
    border-left: 0;
    border-right: 0;
  }

  th,
  td {
    padding: 19px 0;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #555;
  }

  th {
    padding-left: 71px;
  }
}

.company_trademark {
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.5;
  color: #888;
}

.company_status {
  background-color: #f5f6f6;
  padding: 36px 25px 33px;
}

.comapny_heading3 {
  font-weight: bold;
  font-size: 20px;
  line-height: 30px;
  text-align: left;
  color: #555;
}

.company_list {
  margin-top: 22px;
}

.company_item {
  padding: 15px 10px 12px;
  border-bottom: 2px dashed #707070;
  font-size: 16px;
  line-height: 25px;
  text-align: left;
  color: #555;
  &:first-child {
    border-top: 2px dashed #707070;
  }
}

.compnay_award {
  margin-top: 52px;
}

.company_history {
  background-color: #f5f6f6;
  padding: 36px 25px 33px;
}

.company_history-teabele {
  margin-top: 25px;
  th,
  td {
    padding: 8px 0;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-align: left;
    color: #555;
  }

  th {
    padding-right: 12px;
  }
}

@media screen and (max-width: 1024px) {
  .company_container {
    grid-template-columns: 1fr;
    justify-content: center;
    gap: 29px;
  }
  .campany_map {
    margin: 0 calc(50% - 50vw);

    height: 219px;
    iframe {
      width: 100%;
      height: 100%;
    }
  }
}

@media screen and (max-width: 769px) {
  .company {
    padding: 40px 0 53px;
  }

  .company_text {
    margin-top: 42px;
  }

  .company_container {
    margin-top: 32px;
  }

  .company_table {
    th {
      padding-left: 8px;
      white-space: nowrap;
    }
    td {
      padding-left: 34px;
    }
  }

  .company_history-teabele {
    tbody {
      display: flex;
      flex-direction: column;
      gap: 27px;
    }
    th,
    td {
      display: block;
      padding: 0;
    }
  }
}

/*===============================
message
===============================*/

.message {
  margin: 0 calc(50% - 50vw);
  padding: 0 calc(50vw - 50%);
  background-image: url("../img/page/index/message/message-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.message_container {
  display: grid;
  grid-template-columns: 349px auto;
}

.message_ceo {
  position: relative;
  align-self: flex-end;
  aspect-ratio: 1/1;
  width: 100%;
}

.message_content {
  padding: 70px 0 76px;
  display: grid;
  grid-template-rows: repeat(3, auto);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.message_text {
  margin-top: 42px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-align: left;
  color: #fff;
}

.ceo-name {
  position: relative;
  margin-top: 12px;
  aspect-ratio: 160/45;
  width: 160px;
  justify-self: flex-end;
}

@media screen and (max-width: 769px) {
  .message {
    background-image: url("../img/page/index/message/message-sp.png");
  }

  .message_container {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 21px;
  }

  .message_ceo {
    grid-row-start: 2;
    aspect-ratio: 289/100;
    align-self: unset;
    justify-self: center;
  }

  .message_content {
    padding: 42px 0 0;
    display: block;
    max-width: unset;
  }

  .message_text {
    margin-top: 40px;
  }
}

/*===============================
news
===============================*/

.news {
  padding: 71px 0 80px;
}

.news_text {
  margin-top: 42px;
  font-size: 16px;
  line-height: 25px;
  text-align: center;
  color: #555;
}

.news_list {
  margin-top: 42px;
  border-top: 2px dashed #707070;
}

.news_item {
  border-bottom: 2px dashed #707070;
  &:last-child {
    border-bottom: 0;
  }
}

.news_link {
  padding: 20px 0 18px;
  padding-right: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news_info {
  display: flex;
  gap: 23px;
  font-size: 16px;
  line-height: 25px;
  text-align: left;
  color: #555;
}

.news_label {
  width: 110px;
  height: 28px;
  display: grid;
  place-content: center;
  border: 1px solid #707070;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  color: #666;
}

.news_btn {
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  width: 315px;
  height: 60px;
  display: grid;
  place-content: center;
  background: transparent;
  border: 2px solid #004896;
  border-radius: 30px;
  font-weight: 500;
  font-size: 20px;
  line-height: 40px;
  text-align: center;
  color: #004896;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  &:hover {
    background-color: #004896;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 72, 150, 0.25);
  }
}

/*===============================
contact
===============================*/

.contact {
  padding: 70px calc(50vw - 50%) 60px;
  margin: 0 calc(50% - 50vw);
  background-color: #ecf3f9;
}

.contact_text {
  margin-top: 44px;
  font-size: 16px;
  line-height: 25px;
  text-align: center;
  color: #555;
}

.contact_container {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.contact_form {
  background-color: #fff;
  padding: 36px 25px 40px;
}

.contact_form_title {
  font-weight: bold;
  font-size: 20px;
  line-height: 30px;
  text-align: left;
  color: #555;
  padding-bottom: 24px;
  border-bottom: 1px dashed #707070;
}

.form {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.form_row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 20px;
}

.form_group {
  label {
    font-weight: bold;
    font-size: 16px;
    line-height: 25px;
    text-align: left;
    color: #555;
    .required {
      font-size: 16px;
      line-height: 25px;
      text-align: left;
      color: #c1092e;
    }
  }

  input,
  select {
    margin-top: 7px;
    border: 1px #d0d4d4 solid;
    background-color: #f5f6f6;
    padding: 12px;
    height: 46px;
    width: 100%;
  }

  textarea {
    margin-top: 7px;
    border: 1px #d0d4d4 solid;
    background-color: #f5f6f6;
    padding: 12px;
    height: 71px;
    width: 100%;
  }
}

.form-checkbox-items {
  display: flex;
  gap: 8px;
  input {
    width: 20px;
    height: 20px;
    background: #f5f6f6;
    border: 1px solid #d0d4d4;
    margin-top: 6px;
    aspect-ratio: 1 / 1;
  }

  .privacyPolicy {
    font-size: 14px;
    line-height: 25px;
    text-align: left;
    color: #555;
  }

  .link-text {
    color: #004896;
    text-decoration: underline;
    font-size: 14px;
    line-height: 25px;
    text-align: left;
  }
}

.form_btn {
  margin: 24px auto 0;
  width: 315px;
  height: 60px;
  display: grid;
  place-content: center;
  background: transparent;
  border: 2px solid #004896;
  border-radius: 30px;
  font-weight: 500;
  font-size: 20px;
  line-height: 40px;
  text-align: center;
  color: #004896;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  &:hover {
    background-color: #004896;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 72, 150, 0.25);
  }
}

.contact_info {
  padding: 36px 25px 40px;
  display: flex;
  flex-direction: column;
  gap: 46px;
}

.contact_info-heading3 {
  font-weight: bold;
  font-size: 20px;
  line-height: 30px;
  text-align: left;
  color: #555;
}

.contact_info-tabel {
  margin-top: 24px;
  width: 100%;
  tr {
    border-top: 1px dashed #707070;
    border-bottom: 1px dashed #707070;
  }

  th,
  td {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-align: left;
    color: #555;
  }
  th {
    padding: 34px 62px 31px;
  }

  td {
    padding: 20px 0 17px;
    em {
      font-style: normal;
      font-weight: 500;
      font-size: 20px;
      letter-spacing: 0.1em;
      line-height: 40px;
      text-align: left;
      color: #004896;
    }
  }
}

.contact_info-list {
  margin-top: 24px;
  border-top: 1px dashed #707070;
  padding-top: 13px;
  display: grid;
  gap: 20px;
}

.contact_info-item {
  display: flex;
  gap: 11px;
  svg {
    margin-top: 7px;
  }
}

.contact_info-item-text {
  font-weight: normal;
  font-size: 16px;
  line-height: 25px;
  text-align: left;
  color: #555;
}

@media screen and (max-width: 769px) {
  .contact {
    padding-top: 40px;
    padding-bottom: 31px;
  }

  .contact_text {
    margin-top: 42px;
  }

  .contact_container {
    display: flex;
    flex-direction: column;
    gap: 34px;
  }

  .form {
    max-width: unset;
  }

  .form_row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact_info {
    padding: 0;
  }

  .contact_info-tabel {
    th {
      padding: 31px 17px 33px;
    }
  }
}
