@charset "utf-8";

:root {
  --base: #252525;
  --primary: #6294CE;
  --primary-light: #E6F1FF;
  --secondary: #59CEDE;
  --pink: #E5454E;
  --orange: #F05A19;
  --gray: #666;
  --border: #999;
  --line: #06C755;
}

html {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
  color: var(--base);
  line-height: 1.5;
  scroll-behavior: smooth;
  scroll-padding-top: 40px;
}

@media (min-width: 1024px) {
  html {
    scroll-padding-top: 100px;
  }
}

a:hover {
  opacity: .7;
}

/* ------utility------ */
.xs {
  display: none !important;
}

.sm {
  display: none !important;
}

.md {
  display: none !important;
}

.lg {
  display: none !important;
}

.md-lg {
  display: none !important;
}

@media (max-width: 767px) {
  .xs {
    display: block !important;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .sm {
    display: block !important;
  }
}

@media (min-width: 1024px) and (max-width: 1200px) {
  .md {
    display: block !important;
  }

  .md-lg {
    display: block !important;
  }
}

@media (min-width: 1200px) {
  .lg {
    display: block !important;
  }

  .md-lg {
    display: block !important;
  }
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline-block !important;
}

.d-inlineblock {
  display: inline-block !important;
}

.d-flex {
  display: flex !important;
}

.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

/* ------button------ */
.btn {
  display: flex;
  align-items: center;
  line-height: 1;
  width: max-content;
  border-width: 0;
}

.btn.btn-primary {
  justify-content: center;
  background-color: var(--primary);
  border-radius: 100px;
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  padding: .75rem;
  min-width: 150px;
  max-width: 100%;
}

.btn.btn-primary-outline {
  justify-content: center;
  background-color: #fff;
  color: var(--primary);
  border-radius: 100px;
  outline: 1px solid var(--primary);
  font-weight: 500;
  font-size: 1rem;
  padding: .75rem;
  min-width: 150px;
  max-width: 100%;
}

.btn-primary:hover,
.btn-primary-outline:hover {
  opacity: .7;
  cursor: pointer;
}

.btn:disabled {
  background-color: var(--border);
  border-color: var(--border);
  color: #fff;
  pointer-events: none;
}

/* btn animation */
.header-cta,
.footer-cta,
.fixed-cta {
  a {
    position: relative;
    /* ボタンの位置を基準にするため relative指定 */
    overflow: hidden;

    &::before {
      position: absolute;
      content: '';
      display: inline-block;
      top: -180px;
      left: 0;
      width: 30px;
      height: 100%;
      background-color: rgba(255, 255, 255, .7);
      animation: btn_animation 2.5s ease-in-out infinite;
    }
  }
}

@-webkit-keyframes btn_animation {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }

  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }

  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}

/* ------heading------ */
h2 {
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 10px;
  padding-bottom: 16px;
  font-weight: 900;
  text-align: center;
}

@media (min-width: 1024px) {
  h2 {
    font-size: 28px;
    margin-bottom: 30px;
    line-height: 1;
  }
}

@media (min-width: 1200px) {
  h2 {
    font-size: 40px;
    margin-bottom: 48px;
  }
}


/* ------drawer------ */
/*!
 * jquery-drawer v3.2.2
 * Flexible drawer menu using jQuery, iScroll and CSS.
 * http://git.blivesta.com/drawer
 * License : MIT
 * Author : blivesta <design@blivesta.com> (http://blivesta.com/)
 */

/*!------------------------------------*\
    Base
\*!------------------------------------*/
.drawer-open {
  overflow: hidden !important;
}

.drawer-nav {
  position: fixed;
  z-index: 101;
  top: 0;
  overflow: hidden;
  width: 100%;
  background-color: rgba(255, 255, 255, .9);
}

.drawer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.drawer-menu-item {
  font-size: 1.125rem;
  display: block;
  padding: 1.5rem 1rem;
  text-decoration: none;
  color: var(--base);
  font-weight: bold;
  position: relative;
}

.drawer-menu-item:hover {
  opacity: 1;
}

@media (max-width: 1023px) {
  .drawer-menu-item {
    border-bottom: 1px solid var(--border);
    background-color: var(--primary-light);
  }

  .drawer-menu-item:after {
    content: "";
    background: url(../img/icon_chevron-right-dark.svg);
    background-size: cover;
    opacity: .5;
    position: absolute;
    top: calc(50% - 6px);
    right: 20px;
    width: 16px;
    height: 16px;
  }
}

