@charset "utf-8";
/* CSS Document */
html{margin: 0;padding: 0;font-family: "Noto Sans JP", sans-serif;color: #222;overflow-x: hidden;scroll-behavior: smooth;}
body{width:100%; height:100%; text-align:center;color:#282828; font-family: 'Noto Sans JP', sans-serif; -webkit-tap-highlight-color:rgba(0, 0, 0, 0); margin:0 auto}
body{ background: url("../images/bg.jpg") center top repeat-y;}
ul{list-style-type:none; margin-block-start:0; margin-block-end:0; padding-inline-start:0}
p{line-height: 1.7em;text-align: left;}
img{display: block;max-width: 100%;height: auto;}
a:hover img, input[type="image"]:hover, input[type="submit"]{cursor:pointer; cursor:hand} 
	/* link */
	a:link, a:visited, a, a:hover, a:active{text-decoration: none}

/*--共通--*/
.red{color: #fc5300;font-weight: 500;}
.flex {display: flex;}
#wrapper,main {overflow-x: hidden;}
#service,
#point,
#flow,
#message {
  scroll-margin-top: 120px; /*リンク調整*/
}

/*背景*/
.wrapper, .wrap{max-width:960px; margin:0 auto; padding:5%; box-shadow:0px 3px 7px 3px #ccc;}
.wrap{padding:14px 10px; box-shadow:none}.header{color:#282828}

/*block*/
    #block_wrapper, .block_wrapper, .shadow{box-shadow: 0 0px 16px rgba(5, 68, 91, 0.4);} .drop-shadow img{filter: drop-shadow(5px 5px 10px rgba(0,0,0,.25))}
    .block{padding:0 5.2% 50px; text-align:left}
    .hl, .h, .hlh{padding:50px 1% 4%; font-weight:900; font-size:2.4em; line-height:1.5em; text-align:center}.h{padding:0 1% 4%}.hlh{padding:70px 2% 40px}

/*footer*/
    #footer{width:100%; margin:0 auto; font-size: 1.5rem;}
    .footer-inner{background:#fff; padding:35px 0 35px; text-align:center}
    #footer a{color:#282828; text-decoration:none} #footer p{color:#282828}
    .fco{font-style:normal; line-height:2.4em; text-align:center; color:#282828; margin:0; padding:0}
/*見出し*/


/* =========================================
   header
========================================= */
.site-header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
}
.site-header__inner {
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: space-between;
}
.site-header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  margin: 0 0 0 35px;
}
.site-header__logo a {
  display: block;
}
.site-header__logo img {
  display: block;
}
.site-header__nav {
  margin-left: auto;
}
.site-header__nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-header__nav a {
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  color: #222;
}
.site-header__tel {
  margin-left: 42px;
  color: #224c76;
  text-align: center;
}
.site-header__tel-number {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.02em;
}
.site-header__tel-time {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}
.site-header__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 265px;
  height: 100%;
  margin-left: 28px;
  padding: 0 20px;
  box-sizing: border-box;
  background: #03cba8;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}
.site-header__contact img {
  width: 28px;
  height: auto;
}
/*スマホメニュー*/
.site-header__menu-button {
  display: none;
}
.site-header__sp-nav {
  display: none;
}
@media screen and (max-width: 986px) {
  .site-header__menu-button {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 64px;
    height: 64px;
    margin-left: auto;
    padding: 0;
    border: none;
    background: #224c76;
    cursor: pointer;
  }
  .site-header__menu-button span {
    display: block;
    width: 28px;
    height: 2px;
    margin: 0 auto;
    background: #fff;
    transition: transform .3s ease, opacity .3s ease;
  }
  .site-header.is-open .site-header__menu-button span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .site-header.is-open .site-header__menu-button span:nth-child(2) {
  opacity: 0;
  visibility: hidden;
  width: 0;
  background: transparent;
  transform: scaleX(0);
  }
  .site-header.is-open .site-header__menu-button span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .site-header__nav {
    position: fixed;
    left: 0;
    top: 64px;
    z-index: 9999;
    display: block !important;
    width: 100%;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.96);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
  }

  .site-header.is-open .site-header__nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header__nav ul {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .site-header__nav li {
    margin: 0;
    border-bottom: 1px solid rgba(34, 76, 118, 0.18);
  }

  .site-header__nav li:first-child {
    border-top: 1px solid rgba(34, 76, 118, 0.18);
  }

  .site-header__nav a {
    display: block;
    padding: 18px 6%;
    color: #224c76;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    text-decoration: none;
  }
}

/* =========================================
   トップページ
========================================= */
.top-fv {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
}
.top-fv__slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.top-fv__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: opacity 1.6s ease;
}
.top-fv__slide.is-active {
  opacity: 1;
}
.top-fv__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(16, 45, 65, 0.48);
}
.top-fv__content {
  position: relative;
  z-index: 3;
  width: min(92%, 1200px);
  margin: 0 auto;
  padding-top: 300px;
  box-sizing: border-box;
  color: #fff;
}
.top-fv__catch {
  margin: 0;
  font-size: 62px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.06em;
}
.top-fv__lead {
  margin: 30px 0 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1200px) {
  .site-header__logo {
    width: 220px;
    margin-left: 24px;
  }
  .site-header__nav ul {
    gap: 22px;
  }
  .site-header__nav a {
    font-size: 16px;
  }
  .site-header__tel {
    margin-left: 28px;
  }
  .site-header__tel-number {
    font-size: 24px;
  }
  .site-header__contact {
    width: 230px;
    margin-left: 22px;
    font-size: 15px;
  }
}
@media screen and (max-width: 986px) {
  .site-header {
    height: 64px;
  }
  .site-header__inner {
    justify-content: space-between;
  }
  .site-header__logo {
    width: 160px;
    height: 42px;
    margin-left: 16px;
  }
  .site-header__nav,
  .site-header__tel {
    display: none;
  }
  .site-header__contact {
    width: 64px;
    height: 64px;
    margin-left: 0;
    padding: 0;
  }
  .site-header__contact span {
    display: none;
  }
  .site-header__contact img {
    width: 26px;
  }
  .top-fv {
    min-height: 640px;
  }
  .top-fv__content {
    width: 88%;  
  }
  .top-fv__catch {
    font-size: 36px;
    line-height: 1.55;
  }
  .top-fv__lead {
    margin-top: 32px;
    font-size: 16px;
    line-height: 2;
  }
}

/*下倉創業について*/
.top-about {
  padding: 110px 0 100px;
  overflow: hidden;
  background: #fff;
}
.top-about__inner {
  position: relative;
  display: flex;
  align-items:flex-start;
  width: 100%;
}
.top-about__image {
  position: relative;
  z-index: 2;
  width: 47%;
  margin-left: 4.8%;
}
.top-about__image img {
  display: block;
  width: 100%;
  height: auto;
}
.top-about__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 59%;
  min-height: 560px;
  margin: 60px 0 0 -5.3%;
  padding: 50px 4% 70px 9.4%;
  box-sizing: border-box;
  background:url("../images/block01-img2.jpg") center center / cover no-repeat;
}
.top-about__text {
  max-width: 680px;
  color: #fff;
}
.top-about__title {
  margin: 0 0 32px;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.06em;
}
.top-about__text p {
  margin: 0 0 28px;
  font-size: 17px;
  font-weight: 400;
  line-height: 2.05;
  letter-spacing: 0.04em;
}
.top-about__text p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1100px) {
  .top-about {
    padding: 90px 0;
  }
  .top-about__image {
    width: 48%;
    margin-left: 3%;
  }
  .top-about__content {
    width: 60%;
    min-height: 500px;
    margin-left: -6%;
    padding: 56px 4.5% 56px 8%;
  }
  .top-about__title {
    font-size: 30px;
  }
  .top-about__text p {
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  .top-about {
    padding: 70px 0;
  }
  .top-about__inner {
    display: block;
  }
  .top-about__image {
    width: 88%;
    margin: 0 auto -32px;
  }
  .top-about__content {
    width: 100%;
    min-height: auto;
  margin: 0px;
    padding: 72px 6% 56px;
  }
  .top-about__text {
    max-width: none;
  }
  .top-about__title {
    margin-bottom: 24px;
    font-size: 26px;
    line-height: 1.55;
  }
  .top-about__text p {
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 1.9;
  }
}

/*サービス*/
.top-block02 {
  padding: 100px 0;
  background: url("../images/block02-bg.jpg") center center / cover no-repeat;
}
.top-block02__heading {
  margin-bottom: 95px;
  text-align: center;
}
.top-block02__heading h2 {
  margin: 0;
  font-size: 62px;
  font-weight: 700;
  line-height: 1;
  color: #224c76;
  letter-spacing: 0.02em;
}
.top-block02__heading p {
  position: relative;
  display: inline-block;
  margin: 22px 0 0;
  padding: 0 52px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  color: #222;
  letter-spacing: 0.08em;
}
.top-block02__heading p::before,
.top-block02__heading p::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 38px;
  height: 2px;
  background: #222;
}
.top-block02__heading p::before {
  left: 0;
}
.top-block02__heading p::after {
  right: 0;
}
.top-block02__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 30px;
}
.top-block02__item {
  position: relative;
  display: block;
  width: calc((100% - 90px) / 4);
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.top-block02__item:nth-child(n + 5) {
  width: calc((100% - 60px) / 4);
}
.top-block02__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.top-block02__item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: background .45s ease;
}
.top-block02__item span {
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 2;
  width: 100%;
  padding: 0 16px;
  box-sizing: border-box;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.04em;
  transform: translateY(-50%);
}
.top-block02__item:hover img {
  transform: scale(1.06);
}
.top-block02__item:hover::before {
  background: rgba(7, 24, 38, 0.34);
}
@media screen and (max-width: 1100px) {
  .top-block02__heading {
    margin-bottom: 70px;
  }
  .top-block02__item,
  .top-block02__item:nth-child(n + 5) {
    width: calc((100% - 60px) / 3);
  }
  .top-block02__item span {
    font-size: 21px;
  }
}
@media screen and (max-width: 767px) {
  .top-block02 {
    padding: 70px 0;
  }
  .top-block02__heading {
    margin-bottom: 48px;
  }
  .top-block02__heading h2 {
    font-size: 46px;
  }
  .top-block02__heading p {
    margin-top: 18px;
    padding: 0 42px;
    font-size: 18px;
  }
  .top-block02__heading p::before,
  .top-block02__heading p::after {
    width: 30px;
  }
  .top-block02__list {
    gap: 18px;
  }
  .top-block02__item,
  .top-block02__item:nth-child(n + 5) {
    width: calc((100% - 18px) / 2);
  }
  .top-block02__item span {
    padding: 0 10px;
    font-size: 17px;
  }
}
/*施工例*/
.top-block03 {
  padding: 100px 0 95px;
  background:url("../images/block03-bg.jpg") center center / cover no-repeat;
}
.top-block03__heading {
  margin-bottom: 78px;
  text-align: center;
}
.top-block03__heading h2 {
  margin: 0;
  font-size: 62px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.02em;
}
.top-block03__heading p {
  position: relative;
  display: inline-block;
  margin: 22px 0 0;
  padding: 0 52px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.08em;
}
.top-block03__heading p::before,
.top-block03__heading p::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 38px;
  height: 2px;
  background: #fff;
}
.top-block03__heading p::before {
  left: 0;
}
.top-block03__heading p::after {
  right: 0;
}
.top-block03__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.top-block03__item {
  margin: 0;
}
.top-block03__item a {
  display: block;
  overflow: hidden;
  position: relative;
}
.top-block03__item img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  transition: transform .45s ease;
}
.top-block03__item a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(7, 24, 38, 0);
  transition: background .45s ease;
}
.top-block03__item img {
  position: relative;
  z-index: 0;
}
.top-block03__item a:hover::before {
  background: rgba(7, 24, 38, 0.28);
}
.top-block03__item a:hover img {
  transform: scale(1.06);
}
.top-block03__button {
  margin-top: 62px;
  text-align: center;
}
.top-block03__button a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 250px;
  height: 56px;
  padding: 0 36px;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.85);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: background .35s ease, color .35s ease;
}
.top-block03__button a:hover {
  background: #fff;
  color: #224c76;
}
@media screen and (max-width: 1100px) {
  .top-block03__list {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .top-block03 {
    padding: 70px 0;
  }
  .top-block03__heading {
    margin-bottom: 48px;
  }
  .top-block03__heading h2 {
    font-size: 46px;
  }
  .top-block03__heading p {
    margin-top: 18px;
    padding: 0 42px;
    font-size: 18px;
  }
  .top-block03__heading p::before,
  .top-block03__heading p::after {
    width: 30px;
  }
  .top-block03__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .top-block03__button {
    margin-top: 42px;
  }
  .top-block03__button a {
    min-width: 220px;
    height: 52px;
    font-size: 15px;
  }
}
/*地域貢献活動*/
.top-block04 {
  padding: 100px 0 110px;
  background: #fff;
}
.top-block04__heading {
  margin-bottom: 46px;
  text-align: center;
}
.top-block04__heading h2 {
  margin: 0;
  font-size: 62px;
  font-weight: 700;
  line-height: 1;
  color: #224c76;
  letter-spacing: 0.02em;
}
.top-block04__heading p {
  position: relative;
  display: inline-block;
  margin: 22px 0 0;
  padding: 0 52px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  color: #222;
  letter-spacing: 0.08em;
}
.top-block04__heading p::before,
.top-block04__heading p::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 38px;
  height: 2px;
  background: #222;
}
.top-block04__heading p::before {
  left: 0;
}
.top-block04__heading p::after {
  right: 0;
}
.top-block04__lead {
  margin: 0 0 70px;
  font-size: 18px;
  font-weight: 400;
  line-height: 2;
  color: #222;
  text-align: center;
  letter-spacing: 0.04em;
}
.top-block04__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.top-block04__item img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
}
@media screen and (max-width: 1100px) {
  .top-block04__list {
    gap: 22px;
  }
}
@media screen and (max-width: 767px) {
  .top-block04 {
    padding: 70px 0;
  }
  .top-block04__heading {
    margin-bottom: 34px;
  }
  .top-block04__heading h2 {
    font-size: 46px;
  }
  .top-block04__heading p {
    margin-top: 18px;
    padding: 0 42px;
    font-size: 18px;
  }
  .top-block04__heading p::before,
  .top-block04__heading p::after {
    width: 30px;
  }
  .top-block04__lead {
    margin-bottom: 42px;
    font-size: 15px;
    line-height: 1.9;
    text-align: left;
  }
  .top-block04__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
/*お問い合わせ*/
.top-block05 {
  padding: 100px 0 90px;
  background: #f3f7fa;
}
.top-block05__heading {
  margin-bottom: 84px;
  text-align: center;
}
.top-block05__heading h2 {
  margin: 0;
  font-size: 62px;
  font-weight: 700;
  line-height: 1;
  color: #224c76;
  letter-spacing: 0.02em;
}
.top-block05__heading p {
  position: relative;
  display: inline-block;
  margin: 22px 0 0;
  padding: 0 52px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  color: #222;
  letter-spacing: 0.08em;
}
.top-block05__heading p::before,
.top-block05__heading p::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 38px;
  height: 2px;
  background: #222;
}
.top-block05__heading p::before {
  left: 0;
}
.top-block05__heading p::after {
  right: 0;
}
.top-block05__form {
  max-width: 900px;
  margin: 0 auto;
}
.top-block05__row {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 40px;
  padding: 45px 0;
  border-bottom: 1px solid #9bd8f0;
}
.top-block05__row:first-child {
  border-top: none;
  padding-top: 0;
}
.top-block05__label {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  color: #222;
}
.top-block05__required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 30px;
  border-radius: 999px;
  background: #00a7df;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}
