@charset "UTF-8";
/* guidance
====================================== */
.guidance__inner {
  background-color: #F4F4F4;
}
.guidance__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 3%;
     -moz-column-gap: 3%;
          column-gap: 3%;
}
@media (max-width: 980px) {
  .guidance__links {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .guidance__links {
    grid-template-columns: repeat(1, 1fr);
  }
}
.guidance__link:nth-child(n+4) {
  margin-top: 3em;
}
@media (max-width: 980px) {
  .guidance__link:nth-child(n+4) {
    margin-top: 0;
  }
}
@media (max-width: 980px) {
  .guidance__link:nth-child(n+3) {
    margin-top: 2em;
  }
}
@media (max-width: 768px) {
  .guidance__link:nth-child(n+3) {
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .guidance__link:nth-child(n+2) {
    margin-top: 2em;
  }
}
.guidance__link a {
  background-color: #fff;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.guidance__link a:hover {
  -webkit-transform: translateY(-0.25em);
          transform: translateY(-0.25em);
  background-color: #E5F1F9;
}
.guidance__link-img {
  width: 32%;
}
.guidance__link-contents {
  width: 68%;
  padding: 0 10%;
}
.guidance__link-title {
  font-size: 1.5em;
  font-weight: bold;
}
.guidance__link-text {
  color: #0071C5;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
}
.guidance__link-text::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  margin-top: 0.1em;
  background: url(../img/common/icon_arrow_circle_blue.svg) no-repeat center center/contain;
}
.guidance__link-text--outer::after {
  content: "";
  display: block;
  width: 0.9em;
  height: 0.9em;
  margin-top: 0.1em;
  background: url(../img/common/icon_outer_blue.svg) no-repeat center center/contain;
}

/* greeting
====================================== */
.greeting__inner {
  background-color: #F4F4F4;
}
.greeting__container {
  background-color: #fff;
  padding: 2em 5%;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.greeting__upper-text {
  line-height: 2;
  margin-bottom: 2em;
}
@media (max-width: 768px) {
  .greeting__upper-text {
    width: 100%;
  }
}
.greeting__upper-text img {
  float: right;
  width: 23%;
  height: auto;
  margin-left: 7%;
  margin-bottom: 1em;
}
@media (max-width: 768px) {
  .greeting__upper-text img {
    display: block;
    float: inherit;
    width: 100%;
    max-width: 200px;
    margin: 0 auto 2em;
  }
}
.greeting__lower-text {
  line-height: 2;
  margin-bottom: 2em;
}
.greeting__signature {
  text-align: right;
}
.greeting__signature-inner {
  display: inline-block;
}
.greeting__signature-company {
  text-align: left;
}
.greeting__signature-name {
  text-align: left;
  font-size: 1.5em;
}

/* principle
====================================== */
.p_heading-title {
  text-align: center;
  font-size: 2.5em;
  font-weight: bold;
  color: #0071C5;
  margin-bottom: 0.8em;
}
@media (max-width: 768px) {
  .p_heading-title {
    font-size: 2em;
  }
}
.p_heading-lead {
  text-align: center;
}
@media (max-width: 980px) {
  .p_heading-lead {
    text-align: left;
  }
}

.p_sec__inner {
  text-align: center;
}
.p_sec__title {
  display: inline-block;
  background-color: #0071C5;
  color: #fff;
  border-radius: 20px;
  padding: 0.1em 1em;
  width: 8em;
  margin-bottom: 2em;
}
@media (max-width: 768px) {
  .p_sec__title {
    width: 100px;
    margin-bottom: 1em;
  }
}
.p_sec__catch {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 1.25em;
}
@media (max-width: 768px) {
  .p_sec__catch {
    font-size: 1rem;
  }
}

.p_mission {
  background-color: #F4F4F4;
}
.p_mission__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 3%;
}
@media (max-width: 768px) {
  .p_mission__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p_mission__item {
  width: 33.3333333333%;
  background-color: #fff;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 768px) {
  .p_mission__item {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .p_mission__item:nth-child(n+2) {
    margin-top: 2em;
  }
}
.p_mission__item-contents {
  padding: 1.5em;
}
.p_mission__item-num {
  font-size: 3em;
  font-family: "Myriad Pro";
  color: rgba(0, 113, 197, 0.1);
  line-height: 1;
  margin-bottom: 0.25em;
}
.p_mission__item-num--01 {
  margin-bottom: 0.5em;
}
.p_mission__item-title {
  font-size: 1.5em;
  color: #0071C5;
  font-weight: bold;
  line-height: 1.333;
}
.p_mission__item-img {
  margin-top: auto;
}

.p_guidelines__catch {
  padding-bottom: 2em;
}
.p_guidelines__catch span {
  display: inline-block;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(60%, #FFCE08));
  background: -webkit-linear-gradient(transparent 70%, #FFCE08 60%);
  background: linear-gradient(transparent 70%, #FFCE08 60%);
}
.p_guidelines__catch-note {
  position: relative;
}
.p_guidelines__catch-note::after {
  content: "AIDA";
  position: absolute;
  color: #E82D2D;
  top: 90%;
  left: 0;
  display: block;
  font-size: 0.8em;
}
.p_guidelines__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
@media (max-width: 768px) {
  .p_guidelines__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p_guidelines__item {
  width: 45%;
}
@media (max-width: 768px) {
  .p_guidelines__item {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .p_guidelines__item:nth-child(n+2) {
    margin-top: 5em;
  }
}
.p_guidelines__item--plus {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
}
@media (max-width: 768px) {
  .p_guidelines__item--plus {
    width: 32px;
    height: 32px;
    margin-top: 0 !important;
  }
}

/* outline 
====================================== */
.outline {
  background-color: #F4F4F4;
}
.outline__container {
  background-color: #fff;
  border-radius: 5px;
  padding: 3em 5%;
}
.outline__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 1.5em 0;
  border-bottom: 1px solid #CBCBCB;
  position: relative;
}
@media (max-width: 768px) {
  .outline__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.outline__item::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 7.5em;
  height: 1px;
  background-color: #0071C5;
}
.outline__item-title {
  width: 20%;
  color: #0071C5;
  font-weight: bold;
}
@media (max-width: 768px) {
  .outline__item-title {
    width: 100%;
    margin-bottom: 0.5em;
  }
}
.outline__item-text {
  width: 80%;
  font-weight: 500;
}
@media (max-width: 768px) {
  .outline__item-text {
    width: 100%;
  }
}
.outline__item-btn {
  margin-top: 1em;
}
.outline__item-btn a {
  margin-left: 0;
  font-size: 0.75em;
}
.outline__item-btn a::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 18px;
  margin-right: 0.5em;
  background: url(../img/common/icon_pin_blue.svg) no-repeat center center/contain;
  vertical-align: middle;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.outline__item-btn a:hover::before {
  background: url(../img/common/icon_pin_white.svg) no-repeat center center/contain;
}

/* development
====================================== */
.development__inner {
  padding-top: 2em;
  padding-bottom: 4em;
  background-color: #F4F4F4;
}
.development__container {
  background-color: #fff;
  padding: 3em 5%;
}
.development__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0.5em 2%;
}
@media (max-width: 768px) {
  .development__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.development__item:nth-child(2n+1) {
  background-color: #E5F1F9;
}
.development__item-year {
  width: 10%;
}
@media (max-width: 768px) {
  .development__item-year {
    width: 100%;
    margin-bottom: 0.5em;
  }
}
.development__item-months {
  width: 90%;
}
@media (max-width: 768px) {
  .development__item-months {
    width: 100%;
  }
}
.development__item-month {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.development__item-month:nth-child(n+2) {
  margin-top: 0.75em;
}
.development__item-month-num {
  width: 10%;
}
.development__item-month-text {
  width: 90%;
}

/* social 
====================================== */
.social__links-inner {
  padding-top: 4em;
  padding-bottom: 4em;
}
.social__link {
  margin-bottom: 0;
}
.social__link a:hover::after {
  -webkit-transform: translateY(0.2em);
          transform: translateY(0.2em);
}
.social__lower {
  background-color: #F4F4F4;
}
.social__lower-container {
  background-color: #fff;
  padding: 2em 3.33% 4em;
}

.s_release__inner {
  padding-top: 3em;
}
.s_release__title {
  margin-bottom: 2.5em;
}
.s_release__list {
  max-width: 900px;
  margin: 0 auto 3em;
}

.s_project:nth-child(n+2) {
  margin-top: 5em;
}
.s_project__title-pro {
  color: #0071C5;
  font-weight: bold;
  font-size: 0.75em;
}
.s_project__title-main {
  font-weight: bold;
  font-size: 1.5em;
  margin-bottom: 1em;
}
@media (max-width: 768px) {
  .s_project__title-main {
    font-size: 1rem;
  }
}
.s_project__img {
  margin-bottom: 2em;
}
.s_project__heading {
  background-color: #0071C5;
  color: #fff;
  font-weight: bold;
  padding: 0.1em 2em;
  display: inline-block;
  border-radius: 20px;
  margin-bottom: 1em;
}
.s_project__text {
  line-height: 2;
  margin-bottom: 2em;
}
.s_project__text a {
  color: #0071C5;
  text-decoration: underline;
}
.s_project__text a:hover {
  font-weight: bold;
}
.s_project__banners {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 3%;
}
@media (max-width: 768px) {
  .s_project__banners {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.s_project__banner {
  width: 33.3333333333%;
}
@media (max-width: 768px) {
  .s_project__banner {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .s_project__banner:nth-child(n+2) {
    margin-top: 2em;
  }
}
.s_project__banner a {
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.s_project__banner a:hover {
  opacity: 0.8;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.access {
  background-color: #F4F4F4;
}
.access__container {
  background-color: #fff;
  padding: 4em 10%;
}
.access__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 2.5em;
}
@media (max-width: 768px) {
  .access__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.access__item:nth-child(n+2) {
  padding-top: 5.25em;
  border-top: 1px solid #D5D5D5;
  position: relative;
}
@media (max-width: 768px) {
  .access__item:nth-child(n+2) {
    padding-top: 3em;
  }
}
.access__item:nth-child(n+2)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-width: clamp(10px, 0.9375vw, 15px);
  border-style: solid;
  border-color: #0071C5 transparent transparent;
}
.access__item-contents {
  width: 50%;
}
@media (max-width: 768px) {
  .access__item-contents {
    width: 100%;
    margin-bottom: 1em;
  }
}
.access__item-title {
  font-size: 1.5em;
  font-weight: bold;
  color: #0071C5;
  margin-bottom: 0.5em;
}
.access__item-text {
  text-align: left;
  font-weight: 500;
  line-height: 1.5;
}
.access__item-img {
  width: 37.76%;
}
@media (max-width: 768px) {
  .access__item-img {
    width: 100%;
  }
}