@media (min-width: 1024px) {
  .drawer-nav {
    background-color: transparent;
  }

  .drawer-menu-item {
    font-size: 1rem;
  }

  .drawer-menu-item-ja::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform 0.3s;
  }

  .drawer-menu-item:hover .drawer-menu-item-ja::after {
    transform: scale(1, 1);
  }

  .drawer-menu-item-en {
    display: none;
  }
}

/*! overlay */

.drawer-overlay {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .2);
}

.drawer-open .drawer-overlay {
  display: block;
}

/*!------------------------------------*\
    Top
\*!------------------------------------*/

.drawer--top .drawer-nav {
  top: -100%;
  left: 0;
  width: 100%;
  height: auto;
  max-height: 100%;
  -webkit-transition: top .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  transition: top .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
}

.drawer--top.drawer-open .drawer-nav {
  top: 0;
}

.drawer--top .drawer-hamburger,
.drawer--top.drawer-open .drawer-hamburger {
  right: 0;
}

/*!------------------------------------*\
    Hamburger
\*!------------------------------------*/

.drawer-hamburger {
  position: fixed;
  z-index: 104;
  top: 0;
  display: block;
  box-sizing: content-box;
  width: 2rem;
  padding: 0;
  padding-top: 18px;
  padding-right: .75rem;
  padding-bottom: 30px;
  padding-left: .75rem;
  -webkit-transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  border: 0;
  outline: 0;
  background-color: transparent;
}

.drawer-hamburger:hover {
  cursor: pointer;
  background-color: transparent;
}

.drawer-hamburger-icon {
  position: relative;
  display: block;
  margin-top: 10px;
}

.drawer-hamburger-icon,
.drawer-hamburger-icon:before,
.drawer-hamburger-icon:after {
  width: 100%;
  height: 2px;
  -webkit-transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  background-color: var(--base);
}

.drawer-hamburger-icon:before,
.drawer-hamburger-icon:after {
  position: absolute;
  top: -10px;
  left: 0;
  content: ' ';
}

.drawer-hamburger-icon:after {
  top: 10px;
}

.drawer-open .drawer-hamburger-icon {
  background-color: transparent;
}

.drawer-open .drawer-hamburger-icon:before,
.drawer-open .drawer-hamburger-icon:after {
  top: 0;
}

.drawer-open .drawer-hamburger-icon:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.drawer-open .drawer-hamburger-icon:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/*!------------------------------------*\
    accessibility
\*!------------------------------------*/

/*!
 * Only display content to screen readers
 * See: http://a11yproject.com/posts/how-to-hide-content
 */

.sr-only {
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

/*!
 * Use in conjunction with .sr-only to only display content when it's focused.
 * Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
 * Credit: HTML5 Boilerplate
 */

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  overflow: visible;
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
}

/*!------------------------------------*\
    Navbar
\*!------------------------------------*/

.drawer--navbarTopGutter {
  padding-top: 3.75rem;
}

.drawer-navbar {
  z-index: 102;
  top: 0;
  width: 100%;
  background-color: #fff;
}

/*! .drawer-navbar modifier */

.drawer-navbar--fixed {
  position: fixed;
}

.drawer-navbar-header {
  position: relative;
  z-index: 102;
  box-sizing: border-box;
  width: 100%;
}

.drawer-navbar .drawer-brand {
  display: flex;
  align-items: center;
  padding-top: 6px;
  padding-bottom: 8px;
  text-decoration: none;
  height: 3.75rem;
  background-color: #fff;
}

.drawer-navbar .drawer-brand:hover {
  background-color: transparent;
}

.drawer-navbar .drawer-logo {
  aspect-ratio: 616 / 136;
  margin-left: 1rem;
}

.drawer-navbar .drawer-nav {
  padding-top: 3.75rem;
}

@media (max-width: 1023px) {
  .drawer-navbar {
    box-shadow: 0px 0px 6px rgba(0, 0, 0, .2);
  }
}

