@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");

/*=============================================================
  common
=============================================================*/
:root {
  --fontEng: Arial, sans-serif;
}
.l-main > * {
  font-family: 'Arial', sans-serif;
  font-size: 1.6rem;
}
@media (hover: hover) {
  .l-main a:hover {
    opacity: 0.4;
  }
}
.l-main a {
  text-decoration: none;
  transition: opacity 0.5s ease;
}
.l-main img {
  width: auto;
  max-width: 100%;
  vertical-align: bottom;
}
.l-section {
  padding: 72px 0;
}
.l-section:not(:first-of-type) {
  padding-top: 100px;
  z-index: 10;
  position: relative;
}
.l-container {
  width: min(1400px, 100% - 5%);
  margin-inline: auto;
}
.is-lower .l-container {
  width: auto;
  max-width: 1170px;
  padding: 0 20px;
  box-sizing: content-box;
}
.u-font--bold {
  font-weight: 700;
}
.u-font--eng {
  font-family: var(--fontEng);
}
.u-sp-block,
.u-spS-block {
  display: none;
}
.u-grid--col2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3%;
  margin: 50px 0;
}
.u-grid--col3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 50px 0;
}
.c-text--note {
  font-size: 1.3rem;
}
.u-align--c {
  text-align: center;
}
.u-align--r {
  text-align: right;
}
.u-text--bold {
  font-weight: 600;
}
.l-main p + p {
  margin-top: 16px;
}
.pT0 {
  padding-top: 0 !important;
}
.pB0 {
  padding-bottom: 0 !important;
}

/*=============================================================
  is-lower l-section
=============================================================*/
.is-lower .l-section:not(:first-of-type) {
  padding: 72px 0;
}

/*=============================================================
  is-lower c-heading-block
=============================================================*/
.c-heading-block {
  height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 90px;
}
.c-heading-block__title {
  font-size: 4.8rem;
  font-weight: 400;
  text-align: center;
  line-height: 100%;
  padding: 5px 0;
}
.c-heading-block__sub {
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  line-height: 100%;
  padding: 2px 0;
  margin-top: 8px;
}
.group .c-heading-block {
  background: url(../../group/img/heading-bg.jpg) no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}
.sustainability .c-heading-block {
  background: url(../../sustainability/img/heading-bg.jpg) no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}
.company .c-heading-block {
  background: url(../../company/img/heading-bg.jpg) no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}

/*=============================================================
  is-lower c-heading
=============================================================*/
.is-lower .c-heading--lv2 {
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 32px;
}
.is-lower .c-heading--lead {
  width: 90%;
  margin: 40px auto;
}

