@charset "UTF-8";
/* ----------------------------------------
　　下層ページ共通
---------------------------------------- */
.under {
  background-color: #F6F6F6;
  padding-top: 104px;
}
@media screen and (max-width: 680px) {
  .under {
    padding-top: 64px;
  }
}
.under .rental__item {
  background-color: #FFF;
}

.mainvisual {
  overflow: hidden;
}

.mainvisual__item {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: clamp(220px, 28vw, 360px);
  padding-top: 0;
}
@media screen and (max-width: 680px) {
  .mainvisual__item {
    height: 180px;
  }
}
.mainvisual__item img {
  position: absolute;
  transform: translate(-50%, -50%);
  object-fit: cover;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
}

.breadcrumbs {
  background: url("../images/icon/icon_home0101.svg") no-repeat 32px 10px;
  background-size: 16px auto;
  font-size: 1.3rem;
  padding: 8px 16px 8px 56px;
}
@media screen and (max-width: 680px) {
  .breadcrumbs {
    background-position: 12px 10px;
    padding-left: 34px;
  }
}
.breadcrumbs a {
  display: inline;
  color: #138AD3;
}
@media screen and (min-width: 681px) {
  .breadcrumbs a:hover {
    opacity: 0.6;
  }
}
.breadcrumbs span {
  display: inline;
}

#prev_next {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  max-width: 960px;
  border-top: 1px solid #DDD;
  padding-top: 32px;
  margin: 64px auto 0;
}
@media screen and (max-width: 960px) and (min-width: 681px) {
  #prev_next {
    padding: 32px 40px 0;
  }
}
@media screen and (max-width: 680px) {
  #prev_next {
    gap: 12px;
    padding: 28px 24px 0;
    margin-top: 48px;
  }
}
#prev_next #prev, #prev_next #next {
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  width: calc(50% - 8px);
  background-color: #FFF;
  border: 1px solid #DDD;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(17, 17, 17, 0.06);
  font-size: 1.6rem;
  padding: 14px;
}
@media screen and (max-width: 960px) and (min-width: 681px) {
  #prev_next #prev, #prev_next #next {
    width: calc(50% - 6px);
  }
}
@media screen and (max-width: 680px) {
  #prev_next #prev, #prev_next #next {
    width: 100%;
    max-width: 480px;
    padding: 12px;
    margin: 0 auto;
  }
}
#prev_next #prev::after, #prev_next #next::after {
  content: "";
  flex-shrink: 0;
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2px solid #1B70AF;
  border-right: 2px solid #1B70AF;
}
#prev_next #prev::after {
  order: -1;
  transform: rotate(-135deg);
}
#prev_next #prev .post-nav__body {
  text-align: left;
}
#prev_next #next::after {
  transform: rotate(45deg);
}
#prev_next #next .post-nav__body {
  text-align: right;
}
@media screen and (max-width: 680px) {
  #prev_next #next .post-nav__body {
    text-align: left;
  }
}
@media screen and (min-width: 681px) {
  #prev_next #prev:hover,
  #prev_next #next:hover {
    transform: translateY(-2px);
    border-color: #1B70AF;
    box-shadow: 0 12px 28px rgba(17, 17, 17, 0.12);
    color: #1B70AF;
  }
  #prev_next #prev:hover .post-nav__image img,
  #prev_next #next:hover .post-nav__image img {
    transform: translate(-50%, -50%) scale(1.06);
  }
}
#prev_next .post-nav__image {
  overflow: hidden;
  display: block;
  flex-shrink: 0;
  position: relative;
  width: 96px;
  aspect-ratio: 4/3;
  background-color: #F1F6FA;
  border-radius: 4px;
}
@media screen and (max-width: 680px) {
  #prev_next .post-nav__image {
    width: 86px;
  }
}
#prev_next .post-nav__image::before {
  content: "";
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: 28px;
  height: 28px;
  background: url("../images/icon/icon_navi0103.svg") no-repeat center;
  background-size: contain;
  opacity: 0.2;
}
#prev_next .post-nav__image img {
  transition: 0.4s;
  position: absolute;
  transform: translate(-50%, -50%);
  object-fit: cover;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
}
#prev_next .post-nav__image img + * {
  display: none;
}
#prev_next .post-nav__body {
  flex: 1;
  min-width: 0;
}
#prev_next .post-nav__label {
  display: block;
  color: #1B70AF;
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.4;
  margin-bottom: 6px;
}
#prev_next .post-nav__title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #444;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.6;
}
#prev_next #next_no,
#prev_next #prev_no {
  width: calc(50% - 8px);
}
@media screen and (max-width: 680px) {
  #prev_next #next_no,
  #prev_next #prev_no {
    display: none;
  }
}
#prev_next #next_no a,
#prev_next #prev_no a {
  display: none;
}