@media (min-width: 1024px) {
  .drawer--navbarTopGutter {
    padding-top: 150px;
  }

  .drawer-navbar {
    height: 150px;
  }

  .drawer-navbar .drawer-navbar-header {
    position: relative;
    display: block;
    float: left;
    width: auto;
    padding: 0;
    border: 0;

    display: flex;
    justify-content: space-between;
    gap: 40px;
    background-color: #fff;
  }

  .drawer-navbar .drawer-logo {
    width: 100%;
  }

  .drawer-navbar .drawer-brand {
    height: 100px;
    padding-block: 20px;
  }

  .drawer-navbar .drawer-menu--right {
    float: right;
  }

  .drawer-navbar .drawer-menu-item {
    padding: 13px 1.5vw;
    margin-left: 1.2vw;
    margin-right: 1.2vw;
  }

  .drawer-navbar .drawer-menu-item:hover {
    color: var(--primary);
  }

  .drawer-menu li {
    display: flex;
    align-items: center;
  }

  .drawer-menu li:not(:last-of-type)::after {
    content: "";
    display: inline-block;
    height: 16px;
    width: 1px;
    background-color: var(--border);
  }

  .drawer-navbar .drawer-hamburger {
    display: none;
  }

  .drawer-navbar .drawer-nav {
    position: relative;
    left: 0;
    overflow: visible;
    width: auto;
    height: 50px;
    padding-top: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    background-color: #f8f8f8;
  }

  .drawer-navbar .drawer-menu {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /*! dropdown */
  .drawer-navbar .drawer-dropdown-menu {
    position: absolute;
    width: 100%;
    border: 1px solid #ddd;
  }

  .drawer-navbar .drawer-dropdown-menu-item {
    padding-left: .75rem;
  }
}

/*!------------------------------------*\
    Dropdown
\*!------------------------------------*/

.drawer-dropdown-menu {
  display: none;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #fff;
}

.drawer-dropdown-menu>li {
  width: 100%;
  list-style: none;
}

.drawer-dropdown-menu-item {
  line-height: 3.75rem;
  display: block;
  padding: 0;
  padding-right: .75rem;
  padding-left: 1.5rem;
  text-decoration: none;
  color: var(--base);
}

.drawer-dropdown-menu-item:hover {
  text-decoration: underline;
  color: #555;
  background-color: transparent;
}

/*! open */

.drawer-dropdown.open>.drawer-dropdown-menu {
  display: block;
}

/*! drawer-caret */

.drawer-dropdown .drawer-caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 4px;
  -webkit-transition: opacity .2s ease, -webkit-transform .2s ease;
  transition: opacity .2s ease, -webkit-transform .2s ease;
  transition: transform .2s ease, opacity .2s ease;
  transition: transform .2s ease, opacity .2s ease, -webkit-transform .2s ease;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  vertical-align: middle;
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

/*! open */

.drawer-dropdown.open .drawer-caret {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

/*!------------------------------------*\
    Container
\*!------------------------------------*/

.drawer-container {
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 1024px) {
  .drawer-container {
    display: flex;
    flex-direction: column;
    max-width: 100%;
  }
}

/* ------cta common------ */

.cta-tel {
  background-color: var(--pink);
  border-radius: 8px;
}

.cta-tel .cta-item {
  flex-direction: column;
}

.cta-tel-num {
  display: flex;
  align-items: center;
}

.cta-tel-time {
  font-size: 10px;
  font-weight: 400;
  text-align: center;
}

.cta-form {
  background-color: var(--primary);
  border-radius: 8px;
}

.cta-line {
  background-color: var(--line);
  border-radius: 8px;
}

.cta-line-id {
  display: none;
}

.cta-icon {
  margin-right: 2px;
  width: 20px;
}

.cta-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 16px;
  height: 100%;
  font-size: 14px;
  font-weight: bold;
}

@media(max-width: 367px) {
  .cta-item {
    font-size: 13px;
  }
}

@media(min-width: 768px) {

  a[href^="tel:"] {
    pointer-events: none;
    text-decoration: none !important;
  }
}


@media(min-width: 1024px) {
  .cta-line-id {
    display: inline-block;
    margin-left: 4px;
    font-weight: bold;
  }
}

/* ------sp fixed-cta------ */
.fixed-cta {
  position: fixed;
  z-index: 101;
  bottom: 0;
  width: 100%;
  background-color: #fff;
  filter: drop-shadow(0px -2px 6px rgba(0, 0, 0, .4));
  color: #fff;
}

.fixed-cta-inner {
  display: flex;
  width: 100%;
}

.fixed-cta .cta-tel,
.fixed-cta .cta-form,
.fixed-cta .cta-line {
  border-radius: 0;
}

.fixed-cta .cta-tel,
.fixed-cta .cta-line,
.fixed-cta .cta-form {
  flex-basis: 33.333%;
}

.fixed-cta .cta-item {
  border-radius: 0;
  padding: 10px;
  font-size: 12px;
}

@media(max-width:390px) {
  .fixed-cta .cta-item {
    padding-left: 6%;
    padding-right: 6%;
    font-size: 3.2vw;
  }
}

@media(min-width:1024px) {
  .fixed-cta {
    display: none;
  }
}


/* ------pc header cta------ */
.header-cta {
  display: none;
}

@media (min-width: 1024px) {
  .header-cta {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    color: #fff;
    padding: 20px;
  }
}


/* ------footer------ */
footer {
  background-color: #f8f8f8;
  padding: 40px 16px 68px;
}

footer h2 {
  line-height: 1.25;
}

.footer-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #fff;
  margin-top: 16px;
}