.top-block05__field input[type="text"],
.top-block05__field input[type="tel"],
.top-block05__field input[type="email"],
.top-block05__field textarea {
  display: block;
  width: 100%;
  padding: 0 18px;
  box-sizing: border-box;
  border: none;
  border-radius: 8px;
  background: #fff;
  color: #222;
  font-size: 16px;
  font-weight: 400;
  outline: none;
}
.top-block05__field input[type="text"],
.top-block05__field input[type="tel"],
.top-block05__field input[type="email"] {
  height: 58px;
}
.top-block05__field textarea {
  height: 220px;
  padding-top: 18px;
  resize: vertical;
}
.top-block05__field--checks {
  display: grid;
  gap: 28px;
}
.top-block05__field--checks label,
.top-block05__agree {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #222;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}
.top-block05__field input[type="checkbox"],
.top-block05__agree input[type="checkbox"] {
  appearance: none;
  width: 26px;
  height: 26px;
  margin: 0;
  border: 1px solid #b9dff1;
  background: #fff;
  box-sizing: border-box;
}
.top-block05__field input[type="checkbox"]:checked,
.top-block05__agree input[type="checkbox"]:checked {
  background: #03cba8;
  border-color: #03cba8;
  box-shadow: inset 0 0 0 5px #fff;
}
.top-block05__row--policy {
  align-items: start;
}
.top-block05__row--policy .top-block05__label {
  align-items: flex-start;
  padding-top: 4px;
}
.top-block05__policy {
  height: 250px;
  padding: 24px 32px;
  box-sizing: border-box;
  overflow-y: auto;
  border: 1px solid #9bd8f0;
  background: #fff;
  color: #111;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
}
.top-block05__agree {
  margin-top: 36px;
}
.top-block05__submit {
  margin-top: 52px;
  text-align: center;
}
.top-block05__submit button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 360px;
  height: 78px;
  border: none;
  background: #03cba8;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
}
.top-block05__submit button span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 2px solid #fff;
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
}
.top-block05__message {
  max-width: 900px;
  margin: 0 auto 40px;
  padding: 18px 24px;
  box-sizing: border-box;
  background: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  text-align: left;
}
.top-block05__message p {
  margin: 0 0 6px;
}
.top-block05__message p:last-child {
  margin-bottom: 0;
}
.top-block05__message--success {
  border-left: 5px solid #03cba8;
  color: #224c76;
}
.top-block05__message--error {
  border-left: 5px solid #d93025;
  color: #d93025;
}
.top-block05__field p {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  color: #222;
}
.top-block05__submit {
  display: flex;
  justify-content: center;
  gap: 18px;
}
.top-block05__submit button[type="button"] {
  background: #224c76;
}
@media screen and (max-width: 767px) {
  .top-block05__message {
    margin-bottom: 30px;
    padding: 16px 18px;
    font-size: 15px;
  }
  .top-block05__field p {
    font-size: 16px;
  }
  .top-block05__submit {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 1100px) {
  .top-block05__row {
    grid-template-columns: 320px 1fr;
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .top-block05 {
    padding: 70px 0;
  }
  .top-block05__heading {
    margin-bottom: 48px;
  }
  .top-block05__heading h2 {
    font-size: 46px;
  }
  .top-block05__heading p {
    margin-top: 18px;
    padding: 0 42px;
    font-size: 18px;
  }
  .top-block05__heading p::before,
  .top-block05__heading p::after {
    width: 30px;
  }
  .top-block05__row {
    display: block;
    padding: 30px 0;
  }
  .top-block05__label {
    gap: 16px;
    margin-bottom: 18px;
    font-size: 16px;
  }
  .top-block05__required {
    width: 52px;
    height: 26px;
    font-size: 14px;
  }
  .top-block05__field--checks {
    gap: 18px;
  }
  .top-block05__field--checks label,
  .top-block05__agree {
    gap: 14px;
    font-size: 16px;
  }
  .top-block05__field input[type="text"],
  .top-block05__field input[type="tel"],
  .top-block05__field input[type="email"] {
    height: 54px;
  }
  .top-block05__field textarea {
    height: 180px;
  }
  .top-block05__policy {
    height: 220px;
    padding: 18px;
    font-size: 14px;
  }
  .top-block05__agree {
    margin-top: 24px;
  }
  .top-block05__submit {
    margin-top: 40px;
  }
  .top-block05__submit button {
    width: 100%;
    max-width: 320px;
    height: 66px;
    font-size: 20px;
  }
}

/* =========================================
   footer
========================================= */
.site-footer {
  padding: 80px 0 72px;
  background: #224c76;
  color: #fff;
}
.site-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}
.site-footer__logo {
  display: flex;
  align-items: center;
  justify-content: left;
  height: 52px;
  margin-bottom: 20px;
}
.site-footer__logo img {
  display: block;
}
.site-footer__address {
  margin: 0 0 5px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}
.site-footer__tel {
  margin: 0;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.04em;
}
.site-footer__time {
  margin: 4px 0 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}
.site-footer__nav-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-top: 92px;
}
.site-footer__nav ul {
  display: flex;
  gap: 44px;
}
.site-footer__nav a {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
}
.site-footer__copy {
  margin: 48px 0 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .site-footer {
    padding: 60px 0;
  }
  .site-footer__inner {
    display: block;
  }
  .site-footer__logo {
    width: 220px;
    height: 44px;
    margin-bottom: 15px;
  }
  .site-footer__address {
    font-size: 15px;
  }
  .site-footer__tel {
    font-size: 30px;
  }
  .site-footer__time {
    font-size: 14px;
  }
  .site-footer__nav-wrap {
    align-items: flex-start;
    padding-top: 40px;
  }
  .site-footer__nav ul {
    flex-direction: column;
    gap: 14px;
  }
  .site-footer__nav a {
    font-size: 16px;
  }
  .site-footer__copy {
    margin-top: 36px;
    font-size: 14px;
  }
}