/*=============================================================
  c-link
=============================================================*/
.c-link {
  color: #333;
  position: relative;
  font-size: 1.6rem;
  font-weight: 500;
  padding-right: 30px;
  display: inline;
}
p > .c-link:hover {
  opacity: 1 !important;
}
.c-link::after {
  content: "";
  background: url(../img/icon-arrow--g.svg) no-repeat;
  background-size: cover;
  width: 22px;
  height: 22px;
  display: block;
  position: absolute;
  top: -2px;
  right: 0;
}
.c-link[target="_blank"]::after {
  background: url(../img/icon-blank.svg) no-repeat;
  background-size: cover;
  width: 20px;
  height: 20px;
  bottom: 0;
}
.c-link[href$=".pdf"]::after {
  content: none;
}
.c-link__button {
  max-width: 445px;
  margin: 0 auto;
  position: relative;
}
.c-link__button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  border-radius: 24px;
  z-index: -1;
}
.c-link__button a {
  background: #f3ff80;
  padding: 22px;
  border-radius: 24px;
  display: block;
  text-align: center;
  height: 100%;
  box-shadow: 0px 4px 4px 0px #00000040;
}
.c-link__button .c-link {
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  padding-right: 40px;
  color: #000;
}
.c-link__button .c-link::after {
  content: "";
  background: url(../img/icon-arrow--w.svg) no-repeat;
  background-size: cover;
  width: 24px;
  height: 24px;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-45%);
}
.c-link__button [target="_blank"] .c-link::after {
  background: url(../img/icon-blank.svg) no-repeat;
  background-size: cover;
  width: 20px;
  height: 20px;
  right: 10px;
}
.c-link__button02 {
  gap: 56px;
}
.c-link__button02 .c-link {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  font-size: 2rem;
  line-height: 1.5;
  padding-right: 36px;
  padding-bottom: 16px;
  border-bottom: 1px solid #dfdfdf;
  transition: border-bottom-color 0.5s ease;
}
.c-link__button02 .c-link::after {
  top: 50%;
  transform: translateY(-75%);
}
.c-link__button02 .c-link:hover {
  text-decoration: none;
  border-bottom: 1px solid #0059a9;
  opacity: 1;
}
.c-link:hover .c-news__text {
  color: #0059a9;
  text-decoration: underline;
}
@media (hover: hover) {
  .c-link:hover {
    color: #0059a9;
    text-decoration: underline;
    opacity: 1;
  }
  .c-link:has(.c-filesize):hover {
    text-decoration: none;
  }
  .c-list--caution .c-list__item a:hover,
  .c-link:hover .c-filesize {
    color: #0059a9;
  }
  .c-list__item .c-link:hover,
  .c-news .c-link:hover {
    opacity: 1 !important;
  }
  .c-card .c-link:hover,
  .c-link__button .c-link:hover {
    color: #000;
    text-decoration: none;
    opacity: 0.4;
  }
  .c-link__button .c-link:hover {
    opacity: 1;
  }
}

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
   Tablet
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
@media (max-width: 1280px) {
  /*=============================================================
  is-lower c-heading-block
=============================================================*/
  .c-heading-block {
    height: 400px;
  }
}
@media (max-width: 1023px) {
  .u-grid--col3 {
    grid-template-columns: repeat(2, 1fr);
  }

  /*=============================================================
    is-lower l-container
  =============================================================*/
  .is-lower .l-container {
    width: auto;
  }
}
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
   Smartphones
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
@media (max-width: 767px) {
  .l-section {
    padding: 56px 0;
  }
  .l-section:not(:first-of-type) {
    padding-top: 60px;
  }
  .l-container {
    width: min(1400px, 100% - 5.5%);
  }
  .is-lower .l-container {
    width: auto;
    padding: 0 10px;
  }
  .u-pc-block {
    display: none;
  }
  .u-sp-block {
    display: block;
  }
  .u-grid--col2 {
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 40px 0;
  }
  .u-grid--col3 {
    grid-template-columns: 1fr;
    margin: 30px 0;
  }
  .sp-u-align--l {
    text-align: left !important;
  }

  /*=============================================================
    c-heading-block
  =============================================================*/
  .c-heading-block {
    height: clamp(298px, 79vw, 610px);
    padding-top: 60px;
  }
  .c-heading-block__title {
    font-size: 2.8rem;
    padding: 3px 0;
  }
  .c-heading-block__sub {
    font-size: 1.4rem;
  }
  .group .c-heading-block {
    background: url(../../group/img/heading-bg_sp.jpg) no-repeat;
    background-size: 100% auto;
    background-position: 50% 50%;
  }
  .sustainability .c-heading-block {
    background: url(../../sustainability/img/heading-bg_sp.jpg) no-repeat;
    background-size: 100% auto;
    background-position: 50% 50%;
  }
  .company .c-heading-block {
    background: url(../../company/img/heading-bg_sp.jpg) no-repeat;
    background-size: 100% auto;
    background-position: 50% 50%;
  }

  /*=============================================================
    is-lower l-section
  =============================================================*/
  .is-lower .l-section:not(:first-of-type) {
    padding: 56px 0;
  }

  /*=============================================================
    is-lower c-heading
  =============================================================*/
  .is-lower .c-heading--lv2 {
    font-size: 2.4rem;
  }

  /*=============================================================
    c-link
  =============================================================*/
  .c-link {
    font-size: 1.6rem;
  }
  .c-link::after {
    right: 0;
    bottom: 0;
  }

  /*=============================================================
    c-link__button
  =============================================================*/
  .c-link__button .c-link {
    font-size: 1.6rem;
  }
  .c-link__button02 {
    gap: 24px;
  }
  .c-link__button02 .c-link {
    font-size: 1.8rem;
    padding-right: 33px;
  }
}
@media (max-width: 550px) {
  .u-spS-block {
    display: block;
  }
}