.footer-inc {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 30px 0;
}

.footer-inc-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  width: 240px;
}

.footer-ig-link {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: 2px solid var(--primary);
  border-radius: 100%;
  width: 40px;
  height: 40px;
}

.footer-ig-icon {
  width: 24px;
}

.footer-inc-logo {
  width: 100%;
}

.footer-inc-info {
  font-size: 14px;
}

.footer-inc-type {
  display: inline-block;
  width: 100px;
  font-weight: bold;
  padding-right: 8px;
}

footer small {
  display: inline-block;
  width: 100%;
  font-size: 12px;
  color: var(--gray);
  text-align: center;
}

@media(min-width:768px) {
  footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .footer-cta {
    flex-direction: row;
    padding-left: 80px;
    padding-right: 80px;
  }

  .footer-cta .cta-tel,
  .footer-cta .cta-form,
  .footer-cta .cta-line {
    width: 33.333%;
  }
}

@media(min-width:1024px) {
  footer {
    padding-bottom: 16px;
  }

  .footer-cta {
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto
  }

  .footer-cta .cta-item {
    font-size: 18px;
  }

  .footer-cta .cta-tel-time {
    font-size: 12px;
  }

  .footer-cta .cta-icon {
    width: 24px;
    margin-right: 4px;
  }

  .footer-inc-name {
    width: 30%;
    max-width: 368px;
    gap: 12px;
    margin-bottom: 12px;
  }
}

/* ------content------ */
.mv img {
  width: 100%;
}

.section {
  padding: 40px 16px;
}

@media(min-width:768px) {
  .section {
    padding: 60px 24px;
  }
}

