@charset "UTF-8";
/* about用css */
/* parts */
/* _mixin */
/* media query */
/* layout */
/* padding, margin */
/* headline */
/* color */
/* flex */
/* font */
@font-face {
  font-family: "Noto";
  font-style: normal;
  font-weight: 900;
  src: url("../font/NotoSansJP-Black.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Noto";
  font-style: normal;
  font-weight: 700;
  src: url("../font/NotoSansJP-Bold.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Noto";
  font-style: normal;
  font-weight: 500;
  src: url("../font/NotoSansJP-Medium.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Noto";
  font-style: normal;
  font-weight: 400;
  src: url("../font/NotoSansJP-Regular.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Noto";
  font-style: normal;
  font-weight: 300;
  src: url("../font/NotoSansJP-Light.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Noto";
  font-style: normal;
  font-weight: 100;
  src: url("../font/NotoSansJP-Thin.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Jost";
  font-style: normal;
  font-weight: 700;
  src: url("../font/Jost-Bold.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 500;
  src: url("../font/Oswald-Medium.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 600;
  src: url("../font/Oswald-SemiBold.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 700;
  src: url("../font/Oswald-Bold.woff2") format("woff2");
  font-display: swap;
}
/* other */
/* indiviual */
/* コンテンツ共通スタイル */
.about #headline-area .txt-area h1 {
  background-image: url(../img/icon/about.png);
  background-position: left center;
}
.about #headline-area .img-area img {
  margin-left: 4em;
}

.data-dl {
  text-align: left;
  margin: 2em auto;
  display: grid;
  grid-template-columns: max-content max-content 1fr;
  gap: 0.5em 1.5em;
  align-items: center;
}
.data-dl dt {
  font-size: 1.2em;
  font-weight: bold;
}
.data-dl dd span.num {
  font-size: 1.6em;
  font-weight: bold;
  color: #FF3A3B;
  margin: 0 0.2em;
}

#flow {
  counter-reset: flow-number;
  text-align: left;
}
#flow .flow-section {
  margin-top: 2em;
}
#flow .flow-section .flow-item {
  display: -moz-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  flex-direction: column;
  position: relative;
}
#flow .flow-section .flow-item:not(:last-of-type)::after {
  content: "→";
  font-family: sans-serif;
  position: absolute;
  top: 70%;
  right: -1.15em;
  transform: translateY(-50%);
  font-size: 2.3em;
  color: #FBB731;
  font-weight: bold;
}
#flow .flow-section .flow-item h3 {
  font-size: 1.3em;
  font-weight: bold;
  color: #188343;
  display: -moz-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
}
#flow .flow-section .flow-item h3::before {
  counter-increment: flow-number;
  content: counter(flow-number);
  color: #fff;
  font-weight: normal;
  text-align: center;
  line-height: 1.4em;
  display: inline-block;
  width: 1.4em;
  min-width: 1.4em;
  height: 1.4em;
  margin-right: 0.3em;
  background: #188343;
  border-radius: 50%;
}
#flow .flow-section .flow-item p {
  font-size: 0.9em;
  padding-bottom: 1em;
}
#flow .flow-section .flow-item picture {
  width: 100%;
  margin-top: auto;
}
#flow .flow-section .flow-transfer-label {
  grid-column: 1/-1;
  width: 60%;
  margin: 0 auto 2.5em;
  padding: 0.8em 1em;
  background: #201E5E;
  color: #fff;
  font-size: 1.25em;
  font-weight: bold;
  text-align: center;
  position: relative;
  z-index: 1;
}
#flow .flow-section .flow-transfer-label::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(100% - 1px);
  transform: translateX(-50%);
  width: 120%;
  height: 1.5em;
  background: #201E5E;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  z-index: -1;
}
#flow .flow-section.transfer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3em;
}
#flow .flow-section.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3em;
  row-gap: 1.5em;
}
#flow .flow-section.process .flow-item:nth-child(n+4)::after {
  display: none;
}
#flow .flow-section.process .flow-item:nth-of-type(5) {
  grid-column: 1/span 2;
  max-width: 80%;
  margin: 0 auto;
}
#flow .flow-section.process .flow-item:nth-of-type(6) {
  grid-column: 3/span 2;
  max-width: 80%;
  margin: 0 auto;
}
#flow .flow-section.result {
  margin-top: 1em;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4em;
  text-align: center;
}
#flow .flow-section.result .flow-result-arrow {
  width: 70%;
  margin: 0 auto 2.5em;
  padding: 0.8em 1em;
  background: #188343;
  color: #fff;
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  position: relative;
  z-index: 1;
}
#flow .flow-section.result .flow-result-arrow::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(100% - 1px);
  transform: translateX(-50%);
  width: 120%;
  height: 1.5em;
  background: #188343;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  z-index: -1;
}
#flow .flow-section.result .flow-result {
  display: -moz-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  flex-direction: column;
}
#flow .flow-section.result .flow-result picture {
  margin-top: auto;
}
#flow .flow-section.result .flow-result picture img {
  padding: 1em;
  width: 80%;
}

#award p {
  text-align: left;
}
#award h3 {
  color: #188343;
  font-weight: bold;
  width: 100%;
  display: inline-block;
  margin: 1em 0 0.5em 0;
}
#award h3::after {
  content: none;
}
.contents-section.about .contents {
  display: -moz-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  justify-content: space-between;
}
.contents-section.about .contents .txt-area {
  text-align: left;
  width: 60%;
}
.contents-section.about .contents picture {
  width: 35%;
}

.about-under #headline-area nav#breadcrumbs ul,
.corporate #headline-area nav#breadcrumbs ul,
.greeting #headline-area nav#breadcrumbs ul {
  padding-bottom: 1.5em;
}
.about-under #headline-area .txt-area p.summary,
.corporate #headline-area .txt-area p.summary,
.greeting #headline-area .txt-area p.summary {
  padding-top: 1.5em;
}

p.greeting,
p.date {
  font-size: 1.15em;
  line-height: 2;
}

p.sigin {
  margin-top: 2em;
}
p.sigin span {
  font-size: 1.4em;
  margin-left: 0.25em;
  display: inline-block;
}

@media screen and (min-width: 768px) and (max-width: 950px) {
  .about #headline-area .img-area img {
    width: 70%;
    margin-left: 2.75em;
  }
  .about #flow .flow-section .flow-item h3 {
    font-size: 1.15em;
    line-height: 1.3;
  }
}
@media screen and (max-width: 767px) {
  .about-under #headline-area .img-area {
    transform: translateY(-5.5em);
  }
  .about-under .data-dl {
    display: -moz-flex;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    flex-wrap: wrap;
  }
  .about-under .data-dl dt {
    width: 100%;
  }
  .about-under .data-dl dd {
    font-size: 1.15em;
  }
  .about-under .data-dl dd + dt {
    margin-top: 1em;
  }
  .corporate .contents-section.about .contents {
    flex-direction: column;
  }
  .corporate .contents-section.about .contents .txt-area {
    width: 100%;
  }
  .corporate .contents-section.about .contents picture {
    width: 80%;
    margin: 1.5em auto 0 auto;
  }
}/*# sourceMappingURL=about.css.map */