/* =========================================
   サービス案内
========================================= */
/*サービスFV*/
.service-main {
  padding: 80px 0 100px;
  background: url("../images/block02-bg.jpg") center center / cover no-repeat fixed;
}
.service-main__lead {
  margin: 0 0 60px;
  font-size: 18px;
  font-weight: 400;
  line-height: 2.2;
  text-align: center;
  color: #222;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .service-main {
    padding: 60px 0 70px;
    background-size: auto;
    background-repeat: repeat;
    background-position: center top;
  }
  .service-main__lead {
    margin-bottom: 40px;
    font-size: 15px;
    line-height: 1.9;
    text-align: left;
  }
}
.service-fv {
  position: relative;
  height: 500px;
  background: url("../images/service-fv-bg.jpg") center center / cover no-repeat;
}
.service-fv__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.service-fv__title {
  margin: 0;
  padding-top: 1em;
  font-size: 50px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.06em;
}

/*SP*/
@media screen and (max-width: 767px) {
  .service-fv {
    height: 360px;
    background-attachment: scroll;
  }
  .service-fv__title {
    font-size: 32px;
  }
}
/*サービスカード*/
.service-list {
  padding: 0 0 100px;
  background: url("../images/block02-bg.jpg") center center / cover no-repeat fixed;
}
.service-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 55px;
  padding: 58px 68px;
  box-sizing: border-box;
  background: #fff;
}
.service-card:last-child {
  margin-bottom: 0;
}
.service-card--reverse .service-card__image {
  order: 2;
}
.service-card--reverse .service-card__body {
  order: 1;
}
.service-card__image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
}
.service-card__body h2 {
  position: relative;
  margin: 0 0 34px;
  padding-bottom: 24px;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.3;
  color: #224c76;
  letter-spacing: 0.04em;
}
.service-card__body h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 110px;
  height: 1px;
  background: #00a7df;
}
.service-card__body p {
  margin: 0 0 26px;
  font-size: 17px;
  font-weight: 400;
  line-height: 2;
  color: #222;
  letter-spacing: 0.04em;
}
.service-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 92px;
  height: 38px;
  padding: 0 18px;
  box-sizing: border-box;
  border: 1px solid #224c76;
  border-radius: 999px;
  color: #224c76;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  transition: background .3s ease, color .3s ease;
}
.service-card__button span {
  display: inline-flex;
  align-items: center;
  transition: transform .3s ease;
}
.service-card__button img {
  display: block;
  width: 17px;
  height: auto;
}
.service-card__button:hover {
  background: #dae1e8;
}
.service-card__button:hover span {
  transform: translateX(3px);
}
@media screen and (max-width: 1100px) {
  .service-card {
    gap: 54px;
    padding: 48px;
  }
  .service-card__body h2 {
    font-size: 34px;
  }
  .service-card__body p {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .service-list {
    padding-bottom: 70px;
    background-attachment: scroll;
  }
  .service-card {
    display: block;
    margin-bottom: 34px;
    padding: 28px;
  }
  .service-card--reverse .service-card__image,
  .service-card--reverse .service-card__body {
    order: initial;
  }
  .service-card__image {
    margin-bottom: 28px;
  }
  .service-card__body h2 {
    margin-bottom: 24px;
    padding-bottom: 18px;
    font-size: 28px;
  }
  .service-card__body h2::after {
    width: 84px;
  }
  .service-card__body p {
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 1.9;
  }
  .service-card__button {
    min-width: 86px;
    height: 36px;
    font-size: 15px;
  }
}

/* =========================================
   施行事例
========================================= */
/*施工事例FV*/
.case-fv {
  height: 500px;
  background: url("../images/case-fv-bg.jpg") center center / cover no-repeat;
}
.case-fv__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.case-fv__title {
  margin: 0;
  padding-top: 1em;
  font-size: 50px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
}
/*施工事例一覧*/
.case-main {
  padding: 100px 0 90px;
  background: url("../images/block02-bg.jpg") center center / cover no-repeat fixed;
}
.case-main__inner {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 70px;
  width: 100%;
  margin: 0 auto;
}
.case-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px 30px;
}
.case-card {
  margin: 0;
  height: 400px;
  background: #fff;
}
.case-card a {
  display: block;
  padding: 24px;
  box-sizing: border-box;
}
.case-card__image {
  overflow: hidden;
}
.case-card__image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  transition: transform .45s ease;
}
.case-card a:hover .case-card__image img {
  transform: scale(1.06);
}
.case-card__body {
  padding-top: 18px;
}
.case-card__body h2 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #222;
}
.case-card__body p {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #222;
}
.case-card__body span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  height: 24px;
  padding: 0 10px 1px;
  box-sizing: border-box;
  background: #0068a8;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
}
/*ページャー*/
.case-pager {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 10px;
}
.case-pager a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 22px;
  background: #224c76;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.case-pager a.is-current {
  background: #fff;
  color: #224c76;
}
/*サイドバー*/
.case-sidebar {
  padding-top: 4px;
}
.case-sidebar__block {
  margin-bottom: 54px;
}
.case-sidebar__block:last-child {
  margin-bottom: 0;
}
.case-sidebar__block h2 {
  position: relative;
  margin: 0 0 28px;
  padding-bottom: 18px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: #222;
}
.case-sidebar__block h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 160px;
  height: 1px;
  background: #222;
}
.case-sidebar__block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.case-sidebar__block li {
  margin-bottom: 0px;
}
.case-sidebar__block li:last-child {
  margin-bottom: 0;
}
.case-sidebar__block a {
  position: relative;
  display: inline-block;
  padding-left: 18px;
  color: #222;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
.case-sidebar__block a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 16px;
  background: url("../images/icon_list.png") center center / contain no-repeat;
  transform: translateY(-50%);
  transition: transform .3s ease;
}
.case-sidebar__block a:hover::before {
  transform: translate(4px, -50%);
}
@media screen and (max-width: 1100px) {
  .case-main__inner {
    gap: 48px;
  }
}
@media screen and (max-width: 767px) {
  .case-fv {
    height: 360px;
  }
  .case-fv__title {
    font-size: 32px;
  }
  .case-main {
    padding: 70px 0;
    background-size: 768px auto;
    background-repeat: repeat;
    background-position: center top;
    background-attachment: scroll;
  }
  .case-main__inner {
    display: block;
    max-width: none;
  }
  .case-list {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .case-card {
    height: auto;
  }  
  .case-card a {
    padding: 22px;
  }
  .case-card__body h2 {
    font-size: 18px;
  }
  .case-card__body p {
    font-size: 15px;
  }
  .case-sidebar {
    margin-top: 56px;
    padding-top: 0;
  }
  .case-sidebar__block {
    margin-bottom: 42px;
  }
  .case-sidebar__block h2 {
    margin-bottom: 22px;
    font-size: 18px;
  }
}

/* =========================================
   施行詳細
========================================= */
/*施工事例詳細*/
.case-detail {
  padding: 62px 68px 70px;
  box-sizing: border-box;
  background: #fff;
}
.case-detail__title {
  margin: 0 0 24px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  color: #222;
}
.case-detail__image {
  margin-bottom: 24px;
}
.case-detail__image img {
  display: block;
  width: 100%;
  height: auto;
}
.case-detail__area {
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid #9bd8f0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #222;
}
.case-detail__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  height: 24px;
  margin-bottom: 18px;
  padding: 0 10px 1px;
  box-sizing: border-box;
  background: #0068a8;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
}
.case-detail__text p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.9;
  color: #222;
  letter-spacing: 0.04em;
}
.case-detail__button {
  margin-top: 42px;
  text-align: center;
}
.case-detail__button a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 180px;
  height: 38px;
  padding: 0 18px;
  box-sizing: border-box;
  border: 1px solid #224c76;
  border-radius: 999px;
  color: #224c76;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
}
.case-detail__button span {
  display: inline-flex;
  align-items: center;
  transition: transform .3s ease;
}
.case-detail__button img {
  display: block;
  width: 17px;
  height: auto;
}
.case-detail__button a:hover span {
  transform: translateX(5px);
}
@media screen and (max-width: 767px) {
  .case-detail {
    padding: 32px 24px 40px;
  }
  .case-detail__title {
    font-size: 24px;
  }
  .case-detail__area {
    font-size: 15px;
  }
  .case-detail__text p {
    font-size: 15px;
    line-height: 1.8;
  }
}