@media(min-width:1024px) {
  .section {
    padding-block: 100px;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media(min-width:1128px) {
  .section {
    padding-inline: 0;
  }
}

/* サービス内容 */
.service-lead {
  margin-top: -6px;
  margin-bottom: 24px;
}

.service-inner {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 24px;
}

.service-item {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  border: 2px solid var(--primary);
  overflow: hidden;
}

.service-item-title {
  color: #fff;
  background-color: var(--primary);
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  padding: 8px;
}

.service-item-img {
  position: relative;
  font-size: 0;
}

.service-item-img img:not(.dispositions_mement) {
  aspect-ratio: 336 / 180;
  width: 100%;
  height: 40vw;
  object-fit: cover;
}

.service-item-img .dispositions_mement {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 140px;
  height: auto;
  object-fit: contain;
}

.service-item-text {
  padding: 8px 12px;
  font-size: 14px;
}

.service-item-price {
  color: var(--pink);
  font-weight: bold;
  text-align: right;

  .service-item-num {
    font-size: 24px;
    font-family: "arial", "Noto Sans JP", sans-serif;
  }
}

@media(min-width: 768px) {
  .service-lead {
    text-align: center;
  }

  .service-inner {
    flex-direction: row;
  }

  .service-item {
    width: calc((100% - 48px) / 3);
  }

  .service-item-img img:not(.dispositions_mement) {
    height: 100%;
  }
}

@media(min-width: 1024px) {
  .service-item-title {
    font-size: 24px;
    padding: 12px;
  }

  .service-item-text {
    font-size: 16px;
  }
}

@media(min-width: 1200px) {}

/* 回収品目 */
.etc {
  background-color: rgba(89, 206, 222, .1);
  border-radius: 16px;
  padding: 36px 24px;
}

.etc-title {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

.etc-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10%;
  margin: 16px 0 24px;
}

.etc-inner:last-of-type {
  margin-bottom: 0;
}

.etc-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 40%;
  margin-bottom: 16px;
}

.etc-item-text {
  font-size: 18px;
  font-weight: bold;
}

@media(min-width: 768px) {
  .etc-item {
    width: 122px;
  }
}

@media(min-width: 1024px) {
  .etc {
    padding: 60px 80px;
  }

  .etc-inner {
    gap: 28px;
  }

  .etc-title {
    font-size: 24px;
    padding: 12px 0;
  }

  .etc-title:has(.etc-disabled) {
    margin-top: 40px;
  }
}

/* 目安料金 */
.plan {
  background-color: var(--primary-light);
}

.plan-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.plan-card {
  background-color: #fff;
  border-radius: 16px;
  padding: 36px 24px;
}

.plan-title {
  margin-bottom: 16px;
  text-align: center;
}

.plan-name {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 6px;
}

/* old_見出しの下の説明 */
.plan-info {
  font-size: 12px;
  color: var(--gray);
}

.plan-list {
  display: flex;
  flex-direction: column;
}

.plan-list>li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  gap: 8px;
}

.plan-item {
  font-size: 14px;
  font-weight: bold;
  flex-shrink: 0;
}

/* old_料金項目の括弧 */
.plan-item-memo {
  font-size: 12px;
  font-weight: 400;
}

.plan-price {
  font-size: 14px;
  font-weight: bold;
  text-align: right;
}

.plan-truck-list {
  display: flex;
  flex-direction: column;
  width: 202px;
}

.plan-truck-list>li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 4px 0;
}

.plan-truck-list>li:first-of-type {
  padding-top: 0;
}

.plan-truck-list>li:last-of-type {
  padding-bottom: 0;
}

.plan-truck-item {
  flex-shrink: 0;
}

.plan-memo-title {
  font-size: 14px;
  font-weight: bold;
}

.plan-memo-list {
  list-style: none;
  font-size: 14px;
}

.plan-memo-list li {
  margin-left: 1em;
  text-indent: -1em;
}

.plan-memo-list li::before {
  content: "※";
  text-indent: -1em;
}

@media(min-width: 768px) {
  .plan-card {
    width: calc(100% - 48px);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  .plan-memo {
    width: calc(100% - 48px);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  .plan-truck-list {
    width: 260px;
  }
}

@media(min-width: 1024px) {
  .plan {
    max-width: none;
  }
}

@media(min-width: 1200px) {
  .plan-inner {
    gap: 48px;
  }

  .plan-name {
    font-size: 24px;
  }

  .plan-card {
    padding: 60px;
  }

  .plan-list>li {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .plan-truck-list {
    width: 360px;
  }

  .plan-truck-list>li {
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .plan-info {
    font-size: 14px;
  }

  .plan-item,
  .plan-price {
    font-size: 18px;
  }
}

/* 流れ */
.flow {
  background-color: #fff;
  max-width: none;
}

.flow-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.flow-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style: none;
}

.flow-list-item {
  background-color: #fff;
  border-radius: 16px;
  border: 2px solid var(--primary);
  padding: 36px 24px;
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, .2));
}

.flow-num {
  text-align: center;
  margin-bottom: 8px;
}

.flow-num-step {
  display: inline-block;
  color: #fff;
  background-color: var(--primary);
  border-radius: 100px;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 4px;
  line-height: 1;
}

.flow-num-title {
  font-size: 18px;
  font-weight: bold;
}

.flow-cta {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 12px;
  color: #fff;
  margin-top: 16px;
}

.flow-cta .cta-tel,
.flow-cta .cta-form,
.flow-cta .cta-line {
  border-radius: 8px;
}

.flow-text .flow-cta-memo {
  margin-top: 8px;

  a {
    color: var(--pink);
    text-decoration: underline;
  }
}

.flow-sdgs {
  display: block;
  width: 180px;
  margin: 24px auto;
}

@media(min-width: 768px) {
  .flow-list-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    max-width: 1080px;
  }

  .flow-num {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    width: 224px;
  }

  .flow-num-step {
    padding: 10px 24px;
    margin-bottom: 0;
  }

  .flow-num-title {
    text-align: left;
  }

  .flow-text {
    width: calc(100% - 216px);
    padding-top: 8px;
  }

  .flow-cta {
    flex-direction: row;
  }

  .flow-list .flow-list-item:last-of-type .flow-text {
    display: flex;
    gap: 16px;
    flex-direction: row-reverse;
    justify-content: space-between;
  }

  .flow-sdgs {
    width: 100px;
    margin: 0;
  }
}

