@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
@media (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}
@-webkit-keyframes loopTextToRight {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
@keyframes loopTextToRight {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
/*------------------------------------------------------------
	clearfix（float解除）
------------------------------------------------------------*/
.u-clearfix {
  *zoom: 1;
}
.u-clearfix:after {
  display: block;
  clear: both;
  content: "";
}

/*------------------------------------------------------------
    Default
------------------------------------------------------------*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header, button,
hgroup, menu, nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 1em;
}

html {
  font-size: 62.5%;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body, table,
input, textarea, select, option, button,
h1, h2, h3, h4, h5, h6 {
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
}

table,
input, textarea, select, option {
  line-height: 1.5;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

img {
  vertical-align: middle;
  max-width: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

iframe {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
}

table {
  width: 100%;
  border-collapse: collapse;
}
table th {
  font-weight: 500;
}

a {
  color: #000000;
  text-decoration: none;
  display: inline-block;
  -webkit-transition: all 0.3s ease !important;
  transition: all 0.3s ease !important;
}

a:hover,
a:hover img {
  opacity: 0.8 !important;
  filter: alpha(opacity=80) !important;
  -ms-filter: "alpha(opacity=80)" !important;
}

.u-pd80 {
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .u-pd80 {
    padding: 50px 0;
  }
}

.u-pb80 {
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .u-pb80 {
    padding-bottom: 50px;
  }
}

.u-bgcover {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.u-bg01 {
  background: url(../images/common/bg01.jpg);
  background-position: center top !important;
}

.u-bg02 {
  background-color: #ECF1F7;
}

.u-bg03 {
  background-color: #DFE6ED;
}

.u-df {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .u-df {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.u-df--jf {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.u-df--al {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.u-df-left, .u-df-right {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .u-df-left, .u-df-right {
    width: 100%;
  }
}

.u-slheight .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.u-slheight .slick-slide {
  height: inherit !important;
}

.u-hover .u-bgcover {
  display: block;
  overflow: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
}

.u-hover .u-bgcover:after {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  position: absolute;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.u-hover:hover .u-bgcover:after {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

/*------------------------------------------------------------
  door（扉演出）
------------------------------------------------------------*/
.u-door {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  pointer-events: none;
}
.u-door__left, .u-door__right {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background-color: #fff;
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.76, 0, 0.24, 1);
  transition: -webkit-transform 0.8s cubic-bezier(0.76, 0, 0.24, 1);
  transition: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1);
  transition: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1), -webkit-transform 0.8s cubic-bezier(0.76, 0, 0.24, 1);
}
.u-door__left {
  left: 0;
}
.u-door__right {
  right: 0;
}
.u-door.open .u-door__left {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}
.u-door.open .u-door__right {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

/*------------------------------------------------------------
  effect（ページ遷移）
------------------------------------------------------------*/
.u-effect {
  position: relative;
}

.u-effect::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #E5EEF8;
  background-image: url(../images/common/h-logo.svg);
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 9998;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
}
@media screen and (max-width: 767px) {
  .u-effect::after {
    background-size: 249px;
  }
}

.u-effect.show::after {
  opacity: 1;
}

.u-effect.show article {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

/*------------------------------------------------------------
	Layout
------------------------------------------------------------*/
body {
  color: #000000;
  line-height: 1.5;
  font-weight: 400;
  font-size: 16px;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.l-container {
  width: 1300px;
  margin: 0 auto;
}
@media screen and (max-width: 1350px) and (min-width: 767px) {
  .l-container {
    width: 92%;
  }
}
@media screen and (max-width: 767px) {
  .l-container {
    width: 87%;
  }
}

section {
  position: relative;
}

section:not(:first-child) {
  overflow: hidden;
}

/*------------------------------------------------------------
header
------------------------------------------------------------*/
.l-header {
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  position: fixed;
}
.l-header.is-scroll {
  -webkit-transition: 500ms;
  transition: 500ms;
  background-color: rgba(0, 84, 155, 0.54);
  background-color: #fff;
  -webkit-box-shadow: 0 0 15px 5px rgba(153, 153, 153, 0.5);
          box-shadow: 0 0 15px 5px rgba(153, 153, 153, 0.5);
}
.l-header.is-scroll .l-header__logo {
  -webkit-transform: translateY(-32%);
          transform: translateY(-32%);
}
@media screen and (max-width: 767px) {
  .l-header.is-scroll .l-header__logo {
    -webkit-transform: none;
            transform: none;
  }
}
.l-header.is-scroll .l-header__gnavi-list li:not(:last-child) {
  -webkit-transform: translateY(-70%);
          transform: translateY(-70%);
}
@media screen and (max-width: 767px) {
  .l-header.is-scroll .l-header__gnavi-list li:not(:last-child) {
    -webkit-transform: none;
            transform: none;
  }
}
.l-header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 5px;
}
@media screen and (max-width: 767px) {
  .l-header-inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 5px 7px 5px 10px;
  }
}
.l-header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: auto;
  margin-left: 10px;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