/* =========================================
   会社概要
========================================= */
/*会社概要FV*/
.company-fv {
  height: 500px;
  background: url("../images/company-fv-bg.jpg") center center / cover no-repeat;
}
.company-fv__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.company-fv__title {
  margin: 0;
  padding-top: 1em;
  font-size: 50px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
}
/*会社概要*/
.company-main {
  padding: 100px 0 90px;
  background: url("../images/block02-bg.jpg") center center / cover no-repeat fixed;
}
.company-table {
  width: 100%;
  margin: 0 auto 70px;
}
.company-table dl {
  display: grid;
  grid-template-columns: 300px 1fr;
  margin: 0;
  border-bottom: 1px solid rgba(34, 76, 118, 0.35);
}
.company-table dt,
.company-table dd {
  margin: 0;
  padding: 22px 0;
  font-size: 18px;
  line-height: 1.9;
  color: #222;
}
.company-table dt {
  position: relative;
  font-weight: 700;
  color: #224c76;
}
.company-table dt::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background: #224c76;
}
.company-table dd {
  font-weight: 400;
}
.company-map {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 430px;
  margin: 0 auto;
  background: #222;
  color: #fff;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .company-fv {
    height: 360px;
  }
  .company-fv__title {
    font-size: 32px;
  }
  .company-main {
    padding: 70px 0;
    background-size: 768px auto;
    background-repeat: repeat;
    background-position: center top;
    background-attachment: scroll;
  }
  .company-table {
    margin-bottom: 46px;
  }
  .company-table dl {
    display: block;
    padding: 18px 0;
  }
  .company-table dt,
  .company-table dd {
    padding: 0;
    font-size: 15px;
  }
  .company-table dt {
    margin-bottom: 8px;
  }
  .company-table dt::after {
    display: none;
  }
  .company-map {
    height: 240px;
    font-size: 22px;
  }
}