@media(min-width: 1024px) {
  .flow-num {
    width: 268px;
  }

  .flow-text {
    width: calc(100% - 308px);
  }
}

@media(min-width: 1200px) {
  .flow-list-item {
    width: 1080px;
    margin-left: auto;
    margin-right: auto;
    padding: 40px;
  }

  .flow-num {
    width: 328px;
  }

  .flow-num-step {
    font-size: 16px;
  }

  .flow-num-title {
    font-size: 22px;
  }
}

/* 施工事例 */
.case {
  background-color: var(--primary-light);
}

.case-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.case-card {
  background-color: #fff;
  border-radius: 16px;
  padding: 24px;
}

.case-title {
  font-size: 18px;
  font-weight: bold;
  border-bottom: 1px solid var(--border);
  padding-block: 10px 4px;
  margin-bottom: 10px;
  text-align: center;
}

.case-info {
  font-size: 14px;
}

.case-text {
  font-size: 12px;
  margin-top: 8px;
}

.ig {
  padding-top: 24px;
}

.ig-inner {
  background-color: #fff;
  margin-block: 16px;
  padding: 16px;
  border-radius: 4px;
  border: 1px solid var(--border);
}

@media (min-width: 768px) {
  .ig-lead {
    text-align: center;
    margin-block: 12px 24px;
  }

  .case-inner {
    gap: 16px;
    flex-direction: row;
  }

  .case-card {
    flex: 1;
  }
}

@media (min-width: 1024px) {
  .case {
    max-width: none;
  }

  .case-inner {
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
  }

  .case-title {
    font-size: 20px;
  }

  .case-info {
    font-size: 16px;
  }

  .ig {
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
  }

  .ig-lead {
    margin-top: 36px;
  }

  .ig-inner {
    border-radius: 8px;
  }
}

/* 対応地域 */
.region-inner {
  display: flex;
  flex-direction: column;
  max-width: 720px;
  margin: 0 auto;
}

.region-pref {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 12px;
}

.region-pref:not(:first-of-type) {
  margin-top: 20px;
}

.region-text {
  font-size: 14px;
  text-align: center;
  margin-top: 16px;
}

.region-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 0;
}

.region-list-item {
  border-right: 1px solid var(--border);
  border-left: 1px solid var(--border);
  padding: 0 12px;
  margin-left: -1px;
}

@media(min-width: 768px) {
  /* .region-img {
    max-width: 585px;
    margin-left: auto;
    margin-right: auto;
  } */
}

@media(min-width: 1200px) {
  .region-pref {
    font-size: 24px;
  }

  .region-pref:not(:first-of-type) {
    margin-top: 30px;
  }
}

/* よくある質問 */
.faq {
  background-color: var(--primary-light);
}

.faq-cat {
  color: var(--primary);
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 16px;

  &:not(:first-of-type) {
    margin-top: 40px;
  }
}

.faq-item {
  background-color: #fff;
  border-radius: 16px;
  padding: 8px 24px;
  margin-bottom: 16px;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-weight: bold;
  padding-block: 16px;

  &:hover {
    cursor: pointer;
  }

  .q-capital {
    color: var(--primary);
    font-weight: bold;
    padding-right: 2px;
  }

  .faq-q-text {
    display: flex;
    flex-grow: 1;
  }
}

.faq-a {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-block: 16px;

  .a-capital {
    color: var(--secondary);
    font-weight: bold;
    padding-right: 2px;
  }

  .faq-a-text {
    flex-grow: 1;
  }
}