@media screen and (max-width: 767px) {
  .l-header__logo img {
    width: 249px;
  }
}
.l-header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60px;
  height: 60px;
  z-index: 9999;
  top: 0;
  right: 0;
  cursor: pointer;
  border-radius: 3px;
  background-color: #fff;
}
.l-header__menu div {
  position: relative;
  width: 30px;
  height: 26px;
}
.l-header__menu span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background: #505050;
  border-radius: 20px;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
}
.l-header__menu span:nth-child(1) {
  top: 0px;
}
.l-header__menu span:nth-child(2) {
  top: 11px;
}
.l-header__menu span:nth-child(3) {
  top: 22px;
}
.l-header__menu.on span:nth-child(1) {
  top: 10px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.l-header__menu.on span:nth-child(2) {
  width: 0;
  left: 50%;
}
.l-header__menu.on span:nth-child(2)::before, .l-header__menu.on span:nth-child(2)::after {
  width: 0;
  height: 0;
}
.l-header__menu.on span:nth-child(3) {
  top: 10px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/*
.l-header__nav {
  visibility: hidden;
  position: relative;
  z-index: 100;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.l-header__nav.open {
  visibility: visible;
  -webkit-transition: opacity 0.24s ease;
  transition: opacity 0.24s ease;
}
.l-header__nav.open .l-header__nav-bg {
  visibility: visible;
  opacity: 1;
}
.l-header__nav.open .l-header__nav-wrap {
  visibility: visible;
  opacity: 1;
}
.l-header__nav-bg {
  display: block;
  position: fixed;
  z-index: 100;
  width: 100vw;
  height: 100vh;
  background: #F5F8F6;
  visibility: hidden;
  opacity: 0;
  cursor: pointer;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.l-header__nav-wrap {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  right: 0;
  z-index: 998;
  width: 100%;
  height: 100vh;
  margin-left: 0;
  background-color: #F5F8F6;
  text-align: left;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  .l-header__nav-wrap {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.l-header__nav .l-container {
  height: 100%;
}
.l-header__nav--logo {
  padding-top: 100px;
  display: block;
  text-align: center;
  -webkit-animation-name: gnaviAnime;
          animation-name: gnaviAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@-webkit-keyframes gnaviAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes gnaviAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .l-header__nav--logo img {
    width: 249px;
  }
}
.l-header__nav--inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 395px;
  margin: 30px auto;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .l-header__nav--inner {
    max-width: 304px;
  }
}
.l-header__nav--list {
  position: relative;
}
.l-header__nav--list li {
  opacity: 0;
  -webkit-transform: translate3d(0, 3rem, 0);
          transform: translate3d(0, 3rem, 0);
  -webkit-transition: opacity 0.4s linear, -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.4s linear, -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.4s linear, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.4s linear, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.l-header__nav--list li.fade {
  opacity: 1;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.l-header__nav--list > li {
  padding: 15px 0;
}
.l-header__nav--list a {
  color: #1A86E2;
  font-size: 20px;
  font-weight: 600;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .l-header__nav--list a {
    font-size: 1.6rem;
  }
}
.l-header__nav--list a:after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 51%;
  right: 51%;
  bottom: -5px;
  background: #2487FF;
  height: 4px;
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.l-header__nav--list a:hover:after {
  left: 0;
  right: 0;
}
.l-header__nav--sub {
  margin-left: 20px;
}
.l-header__nav--sub li {
  padding: 3px;
}
.l-header__nav--sub a {
  font-size: 16px;
}
*/

/* =========================================================
  Global Navigation
========================================================= */
.comingsoon {
	pointer-events: none;
	opacity: 0.4;
	mix-blend-mode: luminosity;
}

.l-header__nav {
  visibility: hidden;
  position: absolute;
  z-index: 100;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

body.is-fixed {
  overflow: hidden;
  height: 100dvh;
}

.l-header__nav {
  visibility: hidden;
  position: absolute;
  z-index: 100;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.l-header__nav.open {
  visibility: visible;
}

.l-header__nav-bg {
  display: block;
  position: fixed;
  z-index: 100;
  width: 100vw;
  height: 100vh;
  background: #e9eaed;
  visibility: hidden;
  opacity: 0;
  cursor: pointer;
  transition: all 0.6s;
}

.l-header__nav.open .l-header__nav-bg {
  visibility: visible;
  opacity: 1;
}

.l-header__nav-wrap {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  inset: 0;
  z-index: 998;
  width: 100%;
  height: 100dvh;
  background: #e9eaed;
  display: grid;
  grid-template-columns: 37% 63%;
  overflow-y: auto;
  overflow-x: hidden;
  transition: all 0.6s;
}

.l-header__nav.open .l-header__nav-wrap {
  visibility: visible;
  opacity: 1;
}

.l-header__nav-visual {
  position: sticky;
  top: 0;
  min-height: 100dvh;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.l-header__nav-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 84, 155, 0.35);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.l-header__nav-visual-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 210px;
  transform: translate(-50%, -50%);
}

.l-header__nav-visual-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.l-header__nav-content {
  min-height: 100dvh;
  padding: 80px 9vw 80px;
  display: flex;
  align-items: center;
}

@media screen and (max-height: 820px) and (min-width: 768px) {
  .l-header__nav-content {
    align-items: flex-start;
  }
}

.l-header__nav-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 7vw;
  row-gap: 50px;
}

@media screen and (max-height: 820px) and (min-width: 768px) {
  .l-header__nav-grid {
    padding-bottom: 80px;
  }
}

.l-header__nav-section {
  margin-bottom: 42px;
}

.l-header__nav-section:last-child {
  margin-bottom: 0;
}

.l-header__nav-heading {
  margin-bottom: 14px;
  color: #1f6d8f;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 34px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.l-header__nav-list li {
  opacity: 0;
  transform: translate3d(0, 3rem, 0);
  transition: opacity 0.4s linear, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.l-header__nav-list li.fade {
  opacity: 1;
  transform: translateZ(0);
}

.l-header__nav-list a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #1b1b1b;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: color 0.3s;
}

.l-header__nav-list a::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: inline-block;
  background: url(../images/common/ic-right-black.svg) center no-repeat;
  background-size: contain;
  transition: background 0.4s ease, transform 0.4s ease;
  transform: translateX(0);
}

.l-header__nav-list a::after {
  content: none;
}

.l-header__nav-list a:hover {
  color: #1f6d8f;
}

.l-header__nav-list a:hover::before {
  border-color: #1f6d8f;
}

.l-header__nav-list a:hover::after {
  border-color: #1f6d8f;
}

.l-header__nav-text {
  margin-top: 14px;
  color: #999;
  font-size: 13px;
  line-height: 1.65;
  letter-spacing: 0.06em;
}

.l-header__nav-sublist {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #1f6d8f;
}

.l-header__nav-sublist li {
  opacity: 0;
  transform: translate3d(0, 3rem, 0);
  transition: opacity 0.4s linear, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.l-header__nav-sublist li.fade {
  opacity: 1;
  transform: translateZ(0);
}

.l-header__nav-sublist a {
  display: inline-block;
  color: #222;
  font-size: 14px;
  line-height: 1.9;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.l-header__nav-sublist a::before {
  content: "- ";
}

.l-header__nav-sublist a:hover {
  color: #1f6d8f;
}

.l-header__nav-contact {
  margin-top: 70px;
}

.l-header__nav-contact > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(300px, 100%);
  height: 52px;
  color: #fff;
  background: #707070;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background-color 0.3s;
}

.l-header__nav-contact > a:hover {
  background: #1f6d8f;
}

.l-header__nav-contact p {
  margin-top: 24px;
}

.l-header__nav-contact p a {
  color: #222;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.l-header__nav-contact p a::before {
  content: "- ";
}

/* close button */
.l-header__menu.on {
  position: fixed;
  top: 8px;
  right: 8px;
  width: 74px;
  height: 74px;
  background: #566068;
  border-radius: 0;
}

.l-header__menu.on div {
  width: 48px;
  height: 48px;
}

.l-header__menu.on span {
  height: 4px;
  background: #fff;
  border-radius: 0;
}

.l-header__menu.on span:nth-child(1) {
  top: 22px;
  transform: rotate(45deg);
}

.l-header__menu.on span:nth-child(2) {
  opacity: 0;
}

.l-header__menu.on span:nth-child(3) {
  top: 22px;
  transform: rotate(-45deg);
}

@media screen and (max-width: 1100px) {
  .l-header__nav-wrap {
    grid-template-columns: 32% 68%;
  }

  .l-header__nav-content {
    padding: 70px 6vw 50px;
  }

  .l-header__nav-grid {
    column-gap: 5vw;
  }

  .l-header__nav-heading {
    font-size: 30px;
  }
}

@media screen and (max-width: 767px) {
  .l-header__nav-wrap {
    display: block;
  }

  .l-header__nav-visual {
    position: relative;
    top: auto;
    min-height: 220px;
  }

  .l-header__nav-visual-logo {
    width: 230px;
  }

  .l-header__nav-content {
    min-height: auto;
    padding: 42px 7% 70px;
    display: block;
  }

  .l-header__nav-grid {
    display: block;
  }

  .l-header__nav-section {
    margin-bottom: 36px;
  }

  .l-header__nav-heading {
    font-size: 28px;
  }

  .l-header__nav-list a {
    font-size: 15px;
  }

  .l-header__nav-text,
  .l-header__nav-sublist a,
  .l-header__nav-contact p a {
    font-size: 13px;
  }

  .l-header__nav-contact {
    margin-top: 44px;
  }

  .l-header__menu.on {
    width: 64px;
    height: 64px;
  }

  .l-header__menu.on div {
    width: 40px;
    height: 40px;
  }

  .l-header__menu.on span:nth-child(1),
  .l-header__menu.on span:nth-child(3) {
    top: 18px;
  }
}

@media screen and (max-width: 767px) {
  .l-header__nav-col:first-child .l-header__nav-section:last-child {
    margin-bottom: 36px;
  }
}
/* #################################### */


@media screen and (max-width: 767px) {
  .l-header__gnavi {
    display: none;
  }
}
.l-header__gnavi-list {
  height: 60px;
}
.l-header__gnavi-list li {
  padding: 0 20px;
  -ms-flex-item-align: end;
      align-self: flex-end;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
@media screen and (max-width: 1080px) and (min-width: 767px) {
  .l-header__gnavi-list li:not(.service):not(.contact) {
    display: none;
  }
}
.l-header__gnavi-list a {
  font-weight: 500;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
}
.l-header__gnavi-list a:after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 51%;
  right: 51%;
  bottom: -5px;
  background: #2487FF;
  height: 4px;
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.l-header__gnavi-list a:hover:after {
  left: 0;
  right: 0;
}
.l-header__gnavi-list .service, .l-header__gnavi-list .contact {
  padding: 0;
  height: 100%;
}
.l-header__gnavi-list .service a, .l-header__gnavi-list .contact a {
  height: 100%;
  padding: 0 20px;
  border-radius: 3px;
  -webkit-transition: background-color 0.4s ease;
  transition: background-color 0.4s ease;
}
.l-header__gnavi-list .service a:after, .l-header__gnavi-list .contact a:after {
  content: none;
}
.l-header__gnavi-list .service a:hover, .l-header__gnavi-list .contact a:hover {
  color: #fff !important;
  background-color: #00549B;
}
.l-header__gnavi-list .service a {
  color: #fff;
  font-size: 14px;
  margin-left: 5px;
  padding: 5px 12px;
  background-color: #387AB2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-header__gnavi-list .service a:before {
  content: "";
  width: 35px;
  height: 35px;
  margin-right: 10px;
  display: inline-block;
  background: url(../images/common/ic-service.svg) center no-repeat;
}
.l-header__gnavi-list .contact {
  margin: 0 5px;
}
.l-header__gnavi-list .contact a {
  color: #303131 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
}

/*------------------------------------------------------------
footer
------------------------------------------------------------*/
.l-footer {
  font-family: "Noto Sans JP", sans-serif;
}
.l-footer__top {
  background-color: #E5E7EB;
}
.l-footer__logo {
  width: 35%;
  padding: 5%;
  text-align: center;
  background-color: #F4F4F4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .l-footer__logo {
    width: 100%;
    padding: 50px;
  }
}
.l-footer__links {
  width: 65%;
  padding: 4%;
  display: -ms-grid;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
@media screen and (max-width: 767px) {
  .l-footer__links {
    width: 100%;
    padding: 40px;
    display: none;
  }
}
.l-footer__links--box {
  padding: 0 30px;
}
@media screen and (max-width: 767px) {
  .l-footer__links--box {
    padding: 0;
  }
}
.l-footer__links--box:not(:last-child) {
  border-right: 1px solid #CECECE;
}
@media screen and (max-width: 767px) {
  .l-footer__links--box:not(:last-child) {
    border: none;
  }
}
.l-footer__links ul + ul {
  margin-top: 15px;
}
.l-footer__links h3 {
  color: #00549B;
  font-size: 21px;
  margin-bottom: 5px;
  font-family: "Circe", sans-serif;
  font-weight: 600;
}
.l-footer__links li {
  padding: 3px 0;
  font-size: 13px;
}
.l-footer__bottom {
  color: #fff;
  font-size: 13px;
  text-align: center;
  padding: 30px 20px;
  background-color: #1A2140;
  font-family: "Bernino Sans", sans-serif;
}
@media screen and (max-width: 767px) {
  .l-footer__bottom {
    padding: 30px 10px;
  }
}

.footer_address {
	margin-top: 40px;
	text-align: left;
	font-size: 14px;
	line-height: 1.6;
	color: #666;
}
.footer_address strong {
    display: block;
    background-color: #e9e9e9;
    padding: 4px;
    text-align: center;
    border-radius: 3px;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 13px;
}

/*------------------------------------------------------------
    c-title
------------------------------------------------------------*/
.c-title01 {
  text-align: center;
  margin-bottom: 38px;
}
@media screen and (max-width: 767px) {
  .c-title01 {
    margin-bottom: 32px;
  }
}
.c-title01 h2 {
  font-size: 40px;
  line-height: 1.3;
  letter-spacing: 7px;
  font-family: "Circe", sans-serif;
}
@media screen and (max-width: 767px) {
  .c-title01 h2 {
    font-size: 2.3rem;
    letter-spacing: 2px !important;
  }
}
.c-title01 p {
  font-size: 19px;
}

.c-title02 {
  margin-bottom: 60px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-title02 {
    margin-bottom: 50px;
  }
}
.c-title02__ttl-en {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 7px;
  font-family: "Circe", sans-serif;
}
@media screen and (max-width: 767px) {
  .c-title02__ttl-en {
    font-size: 3.3rem;
    letter-spacing: 3px;
  }
}
.c-title02__ttl-jp {
  display: table;
  font-size: 19px;
  margin: 5px auto 0;
  padding: 10px 45px;
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
}
@media screen and (max-width: 767px) {
  .c-title02__ttl-jp {
    font-size: 1.7rem;
    padding: 8px 25px;
  }
}
.c-title02__txt {
  line-height: 2;
  margin-top: 20px;
}

.c-text01 {
  color: #272727;
  line-height: 1.8;
  padding: 30px 40px;
  border-radius: 8px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .c-text01 {
    padding: 30px;
  }
}

/*------------------------------------------------------------
    c-btn
------------------------------------------------------------*/
.c-btn01 {
  width: 100%;
  font-size: 15px;
  max-width: 340px;
  padding: 8px;
  margin: 65px auto 0;
  text-align: center;
  border-radius: 21px;
  border: 1px solid #707070;
  font-family: "Noto Sans JP", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .c-btn01 {
    max-width: 270px;
    margin: 50px auto 0;
  }
}
.c-btn01:before {
  content: "";
  min-width: 18px;
  height: 18px;
  display: inline-block;
  margin-right: 10px;
  background: url(../images/common/ic-right-black.svg) center no-repeat;
  -webkit-transition: background 0.4s ease, -webkit-transform 0.4s ease;
  transition: background 0.4s ease, -webkit-transform 0.4s ease;
  transition: transform 0.4s ease, background 0.4s ease;
  transition: transform 0.4s ease, background 0.4s ease, -webkit-transform 0.4s ease;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
.c-btn01:hover {
  color: #fff;
  background-color: #1A86E2 !important;
}

.c-btn01:before {
  content: "";
  min-width: 18px;
  height: 18px;
  display: inline-block;
  margin-right: 15px;
  background: url(../images/common/ic-right-black.svg) center no-repeat;
  -webkit-transition: background 0.4s ease, -webkit-transform 0.4s ease;
  transition: background 0.4s ease, -webkit-transform 0.4s ease;
  transition: transform 0.4s ease, background 0.4s ease;
  transition: transform 0.4s ease, background 0.4s ease, -webkit-transform 0.4s ease;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.c-btn01:hover:before {
  background: url(../images/common/ic-right-white.svg) center no-repeat;
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

/*
.c-btn01:hover:before {
  background: url(../images/common/ic-right-white.svg) center no-repeat;
  -webkit-animation-name: hvr-icon-wobble-horizontal;
          animation-name: hvr-icon-wobble-horizontal;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}
*/
@-webkit-keyframes hvr-icon-wobble-horizontal {
  16.65% {
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
  }
  33.3% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  49.95% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
  }
  66.6% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }
  83.25% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes hvr-icon-wobble-horizontal {
  16.65% {
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
  }
  33.3% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  49.95% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
  }
  66.6% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }
  83.25% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.c-btn01-link:before {
  background: url(../images/common/ic-link-black.svg) center no-repeat;
}
.c-btn01-link:hover:before {
  background: url(../images/common/ic-link-white.svg) center no-repeat;
}

.c-btn02 {
  color: #fff;
  width: 100%;
  font-size: 19px;
  padding: 18px;
  text-align: center;
  margin-top: 40px;
  border-radius: 34px;
  background-color: #6A6969;
  border: 1px solid #6A6969;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .c-btn02 {
    font-size: 1.3rem;
    padding: 9px;
    margin-top: 25px;
  }
}
.c-btn02:hover {
  color: #000;
  background-color: #fff !important;
}

/*------------------------------------------------------------
    c-list
------------------------------------------------------------*/
.c-list01 {
  margin: 50px 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-list01 li + li {
  border-left: 1px solid #A7C1D6;
}
@media screen and (max-width: 767px) {
  .c-list01 li + li {
    border-left: 0;
    border-top: 1px solid #A7C1D6;
  }
}
.c-list01 li a {
  width: 100%;
  color: #3B3B3E;
  font-size: 15px;
  text-align: center;
  padding: 12px 45px;
}
.c-list01 li a:hover, .c-list01 li a.is-active {
  color: #387AB2;
  font-weight: 700;
}

.c-list02 {
  color: #4A95ED;
  margin-top: 50px;
  display: -ms-grid;
  display: grid;
  gap: 26px;
  -ms-grid-columns: 1fr 26px 1fr 26px 1fr 26px 1fr;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 1000px) and (min-width: 768px) {
  .c-list02 {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .c-list02 {
    gap: 20px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.c-list02__item {
  color: #4A95ED;
  padding: 30px;
  text-align: center;
  border-radius: 8px;
  background-color: #fff;
  border: 1px solid #98C1F0;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}
.c-list02__label {
  font-size: 17px;
}
.c-list02__stats {
  position: relative;
}
.c-list02__stats .note {
  top: 16px;
  font-size: 14px;
  position: absolute;
}
.c-list02__stats .value {
  font-size: 37px;
}
.c-list02__stats .number {
  font-size: 60px;
  line-height: 1.3;
}
.c-list02__stats .unit {
  font-size: 27px;
}

.c-list03 {
  display: -ms-grid;
  display: grid;
  gap: 3%;
  margin-top: 50px;
  -ms-grid-columns: 1fr 3% 1fr 3% 1fr;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  .c-list03 {
    gap: 35px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.c-list03__item {
  border-radius: 5px;
  background-color: #fff;
  border: 1px solid #D5DFEB;
  -webkit-box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}
.c-list03__img {
  height: 18vw;
  max-height: 270px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .c-list03__img {
    height: auto;
  }
}
.c-list03__txt {
  padding: 20px 30px;
  padding: 5% 8% 13%;
}
@media screen and (max-width: 767px) {
  .c-list03__txt {
    padding: 30px;
  }
}
.c-list03__ttl {
  font-size: 23px;
  text-align: center;
  margin-bottom: 23px;
}
@media screen and (max-width: 767px) {
  .c-list03__ttl {
    font-size: 2rem;
  }
}

.c-list04 {
  display: -ms-grid;
  display: grid;
  gap: 30px;
}
.c-list04 dl {
  overflow: hidden;
  border-radius: 5px;
  border: 1px solid #98C1F0;
  -webkit-box-shadow: 0 8px 15px rgba(0, 0, 0, 0.16);
          box-shadow: 0 8px 15px rgba(0, 0, 0, 0.16);
}
.c-list04 dt {
  color: #387AB2;
  cursor: pointer;
  padding: 38px 40px 20px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .c-list04 dt {
    padding: 20px 30px 15px;
  }
}
.c-list04 dd {
  letter-spacing: 2px;
  padding: 20px 40px 40px;
  background-color: #F4F6F7;
  border-top: 1px solid #98C1F0;
}
@media screen and (max-width: 767px) {
  .c-list04 dd {
    padding: 15px 30px 30px;
  }
}
.c-list04__ttl {
  font-size: 18px;
}
/*------------------------------------------------------------
    c-table
------------------------------------------------------------*/
/*------------------------------------------------------------
	c-other
------------------------------------------------------------*/
.slick-arrow, .swiper-button-prev, .swiper-button-next {
  display: block;
  overflow: hidden;
  color: transparent;
  text-decoration: none;
  text-indent: 110%;
  white-space: nowrap;
  font-size: 0;
  position: absolute;
  top: 60%;
  width: 62px;
  height: 62px;
  padding: 0;
  line-height: 0;
  outline: none;
  cursor: pointer;
  z-index: 1;
  background-color: rgba(0, 84, 155, 0.54);
  background-color: #00549B;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 1000px) and (min-width: 768px) {
  .slick-arrow, .swiper-button-prev, .swiper-button-next {
    zoom: 75%;
  }
}
@media screen and (max-width: 767px) {
  .slick-arrow, .swiper-button-prev, .swiper-button-next {
    width: 33px;
    height: 33px;
	top: 77%;
  }
  .p-works .slick-arrow, .swiper-button-prev, .swiper-button-next {
	top: 90%;
  }
}

.slick-arrow:hover, .slick-arrow:focus, .swiper-button-prev:hover, .swiper-button-next:hover {
  opacity: 0.8;
}

.slick-arrow.slick-disabled:before {
  opacity: 0.25;
}

.slick-arrow::before, .swiper-button-prev:before, .swiper-button-next:before {
  display: block;
  content: "";
  top: 50%;
  position: absolute;
  width: 22px;
  height: 32px;
  background: url(../images/common/ic-arrow.svg) center no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .slick-arrow::before, .swiper-button-prev:before, .swiper-button-next:before {
    width: 11px;
    height: 16px;
  }
}

@media screen and (max-width: 767px) {
  .slick-prev, .swiper-button-prev {
    left: 0 !important;
  }
}
.slick-prev:before, .swiper-button-prev:before {
  left: 50%;
}

@media screen and (max-width: 767px) {
  .slick-next, .swiper-button-next {
    right: 0 !important;
  }
}
.slick-next:before, .swiper-button-next:before {
  left: 50%;
}

.slick-prev::before, .swiper-button-prev:before {
  -webkit-transform: translate(-50%, -50%) rotate(0);
          transform: translate(-50%, -50%) rotate(0);
}

.slick-next::before, .swiper-button-next:before {
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
          transform: translate(-50%, -50%) rotate(180deg);
}

.slick-dots {
  z-index: 2;
  left: 0;
  right: 0;
  bottom: -85px;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .slick-dots {
    bottom: -60px;
  }
}

.slick-dots li {
  width: 7px;
  height: 28px;
  position: relative;
  cursor: pointer;
  margin: 0 10px;
}
@media screen and (max-width: 767px) {
  .slick-dots li {
    width: 5px;
    height: 25px;
    margin: 0 7px;
  }
}

.slick-dots li button {
  width: 100%;
  height: 100%;
  border: 0;
  background: #4A95ED;
  display: block;
  outline: none;
  line-height: 0;
  color: transparent;
  cursor: pointer;
  position: relative;
  background-color: rgba(74, 149, 255, 0.43);
}

.slick-dots li button:hover {
  outline: none;
}

.slick-dots li button:hover {
  background-color: rgb(74, 149, 255);
}

.slick-dots li.slick-active button {
  background-color: rgb(74, 149, 255);
}

/* section-mainvisual
------------------------------------------------------------*/
.s-mainvisual {
  height: 375px;
  position: relative;
  background-image: url(../images/common/visual.jpg);
}

.p-philosophy .s-mainvisual,
.p-features .s-mainvisual,
.page-company .s-mainvisual,
.page-office .s-mainvisual,
.page-sdgs .s-mainvisual {
  background-image: url(../images/about/visual.jpg);
}

.page-maintenance .s-mainvisual,
.page-faq .s-mainvisual,
.page-service .s-mainvisual,
.page-necessity .s-mainvisual,
.page-benefits .s-mainvisual,
.page-guide .s-mainvisual,
.page-happens .s-mainvisual {
  background-image: url(../images/maintenance/visual.jpg);
}

.page-works .s-mainvisual {
  background-image: url(../images/works/visual.jpg);
}

.page-products .s-mainvisual {
  background-image: url(../images/products/visual.jpg);
}

.page-contact .s-mainvisual {
  background-image: url(../images/contact/visual.jpg);
}

.page-news .s-mainvisual {
  background-image: url(../images/news/visual.jpg);
}

@media screen and (max-width: 767px) {
  .s-mainvisual {
    height: 290px;
  }
}
.s-mainvisual:after {
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  position: absolute;
  background-color: #EDEFF4;
}
.s-mainvisual__inner {
  z-index: 1;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  position: relative;
  letter-spacing: 2px;
}
@media screen and (max-width: 767px) {
  .s-mainvisual__inner {
    letter-spacing: 1px;
  }
}
.s-mainvisual__ttl {
  font-size: 71px;
  line-height: 1;
  font-weight: 600;
  font-family: "circe", sans-serif;
}
@media screen and (max-width: 767px) {
  .s-mainvisual__ttl {
    font-size: 4.5rem;
  }
}
.s-mainvisual__desc {
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  .s-mainvisual__desc {
    font-size: 2rem;
  }
}
.s-mainvisual__door {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-top: 22px;
}
.s-mainvisual__door--logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  z-index: 0;
  background: linear-gradient(135deg, #2F7EFD 0%, #7B5EA7 55%, #56CCF2 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .s-mainvisual__door--logo img {
    width: 80px;
  }
}
.s-mainvisual__door--panel {
  width: 61px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: #fff;
  position: relative;
  z-index: 1;
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.76, 0, 0.24, 1);
  transition: -webkit-transform 0.8s cubic-bezier(0.76, 0, 0.24, 1);
  transition: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1);
  transition: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1), -webkit-transform 0.8s cubic-bezier(0.76, 0, 0.24, 1);
}
@media screen and (max-width: 767px) {
  .s-mainvisual__door--panel {
    width: 39px;
  }
}
.s-mainvisual__door--panel.is-left {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
.s-mainvisual__door--panel.is-right {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}
.s-mainvisual__door.open .s-mainvisual__door--panel {
  -webkit-transform: translateX(0) !important;
  transform: translateX(0) !important;
}

/* c-breadcrumb
------------------------------------------------------------*/
.c-breadcrumb {
  left: 15px;
  bottom: 15px;
  position: absolute;
  width: calc(50% - 140px);
}
@media screen and (max-width: 767px) {
  .c-breadcrumb {
    width: 100%;
    position: unset;
    padding: 5px 20px;
  }
}
.c-breadcrumb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  overflow-y: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.c-breadcrumb ul::-webkit-scrollbar {
  display: none;
}
.c-breadcrumb li {
  z-index: 1;
  font-size: 13px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.c-breadcrumb li a {
  color: #387AB2;
}
.c-breadcrumb li:before {
  content: "▶︎";
  font-size: 10px;
  margin: 0 10px;
}
.c-breadcrumb li:first-of-type:before {
  content: none;
}
.c-breadcrumb li:not(:last-of-type):before {
  color: #387AB2;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb li:first-child {
    position: sticky;
    left: 0;
    z-index: 2;
  }
}

.c-breadcrumb {
  overflow: hidden;
}

.c-breadcrumb ul {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.c-breadcrumb li {
  flex: 0 0 auto;
  min-width: 0;
}

.c-breadcrumb li:last-child {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* s-works
------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .s-works__inner {
    width: 87%;
    margin: 0 auto;
  }
}

.s-works__swiper {
  margin: 0 -10%;
}

@media screen and (max-width: 767px) {
  .s-works__swiper {
    margin: 0 !important;
  }
}

.s-works__swiper,
.s-works__swiper .swiper-wrapper,
.s-works__swiper .swiper-slide {
  height: auto;
}

.s-works__swiper .swiper-slide {
  -webkit-transform: scale(0.65);
          transform: scale(0.65);
  -webkit-transition: all 0.4s ease;
          transition: all 0.4s ease;
  will-change: transform;
}

.s-works__swiper .swiper-slide-active {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.s-works__swiper .swiper-button-prev {
  left: 31.3%;
  margin-top: -75px;
}

@media screen and (max-width: 767px) {
  .s-works__swiper .swiper-button-prev {
    margin-top: -98px;
  }
}

.s-works__swiper .swiper-button-next {
  right: 31.3%;
  margin-top: -75px;
}

@media screen and (max-width: 767px) {
  .s-works__swiper .swiper-button-next {
    margin-top: -98px;
  }
}

.s-works__swiper a {
  display: block;
}

@media screen and (min-width: 768px) {
  .s-works__swiper .swiper-slide > a {
    max-width: 780px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 767px) {
  .s-works__swiper .swiper-slide > a {
    max-width: none;
  }
}

.s-works__swiper--img {
  position: relative;
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.s-works__swiper--img::before {
  content: "";
  display: block;
  padding-top: 68%;
}

.s-works__swiper--ttl {
  font-size: 19px;
  text-align: center;
  margin-top: 26px;
}

@media screen and (max-width: 767px) {
  .s-works__swiper--ttl {
    margin-top: 15px;
  }
}

.s-works__swiper--tag {
  display: -ms-grid;
  display: grid;
  gap: 16px 20px;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .s-works__swiper--tag {
    gap: 15px;
    margin-top: 35px;
    -ms-grid-columns: 1fr 15px 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
}

.s-works__swiper--tag li {
  font-size: 11px;
  padding: 5px;
  text-align: center;
  border: 1px solid #707070;
}

.s-works__thumbs {
  margin-top: 40px;
}

.s-works__thumbs .swiper-wrapper {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.s-works__thumbs .swiper-slide {
  width: 140px !important;
  height: 95px;
  opacity: 0.6;
  cursor: pointer;
  border-radius: 3px;
  position: relative;
  -webkit-transition: all 0.4s ease;
          transition: all 0.4s ease;
}

@media screen and (max-width: 767px) {
  .s-works__thumbs .swiper-slide {
    width: 100px !important;
    height: 60px;
  }
}

.s-works__thumbs .swiper-slide:not(:last-child) {
  margin-right: 18px;
}

@media screen and (max-width: 767px) {
  .s-works__thumbs .swiper-slide:not(:last-child) {
    margin-right: 10px;
  }
}

.s-works__thumbs .swiper-slide-thumb-active {
  opacity: 1;
}

.s-works__more {
  position: relative;
  padding-top: 70px;
}

@media screen and (max-width: 767px) {
  .s-works__more {
    padding-top: 35px;
  }
}

.s-works__more:before {
  content: "";
  left: 0;
  right: 0;
  top: 35%;
  width: 60%;
  height: 1px;
  margin: 0 auto;
  position: absolute;
  background-color: #707070;
}

@media screen and (max-width: 767px) {
  .s-works__more:before {
    top: 30%;
    width: 100%;
  }
}

.s-works__list--link li.is-no-link {
  pointer-events: none;
}

.s-works__list--text-disabled {
  color: #999;
  cursor: default;
  pointer-events: none;
}

.p-works .s-works__list--link li a.s-works__list--text-disabled:before {
	opacity: 0.5;
}

/* s-contact
------------------------------------------------------------*/
.s-contact {
  background: url(../images/common/contact-bg.jpg);
}
.s-contact .c-title02__ttl-jp {
  color: #fff;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.s-contact__list {
  display: -ms-grid;
  display: grid;
  gap: 20px;
  -ms-grid-columns: 2fr 20px 1fr;
  grid-template-columns: 2fr 1fr;
}
@media screen and (max-width: 767px) {
  .s-contact__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.s-contact__list--box {
  overflow: hidden;
  border-radius: 5px;
  background-color: #fff;
}
.s-contact__list--box:nth-child(1) {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .s-contact__list--box:nth-child(1) {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.s-contact__list--box:nth-child(1) .s-contact__list--item {
  border-left: 1px solid #B7B7B7;
}
@media screen and (max-width: 767px) {
  .s-contact__list--box:nth-child(1) .s-contact__list--item {
    border-left: 0;
    border-top: 1px solid #B7B7B7;
  }
}
.s-contact__list--item {
  padding: 9% 10% 12%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .s-contact__list--item {
    min-height: 220px;
    padding: 30px;
  }
}
.s-contact__list--ttl {
  font-size: 26px;
}
@media screen and (max-width: 767px) {
  .s-contact__list--ttl {
    font-size: 2.4rem;
  }
}
.s-contact__list--label {
  font-size: 14px;
  margin-top: 30px;
  padding: 4px 30px;
  border-radius: 8px;
  background-color: #F8F8F8;
  border: 1px solid #B9B9B9;
}
.s-contact__list--tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 29px;
  line-height: 1;
  margin-top: 30px;
  letter-spacing: 5px;
  font-family: "Circe", sans-serif;
}
@media screen and (max-width: 1300px) and (min-width: 768px) {
  .s-contact__list--tel {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .s-contact__list--tel img {
    margin: 0 0 10px !important;
  }
}
@media screen and (max-width: 767px) {
  .s-contact__list--tel {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.s-contact__list--tel img {
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .s-contact__list--tel img {
    margin: 0 0 10px;
  }
}
.s-contact__list--desc {
  margin-top: 30px;
}
.s-contact__list--note {
  font-size: 19px;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .s-contact__list--note {
    font-size: 1.7rem;
  }
}

/* s-faq
------------------------------------------------------------*/
.s-faq__list {
  display: -ms-grid;
  display: grid;
  gap: 30px;
}
.s-faq__list dl {
  overflow: hidden;
  border-radius: 5px;
  border: 1px solid #98C1F0;
  -webkit-box-shadow: 0 8px 15px rgba(0, 0, 0, 0.16);
          box-shadow: 0 8px 15px rgba(0, 0, 0, 0.16);
}
.s-faq__list--box {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-columns: 80px calc(100% - 80px - 35px) 30px;
  grid-template-columns: 80px calc(100% - 80px - 35px) 30px;
}
@media screen and (max-width: 767px) {
  .s-faq__list--box {
    -ms-grid-columns: 60px calc(100% - 60px - 30px) 25px;
    grid-template-columns: 60px calc(100% - 60px - 30px) 25px;
  }
}
.s-faq__list dt {
  color: #387AB2;
  cursor: pointer;
  padding: 18px 25px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .s-faq__list dt {
    padding: 15px;
  }
}
.s-faq__list dt.is-open .s-faq__list--menu:after {
  opacity: 0;
}
.s-faq__list dt:hover {
  background-color: #F4F6F7;
}
.s-faq__list dd {
  display: none;
  padding: 30px 25px;
  background-color: #F4F6F7;
  border-top: 1px solid #98C1F0;
}
@media screen and (max-width: 767px) {
  .s-faq__list dd {
    padding: 20px 15px;
  }
}
.s-faq__list--menu {
  width: 30px;
  height: 30px;
  margin-left: 5px;
  position: relative;
  border-radius: 50%;
  background-color: #5F8FB9;
}
@media screen and (max-width: 767px) {
  .s-faq__list--menu {
    width: 25px;
    height: 25px;
  }
}
.s-faq__list--menu:before, .s-faq__list--menu:after {
  content: "";
  top: 50%;
  left: 50%;
  position: absolute;
  margin: 0 auto;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 3px;
  background-color: #fff;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.s-faq__list--menu:before {
  width: 20px;
  height: 3px;
}
@media screen and (max-width: 767px) {
  .s-faq__list--menu:before {
    width: 15px;
    height: 1.5px;
  }
}
.s-faq__list--menu:after {
  width: 3px;
  height: 20px;
}
@media screen and (max-width: 767px) {
  .s-faq__list--menu:after {
    width: 1.5px;
    height: 15px;
  }
}
.s-faq__list--num {
  font-size: 35px;
  font-family: "Circe", sans-serif;
}
@media screen and (max-width: 767px) {
  .s-faq__list--num {
    font-size: 3rem;
  }
}
.s-faq__list--ttl {
  font-size: 18px;
}
.s-faq__note {
  padding: 30px;
  border-radius: 5px;
  letter-spacing: 0.8px;
  background-color: #FFF7FC;
  border: 1px solid #D5DFEB;
}
@media screen and (max-width: 767px) {
  .s-faq__note {
    padding: 20px;
  }
}

/* s-trouble
------------------------------------------------------------*/
.s-trouble__doors {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid #D5DFEB;
  -webkit-box-shadow: 0 8px 15px rgba(0, 0, 0, 0.16);
          box-shadow: 0 8px 15px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 767px) {
  .s-trouble__doors {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.s-trouble__doors--img, .s-trouble__doors--txt {
  padding: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.s-trouble__doors--img {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .s-trouble__doors--img {
    padding: 20px;
  }
}
.s-trouble__doors--txt {
  background-color: #F4F6F7;
  border-left: 1px solid #D5DFEB;
}
@media screen and (max-width: 767px) {
  .s-trouble__doors--txt {
    padding: 30px 30px 40px;
  }
}
.s-trouble__doors--ttl {
  font-size: 19px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}
.s-trouble__doors--desc {
  max-width: 505px;
  margin: 0 auto;
  line-height: 1.8;
  text-align: left;
}

/*------------------------------------------------------------
p-top
------------------------------------------------------------*/
/* トップキービジュアル：初回フェード表示 */
.s-visual {
  position: relative;
  background-color: #0B437E;
}

.s-visual__inner {
  opacity: 0;
  transition: opacity 1.2s ease;
}

.s-visual.is-show .s-visual__inner {
  opacity: 1;
}


.page-top .l-header__logo {
  margin-left: 2%;
}
.page-top .l-header__gnavi-list a {
  color: #fff;
}
.page-top .l-header.is-scroll .l-header__gnavi-list a {
  color: #000;
}

.s-visual, .s-visual__item {
  height: 95vh;
  min-height: 1000px;
}
@media screen and (max-width: 767px) {
  .s-visual, .s-visual__item {
    height: 88vh;
    min-height: 600px;
  }
}

.s-visual {
  position: relative;
}

.s-visual__main .slick-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 6%;
  margin-top: 73px;
}
@media screen and (max-width: 767px) {
  .s-visual__main .slick-button {
    margin-top: 36px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.s-visual__main .slick-button .slick-arrow {
  left: 0;
  position: relative;
  -webkit-transform: none;
          transform: none;
}
.s-visual__main .slick-button .slick-next {
  margin-left: 4px;
}
@media screen and (max-width: 767px) {
  .s-visual__main .slick-button .slick-next {
    margin-left: 0;
  }
}
.s-visual__item {
  position: relative;
  background-color: rgba(166, 173, 178, 0.79);
  background-blend-mode: multiply;
  -webkit-transition: opacity 0.8s ease;
  transition: opacity 0.8s ease;
}
.s-visual__item.slick-active {
  background-color: rgba(137, 170, 190, 0.79);
}
.s-visual__txt {
  top: 50%;
  left: 0;
  right: 0;
  z-index: 1;
  color: #fff;
  position: absolute;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
@media screen and (max-width: 767px) {
  .s-visual__txt {
    top: 43%;
  }
}
.s-visual__txt--ttl {
  font-size: 60px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: 2px;
}
@media screen and (max-width: 767px) {
  .s-visual__txt--ttl {
    font-size: 3.3rem;
  }
}
.s-visual__txt--desc {
  margin-top: 35px;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .s-visual__txt--desc {
    margin-top: 10px;
  }
}
.s-visual__txt--desc h3 {
  font-size: 28px;
  letter-spacing: 1px;
}
@media screen and (max-width: 767px) {
  .s-visual__txt--desc h3 {
    font-size: 2.5rem;
  }
}
.s-visual__txt--note {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 12px;
}
@media screen and (max-width: 767px) {
  .s-visual__txt--note {
    display: inline-block;
  }
}
.s-visual__txt--note p {
  font-size: 20px;
  margin-right: 30px;
  padding-right: 30px;
  border-right: 2px solid #fff;
}
@media screen and (max-width: 767px) {
  .s-visual__txt--note p {
    font-size: 1.6rem;
    padding-right: 20px;
    margin-right: 0;
  }
}
.s-visual__txt--note a {
  color: #fff;
  font-size: 17px;
  padding-left: 30px;
  background: url(../images/common/ic-right-white.svg) left center no-repeat;
}
@media screen and (max-width: 767px) {
  .s-visual__txt--note a {
    margin-top: 15px;
  }
}
.s-visual__thumb {
  z-index: 1;
  bottom: 115px;
}
@media screen and (max-width: 767px) {
  .s-visual__thumb {
    display: none;
  }
}
.s-visual__thumb .slick-track {
  width: 100% !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.s-visual__thumb--pic {
  width: 30% !important;
  height: 220px;
  cursor: pointer;
  text-align: center;
  position: relative;
  border-radius: 5px;
  background-blend-mode: multiply;
  background-color: rgba(27, 52, 67, 0.7);
  -webkit-transition: background-color 0.4s ease, opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: background-color 0.4s ease, opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: background-color 0.4s ease, transform 0.4s ease, opacity 0.4s ease;
  transition: background-color 0.4s ease, transform 0.4s ease, opacity 0.4s ease, -webkit-transform 0.4s ease;
  will-change: transform, background-color;
}
@media screen and (max-width: 767px) {
  .s-visual__thumb--pic {
    width: calc((100% - 50px) / 3) !important;
    height: 100px;
  }
}
.s-visual__thumb--pic:not(:last-child) {
  margin-right: 5%;
}
@media screen and (max-width: 767px) {
  .s-visual__thumb--pic:not(:last-child) {
    margin-right: 10px;
  }
}
.s-visual__thumb--pic:before {
  content: "";
  width: 1px;
  height: 132px;
  top: 0;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.48);
  -webkit-transition: background-color 0.4s ease;
  transition: background-color 0.4s ease;
}
.s-visual__thumb--pic.is-active {
  background-color: rgba(137, 170, 190, 0.5);
}
.s-visual__thumb--pic.is-active:before {
  background-color: #fff;
}
.s-visual__thumb--pic.is-active h3 {
  color: #fff;
}
.s-visual__thumb--label {
  color: rgba(255, 255, 255, 0.59);
  font-size: 20px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 33px;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}
.s-visual__news {
  padding: 6px 20px;
  border-radius: 5px;
  background-color: #fff;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16%;
}
@media screen and (max-width: 767px) {
  .s-visual__news {
    bottom: 30px;
    padding: 6px 20px 16px;
  }
}
.s-visual__news--box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .s-visual__news--box:nth-child(2) {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 10px;
  }
}
.s-visual__news--ttl {
  color: #4A95ED;
  font-size: 23px;
  margin-right: 20px;
  font-family: "Circe", sans-serif;
}
.s-visual__news--cat {
  color: #3C3C3C;
  font-size: 14px;
  text-align: center;
  margin-right: 12px;
  padding: 2px 20px;
  min-width: 130px;
  border-radius: 14px;
  border: 1px solid #707070;
}
.s-visual__news--date, .s-visual__news--desc {
  font-size: 17px;
}
.s-visual__news--desc {
  margin-left: 15px;
}

/* 20260530 追加 トップページ TOPICS Ticker */
.s-visual__news--ticker-wrap {
	position: relative;
	flex: 1;
	height: 30px;
	overflow: hidden;
}

.topics-ticker {
	position: relative;
	width: 100%;
	height: 30px;
	overflow: hidden;
}

.topics-ticker__item {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 30px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(0);
	transition: opacity 0.7s ease, visibility 0.7s ease;
	pointer-events: none;
}

.topics-ticker__item.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

@media screen and (max-width: 767px) {
  .s-visual__news--ticker-wrap {
    overflow: hidden;
  }

  .topics-ticker__item.is-active {
    overflow: hidden;
  }

  .topics-ticker__item.is-active .s-visual__news--item {
    display: flex;
    align-items: center;
    width: max-content;
    min-width: 100%;
    white-space: nowrap;
    animation: topicsTextMarquee 14s linear infinite;
  }

  .topics-ticker__item.is-active .s-visual__news--desc {
    white-space: nowrap;
  }
}

@keyframes topicsTextMarquee {
  0% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-45%);
  }
}

.s-visual__news--item {
	display: flex;
	align-items: center;
	gap: 24px;
	width: 100%;
	height: 33px;
	color: inherit;
	text-decoration: none;
}

.s-visual__news--item:hover {
	opacity: 0.7;
}

.s-visual__news--date {
	flex: 0 0 auto;
	line-height: 1;
}

.s-visual__news--item .s-visual__news--desc {
	margin: 0;
	line-height: 1.4;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.s-visual__news--type {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 120px;
	height: 28px;
	padding: 0 18px;
	border: 1px solid #222;
	border-radius: 999px;
	font-size: 13px;
	line-height: 1;
	color: #222;
	background: #fff;
	flex: 0 0 auto;
}

.s-visual__news--type.is-news-type-important {
	border-color: #CE6666;
	color: #CE6666;
}

.s-visual__news--type.is-news-type-news {
	border-color: #7982C9;
	color: #7982C9;
}
/* --------------- */

.p-top .s-intro {
  padding: 180px 0 80px;
  background: url(../images/top/intro-bg.jpg);
}
@media screen and (max-width: 767px) {
  .p-top .s-intro {
    padding: 60px 0;
    background: url(../images/top/intro-bg_sp.jpg);
  }
}
.p-top .s-intro__slider {
  -webkit-box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}
.p-top .s-intro__slider .slick-prev {
  left: -6%;
}
.p-top .s-intro__slider .slick-next {
  right: -6%;
}
@media screen and (max-width: 1450px) {
  .p-top .s-intro__slider .slick-prev {
    left: 0;
  }
  .p-top .s-intro__slider .slick-next {
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-top .s-intro__slider .slick-arrow {
    top: 140px;
  }
}
.p-top .s-intro__box {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  border-radius: 5px;
  overflow: hidden;
  background-color: #0B437E;
}
@media screen and (max-width: 767px) {
  .p-top .s-intro__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-top .s-intro__box--left, .p-top .s-intro__box--right {
  width: 50%;
  padding: 4% 5%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-top .s-intro__box--left, .p-top .s-intro__box--right {
    width: 100%;
    padding: 30px;
  }
}
.p-top .s-intro__box--left {
  width: 45%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-top .s-intro__box--left {
    width: 100%;
    min-height: 275px;
  }
  .p-top .s-intro__box--left img {
    width: 122px;
  }
}
.p-top .s-intro__box--left h3 {
  font-size: 26px;
  margin-top: 32px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top .s-intro__box--left h3 {
    font-size: 2rem;
    margin-top: 16px;
  }
}
.p-top .s-intro__box--left:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -120px;
  width: 120px;
  height: 100%;
  z-index: 1;
  background: #fff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media screen and (max-width: 1350px) and (min-width: 767px) {
  .p-top .s-intro__box--left:after {
    right: -7.9vw;
    width: 8vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top .s-intro__box--left:after {
    width: 100%;
    height: 80px;
    right: 0;
    bottom: -79px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }
}
.p-top .s-intro__box--right {
  width: 55%;
  color: #fff;
  padding-left: 13%;
  background-color: #0B437E;
}
@media screen and (max-width: 767px) {
  .p-top .s-intro__box--right {
    width: 100%;
    padding: 130px 30px 50px;
  }
}
.p-top .s-intro__box--right h3 {
  font-size: 21px;
}
@media screen and (max-width: 767px) {
  .p-top .s-intro__box--right h3 {
    font-size: 2.3rem;
    text-indent: -25px;
    padding-left: 20px;
  }
}
.p-top .s-intro__box--right p {
  margin-top: 23px;
}
@media screen and (max-width: 767px) {
  .p-top .s-intro__box--right p {
    margin-top: 12px;
  }
  .p-top .s-intro__box--right p + p {
    padding-top: 15px;
  }
}

.p-top .update_area {
	text-align: right;
	font-size: 14px;
	margin: 20px 0 -20px 0;
}
.p-top .s-maintain {
  background: url(../images/top/maintain-bg.jpg);
}
@media screen and (max-width: 767px) {
  .p-top .s-maintain {
    background: url(../images/top/maintain-bg_sp.jpg);
  }
}
.p-top .s-maintain__text {
  width: 35%;
  z-index: 1;
  color: #fff;
  margin-right: 5%;
}
@media screen and (max-width: 767px) {
  .p-top .s-maintain__text {
    width: 100%;
    text-align: center;
    margin: 0 0 40px;
  }
}
.p-top .s-maintain__text .c-title01 {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-top .s-maintain__text .c-title01 {
    text-align: center;
  }
}
.p-top .s-maintain__text .c-title01 h2 {
  letter-spacing: 3px;
}
.p-top .s-maintain__text .c-title01 p {
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .p-top .s-maintain__text .c-title01 p {
    margin-top: 2px;
  }
}
.p-top .s-maintain__text--time {
  font-size: 50px;
  letter-spacing: 2px;
}
@media screen and (max-width: 767px) {
  .p-top .s-maintain__text--time {
    font-size: 4.4rem;
    line-height: 1;
  }
}
.p-top .s-maintain__text--time span {
  font-size: 60px;
}
@media screen and (max-width: 767px) {
  .p-top .s-maintain__text--time span {
    font-size: 5.3rem;
  }
}
.p-top .s-maintain__text--desc {
  font-size: 26px;
  margin: 40px 0 22px;
}
@media screen and (max-width: 767px) {
  .p-top .s-maintain__text--desc {
    font-size: 2.1rem;
    margin: 30px 0 20px;
  }
}
.p-top .s-maintain__box {
  width: 29%;
  text-align: center;
  border-radius: 5px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top .s-maintain__box {
    width: 100%;
  }
}
.p-top .s-maintain__box + .s-maintain__box {
  margin-left: 3%;
}
@media screen and (max-width: 767px) {
  .p-top .s-maintain__box + .s-maintain__box {
    margin: 16px 0 0;
  }
}
.p-top .s-maintain__box--img {
  height: 275px;
  background-blend-mode: multiply;
  background-color: rgba(79, 108, 126, 0.97);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-top .s-maintain__box--img {
    height: 165px;
  }
  .p-top .s-maintain__box--img img {
    width: 82px;
  }
}
.p-top .s-maintain__box--txt {
  padding: 10% 10% 12%;
  padding: 35px 35px 40px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-top .s-maintain__box--txt {
    padding: 30px 40px 40px;
  }
}
.p-top .s-maintain__box--ttl {
  font-size: 19px;
  letter-spacing: 1px;
}
@media screen and (max-width: 767px) {
  .p-top .s-maintain__box--ttl {
    font-size: 1.7rem;
  }
}
.p-top .s-maintain__box--desc {
  text-align: left;
  margin-top: 38px;
}
.p-top .s-maintain__box .c-btn01 {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-top .s-maintain__box .c-btn01 {
    font-size: 1.3rem;
  }
}
.p-top .s-products {
  background: url(../images/top/products-bg.jpg);
}
@media screen and (max-width: 767px) {
  .p-top .s-products {
    background: url(../images/top/products-bg_sp.jpg);
  }
}
.p-top .s-products__list {
  display: -ms-grid;
  display: grid;
  gap: 30px;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  .p-top .s-products__list {
    gap: 10px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.p-top .s-products__list--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 5px;
  overflow: hidden;
  background-color: #fff;
}
.p-top .s-products__list--item.item01 .s-products__list--img {
  background-image: url(../images/top/products-img01.jpg);
}
.p-top .s-products__list--item.item02 .s-products__list--img {
  background-image: url(../images/top/products-img02.jpg);
}
.p-top .s-products__list--item.item03 .s-products__list--img {
  background-image: url(../images/top/products-img03.jpg);
}
.p-top .s-products__list--img {
  height: 135px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(81, 122, 188, 0.77);
  background-blend-mode: multiply;
}
.p-top .s-products__list--ttl {
  color: #fff;
  font-size: 20px;
  text-align: center;
  letter-spacing: 1.7px;
  margin-bottom: 33px;
}
@media screen and (max-width: 767px) {
  .p-top .s-products__list--ttl {
    font-size: 1.9rem;
  }
}
.p-top .s-products__list--icon {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  gap: 26px;
  padding: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
.p-top .s-news__marquee {
  color: #E5EEF8;
  font-size: 248px;
  line-height: 1;
  margin-top: -50px;
  white-space: nowrap;
  overflow: hidden;
  font-family: "Barlow Condensed", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-top .s-news__marquee {
    font-size: 160px;
    margin-top: -32px;
  }
}
.p-top .s-news__marquee span {
  display: inline-block;
  -webkit-animation: loopTextToRight 45s infinite linear;
          animation: loopTextToRight 45s infinite linear;
}
.p-top .s-news__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-top .s-news__img {
  margin-left: 4%;
  min-height: 250px;
  border-radius: 5px;
  background: url(../images/top/news-banner.jpg);
}
.p-top .s-news .c-title01 {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-top .s-news .c-title01 {
    text-align: center;
  }
}
.p-top .s-news__list li:first-child a {
  padding-top: 0;
}
.p-top .s-news__list a {
  color: #606060;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid #828AA3;
}
.p-top .s-news__list--date {
  margin-right: 6%;
}
.p-top .s-news__list--desc {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.p-top .s-company {
  color: #fff;
  background: url(../images/top/company-bg.jpg);
}
@media screen and (max-width: 767px) {
  .p-top .s-company {
    background: url(../images/top/company-bg_sp.jpg);
  }
}
.p-top .s-company__ttl {
  font-size: 26px;
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .p-top .s-company__ttl {
    font-size: 1.9rem;
    margin-bottom: 40px;
  }
}
.p-top .s-company__list {
  display: -ms-grid;
  display: grid;
  gap: 2.3%;
  -ms-grid-columns: 1fr 2.3% 1fr 2.3% 1fr 2.3% 1fr 2.3% 1fr;
  grid-template-columns: repeat(5, 1fr);
}
@media screen and (max-width: 767px) {
  .p-top .s-company__list {
    gap: 6px;
    -ms-grid-columns: 1fr 6px 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-top .s-company__list li {
  border-radius: 5px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-top .s-company__list li {
    border-radius: 10px;
  }
}
.p-top .s-company__list a {
  width: 100%;
  height: 100%;
  padding: 10% 10% 13%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-top .s-company__list a {
    padding: 20px 20px 30px;
  }
  .p-top .s-company__list a img {
    max-height: 136px;
  }
}
.p-top .s-company .c-btn01 {
  background-color: #fff;
}


.s-news__inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 30px;
}

.s-news__txt {
	width: calc(100% - 606px - 30px);
}

.s-news__bnr {
	display: grid;
	grid-template-columns: repeat(3, 190px);
	gap: 18px;
	width: 606px;
	flex-shrink: 0;
}

.s-news__bnr--item {
	display: block;
	width: 190px;
}

.s-news__bnr--item img {
	display: block;
	width: 100%;
	height: auto;
}

@media screen and (max-width: 767px) {
	.s-news__inner {
		display: block !important;
	}

	.s-news__txt {
		display: block !important;
		width: 100% !important;
		float: none !important;
	}

	.s-news__bnr {
		display: grid !important;
		grid-template-columns: repeat(3, 1fr) !important;
		gap: 8px !important;
		width: 100% !important;
		max-width: none !important;
		height: auto !important;
		min-height: 1px !important;
		margin-top: 30px !important;
		float: none !important;
		opacity: 1 !important;
		visibility: visible !important;
		overflow: visible !important;
	}

	.s-news__bnr--item {
		display: block !important;
		width: 100% !important;
		height: auto !important;
		opacity: 1 !important;
		visibility: visible !important;
	}

	.s-news__bnr--item img {
		display: block !important;
		width: 100% !important;
		height: auto !important;
		opacity: 1 !important;
		visibility: visible !important;
	}
}



/*------------------------------------------------------------
p-works
------------------------------------------------------------*/
.p-works .s-works {
  background: url(../images/works/works-bg.jpg);
  background-position: center top !important;
}
.p-works .s-works__list {
  margin-top: 80px;
  display: -ms-grid;
  display: grid;
  gap: 40px;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  .p-works .s-works__list {
    width: 100%;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
	margin-top: 50px;
  }
}
.p-works .s-works__list--item {
  overflow: hidden;
  border-radius: 5px;
  background-color: #fff;
  -webkit-box-shadow: 0 8px 15px rgba(0, 0, 0, 0.16);
          box-shadow: 0 8px 15px rgba(0, 0, 0, 0.16);
}
.p-works .s-works__list--img {
  height: 274px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-works .s-works__list--tag {
  font-size: 21px;
  padding: 7px;
  width: 87%;
  max-width: 250px;
  text-align: center;
  margin: 0 auto 20px;
  border-radius: 5px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-works .s-works__list--tag {
    font-size: 1.9rem;
    padding: 6px;
    max-width: 220px;
  }
}
.p-works .s-works__list--txt {
  padding: 6% 7%;
}
@media screen and (max-width: 767px) {
  .p-works .s-works__list--txt {
    padding: 16px 30px;
  }
}
.p-works .s-works__list--link li + li {
  border-top: 1px solid #C7C7C7;
}
.p-works .s-works__list--link li a {
  padding: 8px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
/*.p-works .s-works__list--link li a:before {
  content: "";
  min-width: 18px;
  height: 18px;
  display: inline-block;
  margin-right: 10px;
  background: url(../images/common/ic-right-black.svg) center no-repeat;
  -webkit-transition: background 0.4s ease, -webkit-transform 0.4s ease;
  transition: background 0.4s ease, -webkit-transform 0.4s ease;
  transition: transform 0.4s ease, background 0.4s ease;
  transition: transform 0.4s ease, background 0.4s ease, -webkit-transform 0.4s ease;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}*/
.p-works .s-works__list--link li a:before {
  content: "";
  min-width: 18px;
  height: 18px;
  display: inline-block;
  margin-right: 15px;
  background: url(../images/common/ic-right-black.svg) center no-repeat;
  -webkit-transition: background 0.4s ease, -webkit-transform 0.4s ease;
  transition: background 0.4s ease, -webkit-transform 0.4s ease;
  transition: transform 0.4s ease, background 0.4s ease;
  transition: transform 0.4s ease, background 0.4s ease, -webkit-transform 0.4s ease;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.p-works .s-works__list--link li a:hover:before {
  -webkit-transform: translateX(6px);
          transform: translateX(6px);
}
.p-works .s-works__list--link li a:hover {
  color: #1A86E2;
}
/*.p-works .s-works__list--link li a:hover:before {
  -webkit-animation-name: hvr-icon-wobble-horizontal;
          animation-name: hvr-icon-wobble-horizontal;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}*/

.p-single .c-label {
  font-size: 18px;
  text-align: center;
  padding: 10px;
  margin-bottom: 40px;
  border-radius: 5px;
  background-color: #DFE6ED;
}
.p-single .s-works__swiper {
  margin: 0 -40%;
}

.p-single .s-works__swiper .swiper-slide > div,
.p-single .s-works__swiper .swiper-slide > a {
  max-width: 780px;
  margin: 0 auto;
}

.p-single .s-works__swiper--img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .p-single .s-works__swiper {
    margin: 0;
  }

  .p-single .s-works__swiper .swiper-slide > div,
  .p-single .s-works__swiper .swiper-slide > a {
    max-width: none;
  }
}

.p-single .s-descript {
  margin-top: -288px;
  padding-top: 190px;
  background-image: url(../images/works/descript-bg.jpg);
}
@media screen and (max-width: 767px) {
  .p-single .s-descript {
    margin-top: -230px;
  }
}
.p-single .s-descript__box {
  padding: 3% 5%;
  border-radius: 5px;
  background-color: #fff;
  border: 1px solid #D5DFEB;
}
@media screen and (max-width: 767px) {
  .p-single .s-descript__box {
    padding: 30px;
  }
}
.p-single .s-descript__box--ttl {
  font-size: 21px;
  text-align: center;
  margin-bottom: 28px;
}
.p-single .s-descript__box--txt {
  line-height: 1.8;
}
.p-single .s-descript__box--tbl {
  margin-top: 40px;
}
.p-single .s-descript__box--tbl tr:not(:last-child) {
  border-bottom: 1px solid #B7B7B7;
}
.p-single .s-descript__box--tbl th {
  min-width: 136px;
  background-color: #F2F6FA;
}
.p-single .s-descript__box--tbl th, .p-single .s-descript__box--tbl td {
  padding: 12px 28px;
  text-align: left;
  line-height: 1.8;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .p-single .s-descript__box--tbl th, .p-single .s-descript__box--tbl td {
    display: block;
    padding: 10px 20px !important;
  }
}
.p-single .s-descript__box--tbl td {
  padding-left: 4%;
}
.p-single .s-products {
  background-color: #ECF1F7;
}
.p-single .s-products__list {
  display: -ms-grid;
  display: grid;
  gap: 26px;
  -ms-grid-columns: 1fr 26px 1fr 26px 1fr 26px 1fr 26px 1fr;
  grid-template-columns: repeat(5, 1fr);
}
@media screen and (max-width: 1300px) {
  .p-single .s-products__list {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 1000px) {
  .p-single .s-products__list {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .p-single .s-products__list {
    gap: 15px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.p-single .s-products__list--item {
  padding: 25px;
  text-align: center;
  border-radius: 5px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-single .s-products__list--item {
    padding: 20px;
  }
}
.p-single .s-products__list--img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 60px;
}
.p-single .s-products__list--ttl {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-single .s-products__list--ttl {
    margin-top: 20px;
  }
}
.p-single .s-other__list {
  display: -ms-grid;
  display: grid;
  gap: 26px;
  -ms-grid-columns: 1fr 26px 1fr 26px 1fr 26px 1fr;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 1000px) {
  .p-single .s-other__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .p-single .s-other__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.p-single .s-other__list a {
  display: block;
}
.p-single .s-other__list--item {
  text-align: center;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .p-single .s-other__list--item + .s-other__list--item {
    margin-top: 10px;
  }
}
.p-single .s-other__list--img {
  height: 210px;
  border-radius: 5px;
}
.p-single .s-other__list--ttl {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-single .s-other__list--ttl {
    margin-top: 10px;
  }
}


/*追加*/
/* single-works 関連商品：製品一覧ページに合わせる */
.p-single .s-products__list--single {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.p-single .s-products__list--single .s-products__list--item {
  width: calc((100% - 128px) / 5);
  height: 241px;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
}

.p-single .s-products__list--single .s-products__list--item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  /*padding: 26px 16px 22px;*/
  text-align: center;
}

.p-single .s-products__list--single .s-products__list--img {
  width: 100%;
  height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.p-single .s-products__list--single .s-products__list--img img {
  width: 100%;
  max-width: 170px;
  max-height: 120px;
  height: auto;
  object-fit: contain;
}

.p-single .s-products__list--single .s-products__list--ttl {
  width: 100%;
  margin-top: 18px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.3;
  color: #111;
  text-align: center;
}

/* hover */
.p-single .s-products__list--single .s-products__list--item a:hover {
  opacity: 0.75;
}

/* tablet */
@media screen and (max-width: 1024px) {
  .p-single .s-products__list--single {
    gap: 28px;
  }

  .p-single .s-products__list--single .s-products__list--item {
    width: calc((100% - 56px) / 3);
  }
}

/* sp */
@media screen and (max-width: 767px) {
  .p-single .s-products__list--single {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 32px;
  }

  .p-single .s-products__list--single .s-products__list--item {
    width: auto !important;
    height: 210px;
    margin: 0 !important;
  }

  .p-single .s-products__list--single .s-products__list--item a {
    /*padding: 22px 12px 18px;*/
  }

  .p-single .s-products__list--single .s-products__list--img {
    height: 110px;
    flex-shrink: 0;
  }

  .p-single .s-products__list--single .s-products__list--img img {
    max-width: 140px;
    max-height: 100px;
  }

  .p-single .s-products__list--single .s-products__list--ttl {
    margin-top: 14px;
    font-size: 1.4rem;
  }
}
/*------------------------------------------------------------
p-contact
------------------------------------------------------------*/
.p-contact .s-detail__frame {
  gap: 20px;
  margin-bottom: 20px;
}
.p-contact .s-detail__box {
  padding: 6% 4%;
  text-align: center;
  border-radius: 5px;
  border: 1px solid #D5DFEB;
  -webkit-box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .p-contact .s-detail__box {
    padding: 30px;
  }
}
.p-contact .s-detail__box--ttl {
  font-size: 30px;
}
@media screen and (max-width: 767px) {
  .p-contact .s-detail__box--ttl {
    font-size: 2.7rem;
  }
}
.p-contact .s-detail__box--desc {
  line-height: 2;
  margin: 30px 0;
}
@media screen and (max-width: 767px) {
  .p-contact .s-detail__box--desc {
    margin: 20px 0;
  }
}
.p-contact .s-detail__box .c-btn02 {
  max-width: 378px;
}
@media screen and (max-width: 767px) {
  .p-contact .s-detail__box .c-btn02 {
    max-width: 270px;
  }
}
.p-contact .s-detail__box.u-df-right .c-btn02 {
  border: 1px solid #387AB2;
  background-color: #387AB2;
}
.p-contact .s-detail__box--side {
  padding: 10px 0;
}
@media screen and (max-width: 767px) {
  .p-contact .s-detail__box--side {
    padding: 0;
  }
}
.p-contact .s-detail__box--side.u-df-right {
  border-left: 1px solid #B7B7B7;
}
@media screen and (max-width: 767px) {
  .p-contact .s-detail__box--side.u-df-right {
    border-left: 0;
    border-top: 1px solid #B7B7B7;
  }
  .p-contact .s-detail__box--side.u-df-right.s-detail__box--side {
    margin-top: 20px;
    padding-top: 20px;
  }
  .p-contact .s-detail__box--side.u-df-right .s-detail__box--note {
    display: none;
  }
  .p-contact .s-detail__box--side.u-df-right .s-detail__box--phone img {
    width: 23px;
  }
}
.p-contact .s-detail__box--label {
  padding: 8px 10px;
  font-size: 30px;
  max-width: 765px;
  text-align: center;
  margin: 0 auto 30px;
  border-radius: 8px;
  border: 1px solid #707070;
  background-color: #F8F8F8;
}
@media screen and (max-width: 767px) {
  .p-contact .s-detail__box--label {
    font-size: 2.5rem;
  }
}
.p-contact .s-detail__box--note {
  padding: 5px 36px;
  font-size: 19px;
  text-align: center;
  margin-bottom: 5px;
  border-radius: 5px;
  display: inline-block;
  border: 1px solid #707070;
  background-color: #F8F8F8;
}
@media screen and (max-width: 767px) {
  .p-contact .s-detail__box--note {
    font-size: 1.7rem;
    padding: 5px 26px;
  }
}
.p-contact .s-detail__box--phone {
  font-size: 40px;
  margin-top: 20px;
  position: relative;
  letter-spacing: 7px;
  font-family: "Circe", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1020px) and (min-width: 768px) {
  .p-contact .s-detail__box--phone {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-contact .s-detail__box--phone img {
    margin-right: 0 !important;
    min-height: 65px;
  }
}
@media screen and (max-width: 767px) {
  .p-contact .s-detail__box--phone {
    font-size: 3rem;
    letter-spacing: 2px;
  }
}
.p-contact .s-detail__box--phone img {
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .p-contact .s-detail__box--phone img {
    width: 35px;
    margin-right: 10px;
  }
}
.p-contact .s-detail__box--phone.blue {
  color: #2F92D8;
}
.p-contact .s-inquiries {
  background-color: #ECF1F7;
}
.p-contact .s-inquiries__list {
  display: -ms-grid;
  display: grid;
  gap: 12px;
  -ms-grid-columns: 1fr 12px 1fr;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .p-contact .s-inquiries__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.p-contact .s-inquiries__list--item {
  padding: 5%;
  font-size: 19px;
  border-radius: 5px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-contact .s-inquiries__list--item {
    padding: 25px;
    font-size: 1.7rem;
  }
}
.p-contact .s-inquiries__list--ttl {
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid #3186E2;
}

/*------------------------------------------------------------
p-contact
------------------------------------------------------------*/
.p-contact .s-form {
  /* テーブル */
}
.p-contact .s-form__desc {
  text-align: center;
  line-height: 1.8;
  margin-bottom: 60px;
}
.p-contact .s-form__box {
  background-color: #ECF1F7;
}
.p-contact .s-form .required {
  color: #fff;
  padding: 8px 30px;
  text-align: center;
  border-radius: 20px;
  background-color: #2E8CD6;
}
@media screen and (max-width: 767px) {
  .p-contact .s-form .required {
    padding: 6px 25px;
  }
}
.p-contact .s-form .flex-base {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.p-contact .s-form .flex-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.p-contact .s-form dl {
  padding: 26px 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-contact .s-form dl {
    display: block;
    padding: 20px 20px 25px;
  }
}
.p-contact .s-form dl + dl {
  border-top: 1px solid #B7B7B7;
}
.p-contact .s-form dl dt {
  width: 24%;
  min-width: 250px;
  padding-right: 3%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-contact .s-form dl dt {
    width: 100%;
    padding: 0 0 10px;
  }
}
.p-contact .s-form dl dt p {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-contact .s-form dl dd {
  width: 83%;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .p-contact .s-form dl dd {
    width: 100%;
  }
}
.p-contact .s-form dl dd p {
  width: 100%;
}
.p-contact .s-form dl input, .p-contact .s-form dl select, .p-contact .s-form dl textarea {
  color: #848484;
  width: 100%;
  height: 70px;
  padding: 16px 5%;
  font-size: 16px;
  resize: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 5px;
  background-color: #fff;
  border: none;
  background-color: #F8F8F8;
  vertical-align: middle;
  -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
  -webkit-transition: border linear 0.2s, -webkit-box-shadow linear 0.2s;
  transition: border linear 0.2s, -webkit-box-shadow linear 0.2s;
  transition: border linear 0.2s, box-shadow linear 0.2s;
  transition: border linear 0.2s, box-shadow linear 0.2s, -webkit-box-shadow linear 0.2s;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-contact .s-form dl input, .p-contact .s-form dl select, .p-contact .s-form dl textarea {
    height: 50px;
    font-size: 1.4rem;
    padding: 12px 15px;
  }
}
.p-contact .s-form dl input::-webkit-input-placeholder, .p-contact .s-form dl select::-webkit-input-placeholder, .p-contact .s-form dl textarea::-webkit-input-placeholder {
  color: #848484;
}
.p-contact .s-form dl input::-moz-placeholder, .p-contact .s-form dl select::-moz-placeholder, .p-contact .s-form dl textarea::-moz-placeholder {
  color: #848484;
}
.p-contact .s-form dl input:-ms-input-placeholder, .p-contact .s-form dl select:-ms-input-placeholder, .p-contact .s-form dl textarea:-ms-input-placeholder {
  color: #848484;
}
.p-contact .s-form dl input::-ms-input-placeholder, .p-contact .s-form dl select::-ms-input-placeholder, .p-contact .s-form dl textarea::-ms-input-placeholder {
  color: #848484;
}
.p-contact .s-form dl input::placeholder, .p-contact .s-form dl select::placeholder, .p-contact .s-form dl textarea::placeholder {
  color: #848484;
}
.p-contact .s-form dl input:focus, .p-contact .s-form dl select:focus, .p-contact .s-form dl textarea:focus {
  border-color: rgba(82, 168, 236, 0.8);
  outline: 0;
  outline: thin dotted \9 ;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
}
.p-contact .s-form dl input[type=radio] {
  width: 20px;
  height: 20px;
  margin-right: 5px;
  vertical-align: -4px;
}
@media screen and (max-width: 767px) {
  .p-contact .s-form dl input[type=radio] {
    width: 20px;
    height: 20px;
    margin-right: 7px;
    vertical-align: -5px;
  }
}
.p-contact .s-form dl .wpcf7-list-item + .wpcf7-list-item {
  margin-left: 10%;
}
.p-contact .s-form dl textarea {
  height: 420px;
}
@media screen and (max-width: 767px) {
  .p-contact .s-form dl textarea {
    height: 300px;
  }
}
.p-contact .s-form dl select {
  color: #2F2F2F;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(../images/common/ic-select.svg);
  background-repeat: no-repeat;
  background-position: center right 5%;
  background-color: rgba(255, 255, 255, 0.58);
}
.p-contact .s-form dl select::-ms-expand {
  display: none;
}
.p-contact .s-form .w357 {
  max-width: 357px;
}
.p-contact .s-form__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-contact .s-form__wrap + .s-form__wrap {
  margin-top: 15px;
}
.p-contact .s-form__note {
  margin-top: 12px;
}
.p-contact .s-form__address--btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  width: 152px;
  border-radius: 8px;
  margin-left: 15px;
  background-color: #E3E3E3;
  border: 1px solid #C1C1C1;
}
.p-contact .s-form__terms dd {
  width: 100% !important;
  line-height: 1.8;
  padding: 3% 5%;
  letter-spacing: 2px;
  border-radius: 5px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-contact .s-form__terms dd {
    padding: 20px;
  }
}
.p-contact .s-form .wpcf7cp-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-contact .s-form__submit, .p-contact .s-form .wpcf7cp-btns {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 5% 80px;
}
@media screen and (max-width: 767px) {
  .p-contact .s-form__submit, .p-contact .s-form .wpcf7cp-btns {
    display: block;
    padding: 0 20px 50px;
  }
}
.p-contact .s-form__submit p, .p-contact .s-form .wpcf7cp-btns p {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-contact .s-form__submit p, .p-contact .s-form .wpcf7cp-btns p {
    display: block;
  }
}
.p-contact .s-form__submit input, .p-contact .s-form__submit button, .p-contact .s-form .wpcf7cp-btns input, .p-contact .s-form .wpcf7cp-btns button {
  width: 100%;
  max-width: 340px;
  cursor: pointer;
  font-size: 15px;
  text-align: center;
  padding: 8px;
  margin: 25px 10px 0;
  border-radius: 20px;
  border: 1px solid #707070;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #fff;
  background-image: url(../images/common/ic-right-black.svg);
  background-repeat: no-repeat;
  background-position: left 22% center;
  -webkit-transition: background 0.4s ease, -webkit-transform 0.4s ease;
  transition: background 0.4s ease, -webkit-transform 0.4s ease;
  transition: transform 0.4s ease, background 0.4s ease;
  transition: transform 0.4s ease, background 0.4s ease, -webkit-transform 0.4s ease;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
@media screen and (max-width: 767px) {
  .p-contact .s-form__submit input, .p-contact .s-form__submit button, .p-contact .s-form .wpcf7cp-btns input, .p-contact .s-form .wpcf7cp-btns button {
    max-width: 260px;
    background-position: left 14% center;
  }
}
.p-contact .s-form__submit input:hover, .p-contact .s-form__submit button:hover, .p-contact .s-form .wpcf7cp-btns input:hover, .p-contact .s-form .wpcf7cp-btns button:hover {
  color: #fff;
  background-color: #1A86E2;
  background-image: url(../images/common/ic-right-white.svg);
}
.p-contact .s-form__submit button, .p-contact .s-form .wpcf7cp-btns button {
  background-color: #F4F4F4;
}
.p-contact .s-form .wpcf7-spinner {
  position: absolute;
}
.p-contact .s-form #wpcf7cpcnf {
  position: relative;
}
.p-contact .s-form .wpcf7cp-form-hide {
  display: none;
}
.p-contact .s-form #wpcf7cpcnf table th, .p-contact .s-form #wpcf7cpcnf table td {
  padding: 2% 4%;
}
.p-contact .s-form #wpcf7cpcnf table tr {
  border: 1px solid #B7B7B7;
}
.p-contact .s-form #wpcf7cpcnf table th {
  text-align: left;
  width: 35%;
  font-weight: 500;
}
.p-contact .s-form #wpcf7cpcnf table td {
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-contact .s-form #wpcf7cpcnf table th, .p-contact .s-form #wpcf7cpcnf table td {
    display: block;
    width: 100% !important;
    padding: 12px 12px 12px 4%;
  }
}

/*------------------------------------------------------------
p-company
------------------------------------------------------------*/
.p-company .s-company__list dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .p-company .s-company__list dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-company .s-company__list dl + dl {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #A7C1D6;
}
.p-company .s-company__list dt, .p-company .s-company__list dd {
  padding: 13px 20px;
}
@media screen and (max-width: 767px) {
  .p-company .s-company__list dt, .p-company .s-company__list dd {
    width: 100% !important;
  }
}
.p-company .s-company__list dt {
  width: 15%;
  min-width: 136px;
  background-color: #DFE6ED;
}
.p-company .s-company__list dd {
  width: calc(100% - 136px);
  background-color: rgba(255, 255, 255, 0.54);
}
.p-company .s-company__list--wrap {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-company .s-company__list--wrap a {
  max-width: 200px;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-company .s-company__list--wrap a {
    margin-top: 20px;
  }
}

/*------------------------------------------------------------
p-office
------------------------------------------------------------*/
.p-office .s-office__list--item {
  overflow: hidden;
  border-radius: 8px;
  background-color: #fff;
  border: 1px solid #D5DFEB;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.p-office .s-office__list--item + .s-office__list--item {
  margin-top: 30px;
}
.p-office .s-office__list--item.main .s-office__list--ttl {
  min-height: 300px;
  background: url(../images/office/main.jpg);
}
.p-office .s-office__list--item.main .s-office__list--info {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.p-office .s-office__list--item.main .s-office__list--label {
  font-size: 18px;
}
.p-office .s-office__list--item.main .s-office__list--label.grey {
  color: #848484;
}
.p-office .s-office__list--item.main .s-office__list--label ~ .s-office__list--label {
  margin-top: 20px;
}
.p-office .s-office__list--item.main .s-office__list--note {
  font-size: 15px;
  margin-top: 5px;
}
.p-office .s-office__list--item.main .s-office__list--note li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-office .s-office__list--item.main .s-office__list--note li:before {
  content: "・";
}
.p-office .s-office__list--ttl, .p-office .s-office__list--info, .p-office .s-office__list--url {
  padding: 2.3% 2.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-office .s-office__list--ttl, .p-office .s-office__list--info, .p-office .s-office__list--url {
    width: 100% !important;
    padding: 25px;
  }
}
.p-office .s-office__list--info, .p-office .s-office__list--url {
  border-left: 1px solid #D5DFEB;
}
@media screen and (max-width: 767px) {
  .p-office .s-office__list--info, .p-office .s-office__list--url {
    border-left: 0;
    border-top: 1px solid #D5DFEB;
  }
}
.p-office .s-office__list--ttl {
  width: 25%;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .p-office .s-office__list--ttl {
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.p-office .s-office__list--info {
  width: 55%;
  font-size: 18px;
  line-height: 1.7;
  background-color: #fff;
}
.p-office .s-office__list--url {
  width: 21%;
  background-color: #ECF1F7;
}
.p-office .s-office__list--url .c-btn01 {
  margin: 0 auto;
}
.p-office .s-office__note {
  margin-top: 60px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-office .s-office__note {
    margin-top: 50px;
  }
}
.p-office .s-office__btn {
  margin-top: 22px;
}
.p-office .s-links__list {
  display: -ms-grid;
  display: grid;
  gap: 16px 2%;
  -ms-grid-columns: 1fr 2% 1fr;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .p-office .s-links__list {
    gap: 16px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.p-office .s-links__list a {
  width: 100%;
  max-width: 100%;
  margin: 0;
  border: 0;
  padding: 3.5% 8%;
  border-radius: 8px;
  letter-spacing: 1px;
  background-color: #fff;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .p-office .s-links__list a {
    padding: 12px 25px;
  }
}

/*------------------------------------------------------------
p-sdgs
------------------------------------------------------------*/
.p-sdgs .s-sdgs__intro {
  max-width: 800px;
  margin: 0 auto 60px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-sdgs .s-sdgs__intro {
    margin: 0 auto 50px;
  }
}
.p-sdgs .s-sdgs__intro--logo {
  width: 37%;
}
@media screen and (max-width: 767px) {
  .p-sdgs .s-sdgs__intro--logo {
    width: 100%;
    text-align: center;
  }
}
.p-sdgs .s-sdgs__intro--desc {
  width: 55%;
  line-height: 34px;
}
@media screen and (max-width: 767px) {
  .p-sdgs .s-sdgs__intro--desc {
    width: 100%;
    margin-top: 35px;
  }
}
.p-sdgs .s-sdgs__image {
  text-align: center;
}
.p-sdgs .s-info__list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-sdgs .s-info__list--item {
  padding: 3%;
  border-radius: 5px;
  background-color: #fff;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 768px) {
  .p-sdgs .s-info__list--item {
    width: 48%;
  }
  .p-sdgs .s-info__list--item:not(:nth-child(2n)) {
    margin-right: 4%;
  }
  .p-sdgs .s-info__list--item:not(:nth-child(-n+2)) {
    margin-top: 4%;
  }
}
@media screen and (max-width: 767px) {
  .p-sdgs .s-info__list--item {
    padding: 25px;
  }
  .p-sdgs .s-info__list--item + .s-info__list--item {
    margin-top: 35px;
  }
}
@media screen and (max-width: 767px) {
  .p-sdgs .s-info__list--logo {
    text-align: center;
  }
}
.p-sdgs .s-info__list--desc {
  line-height: 1.7;
  margin-top: 28px;
}
.p-sdgs .s-info__list--label {
  padding: 6px;
  margin-top: 40px;
  text-align: center;
  border-radius: 5px;
  background-color: #D2DBE3;
}
.p-sdgs .s-info__list--goal {
  line-height: 1.7;
  margin-top: 10px;
}

/*------------------------------------------------------------
p-philosophy
------------------------------------------------------------*/
.p-philosophy .s-philosophy__frame {
  max-width: 715px;
  margin: 0 auto;
}
.p-philosophy .s-philosophy__label {
  font-size: 28px;
  line-height: 2;
  margin: 40px 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-philosophy .s-philosophy__label {
    font-size: 2.6rem;
  }
}
.p-philosophy .s-philosophy__box {
  display: -ms-grid;
  display: grid;
  gap: 45px;
  grid-template-columns: repeat(auto-fit, minmax(calc((100% - 90px) / 3), 1fr));
  padding: 2.5% 4%;
  padding: 33px 50px;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.39);
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .p-philosophy .s-philosophy__box {
    gap: 35px;
    padding: 30px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.p-philosophy .s-philosophy__box--item {
  padding: 7px;
  text-align: center;
  position: relative;
}
.p-philosophy .s-philosophy__box--item::before, .p-philosophy .s-philosophy__box--item::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 100%;
  top: 0;
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
}
.p-philosophy .s-philosophy__box--item::before {
  left: 0;
  border-left: 1px solid #707070;
}
.p-philosophy .s-philosophy__box--item::after {
  right: 0;
  border-right: 1px solid #707070;
}
.p-philosophy .s-philosophy__box h4 {
  font-size: 31px;
  padding: 5px 20px;
  border-radius: 5px;
  background-color: rgba(181, 202, 235, 0.39);
}
@media screen and (max-width: 767px) {
  .p-philosophy .s-philosophy__box h4 {
    font-size: 2.8rem;
  }
}
.p-philosophy .s-philosophy__desc {
  line-height: 2;
  padding-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-philosophy .s-philosophy__desc {
    padding-top: 0;
  }
}
.p-philosophy .s-philosophy__desc p + p {
  margin-top: 38px;
}
@media screen and (max-width: 767px) {
  .p-philosophy .s-philosophy__desc p + p {
    margin-top: 30px;
  }
}
.p-philosophy .s-philosophy__cert {
  display: -ms-grid;
  display: grid;
  gap: 4%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-columns: 20% 4% 1fr;
  grid-template-columns: 20% 1fr;
  margin-top: 60px;
  padding-top: 65px;
  border-top: 1px solid #A7C1D6;
}
@media screen and (max-width: 767px) {
  .p-philosophy .s-philosophy__cert {
    gap: 30px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    margin-top: 50px;
    padding-top: 55px;
  }
}
.p-philosophy .s-philosophy__cert--img {
  min-height: 170px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
  -webkit-box-shadow: 0 3px 12px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 12px rgba(0, 0, 0, 0.16);
}
.p-philosophy .s-philosophy__cert--note {
  font-size: 15px;
}
.p-philosophy .s-philosophy__cert--ttl {
  font-size: 21px;
  margin-top: 5px;
}
.p-philosophy .s-philosophy__cert--desc {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 20px;
}
.p-philosophy .s-initiative__marquee {
  color: #D9E3EF;
  font-size: 200px;
  line-height: 1;
  margin-top: -20px;
  white-space: nowrap;
  overflow: hidden;
  font-family: "Circe", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-philosophy .s-initiative__marquee {
    font-size: 160px;
    margin-top: -16px;
  }
}
.p-philosophy .s-initiative__marquee span {
  display: inline-block;
  -webkit-animation: loopTextToRight 45s infinite linear;
          animation: loopTextToRight 45s infinite linear;
}
.p-philosophy .s-initiative__ttl {
  text-align: center;
  position: relative;
  max-width: 496px;
  margin: 0 auto 70px;
}
@media screen and (max-width: 767px) {
  .p-philosophy .s-initiative__ttl {
    margin: 0 auto 50px;
  }
}
.p-philosophy .s-initiative__ttl::before, .p-philosophy .s-initiative__ttl::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 100%;
  top: 0;
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
}
.p-philosophy .s-initiative__ttl::before {
  left: 0;
  border-left: 1px solid #707070;
}
.p-philosophy .s-initiative__ttl::after {
  right: 0;
  border-right: 1px solid #707070;
}
.p-philosophy .s-initiative__ttl p {
  font-size: 15px;
  letter-spacing: 1px;
}
.p-philosophy .s-initiative__ttl h2 {
  font-size: 28px;
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .p-philosophy .s-initiative__ttl h2 {
    font-size: 2.3rem;
    margin-top: 0;
  }
}
.p-philosophy .s-initiative__desc {
  max-width: 715px;
  margin: 0 auto 40px;
  line-height: 2;
}
.p-philosophy .s-initiative__list {
  display: -ms-grid;
  display: grid;
  gap: 35px;
}
.p-philosophy .s-initiative__list--item {
  overflow: hidden;
  position: relative;
  border-radius: 8px;
  background-color: #fff;
}
.p-philosophy .s-initiative__list--item:after {
  content: "";
  left: 20px;
  top: 20px;
  right: 20px;
  bottom: 20px;
  position: absolute;
  border-radius: 8px;
  border: 1px solid #A7C1D6;
}
@media screen and (max-width: 767px) {
  .p-philosophy .s-initiative__list--item:after {
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
}
.p-philosophy .s-initiative__list--item.item01 .s-initiative__list--img {
  background-image: url(../images/philosophy/initiative-img01.jpg);
}
.p-philosophy .s-initiative__list--item.item02 .s-initiative__list--img {
  background-image: url(../images/philosophy/initiative-img02.jpg);
}
.p-philosophy .s-initiative__list--item.item03 .s-initiative__list--img {
  background-image: url(../images/philosophy/initiative-img03.jpg);
}
.p-philosophy .s-initiative__list--item.item04 .s-initiative__list--img {
  background-image: url(../images/philosophy/initiative-img04.jpg);
}
.p-philosophy .s-initiative__list--item.item05 .s-initiative__list--img {
  background-image: url(../images/philosophy/initiative-img05.jpg);
}
.p-philosophy .s-initiative__list--box {
  max-width: 500px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-philosophy .s-initiative__list--box {
    max-width: 100%;
  }
}
.p-philosophy .s-initiative__list--img, .p-philosophy .s-initiative__list--txt {
  padding: 5%;
}
@media screen and (max-width: 767px) {
  .p-philosophy .s-initiative__list--img, .p-philosophy .s-initiative__list--txt {
    padding: 30px;
  }
}
.p-philosophy .s-initiative__list--img {
  color: #fff;
  min-height: 375px;
  background-color: #636E8B;
  background-blend-mode: multiply;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-philosophy .s-initiative__list--img .s-initiative__list--box {
  max-width: 456px;
}
.p-philosophy .s-initiative__list--num {
  display: block;
  font-size: 17px;
  margin-bottom: 12px;
  text-align: center;
  letter-spacing: 1px;
  font-family: "Circe", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-philosophy .s-initiative__list--num {
    font-size: 1.5rem;
  }
}
.p-philosophy .s-initiative__list--label {
  font-size: 21px;
  text-align: center;
  padding: 10px 20px;
  margin-bottom: 26px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .p-philosophy .s-initiative__list--label {
    font-size: 1.9rem;
  }
}
.p-philosophy .s-initiative__list--desc {
  line-height: 1.7;
}
.p-philosophy .s-initiative__list--ttl {
  color: #4E5565;
  font-size: 18px;
  padding: 10px;
  text-align: center;
  margin-bottom: 28px;
  border-radius: 5px;
  background-color: #D2DBE3;
}
@media screen and (max-width: 767px) {
  .p-philosophy .s-initiative__list--ttl {
    padding: 8px;
    margin-bottom: 20px;
  }
}
.p-philosophy .s-initiative__list--dots li {
  font-size: 15px;
  padding: 5px;
}
@media screen and (max-width: 767px) {
  .p-philosophy .s-initiative__list--dots li {
    font-size: 1.4rem;
  }
}
.p-philosophy .s-initiative__list--dots li + li {
  border-top: 1px solid #CEDCE8;
}

/*------------------------------------------------------------
p-features
------------------------------------------------------------*/
.p-features .c-intro {
  overflow: hidden;
  border-radius: 5px;
  border: 1px solid #D5DFEB;
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}
.p-features .c-intro__img {
  min-height: 345px;
}
.p-features .c-intro__txt {
  padding: 4%;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-features .c-intro__txt {
    padding: 10px 30px 30px;
  }
}
.p-features .c-intro__head {
  margin-bottom: 35px;
}
.p-features .c-intro__ttl {
  font-size: 23px;
}
@media screen and (max-width: 767px) {
  .p-features .c-intro__ttl {
    font-size: 2rem;
  }
}
.p-features .s-features .c-intro__img {
  background: url(../images/features/info-img01.jpg);
}
.p-features .s-service__box {
  padding: 3%;
  text-align: center;
  border-radius: 5px;
  background-color: #fff;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .p-features .s-service__box {
    padding: 30px;
  }
}
.p-features .s-service__box--note {
  text-align: center;
  margin-bottom: 20px;
}
.p-features .s-nabco .c-intro__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #EEF4FB;
}
.p-features .s-nabco .c-btn01 {
  margin-top: 35px;
}
.p-features .s-reason__block {
  display: -ms-grid;
  display: grid;
  gap: 3%;
  -ms-grid-columns: 1fr 3% 1fr;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .p-features .s-reason__block {
    gap: 35px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.p-features .s-reason__block--box {
  padding: 6% 4%;
  text-align: center;
  border-radius: 5px;
  background-color: #fff;
  border: 1px solid #D5DFEB;
  -webkit-box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .p-features .s-reason__block--box {
    padding: 10px;
  }
}
.p-features .s-reason__block--ttl {
  font-size: 23px;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .p-features .s-reason__block--ttl {
    font-size: 2rem;
  }
}
.p-features .s-reason__list {
  display: -ms-grid;
  display: grid;
  gap: 3%;
  -ms-grid-columns: 1fr 3% 1fr 3% 1fr;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-features .s-reason__list {
    gap: 35px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.p-features .s-reason__list--item {
  padding: 7%;
  text-align: center;
  border-radius: 5px;
  background-color: #fff;
  border: 1px solid #D5DFEB;
  -webkit-box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}
.p-features .s-reason__list--ttl {
  font-size: 19px;
  margin-bottom: 30px;
}


.c-license-list {
  width: 100%;
  max-width: 560px;
  margin: 24px auto 0;
  padding: 12px 22px 10px;
  background: #fff;
  border-radius: 4px;
  box-sizing: border-box;
}

.c-license-list__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 10px;
}

.c-license-list__head span {
  display: block;
  width: 110px;
  height: 2px;
  background: #1f4f91;
}

.c-license-list__head h4 {
  margin: 0;
  color: #003b7c;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.4;
  white-space: nowrap;
}

.c-license-list__body {
  display: grid;
  gap: 5px;
}

.c-license-list__item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 110px;
  align-items: center;
  min-height: 39px;
  border: 1px solid #9ec3e4;
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    #ffffff 72%,
    #eef7fd 100%
  );
  overflow: hidden;
}

.c-license-list__item::before {
  content: "";
  display: block;
  width: 10px;
  height: 100%;
  background: linear-gradient(180deg, #005bac 0%, #00a9d6 100%);
  position: absolute;
  left: 0;
  top: 0;
}

.c-license-list__name {
  padding: 7px 16px 7px 28px;
  color: #003b7c;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-align: left;
}

.c-license-list__num {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  color: #003b7c;
  font-weight: 700;
  line-height: 1;
}

.c-license-list__num strong {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.c-license-list__num span {
  font-size: 17px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .c-license-list {
    padding: 12px 12px 10px;
    margin-top: 18px;
  }

  .c-license-list__head {
    gap: 12px;
  }

  .c-license-list__head span {
    width: 56px;
  }

  .c-license-list__head h4 {
    font-size: 15px;
    letter-spacing: 0.16em;
  }

  .c-license-list__item {
    grid-template-columns: 1fr 76px;
    min-height: 36px;
  }

  .c-license-list__name {
    padding: 7px 0px 7px 22px;
    font-size: 16px;
    letter-spacing: 0.08em;
  }

  .c-license-list__num strong {
    font-size: 24px;
  }

  .c-license-list__num span {
    font-size: 14px;
  }
}

/*------------------------------------------------------------
p-maintenance
------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .p-maintenance .c-title02__txt {
    text-align: left;
  }
}
.p-maintenance .s-infor__support {
  border-radius: 5px;
}
.p-maintenance .s-infor__support li {
  text-align: center;
}
.p-maintenance .s-infor__support--ttl {
  font-size: 21px;
  padding: 10px;
  background-color: #DFE6ED;
}
@media screen and (max-width: 767px) {
  .p-maintenance .s-infor__support--ttl {
    font-size: 2rem;
  }
}
.p-maintenance .s-infor__support--desc {
  padding: 20px;
  background-color: #fff;
}
.p-maintenance .s-infor__box {
  margin-top: 40px;
  overflow: hidden;
  border-radius: 8px;
  background-color: #fff;
  border: 20px solid #BBD4EA;
}
@media screen and (max-width: 767px) {
  .p-maintenance .s-infor__box {
    border: 10px solid #BBD4EA;
  }
}
.p-maintenance .s-infor__box--item {
  padding: 5% 5% 6%;
  text-align: center;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-maintenance .s-infor__box--item {
    padding: 30px 30px 40px;
  }
}
.p-maintenance .s-infor__box--item:nth-child(1) {
  border-right: 10px solid #BBD4EA;
}
@media screen and (max-width: 767px) {
  .p-maintenance .s-infor__box--item:nth-child(1) {
    border-right: 0;
  }
}
.p-maintenance .s-infor__box--item:nth-child(2) {
  border-left: 10px solid #BBD4EA;
}
@media screen and (max-width: 767px) {
  .p-maintenance .s-infor__box--item:nth-child(2) {
    border-left: 0;
    border-top: 10px solid #BBD4EA;
  }
}
.p-maintenance .s-infor__box--ttl {
  font-size: 26px;
  margin-bottom: 23px;
}
@media screen and (max-width: 767px) {
  .p-maintenance .s-infor__box--ttl {
    font-size: 2.4rem;
  }
}
.p-maintenance .s-infor__box--desc {
  line-height: 1.8;
}
.p-maintenance .s-infor__box--label {
  padding: 5px;
  font-size: 19px;
  max-width: 390px;
  margin: 30px auto 0;
  border-radius: 8px;
  background-color: #F8F8F8;
  border: 1px solid #B9B9B9;
}
@media screen and (max-width: 767px) {
  .p-maintenance .s-infor__box--label {
    font-size: 1.7rem;
  }
}
.p-maintenance .s-infor__box--tel {
  color: #36A3DF;
  font-size: 40px;
  margin-top: 20px;
  letter-spacing: 5px;
  font-family: "Circe", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1100px) and (min-width: 768px) {
  .p-maintenance .s-infor__box--tel {
    display: block;
    font-size: 4vw;
    letter-spacing: 2px;
  }
  .p-maintenance .s-infor__box--tel img {
    display: block;
    margin: 0 auto !important;
  }
}
@media screen and (max-width: 767px) {
  .p-maintenance .s-infor__box--tel {
    display: block;
    font-size: 3rem;
    letter-spacing: 2px;
  }
}
.p-maintenance .s-infor__box--tel .num {
  position: relative;
}
.p-maintenance .s-infor__box--tel sub {
  left: 0;
  right: 0;
  bottom: -10px;
  position: absolute;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-maintenance .s-infor__box--tel sub {
    bottom: -7px;
    font-size: 1.4rem;
  }
}
.p-maintenance .s-infor__box--tel img {
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .p-maintenance .s-infor__box--tel img {
    width: 35px;
    display: block;
    margin: 0 auto;
  }
}
.p-maintenance .s-infor__box--qa {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
@media screen and (max-width: 767px) {
  .p-maintenance .s-infor__box--qa {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .p-maintenance .s-infor__box--qa img {
    width: 112px;
  }
}
.p-maintenance .s-infor__box--qa .s-infor__box--desc {
  text-align: left;
  margin-left: 4%;
}
@media screen and (max-width: 767px) {
  .p-maintenance .s-infor__box--qa .s-infor__box--desc {
    margin: 20px 0 0;
  }
}
.p-maintenance .s-infor__box .c-btn01 {
  margin-top: 40px;
}
.p-maintenance .s-maintenance__list {
  display: -ms-grid;
  display: grid;
  gap: 10px 25px;
  -ms-grid-columns: 1fr 25px 1fr;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .p-maintenance .s-maintenance__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.p-maintenance .s-maintenance__list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  min-height: 140px;
  padding: 6% 12% 6% 10%;
  position: relative;
  border-radius: 5px;
  background-color: #fff;
  border: 1px solid #6F9EC6;
  background: #fff url(../images/common/ic-arrow-blue.svg) right no-repeat;
}
@media screen and (max-width: 767px) {
  .p-maintenance .s-maintenance__list a {
    min-height: 120px;
    padding: 20px 40px 20px 30px;
    background-size: 30px;
  }
}
.p-maintenance .s-maintenance__list a:hover {
  color: #fff;
  background-color: #1A86E2;
}
.p-maintenance .s-maintenance__list--ttl {
  font-size: 18px;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .p-maintenance .s-maintenance__list--ttl {
    font-size: 1.6rem;
  }
}

/*------------------------------------------------------------
p-faq
------------------------------------------------------------*/
.p-faq .s-trouble__list {
  display: -ms-grid;
  display: grid;
  gap: 20px;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(5, 1fr);
  margin-bottom: 60px;
}
@media screen and (max-width: 1100px) and (min-width: 768px) {
  .p-faq .s-trouble__list {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .p-faq .s-trouble__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.p-faq .s-trouble__list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 25px 20px 50px;
  text-align: center;
  position: relative;
  border-radius: 5px;
  background-color: #fff;
  border: 1px solid #98C1F0;
  -webkit-box-shadow: 0 3px 12px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 12px rgba(0, 0, 0, 0.16);
}
.p-faq .s-trouble__list a:after {
  content: "";
  width: 37px;
  height: 29px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  position: absolute;
  background: url(../images/common/ic-down.svg) no-repeat;
  webkit-transform: translateZ(0);
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
.p-faq .s-trouble__list a:hover {
  background-color: #F4F6F7;
}
.p-faq .s-trouble__list a:hover:after {
  -webkit-animation-name: hvr-icon-down;
  animation-name: hvr-icon-down;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes hvr-icon-down {
  0%, 50%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  25%, 75% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
}
@keyframes hvr-icon-down {
  0%, 50%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  25%, 75% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
}
.p-faq .s-trouble__list--logo {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 85px;
}
.p-faq .s-trouble__list--ttl {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 18px;
  margin-top: 20px;
}
.p-faq .s-faq .c-title02 img {
  margin-bottom: 20px;
}
.p-faq .s-faq__ttl {
  color: #387AB2;
  font-size: 30px;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-faq .s-faq__ttl {
    font-size: 2.8rem;
  }
}

/*------------------------------------------------------------
p-service
------------------------------------------------------------*/
.p-service .s-service__list {
  display: -ms-grid;
  display: grid;
  gap: 20px;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 767px) {
  .p-service .s-service__list {
    gap: 35px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.p-service .s-service__list--ttl {
  margin-top: 30px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-service .s-service__list--ttl {
    margin-top: 15px;
  }
}
.p-service .s-service__list img {
  width: 100%;
}

/*------------------------------------------------------------
p-necessity
------------------------------------------------------------*/
.p-necessity .s-necessity__list {
  display: -ms-grid;
  display: grid;
  gap: 25px;
}
.p-necessity .s-necessity__list dl {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 90px calc(100% - 90px);
  grid-template-columns: 90px calc(100% - 90px);
  min-height: 100px;
  overflow: hidden;
  border-radius: 5px;
  border: 1px solid #98C1F0;
  -webkit-box-shadow: 0 8px 15px rgba(0, 0, 0, 0.16);
          box-shadow: 0 8px 15px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 767px) {
  .p-necessity .s-necessity__list dl {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.p-necessity .s-necessity__list dt, .p-necessity .s-necessity__list dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-necessity .s-necessity__list dt {
  color: #fff;
  font-size: 48px;
  background-color: #387AB2;
  font-family: "Circe", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-necessity .s-necessity__list dt {
    font-size: 3.6rem;
  }
}
.p-necessity .s-necessity__list dd {
  font-size: 18px;
  padding: 22px 30px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-necessity .s-necessity__list dd {
    font-size: 1.6rem;
    padding: 22px 30px 25px;
  }
}

/*------------------------------------------------------------
p-benefits
------------------------------------------------------------*/
.p-benefits .s-benefits__list {
  display: -ms-grid;
  display: grid;
  gap: 30px;
}
.p-benefits .s-benefits__list dl {
  overflow: hidden;
  border-radius: 5px;
  border: 1px solid #98C1F0;
  -webkit-box-shadow: 0 8px 15px rgba(0, 0, 0, 0.16);
          box-shadow: 0 8px 15px rgba(0, 0, 0, 0.16);
}
.p-benefits .s-benefits__list dt {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 92px calc(100% - 92px);
  grid-template-columns: 92px calc(100% - 92px);
  color: #387AB2;
  cursor: pointer;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-benefits .s-benefits__list dt {
    -ms-grid-columns: 62px calc(100% - 62px);
    grid-template-columns: 62px calc(100% - 62px);
  }
}
.p-benefits .s-benefits__list dd {
  letter-spacing: 2px;
  padding: 30px 45px 40px;
  background-color: #F4F6F7;
  border-top: 1px solid #98C1F0;
}
@media screen and (max-width: 767px) {
  .p-benefits .s-benefits__list dd {
    padding: 20px 30px 30px;
  }
}
.p-benefits .s-benefits__list--num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-size: 35px;
  background-color: #387AB2;
  font-family: "Circe", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-benefits .s-benefits__list--num {
    font-size: 3rem;
  }
}
.p-benefits .s-benefits__list--ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
  padding: 30px;
}
@media screen and (max-width: 767px) {
  .p-benefits .s-benefits__list--ttl {
    font-size: 1.8rem;
    padding: 20px;
  }
}
.p-benefits .s-benefits__list .red {
  color: #FF5A80;
}

/*------------------------------------------------------------
p-guide
------------------------------------------------------------*/
.p-guide .s-guide .c-text01 {
  margin-bottom: 36px;
}
.p-guide .s-trouble__safety {
  display: -ms-grid;
  display: grid;
  gap: 4%;
  -ms-grid-columns: 1fr 4% 1fr;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 45px;
}
@media screen and (max-width: 767px) {
  .p-guide .s-trouble__safety {
    gap: 30px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.p-guide .s-trouble__safety--box {
  padding: 7%;
  overflow: hidden;
  border-radius: 5px;
  background-color: #fff;
  border: 22px solid #DFE6ED;
}
@media screen and (max-width: 767px) {
  .p-guide .s-trouble__safety--box {
    padding: 30px;
    border: 12px solid #DFE6ED;
  }
}
.p-guide .s-trouble__safety--ttl {
  font-size: 26px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-guide .s-trouble__safety--ttl {
    font-size: 2.4rem;
  }
}
.p-guide .s-trouble__safety--img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  min-height: 200px;
  margin-top: 46px;
}
@media screen and (max-width: 767px) {
  .p-guide .s-trouble__safety--img {
    min-height: auto;
  }
}
.p-guide .s-trouble__safety--desc {
  line-height: 1.8;
  margin-top: 40px;
}

/*------------------------------------------------------------
p-happens
------------------------------------------------------------*/
.p-happens .s-trouble .c-list04 {
  margin-top: 60px;
}
.p-happens .s-trouble__list {
  display: -ms-grid;
  display: grid;
  gap: 40px;
}
.p-happens .s-cost__box {
  border-radius: 5px;
  background-color: #fff;
}
.p-happens .s-cost__box--body {
  padding: 56px 56px 60px;
}
@media screen and (max-width: 767px) {
  .p-happens .s-cost__box--body {
    padding: 35px 30px 38px;
  }
}
.p-happens .s-cost__box--ttl {
  font-size: 26px;
  padding: 14px;
  line-height: 1.3;
  text-align: center;
  border-radius: 5px;
  background-color: #E5E7EB;
}
@media screen and (max-width: 767px) {
  .p-happens .s-cost__box--ttl {
    font-size: 2.3rem;
  }
}
.p-happens .s-cost__box--label {
  font-size: 26px;
  padding: 9px;
  max-width: 580px;
  margin: 0 auto 23px;
  line-height: 1.3;
  text-align: center;
  border-radius: 8px;
  background-color: #F8F8F8;
  border: 1px solid #707070;
}
@media screen and (max-width: 767px) {
  .p-happens .s-cost__box--label {
    font-size: 2.3rem;
  }
}
.p-happens .s-cost__box--desc {
  font-size: 18px;
  max-width: 867px;
  margin: 0 auto;
  letter-spacing: 1.3px;
}
@media screen and (max-width: 767px) {
  .p-happens .s-cost__box--desc {
    font-size: 1.6rem;
  }
}
.p-happens .s-cost__box .c-btn02 {
  display: block;
  max-width: 336px;
  margin-left: auto;
  margin-right: auto;
  background-color: #387AB2;
}

/*------------------------------------------------------------
p-products
------------------------------------------------------------*/
.p-products .s-products__parts + .s-products__parts {
  margin-top: 55px;
}
.p-products .s-products__cate {
  color: #fff;
  font-size: 20px;
  padding: 11px;
  text-align: center;
  margin-bottom: 30px;
  border-radius: 5px;
  background-color: #8399AD;
}
.p-products .s-products__list {
  display: -ms-grid;
  display: grid;
  gap: 30px;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(5, 1fr);
}
@media screen and (max-width: 1350px) and (min-width: 767px) {
  .p-products .s-products__list {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .p-products .s-products__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.p-products .s-products__list a {
  width: 100%;
  height: 100%;
  padding: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  border-radius: 8px;
  background-color: #fff;
  border: 1px solid #D5DFEB;
  -webkit-box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}
.p-products .s-products__list--icon {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 133px;
}
.p-products .s-products__list--name {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-top: 10px;
}

.s-products__list--icon {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

.s-products__list--icon li {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	flex: 0 0 72px;
}

.s-products__list--icon li img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}
/*# sourceMappingURL=style.css.map */

/*------------------------------------------------------------
    News archive / single
------------------------------------------------------------*/
.visual-news {
  background-image: url(../images/common/visual.jpg);
}

.s-news-archive__inner,
.s-news-detail__inner {
  max-width: 1130px;
}

.s-news-archive__list {
  display: grid;
  gap: 24px;
}

.s-news-archive__item {
  overflow: hidden;
  border-radius: 6px;
  background-color: #fff;
  box-shadow: 0 8px 20px rgba(26, 33, 64, 0.12);
}

.s-news-archive__link {
  width: 100%;
  display: grid;
  grid-template-columns: 90px 130px 1fr;
  align-items: center;
  gap: 22px;
  padding: 28px 32px;
}

.s-news-archive__date,
.s-news-detail__date {
  color: #111;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.04em;
  font-family: "Circe", sans-serif;
}

.s-news-archive__cat,
.s-news-detail__cat {
  min-width: 118px;
  color: #606060;
  font-size: 13px;
  line-height: 1.2;
  text-align: center;
  padding: 7px 12px;
  border: 1px solid #707070;
  border-radius: 3px;
  background-color: #fff;
}


.s-news-archive__cat.is-important,
.s-news-detail__cat.is-important {
  color: #CE6666;
  border-color: #CE6666;
}

.s-news-archive__cat.is-news,
.s-news-detail__cat.is-news {
  color: #7982C9;
  border-color: #7982C9;
}

.s-news-archive__ttl {
  color: #000;
  line-height: 1.8;
  font-weight: 400;
}

.s-news-archive__pager {
  margin-top: 70px;
  text-align: center;
}

.s-news-archive__pager .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
}

.s-news-archive__pager .page-numbers li {
  display: inline-flex;
}

.s-news-archive__pager .page-numbers a,
.s-news-archive__pager .page-numbers span {
  min-width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2A85C1;
  font-size: 14px;
  border: 1px solid #2A85C1;
  background-color: #fff;
}

.s-news-archive__pager .page-numbers .current {
  color: #fff;
  background-color: #2A85C1;
}

.s-news-archive__pager .page-numbers .dots,
.s-news-archive__pager .page-numbers .prev,
.s-news-archive__pager .page-numbers .next {
  border: none;
  background: transparent;
}

.s-news-archive__empty {
  padding: 60px 20px;
  border-radius: 6px;
  text-align: center;
  background-color: #fff;
  box-shadow: 0 8px 20px rgba(26, 33, 64, 0.12);
}

.s-news-year {
  padding: 70px 0;
  background-color: #DDE4ED;
}

.s-news-year__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 38px;
}

.s-news-year__ttl,
.s-news-year__list a {
  color: #5F6B80;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.25em;
  font-family: "Circe", sans-serif;
}

.s-news-year__list {
  display: flex;
  align-items: center;
  gap: 24px;
}

.s-news-year__list li + li {
  position: relative;
}

.s-news-year__list li + li::before {
  content: "";
  width: 1px;
  height: 18px;
  position: absolute;
  top: 50%;
  left: -13px;
  transform: translateY(-50%);
  background-color: #5F6B80;
}

.s-news-detail__box {
  max-width: 1130px;
  margin: 0 auto;
  padding: 86px 145px 96px;
  border-radius: 6px;
  background-color: #fff;
  box-shadow: 0 8px 20px rgba(26, 33, 64, 0.12);
}

.s-news-detail__head {
  margin-bottom: 34px;
}

.s-news-detail__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 12px;
}

.s-news-detail__ttl {
  font-size: 22px;
  line-height: 1.7;
  font-weight: 700;
}

.s-news-detail__thumb {
  margin: 0 0 35px;
}

.s-news-detail__thumb img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.s-news-detail__content {
  line-height: 2.1;
}

.s-news-detail__content p,
.s-news-detail__content ul,
.s-news-detail__content ol,
.s-news-detail__content table,
.s-news-detail__content figure {
  margin-bottom: 28px;
}

.s-news-detail__content a {
  color: #2A85C1;
  text-decoration: underline;
}

.s-news-detail__content img {
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .s-news-archive__list {
    gap: 16px;
  }

  .s-news-archive__link {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 10px;
    padding: 22px 20px;
  }

  .s-news-archive__cat,
  .s-news-detail__cat {
    width: 118px;
  }

  
.s-news-archive__cat.is-important,
.s-news-detail__cat.is-important {
  color: #CE6666;
  border-color: #CE6666;
}

.s-news-archive__cat.is-news,
.s-news-detail__cat.is-news {
  color: #7982C9;
  border-color: #7982C9;
}

.s-news-archive__ttl {
    line-height: 1.7;
  }

  .s-news-archive__pager {
    margin-top: 45px;
  }

  .s-news-year {
    padding: 45px 0;
  }

  .s-news-year__inner {
    flex-direction: column;
    gap: 18px;
  }

  .s-news-year__ttl,
  .s-news-year__list a {
    font-size: 1.8rem;
  }

  .s-news-year__list {
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .s-news-year__list li + li::before {
    left: -10px;
  }

  .s-news-detail__box {
    padding: 36px 24px 46px;
  }

  .s-news-detail__meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .s-news-detail__ttl {
    font-size: 1.9rem;
  }

  .s-news-detail__content {
    line-height: 1.9;
  }
}

/* アンカーリンクの設定 */
#products_1,
#products_2,
#products_3 {
  scroll-margin-top: 120px;
}

@media screen and (max-width: 767px) {
  #products_1,
  #products_2,
  #products_3 {
    scroll-margin-top: 100px;
  }
}

/* SP メンテナンスの最初のメニュー非表示 */
@media screen and (max-width: 767px) {
  .s-service__inner > .c-list01,
  .s-guide__inner > .c-list01,
  .s-necessity__inner > .c-list01,
  .s-benefits__inner > .c-list01,
  .s-happens__inner > .c-list01,
  .s-company__inner > .c-list01,
  .s-philosophy__inner > .c-list01,
  .s-outline__inner > .c-list01,
  .s-history__inner > .c-list01,
  .s-office__inner > .c-list01,
  .s-features__inner > .c-list01 {
    display: none;
  }

  .s-service__inner,
  .s-guide__inner,
  .s-necessity__inner,
  .s-benefits__inner,
  .s-happens__inner,
  .s-company__inner,
  .s-philosophy__inner,
  .s-outline__inner,
  .s-history__inner,
  .s-office__inner,
  .s-features__inner {
    padding-top: 50px;
  }
}