@charset "UTF-8";
/* ========================================
   _reset.scss (modern & minimal)
======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ol,
ul,
li,
table,
th,
td,
fieldset,
legend {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button,
[type=button],
[type=submit] {
  cursor: pointer;
  background: none;
  border: none;
}

a {
  color: inherit;
  text-decoration: none;
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
body {
  min-height: 100dvh; /* iOSのアドレスバー対策も兼ねる */
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/*------------------------------------------
  base.scss
------------------------------------------*/
html {
  font-size: 62.5%; /* 1rem = 10px */
}

body {
  margin: 0;
  padding: 0;
  color: #101010;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.75;
  text-align: justify;
  text-justify: inter-ideograph;
}
@media screen and (min-width: 1280px) {
  body {
    font-size: 1.8rem;
  }
}

a {
  color: #333;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
a:hover {
  opacity: 0.6;
}

.bgblack a,
.bgblack02 a {
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
  transition: opacity 0.3s ease;
}
.bgblack a:hover,
.bgblack02 a:hover {
  opacity: 0.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.flow > * + * {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .flow > * + * {
    margin-top: 32px;
  }
}

.flow--s > * + * {
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .flow--s > * + * {
    margin-top: 16px;
  }
}

/*---- responsive helpers ----*/
.pc {
  display: none !important;
}
@media screen and (min-width: 1280px) {
  .pc {
    display: block !important;
  }
}

.sp {
  display: block !important;
}
@media screen and (min-width: 1280px) {
  .sp {
    display: none !important;
  }
}

/*---------- containers ----------*/
.container {
  width: 100%;
  padding: 80px 0;
}
@media screen and (min-width: 768px) {
  .container {
    padding: 120px 0;
  }
}

.container__l {
  max-width: 1120px;
  width: 90%;
  margin-right: auto;
  margin-left: auto;
}

.container__m {
  max-width: 800px;
  width: 90%;
  margin-right: auto;
  margin-left: auto;
}

.container__s {
  max-width: 580px;
  width: 80%;
  margin-right: auto;
  margin-left: auto;
}

.u-bgcolor-blue {
  background-color: #073049;
  color: #fff;
}

.u-bgcolor-red {
  background-color: #c1121f;
  color: #fff;
}

.u-bgcolor-beige {
  background-color: #fef6e6;
}

/*---------- columns ----------*/
.columns {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .columns {
    flex-direction: row;
  }
}
.columns.columns--2 {
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .columns.columns--2 > * {
    width: calc((100% - 16px) / 2);
  }
}
.columns.columns--3 {
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .columns.columns--3 > * {
    width: calc((100% - 32px) / 3);
  }
}
.columns.columns--2w {
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .columns.columns--2w {
    flex-wrap: wrap;
    gap: 32px 16px;
  }
  .columns.columns--2w > * {
    width: calc((100% - 16px) / 2);
  }
}
@media screen and (min-width: 768px) {
  .columns.columns--3w {
    flex-wrap: wrap;
    gap: 32px 16px;
  }
  .columns.columns--3w > * {
    width: calc((100% - 32px) / 3);
  }
}

/*---------- text ----------*/
.heading__01 {
  font-size: 2.4rem;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  line-height: 1.5;
}
.heading__01 span {
  font-size: 1.6rem;
  display: block;
}

@media screen and (min-width: 768px) {
  .heading__01 {
    font-size: 3.6rem;
  }
  .heading__01 span {
    font-size: 2rem;
  }
}
.heading__02 {
  font-size: 2.4rem;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .heading__02 {
    font-size: 3rem;
  }
}
.heading__03 {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  line-height: 1.5;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .heading__03 {
    font-size: 2rem;
  }
}
.u-text-center {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .u-text-center-pc {
    text-align: center;
  }
}

.u-fs-l {
  font-size: 120%;
  font-weight: 600;
}

.u-fs-s {
  font-size: 80%;
}

.u-color-red {
  color: #c1121f;
}

.u-color-white {
  color: #fff;
}

.u-bgcolor-beige {
  background-color: #fef6e6;
}

.u-text-underline {
  border-bottom: solid 1px #fff;
  padding-bottom: 8px;
}

/*---------- margin ----------*/
.u-mt-s {
  margin-top: 16px;
}

.u-mt-m {
  margin-top: 32px;
}

.u-mt-l {
  margin-top: 120px;
}

/*---- page top button (ここに集約) ----*/
#page-top {
  position: fixed;
  bottom: 10px;
  right: 5px;
  z-index: 99;
}
@media screen and (min-width: 768px) {
  #page-top {
    bottom: 20px;
    right: 20px;
  }
}
#page-top a {
  width: 24px;
  display: block;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  #page-top a {
    width: 32px;
  }
}
#page-top a:hover {
  text-decoration: none;
  opacity: 0.5;
}