/* =========================
   共通 container
========================= */
.container {
  width: min(1000px, 92%);
  margin: 0 auto;
}

/* =========================
   共通 下層CTA
========================= */
.lower-contact {
  padding: 70px 0;
  background: url("../images/contact-bg.jpg") center center / cover no-repeat;
}
.lower-contact__inner {
  color: #fff;
}
.lower-contact__head {
  margin-bottom: 30px;
  text-align: center;
}
.lower-contact__head h2 {
  margin: 0 0 20px;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.lower-contact__head p {
  margin: 0;
  font-size: 16px;
  text-align: center;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
}
.lower-contact__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0px;
}
.lower-contact__tel-number {
  margin: 0;
  font-size: 58px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
p.lower-contact__tel-number {
  line-height: 1.2em;
}
.lower-contact__tel-time {
  margin: 10px 0 0;
  font-size: 17px;
  font-weight: 400;
  text-align: center;
}
.lower-contact__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 420px;
  height: 90px;
  padding: 0 28px;
  box-sizing: border-box;
  background: #03cba8;
  color: #fff;
}
.lower-contact__button-icon img {
  width: 29px;
}
.lower-contact__button-text {
  flex: 1;
  margin-left: 18px;
  font-size: 20px;
  font-weight: 500;
}
.lower-contact__button-arrow img {
  width: 16px;
  transition: transform .3s ease;
}
.lower-contact__button:hover .lower-contact__button-arrow img {
  transform: translateX(6px);
}