.faq-chevron {
  width: 18px;
  transition: transform 0.3s ease;

  &.rotate {
    transform: rotate(-180deg);
  }
}

@media(min-width: 768px) {
  .faq-item {
    width: calc(100% - 48px);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media(min-width: 1024px) {
  .faq {
    max-width: none;
  }
}

/* 選ばれる理由 */
.reason {
  background-color: var(--primary-light);
}

.reason-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.reason-card {
  background-color: #fff;
  border-radius: 16px;
  padding: 36px 24px;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, .15));
}

.reasom-img {
  text-align: center;

  img {
    max-width: 120px;
  }
}

.reason-title {
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

.reason-text {
  font-size: 14px;
}

@media(min-width: 768px) {
  .reason-card {
    display: flex;
    gap: 24px;
    align-items: center;
    width: calc(100% - 48px);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  .reason-title {
    font-size: 24px;
    text-align: left;
  }

  .reason-text {
    font-size: 16px;
  }
}

@media(min-width: 768px) {
  .reason {
    max-width: none;
  }
}


/* sdgs */
.sdgs {
  background: url(../img/sdgs_bg.png);
  background-size: 100%;
}

.sdgs-inner {
  padding: 32px 24px;
  max-width: 1080px;
  background: #fff;
  border-radius: 24px;
  margin-left: auto;
  margin-right: auto;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, .15));
}

.sdgs-head {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 12px;
}

.sdgs-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sdgs-text p {
  margin-bottom: 8px;
}

.sdgs-img {
  max-width: 200px;
  margin: 8px auto 16px auto;
}

@media (min-width: 1024px) {
  .sdgs {
    max-width: none;
    background-size: 80%;
  }

  .sdgs-inner {
    padding: 60px;
  }

  .sdgs-head {
    font-size: 32px;
    margin-bottom: 24px;
  }

  .sdgs-text {
    flex-direction: row;
    gap: 24px;
  }

  .sdgs-img {
    margin: 0;
  }
}

/* ------sub------ */
.sub {
  background-color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
}

.sub h1 {
  font-size: 22px;
  line-height: 1.25;
  font-weight: 900;
}

@media(min-width: 1024px) {
  .sub {
    height: 240px;
  }

  .sub h1 {
    font-size: 28px;
  }
}

/* ------contact------ */
.contact {
  padding: 24px;
}

.contact-lead {
  width: 100%;
  margin-bottom: 24px;
}

.required {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--pink);
  color: #fff;
  font-size: 12px;
  padding: 2px 4px;
  margin-bottom: 8px;
  line-height: 1;
}

.optional {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gray);
  color: #fff;
  font-size: 12px;
  padding: 2px 4px;
  margin-bottom: 8px;
  line-height: 1;
}

