@charset "UTF-8";
/* Break point
---------------------------------------------------------- */
/* Font
---------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500&family=Roboto+Slab:wght@200;400&family=Shippori+Mincho:wght@500&display=swap");
/* Color
---------------------------------------------------------- */
/* header
---------------------------------------------------------- */
/* column-size
---------------------------------------------------------- */
/* Font
---------------------------------------------------------- */
.c-ttl-min {
  font-family: "Shippori Mincho", serif;
  display: block;
  line-height: 1.4;
  font-size: clamp( 25px, calc( 25px + (( 100vw - 768px ) * (( 36 - 25 ) / ( 1024 - 768 )))), 36px );
}

.c-font-en {
  font-family: "Roboto Slab", serif;
}

.c-ttl-en {
  font-family: "Roboto Slab", serif;
  color: #003288;
  font-size: clamp( 14px, calc( 14px + (( 100vw - 768px ) * (( 21 - 14 ) / ( 1024 - 768 )))), 21px );
}

.c-ttl-big {
  font-size: clamp( 20px, calc( 20px + (( 100vw - 768px ) * (( 26 - 20 ) / ( 1024 - 768 )))), 26px );
  font-weight: 500;
  border-bottom: 3px solid #003288;
  margin-bottom: 40px;
}

.c-ttl-mid {
  font-size: clamp( 18px, calc( 18px + (( 100vw - 768px ) * (( 24 - 18 ) / ( 1024 - 768 )))), 24px );
  font-weight: 500;
  color: #003288;
  text-align: center;
}

/* Scroll down
---------------------------------------------------------- */
@-webkit-keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 50px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 100px;
    opacity: 0;
  }
}
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 50px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 100px;
    opacity: 0;
  }
}
.c-scroll {
  position: absolute;
  width: 1px;
  height: 100px;
  background-color: #D6D6D6;
}
.c-scroll::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 20px;
  background-color: #003288;
  -webkit-animation: pathmove 2.4s ease-in-out infinite;
          animation: pathmove 2.4s ease-in-out infinite;
  opacity: 0;
}
.c-scroll span {
  font-family: "Roboto Slab", serif;
  letter-spacing: 0.05em;
  color: #003288;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  position: absolute;
  top: 0;
  right: -100%;
}

/* リンクボタン
---------------------------------------------------------- */
.c-link-btn {
  padding: 1em;
  display: inline-block;
  font-size: clamp( 16px, calc( 16px + (( 100vw - 768px ) * (( 18 - 16 ) / ( 1024 - 768 )))), 18px );
  color: #003288;
  font-weight: 500;
  width: 100%;
  max-width: 500px;
  border: 1px solid #003288;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.c-link-btn::after {
  content: "";
  display: inline-block;
  width: 0.6em;
  height: 0.6em;
  margin: 0 10px;
  border-top: 2px solid #003288;
  border-right: 2px solid #003288;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 0.8em;
  height: 0.8em;
  position: absolute;
  right: 1em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-link-btn::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  background-color: #003288;
}
.c-link-btn span {
  position: relative;
  z-index: 1;
}
.c-link-btn:hover {
  color: #fff;
}
.c-link-btn:hover::before {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.c-link-btn:hover::after {
  border-color: #fff;
  right: 0.5em;
}

/* 小リンクボタン
---------------------------------------------------------- */
.c-link {
  font-size: clamp( 14px, calc( 14px + (( 100vw - 768px ) * (( 16 - 14 ) / ( 1024 - 768 )))), 16px );
  color: #003288;
  font-weight: 500;
}
.c-link a {
  position: relative;
}
.c-link a::before {
  content: "";
  display: inline-block;
  width: 0.6em;
  height: 0.6em;
  margin: 0 10px;
  border-top: 2px solid #003288;
  border-right: 2px solid #003288;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 0.4em;
  right: -0.2em;
}
.c-link a::after {
  content: "";
  display: inline-block;
  width: 2em;
  height: 2em;
  background-color: #EFF4FE;
  border-radius: 50%;
  vertical-align: middle;
  margin-left: 0.5em;
}
.c-link a:hover {
  opacity: 0.5;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/* 署名
---------------------------------------------------------- */
.c-signature {
  padding-top: 3em;
  text-align: right;
  font-size: 14px;
}

/* 90%wrap
---------------------------------------------------------- */
.c-wrap {
  width: 90%;
  margin: 0 auto;
}

/* 水色囲い
---------------------------------------------------------- */
.c-box {
  padding: 2em 1em;
  border: 5px solid #EFF4FE;
}

/* SDGsアイコン
---------------------------------------------------------- */
.c-sdgs-icon-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 5px;
}
.c-sdgs-icon-list li {
  max-width: 75px;
}

.p-quality .p-quality-top-txt {
  text-align: center;
}
.p-quality .p-quality-top {
  padding-bottom: 80px;
}
.p-quality .l-page-list dl dt::before {
  content: none;
}
@media screen and (min-width: 1024px) {
  .p-quality .l-info-list.long {
    grid-template-columns: 45% auto;
  }
}
.p-quality .organization-list {
  padding-bottom: 0.2em;
}
.p-quality .organization-list.unordered li:last-child::after {
  padding-top: 0.5em;
  content: "順不同";
  display: block;
  color: #9D9D9D;
}