/*---------- btn ----------*/
.btn {
  max-width: 320px;
  width: 80%;
  margin: 0 auto;
}
.btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 5px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  color: #fff;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn a::after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
.btn a:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.btn--red a {
  background-color: #c1121f;
  border: 1px solid #c1121f;
}
.btn--blue a {
  background-color: #073049;
  border: 1px solid #073049;
}

/*------header-------*/
.header {
  width: 100%;
  margin: 0 auto;
}
.header__innwrap {
  max-width: 1120px;
  width: 90%;
  margin: 16px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  width: 40%;
  max-width: 220px;
}
@media screen and (min-width: 768px) {
  .header__logo {
    width: 30%;
  }
}
.header__contact {
  width: 50%;
}
@media screen and (min-width: 768px) {
  .header__contact {
    width: 30%;
  }
}

.btn__contact {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 220px;
  margin: 0 auto;
  border-radius: 10px;
  background-color: #c1121f;
  color: #fff;
  font-weight: 600;
  font-size: 1.4rem;
  padding: 8px 16px;
  float: right;
}
@media screen and (min-width: 768px) {
  .btn__contact {
    font-size: 1.6rem;
    padding: 8px 24px;
  }
}

.btn__contact:hover {
  opacity: 0.8;
}

.mv {
  max-width: 1120px;
  height: auto;
  margin: 0 auto;
  background-color: #eee;
}
.mv img {
  border-radius: inherit;
}

/*------cta-------*/
.cta ul {
  max-width: 800px;
  width: 60%;
  margin: 24px auto 0;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1280px) {
  .cta ul {
    width: 80%;
    flex-direction: row;
    justify-content: space-between;
  }
}
.cta ul li {
  width: 100%;
  margin-bottom: 8px;
}
@media screen and (min-width: 1280px) {
  .cta ul li {
    width: 32%;
    margin-bottom: 0;
  }
}

/*------campany-------*/
.company {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}
@media screen and (min-width: 768px) {
  .company {
    grid-template-columns: repeat(5, 1fr);
  }
}
.company li {
  border: solid 1px #eee;
  padding: 8px;
}
@media screen and (min-width: 768px) {
  .company li {
    padding: 8px 24px;
  }
}
.company li a {
  display: block;
}

/*------awards-------*/
.awards {
  background-color: #669bbc;
  padding: 60px 0;
}
.awards__innwrap {
  margin: 0 auto;
  max-width: 1120px;
  width: 90%;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .awards__innwrap {
    flex-direction: row;
    justify-content: space-between;
  }
}
.awards__detail {
  width: 100%;
  background-color: #fff;
  padding: 16px;
  border-radius: 10px;
  margin: 8px auto 0;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .awards__detail {
    width: 30%;
    margin: 0;
  }
}
.awards__detail p {
  text-align: center;
  font-size: 1.4rem;
}

/*------attempt-------*/
.attempt__wrap {
  display: grid;
  gap: 32px 0;
}
.attempt__box {
  padding: 40px;
  color: #fff;
  border-radius: 10px;
}
.attempt__box--red {
  background-color: #b22e3a;
}
.attempt__box--blue {
  background-color: #588398;
}
.attempt__box--yellow {
  background-color: #df9e3f;
}

/*------project-------*/
.project__wrap {
  display: grid;
  gap: 40px 24px;
  grid-template-columns: repeat(2, 1fr);
  margin: 64px auto 0;
  align-items: stretch;
}
@media screen and (min-width: 768px) {
  .project__wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}
.project__wrap div > * + * {
  margin-top: 16px;
}
.project__wrap p:last-child {
  text-align: left;
}
.project__area {
  background-color: #669bbc;
  color: #fff;
  max-width: 200px;
  margin: 0 auto;
  font-size: 1.4rem;
  text-align: center;
}
.project__title {
  font-size: 1.5rem;
  line-height: 1.5;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .project__title {
    font-size: 2.2rem;
  }
}