/*SP*/
@media screen and (max-width: 1078px) {
  .lower-contact {
    padding: 70px 0;
  }
  .lower-contact__head {
    margin-bottom: 40px;
  }
  .lower-contact__head h2 {
    font-size: 30px;
  }
  .lower-contact__head p {
    font-size: 14px;
    text-align: left;
  }
  .lower-contact__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  .lower-contact__tel-number {
    font-size: 9.4vw;
  }
  .lower-contact__tel-time {
    font-size: 3vw;
  }
  .lower-contact__button {
    width: 100%;
    height: auto;
    padding: 40px 20px;
  }
  .lower-contact__button-text {
    font-size: 5vw;
    text-align: center;
    margin-left: 0;
  }
}


/*---------------------------------
アニメーション
---------------------------------*/

.reveal{
  opacity: 0;
  transform: translateY(14px);
  filter: blur(2px);
  transition-property: opacity, transform, filter;
  transition-duration: .7s;
  transition-timing-function: cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform, filter;
}
.reveal.is-in{
  opacity: 1;
  transform: none;
  filter: none;
}

/* 方向バリエーション */
.reveal--up{ transform: translateY(14px); }
.reveal--down{ transform: translateY(-14px); }

/* スタイル違い */
.reveal--zoom{ transform: scale(.96); }
.reveal--soft{ filter: blur(1px); }  /* ぼかし弱め */