::placeholder {
  color: var(--gray);
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.form-label-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-label {
  font-size: 14px;
  font-weight: bold;
  color: var(--gray);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid var(--border);
  padding: 8px;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  width: 100%;
}

.form-radio {
  font-size: 16px;
  width: 100%;
  display: inline-block;
}

.form-checkbox {
  display: flex;
  gap: 0 1em;
  flex-wrap: wrap;
}

/* .form-error {
  color: red;
  font-size: 14px;
  margin-top: 4px;
} */

.form-privacy {
  margin-bottom: 16px;
}

.form-privacy-text {
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid var(--border);
  padding: 8px;
  font-size: 14px;
  height: 120px;
  overflow-y: auto;
  margin-bottom: 8px;
}

.form-action {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.form-action .btn {
  margin-bottom: 16px;
  width: 50%;
}

/* contactページにfooterのcta非表示 */
.contact+footer h2,
.contact+footer .footer-cta {
  display: none;
}

@media (min-width: 1024px) {
  .contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 80px;
    overflow: hidden;
  }

  .contact-lead {
    margin-bottom: 60px;
    text-align: center;
  }

  .sub-contact .contact-form .form-group {
    justify-content: center;
  }

  .form-group {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .form-label-wrapper {
    justify-content: flex-end;
    align-items: flex-start;
    width: 280px;
    margin-right: 20px;
    padding-top: 12px;
  }

  .form-label {
    margin-bottom: 0;
  }

  .required,
  .optional {
    margin-bottom: 0;
    margin-top: 2px;
  }

  .form-input,
  .form-select,
  .form-textarea,
  .form-privacy {
    width: 400px;
  }

  .form-radio {
    padding: 10px 0 6px;
    width: 400px;
  }

  .form-checkbox {
    padding: 10px 0 6px;
    width: 400px;
  }

  .form-display {
    width: 400px;
    padding-top: 10px;
    font-size: 14px;
  }

  /* .form-error {
    width: 100%;
    transform: translateX(calc(50% - 60px));
  } */

  .form-action {
    margin-left: auto;
    margin-right: auto;
    width: 400px;
  }

  /* .form-zan {
    width: 100%;
    padding-left: calc(50% - 50px);
    font-size: 14px;
  } */
}

/* thanks */
.thanks-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #fff;
  margin-top: 16px;
  margin-bottom: 40px;
}

.thanks-cta .cta-tel,
.thanks-cta .cta-form,
.thanks-cta .cta-line {
  width: 100%;
  max-width: 400px;
}

@media (min-width: 768px) {
  .thanks-cta {
    flex-direction: row;
    justify-content: center;
  }
}


/* contact form 7 調整 */
.confirm_area,
.thanks_area {
  display: none;
}

.wpcf7 .wpcf7-spinner {
  display: none !important;
}

.wpcf7-not-valid-tip {
  font-size: 14px;
  padding-top: 4px;
}

.wpcf7 form .wpcf7-response-output {
  /* border-radius: 4px;
  background-color: #fff;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto; */
  display: none;
}

.wpcf7-list-item.first {
  margin-left: 0;
}

.form-checkbox .wpcf7-list-item {
  margin-left: 0;
}

.form-privacy .wpcf7-list-item {
  margin-left: 0;
}

/* ------404------ */
.page-404 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 180px 24px;
}

.page-404 h1 {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
}

.page-404 .btn {
  margin-top: 40px;
}

/* 法人向けページ partner */
.partner {
  &.drawer--navbarTopGutter {
    padding-top: 0;
  }

  header {
    .drawer-brand {
      pointer-events: none;
    }

    .drawer-toggle.drawer-hamburger {
      display: none;
    }

    &.drawer-navbar--fixed {
      position: relative;
    }
  }

  .partner-mv {
    background: url(../img/partner_mvbg_sp.jpg);
    background-size: cover;
    aspect-ratio: 39 / 25;

    .partner-mv-inner {
      padding: 24px 16px;
    }

    .parter-mv-copy {
      max-width: 500px;
      filter: drop-shadow(0 4px 4px rgba(0, 0, 0, .5));

      img {
        max-width: 100%;
      }
    }

    .parter-mv-text {
      color: #fff;
      font-weight: bold;
      font-size: 16px;
      filter: drop-shadow(0 4px 4px rgba(0, 0, 0, .5));
    }
  }

  .partner-lead {
    font-size: 14px;
    margin-bottom: 16px;
    border: 3px solid var(--pink);
    padding: 16px;
    border-radius: 16px;
    background-color: #ffedee;
    width: fit-content;
    margin-inline: auto;
  }

  .plan {
    background-color: #fff;
    background: url(../img/partner_price_bg.png);

    .plan-card {
      border: 2px solid var(--primary);
      background-color: var(--primary-light);
      filter: drop-shadow(0 4px 4px rgba(0, 0, 0, .15));
    }
  }

  .region {
    background-color: var(--primary-light);
  }
}

@media (min-width: 768px) {
  .partner {
    header {
      .drawer-nav {
        display: none;
      }
    }

    .partner-mv {
      background: url(../img/partner_mvbg_pc.jpg);
      background-size: cover;
      background-position: right 20% top;
      height: 360px;
      aspect-ratio: 0;

      .partner-mv-inner {
        padding: 60px 48px;
        max-width: 1128px;
        margin-inline: auto;
      }
    }

    .partner-lead {
      text-align: center;
    }
  }
}

@media (min-width: 1024px) {
  .partner {
    &.drawer--navbarTopGutter {
      padding-top: 100px;
    }

    header {
      &.drawer-navbar--fixed {
        position: fixed;
      }

      &.drawer-navbar {
        height: 100px;
      }
    }

    .partner-lead {
      font-size: 18px;
      margin-bottom: 36px;
      margin-top: -40px
    }

    .region {
      max-width: none;
    }
  }
}