/*------pr-------*/
.pr {
  padding: 40px 24px;
  background-color: #073049;
  border-radius: 10px;
  color: #fff;
}
.pr__wrap {
  display: grid;
  gap: 40px 24px;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .pr__wrap {
    grid-template-columns: 1fr 1fr;
  }
}
.pr__sdgs {
  border-radius: 10px;
  border: solid 1px #ccc;
  padding: 40px;
}
.pr__sdgswrap {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .pr__sdgswrap {
    grid-template-columns: 400px auto;
  }
}

/*------point-------*/
.point {
  background-color: #fff;
  border-radius: 10px;
  color: #101010;
  padding: 24px;
}
.point__wrap {
  display: grid;
  gap: 24px 0;
}
.point__icon {
  max-width: 40px;
  margin: 0 auto;
  width: 30%;
}

/*---------- voice ----------*/
.voice {
  display: grid;
  grid-template-columns: 160px 1fr;
  grid-template-rows: 160px 1fr;
  gap: 32px 16px;
  width: 100%;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .voice {
    width: 48%;
    margin-bottom: 0;
  }
}
.voice__wrap {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .voice__wrap {
    flex-direction: row;
    justify-content: space-between;
  }
}
.voice__img {
  grid-column: 1/2;
  grid-row: 1/2;
}
.voice__img img {
  border-radius: 50%;
}
.voice__name {
  grid-column: 2/3;
  grid-row: 1/2;
  font-size: 1.8rem;
  align-content: center;
}
.voice__name span {
  font-size: 1.4rem;
  font-weight: 400;
  display: block;
}
.voice__message {
  grid-column: 1/3;
  grid-row: 2/3;
}

/*------shien-------*/
.shien__others {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .shien__others {
    grid-template-columns: repeat(3, 1fr);
  }
}
.shien__others div {
  background-color: #fff;
  border-radius: 10px;
  padding: 40px 24px;
}

/*------qa-------*/
.qa {
  transition: 0.3s;
  overflow: hidden;
  margin-top: -10px;
  padding-bottom: 20px;
}
.qa:last-of-type {
  margin-bottom: 0;
}
.qa__wrap {
  max-width: 840px;
  width: 90%;
  margin: 24px auto 0;
}

.qa[open] {
  margin-top: 0;
  padding-bottom: 10px;
}

.qa-summary {
  display: block;
  padding: 16px 24px;
  transition: 0.3s;
  transform: translateY(10px);
  background-color: #669bbc;
  font-weight: bold;
  color: #fff;
}
.qa-summary:hover {
  cursor: pointer;
}

.qa-summary::-webkit-qa-marker {
  display: none;
}

.qa[open] .qa-summary {
  transform: translateY(0);
}

.qa-content {
  padding: 20px;
  background-color: #fff;
  border-bottom: 2px solid #669bbc;
  border-left: 2px solid #669bbc;
  border-right: 2px solid #669bbc;
}

/*------footer-------*/
.footer {
  background-color: #073049;
  padding: 40px 0;
}
.footer__innwrap {
  display: flex;
  align-items: center;
  flex-direction: column;
  max-width: 1120px;
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 1280px) {
  .footer__innwrap {
    justify-content: space-between;
    flex-direction: row;
  }
}
.footer__logo {
  width: 60%;
  margin: 0 auto 24px;
}
@media screen and (min-width: 1280px) {
  .footer__logo {
    width: 30%;
    max-width: 240px;
    margin: 0;
  }
}
.footer__address {
  width: 100%;
  color: #fff;
  font-size: 1.2rem;
}
@media screen and (min-width: 1280px) {
  .footer__address {
    text-align: right;
  }
}

/*------------------------------------------
  animation.scss
------------------------------------------*/
.fadein,
.fadein--up,
.fadein--down,
.fadein--left,
.fadein--right {
  opacity: 0;
  transition: opacity 1s, transform 1s;
  will-change: opacity, transform;
}

.fadein.animated {
  opacity: 1;
}

.fadein--up {
  transform: translate3d(0, 24px, 0);
}

.fadein--down {
  transform: translate3d(0, -24px, 0);
}

.fadein--left {
  transform: translate3d(-24px, 0, 0);
}

.fadein--right {
  transform: translate3d(24px, 0, 0);
}

.fadein--up.animated,
.fadein--down.animated,
.fadein--left.animated,
.fadein--right.animated {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* 動きを苦手とするユーザ設定に追従 */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}/*# sourceMappingURL=style.css.map */