/* スピード（任意） */
.reveal--fast{ transition-duration: .45s; }
.reveal--slow{ transition-duration: 1s; }

/* 遅延ユーティリティ（.1s刻み） */
.delay-0{  transition-delay: 0s; }
.delay-1{  transition-delay: .1s; }
.delay-2{  transition-delay: .2s; }
.delay-3{  transition-delay: .3s; }
.delay-4{  transition-delay: .4s; }
.delay-5{  transition-delay: .5s; }
.delay-6{  transition-delay: .6s; }
.delay-7{  transition-delay: .7s; }
.delay-8{  transition-delay: .8s; }
.delay-9{  transition-delay: .9s; }
.delay-10{ transition-delay: 1s; }

@media screen and (min-width:960px) {
    /*for PC*/
    #wrapper, .wrapper{font-size:1.4rem;text-align: left; font-feature-settings:"palt"; line-height:1.5em; margin:0 auto; padding:0}
    .pc{display:block}.sp{display:none}

}

@media screen and (min-width:481px) and (max-width:960px) {
    /*for iPad tb(タブレット)*/
    #wrapper, .wrapper{font-size:1.4rem;text-align: left; font-feature-settings:"palt"; line-height:1.5em; margin:0 auto; padding:0}
    .hpb{width:100%; margin:0 auto}
    .pc{display:none}.sp{display:block}
    /*共通*/

 
}

@media screen and (max-width: 980px) {
    /*for iPhone sp(スマートフォン)*/
    #wrapper, .wrapper{font-size:1.4rem;text-align: left; font-feature-settings:"palt"; line-height:1.5em; margin:0 auto; padding:0}
    .hpb{width:100%; margin:0 auto}
    .pc{display:none}.sp{display:block}
	::placeholder{font-size:0.7em}
    .flex {flex-direction: column;}
    /*背景*/
    .bg{padding:0px}.bgt0{padding:0 2% 35px}
    /*block*/
    .block{padding:0 2% 25px; text-align:left}
    .hl, .h, .hlh{padding:25px 1% 4%; font-size:1.625em}.h{padding:0 1% 4%}.hlh{padding:35px 2% 20px; margin-bottom:0}

}