.nav-links {
  margin-top: 64px;
}
@media screen and (max-width: 680px) {
  .nav-links {
    margin-top: 40px;
  }
}

.page-numbers {
  text-align: center;
}
.page-numbers li {
  display: inline-block;
}
.page-numbers span {
  display: block;
  background-color: #EFEFEF;
  border: 1px solid #EFEFEF;
  color: #444;
  font-size: 1.6rem;
  padding: 12px 16px;
  margin: 1px;
}
.page-numbers a {
  background-color: #FFF;
  border: 1px solid #666;
  color: #444;
  font-size: 1.6rem;
  padding: 12px 16px;
  margin: 1px;
}
@media screen and (min-width: 681px) {
  .page-numbers a:hover {
    background-color: #138AD3;
    border: 1px solid #138AD3;
    color: #FFF;
  }
}

/* ----------------------------------------
　　施工事例一覧ページ
---------------------------------------- */
.works-archive-page .category__icon {
  text-indent: 0;
  margin-bottom: 8px;
}

/* ----------------------------------------
　　下層ページ｜エディター
---------------------------------------- */
.contents {
  padding: 64px 0 80px;
}
@media screen and (max-width: 680px) {
  .contents {
    padding: 56px 0 64px;
  }
}

.text__editor {
  max-width: 960px;
  margin: 0 auto;
}
.text__editor > *:first-child {
  margin-top: 0 !important;
}
.text__editor > *:last-child {
  margin-bottom: 0 !important;
}
.text__editor h1, .text__editor h2, .text__editor h3, .text__editor h4, .text__editor h5, .text__editor h6 {
  margin-top: 56px;
  margin-bottom: 24px;
}
@media screen and (max-width: 680px) {
  .text__editor h1, .text__editor h2, .text__editor h3, .text__editor h4, .text__editor h5, .text__editor h6 {
    margin-top: 48px;
    margin-bottom: 16px;
  }
}
.text__editor h1, .text__editor h2 {
  position: relative;
  background-image: linear-gradient(30deg, #1B70AF, #138AD3);
  border-radius: 2px;
  color: #FFF;
  font-size: 2.6rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.5;
  padding: 8px 14px;
}
@media screen and (max-width: 680px) {
  .text__editor h1, .text__editor h2 {
    font-size: 2rem;
    letter-spacing: 0.02em;
  }
}
.text__editor h3 {
  border-bottom: 2px solid #1B70AF;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.08em;
  padding: 0 0 8px;
}
@media screen and (max-width: 680px) {
  .text__editor h3 {
    font-size: 2rem;
    letter-spacing: 0.02em;
  }
}
.text__editor h4 {
  border-left: 4px solid #138AD3;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.08em;
  padding: 4px 0 4px 12px;
  margin-top: 32px;
  margin-bottom: 12px;
}
@media screen and (max-width: 680px) {
  .text__editor h4 {
    letter-spacing: 0.02em;
  }
}
.text__editor h5 {
  color: #1B70AF;
  font-weight: bold;
  line-height: 1.5;
  margin-top: 28px;
  margin-bottom: 10px;
}
.text__editor h6 {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
  margin-top: 24px;
  margin-bottom: 8px;
}
.text__editor figure {
  margin: 32px 0;
}
@media screen and (max-width: 680px) {
  .text__editor figure {
    margin: 28px 0;
  }
}
.text__editor figure img {
  display: block;
  width: auto;
  max-width: 100%;
  border-radius: 4px;
  margin: 0 auto;
}
.text__editor figure figcaption {
  color: #777;
  font-size: 1.4rem;
  line-height: 1.6;
  text-align: center;
  margin-top: 10px;
}
.text__editor .wp-block-image {
  margin: 32px 0;
}
@media screen and (max-width: 680px) {
  .text__editor .wp-block-image {
    margin: 28px 0;
  }
}
.text__editor .wp-block-image img {
  height: auto;
}
.text__editor .wp-block-image.size-full img,
.text__editor .wp-block-image.is-resized img {
  width: 100%;
}
.text__editor .aligncenter {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
@media screen and (min-width: 681px) {
  .text__editor .alignleft {
    float: left;
    max-width: 48%;
    margin: 8px 32px 20px 0;
  }
  .text__editor .alignright {
    float: right;
    max-width: 48%;
    margin: 8px 0 20px 32px;
  }
}
.text__editor .alignnone {
  margin-right: 0;
  margin-left: 0;
}
.text__editor .wp-caption {
  max-width: 100%;
}
.text__editor iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  margin: 32px 0;
}
@media screen and (max-width: 680px) {
  .text__editor iframe {
    margin: 24px 0;
  }
}
.text__editor .wp-block-embed {
  margin: 32px 0;
}
.text__editor .wp-block-embed__wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16/9;
}
.text__editor .wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}
.text__editor .wp-block-video {
  overflow: hidden;
  position: relative;
  background-color: #111;
  border: 1px solid #222;
  border-radius: 8px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
  padding: 0;
  margin: 40px 0;
}
@media screen and (max-width: 680px) {
  .text__editor .wp-block-video {
    width: calc(100% + 48px);
    border-right: none;
    border-left: none;
    border-radius: 0;
    margin: 32px -24px;
  }
}
.text__editor .wp-block-video video {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  aspect-ratio: 16/9;
  background-color: #111;
  object-fit: contain;
}
.text__editor p {
  font-size: 1.6rem;
  line-height: 2;
  margin-bottom: 16px;
}
.text__editor p img {
  width: auto;
  max-width: 100%;
}
.text__editor p img.alignright {
  display: block;
  margin: 0 0 0 auto;
}
.text__editor p img.alignleft {
  display: block;
  margin: 0 auto 0 0;
}
.text__editor p img.aligncenter {
  display: block;
  margin: 0 auto;
}
.text__editor p a {
  display: inline;
  color: #444;
  font-weight: bold;
  text-decoration: underline;
}
@media screen and (min-width: 681px) {
  .text__editor p a:hover {
    opacity: 0.6;
  }
}
.text__editor a {
  display: inline;
  color: #1B70AF;
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media screen and (min-width: 681px) {
  .text__editor a:hover {
    opacity: 0.65;
  }
}
.text__editor .wp-block-file {
  background-color: #F7F9FB;
  border: 1px solid #DDD;
  border-radius: 6px;
  padding: 16px 20px;
  margin: 24px 0;
}
.text__editor .wp-block-file a {
  display: inline-block;
  color: #444;
  font-weight: bold;
  text-decoration: underline;
}
@media screen and (min-width: 681px) {
  .text__editor .wp-block-file a:hover {
    opacity: 0.6;
  }
}
.text__editor ul {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}
.text__editor ul > li {
  background: url("../images/icon/icon_arrow0101.svg") no-repeat left;
  background-size: 16px auto;
  border-bottom: 1px solid #DDD;
  padding: 12px 0 12px 26px;
}
@media screen and (max-width: 680px) {
  .text__editor ul > li {
    padding-left: 20px;
  }
}
.text__editor ul ul,
.text__editor ul ol {
  margin: 8px 0 0;
}
.text__editor ol {
  counter-reset: editor-list;
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}
.text__editor ol > li {
  counter-increment: editor-list;
  position: relative;
  border-bottom: 1px solid #DDD;
  padding: 12px 0 12px 34px;
}
.text__editor ol > li::before {
  content: counter(editor-list);
  position: absolute;
  top: 12px;
  left: 0;
  width: 22px;
  height: 22px;
  background-color: #1B70AF;
  border-radius: 50%;
  color: #FFF;
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 22px;
  text-align: center;
}
.text__editor ol ul,
.text__editor ol ol {
  margin: 8px 0 0;
}
.text__editor .sharedaddy li {
  background: none;
  border-bottom: none;
}
.text__editor .wp-block-gallery,
.text__editor .blocks-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 40px 0;
}
@media screen and (max-width: 680px) {
  .text__editor .wp-block-gallery,
  .text__editor .blocks-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: calc(100% + 16px);
    margin: 32px -8px;
  }
}
.text__editor .wp-block-gallery.has-nested-images {
  align-items: stretch;
}
.text__editor .wp-block-gallery .wp-block-image,
.text__editor .wp-block-gallery.has-nested-images figure.wp-block-image,
.text__editor .blocks-gallery-grid .blocks-gallery-item {
  overflow: hidden;
  position: relative;
  width: 100% !important;
  background: none;
  border: none;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  padding: 0;
  margin: 0 !important;
}
.text__editor .wp-block-gallery .wp-block-image a,
.text__editor .wp-block-gallery.has-nested-images figure.wp-block-image a,
.text__editor .blocks-gallery-grid .blocks-gallery-item a,
.text__editor .editor-gallery__zoom {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: block;
}
.text__editor .wp-block-gallery .wp-block-image a::after,
.text__editor .wp-block-gallery.has-nested-images figure.wp-block-image a::after,
.text__editor .blocks-gallery-grid .blocks-gallery-item a::after,
.text__editor .editor-gallery__zoom::after {
  content: "＋";
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 34px;
  height: 34px;
  background-color: rgba(17, 17, 17, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  color: #FFF;
  font-size: 2rem;
  line-height: 1;
}
.text__editor .wp-block-gallery .wp-block-image::before,
.text__editor .wp-block-gallery.has-nested-images figure.wp-block-image::before,
.text__editor .blocks-gallery-grid .blocks-gallery-item::before {
  content: "";
  display: block;
  padding-top: 72%;
}
.text__editor .wp-block-gallery .wp-block-image img,
.text__editor .wp-block-gallery.has-nested-images figure.wp-block-image img,
.text__editor .blocks-gallery-grid .blocks-gallery-item img {
  transition: 0.4s;
  position: absolute;
  transform: translate(-50%, -50%);
  object-fit: cover;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 681px) {
  .text__editor .wp-block-gallery .wp-block-image:hover img,
  .text__editor .wp-block-gallery.has-nested-images figure.wp-block-image:hover img,
  .text__editor .blocks-gallery-grid .blocks-gallery-item:hover img {
    width: 104%;
    height: 104%;
  }
  .text__editor .wp-block-gallery .wp-block-image:hover a::after,
  .text__editor .wp-block-gallery.has-nested-images figure.wp-block-image:hover a::after,
  .text__editor .blocks-gallery-grid .blocks-gallery-item:hover a::after,
  .text__editor .wp-block-gallery .wp-block-image:hover .editor-gallery__zoom::after,
  .text__editor .wp-block-gallery.has-nested-images figure.wp-block-image:hover .editor-gallery__zoom::after,
  .text__editor .blocks-gallery-grid .blocks-gallery-item:hover .editor-gallery__zoom::after {
    background-color: #138AD3;
  }
}
.text__editor .wp-block-gallery figcaption,
.text__editor .blocks-gallery-grid figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: #FFF;
  font-size: 1.3rem;
  line-height: 1.5;
  padding: 32px 12px 10px;
  margin: 0;
}
.text__editor code {
  background: linear-gradient(transparent 60%, #FCEE21 60%);
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.8;
  margin-bottom: 16px;
}
.text__editor pre {
  overflow-x: auto;
  background-color: #F7F9FB;
  border: 1px solid #DDD;
  border-radius: 6px;
  color: #333;
  font-size: 1.5rem;
  line-height: 1.8;
  padding: 18px 20px;
  margin: 24px 0;
}
.text__editor pre code {
  background: none;
  font-weight: normal;
  margin: 0;
}
.text__editor blockquote {
  position: relative;
  background-color: #F2F2F2;
  border: none;
  color: #464646;
  font-size: 1.6rem;
  line-height: 1.8;
  text-align: justify;
  padding: 40px;
  margin: 24px 0;
}
@media screen and (max-width: 680px) {
  .text__editor blockquote {
    padding: 40px 24px;
  }
}
.text__editor blockquote:before,
.text__editor blockquote:after {
  display: inline-block;
  position: absolute;
  width: 32px;
  height: 32px;
  color: #AAA;
  font-size: 6rem;
  font-weight: 900;
  line-height: 30px;
  text-align: center;
  vertical-align: middle;
}
.text__editor blockquote:before {
  content: "“";
  top: 24px;
  left: 8px;
}
.text__editor blockquote:after {
  content: "”";
  right: 8px;
  bottom: -12px;
}
.text__editor blockquote > p:last-child {
  margin-bottom: 0;
}
.text__editor .wp-block-table {
  overflow-x: auto;
  margin: 32px 0;
}
.text__editor .wp-block-table figcaption {
  color: #777;
  font-size: 1.4rem;
  line-height: 1.6;
  text-align: center;
  margin-top: 10px;
}
.text__editor table {
  font-size: 1.6rem;
  margin: 0 0 24px;
}
@media screen and (max-width: 680px) {
  .text__editor table {
    font-size: 1.5rem;
  }
}
.text__editor table th, .text__editor table td {
  width: auto;
  background-color: #FFF;
  border: 1px solid #DDD;
  vertical-align: middle;
  padding: 12px 14px;
}
.text__editor table th {
  background-color: #F1F6FA;
  color: #1C5682;
  font-weight: bold;
}
.text__editor .wp-block-columns {
  gap: 32px;
  margin: 40px 0;
}
@media screen and (max-width: 680px) {
  .text__editor .wp-block-columns {
    gap: 20px;
    margin: 32px 0;
  }
}
.text__editor .wp-block-column {
  border-bottom: 1px solid #DDD;
  padding-bottom: 24px;
}
.text__editor .wp-block-column figure {
  margin: 0;
}
.text__editor .wp-block-column h1, .text__editor .wp-block-column h2, .text__editor .wp-block-column h3 {
  margin-top: 24px;
}
.text__editor .wp-block-separator {
  width: 100%;
  height: 1px;
  background-color: #DDD;
  border: none;
  margin: 48px 0;
}
@media screen and (max-width: 680px) {
  .text__editor .wp-block-separator {
    margin: 36px 0;
  }
}
.text__editor .wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0;
}
.text__editor .wp-block-button__link {
  display: inline-block;
  min-width: 200px;
  background-color: #1B70AF;
  border: 2px solid #1B70AF;
  border-radius: 4px;
  color: #FFF !important;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  padding: 14px 24px;
}
@media screen and (min-width: 681px) {
  .text__editor .wp-block-button__link:hover {
    background-color: #FFF;
    color: #1B70AF !important;
    opacity: 1;
  }
}
.text__editor .sme-bg-color {
  padding: 4px 8px;
}
.text__editor .ez-toc-title {
  font-size: 1.6rem !important;
}
.text__editor #ez-toc-container {
  width: 100%;
  max-width: 640px;
  background-color: #F6F6F6 !important;
  border: none;
  border-top: 2px solid #444;
  border-bottom: 2px solid #444;
  padding: 16px 16px 12px;
  margin: 24px auto;
}
@media screen and (min-width: 961px) {
  .text__editor #ez-toc-container {
    border: 1px solid #DDD;
    padding: 28px 32px 16px;
    margin: 40px auto 64px;
  }
}
.text__editor #ez-toc-container ul {
  margin-top: 16px;
  margin-bottom: 16px;
}
.text__editor #ez-toc-container li {
  background: none;
  border: 0;
  color: #555;
  font-size: 1.5rem;
  letter-spacing: 0;
  line-height: 1.4;
  padding: 0;
}
.text__editor #ez-toc-container li a {
  color: #444;
  font-size: 1.5rem;
  font-weight: normal;
  text-decoration: underline;
  padding: 6px 0 2px;
}
@media screen and (min-width: 681px) {
  .text__editor #ez-toc-container li a:hover {
    opacity: 0.6;
  }
}
.text__editor #ez-toc-container li ul {
  margin: 8px 0 16px 16px;
}

/* ----------------------------------------
　　サイン施工ページ
---------------------------------------- */
.sign-page {
  background-color: #FFF;
}

.sign-hero {
  position: relative;
  overflow: hidden;
  background-color: #FFF;
  padding: 64px 0;
}
@media screen and (max-width: 680px) {
  .sign-hero {
    padding: 48px 0 56px;
  }
}

.sign-hero_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  max-width: 1200px;
}
@media screen and (max-width: 680px) {
  .sign-hero_inner {
    display: block;
  }
}

.sign-hero__info {
  width: 48%;
}
@media screen and (max-width: 680px) {
  .sign-hero__info {
    width: 100%;
    margin-bottom: 32px;
  }
}

.sign-hero__label {
  color: #138AD3;
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
}

.sign-hero__title {
  color: #1C5682;
  font-size: 5.2rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media screen and (max-width: 960px) and (min-width: 681px) {
  .sign-hero__title {
    font-size: 4rem;
  }
}
@media screen and (max-width: 680px) {
  .sign-hero__title {
    font-size: 3.4rem;
  }
}

.sign-hero__lead {
  color: #444;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.7;
  margin-bottom: 20px;
}
@media screen and (max-width: 680px) {
  .sign-hero__lead {
    font-size: 1.9rem;
  }
}

.sign-hero__text {
  font-size: 1.6rem;
  line-height: 2;
  margin-bottom: 32px;
}

.sign-hero__link {
  max-width: 320px;
}
@media screen and (max-width: 680px) {
  .sign-hero__link {
    max-width: none;
  }
}
.sign-hero__link a {
  background-color: #1B70AF;
  border-radius: 6px;
  color: #FFF;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  padding: 16px 20px;
}
@media screen and (min-width: 681px) {
  .sign-hero__link a:hover {
    background-color: #138AD3;
  }
}

.sign-hero__image {
  overflow: hidden;
  position: relative;
  width: 52%;
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 680px) {
  .sign-hero__image {
    width: 100%;
  }
}
.sign-hero__image::before {
  content: "";
  display: block;
  padding-top: 70%;
}
.sign-hero__image img {
  position: absolute;
  transform: translate(-50%, -50%);
  object-fit: cover;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
}

.sign-service,
.sign-flow,
.sign-gallery,
.sign-cta {
  padding: 64px 0;
}
@media screen and (max-width: 680px) {
  .sign-service,
  .sign-flow,
  .sign-gallery,
  .sign-cta {
    padding: 56px 0;
  }
}

.sign-service_inner,
.sign-flow_inner,
.sign-gallery_inner,
.sign-cta_inner {
  max-width: 1200px;
}

.sign-service__list,
.sign-flow__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
@media screen and (max-width: 960px) and (min-width: 681px) {
  .sign-service__list,
  .sign-flow__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 680px) {
  .sign-service__list,
  .sign-flow__list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.sign-service__item,
.sign-flow__item {
  background-color: #FFF;
  border: 1px solid #DDE6EE;
  border-radius: 8px;
  padding: 24px;
}
@media screen and (max-width: 680px) {
  .sign-service__item,
  .sign-flow__item {
    padding: 20px;
  }
}
.sign-service__item h3,
.sign-flow__item h3 {
  color: #1C5682;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 12px;
}
.sign-service__item p,
.sign-flow__item p {
  font-size: 1.5rem;
  line-height: 1.8;
}

.sign-service__item {
  border-top: 4px solid #138AD3;
}

.sign-flow__item span {
  display: block;
  color: #138AD3;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 16px;
}

.sign-gallery__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
@media screen and (max-width: 960px) and (min-width: 681px) {
  .sign-gallery__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 680px) {
  .sign-gallery__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
}

.sign-gallery__item {
  overflow: hidden;
  position: relative;
  background-color: #111;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}
@media screen and (max-width: 680px) {
  .sign-gallery__item {
    border-radius: 6px;
  }
}
.sign-gallery__item::before {
  content: "";
  display: block;
  padding-top: 72%;
}
.sign-gallery__item a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.sign-gallery__item img {
  transition: 0.4s;
  position: absolute;
  transform: translate(-50%, -50%);
  object-fit: cover;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 681px) {
  .sign-gallery__item:hover img {
    width: 104%;
    height: 104%;
  }
}

.sign-cta {
  text-align: center;
}

.sign-cta_inner {
  max-width: 920px;
}

.sign-cta__title {
  color: #1C5682;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 16px;
}
@media screen and (max-width: 680px) {
  .sign-cta__title {
    font-size: 2.3rem;
  }
}

.sign-cta__text {
  font-size: 1.6rem;
  line-height: 2;
}

.sign-cta__link {
  margin-top: 32px;
}

/* ----------------------------------------
　　会社概要ページ
---------------------------------------- */
.company-page {
  background-color: #FFF;
}

.company-hero {
  position: relative;
  overflow: hidden;
  background-color: #FFF;
  padding: 64px 0;
}
@media screen and (max-width: 680px) {
  .company-hero {
    padding: 48px 0 56px;
  }
}

.company-hero_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  max-width: 1200px;
}
@media screen and (max-width: 680px) {
  .company-hero_inner {
    display: block;
  }
}

.company-hero__info {
  width: 48%;
}
@media screen and (max-width: 680px) {
  .company-hero__info {
    width: 100%;
    margin-bottom: 32px;
  }
}

.company-hero__label {
  color: #138AD3;
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
}

.company-hero__title {
  color: #1C5682;
  font-size: 5.2rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media screen and (max-width: 960px) and (min-width: 681px) {
  .company-hero__title {
    font-size: 4rem;
  }
}
@media screen and (max-width: 680px) {
  .company-hero__title {
    font-size: 3.4rem;
  }
}

.company-hero__lead {
  color: #444;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.7;
  margin-bottom: 20px;
}
@media screen and (max-width: 680px) {
  .company-hero__lead {
    font-size: 1.9rem;
  }
}

.company-hero__text {
  font-size: 1.6rem;
  line-height: 2;
  margin-bottom: 32px;
}

.company-hero__link {
  max-width: 320px;
}
@media screen and (max-width: 680px) {
  .company-hero__link {
    max-width: none;
  }
}
.company-hero__link a {
  background-color: #1B70AF;
  border-radius: 6px;
  color: #FFF;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  padding: 16px 20px;
}
@media screen and (min-width: 681px) {
  .company-hero__link a:hover {
    background-color: #138AD3;
  }
}

.company-hero__image {
  overflow: hidden;
  position: relative;
  width: 52%;
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 680px) {
  .company-hero__image {
    width: 100%;
  }
}
.company-hero__image::before {
  content: "";
  display: block;
  padding-top: 70%;
}
.company-hero__image img {
  position: absolute;
  transform: translate(-50%, -50%);
  object-fit: cover;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
}

.company-profile,
.company-service {
  padding: 64px 0;
}
@media screen and (max-width: 680px) {
  .company-profile,
  .company-service {
    padding: 56px 0;
  }
}

.company-profile_inner,
.company-service_inner {
  max-width: 1200px;
}

.company-profile__wrap {
  overflow: hidden;
  background-color: #FFF;
  border: 1px solid #DDE6EE;
  border-radius: 8px;
}

@media screen and (max-width: 680px) {
  .company-profile__table {
    display: block;
    width: 100%;
  }
  .company-profile__table tbody,
  .company-profile__table tr {
    display: block;
    width: 100%;
  }
  .company-profile__table tr {
    border-bottom: 1px solid #DDE6EE;
  }
  .company-profile__table tr:last-child {
    border-bottom: none;
  }
}
.company-profile__table th,
.company-profile__table td {
  border-bottom: 1px solid #DDE6EE;
  font-size: 1.6rem;
  line-height: 1.8;
  padding: 20px 24px;
}
@media screen and (max-width: 680px) {
  .company-profile__table th,
  .company-profile__table td {
    display: block;
    width: 100%;
    border-bottom: none;
    font-size: 1.5rem;
    padding: 14px 18px;
  }
}
.company-profile__table tr:last-child th,
.company-profile__table tr:last-child td {
  border-bottom: none;
}
.company-profile__table th {
  width: 24%;
  background-color: #F6F9FC;
  color: #1C5682;
  font-weight: bold;
}
@media screen and (max-width: 680px) {
  .company-profile__table th {
    width: 100%;
    border-bottom: none;
    padding-bottom: 4px;
  }
}
.company-profile__table td {
  background-color: #FFF;
}
@media screen and (max-width: 680px) {
  .company-profile__table td {
    overflow-wrap: anywhere;
    word-break: normal;
    padding-top: 0;
    padding-bottom: 16px;
  }
}
.company-profile__table a {
  display: inline;
  color: #1B70AF;
  text-decoration: underline;
}
@media screen and (min-width: 681px) {
  .company-profile__table a:hover {
    opacity: 0.6;
  }
}

.company-service__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
@media screen and (max-width: 960px) and (min-width: 681px) {
  .company-service__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 680px) {
  .company-service__list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.company-service__item {
  background-color: #FFF;
  border: 1px solid #DDE6EE;
  border-top: 4px solid #138AD3;
  border-radius: 8px;
  padding: 24px;
}
@media screen and (max-width: 680px) {
  .company-service__item {
    padding: 20px;
  }
}
.company-service__item h3 {
  color: #1C5682;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 12px;
}
.company-service__item p {
  font-size: 1.5rem;
  line-height: 1.8;
}

/* ----------------------------------------
　　プライバシーポリシーページ
---------------------------------------- */
.privacy-policy-page {
  background-color: #FFF;
}

.privacy-policy {
  padding: 64px 0 80px;
}
@media screen and (max-width: 680px) {
  .privacy-policy {
    padding: 56px 0 64px;
  }
}

.privacy-policy_inner {
  max-width: 960px;
}

.privacy-policy__title {
  color: #1C5682;
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 24px;
}
@media screen and (max-width: 680px) {
  .privacy-policy__title {
    font-size: 2.8rem;
  }
}

.privacy-policy__lead {
  background-color: #F6F9FC;
  border-left: 4px solid #138AD3;
  font-size: 1.6rem;
  line-height: 2;
  padding: 20px 24px;
  margin-bottom: 40px;
}
@media screen and (max-width: 680px) {
  .privacy-policy__lead {
    padding: 18px;
    margin-bottom: 32px;
  }
}

.privacy-policy__content {
  background-color: #FFF;
  border: 1px solid #DDE6EE;
  border-radius: 8px;
  padding: 40px;
}
@media screen and (max-width: 680px) {
  .privacy-policy__content {
    padding: 24px 18px;
  }
}

.privacy-policy__section {
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid #DDE6EE;
}
@media screen and (max-width: 680px) {
  .privacy-policy__section {
    padding-bottom: 24px;
    margin-bottom: 24px;
  }
}
.privacy-policy__section h2 {
  color: #1C5682;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 14px;
}
@media screen and (max-width: 680px) {
  .privacy-policy__section h2 {
    font-size: 1.8rem;
  }
}
.privacy-policy__section p,
.privacy-policy__section li,
.privacy-policy__section dd {
  font-size: 1.6rem;
  line-height: 2;
}
.privacy-policy__section ul {
  margin-top: 12px;
}
.privacy-policy__section li {
  position: relative;
  padding-left: 1.2em;
}
.privacy-policy__section li::before {
  content: "";
  position: absolute;
  top: 0.86em;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: #138AD3;
  border-radius: 50%;
}
.privacy-policy__section a {
  display: inline;
  color: #1B70AF;
  text-decoration: underline;
}
@media screen and (min-width: 681px) {
  .privacy-policy__section a:hover {
    opacity: 0.6;
  }
}

.privacy-policy__section:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.privacy-policy__contact {
  margin-top: 12px;
}
.privacy-policy__contact dt {
  color: #1C5682;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 2;
}

.privacy-policy__date {
  color: #777;
  font-size: 1.4rem;
  line-height: 1.8;
  text-align: right;
}

/* ----------------------------------------
　　詳細ページ
---------------------------------------- */
.post-detail {
  position: relative;
  z-index: 3;
  padding: 40px 0 64px;
}

.post-detail_inner {
  max-width: 960px;
}

.post-detail__main-title {
  color: #555;
  font-size: 3.2rem;
  font-weight: bold;
  margin-bottom: 24px;
}
@media screen and (max-width: 960px) and (min-width: 681px) {
  .post-detail__main-title {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 680px) {
  .post-detail__main-title {
    font-size: 2.2rem;
  }
}

.post-detail__main-day {
  color: #888;
  margin-bottom: 16px;
}

.post-detail__main-category {
  text-align: center;
  margin-bottom: 24px;
}

.post-detail__main-image {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  border: 1px solid #DDD;
  padding-top: 56%;
  margin-bottom: 40px;
}
@media screen and (max-width: 680px) {
  .post-detail__main-image {
    width: calc(100% + 48px);
    padding-top: 64%;
    margin: 0 -24px 24px;
  }
}
.post-detail__main-image img {
  position: absolute;
  transform: translate(-50%, -50%);
  object-fit: cover;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
}

.post-detail__main-text {
  font-size: 1.6rem;
  line-height: 2;
  text-align: center;
  margin-bottom: 40px;
}

/* ----------------------------------------
　　404エラーページ
---------------------------------------- */
.error404 {
  padding: 0 0 64px;
}

.error404__main-text {
  margin-bottom: 40px;
}

/* ----------------------------------------
　　スタイルシートここまで
---------------------------------------- */
