@charset "UTF-8";
/*共通スタイル*/
/* main colors */
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: 100%;
  font-family: "Noto Sans JP", sans-serif;
  color: hsl(30, 5%, 24%);
}

img,
svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

svg {
  max-width: 100%;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  cursor: pointer !important;
  text-decoration: none;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
ul.disc {
  list-style-type: disc;
  padding-left: 1.5em;
  list-style-position: outside;
}

.site_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}

.site_body {
  margin-bottom: auto;
}

.container-base {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
@media (min-width: 920px) {
  .container-base {
    padding: 0 3.3333333333vw;
  }
}
@media (min-width: 1200px) {
  .container-base {
    padding: 0 40px;
    max-width: 1520px;
  }
}
.container-base.mv {
  max-width: 1520px;
  padding: 0 20px;
}

/*ヘッダーのスタイル*/
.site_header {
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
}
@media (min-width: 920px) {
  .site_header {
    padding: clamp(20px, 2.2569444444vw, 39px) clamp(32px, 2.8935185185vw, 50px) clamp(20px, 2.2569444444vw, 39px) clamp(28px, 2.4884259259vw, 43px);
  }
}
.site_header_logo {
  width: 42.4%;
  position: relative;
  z-index: 999;
  transition: opacity 0.3s ease-out;
}
@media (min-width: 920px) {
  .site_header_logo {
    width: min(273px, 15.7986111111vw);
  }
}
.site_header_logo img {
  max-width: none;
  width: 100%;
}

.global_nav {
  position: relative;
  z-index: 99;
}
.global_nav_toggle {
  box-shadow: 0px 3px 10px 0px hsla(33, 84%, 22%, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: hsl(0, 0%, 100%);
  width: 34px;
  height: 34px;
  border: none;
  position: relative;
  z-index: 1001;
  transition: 0.3s linear;
  border-radius: 999px;
}
@media (min-width: 920px) {
  .global_nav_toggle {
    display: none;
  }
}
.global_nav_toggle_bar {
  height: 1px;
  background: hsl(33, 100%, 47%);
  display: block;
  transition: 0.3s linear;
  transition-property: transform, opacity, width;
  transform-origin: 100% 50%;
  right: 0;
  width: 12px;
}
.global_nav_toggle.is-active .global_nav_toggle_bar {
  background-color: hsl(33, 100%, 47%) !important;
}
.global_nav_toggle.is-active .global_nav_toggle_bar-top {
  transform: translate(-2px, 2px) rotate(-45deg);
}
.global_nav_toggle.is-active .global_nav_toggle_bar-mid {
  opacity: 0;
}
.global_nav_toggle.is-active .global_nav_toggle_bar-btm {
  transform: translate(-2px, -1px) rotate(45deg);
}
@media (max-width: 919px) {
  .global_nav_overlay {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    transition: all 0.3s linear;
    overflow-y: auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    transition: opacity 0.3s linear, visibility 0.3s linear;
  }
}
@media (max-width: 919px) {
  .global_nav_overlay.is-open {
    visibility: visible;
    opacity: 1;
  }
}
.global_nav_inner {
  position: relative;
  width: 100%;
  min-height: 100%;
  overflow: hidden;
}
@media (min-width: 920px) {
  .global_nav_inner {
    overflow: visible;
  }
}
.global_nav_inner .global_nav_circle_1 {
  z-index: 1;
  top: -78px;
  right: -41px;
}
.global_nav_inner .global_nav_circle_2 {
  z-index: 1;
  bottom: -400px;
  left: -283px;
}
.global_nav_container {
  display: flex;
  flex-direction: column;
  gap: 39px;
  padding: max(27.2264631043vw, 107px) 20px 239px;
  position: relative;
  margin: auto;
  width: 100%;
  min-height: 100%;
  background: hsl(0, 0%, 100%);
  overflow-y: auto;
}
@media (min-width: 920px) {
  .global_nav_container {
    flex-direction: row;
    align-items: center;
    gap: min(2.3148148148vw, 40px);
    padding: 16px 16px 16px 43px;
    width: auto;
    min-height: auto;
    box-shadow: 0px 6px 20px 0px hsla(33, 83%, 22%, 0.1);
    border-radius: 999px;
  }
}
.global_nav_list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  position: relative;
  z-index: 5;
  background: hsl(0, 0%, 100%);
}
@media (min-width: 920px) {
  .global_nav_list {
    gap: 10px;
    flex-direction: row;
    align-items: center;
    gap: 2.3148148148vw;
  }
}
.global_nav_list_item {
  opacity: 0;
  padding: 20px 0;
  border-top: 1px solid hsl(47, 15%, 88%);
}
@media (min-width: 920px) {
  .global_nav_list_item {
    opacity: 1;
    border-top: none;
    padding: 0;
    display: flex;
    align-items: center;
  }
}
.global_nav_list_item:last-child {
  border-bottom: 1px solid hsl(47, 15%, 88%);
}
@media (min-width: 920px) {
  .global_nav_list_item:last-child {
    border-bottom: none;
  }
}
.global_nav_list_link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  color: hsl(30, 5%, 24%);
}
@media (min-width: 920px) {
  .global_nav_list_link {
    display: inline-block;
  }
  .global_nav_list_link:hover .global_nav_list_link_jp::after {
    transform: scale(1, 1);
    transform-origin: left top;
  }
}
.global_nav_list_link_name {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (min-width: 920px) {
  .global_nav_list_link_name {
    display: inline-block;
  }
}
.global_nav_list_link_jp {
  font-weight: 700;
  font-size: 14px;
  text-box-trim: trim-both;
  line-height: 1.9;
  letter-spacing: 0.04em;
}
@media (min-width: 920px) {
  .global_nav_list_link_jp {
    font-size: clamp(12px, 0.9259259259vw, 16px);
    position: relative;
    display: inline-block;
  }
  .global_nav_list_link_jp::after {
    background-color: hsl(30, 5%, 24%);
    /* 下線の色 */
    bottom: 0;
    /* 要素の下端からの距離 */
    content: "";
    /* 要素に内容を追加 */
    height: 1px;
    /* 下線の高さ */
    left: 0;
    /* 要素の左端からの距離 */
    position: absolute;
    /* 絶対位置指定 */
    transform: scale(0, 1);
    /* 下線を横方向に0倍、縦方向に1倍に変形（非表示） */
    transform-origin: right top;
    /* 変形の原点を右上に指定 */
    transition: transform 0.3s;
    /* 変形をアニメーション化 */
    width: 100%;
    /* 要素の幅 */
  }
}
.global_nav_list_link_en {
  color: hsl(33, 100%, 47%);
  font-family: "Albert Sans", sans-serif;
  font-weight: 700;
  font-size: 24px;
  text-box-trim: trim-both;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media (min-width: 920px) {
  .global_nav_list_link_en {
    display: none;
  }
}
.global_nav_list_link_arrow {
  background: hsl(33, 100%, 47%);
  padding: 6px 20px;
  border-radius: 999px;
  display: flex;
  align-items: center;
}
@media (min-width: 920px) {
  .global_nav_list_link_arrow {
    display: none;
  }
}
.global_nav_contact {
  background: hsl(33, 100%, 47%);
  padding: 9px 45px;
  border-radius: 999px;
  max-width: 190px;
  z-index: 10;
  opacity: 0;
}
@media (min-width: 920px) {
  .global_nav_contact {
    opacity: 1;
    padding: clamp(4px, 0.5208333333vw, 9px) clamp(30px, 1.7361111111vw, 16px);
    max-width: none;
    transition: background-color 0.3s ease-out;
  }
  .global_nav_contact:hover {
    background-color: hsl(36, 6%, 15%);
  }
}
.global_nav_contact span {
  color: hsl(0, 0%, 100%);
  font-weight: 500;
  font-size: 16px;
  text-box-trim: trim-both;
  line-height: 1.9;
  letter-spacing: 0.04em;
  text-align: center;
  white-space: nowrap;
}
@media (min-width: 920px) {
  .global_nav_contact span {
    font-size: clamp(12px, 0.9259259259vw, 16px);
  }
}

/*フッターのスタイル*/
.site_footer {
  background: hsl(36, 6%, 15%);
  padding: 9px 12px 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 99;
}
@media (min-width: 920px) {
  .site_footer {
    padding: 3.4722222222vw 9.0277777778vw 4.0509259259vw 7.7546296296vw;
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
    align-items: stretch;
  }
}
.site_footer_logo {
  width: 90.1%;
  transition: opacity 0.3s ease-out;
}
.site_footer_logo:hover {
  opacity: 0.6;
}
@media (min-width: 600px) {
  .site_footer_logo {
    width: 60%;
  }
}
@media (min-width: 920px) {
  .site_footer_logo {
    width: 18.4027777778vw;
  }
}
.site_footer_logo img {
  max-width: none;
  width: 100%;
}
.site_footer_top {
  display: flex;
  flex-direction: column;
  padding-bottom: 40px;
}
@media (min-width: 920px) {
  .site_footer_top {
    padding-bottom: 0;
  }
}
.site_footer_top_inner {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-top: 62px;
  padding: 0 8px;
}
@media (min-width: 920px) {
  .site_footer_top_inner {
    gap: 2.3148148148vw;
    margin-top: max(1.5625vw, 20px);
    padding: 0;
  }
}
.site_footer_address {
  color: hsl(0, 0%, 100%);
  font-weight: 400;
  font-size: 14px;
  text-box-trim: trim-both;
  line-height: 1.9;
  letter-spacing: 0.04em;
}
@media (min-width: 920px) {
  .site_footer_address {
    font-size: max(0.8101851852vw, 12px);
  }
}
.site_footer_instagram {
  transition: opacity 0.3s ease-out;
}
.site_footer_instagram:hover {
  opacity: 0.6;
}
.site_footer_bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 8px;
}
@media (min-width: 920px) {
  .site_footer_bottom {
    padding: 0;
    gap: 12px;
  }
}
.site_footer_nav_service {
  color: hsl(0, 0%, 100%);
  font-weight: 700;
  font-size: 16px;
  text-box-trim: trim-both;
  line-height: 1.875;
  letter-spacing: 0.04em;
  position: relative;
  display: inline-block;
}
@media (min-width: 920px) {
  .site_footer_nav_service {
    font-size: max(0.9259259259vw, 14px);
  }
}
.site_footer_nav_service::after {
  background-color: hsl(0, 0%, 100%);
  /* 下線の色 */
  bottom: 0;
  /* 要素の下端からの距離 */
  content: "";
  /* 要素に内容を追加 */
  height: 1px;
  /* 下線の高さ */
  left: 0;
  /* 要素の左端からの距離 */
  position: absolute;
  /* 絶対位置指定 */
  transform: scale(0, 1);
  /* 下線を横方向に0倍、縦方向に1倍に変形（非表示） */
  transform-origin: right top;
  /* 変形の原点を右上に指定 */
  transition: transform 0.3s ease-out;
  /* 変形をアニメーション化 */
  width: 100%;
  /* 要素の幅 */
}
.site_footer_nav_service:hover::after {
  transform-origin: left top;
  /* 変形の原点を左上に指定 */
  transform: scale(1, 1);
  /* 下線を横方向に1倍、縦方向に1倍に変形（表示） */
}
.site_footer_nav_container {
  display: flex;
  flex-direction: column;
}
@media (min-width: 920px) {
  .site_footer_nav_container {
    flex-direction: row;
  }
}
.site_footer_nav_wrapper {
  padding: 32px 0;
  border-top: 1px solid hsl(0, 0%, 100%);
}
@media (min-width: 920px) {
  .site_footer_nav_wrapper {
    padding: 0;
    border-top: none;
  }
}
@media (min-width: 920px) {
  .site_footer_nav_wrapper:first-child {
    padding-right: 3.4722222222vw;
    border-right: 1px solid hsl(0, 0%, 100%);
  }
}
.site_footer_nav_wrapper:first-child .site_footer_nav_list {
  margin-top: 26px;
}
@media (min-width: 920px) {
  .site_footer_nav_wrapper:first-child .site_footer_nav_list {
    margin-top: max(1.5046296296vw, 10px);
  }
}
.site_footer_nav_wrapper:last-child {
  border-bottom: 1px solid hsl(0, 0%, 100%);
}
@media (min-width: 920px) {
  .site_footer_nav_wrapper:last-child {
    padding-left: 3.4722222222vw;
    border-bottom: none;
  }
}
.site_footer_nav_list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 920px) {
  .site_footer_nav_list {
    gap: max(0.6944444444vw, 12px);
  }
}
.site_footer_nav_list_link {
  color: hsl(0, 0%, 100%);
  font-weight: 500;
  font-size: 14px;
  text-box-trim: trim-both;
  line-height: 1.857;
  position: relative;
  display: inline-block;
}
@media (min-width: 920px) {
  .site_footer_nav_list_link {
    font-size: max(0.8101851852vw, 12px);
  }
}
.site_footer_nav_list_link::after {
  background-color: hsl(0, 0%, 100%);
  /* 下線の色 */
  bottom: 0;
  /* 要素の下端からの距離 */
  content: "";
  /* 要素に内容を追加 */
  height: 1px;
  /* 下線の高さ */
  left: 0;
  /* 要素の左端からの距離 */
  position: absolute;
  /* 絶対位置指定 */
  transform: scale(0, 1);
  /* 下線を横方向に0倍、縦方向に1倍に変形（非表示） */
  transform-origin: right top;
  /* 変形の原点を右上に指定 */
  transition: transform 0.3s ease-out;
  /* 変形をアニメーション化 */
  width: 100%;
  /* 要素の幅 */
}
.site_footer_nav_list_link:hover::after {
  transform-origin: left top;
  /* 変形の原点を左上に指定 */
  transform: scale(1, 1);
  /* 下線を横方向に1倍、縦方向に1倍に変形（表示） */
}

.copyright {
  color: hsl(34, 7%, 58%);
  font-family: "Kumbh Sans", sans-serif;
  font-weight: 400;
  font-size: 12px;
  text-box-trim: trim-both;
  line-height: 1.9;
  letter-spacing: 0.04em;
  margin-top: 36px;
  overflow-wrap: break-word;
  word-break: normal;
}
@media (min-width: 920px) {
  .copyright {
    font-size: max(0.8101851852vw, 12px);
    text-align: right;
    margin-top: auto;
  }
}

.contact_cta {
  background: hsl(157, 45%, 58%);
  border-radius: 999px;
  color: hsl(0, 0%, 100%);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1019607843);
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  width: calc(100% - 40px);
  padding: 16px 12px;
}
.contact_cta:hover .contact_cta_arrow {
  transform: translateY(5px);
}
@media (min-width: 600px) {
  .contact_cta {
    width: auto;
    left: auto;
    transform: none;
    right: 20px;
    flex-direction: column;
    gap: 12px;
    border-radius: 999px;
    padding: 57px 33px 36px;
  }
}
.contact_cta_ttl {
  font-family: "Albert Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.9;
  text-box-trim: trim-both;
  letter-spacing: 0.04em;
}
@media (min-width: 600px) {
  .contact_cta_ttl {
    font-size: 18px;
  }
}
.contact_cta_txt {
  font-weight: 900;
  font-size: 16px;
  line-height: 1.5;
  text-box-trim: trim-both;
  letter-spacing: 0.04em;
  text-align: center;
}
@media (min-width: 600px) {
  .contact_cta_txt {
    font-size: 20px;
  }
}
.contact_cta_txt br {
  display: none;
}
@media (min-width: 600px) {
  .contact_cta_txt br {
    display: block;
  }
}
.contact_cta_arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease-out;
}
.contact_cta.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  /* 消えている間はクリックできないようにする */
}

.section_ttl {
  color: hsl(33, 100%, 47%);
  font-family: "Albert Sans", sans-serif;
  font-weight: 700;
  font-size: 50px;
  text-box-trim: trim-both;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-align: center;
}
@media (min-width: 920px) {
  .section_ttl {
    font-size: min(4.6296296296vw, 80px);
  }
}
.section_ttl.white {
  color: hsl(0, 0%, 100%);
}
.section_ttl_jp {
  font-weight: 800;
  font-size: 20px;
  text-box-trim: trim-both;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-align: center;
  font-feature-settings: "palt";
}
@media (min-width: 920px) {
  .section_ttl_jp {
    font-size: clamp(10px, 1.9675925926vw, 34px);
  }
}
@media (min-width: 920px) {
  .section_ttl_jp.service {
    font-size: clamp(20px, 1.7361111111vw, 30px);
  }
}
.section_ttl_jp.about {
  text-align: left;
  font-size: 24px;
}
@media (min-width: 920px) {
  .section_ttl_jp.about {
    font-size: clamp(20px, 2.3148148148vw, 40px);
  }
}
.section_ttl_jp.feature {
  text-align: left;
}
@media (min-width: 920px) {
  .section_ttl_jp.feature {
    font-size: clamp(20px, 2.3148148148vw, 40px);
  }
}
.section_ttl_jp.white {
  color: hsl(0, 0%, 100%);
}
@media (min-width: 920px) {
  .section_ttl_jp.small {
    font-size: clamp(20px, 1.7361111111vw, 30px);
  }
}
.section_ttl_wrap {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
@media (min-width: 920px) {
  .section_ttl_wrap {
    flex-direction: row;
    align-items: center;
    gap: min(4.0509259259vw, 70px);
  }
}
.section_ttl_wrap.center {
  flex-direction: column;
  align-items: center;
}
@media (min-width: 920px) {
  .section_ttl_wrap.center {
    gap: clamp(16px, 1.1574074074vw, 20px) !important;
  }
}
@media (min-width: 920px) {
  .section_ttl_wrap.column {
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(12px, 1.1574074074vw, 20px);
  }
  .section_ttl_wrap.column .section_ttl,
  .section_ttl_wrap.column .section_ttl_jp {
    text-align: left;
  }
}
.section_ttl_wrap.feature {
  align-items: flex-start;
}
.section_ttl_large {
  color: hsl(33, 100%, 47%);
  font-family: "Albert Sans", sans-serif;
  font-weight: 700;
  font-size: 50px;
  text-box-trim: trim-both;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media (min-width: 920px) {
  .section_ttl_large {
    font-size: min(5.2083333333vw, 90px);
  }
}

.ttl_link_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media (min-width: 920px) {
  .ttl_link_wrap {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }
}

.common_link {
  border: 1px solid hsl(47, 15%, 88%);
  padding: 18px 18px 18px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 232px;
  border-radius: 999px;
  background-color: hsl(0, 0%, 100%);
  transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
  width: 100%;
  flex-shrink: 0;
}
@media (min-width: 920px) {
  .common_link {
    max-width: 232px;
    padding: clamp(12px, 1.0416666667vw, 18px) clamp(12px, 1.0416666667vw, 18px) clamp(12px, 1.0416666667vw, 18px) clamp(20px, 1.7361111111vw, 30px);
  }
}
.common_link:hover {
  background-color: hsl(33, 100%, 47%);
  border-color: hsl(33, 100%, 47%);
}
.common_link:hover .common_link_txt {
  color: hsl(0, 0%, 100%);
}
.common_link:hover .common_link_arrow {
  background-color: hsl(36, 6%, 15%);
}
.common_link.feature {
  max-width: 291px;
  background-color: hsl(0, 0%, 100%) !important;
}
.common_link.feature .common_link_txt {
  color: hsl(30, 5%, 24%) !important;
}
@media (min-width: 920px) {
  .common_link.feature {
    max-width: none;
    width: 291px;
  }
}
.common_link.issue {
  max-width: none;
  background-color: hsl(33, 100%, 47%);
  border-color: hsl(33, 100%, 47%);
  width: 93%;
  margin: 32px auto 0;
}
.common_link.issue:hover {
  background-color: hsl(33, 100%, 47%);
  border-color: hsl(33, 100%, 47%);
}
.common_link.issue:hover .common_link_arrow {
  background-color: hsl(0, 0%, 100%);
}
@media (min-width: 600px) {
  .common_link.issue {
    width: 60%;
  }
}
@media (min-width: 920px) {
  .common_link.issue {
    width: 80%;
  }
}
@media (min-width: 1580px) {
  .common_link.issue {
    width: 100%;
  }
}
.common_link.issue .common_link_txt {
  color: hsl(0, 0%, 100%);
}
.common_link.issue .common_link_arrow {
  background-color: hsl(0, 0%, 100%);
}
.common_link_txt {
  font-family: "Albert Sans", sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-box-trim: trim-both;
  line-height: 1.9;
  letter-spacing: 0.04em;
  transition: color 0.3s ease-out;
}
@media (min-width: 920px) {
  .common_link_txt {
    font-size: 13px;
  }
}
.common_link_arrow {
  padding: 6px 20px;
  background-color: hsl(33, 100%, 47%);
  border-radius: 999px;
  display: flex;
  align-items: center;
  transition: background-color 0.3s ease-out;
}

.common_txt {
  font-weight: 400;
  font-size: 16px;
  text-box-trim: trim-both;
  line-height: 1.9;
  letter-spacing: 0.04em;
}
@media (min-width: 920px) {
  .common_txt {
    font-size: clamp(14px, 0.9259259259vw, 16px);
  }
}
@media (min-width: 920px) {
  .common_txt.pc_center {
    text-align: center;
  }
}
.common_txt.center {
  text-align: center;
}
.common_txt.white {
  color: hsl(0, 0%, 100%);
}
.common_txt .bold {
  font-weight: 700;
}
.common_txt .br_tab {
  display: none;
}
@media (min-width: 920px) {
  .common_txt .br_tab {
    display: block;
  }
}
@media (min-width: 1200px) {
  .common_txt .br_tab {
    display: none;
  }
}
@media (min-width: 920px) {
  .common_txt .br_sp {
    display: none;
  }
}
.common_txt .br_pc {
  display: none;
}
@media (min-width: 920px) {
  .common_txt .br_pc {
    display: block;
  }
}

.common_ttl_txt_wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 920px) {
  .common_ttl_txt_wrapper {
    gap: min(2.8935185185vw, 50px);
  }
}

.news_list_wrap {
  max-width: 1020px;
  margin: 0 auto 100px;
}
@media (min-width: 920px) {
  .news_list_wrap {
    margin: 0 auto min(10.4166666667vw, 180px);
  }
}
.news_list_item {
  border-top: 1px solid hsl(45, 21%, 93%);
}
.news_list_item:last-child {
  border-bottom: 1px solid hsl(45, 21%, 93%);
}
.news_list_item_link {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 15px 0 23px;
}
@media (min-width: 920px) {
  .news_list_item_link {
    align-items: center;
    padding: 31px 0 30px;
    gap: 20px;
  }
}
.news_list_item_link:hover .common_link_arrow {
  background: hsl(36, 6%, 15%);
}
.news_list_item_inner_top {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}
@media (min-width: 920px) {
  .news_list_item_inner_top {
    flex-direction: row;
    align-items: center;
    gap: 30px;
  }
}
.news_list_item_inner_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.news_list_item_inner_middle {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.news_list_item_date {
  font-weight: 400;
  font-size: 14px;
  text-box-trim: trim-both;
  line-height: 1.9;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.news_list_item_category {
  color: hsl(33, 100%, 47%);
  font-weight: 400;
  font-size: 12px;
  text-box-trim: trim-both;
  line-height: 1.9;
  letter-spacing: 0.04em;
  background: hsl(32, 87%, 94%);
  padding: 4px 14px;
  border-radius: 999px;
  flex-shrink: 0;
}
.news_list_item_category_wrap {
  width: 165px;
}
.news_list_item_ttl {
  overflow-wrap: break-word;
  font-weight: 400;
  font-size: 16px;
  text-box-trim: trim-both;
  line-height: 1.9;
  letter-spacing: 0.04em;
  flex: 1;
  min-width: 0;
}

@media (min-width: 920px) {
  .news_sp {
    display: none;
  }
}

.news_pc {
  display: none;
}
@media (min-width: 920px) {
  .news_pc {
    display: flex;
  }
}

.fadeIn {
  opacity: 0;
  transition: opacity 1.5s ease;
}
.fadeIn.delay-15 {
  transition-delay: 1s;
}

/* 画面に入った時に付与されるクラス */
.fadeIn.is-animated {
  opacity: 1;
}

.fadeUp {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.fadeUp.is-animated {
  /* 画面内に入ってJSからクラスが付与された状態 */
  opacity: 1;
  transform: translateY(0);
}
.fadeUp.delay-05 {
  transition-delay: 0.5s;
}

:root {
  --dot-size-4: 4px;
  --dot-size-6: 6px;
  --dot-size-7: 7px;
  --dot-size-8: 8px;
  --dot-size-9: 9px;
  --dot-size-10: 10px;
  --dot-size-11: 11px;
  --dot-size-12: 12px;
  --dot-size-13: 13px;
  --dot-size-14: 14px;
  --dot-size-15: 15px;
  --dot-size-18: 18px;
  --dot-size-21: 21px;
  --dot-size-22: 22px;
  --dot-size-23: 23px;
  --dot-size-30: 30px;
  --dot-size-35: 35px;
}

.dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(calc(-50% + var(--tx, 0px) + var(--x, 0px)), calc(-50% + var(--ty, 0px) + var(--y, 0px)));
  border-radius: 999px;
  will-change: transform;
  transition: transform 0.1s linear;
  z-index: 0;
}
.dot.green {
  background-color: hsl(157, 45%, 58%);
}
.dot.green.n-1 {
  width: var(--dot-size-8);
  height: var(--dot-size-8);
  --tx: -35.11vw;
  --ty: -30.89vh;
}
@media (min-width: 920px) {
  .dot.green.n-1 {
    width: var(--dot-size-22);
    height: var(--dot-size-22);
    --tx: -44.1vw;
    --ty: -23.8vh;
  }
}
.dot.green.n-2 {
  width: var(--dot-size-15);
  height: var(--dot-size-15);
  --tx: 31.80vw;
  --ty: 0vh;
}
@media (min-width: 920px) {
  .dot.green.n-2 {
    width: var(--dot-size-12);
    height: var(--dot-size-12);
    --tx: -6.48vw;
    --ty: -39.23vh;
  }
}
.dot.green.n-3 {
  display: none;
}
@media (min-width: 920px) {
  .dot.green.n-3 {
    display: block;
    width: var(--dot-size-12);
    height: var(--dot-size-12);
    --tx: 1.85vw;
    --ty: 23.70vh;
  }
}
.dot.green.n-4 {
  display: none;
}
@media (min-width: 920px) {
  .dot.green.n-4 {
    display: block;
    width: var(--dot-size-35);
    height: var(--dot-size-35);
    --tx: 38.48vw;
    --ty: 24.28vh;
  }
}
.dot.orange {
  background-color: hsl(33, 100%, 47%);
}
.dot.orange.n-1 {
  width: var(--dot-size-14);
  height: var(--dot-size-14);
  --tx: 39.18vw;
  --ty: -23.96vh;
}
@media (min-width: 920px) {
  .dot.orange.n-1 {
    width: var(--dot-size-30);
    height: var(--dot-size-30);
    --tx: -16.49vw;
    --ty: -30.08vh;
  }
}
.dot.orange.n-2 {
  width: var(--dot-size-22);
  height: var(--dot-size-22);
  --tx: -38.17vw;
  --ty: 28.25vh;
}
@media (min-width: 920px) {
  .dot.orange.n-2 {
    width: var(--dot-size-12);
    height: var(--dot-size-12);
    --tx: -42.18vw;
    --ty: 21.33vh;
  }
}
.dot.orange.n-3 {
  width: var(--dot-size-14);
  height: var(--dot-size-14);
  --tx: 37.91vw;
  --ty: 32.91vh;
}
@media (min-width: 920px) {
  .dot.orange.n-3 {
    width: var(--dot-size-30);
    height: var(--dot-size-30);
    --tx: 3.13vw;
    --ty: 34.22vh;
  }
}
.dot.orange.n-4 {
  display: none;
}
@media (min-width: 920px) {
  .dot.orange.n-4 {
    display: block;
    width: var(--dot-size-14);
    height: var(--dot-size-14);
    --tx: 36.35vw;
    --ty: 57.82vh;
  }
}
.dot.yellow {
  background-color: hsl(49, 90%, 62%);
}
.dot.yellow.n-1 {
  width: var(--dot-size-12);
  height: var(--dot-size-12);
  --tx: -21.37vw;
  --ty: 6.43vh;
}
@media (min-width: 920px) {
  .dot.yellow.n-1 {
    width: var(--dot-size-22);
    height: var(--dot-size-22);
    --tx: -3.01vw;
    --ty: -21.63vh;
  }
}
.dot.yellow.n-2 {
  display: none;
}
@media (min-width: 920px) {
  .dot.yellow.n-2 {
    display: block;
    width: var(--dot-size-12);
    height: var(--dot-size-12);
    --tx: -13.08vw;
    --ty: 15.04vh;
  }
}
.dot.yellow.n-3 {
  display: none;
}
@media (min-width: 920px) {
  .dot.yellow.n-3 {
    display: block;
    width: var(--dot-size-12);
    height: var(--dot-size-12);
    --tx: 22.68vw;
    --ty: 67.55vh;
  }
}

.dot_subPage {
  position: absolute;
  border-radius: 999px;
  z-index: 0;
  will-change: transform;
  transform: translate(var(--x, 0px), var(--y, 0px));
}
.dot_subPage.green {
  background-color: hsl(157, 45%, 58%);
}
.dot_subPage.green.n-1 {
  width: var(--dot-size-6);
  height: var(--dot-size-6);
  top: 14.7582697201vw;
  left: 37.1501272265vw;
}
@media (min-width: 920px) {
  .dot_subPage.green.n-1 {
    width: var(--dot-size-8);
    height: var(--dot-size-8);
    top: 17.3032407407vw;
    left: -6.8865740741vw;
  }
}
.dot_subPage.green.n-2 {
  width: var(--dot-size-9);
  height: var(--dot-size-9);
  bottom: 22.1374045802vw;
  right: 16.5394402036vw;
}
@media (min-width: 920px) {
  .dot_subPage.green.n-2 {
    width: var(--dot-size-12);
    height: var(--dot-size-12);
    top: 9.2592592593vw;
    left: 11.9212962963vw;
    bottom: auto;
    right: auto;
  }
}
.dot_subPage.green.n-3 {
  width: var(--dot-size-4);
  height: var(--dot-size-4);
  top: 5.5979643766vw;
  right: 16.0305343511vw;
}
@media (min-width: 920px) {
  .dot_subPage.green.n-3 {
    width: var(--dot-size-8);
    height: var(--dot-size-8);
    top: 4.9768518519vw;
    left: 35.8217592593vw;
    right: auto;
  }
}
.dot_subPage.orange {
  background-color: hsl(33, 100%, 47%);
}
.dot_subPage.orange.n-1 {
  width: var(--dot-size-10);
  height: var(--dot-size-10);
  top: 10.1781170483vw;
  right: 39.1857506361vw;
}
@media (min-width: 920px) {
  .dot_subPage.orange.n-1 {
    width: var(--dot-size-30);
    height: var(--dot-size-30);
    top: 3.7615740741vw;
    left: 19.7916666667vw;
    right: auto;
  }
}
.dot_subPage.orange.n-2 {
  width: var(--dot-size-6);
  height: var(--dot-size-6);
  bottom: 16.7938931298vw;
  right: 6.106870229vw;
}
@media (min-width: 920px) {
  .dot_subPage.orange.n-2 {
    width: var(--dot-size-12);
    height: var(--dot-size-12);
    bottom: 3.7615740741vw;
    left: 27.025462963vw;
    top: auto;
    right: auto;
  }
}
.dot_subPage.yellow {
  background-color: hsl(49, 90%, 62%);
}
.dot_subPage.yellow.n-1 {
  width: var(--dot-size-11);
  height: var(--dot-size-11);
  top: 17.048346056vw;
  right: 17.8117048346vw;
}
@media (min-width: 920px) {
  .dot_subPage.yellow.n-1 {
    width: var(--dot-size-8);
    height: var(--dot-size-8);
    top: 11.5740740741vw;
    left: -2.5462962963vw;
    right: auto;
  }
}
.dot_subPage.yellow.n-2 {
  width: var(--dot-size-6);
  height: var(--dot-size-6);
  top: 17.5572519084vw;
  right: 2.2900763359vw;
}
@media (min-width: 920px) {
  .dot_subPage.yellow.n-2 {
    width: var(--dot-size-22);
    height: var(--dot-size-22);
    top: 10.9953703704vw;
    left: 30.3240740741vw;
    right: auto;
  }
}
.dot_subPage.yellow.n-3 {
  display: none;
}
@media (min-width: 920px) {
  .dot_subPage.yellow.n-3 {
    display: block;
    width: var(--dot-size-12);
    height: var(--dot-size-12);
    bottom: 5.7291666667vw;
    left: 42.3611111111vw;
  }
}

.service_arrow {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-top: auto;
}

.curve {
  position: absolute;
  top: -50px;
  right: 0;
}
@media (min-width: 920px) {
  .curve {
    top: -117px;
  }
}
@media (min-width: 920px) {
  .curve.subPage_head {
    top: -144px;
  }
}
.curve img {
  max-width: none;
  width: 100%;
}
.curve.subPage {
  bottom: 0;
  right: 0;
  top: auto;
}
.curve.service_contact_curve {
  top: -49px;
}
@media (min-width: 920px) {
  .curve.service_contact_curve {
    top: -117px;
  }
}

.circle {
  position: absolute;
}
@media (min-width: 920px) {
  .circle .sp {
    visibility: hidden;
    pointer-events: none;
    width: 0;
    height: 0;
  }
}
.circle .pc {
  visibility: hidden;
  pointer-events: none;
  width: 0;
  height: 0;
}
@media (min-width: 920px) {
  .circle .pc {
    visibility: visible;
    width: 100%;
    height: 100%;
  }
}
.circle circle {
  /* 共通の見た目設定だけ */
  stroke-linecap: round;
}

.subPage_common_head {
  padding: 82px 0 25px;
  border-bottom: 1px solid hsl(47, 15%, 88%);
  position: relative;
}
@media (min-width: 920px) {
  .subPage_common_head {
    padding: min(13.8888888889vw, 240px) 0 clamp(16px, 1.3310185185vw, 23px);
  }
}
.subPage_common_head_wrap {
  padding-bottom: 50px;
  position: relative;
}
@media (min-width: 920px) {
  .subPage_common_head_wrap {
    padding-bottom: 100px;
  }
}
.subPage_common_head_wrap.single {
  padding-bottom: 50px;
}
@media (min-width: 920px) {
  .subPage_common_head_wrap.single {
    padding-bottom: 80px;
  }
}
.subPage_common_head_wrap.news {
  padding-bottom: 30px;
}
@media (min-width: 920px) {
  .subPage_common_head_wrap.news {
    padding-bottom: 80px;
  }
}
.subPage_common_head_wrap.privacy {
  padding-bottom: 40px;
}
@media (min-width: 920px) {
  .subPage_common_head_wrap.privacy {
    padding-bottom: 110px;
  }
}
.subPage_common_ttl {
  color: hsl(33, 100%, 47%);
  font-family: "Albert Sans", sans-serif;
  font-weight: 700;
  font-size: 50px;
  text-box-trim: trim-both;
  line-height: 1.9;
  letter-spacing: 0.04em;
}
@media (min-width: 920px) {
  .subPage_common_ttl {
    font-size: min(4.6296296296vw, 80px);
  }
}
@media (min-width: 920px) {
  .subPage_common_ttl .br_sp {
    display: none;
  }
}
.subPage_common_ttl.privacy {
  line-height: 1.1;
  letter-spacing: 0%;
}
@media (min-width: 920px) {
  .subPage_common_ttl.privacy {
    line-height: 1.9;
    letter-spacing: 0.04em;
  }
}
.subPage_common_ttl_jp {
  font-weight: 900;
  font-style: Black;
  font-size: 20px;
  text-box-trim: trim-both;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
@media (min-width: 920px) {
  .subPage_common_ttl_jp {
    font-size: clamp(20px, 1.7361111111vw, 30px);
    line-height: 1.6;
    text-align: right;
  }
}
.subPage_common_ttl_wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 920px) {
  .subPage_common_ttl_wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.subPage_body {
  position: relative;
  background: #F4F3F0;
  border-radius: 50px 0 0 0;
}
@media (min-width: 920px) {
  .subPage_body {
    border-radius: 150px 0 0 0;
  }
}
.subPage_body_inner {
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}
@media (min-width: 920px) {
  .subPage_body_inner {
    padding: min(160px, 9.2592592593vw) 0;
  }
}
.subPage_body_inner.post {
  padding: 50px 0 60px;
}
@media (min-width: 920px) {
  .subPage_body_inner.post {
    padding: min(100px, 5.787037037vw) 0 min(8.1018518519vw, 140px);
  }
}
.subPage_body_inner.contact {
  padding: 50px 0 100px;
}
@media (min-width: 920px) {
  .subPage_body_inner.contact {
    padding: 120px 0 180px;
  }
}
.subPage_body.white {
  background: hsl(0, 0%, 100%);
}
.subPage_body .news_list .news_list_item:first-child {
  border-top: none;
}
.subPage_body .subPage_circle_1 {
  z-index: 0;
  top: -122px;
  right: -163px;
}
@media (min-width: 920px) {
  .subPage_body .subPage_circle_1 {
    max-width: none;
    top: -19.6759259259vw;
    right: -18.0555555556vw;
    width: min(48.6111111111vw, 840px);
  }
}
.subPage_body .subPage_circle_1.small {
  z-index: 0;
  top: -74px;
  right: -69px;
}
@media (min-width: 920px) {
  .subPage_body .subPage_circle_1.small {
    max-width: none;
    top: -17.5347222222vw;
    right: -21.5856481481vw;
    width: min(48.6111111111vw, 840px);
  }
}
@media (min-width: 920px) {
  .subPage_body .curve.subPage_body_head {
    top: -150px;
  }
}

.subPage_section_ttl {
  font-weight: 900;
  font-size: 20px;
  text-box-trim: trim-both;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-align: center;
  font-feature-settings: "palt";
}
@media (min-width: 920px) {
  .subPage_section_ttl {
    font-size: clamp(20px, 1.7361111111vw, 30px);
  }
}
@media (min-width: 920px) {
  .subPage_section_ttl .br_sp {
    display: none;
  }
}
.subPage_section_ttl_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.subPage_section_ttl_en {
  color: hsl(33, 100%, 47%);
  font-family: "Albert Sans", sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-box-trim: trim-both;
  line-height: 1.9;
  letter-spacing: 0.04em;
  text-align: center;
}
@media (min-width: 920px) {
  .subPage_section_ttl_en {
    font-size: clamp(12px, 0.8101851852vw, 14px);
  }
}

.category_img {
  flex-shrink: 0;
}
.category_wrap {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid hsl(47, 15%, 88%);
}
@media (min-width: 920px) {
  .category_wrap {
    padding: 21px 10px 20px;
  }
}
.category_list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
}
@media (min-width: 920px) {
  .category_list {
    gap: 6px;
  }
}
.category_list.case {
  gap: 10px;
}
@media (min-width: 920px) {
  .category_list.case {
    gap: 12px;
  }
}
.category_list_item_link {
  background: hsl(32, 87%, 94%);
  border-radius: 999px;
  font-weight: 400;
  font-size: 12px;
  text-box-trim: trim-both;
  line-height: 1.9;
  letter-spacing: 0.04em;
  text-align: center;
  color: hsl(33, 100%, 47%);
  padding: 6px 16px;
}
.category_list_item_link.case {
  font-weight: 700;
  font-size: 14px;
  text-box-trim: trim-both;
  line-height: 1.6;
  letter-spacing: 0.04em;
  border-radius: 4px;
  padding: 3px 8px;
}
@media (min-width: 920px) {
  .category_list_item_link.case {
    font-size: 18px;
    line-height: 1.9;
    padding: 3px 10px;
  }
}
.category_list_item_link.is-all {
  padding: 6px 22px;
}
@media (min-width: 920px) {
  .category_list_item_link.is-all {
    padding: 6px 31px;
  }
}
.category_list_item_link.is-all.case {
  padding: 3px 20px;
}
@media (min-width: 920px) {
  .category_list_item_link.is-all.case {
    padding: 3px 30px;
  }
}
.category_list_item_link.is-active {
  background: #F08200;
  color: hsl(0, 0%, 100%);
}

.archive_list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  z-index: 5;
}
@media (min-width: 600px) {
  .archive_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    gap: 30px;
  }
}
@media (min-width: 920px) {
  .archive_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    gap: clamp(20px, 2.7777777778vw, 48px);
  }
}
.archive_list_item_link {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}
@media (min-width: 920px) {
  .archive_list_item_link {
    border-radius: 20px;
  }
}
.archive_list_item_link:hover .archive_list_item_img img {
  transform: scale(1.05);
}
.archive_list_item_link_bottom {
  background: hsl(0, 0%, 100%);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
@media (min-width: 920px) {
  .archive_list_item_link_bottom {
    padding: 30px 30px 50px;
    gap: 20px;
  }
}
.archive_list_item_link_bottom_head.column {
  display: flex;
  align-items: center;
  gap: 16px;
}
.archive_list_item_link_bottom_head.works {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 920px) {
  .archive_list_item_link_bottom_head.works {
    gap: 22px;
  }
}
.archive_list_item_info_date {
  color: #6B6660;
  font-weight: 400;
  font-size: 14px;
  text-box-trim: trim-both;
  line-height: 1.9;
  letter-spacing: 0.04em;
}
.archive_list_item_cat {
  font-weight: 400;
  font-size: 12px;
  text-box-trim: trim-both;
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: #F08200;
  width: fit-content;
  background: #FDF1E3;
  border-radius: 999px;
  padding: 3px 14px;
}
.archive_list_item_img {
  aspect-ratio: 353/234;
  overflow: hidden;
  background: hsl(0, 0%, 100%);
}
@media (min-width: 920px) {
  .archive_list_item_img {
    aspect-ratio: 448/298;
  }
}
.archive_list_item_img img {
  width: 100%;
  height: 100%;
  max-width: none;
  transition: transform 0.6s ease-out;
  object-fit: cover;
}
.archive_list_item_ttl {
  font-weight: 700;
  font-size: 18px;
  text-box-trim: trim-both;
  line-height: 1.6;
}
@media (min-width: 920px) {
  .archive_list_item_ttl {
    font-size: clamp(16px, 1.1574074074vw, 20px);
  }
}
.archive_list_item_detail {
  color: #6B6660;
  font-weight: 400;
  font-size: 14px;
  text-box-trim: trim-both;
  line-height: 1.9;
  letter-spacing: 0.04em;
}
.archive_list_item_category.works {
  width: fit-content;
  border-radius: 2px;
  color: hsl(33, 100%, 47%);
  font-weight: 700;
  font-size: 12px;
  text-box-trim: trim-both;
  line-height: 1.9;
  letter-spacing: 0.04em;
  background-color: hsl(32, 87%, 94%);
  padding: 4px 8px;
}

.pagenation {
  margin-top: 50px;
}
@media (min-width: 920px) {
  .pagenation {
    margin-top: 80px;
  }
}
.pagenation .navigation {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagenation .navigation .screen-reader-text {
  display: none !important;
}
.pagenation .navigation .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.pagenation .navigation .nav-links .page-numbers {
  background: hsl(0, 0%, 100%);
  border: 1px solid hsl(47, 15%, 88%);
  border-radius: 999px;
  color: hsl(33, 100%, 47%);
  font-family: "Albert Sans", sans-serif;
  font-weight: 400;
  font-size: 18px;
  text-box-trim: trim-both;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease-out, background-color 0.3s ease-out, border-color 0.3s ease-out;
}
@media (min-width: 600px) {
  .pagenation .navigation .nav-links .page-numbers {
    width: 58px;
    height: 58px;
  }
}
.pagenation .navigation .nav-links .page-numbers svg path {
  transition: stroke 0.3s ease-out;
}
.pagenation .navigation .nav-links .page-numbers.current {
  color: hsl(0, 0%, 100%);
  background: hsl(33, 100%, 47%);
}
.pagenation .navigation .nav-links .page-numbers:hover {
  color: hsl(0, 0%, 100%);
  background-color: hsl(33, 100%, 47%);
  border-color: hsl(33, 100%, 47%);
}
.pagenation .navigation .nav-links .page-numbers:hover svg path {
  stroke: hsl(0, 0%, 100%);
}

.pagenation-icon-prev,
.pagenation-icon-next {
  display: flex;
  align-items: center;
  justify-content: center;
}

.prev.page-numbers {
  margin-right: 12px;
}
@media (min-width: 920px) {
  .prev.page-numbers {
    margin-right: 22px;
  }
}

.next.page-numbers {
  margin-left: 12px;
}
@media (min-width: 920px) {
  .next.page-numbers {
    margin-left: 22px;
  }
}

/* デフォルト（両方出力を防ぐため、一旦PC用を隠すなど） */
.pagenation-pc {
  display: none;
}

.pagenation-sp {
  display: block;
}

/* PC表示（例: 769px以上）の場合 */
@media screen and (min-width: 769px) {
  .pagenation-sp {
    display: none;
  }
  .pagenation-pc {
    display: block;
  }
}
.post_contents {
  max-width: 1020px;
  margin: 0 auto;
  padding-bottom: 100px;
}
@media (min-width: 920px) {
  .post_contents {
    padding-bottom: 180px;
  }
}
.post_thumbnail {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  margin-top: 40px;
}
@media (min-width: 920px) {
  .post_thumbnail {
    border-radius: 20px;
    margin-top: 70px;
  }
}
.post_thumbnail img {
  max-width: none;
  width: 100%;
}
.post_header {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 920px) {
  .post_header {
    gap: 44px;
  }
}
.post_header_inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 920px) {
  .post_header_inner {
    gap: 12px;
  }
}
.post_header_top {
  display: flex;
  gap: 16px;
  align-items: center;
}
.post_header_top .works_category {
  color: #F08200;
  font-weight: 700;
  font-size: 12px;
  text-box-trim: trim-both;
  line-height: 1.9;
  letter-spacing: 0.04em;
  background: #FDF1E3;
  padding: 2px 8px;
  border-radius: 2px;
  width: fit-content;
}
.post_title {
  font-weight: 900;
  font-size: 20px;
  text-box-trim: trim-both;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media (min-width: 920px) {
  .post_title {
    font-size: 30px;
  }
}
.post_date.column {
  color: #6B6660;
  font-weight: 400;
  font-size: 14px;
  text-box-trim: trim-both;
  line-height: 1.9;
  letter-spacing: 0.04em;
}
.post_category.column {
  color: hsl(33, 100%, 47%);
  font-weight: 400;
  font-size: 12px;
  text-box-trim: trim-both;
  line-height: 1.9;
  letter-spacing: 0.04em;
  background: hsl(32, 87%, 94%);
  border-radius: 16px;
  padding: 4px 14px;
}
.post_works_detail {
  color: #6B6660;
  font-weight: 400;
  font-size: 14px;
  text-box-trim: trim-both;
  line-height: 1.9;
  letter-spacing: 0.04em;
}
.post_body {
  margin-top: 50px;
  overflow: hidden;
}
@media (min-width: 920px) {
  .post_body {
    margin-top: 80px;
  }
}
.post_body img[class*=wp-image-],
.post_body img[class*=attachment-] {
  max-width: 100%;
  height: auto;
}
.post_body p + * {
  margin-top: 1.5em;
}
@media (min-width: 920px) {
  .post_body p + * {
    margin-top: 2em;
  }
}
.post_body a {
  color: #666;
  text-decoration: underline;
  overflow-wrap: anywhere;
  word-break: break-all;
}
.post_body a:hover, .post_body a:active, .post_body a:focus {
  color: #999999;
  text-decoration: none;
}
.post_body .aligncenter {
  display: block;
  margin: 20px auto;
}
.post_body {
  /* スマホなど狭い画面では縦並び（中央寄せ） */
}
.post_body .alignright {
  margin: 20px 0;
  text-align: center;
  float: none;
}
@media (min-width: 920px) {
  .post_body .alignright {
    float: right;
    margin: 20px 0 20px 20px;
    text-align: right;
  }
}
.post_body .alignleft {
  margin: 20px 0;
  text-align: center;
  float: none;
}
@media (min-width: 920px) {
  .post_body .alignleft {
    float: left;
    margin: 20px 20px 20px 0;
    text-align: left;
  }
}
@media (min-width: 600px) {
  .post_body .alignright {
    margin-left: 20px;
    float: right;
  }
  .post_body .alignleft {
    margin-right: 20px;
    float: left;
  }
}
.post_body mark {
  background-color: #ffff00;
  color: #000000;
}
.post_body strong {
  color: #f56b6b;
  font-size: 1rem;
}
@media (min-width: 600px) {
  .post_body strong {
    font-size: 1.2rem;
  }
}
.post_body.is-new-format h2:not(:first-child),
.post_body.is-new-format h3:not(:first-child),
.post_body.is-new-format h4:not(:first-child) {
  margin-top: 50px;
}
@media (min-width: 920px) {
  .post_body.is-new-format h2:not(:first-child),
  .post_body.is-new-format h3:not(:first-child),
  .post_body.is-new-format h4:not(:first-child) {
    margin-top: 80px;
  }
}
.post_body.is-new-format h2 {
  font-weight: 900;
  font-size: 18px;
  text-box-trim: trim-both;
  line-height: 1.9;
  letter-spacing: 0.04em;
}
@media (min-width: 920px) {
  .post_body.is-new-format h2 {
    font-size: clamp(16px, 1.1574074074vw, 20px);
  }
}
.post_body.is-new-format h3 {
  font-weight: 900;
  font-size: 16px;
  text-box-trim: trim-both;
  line-height: 1.9;
  letter-spacing: 0.04em;
  padding-left: 8px;
  position: relative;
}
@media (min-width: 920px) {
  .post_body.is-new-format h3 {
    font-size: clamp(14px, 1.0416666667vw, 18px);
    padding-left: 10px;
  }
}
.post_body.is-new-format h3::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 2px;
  height: calc(100% - 2px);
  background-color: hsl(33, 100%, 47%);
  border-radius: 999px;
}
.post_body.is-new-format h4 {
  color: hsl(33, 100%, 47%);
  font-weight: 900;
  font-size: 16px;
  text-box-trim: trim-both;
  line-height: 1.9;
  letter-spacing: 0.04em;
}
@media (min-width: 920px) {
  .post_body.is-new-format h4 {
    font-size: clamp(14px, 0.9259259259vw, 16px);
  }
}
.post_body.is-new-format p {
  font-weight: 400;
  font-size: 16px;
  text-box-trim: trim-both;
  line-height: 1.9;
  letter-spacing: 0.04em;
}
.post_body.is-new-format p:not(:first-child) {
  margin-top: 20px;
}
@media (min-width: 920px) {
  .post_body.is-new-format p:not(:first-child) {
    margin-top: 40px;
  }
}
@media (min-width: 920px) {
  .post_body.is-new-format p {
    font-size: clamp(14px, 0.9259259259vw, 16px);
  }
}
.post_body.is-new-format p img {
  max-width: none;
  width: 100%;
}
.post_body.is-new-format a {
  color: hsl(33, 100%, 47%);
  background-image: linear-gradient(to right, hsl(33, 100%, 47%), hsl(33, 100%, 47%));
  /* 線の色 */
  background-size: 100% 1px;
  background-position: bottom left;
  background-repeat: no-repeat;
  /* 背景を繰り返さない */
  padding-bottom: 0px;
}
.post_body.is-new-format a:hover {
  animation: linkLineReverse 0.5s ease forwards;
}
@keyframes linkLineReverse {
  0% {
    background-size: 100% 1px;
    background-position: bottom right;
  }
  50% {
    background-size: 0 1px;
    /* 幅(100%=文字の長さ) | 高さ(線の太さ) */
    background-position: bottom right;
  }
  51% {
    background-position: bottom left;
  }
  100% {
    background-size: 100% 1px;
  }
}
.post_body.is-new-format .wp-element-caption {
  text-align: center;
  font-size: 12px;
  text-box-trim: trim-both;
  line-height: 1.9;
  letter-spacing: 0.04em;
}
@media (min-width: 920px) {
  .post_body.is-new-format .wp-element-caption {
    font-size: clamp(12px, 0.8101851852vw, 14px);
  }
}
.post_body.is-new-format figure:not(:first-child) {
  margin-top: 40px;
}
@media (min-width: 920px) {
  .post_body.is-new-format figure:not(:first-child) {
    margin-top: 80px;
  }
}
.post_navigation {
  margin-top: 80px;
}
@media (min-width: 920px) {
  .post_navigation {
    margin-top: 180px;
  }
}
.post_navigation .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media (min-width: 920px) {
  .post_navigation .nav-links {
    gap: 30px;
  }
}
.post_navigation .nav-links .nav-prev-text,
.post_navigation .nav-links .nav-next-text {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid hsl(47, 15%, 88%);
  border-radius: 999px;
  width: 58px;
  height: 58px;
  transition: border-color 0.3s ease-out, background-color 0.3s ease-out;
}
.post_navigation .nav-links .nav-prev-text svg path,
.post_navigation .nav-links .nav-next-text svg path {
  transition: stroke 0.3s ease-out;
}
.post_navigation .nav-links .nav-prev-text:hover,
.post_navigation .nav-links .nav-next-text:hover {
  border-color: hsl(33, 100%, 47%);
  background-color: hsl(33, 100%, 47%);
}
.post_navigation .nav-links .nav-prev-text:hover svg path,
.post_navigation .nav-links .nav-next-text:hover svg path {
  stroke: hsl(0, 0%, 100%);
}
.post_navigation .nav-links .nav-back .nav-back-inner {
  display: block;
  padding: 18px 36px;
  font-weight: 400;
  font-size: 14px;
  text-box-trim: trim-both;
  line-height: 1.9;
  letter-spacing: 0.04em;
  text-align: center;
  border: 1px solid hsl(47, 15%, 88%);
  border-radius: 58px;
  transition: color 0.3s ease-out, border-color 0.3s ease-out, background-color 0.3s ease-out;
}
@media (min-width: 390px) {
  .post_navigation .nav-links .nav-back .nav-back-inner {
    padding: 18px 54px;
  }
}
.post_navigation .nav-links .nav-back .nav-back-inner:hover {
  color: hsl(0, 0%, 100%);
  border-color: hsl(33, 100%, 47%);
  background-color: hsl(33, 100%, 47%);
}

.notFound {
  padding: 120px 0;
}
@media (min-width: 920px) {
  .notFound {
    padding: min(9.2592592593vw, 160px) 0;
  }
}
.notFound_main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media (min-width: 920px) {
  .notFound_main {
    gap: min(4.6296296296vw, 80px);
  }
}
.notFound_head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.notFound_head_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.notFound_ttl {
  font-family: "Albert Sans", sans-serif;
  font-size: 60px;
  line-height: 1.35;
  font-weight: 900;
}
@media (min-width: 920px) {
  .notFound_ttl {
    font-size: min(5.787037037vw, 100px);
  }
}
.notFound_ttl_en {
  font-family: "Albert Sans", sans-serif;
  font-size: 36px;
  line-height: 1.5;
  font-weight: 600;
}
@media (min-width: 920px) {
  .notFound_ttl_en {
    font-size: min(3.7037037037vw, 64px);
  }
}

.works_carousel {
  overflow: hidden;
  /* はみ出た分を隠す */
  width: 100%;
}
.works_carousel_wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 42px;
}
@media (min-width: 920px) {
  .works_carousel_wrap {
    margin-top: 100px;
  }
}
.works_carousel_track {
  display: flex;
  width: max-content;
  /* 中身の合計幅に合わせる */
  animation: loop linear infinite;
  /* ← loop を指定する */
  animation-duration: 0s;
}
.works_carousel_track.-reverse {
  animation-direction: reverse;
}
.works_carousel_item {
  width: 313px;
  /* 各要素の幅 */
  flex-shrink: 0;
  aspect-ratio: 1/1;
  border-radius: 10px;
  overflow: hidden;
  margin-right: 11px;
}
@media (min-width: 920px) {
  .works_carousel_item {
    width: 351px;
    margin-right: 12px;
  }
}
.works_carousel_item_link {
  position: relative;
  display: block;
  height: 100%;
}
.works_carousel_item_link:hover .works_carousel_item_img img {
  filter: blur(4px);
}
.works_carousel_item_link:hover .works_carousel_item_img::after {
  background-color: hsla(157, 34%, 58%, 0.2);
}
.works_carousel_item_ttl {
  font-weight: 700;
  font-size: 18px;
  text-box-trim: trim-both;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
}
@media (min-width: 920px) {
  .works_carousel_item_ttl {
    font-size: 20px;
  }
}
.works_carousel_item_ttl_wrap {
  color: hsl(0, 0%, 100%);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
}
@media (min-width: 920px) {
  .works_carousel_item_ttl_wrap {
    gap: clamp(10px, 1.1574074074vw, 20px);
  }
}
.works_carousel_item_detail {
  font-weight: 400;
  font-size: 12px;
  text-box-trim: trim-both;
  line-height: 1.9;
  letter-spacing: 0.04em;
  text-align: center;
}
@media (min-width: 920px) {
  .works_carousel_item_detail {
    font-size: 14px;
  }
}
.works_carousel_item_img {
  position: relative;
  height: 100%;
  display: block;
  transition: filter 0.3s ease-out;
}
.works_carousel_item_img::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: hsla(157, 34%, 58%, 0.6);
  transition: background-color 0.3s ease-out;
}
.works_carousel_item_img img {
  width: 100%;
  height: 100%;
  max-width: none;
}

/* 20秒かけてループ */
@keyframes loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
  /* 半分移動したら先頭に戻る */
}
.service_head {
  background: hsl(0, 0%, 100%);
  padding: 29px 0 80px;
  position: relative;
  z-index: 10;
}
@media (min-width: 920px) {
  .service_head {
    padding: min(3.9351851852vw, 60px) 0 min(9.2592592593vw, 160px);
  }
}
.service_head.subPage {
  padding: 49px 0 80px;
}
@media (min-width: 920px) {
  .service_head.subPage {
    padding: min(4.6296296296vw, 140px) 0 min(9.2592592593vw, 180px);
  }
}
.service_content_link {
  display: flex;
  gap: 12px;
  padding-top: 18px;
  padding-bottom: 12px;
  padding-right: 10px;
  border-bottom: 1px solid hsl(47, 15%, 88%);
}
@media (min-width: 393px) {
  .service_content_link {
    gap: 20px;
  }
}
@media (min-width: 920px) {
  .service_content_link {
    gap: 20px;
    padding-top: 40px;
    padding-bottom: 20px;
    padding-right: 20px;
    align-items: center;
  }
}
@media (min-width: 1200px) {
  .service_content_link {
    gap: clamp(20px, 2.1990740741vw, 38px);
  }
}
.service_content_link.subPage {
  padding-right: 0;
}
@media (min-width: 920px) {
  .service_content_link.subPage {
    padding-right: 0;
  }
}
.service_content_link:hover .service_content_link_img picture img {
  transform: scale(1.05);
}
.service_content_link:hover .service_content_link_arrow {
  transform: translateY(5px);
}
.service_content_link_container {
  display: flex;
  flex-direction: column;
}
@media (min-width: 920px) {
  .service_content_link_container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    grid-auto-flow: column;
    grid-column-gap: 20px;
  }
}
@media (min-width: 980px) {
  .service_content_link_container {
    grid-column-gap: min(2.8935185185vw, 50px);
  }
}
@media (min-width: 1300px) {
  .service_content_link_container {
    grid-column-gap: min(8.1018518519vw, 140px);
  }
}
.service_content_link_img {
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 70/98;
  width: 19.9%;
  flex-shrink: 0;
}
@media (min-width: 920px) {
  .service_content_link_img {
    width: 20%;
    max-width: 180px;
    aspect-ratio: 180/120;
  }
}
@media (min-width: 1200px) {
  .service_content_link_img {
    width: 27.7%;
    max-width: 180px;
  }
}
.service_content_link_img picture img {
  transition: transform 0.3s ease-out;
  max-width: none;
  width: 100%;
}
.service_content_link_right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}
@media (min-width: 393px) {
  .service_content_link_right {
    gap: 16px;
  }
}
.service_content_link_arrow {
  transition: transform 0.3s ease-out;
}
.service_content_link_ttl {
  font-family: "Kumbh Sans", sans-serif;
  font-weight: 700;
  font-size: 22px;
  text-box-trim: trim-both;
  line-height: 1.2;
  letter-spacing: 0.04em;
}
@media (min-width: 920px) {
  .service_content_link_ttl {
    font-size: clamp(22px, 1.7361111111vw, 30px);
    line-height: 1.5;
  }
}
@media (min-width: 600px) {
  .service_content_link_ttl br {
    display: none;
  }
}
@media (min-width: 920px) {
  .service_content_link_ttl br {
    display: block;
  }
}
@media (min-width: 980px) {
  .service_content_link_ttl br {
    display: none;
  }
}
.service_content_link_ttl_jp {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 14px;
  text-box-trim: trim-both;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: hsl(0, 0%, 100%);
  background: hsl(33, 100%, 47%);
  padding: 3px 8px 3px;
  border-radius: 2px;
  width: fit-content;
}
@media (min-width: 920px) {
  .service_content_link_ttl_jp {
    border-radius: 4px;
    font-size: clamp(16px, 1.0416666667vw, 18px);
    padding: 3px 10px 3px;
  }
}
.service_content_link_ttl_wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media (min-width: 920px) {
  .service_content_link_ttl_wrap {
    gap: 10px;
  }
}
.service_body {
  position: relative;
  background: #F4F3F0;
  border-radius: 50px 0 0 0;
  padding: 80px 0;
  overflow: hidden;
}
@media (min-width: 920px) {
  .service_body {
    border-radius: 150px 0 0 0;
    padding: min(160px, 9.2592592593vw) 0;
  }
}
.service_body .service_circle_1 {
  z-index: 0;
  top: -31.0432569975vw;
  right: -41.475826972vw;
}
@media (min-width: 920px) {
  .service_body .service_circle_1 {
    max-width: none;
    top: -19.6759259259vw;
    right: -18.0555555556vw;
    width: min(48.6111111111vw, 840px);
  }
}
.service_body .service_circle_2 {
  z-index: 0;
  bottom: 333.5877862595vw;
  left: -27.4809160305vw;
}
@media (min-width: 920px) {
  .service_body .service_circle_2 {
    max-width: none;
    bottom: 79.9189814815vw;
    left: -7.4074074074vw;
    width: min(30.5555555556vw, 528px);
  }
}
.service_body .service_circle_3 {
  z-index: 0;
  bottom: -25.4452926209vw;
  right: -41.475826972vw;
}
@media (min-width: 920px) {
  .service_body .service_circle_3 {
    max-width: none;
    bottom: -7.0601851852vw;
    right: -14.5833333333vw;
    width: min(45.8333333333vw, 792px);
  }
}
.service_content {
  border-radius: 6px;
  background: hsl(0, 0%, 100%);
  position: relative;
}
@media (min-width: 920px) {
  .service_content {
    border-radius: 10px;
  }
}
.service_content::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 62px;
  height: 46px;
  background-color: #F4F3F0;
  mask-image: linear-gradient(#000, #000), url("../img/service/service_content_curve.svg");
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: top right;
  -webkit-mask-image: url("../img/service/service_content_curve_pc.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: top right;
  z-index: 5;
}
@media (min-width: 920px) {
  .service_content::after {
    width: min(4.6296296296vw, 80px);
    height: min(3.7037037037vw, 64px);
  }
}
.service_content:hover .service_content_img picture img {
  transform: scale(1.05);
}
.service_content:hover .service_arrow .common_link_arrow {
  background-color: hsl(36, 6%, 15%);
}
.service_content_masked_wrap {
  padding: 50px 20px 27px;
  display: flex;
  flex-direction: column-reverse;
  gap: 20px;
}
@media (min-width: 920px) {
  .service_content_masked_wrap {
    flex-direction: row;
    gap: min(100px, 5.787037037vw);
    padding: min(4.0509259259vw, 70px);
  }
}
@media (min-width: 920px) {
  .service_content .service_arrow.sp {
    display: none;
  }
}
.service_content .service_arrow.pc {
  display: none;
}
@media (min-width: 920px) {
  .service_content .service_arrow.pc {
    display: flex;
  }
}
.service_content_num {
  position: absolute;
  top: -6px;
  right: 0;
  font-family: "Albert Sans", sans-serif;
  font-weight: 700;
  font-size: 30px;
  text-box-trim: trim-both;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: right;
  z-index: 10;
  color: hsl(33, 100%, 47%);
}
@media (min-width: 920px) {
  .service_content_num {
    font-size: min(2.3148148148vw, 40px);
    top: -0.5787037037vw;
  }
}
.service_content_img {
  overflow: hidden;
  border-radius: 6px;
  flex-shrink: 0;
  width: 100%;
}
@media (min-width: 920px) {
  .service_content_img {
    border-radius: 10px;
  }
}
.service_content_img picture img {
  max-width: none;
  width: 100%;
  transition: transform 0.3s ease-out;
}
.service_content_img_wrap_sp {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 23px;
}
@media (min-width: 920px) {
  .service_content_img_wrap_sp {
    width: 73.4%;
    max-width: 508px;
  }
}
.service_content_container {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (min-width: 920px) {
  .service_content_container {
    gap: min(5.787037037vw, 100px);
  }
}
.service_content_detail {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (min-width: 920px) {
  .service_content_detail {
    align-self: stretch;
    width: 100%;
  }
}
.service_content_detail_main {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}
@media (min-width: 920px) {
  .service_content_detail_main {
    gap: min(2.3148148148vw, 100px);
    padding-top: min(3.587962963vw, 62px);
  }
}
.service_content_detail_head {
  display: flex;
  flex-direction: column;
  padding-bottom: 24px;
  position: relative;
  gap: 10px;
}
@media (min-width: 920px) {
  .service_content_detail_head {
    padding-bottom: min(2.8935185185vw, 50px);
    gap: 20px;
  }
}
.service_content_detail_head::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 44px;
  height: 1px;
  background: hsl(34, 7%, 58%);
}
.service_content_detail_head_ttl {
  font-family: "Kumbh Sans", sans-serif;
  font-weight: 700;
  font-size: 34px;
  text-box-trim: trim-both;
  line-height: 1.2;
  letter-spacing: 0.04em;
}
@media (min-width: 920px) {
  .service_content_detail_head_ttl {
    font-size: clamp(34px, 2.8935185185vw, 50px);
    line-height: 1.5;
  }
}
@media (min-width: 920px) {
  .service_content_detail_head_ttl br {
    display: none;
  }
}
.service_content_detail_head_ttl_jp {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-box-trim: trim-both;
  line-height: 1.6;
  letter-spacing: 0.04em;
  background: hsl(33, 100%, 47%);
  color: hsl(0, 0%, 100%);
  padding: 2px 8px;
  width: fit-content;
  border-radius: 4px;
}
@media (min-width: 920px) {
  .service_content_detail_head_ttl_jp {
    font-size: clamp(18px, 1.1574074074vw, 20px);
  }
}
.service_content_detail_body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (min-width: 920px) {
  .service_content_detail_body {
    gap: 30px;
  }
}
.service_content_detail_body_ttl {
  font-weight: 900;
  font-size: 18px;
  text-box-trim: trim-both;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media (min-width: 920px) {
  .service_content_detail_body_ttl {
    font-size: clamp(18px, 1.5046296296vw, 26px);
    line-height: 1.9;
  }
}
@media (min-width: 920px) {
  .service_content_detail_body_ttl br {
    display: none;
  }
}
.service_content_txt br {
  display: none;
}
@media (min-width: 920px) {
  .service_content_txt br {
    display: block;
  }
}

.service_subPage_top {
  position: relative;
  border-radius: 0 0 50px 50px;
  overflow: hidden;
}
@media (min-width: 920px) {
  .service_subPage_top {
    border-radius: 0 0 120px 120px;
  }
}
.service_subPage_top_img picture img {
  width: 100%;
  max-width: 100%;
}
.service_subPage_ttl {
  color: hsl(0, 0%, 100%);
  font-family: "Albert Sans", sans-serif;
  font-weight: 700;
  font-size: 50px;
  text-box-trim: trim-both;
  line-height: 1.1;
}
@media (min-width: 920px) {
  .service_subPage_ttl {
    font-size: min(4.6296296296vw, 80px);
    line-height: 1.6;
    letter-spacing: 0.04em;
  }
}
.service_subPage_ttl_wrap {
  position: absolute;
  top: max(21.8829516539vw, 86px);
  left: 20px;
}
@media (min-width: 920px) {
  .service_subPage_ttl_wrap {
    top: min(14.4675925926vw, 250px);
    left: min(8.3333333333vw, 144px);
  }
}
.service_subPage_ttl_jp {
  font-weight: 900;
  color: hsl(0, 0%, 100%);
  font-size: 20px;
  text-box-trim: trim-both;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
@media (min-width: 920px) {
  .service_subPage_ttl_jp {
    font-size: clamp(20px, 1.7361111111vw, 30px);
    line-height: 1.6;
  }
}
.service_subPage_section_wrap {
  background: #F4F3F0;
  padding: 100px 0;
  margin-top: -50px;
  border-radius: 50px 0 50px 50px;
  position: relative;
  z-index: 2;
  overflow-x: clip;
}
@media (min-width: 920px) {
  .service_subPage_section_wrap {
    margin-top: -120px;
    padding: min(43.2569974555vw, 170px) 0 min(45.8015267176vw, 180px);
    border-radius: 120px 0 120px 120px;
  }
}
.service_subPage_section_wrap.commercial {
  padding: 100px 0;
  border-radius: 50px 50px 0 0;
}
@media (min-width: 920px) {
  .service_subPage_section_wrap.commercial {
    border-radius: 120px 120px 0 0;
    padding: min(43.2569974555vw, 170px) 0 calc(min(45.8015267176vw, 180px) + 120px);
  }
}
.service_subPage_section_wrap.commercial .service03 {
  z-index: -1;
  top: -1165;
  left: -85px;
}
@media (min-width: 920px) {
  .service_subPage_section_wrap.commercial .service03 {
    top: 28.3564814815vw;
    left: -24.537037037vw;
    width: min(48.6111111111vw, 840px);
  }
}
.service_subPage_section_wrap.commercial .service04 {
  z-index: -1;
  display: none;
}
@media (min-width: 920px) {
  .service_subPage_section_wrap.commercial .service04 {
    display: block;
    bottom: 41.724537037vw;
    right: -19.3287037037vw;
    width: min(42.5347222222vw, 735px);
  }
}
.service_subPage_section_wrap.ppa_page {
  border-radius: 50px 50px 0 0;
  margin-top: 0;
  position: relative;
  top: -71px;
  padding-bottom: 0;
}
@media (min-width: 920px) {
  .service_subPage_section_wrap.ppa_page {
    border-radius: 120px 120px 0 0;
    padding: min(43.2569974555vw, 170px) 0 0;
  }
}
.service_subPage_section_wrap.ppa_page .service02 {
  z-index: -1;
  top: 796px;
  right: -84px;
}
@media (min-width: 920px) {
  .service_subPage_section_wrap.ppa_page .service02 {
    max-width: none;
    top: 22.5115740741vw;
    right: -23.7268518519vw;
    width: min(48.6111111111vw, 840px);
  }
}
.service_subPage_section_wrap .service02 {
  z-index: -1;
  top: -153px;
  right: -86px;
}
@media (min-width: 920px) {
  .service_subPage_section_wrap .service02 {
    max-width: none;
    top: -10.4166666667vw;
    right: -15.5092592593vw;
    width: min(32.2916666667vw, 558px);
  }
}
.service_subPage_section_wrap .service04 {
  z-index: -1;
  display: none;
}
@media (min-width: 920px) {
  .service_subPage_section_wrap .service04 {
    display: block;
    bottom: 96.1226851852vw;
    left: -25.1736111111vw;
    width: min(48.6111111111vw, 840px);
  }
}

.service_subPage_top_section {
  position: relative;
  border-radius: 0 0 50px 50px;
  overflow: hidden;
  padding: 50px 0 150px;
  background: hsl(0, 0%, 100%);
}
@media (min-width: 920px) {
  .service_subPage_top_section {
    border-radius: 0 0 150px 150px;
    padding: min(38.1679389313vw, 150px) 0 calc(min(45.8015267176vw, 180px) + 120px);
  }
}
.service_subPage_top_section_commercial_wrap {
  overflow: hidden;
}
.service_subPage_top_section.commercial {
  position: relative;
  z-index: 2;
  padding: 0;
  overflow: visible;
}
@media (min-width: 920px) {
  .service_subPage_top_section.commercial {
    padding: 0;
  }
}
.service_subPage_top_section.commercial .service_subPage_top_section_commercial_inner {
  border-radius: 0 0 50px 50px;
  padding: 50px 0 100px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 920px) {
  .service_subPage_top_section.commercial .service_subPage_top_section_commercial_inner {
    border-radius: 0 0 120px 120px;
    padding: min(38.1679389313vw, 150px) 0 min(10.4166666667vw, 180px);
  }
}
.service_subPage_top_section.commercial .circle.service02 {
  z-index: 2;
  bottom: -14.7582697201vw;
  right: -21.8829516539vw;
}
@media (min-width: 920px) {
  .service_subPage_top_section.commercial .circle.service02 {
    max-width: none;
    bottom: -6.4236111111vw;
    right: -15.4513888889vw;
    width: min(30.5555555556vw, 528px);
  }
}
.service_subPage_top_section.ppa_page {
  position: relative;
  padding: 50px 0 150px;
}
@media (min-width: 920px) {
  .service_subPage_top_section.ppa_page {
    padding: min(38.1679389313vw, 150px) 0 0;
  }
}
.service_subPage_top_section .service01 {
  z-index: 1;
  top: -140px;
  left: -387px;
}
@media (min-width: 920px) {
  .service_subPage_top_section .service01 {
    max-width: none;
    top: -14.3518518519vw;
    left: -24.4212962963vw;
    width: min(70.1388888889vw, 1212px);
  }
}

.service_subPage_content {
  background: hsl(0, 0%, 100%);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media (min-width: 920px) {
  .service_subPage_content {
    border-radius: 20px;
    height: 100%;
  }
}
.service_subPage_content_img img {
  max-width: none;
  width: 100%;
}
.service_subPage_content_container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}
@media (min-width: 920px) {
  .service_subPage_content_container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    gap: 12px;
    margin-top: min(4.0509259259vw, 791px);
  }
}
@media (min-width: 920px) {
  .service_subPage_content_container.grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 956px;
    margin: min(4.0509259259vw, 791px) auto 0;
  }
}
.service_subPage_content_img {
  overflow: hidden;
  aspect-ratio: 353/234;
}
@media (min-width: 920px) {
  .service_subPage_content_img {
    aspect-ratio: 472/312;
  }
}
.service_subPage_content_img picture {
  display: block;
  /* ← block等にして領域を持たせる */
  width: 100%;
  height: 100%;
}
.service_subPage_content_img picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease-out;
}
.service_subPage_content_img_wrap {
  position: relative;
}
.service_subPage_content_img_bubble {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
}
.service_subPage_content_img_bubble picture {
  display: block;
  width: 100%;
  height: auto;
}
.service_subPage_content_img_bubble picture img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}
.service_subPage_content_bottom {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (min-width: 920px) {
  .service_subPage_content_bottom {
    padding: max(1.2731481481vw, 16px) max(1.7361111111vw, 16px) max(1.9675925926vw, 16px);
  }
}
.service_subPage_content_ttl {
  color: hsl(33, 100%, 47%);
  font-weight: 700;
  font-size: 18px;
  text-box-trim: trim-both;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-align: center;
}
@media (min-width: 393px) {
  .service_subPage_content_ttl {
    font-size: 20px;
  }
}
@media (min-width: 920px) {
  .service_subPage_content_ttl {
    font-size: clamp(15px, 1.1574074074vw, 20px);
  }
}
.service_subPage_content_ttl_en {
  color: #F08200;
  font-family: "Albert Sans", sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 10px;
  text-box-trim: trim-both;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
}
.service_subPage_content_ttl_wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.service_subPage_content_txt_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  flex-grow: 1;
}
@media (min-width: 920px) {
  .service_subPage_content_txt_wrap {
    gap: max(1.2731481481vw, 16px);
  }
}

.service_subPage_top_head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}
@media (min-width: 920px) {
  .service_subPage_top_head {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}
.service_subPage_top_head_txt_wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 920px) {
  .service_subPage_top_head_txt_wrap {
    gap: min(15.2671755725vw, 60px);
  }
}
.service_subPage_top_head_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
@media (min-width: 920px) {
  .service_subPage_top_head_inner {
    gap: 70px;
    align-items: flex-start;
    width: clamp(500px, 41.6666666667vw, 720px);
  }
}
.service_subPage_top_ttl {
  font-weight: 900;
  font-size: 24px;
  text-box-trim: trim-both;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media (min-width: 920px) {
  .service_subPage_top_ttl {
    font-size: clamp(24px, 2.3148148148vw, 40px);
  }
}
.service_subPage_top_txt {
  font-weight: 500;
  font-size: 16px;
  text-box-trim: trim-both;
  line-height: 1.9;
}
@media (min-width: 920px) {
  .service_subPage_top_txt {
    font-size: clamp(16px, 1.1574074074vw, 20px);
    line-height: 2;
    letter-spacing: 0.04em;
  }
}
.service_subPage_top_txt_wrap {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (min-width: 920px) {
  .service_subPage_top_txt_wrap {
    gap: 70px;
  }
}

.venn {
  position: relative;
  z-index: 2;
}
.venn_wrap {
  position: relative;
}
@media (min-width: 920px) {
  .venn_wrap {
    width: 36.3%;
    margin-right: 40px;
  }
}
.venn_wrap.ppa {
  margin: 0 20px;
}
@media (min-width: 920px) {
  .venn_wrap.ppa {
    width: 41.3%;
    margin: -50px 0 0;
  }
}
.venn_wrap.ppa .dot_venn {
  z-index: 5;
}
.venn_wrap.ppa .dot_venn.green {
  background-color: hsl(157, 45%, 58%);
}
.venn_wrap.ppa .dot_venn.green.n-1 {
  width: var(--dot-size-21);
  height: var(--dot-size-21);
  top: 11.7048346056vw;
  right: 0vw;
}
@media (min-width: 920px) {
  .venn_wrap.ppa .dot_venn.green.n-1 {
    width: var(--dot-size-35);
    height: var(--dot-size-35);
    top: 3.7037037037vw;
    right: 1.099537037vw;
  }
}
.venn_wrap.ppa .dot_venn.green.n-2 {
  width: var(--dot-size-7);
  height: var(--dot-size-7);
  bottom: 0.2544529262vw;
  left: -0.7633587786vw;
}
@media (min-width: 920px) {
  .venn_wrap.ppa .dot_venn.green.n-2 {
    width: var(--dot-size-12);
    height: var(--dot-size-12);
    bottom: 5.150462963vw;
    left: 1.8518518519vw;
  }
}
.venn_wrap.ppa .dot_venn.orange {
  background-color: hsl(33, 100%, 47%);
}
.venn_wrap.ppa .dot_venn.orange.n-1 {
  width: var(--dot-size-18);
  height: var(--dot-size-18);
  top: -0.7633587786vw;
  left: -0.5089058524vw;
}
@media (min-width: 920px) {
  .venn_wrap.ppa .dot_venn.orange.n-1 {
    width: var(--dot-size-30);
    height: var(--dot-size-30);
    top: 0.5787037037vw;
    left: 2.025462963vw;
  }
}
.venn_wrap.ppa .dot_venn.orange.n-2 {
  width: var(--dot-size-14);
  height: var(--dot-size-14);
  bottom: -4.0712468193vw;
  left: 24.9363867684vw;
}
@media (min-width: 920px) {
  .venn_wrap.ppa .dot_venn.orange.n-2 {
    width: var(--dot-size-23);
    height: var(--dot-size-23);
    bottom: 3.4722222222vw;
    left: 12.8472222222vw;
  }
}
.venn_wrap.ppa .dot_venn.orange.n-3 {
  width: var(--dot-size-7);
  height: var(--dot-size-7);
  top: 22.9007633588vw;
  right: -3.0534351145vw;
}
@media (min-width: 920px) {
  .venn_wrap.ppa .dot_venn.orange.n-3 {
    width: var(--dot-size-12);
    height: var(--dot-size-12);
    top: 7.9861111111vw;
    right: -0.6944444444vw;
  }
}
.venn_wrap.ppa .dot_venn.yellow {
  background-color: hsl(49, 90%, 62%);
}
.venn_wrap.ppa .dot_venn.yellow.n-1 {
  width: var(--dot-size-13);
  height: var(--dot-size-13);
  bottom: -7.6335877863vw;
  left: -5.0890585242vw;
}
@media (min-width: 920px) {
  .venn_wrap.ppa .dot_venn.yellow.n-1 {
    width: var(--dot-size-22);
    height: var(--dot-size-22);
    bottom: 1.2731481481vw;
    left: 0.4050925926vw;
    right: auto;
  }
}
.venn_wrap.ppa .dot_venn.yellow.n-2 {
  display: none;
}
@media (min-width: 920px) {
  .venn_wrap.ppa .dot_venn.yellow.n-2 {
    display: block;
    width: var(--dot-size-12);
    height: var(--dot-size-12);
    top: 0vw;
    right: -2.5462962963vw;
  }
}
.venn picture img {
  max-width: none;
  width: 100%;
}

.dot_venn {
  position: absolute;
  border-radius: 999px;
  z-index: 0;
  will-change: transform;
  transform: translate(var(--x, 0px), var(--y, 0px));
}
.dot_venn.green {
  background-color: hsl(157, 45%, 58%);
}
.dot_venn.green.n-1 {
  width: var(--dot-size-21);
  height: var(--dot-size-21);
  top: 19.0839694656vw;
  right: 6.3613231552vw;
}
@media (min-width: 920px) {
  .dot_venn.green.n-1 {
    width: var(--dot-size-35);
    height: var(--dot-size-35);
    top: 4.6875vw;
    right: 0;
  }
}
.dot_venn.green.n-2 {
  width: var(--dot-size-7);
  height: var(--dot-size-7);
  bottom: -0.7633587786vw;
  left: -4.3256997455vw;
}
@media (min-width: 920px) {
  .dot_venn.green.n-2 {
    width: var(--dot-size-12);
    height: var(--dot-size-12);
    bottom: -0.5787037037vw;
    left: 0vw;
  }
}
.dot_venn.orange {
  background-color: hsl(33, 100%, 47%);
}
.dot_venn.orange.n-1 {
  width: var(--dot-size-18);
  height: var(--dot-size-18);
  top: 6.8702290076vw;
  left: 4.0712468193vw;
}
@media (min-width: 920px) {
  .dot_venn.orange.n-1 {
    width: var(--dot-size-30);
    height: var(--dot-size-30);
    top: 0.9837962963vw;
    left: 1.3310185185vw;
  }
}
.dot_venn.orange.n-2 {
  width: var(--dot-size-14);
  height: var(--dot-size-14);
  bottom: -3.8167938931vw;
  right: 30.0254452926vw;
}
@media (min-width: 920px) {
  .dot_venn.orange.n-2 {
    width: var(--dot-size-23);
    height: var(--dot-size-23);
    bottom: -1.5625vw;
    left: 10.9953703704vw;
  }
}
.dot_venn.orange.n-3 {
  width: var(--dot-size-7);
  height: var(--dot-size-7);
  bottom: 30.534351145vw;
  right: 0vw;
}
@media (min-width: 920px) {
  .dot_venn.orange.n-3 {
    width: var(--dot-size-12);
    height: var(--dot-size-12);
    top: 8.9699074074vw;
    right: -1.7939814815vw;
  }
}
.dot_venn.yellow {
  background-color: hsl(49, 90%, 62%);
}
.dot_venn.yellow.n-1 {
  width: var(--dot-size-13);
  height: var(--dot-size-13);
  bottom: -7.3791348601vw;
  left: 0vw;
}
@media (min-width: 920px) {
  .dot_venn.yellow.n-1 {
    width: var(--dot-size-22);
    height: var(--dot-size-22);
    bottom: -3.8773148148vw;
    left: -0.1736111111vw;
    right: auto;
  }
}
.dot_venn.yellow.n-2 {
  display: none;
}
@media (min-width: 920px) {
  .dot_venn.yellow.n-2 {
    display: block;
    width: var(--dot-size-12);
    height: var(--dot-size-12);
    top: 0.9259259259vw;
    right: -3.6458333333vw;
  }
}

.worries {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 100px;
  position: relative;
  z-index: 3;
}
@media (min-width: 920px) {
  .worries {
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: space-between;
  }
}
.worries.commercial {
  margin-top: 80px;
}
@media (min-width: 920px) {
  .worries.commercial {
    margin-top: min(9.2592592593vw, 160px);
  }
}
.worries_bubble picture img {
  max-width: none;
  width: 100%;
}
@media (min-width: 920px) {
  .worries_bubble {
    width: min(27.662037037vw, 478px);
  }
}
.worries_txt_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
@media (min-width: 920px) {
  .worries_txt_wrap {
    align-items: flex-start;
    gap: 30px;
    max-width: 719px;
  }
}
.worries_list {
  padding: 24px 20px;
  background: #F4F3F0;
  border-radius: 10px;
  margin-top: 40px;
}
@media (min-width: 920px) {
  .worries_list {
    border-radius: 20px;
    padding: min(3.4722222222vw, 60px);
    margin-top: min(3.4722222222vw, 60px);
  }
}
.worries_list.white {
  background: transparent;
}
.worries_list_item {
  display: flex;
  gap: 8px;
  padding: 16px 0;
  border-top: 1px solid #E5E3DC;
}
.worries_list_item:first-child {
  border-top: none;
  padding-top: 0;
  padding-bottom: 16px;
}
.worries_list_item:last-child {
  padding-bottom: 0;
}
@media (min-width: 920px) {
  .worries_list_item {
    gap: 16px;
  }
}
.worries_list_item_icon {
  max-width: 20px;
}
@media (min-width: 920px) {
  .worries_list_item_icon {
    max-width: none;
    width: clamp(20px, 1.7361111111vw, 30px);
  }
}
.worries_list_item_txt {
  font-weight: 700;
  font-size: 16px;
  text-box-trim: trim-both;
  line-height: 1.6;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
@media (min-width: 920px) {
  .worries_list_item_txt {
    font-size: clamp(16px, 1.1574074074vw, 20px);
  }
}
@media (min-width: 600px) {
  .worries_list_item_txt .br_sp {
    display: none;
  }
}
.worries_img {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  z-index: 5;
}
@media (min-width: 920px) {
  .worries_img {
    border-radius: 20px;
    width: 38.9%;
  }
}
.worries_img picture img {
  max-width: none;
  width: 100%;
}

.white_box {
  background: hsl(0, 0%, 100%);
  border-radius: 10px;
  padding: 35px 20px 40px;
  margin-top: 40px;
}
@media (min-width: 920px) {
  .white_box {
    border-radius: 20px;
    padding: min(5.2083333333vw, 90px) min(4.0509259259vw, 70px) min(5.787037037vw, 100px);
    margin-top: min(4.0509259259vw, 70px);
  }
}

.home {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
@media (min-width: 920px) {
  .home {
    flex-direction: row;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
  }
}
.home_txt_wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 920px) {
  .home_txt_wrap {
    gap: min(2.8935185185vw, 50px);
    width: clamp(500px, 37.6157407407vw, 650px);
  }
}
.home_ttl {
  color: #F08200;
  font-weight: 900;
  font-size: 24px;
  text-box-trim: trim-both;
  line-height: 1.6;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
@media (min-width: 920px) {
  .home_ttl {
    font-size: clamp(24px, 2.3148148148vw, 40px);
  }
}
.home_img {
  overflow: hidden;
  border-radius: 10px;
}
@media (min-width: 920px) {
  .home_img {
    border-radius: 20px;
    width: 44.6%;
  }
}
.home_img picture img {
  max-width: none;
  width: 100%;
}

.structure_content {
  position: relative;
  padding: 30px 20px 40px;
  background: #F08200;
  border-radius: 10px;
  margin-top: 60px;
}
@media (min-width: 920px) {
  .structure_content {
    background: transparent;
    border-radius: 0;
    margin-top: min(9.2592592593vw, 160px);
    padding: 20px min(4.224537037vw, 73px) min(7.0601851852vw, 122px) min(4.0509259259vw, 70px);
  }
}
@media (min-width: 1050px) {
  .structure_content {
    padding: min(5.2083333333vw, 90px) min(4.224537037vw, 73px) min(7.0601851852vw, 122px) min(4.0509259259vw, 70px);
  }
}
.structure_bg {
  display: none;
}
@media (min-width: 920px) {
  .structure_bg {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
  }
}
.structure_main {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  gap: 40px;
}
@media (min-width: 920px) {
  .structure_main {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
  }
}
@media (min-width: 920px) {
  .structure_img {
    width: 52.9%;
  }
}
.structure_img picture img {
  max-width: none;
  width: 100%;
}
.structure_txt_wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 920px) {
  .structure_txt_wrap {
    gap: min(1.7361111111vw, 30px);
    width: min(29.5138888889vw, 510px);
  }
}
.structure_txt_wrap_head {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 920px) {
  .structure_txt_wrap_head {
    gap: min(1.8518518519vw, 32px);
  }
}
.structure_ttl {
  color: hsl(0, 0%, 100%);
  font-weight: 900;
  font-size: 20px;
  text-box-trim: trim-both;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media (min-width: 920px) {
  .structure_ttl {
    font-size: clamp(20px, 1.7361111111vw, 30px);
  }
}
.structure_sub_txt {
  color: hsl(0, 0%, 100%);
  font-weight: 700;
  font-size: 16px;
  text-box-trim: trim-both;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media (min-width: 920px) {
  .structure_sub_txt {
    font-size: clamp(16px, 1.1574074074vw, 20px);
  }
}
@media (min-width: 600px) {
  .structure_sub_txt .br_sp {
    display: none;
  }
}

.benefit {
  margin-top: 80px;
}
@media (min-width: 920px) {
  .benefit {
    margin-top: min(9.2592592593vw, 160px);
  }
}
.benefit_img {
  margin: 40px auto;
  width: 73.2%;
  max-width: 500px;
}
@media (min-width: 920px) {
  .benefit_img {
    max-width: none;
    width: min(47.1064814815vw, 814px);
    margin: 0 0 0 min(9.6643518519vw, 167px);
  }
}
.benefit_img picture img {
  max-width: none;
  width: 100%;
}
.benefit_img_wrap {
  margin: 40px auto;
}
@media (min-width: 920px) {
  .benefit_img_wrap {
    margin: min(2.8935185185vw, 60px) 0 min(4.6296296296vw, 80px);
  }
}
.benefit_img_txt {
  color: #F08200;
  font-weight: 900;
  font-size: 20px;
  text-box-trim: trim-both;
  line-height: 1.9;
  letter-spacing: 0.04em;
  text-align: center;
  margin-top: 20px;
}
@media (min-width: 920px) {
  .benefit_img_txt {
    font-size: clamp(20px, 1.3888888889vw, 24px);
    line-height: 1.6;
    margin-top: 16px;
  }
}
.benefit_content {
  background: #F4F3F0;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 30px 20px 40px;
  position: relative;
}
@media (min-width: 920px) {
  .benefit_content {
    gap: clamp(18px, 1.3888888889vw, 24px);
    padding: clamp(20px, 1.7361111111vw, 30px) clamp(20px, 1.7361111111vw, 30px) clamp(20px, 2.3148148148vw, 40px);
    border-radius: 20px;
  }
}
.benefit_content .common_txt {
  position: relative;
  z-index: 2;
}
.benefit_content_num {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: hsl(0, 0%, 100%);
  font-family: "Albert Sans", sans-serif;
  font-weight: 700;
  font-size: 90px;
  text-box-trim: trim-both;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
}
@media (min-width: 920px) {
  .benefit_content_num {
    top: 38%;
    font-size: clamp(90px, 6.9444444444vw, 120px);
  }
}
.benefit_content_container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 920px) {
  .benefit_content_container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    gap: 13px;
  }
}
.benefit_content_ttl {
  color: #F08200;
  font-weight: 700;
  font-size: 20px;
  text-box-trim: trim-both;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-align: center;
  position: relative;
  z-index: 2;
}
@media (min-width: 920px) {
  .benefit_content_ttl {
    font-size: clamp(18px, 1.1574074074vw, 20px);
  }
}
@media (min-width: 1200px) {
  .benefit_content_ttl br {
    display: none;
  }
}

.solution {
  margin-top: 70px;
}
@media (min-width: 920px) {
  .solution {
    margin-top: min(9.2592592593vw, 160px);
  }
}
.solution_img {
  background: #F08200;
  padding: 13px 11px 22px 13px;
  border-radius: 10px;
  margin-top: 40px;
}
@media (min-width: 920px) {
  .solution_img {
    padding: 25px 44px 33px 50px;
    border-radius: 20px;
    max-width: 595px;
    margin: 80px auto 0;
  }
}
.solution_img picture img {
  max-width: none;
  width: 100%;
}

.recommended {
  padding: 80px 0 0;
  position: relative;
}
@media (min-width: 920px) {
  .recommended {
    padding: min(9.2592592593vw, 160px) 0 0;
  }
}
.recommended .service03 {
  z-index: -1;
  top: -112px;
  left: -105px;
}
@media (min-width: 920px) {
  .recommended .service03 {
    max-width: none;
    top: -14.4675925926vw;
    right: -19.3287037037vw;
    left: auto;
    width: min(42.5347222222vw, 735px);
  }
}

.snow_section {
  color: hsl(0, 0%, 100%);
  background-image: image-set("../img/service/home/snow.jpg" 1x, "../img/service/home/snow@2x.jpg" 2x);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  padding: 165px 0 163px;
  position: relative;
  z-index: 1;
  margin-top: -100px;
}
@media (min-width: 920px) {
  .snow_section {
    background-image: image-set("../img/service/home/snow_pc.jpg" 1x, "../img/service/home/snow_pc@2x.jpg" 2x);
    padding: min(22.8009259259vw, 394px) 0 min(32.349537037vw, 559px);
    margin-top: max(-13.1944444444vw, -228px);
  }
}
.snow_section.commercial {
  background-image: image-set("../img/service/commercial/snow.jpg" 1x, "../img/service/commercial/snow@2x.jpg" 2x);
  padding: 192px 0 153px;
  margin-top: -100px;
  position: relative;
  z-index: -1;
}
@media (min-width: 920px) {
  .snow_section.commercial {
    background-image: image-set("../img/service/commercial/snow_pc.jpg" 1x, "../img/service/commercial/snow_pc@2x.jpg" 2x);
    padding: 330px 0 360px;
    margin-top: -180px;
  }
}
.snow_section_main {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media (min-width: 920px) {
  .snow_section_main {
    gap: min(2.662037037vw, 46px);
  }
}
.snow_section_head {
  display: flex;
  flex-direction: column;
  gap: 34px;
}
@media (min-width: 920px) {
  .snow_section_head {
    gap: min(2.8935185185vw, 50px);
  }
}
.snow_section_ttl {
  font-weight: 900;
  font-size: 24px;
  text-box-trim: trim-both;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media (min-width: 920px) {
  .snow_section_ttl {
    font-size: clamp(20px, 2.3148148148vw, 40px);
  }
}
.snow_section_list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.snow_section_list_item {
  padding-left: 16px;
  position: relative;
}
.snow_section_list_item::before {
  position: absolute;
  content: "";
  top: 0.6em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background-color: hsl(0, 0%, 100%);
}
@media (min-width: 920px) {
  .snow_section_list_item br {
    display: none;
  }
}
.snow_section_txt {
  font-weight: 500;
  font-size: 16px;
  text-box-trim: trim-both;
  line-height: 1.9;
  letter-spacing: 0.04em;
}
@media (min-width: 920px) {
  .snow_section_txt {
    font-size: clamp(16px, 1.1574074074vw, 20px);
    line-height: 2;
  }
}
.snow_section_txt_bottom {
  font-weight: 900;
  font-size: 20px;
  text-box-trim: trim-both;
  line-height: 1.6;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
@media (min-width: 920px) {
  .snow_section_txt_bottom {
    font-size: clamp(20px, 1.7361111111vw, 30px);
  }
}
@media (min-width: 920px) {
  .snow_section_txt_bottom br {
    display: none;
  }
}

.subPage_works {
  margin-bottom: 80px;
}
@media (min-width: 920px) {
  .subPage_works {
    margin-bottom: 160px;
  }
}

.process_content {
  background: #F4F3F0;
  position: relative;
  border-radius: 10px;
  padding: 25px 20px 25px 50px;
}
@media (min-width: 920px) {
  .process_content {
    padding: 61px 21px clamp(30px, 2.3148148148vw, 40px);
    margin-top: 45px;
  }
}
.process_content_container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 30px;
  margin-top: 40px;
}
@media (min-width: 920px) {
  .process_content_container {
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    gap: clamp(20px, 1.7361111111vw, 30px);
    margin-top: min(4.6296296296vw, 80px);
  }
}
@media (min-width: 1500px) {
  .process_content_container {
    grid-template-columns: repeat(6, 1fr);
  }
}
.process_content_inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 920px) {
  .process_content_inner {
    gap: clamp(16px, 1.3888888889vw, 24px);
    align-items: center;
  }
}
.process_content_ttl {
  color: #F08200;
  font-weight: 700;
  font-size: 16px;
  text-box-trim: trim-both;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media (min-width: 920px) {
  .process_content_ttl {
    text-align: center;
  }
}
@media (min-width: 920px) {
  .process_content_ttl_wrap {
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.process_content_ttl br {
  display: none;
}
@media (min-width: 920px) {
  .process_content_ttl br {
    display: block;
  }
}
.process_content_txt {
  font-weight: 400;
  font-size: 14px;
  text-box-trim: trim-both;
  line-height: 1.7;
  letter-spacing: 0.04em;
}
@media (min-width: 920px) {
  .process_content_txt {
    text-align: center;
    font-feature-settings: "palt";
  }
}
.process_content_txt br {
  display: none;
}
@media (min-width: 920px) {
  .process_content_txt br {
    display: block;
  }
}
.process_circle {
  background: #F08200;
  border-radius: 999px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  left: -30px;
  transform: translateY(-50%);
}
@media (min-width: 920px) {
  .process_circle {
    width: 90px;
    height: 90px;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.process_step {
  color: hsl(0, 0%, 100%);
  font-family: "Albert Sans", sans-serif;
  font-weight: 500;
  font-size: 10px;
  text-box-trim: trim-both;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
}
.process_num {
  color: hsl(0, 0%, 100%);
  font-family: "Albert Sans", sans-serif;
  font-weight: 700;
  font-size: 26px;
  text-box-trim: trim-both;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
}
@media (min-width: 920px) {
  .process_num {
    font-size: 40px;
  }
}

.faq_section {
  margin-top: 80px;
  padding-bottom: 100px;
}
@media (min-width: 920px) {
  .faq_section {
    margin-top: min(9.2592592593vw, 160px);
    padding-bottom: min(8.1018518519vw, 140px);
  }
}
.faq_section_line {
  display: none;
}
@media (min-width: 920px) {
  .faq_section_line {
    display: block;
    width: 100%;
    height: 1px;
    background: #E5E3DC;
    margin-top: min(10.4166666667vw, 180px);
  }
}
.faq_section.ppa_page {
  margin-top: 0;
  padding-bottom: 30px;
}
@media (min-width: 920px) {
  .faq_section.ppa_page {
    padding-bottom: min(3.4722222222vw, 60px);
  }
}
.faq-list {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 30px;
}
@media (min-width: 920px) {
  .faq-list {
    grid-template-columns: repeat(2, 1fr);
    /* 横2列 */
    grid-template-rows: repeat(3, auto);
    /* 縦3列分の高さ */
    grid-auto-flow: column;
    gap: 0 min(5.787037037vw, 100px);
    margin-top: min(4.6296296296vw, 80px);
  }
}
@media (min-width: 920px) {
  .faq-list.grid-4 {
    grid-template-columns: repeat(2, 1fr);
    /* 横2列 */
    grid-template-rows: repeat(2, auto);
    /* 縦2列分の高さ */
    grid-auto-flow: column;
    gap: 0 min(5.787037037vw, 100px);
    margin-top: min(4.6296296296vw, 80px);
  }
}
.faq-list.grid-4 .faq-item:nth-child(4) {
  border-bottom: 1px solid #E5E3DC;
}
@media (min-width: 920px) {
  .faq-list.grid-4 .faq-item:nth-child(2), .faq-list.grid-4 .faq-item:nth-child(4) {
    border-bottom: 1px solid #E5E3DC;
  }
}
.faq-list.grid-4-row {
  /* スマホ・デフォルト時は通常の横流れ */
  grid-template-columns: 1fr;
  /* タブレット時は2×2の縦流れ */
}
@media (min-width: 920px) {
  .faq-list.grid-4-row {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    grid-auto-flow: column;
    /* タブレット時は縦流れ */
    gap: 0 min(5.787037037vw, 100px);
    margin-top: min(4.6296296296vw, 80px);
    grid-auto-flow: row;
    /* 横流れ（左上、右上、左下、右下）に戻す */
    grid-template-rows: auto;
    /* 行の固定を解除 */
  }
}
.faq-list.grid-4-row .faq-item {
  /* スマホ時のボーダー（4番目） */
}
.faq-list.grid-4-row .faq-item:nth-child(4) {
  border-bottom: 1px solid #E5E3DC;
}
.faq-list.grid-4-row .faq-item {
  /* タブレット時のボーダー（2番目と4番目） */
}
@media (min-width: 920px) {
  .faq-list.grid-4-row .faq-item:nth-child(2), .faq-list.grid-4-row .faq-item:nth-child(4) {
    border-bottom: 1px solid #E5E3DC;
  }
}
.faq-list.grid-4-row .faq-item {
  /* PC時（1024px以上）のボーダー（3番目と4番目） */
}
@media screen and (min-width: 1024px) {
  .faq-list.grid-4-row .faq-item:nth-child(2) {
    border-bottom: none;
    /* タブレットで入れたボーダーを消す場合 */
  }
  .faq-list.grid-4-row .faq-item:nth-child(3), .faq-list.grid-4-row .faq-item:nth-child(4) {
    border-bottom: 1px solid #E5E3DC;
  }
}
.faq-item {
  border-top: 1px solid #E5E3DC;
  padding: 24px 0 30px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
@media (min-width: 920px) {
  .faq-item {
    padding: clamp(20px, 1.7361111111vw, 30px) 0 clamp(20px, 2.4884259259vw, 43px);
    gap: clamp(10px, 1.1574074074vw, 20px);
  }
}
.faq-item:nth-child(6) {
  border-bottom: 1px solid #E5E3DC;
}
@media (min-width: 920px) {
  .faq-item:nth-child(3), .faq-item:nth-child(6) {
    border-bottom: 1px solid #E5E3DC;
  }
}
.faq-item_ttl {
  font-feature-settings: "palt";
  font-weight: 700;
  font-size: 18px;
  text-box-trim: trim-both;
  line-height: 1.9;
  letter-spacing: 0.04em;
}
@media (min-width: 920px) {
  .faq-item_ttl {
    font-size: clamp(18px, 1.1574074074vw, 20px);
    line-height: 1.6;
  }
}
@media (min-width: 600px) {
  .faq-item_ttl .br_tab {
    display: none;
  }
}
@media (min-width: 600px) {
  .faq-item_ttl .br_sp {
    display: none;
  }
}
@media (min-width: 920px) {
  .faq-item_ttl .br_sp {
    display: block;
  }
}
.faq-item_ttl .br_pc {
  display: none;
}
@media (min-width: 920px) {
  .faq-item_ttl .br_pc {
    display: block;
  }
}
.faq-item-q {
  color: hsl(0, 0%, 100%);
  font-family: "Albert Sans", sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-box-trim: trim-both;
  line-height: 1;
  text-align: center;
  width: 30px;
  height: 30px;
  background: #F08200;
  border-radius: 999px;
  padding: 6px 0 8px;
  flex-shrink: 0;
}
@media (min-width: 920px) {
  .faq-item-q {
    font-size: clamp(18px, 1.1574074074vw, 20px);
    width: 40px;
    height: 40px;
    padding: 8px 0;
  }
}
.faq-item_inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 920px) {
  .faq-item_inner {
    gap: clamp(20px, 2.0833333333vw, 36px);
    margin-top: 5px;
  }
}

.point_content {
  background: hsl(0, 0%, 100%);
  padding: 12px 20px 40px;
  border-radius: 10px;
  /* スマホ：右上のみマスク */
  mask-image: linear-gradient(#000, #000), url("../img/service/point_mask.svg");
  mask-repeat: no-repeat;
  mask-size: 100% 100%, auto auto, auto auto;
  mask-composite: exclude;
  mask-position: 0 0, top right;
}
@media (min-width: 920px) {
  .point_content {
    padding: 12px 30px 70px;
    mask-image: linear-gradient(#000, #000), url("../img/service/point_mask_pc.svg");
  }
}
.point_content_container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 920px) {
  .point_content_container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
}
.point_content_head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
@media (min-width: 920px) {
  .point_content_head {
    flex-direction: column-reverse;
    gap: 60px;
    margin-bottom: 30px;
  }
}
.point_content_num {
  color: hsl(33, 100%, 47%);
  font-family: "Albert Sans", sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 10px;
  text-box-trim: trim-both;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.point_content_img {
  max-width: 95px;
  margin: 0 auto;
}
.point_content_ttl {
  color: hsl(33, 100%, 47%);
  font-weight: 700;
  font-style: Bold;
  font-size: 20px;
  text-box-trim: trim-both;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media (min-width: 920px) {
  .point_content_ttl {
    font-size: 20px;
  }
}

.ppa {
  margin-top: 30px;
}
@media (min-width: 920px) {
  .ppa {
    margin-top: 50px;
  }
}
@media (min-width: 920px) {
  .ppa .container-base {
    max-width: 1380px;
  }
}
.ppa_main {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  background: #F08200;
  border-radius: 10px;
  padding: 30px 20px 40px;
}
@media (min-width: 920px) {
  .ppa_main {
    background: transparent;
    gap: 20px;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: min(5.2662037037vw, 91px) clamp(40px, 4.0509259259vw, 70px) min(5.787037037vw, 100px);
  }
}
.ppa_bg {
  display: none;
}
@media (min-width: 920px) {
  .ppa_bg {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  .ppa_bg img {
    max-width: none;
    width: 100%;
  }
}
.ppa_txt_wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media (min-width: 920px) {
  .ppa_txt_wrapper {
    gap: 40px;
    width: clamp(300px, 29.5138888889vw, 510px);
  }
}
.ppa_ttl {
  color: hsl(0, 0%, 100%);
  font-weight: 900;
  font-size: 24px;
  text-box-trim: trim-both;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-align: center;
}
@media (min-width: 920px) {
  .ppa_ttl {
    font-size: clamp(24px, 2.3148148148vw, 40px);
    text-align: left;
  }
}
.ppa_img {
  position: relative;
  z-index: 2;
}
@media (min-width: 920px) {
  .ppa_img {
    width: min(32.1180555556vw, 555px);
    margin-top: max(-0.2314814815vw, -4px);
  }
}
.ppa_img picture img {
  max-width: none;
  width: 100%;
}

.solution_section {
  margin-top: 80px;
}
@media (min-width: 920px) {
  .solution_section {
    margin-top: 160px;
  }
}
.solution_content {
  padding: 40px 20px 24px;
  border-radius: 10px;
  background: hsl(0, 0%, 100%);
}
@media (min-width: 920px) {
  .solution_content {
    padding: clamp(36px, 2.8935185185vw, 50px) clamp(36px, 4.0509259259vw, 70px) clamp(32px, 3.4722222222vw, 60px);
  }
}
.solution_content .common_link {
  margin: 30px auto 0;
  max-width: 291px;
}
@media (min-width: 920px) {
  .solution_content .common_link {
    margin: 50px 0 0 auto;
  }
}
.solution_content_container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
  position: relative;
  z-index: 10;
}
@media (min-width: 920px) {
  .solution_content_container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(20px, 2.8935185185vw, 50px);
    margin: min(4.6296296296vw, 80px) auto 0;
    max-width: 1300px;
  }
}
.solution_content_head {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 920px) {
  .solution_content_head {
    gap: clamp(20px, 2.3148148148vw, 40px);
  }
}
.solution_content_ttl {
  color: #F08200;
  font-weight: 900;
  font-size: 24px;
  text-box-trim: trim-both;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-align: center;
  font-feature-settings: "palt";
}
@media (min-width: 920px) {
  .solution_content_ttl {
    font-weight: 900;
    font-size: clamp(20px, 2.3148148148vw, 40px);
  }
}
.solution_content_ttl span {
  font-size: 20px;
}
@media (min-width: 920px) {
  .solution_content_ttl span {
    font-size: clamp(20px, 1.7361111111vw, 30px);
  }
}
.solution_content_txt {
  font-weight: 500;
  font-size: 14px;
  text-box-trim: trim-both;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media (min-width: 393px) {
  .solution_content_txt {
    font-size: 16px;
  }
}
@media (min-width: 920px) {
  .solution_content_txt {
    font-weight: 500;
    font-size: clamp(16px, 1.0416666667vw, 18px);
    line-height: 2.2;
    letter-spacing: 0%;
  }
}
@media (min-width: 600px) {
  .solution_content_txt .br_sp {
    display: none;
  }
}
.solution_content_list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 920px) {
  .solution_content_list {
    gap: 20px;
  }
}
.solution_content_list_item {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (min-width: 393px) {
  .solution_content_list_item {
    align-items: flex-start;
  }
}
@media (min-width: 920px) {
  .solution_content_list_item {
    gap: 12px;
  }
}
.solution_content_list_item_icon {
  max-width: 20px;
}
.solution_content_inner {
  border-radius: 10px;
  background: #F4F3F0;
  padding: 22px 20px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}
@media (min-width: 920px) {
  .solution_content_inner {
    padding: 30px;
    gap: 20px;
    margin-top: 50px;
  }
}
.solution_content_inner_ttl {
  background: #F08200;
  color: hsl(0, 0%, 100%);
  font-weight: 700;
  font-size: 18px;
  text-box-trim: trim-both;
  line-height: 1.9;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 4px 10px;
  border-radius: 4px;
  width: fit-content;
  text-align: center;
}
@media (min-width: 920px) {
  .solution_content_inner_ttl {
    text-align: left;
  }
}
.solution_content_inner_list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.solution_content_inner_list_item {
  position: relative;
  font-weight: 400;
  font-size: 14px;
  text-box-trim: trim-both;
  line-height: 1.6;
  letter-spacing: 0.04em;
  padding-left: 18px;
}
@media (min-width: 920px) {
  .solution_content_inner_list_item {
    font-size: 16px;
    line-height: 1.9;
  }
}
.solution_content_inner_list_item::before {
  position: absolute;
  content: "";
  top: 0.6em;
  left: 0;
  width: 8px;
  height: 8px;
  background: #F08200;
  border-radius: 999px;
}

.why {
  margin-top: 80px;
}
@media (min-width: 920px) {
  .why {
    margin-top: min(10.4166666667vw, 180px);
  }
}
.why_content {
  display: flex;
  flex-direction: column;
}
.why_content_container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 30px;
}
@media (min-width: 920px) {
  .why_content_container {
    gap: 12px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: min(4.6296296296vw, 80px);
  }
}
@media (min-width: 1200px) {
  .why_content_container {
    grid-template-columns: repeat(4, 1fr);
  }
}
.why_content_tub {
  background-image: url(../img/service/commercial/tub.svg);
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 9px 20px;
}
.why_content_tub_inner {
  color: #F08200;
  width: fit-content;
  font-family: "Albert Sans", sans-serif;
  font-weight: 500;
  font-size: 10px;
  text-box-trim: trim-both;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.why_content_main {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: hsl(0, 0%, 100%);
  padding: 14px 20px 40px;
  border-radius: 0 10px 10px 10px;
  height: 100%;
}
@media (min-width: 920px) {
  .why_content_main {
    gap: 24px;
    padding: clamp(28px, 2.8935185185vw, 50px) clamp(20px, 1.7361111111vw, 30px) clamp(28px, 2.0833333333vw, 36px);
  }
}
.why_content_main_head {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media (min-width: 920px) {
  .why_content_main_head {
    flex-direction: column;
    gap: 33px;
  }
}
.why_content_img picture img {
  max-width: none;
  width: 100%;
}
.why_content_ttl {
  color: #F08200;
  font-weight: 700;
  font-size: 18px;
  text-box-trim: trim-both;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media (min-width: 390px) {
  .why_content_ttl {
    font-size: 20px;
  }
}
@media (min-width: 920px) {
  .why_content_ttl {
    text-align: center;
  }
}
.why_content_ttl_wrap {
  display: flex;
  align-items: center;
}
@media (min-width: 920px) {
  .why_content_ttl_wrap {
    height: 61px;
  }
}
@media (min-width: 1300px) {
  .why_content_ttl_wrap {
    height: auto;
  }
}
@media (min-width: 920px) {
  .why_content_ttl .br_sp {
    display: block;
  }
}
@media (min-width: 1300px) {
  .why_content_ttl .br_sp {
    display: none;
  }
}

.white_bg {
  background: hsl(0, 0%, 100%);
  border-radius: 50px 50px 0 0;
  padding-top: 100px;
  position: relative;
  z-index: 2;
  margin-top: -64px;
}
@media (min-width: 920px) {
  .white_bg {
    border-radius: 120px 120px 0 0;
    margin-top: max(-22.3958333333vw, -387px);
    padding-top: min(8.6805555556vw, 150px);
  }
}
.white_bg.commercial {
  border-radius: 50px 0 0 0;
  margin-top: -120px;
}
@media (min-width: 920px) {
  .white_bg.commercial {
    border-radius: 120px 0 0 0;
    margin-top: -120px;
  }
}
.white_bg_wrap {
  background: #F4F3F0;
  position: relative;
  top: -71px;
}
.white_bg.ppa_page {
  border-radius: 50px 0 0 0;
  margin-top: 0;
}
@media (min-width: 920px) {
  .white_bg.ppa_page {
    border-radius: 120px 0 0 0;
    padding-top: min(10.4166666667vw, 180px);
  }
}

.oneStop {
  position: relative;
  background: #F08200;
  border-radius: 10px;
  padding: 30px 20px 40px;
  margin-top: 100px;
}
@media (min-width: 920px) {
  .oneStop {
    padding: 90px 70px 42px;
    background: transparent;
    margin-top: 119px;
  }
}
.oneStop_bg {
  display: none;
}
@media (min-width: 920px) {
  .oneStop_bg {
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.oneStop_bg img {
  max-width: none;
  width: 100%;
}
.oneStop_main {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media (min-width: 920px) {
  .oneStop_main {
    gap: 0;
    align-items: flex-start;
  }
}
.oneStop_ttl {
  color: hsl(0, 0%, 100%);
  font-weight: 900;
  font-size: 20px;
  text-box-trim: trim-both;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-align: center;
}
@media (min-width: 920px) {
  .oneStop_ttl {
    font-size: 30px;
    text-align: left;
  }
}
.oneStop_img {
  width: 100%;
}
@media (min-width: 600px) {
  .oneStop_img {
    width: 60%;
  }
}
@media (min-width: 920px) {
  .oneStop_img {
    width: min(50.2893518519vw, 869px);
    margin-left: 146px;
    margin-top: -54px;
  }
}
.oneStop_img picture img {
  max-width: none;
  width: 100%;
}

.service_contact {
  background: hsl(157, 45%, 58%);
  border-radius: 50px 0 50px 50px;
  padding: 90px 0 100px;
  position: relative;
}
@media (min-width: 920px) {
  .service_contact {
    border-radius: 120px 0 120px 120px;
    padding: min(9.7222222222vw, 168px) 0 min(10.4166666667vw, 180px);
  }
}
.service_contact_main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media (min-width: 920px) {
  .service_contact_main {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}
.service_contact_head {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 920px) {
  .service_contact_head {
    gap: 50px;
    width: clamp(300px, 24.8263888889vw, 429px);
  }
}
.service_contact_head_inner {
  display: flex;
  flex-direction: column;
}
@media (min-width: 920px) {
  .service_contact_head_inner {
    gap: clamp(20px, 1.3888888889vw, 24px);
  }
}
.service_contact_ttl {
  color: hsl(0, 0%, 100%);
  font-family: "Albert Sans", sans-serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 50px;
  text-box-trim: trim-both;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-align: center;
}
@media (min-width: 920px) {
  .service_contact_ttl {
    font-size: min(4.6296296296vw, 80px);
    text-align: left;
  }
}
.service_contact_ttl_jp {
  color: hsl(0, 0%, 100%);
  font-weight: 900;
  font-size: 20px;
  text-box-trim: trim-both;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-align: center;
}
@media (min-width: 920px) {
  .service_contact_ttl_jp {
    font-size: clamp(20px, 1.7361111111vw, 30px);
    text-align: left;
  }
}

.service_content_link:hover .common_link_arrow {
  background-color: hsl(36, 6%, 15%);
}

.service_subPage_top_head_wrap {
  position: relative;
  z-index: 10;
}

.ppa_overview_img {
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 313/181;
}
@media (min-width: 920px) {
  .ppa_overview_img {
    border-radius: 20px;
    flex: 1 0 44.6%;
    aspect-ratio: 580/358;
  }
}
.ppa_overview_img img {
  max-width: none;
  width: 100%;
  object-fit: cover;
}
.ppa_overview_content {
  background: hsl(0, 0%, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  border-radius: 10px;
  padding: 35px 20px 24px;
  margin-top: 30px;
}
@media (min-width: 920px) {
  .ppa_overview_content {
    flex-direction: row;
    align-items: flex-start;
    gap: clamp(20px, 4.0509259259vw, 70px);
    border-radius: 20px;
    padding: clamp(40px, 4.6296296296vw, 80px) clamp(20px, 4.0509259259vw, 70px) clamp(40px, 5.2083333333vw, 90px);
    margin-top: clamp(40px, 4.6296296296vw, 80px);
  }
}
.ppa_overview_content_txt_wrap .worries_list {
  margin-top: 30px;
  border-radius: 0;
  padding: 0;
}
@media (min-width: 920px) {
  .ppa_overview_content_txt_wrap .worries_list {
    margin-top: 60px;
  }
}

/* テーブル全体 */
.comparison-table-wrap {
  width: 100%;
  color: #333;
  margin-top: 40px;
}
@media (min-width: 920px) {
  .comparison-table-wrap {
    margin: 80px auto 0;
    max-width: 1299px;
  }
}

/* ヘッダー（プラン名） */
.comparison-header {
  display: flex;
  color: #fff;
  font-weight: bold;
  text-align: center;
}

.comparison-header .col-empty {
  display: none;
  /* SP時は非表示 */
}

.comparison-header .plan-title {
  flex: 1;
  padding: 21px 8px;
  font-weight: 700;
  font-size: 15px;
  text-box-trim: trim-both;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.comparison-header .plan-title.left {
  background: #F29526;
  border-radius: 10px 0 0 0;
}
.comparison-header .plan-title.right {
  background: #F08200;
  border-radius: 0 10px 0 0;
}
@media screen and (min-width: 920px) {
  .comparison-header .plan-title {
    padding: 45px 8px;
    font-size: clamp(15px, 1.1574074074vw, 20px);
  }
  .comparison-header .plan-title.left {
    background: #F29526;
    border-radius: 20px 0 0 0;
  }
  .comparison-header .plan-title.right {
    background: #F08200;
    border-radius: 0 20px 0 0;
  }
}
@media (min-width: 920px) {
  .comparison-header .plan-title .br_sp {
    display: none;
  }
}

.comparison-header .plan-title:first-of-type {
  border-left: none;
}

/* 各行のベース（SP時は縦並び：ラベルが上、データが横並び） */
.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* 2つのデータを左右に横並び */
  margin-top: 16px;
}
@media (min-width: 920px) {
  .comparison-row {
    margin-top: 0;
  }
}

/* 項目名（SP時は行の最上部に全幅で配置） */
.row-label {
  grid-column: 1/-1;
  /* 2カラム分を占有して上に配置 */
  font-weight: 700;
  font-size: 15px;
  text-box-trim: trim-both;
  line-height: 160%;
  letter-spacing: 4%;
  text-align: center;
  color: #9C968E;
}
@media (min-width: 920px) {
  .row-label {
    grid-column: auto;
    width: 23%;
    display: flex;
    align-items: center;
    border-radius: 0;
    border-right: 1px solid #E5E3DC;
    padding: 35px 0;
    font-size: clamp(15px, 1.1574074074vw, 20px);
  }
}

/* データ部分 */
.col-data {
  text-align: center;
  padding: 10px 8px;
  background-color: #fff;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  text-box-trim: trim-both;
  line-height: 1.6;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
  margin-top: 12px;
  height: 72px;
}
@media (min-width: 920px) {
  .col-data {
    margin-top: 0;
    flex: 1;
    border: none;
    border-right: 1px solid #E5E3DC;
    border-radius: 0;
    padding: 35px 8px;
    height: auto;
    font-size: clamp(15px, 1.1574074074vw, 20px);
  }
  .col-data:last-child {
    border-right: none;
  }
}
@media (min-width: 920px) {
  .col-data .br_sp {
    display: none;
  }
}

.suitability {
  position: relative;
}
.suitability_wrap {
  background: #F4F3F0;
  position: relative;
  padding: 80px 0 100px;
  top: -71px;
}
@media (min-width: 920px) {
  .suitability_wrap {
    padding: min(9.0277777778vw, 156px) 0 min(45.8015267176vw, 180px);
  }
}
.suitability_wrap .service03 {
  z-index: 4;
  bottom: -70px;
  left: -84px;
}
@media (min-width: 920px) {
  .suitability_wrap .service03 {
    bottom: -13.3101851852vw;
    left: -12.4421296296vw;
    width: min(32.2916666667vw, 558px);
  }
}

@media screen and (min-width: 920px) {
  .comparison-table-wrap {
    font-size: 15px;
  }
  .comparison-header .col-empty {
    display: block;
    width: 23%;
    /* PC時のラベル列の幅 */
    background: transparent;
  }
  /* PC時は「ラベル」「データ1」「データ2」を横一列に並べる */
  .comparison-row {
    display: flex;
    align-items: stretch;
    padding: 0;
    gap: 0;
    border-bottom: 1px solid #E5E3DC;
  }
}
.service_page {
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-duration: 0.75s;
}
.service_page img {
  vertical-align: middle;
  width: 100%;
}
.service_page a {
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-duration: 0.75s;
}
.service_page a:hover {
  opacity: 0.7;
}
.service_page *:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/**
* Project
**/
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: min(2vw, 20px) min(4vw, 40px);
  transition: background-color 0.3s ease;
}

@media only screen and (max-width: 767px) {
  .l-header {
    padding: 5vw 5vw;
  }
}
.p-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}

.p-header__logo {
  width: min(19vw, 316px);
  z-index: 102;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .p-header__logo {
    width: 40vw;
  }
}
.p-header__logo img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.p-header__nav {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.0784313725);
  padding: 0 min(2vw, 4px);
}

@media only screen and (max-width: 1080px) {
  .p-header__nav {
    display: none;
  }
}
.p-header__list {
  display: flex;
  align-items: center;
}

.p-header__item {
  position: relative;
}

.p-header__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background-color: #CCCCCC;
}

.p-header__item a {
  display: block;
  font-size: min(1vw, 15px);
  font-weight: 700;
  color: #000000;
  text-decoration: none;
  padding: min(1.2vw, 18px) min(2vw, 28px);
  transition: color 0.3s;
}

.p-header__item a:hover {
  color: #005BC1;
}

.p-header__hamburger {
  display: none;
  background-color: #005BC1;
  border: none;
  cursor: pointer;
  padding: 0;
  width: min(12vw, 48px);
  height: min(12vw, 48px);
  border-radius: 50%;
  position: relative;
  z-index: 102;
  transition: background-color 0.3s ease;
}

@media only screen and (max-width: 1080px) {
  .p-header__hamburger {
    display: block;
  }
}
.p-header__hamburgerLine {
  position: absolute;
  left: 50%;
  width: 45%;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.p-header__hamburgerLine:nth-child(1) {
  top: calc(50% - 4px);
  transform: translate(-50%, -50%);
}

.p-header__hamburgerLine:nth-child(2) {
  top: calc(50% + 4px);
  transform: translate(-50%, -50%);
}

.p-header__hamburgerLine:nth-child(3) {
  display: none;
}

.p-header__hamburger.is-active {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.p-header__hamburger.is-active .p-header__hamburgerLine {
  background-color: #666;
  height: 1px;
}

.p-header__hamburger.is-active .p-header__hamburgerLine:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.p-header__hamburger.is-active .p-header__hamburgerLine:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.p-header__drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #EEF8FF;
  z-index: 99;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 30vw 10vw 10vw;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.p-header__drawer.is-active {
  transform: translateX(0);
}

.p-header__drawerList {
  text-align: left;
  width: 100%;
}

.p-header__drawerItem {
  margin-bottom: 2vw;
}

.p-header__drawerItem:last-child {
  margin-bottom: 0;
}

.p-header__drawerItem a {
  font-size: 4.8vw;
  font-weight: 500;
  color: #222;
  display: block;
  padding: 2vw 0;
  text-decoration: none;
}

.p-fixed {
  position: fixed;
  bottom: 36px;
  right: 36px;
  width: 136px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 100;
}

/* @media only screen and (max-width: 767px) {
	.p-fixed {
		display: none;
	}
} */
.p-fixed a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  width: 136px;
  height: 136px;
  border-radius: 136px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.p-fixed a.orange {
  background-image: url(../img/sharedgridbattery_4th/fixed-bg_orange.png);
}

.p-fixed a.blue {
  background-image: url(../img/sharedgridbattery_4th/fixed-bg_blue.png);
}

.p-fixed a.light_blue {
  background-image: url(../img/sharedgridbattery_4th/fixed-bg_light-blue.png);
}

.p-fixed__icon {
  display: block;
  width: 46px;
  margin: 0 auto 10px;
}

.p-fixed__desc {
  color: hsl(0, 0%, 100%);
  font-size: min(1.8vw, 18px);
  line-height: 1.1;
  font-weight: 700;
}

.p-fixed__small {
  display: block;
  margin-top: 6px;
  font-size: min(1.1vw, 12px);
  text-align: center;
  line-height: 1.2;
  color: #fff;
}

/* 260304追加 */
@media only screen and (max-width: 767px) {
  .p-fixed {
    width: 80px;
    bottom: 110px;
    right: 10px;
    gap: 8px;
  }
  .p-fixed__desc {
    font-size: 10px;
  }
  .p-fixed__link.sp_hidden {
    display: none;
  }
  .p-fixed a {
    width: 80px;
    height: 80px;
  }
  .p-fixed a:hover {
    opacity: 1;
  }
}
/* 260304追加ここまで */
.p-mv__logo {
  position: absolute;
  top: 18px;
  left: 18px;
  width: min(18vw, 316px);
  z-index: 1;
}

@media only screen and (max-width: 767px) {
  .p-mv__logo {
    top: 10vw;
    left: 5vw;
    width: 38vw;
  }
}
.p-mv {
  position: relative;
  overflow: hidden;
  max-height: 100vh;
  min-height: min(60vw, 1100px);
}

@media only screen and (max-width: 767px) {
  .p-mv {
    width: 100%;
    height: 100vh;
    max-height: auto;
    min-height: auto;
  }
}
.p-mv__img {
  position: relative;
}

.p-mv__inner,
.p-mv__img,
.p-mv__img picture {
  height: 100%;
}

.p-mv__wrap {
  display: flex;
  flex-direction: column;
  gap: 3vw;
  position: absolute;
  top: 50%;
  left: 5vw;
  transform: translate(0, -50%);
  width: min(46vw, 1000px);
}

@media only screen and (max-height: 1100px) {
  .p-mv__wrap {
    top: 54%;
    width: min(42vw, 1000px);
  }
}
@media only screen and (max-width: 767px) {
  .p-mv__wrap {
    top: 30vw;
    left: 50%;
    transform: translate(-50%, 0);
    width: 87%;
  }
}
@media only screen and (max-width: 767px) {
  .p-mv__btn {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .p-mv__img img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.p-mv__btnMain {
  width: 79%;
}

.p-mv__submit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: min(0.8vw, 18px) 20px min(0.9vw, 20px);
  text-align: center;
  font-size: min(2vw, 30px);
  font-weight: 900;
  color: hsl(0, 0%, 100%);
  background: #EF8200;
  border-radius: 50px;
}

@media only screen and (max-width: 1600px) {
  .p-mv__submit {
    font-size: min(1.6vw, 20px);
  }
}
@media only screen and (max-width: 1400px) {
  .p-mv__btnTxt {
    font-size: min(1.6vw, 20px);
  }
}
.p-mv__submit i {
  display: inline-flex;
  max-width: min(3.2vw, 63px);
}

.p-mv__submit:hover {
  background: #FBA640;
  opacity: 1;
}

.p-mv__submit:after {
  position: absolute;
  top: 50%;
  right: 6%;
  content: "";
  width: min(1.3vw, 26px);
  height: min(1.3vw, 26px);
  transform: translate(0, -50%);
  background-image: url(../img/sharedgridbattery_4th/icon-arrow.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.p-mv__btnTxt {
  display: block;
  margin-bottom: min(0.8vw, 13px);
  font-size: min(1.4vw, 28px);
  font-weight: 600;
  line-height: 1.4;
  color: #EF8200;
  text-align: center;
}

@media only screen and (max-width: 1600px) {
  .p-mv__btnTxt {
    font-size: min(1.4vw, 20px);
  }
}
@media only screen and (max-width: 1400px) {
  .p-mv__btnTxt {
    font-size: min(1.2vw, 20px);
  }
}
.p-mv__btnInner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2.8vw;
  padding: min(9vw, 179px) min(4vw, 68px) min(2.2vw, 50px) min(4vw, 36px);
  background: rgba(255, 255, 255, 0.5);
  border-radius: 15px;
}

.p-mv__offer {
  position: absolute;
  top: -5vw;
  left: 50%;
  transform: translate(-50%, 0);
  width: 79%;
}

.p-mv__ttl {
  width: 71%;
  margin: 0 auto min(7.2vw, 84px);
}

@media only screen and (max-height: 1100px) {
  .p-mv__ttl {
    width: 84.74%;
    margin: 0 auto min(2.8vw, 84px);
  }
}
@media only screen and (max-width: 767px) {
  .p-mv__ttl {
    width: 100%;
    margin: 0 auto;
  }
}
.p-mv__btnImg {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 32%;
}

@media only screen and (max-width: 767px) {
  .p-mv__btnImg {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 29vw;
  }
}
.p-mv__spBtn {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-image: url(../img/sharedgridbattery_4th/spbtn-bg.svg);
  background-size: cover;
  background-position: center;
  background-size: cover;
  z-index: 9999;
}

.p-mv__spLink {
  color: hsl(0, 0%, 100%);
  position: relative;
  display: block;
  padding: 2vw 12vw 2.6vw 3.8vw;
}

.p-mv__spNote {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2vw;
  font-size: 5.45vw;
  font-weight: 800;
  padding-right: 2vw;
  width: 70vw;
}

.p-mv__spNote:after {
  position: absolute;
  top: 50%;
  right: 6%;
  content: "";
  width: 3vw;
  height: 3vw;
  transform: translate(0, -50%);
  background-image: url(../img/sharedgridbattery_4th/icon-arrow.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.p-mv__spNote i {
  width: 8vw;
}

.p-mv__spSmall {
  font-size: 3vw;
}

.p-mv__contactBtn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: min(1.2vw, 20px) auto 0;
  width: 65%;
  padding: min(0.7vw, 12px) 20px;
  text-align: center;
  font-size: min(1.4vw, 20px);
  font-weight: 900;
  color: #fff;
  background-color: #215EB0;
  border-radius: 50px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.p-mv__contactBtn:hover {
  opacity: 0.8 !important;
  color: #fff;
}

.p-mv__contactBtn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 9%;
  width: min(0.6vw, 10px);
  height: min(0.6vw, 10px);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

@media only screen and (max-width: 767px) {
  .p-mv__contactBtn {
    margin-top: 3vw;
    width: 85%;
    padding: 3.5vw 5vw;
    font-size: 3.8vw;
  }
  .p-mv__contactBtn::after {
    width: 2.2vw;
    height: 2.2vw;
    right: 8%;
  }
}
.l-property {
  padding: min(8vw, 106px) min(4vw, 40px) 0;
  background-color: #fff;
}

@media only screen and (max-width: 767px) {
  .l-property {
    padding: 16vw 5.8vw 0;
  }
}
.p-property {
  max-width: 1200px;
  margin: 0 auto;
}

.p-property__ttl {
  font-size: min(3.6vw, 46px);
  font-weight: 800;
  text-align: center;
  color: #005BC1;
  margin-bottom: min(4vw, 40px);
}

@media only screen and (max-width: 767px) {
  .p-property__ttl {
    font-size: 6.8vw;
    margin-bottom: 8vw;
  }
}
.p-property__list {
  display: flex;
  justify-content: center;
  gap: min(2vw, 24px);
}

@media only screen and (max-width: 960px) {
  .p-property__list {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 767px) {
  .p-property__list {
    flex-direction: column;
    gap: 6vw;
  }
}
.p-property__item {
  width: calc((100% - min(4vw, 48px)) / 3);
  background: #F4F4F4;
  border-radius: 10px;
  padding: 10px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

@media only screen and (max-width: 960px) {
  .p-property__item {
    width: calc((100% - min(2vw, 24px)) / 2);
  }
}
@media only screen and (max-width: 767px) {
  .p-property__item {
    width: 100%;
    padding: 3vw;
    box-sizing: border-box;
  }
}
.p-property__link {
  display: block;
  text-decoration: none;
  color: inherit;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
  height: 100%;
}

.p-property__link:hover {
  opacity: 1 !important;
}

.p-property__imgWrap {
  position: relative;
  width: 100%;
  aspect-ratio: 365/243;
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .p-property__imgWrap figcaption {
    font-size: 3.2vw;
  }
}
.p-property__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* .p-property__link:hover .p-property__img {
  transform: scale(1.1);
} */
.p-property__body {
  padding: 10px;
}

@media only screen and (max-width: 767px) {
  .p-property__body {
    padding: 6vw 5vw 8vw;
  }
}
.p-property__metaArea {
  border-bottom: 1px solid #D3D3D3;
  margin-bottom: min(1.5vw, 10px);
  padding-bottom: min(1.5vw, 16px);
}

@media only screen and (max-width: 767px) {
  .p-property__metaArea {
    margin-bottom: 4vw;
    padding-bottom: 4vw;
  }
}
.p-property__metaArea_inr {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0 4%;
}

.p-property__yieldArea {
  display: flex;
  justify-content: center;
  padding: 0 4%;
  border-bottom: 1px solid #D3D3D3;
  margin-bottom: min(1.5vw, 6px);
  padding-bottom: min(1.5vw, 16px);
}

@media only screen and (max-width: 767px) {
  .p-property__yieldArea {
    margin-bottom: 4vw;
    padding-bottom: 4vw;
  }
}
.p-property__area {
  font-size: min(1vw, 13px);
  color: #969696;
  font-weight: 500;
  text-align: left;
}

@media only screen and (max-width: 767px) {
  .p-property__area {
    font-size: 3vw;
  }
}
.p-property__name,
.p-property__yield:nth-child(1) {
  width: 30%;
  box-sizing: border-box;
  text-align: left;
}

@media only screen and (max-width: 767px) {
  .p-property__name,
  .p-property__yield:nth-child(1) {
    width: 40%;
  }
}
.p-property__name {
  font-size: min(1.6vw, 18px);
  font-weight: 900;
  line-height: 1.2;
  display: flex;
  align-items: flex-end;
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .p-property__name {
    font-size: 4.8vw;
  }
}
.p-property__priceArea,
.p-property__yield:nth-child(2) {
  width: 30%;
  padding-left: min(3vw, 15px);
  box-sizing: border-box;
  text-align: left;
}

@media only screen and (max-width: 767px) {
  .p-property__priceArea,
  .p-property__yield:nth-child(2) {
    width: 40%;
  }
}
@media only screen and (max-width: 767px) {
  .p-property__priceArea {
    padding-left: 4vw;
  }
  .p-property__yield:nth-child(2) {
    padding-left: 4vw;
  }
}
.p-property__label,
.p-property__yield dt {
  display: block;
  font-size: min(1.1vw, 13px);
  color: #969696;
  margin-bottom: min(0.4vw, 4px);
  font-weight: 500;
  white-space: nowrap;
}

@media only screen and (max-width: 767px) {
  .p-property__label,
  .p-property__yield dt {
    font-size: 3vw;
    margin-bottom: 1vw;
  }
}
.p-property__price,
.p-property__yield dd {
  display: block;
  line-height: 1.2;
  font-weight: 700;
}

.p-property__price {
  font-size: min(2vw, 24px);
  color: #FF0000;
  word-break: keep-all;
}

.p-property__yield dd {
  font-size: min(1.8vw, 20px);
  color: #0ED743;
}

@media only screen and (max-width: 767px) {
  .p-property__price {
    font-size: 6vw;
  }
  .p-property__yield dd {
    font-size: 6vw;
  }
}
.l-achievement {
  padding: min(13vw, 129px) 0;
  background-image: url(../img/sharedgridbattery_4th/achievement-bg.jpg);
  background-position: center;
  background-size: cover;
}

.p-achievement {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.p-achievement__head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: min(2vw, 32px);
}

@media only screen and (max-width: 767px) {
  .p-achievement__head {
    position: relative;
    margin-bottom: 3.8vw;
    padding: 0 8vw;
  }
}
.p-achievement__ttl {
  position: relative;
  padding: 0 min(8vw, 70px);
  font-size: min(3.2vw, 46px);
  line-height: 1.4;
  font-weight: 800;
  color: hsl(0, 0%, 100%);
}

@media only screen and (max-width: 767px) {
  .p-achievement__ttl {
    font-size: 5.8vw;
    padding: 0 6vw;
  }
}
/* .p-achievement__ttl:before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: min(4vw, 84px);
	height: min(8vw, 158px);
	transform: translate(0, -50%);
	background: url(../img/sharedgridbattery_4th/icon-deco-l.svg);
	background-size: 100%;
	background-repeat: no-repeat;
}

@media only screen and (max-width: 767px) {
    .p-achievement__ttl:before {
    	width: 7vw;
    	height: 13vw;
    }
}

.p-achievement__ttl:after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	width: min(4vw, 84px);
	height: min(8vw, 158px);
	transform: translate(0, -50%);
	background: url(../img/sharedgridbattery_4th/icon-deco-r.svg);
	background-size: 100%;
	background-repeat: no-repeat;
}

@media only screen and (max-width: 767px) {
    .p-achievement__ttl:after {
    	width: 7vw;
    	height: 13vw;
    }
} */
.p-achievement__ttl strong {
  /* color: var(--color_sub); */
  color: #FFFB00;
}

.p-achievement__cont {
  text-align: center;
}

.p-achievement__subttl {
  margin-bottom: min(1.2vw, 12px);
  font-size: min(2vw, 36px);
  font-weight: 700;
  color: hsl(0, 0%, 100%);
}

@media only screen and (max-width: 767px) {
  .p-achievement__subttl {
    margin-bottom: 1.2vw;
    font-size: 3.8vw;
  }
}
.p-achievement__unit {
  padding: 4px 20px 6px;
  font-size: min(3.2vw, 38px);
  color: hsl(0, 0%, 100%);
  background: #EF8200;
  line-height: 1.4;
  border-radius: 6px;
  font-weight: 700;
}

@media only screen and (max-width: 767px) {
  .p-achievement__unit {
    padding: 4px 16px 6px;
    font-size: 4.8vw;
  }
}
.p-achievement__note {
  display: block;
  margin-top: min(1.2vw, 16px);
  font-size: min(1.8vw, 16px);
  color: hsl(0, 0%, 100%);
}

@media only screen and (max-width: 767px) {
  .p-achievement__note {
    margin-top: 1.2vw;
    font-size: 3vw;
  }
}
.l-about {
  padding: min(10vw, 100px) min(4vw, 40px) min(6vw, 60px);
  background: #005BC1;
}

@media only screen and (max-width: 767px) {
  .l-about {
    padding: 10vw 5.8vw 5.8vw;
  }
}
.p-about__head {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: min(5vw, 58px);
}

.p-about__ttl {
  font-size: min(3.2vw, 46px);
  line-height: 1.4;
  font-weight: 800;
  color: hsl(0, 0%, 100%);
}

@media only screen and (max-width: 767px) {
  .p-about__ttl {
    font-size: 6.2vw;
  }
}
.p-about__ttl strong {
  margin-right: 8px;
  padding: 0px 8px 1px;
  color: #005BC1;
  background: #FFFB00;
  line-height: 1.2;
  display: inline-block;
}

.p-about__desc {
  margin-top: min(2.8vw, 32px);
  color: hsl(0, 0%, 100%);
  font-size: min(2vw, 24px);
}

@media only screen and (max-width: 767px) {
  .p-about__desc {
    margin: 5.8vw 0 4vw;
    font-size: 3.6vw;
  }
}
.p-about__img {
  width: 100%;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .p-about__img {
    width: 68%;
    margin: 0 auto;
  }
}
.p-about__cont {
  max-width: 843px;
  margin: 0 auto;
}

.p-about__last {
  margin-top: min(1.2vw, 12px);
  font-size: min(2.2vw, 36px);
  text-align: center;
  color: #FFFB00;
  font-weight: 700;
  line-height: 1.1;
}

@media only screen and (max-width: 767px) {
  .p-about__last {
    margin-top: 2.8vw;
    font-size: 5.8vw;
  }
}
.p-about__last strong {
  font-size: min(4vw, 68px);
  font-family: "Albert Sans", sans-serif;
}

@media only screen and (max-width: 767px) {
  .p-about__last strong {
    font-size: 10.8vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-about__last span {
    margin-left: -2px;
  }
}
.p-about__last small {
  margin-left: -8px;
  font-size: min(2vw, 32px);
}

@media only screen and (max-width: 767px) {
  .p-about__last small {
    margin-left: -10px;
    font-size: 4.8vw;
  }
}
.l-need {
  padding: min(14vw, 140px) min(4vw, 40px);
}

@media only screen and (max-width: 767px) {
  .l-need {
    padding: 10vw 5.8vw;
  }
}
.p-need__accord {
  max-width: 1200px;
  margin: 0 auto;
  /*padding: min(4vw,58px) min(4vw,58px);*/
  background: #FFF8E6;
  border-radius: 10px;
}

@media only screen and (max-width: 767px) {
  .p-need__accord {
    /*padding: 8vw 4.4vw 7.8vw;*/
  }
}
.p-need__accordTtl {
  position: relative;
  text-align: center;
  cursor: pointer;
  padding: min(4vw, 58px) min(4vw, 58px);
}

@media only screen and (max-width: 767px) {
  .p-need__accordTtl {
    padding: 8vw 4.4vw 7.8vw;
  }
}
.p-need__accordTtl:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 60px;
  content: "";
  width: min(3.2vw, 44px);
  height: min(3.2vw, 44px);
  background-image: url(../img/sharedgridbattery_4th/icon-plus.svg);
  background-size: 100%;
  transform: translate(0, -50%);
}

@media only screen and (max-width: 767px) {
  .p-need__accordTtl:after {
    right: 5vw;
    width: 6vw;
    height: 6vw;
  }
}
.p-need__accordTtl.is-active:after {
  width: min(3.2vw, 44px);
  height: min(3.2vw, 44px);
  background-image: url(../img/sharedgridbattery_4th/icon-minus.svg);
  background-size: 100%;
  transform: translate(0, -50%);
}

@media only screen and (max-width: 767px) {
  .p-need__accordTtl.is-active:after {
    width: 6vw;
    height: 6vw;
  }
}
.p-need__accordTtl span {
  font-size: min(3.2vw, 34px);
  font-weight: 800;
  text-align: center;
  color: #005BC1;
}

@media only screen and (max-width: 767px) {
  .p-need__accordTtl span {
    font-size: 4.8vw;
  }
}
.p-need__accordCont {
  display: none;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 min(4vw, 58px);
}

@media only screen and (max-width: 767px) {
  .p-need__accordCont {
    padding: 0 5.4vw;
  }
}
.p-need__accordTtl.is-active + .p-need__accordCont {
  padding-bottom: min(4vw, 58px);
}

@media only screen and (max-width: 767px) {
  .p-need__accordTtl.is-active + .p-need__accordCont {
    padding-bottom: 4.4vw;
  }
}
.p-need__accordDesc {
  padding-top: 0;
  text-align: center;
  font-size: min(1.8vw, 20px);
  line-height: 1.6;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .p-need__accordDesc {
    padding-top: 0;
    font-size: 3.4vw;
  }
}
.p-need__accordDesc span {
  color: #EF8200;
  font-weight: 700;
}

.p-need__accordList {
  display: flex;
  gap: min(2.2vw, 28px);
  margin-top: min(5.8vw, 40px);
  list-style: none;
}

@media only screen and (max-width: 767px) {
  .p-need__accordList {
    flex-direction: column;
    gap: 3.8vw;
  }
}
.p-need__power {
  width: 50%;
  padding: min(2vw, 28px);
  background: hsl(0, 0%, 100%);
  border-radius: 12px;
  box-sizing: border-box;
}

@media only screen and (max-width: 767px) {
  .p-need__power {
    width: 100%;
    padding: 3.8vw 3.8vw 5.8vw;
  }
}
.p-need__powerTtl {
  padding: min(1.2vw, 8px) min(2vw, 20px);
  text-align: center;
  font-size: min(2vw, 26px);
  font-weight: 600;
  line-height: 1.4;
  color: hsl(0, 0%, 100%);
  border-radius: 6px;
  background: #005BC1;
}

@media only screen and (max-width: 767px) {
  .p-need__powerTtl {
    padding: 2vw 2.8vw;
    font-size: 4.4vw;
    border-radius: 4px;
  }
}
.p-need__powerList {
  display: flex;
  justify-content: center;
  gap: min(2vw, 20px);
  justify-content: center;
  margin: min(4vw, 70px) 0px min(2.8vw, 40px);
}

@media only screen and (max-width: 767px) {
  .p-need__powerList {
    margin: 5.8vw 0px 3.8vw;
  }
}
.p-need__powerItem {
  text-align: center;
}

.p-need__powerList.is-2column .p-need__powerItem {
  width: 50%;
  margin: 0 auto 12px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .p-need__powerList.is-2column .p-need__powerItem {
    margin: 0 auto;
  }
}
.p-need__powerTxt {
  font-size: min(1.2vw, 16px);
  font-weight: 700;
}

@media only screen and (max-width: 767px) {
  .p-need__powerTxt {
    font-size: 3.6vw;
  }
}
.p-need__powerIcon {
  display: block;
  width: min(12vw, 107px);
  margin: 0 auto 12px;
}

@media only screen and (max-width: 767px) {
  .p-need__powerIcon {
    width: 63%;
    margin: 0 auto;
  }
}
.p-need__powerList.is-3column .p-need__powerItem {
  width: 30%;
  margin: 0 auto 12px;
}

.p-need__powerCat {
  display: flex;
  gap: 12px;
}

@media only screen and (max-width: 767px) {
  .p-need__powerCat {
    flex-direction: column;
    gap: 5.8vw;
  }
}
.p-need__powerItem {
  width: 50%;
}

@media only screen and (max-width: 767px) {
  .p-need__powerItem {
    width: 100%;
  }
}
.p-need__powerSubttl {
  display: block;
  margin-bottom: min(1.2vw, 12px);
  padding: min(0.4vw, 8px) min(1.2vw, 20px);
  font-size: min(1.2vw, 16px);
  color: hsl(0, 0%, 100%);
  background: #005BC1;
  font-weight: 700;
  border-radius: 50px;
  line-height: 1.4;
}

@media only screen and (max-width: 767px) {
  .p-need__powerSubttl {
    margin-bottom: 2.8vw;
    padding: 2vw 2.8vw;
    font-size: 4vw;
    line-height: 1.1;
  }
}
.p-need__powerSubttl.is-point {
  background: #00AEDE;
}

.p-need__powerInner {
  padding: 0 8px;
}

@media only screen and (max-width: 767px) {
  .p-need__powerInner {
    padding: 0 2vw;
  }
}
.p-need__powerReason {
  display: flex;
  align-items: center;
  gap: min(0.4vw, 4px);
  font-size: min(1.2vw, 16px);
  font-weight: 500;
  line-height: 1.6;
}

@media only screen and (max-width: 767px) {
  .p-need__powerReason {
    gap: 1.2vw;
    font-size: 3.6vw;
  }
}
.p-need__powerReason img {
  width: 12px;
}

@media only screen and (max-width: 767px) {
  .p-need__powerReason img {
    width: 4vw;
  }
}
.p-need__powerCatch {
  margin: min(3.8vw, 32px) 0;
  font-size: min(2vw, 26px);
  font-weight: 600;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .p-need__powerCatch {
    margin: 5.8vw 0 3.2vw;
    font-size: 4.4vw;
    line-height: 2;
  }
}
.p-need__powerCatch strong {
  margin-left: 4px;
  padding: 0 min(0.8vw, 10px);
  color: hsl(0, 0%, 100%);
  background: #EF8200;
}

@media only screen and (max-width: 767px) {
  .p-need__powerCatch strong {
    padding: 4px 12px;
  }
}
.p-need__powerArrow {
  display: block;
  max-width: 34px;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .p-need__powerArrow {
    width: 5.2vw;
  }
}
.p-battery {
  display: flex;
  align-items: center;
  gap: min(6vw, 68px);
  width: 100%;
  margin-top: min(4.8vw, 40px);
  padding: min(2.8vw, 28px) min(12vw, 120px);
  background-image: url(../img/sharedgridbattery_4th/accord-bg.svg);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 16px;
  color: hsl(0, 0%, 100%);
  margin-bottom: 56px;
  box-sizing: border-box;
}

@media only screen and (max-width: 960px) {
  .p-battery {
    padding: min(2.8vw, 28px) min(5vw, 120px);
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .p-battery {
    flex-direction: column;
    padding: 8vw 6.8vw 6.8vw;
    background-image: url(../img/sharedgridbattery_4th/accord-bg-sp.svg);
    background-repeat: no-repeat;
    background-size: cover;
  }
}
.p-battery__name {
  display: inline-block;
  position: relative;
  padding: 0 6px 12px;
  font-size: min(3.2vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

@media only screen and (max-width: 767px) {
  .p-battery__name {
    font-size: 9.8vw;
    padding: 0 2px 12px;
  }
}
.p-battery__name:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: #FBA640;
}

@media only screen and (max-width: 767px) {
  .p-battery__name:after {
    height: 1.8vw;
    height: 6px;
  }
}
.p-battery__txt {
  width: 40%;
}

@media only screen and (max-width: 767px) {
  .p-battery__txt {
    width: 100%;
    text-align: center;
  }
}
.p-battery__img {
  width: 60%;
}

@media only screen and (max-width: 767px) {
  .p-battery__img {
    width: 100%;
  }
}
.p-battery__list {
  margin-top: 48px;
}

@media only screen and (max-width: 767px) {
  .p-battery__list {
    margin-top: 5.8vw;
  }
}
.p-battery__list li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: min(2vw, 24px);
}

@media only screen and (max-width: 767px) {
  .p-battery__list li {
    margin-bottom: 1.2vw;
    font-size: 4.4vw;
  }
}
.p-battery__list li img {
  display: block;
  width: 24px;
}

@media only screen and (max-width: 767px) {
  .p-battery__list li img {
    width: 5.8vw;
  }
}
.p-youbute {
  max-width: 900px;
}

@media only screen and (max-width: 767px) {
  .p-youbute {
    max-width: none;
  }
}
.l-revenue {
  padding: min(10vw, 120px) min(4vw, 40px) min(10vw, 100px);
  background-color: #EEF8FF;
}

@media only screen and (max-width: 767px) {
  .l-revenue {
    padding: 10vw 5.8vw;
  }
}
.p-revenue__ttl {
  margin-bottom: min(4.8vw, 60px);
  font-size: min(3.2vw, 46px);
  font-weight: 800;
  text-align: center;
  color: #005BC1;
}

@media only screen and (max-width: 767px) {
  .p-revenue__ttl {
    font-size: 6.8vw;
  }
}
.p-revenue__ttl span {
  position: relative;
  padding-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .p-revenue__ttl span {
    display: inline-block;
    padding-bottom: 2.8vw;
    line-height: 1.2;
  }
}
.p-revenue__ttl span:after {
  position: absolute;
  bottom: -2px;
  left: 0;
  content: "";
  width: 100%;
  height: 6px;
  background: #005BC1;
}

@media only screen and (max-width: 767px) {
  .p-revenue__ttl span:after {
    height: 1.2vw;
  }
}
.p-revenue__desc {
  font-size: min(2vw, 24px);
  text-align: center;
  font-weight: 500;
  line-height: 1.5;
}

@media only screen and (max-width: 767px) {
  .p-revenue__desc {
    font-size: 3.6vw;
    margin: 8vw 0;
    line-height: 1.6;
  }
}
.p-revenue__desc strong {
  font-size: min(2.4vw, 30px);
  text-align: center;
  font-weight: 700;
  color: #EF8200;
}

@media only screen and (max-width: 767px) {
  .p-revenue__desc strong {
    font-size: 4.4vw;
    font-weight: 700;
  }
}
.p-revenue__img {
  max-width: 1200px;
  margin: min(5vw, 58px) auto min(5.8vw, 60px);
  padding: min(5vw, 50px) min(12vw, 120px) min(5.8vw, 60px);
  text-align: center;
  background-color: hsl(0, 0%, 100%);
  border-radius: 16px;
}

@media only screen and (max-width: 767px) {
  .p-revenue__img {
    margin: 5.8vw auto;
    padding: 8vw 5.8vw;
  }
}
.p-revenue__img img {
  max-width: 944px;
}

.p-revenue__catch {
  font-size: min(2vw, 24px);
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
}

@media only screen and (max-width: 767px) {
  .p-revenue__catch {
    font-size: 4vw;
    line-height: 1.8;
  }
}
.p-revenue__catch span {
  font-size: min(2.2vw, 28px);
  font-weight: 700;
}

@media only screen and (max-width: 767px) {
  .p-revenue__catch span {
    font-size: 4.2vw;
  }
}
.p-revenue__catch strong {
  font-size: min(2.4vw, 30px);
  font-weight: 700;
  color: #EF8200;
}

@media only screen and (max-width: 767px) {
  .p-revenue__catch strong {
    font-size: 4.4vw;
  }
}
.p-revenue__bg {
  padding: 0 6px;
  line-height: 1.8;
  background: #FFFB00;
}

.p-revenue__last {
  font-size: min(2vw, 24px);
  font-weight: 500;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .p-revenue__last {
    font-size: 4vw;
  }
}
.p-revenue__last strong {
  font-weight: 800;
}

.p-revenue__last strong b {
  color: #EF8200;
  font-size: min(2.4vw, 30px);
}

@media only screen and (max-width: 767px) {
  .p-revenue__last strong b {
    font-size: 4.4vw;
  }
}
.l-point {
  padding: min(13vw, 130px) min(4vw, 40px) min(13vw, 136px);
}

@media only screen and (max-width: 767px) {
  .l-point {
    padding: 10vw 5.8vw 0;
  }
}
.p-point__ttl {
  margin-bottom: min(5.8vw, 78px);
  font-size: min(3.2vw, 36px);
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .p-point__ttl {
    line-height: 1.7;
  }
}
.p-point__ttl small {
  display: block;
  font-size: min(3.2vw, 36px);
  font-weight: 800;
}

@media only screen and (max-width: 767px) {
  .p-point__ttl small {
    font-size: 4vw;
  }
}
.p-point__ttl strong {
  font-size: min(4vw, 50px);
  color: #005BC1;
}

@media only screen and (max-width: 767px) {
  .p-point__ttl strong {
    font-size: 5.8vw;
  }
}
.p-point__item {
  margin-bottom: min(3.4vw, 34px);
  padding: min(3.2vw, 36px) min(3.8vw, 42px);
  border-radius: 12px;
  background: #EEF8FF;
  list-style: none !important;
}

@media only screen and (max-width: 767px) {
  .p-point__item {
    margin-bottom: 4.4vw;
    padding: 5.8vw 5.4vw;
  }
}
.p-point__cont {
  max-width: 1027px;
  margin: 0 auto;
}

.p-point__dt {
  display: flex;
  align-items: center;
  gap: min(2.8vw, 28px);
  padding-bottom: min(2.8vw, 28px);
  border-bottom: 1px solid #8F8F8F;
  font-size: min(3vw, 30px);
  font-weight: 500;
  color: #005BC1;
}

@media only screen and (max-width: 767px) {
  .p-point__dt {
    flex-direction: column;
    gap: 3.8vw;
    font-size: 5.8vw;
    line-height: 1.4;
    padding-bottom: 5.8vw;
    text-align: center;
  }
}
.p-point__dt span {
  font-weight: 700;
}

.p-point__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0px;
  width: min(7vw, 80px);
  height: min(7vw, 80px);
  color: hsl(0, 0%, 100%);
  background: #00AEDE;
  border-radius: 80px;
  font-family: "Albert Sans", sans-serif;
}

@media only screen and (max-width: 767px) {
  .p-point__icon {
    width: 14.2vw;
    height: 14.2vw;
    border-radius: 14.2vw;
  }
}
.p-point__icon small {
  display: block;
  font-size: min(1.2vw, 16px);
  text-align: center;
  line-height: 1;
}

@media only screen and (max-width: 767px) {
  .p-point__icon small {
    font-size: 3.2vw;
  }
}
.p-point__icon strong {
  display: block;
  font-size: min(2.4vw, 34px);
  text-align: center;
  line-height: 0.8;
}

@media only screen and (max-width: 767px) {
  .p-point__icon strong {
    font-size: 6.8vw;
    line-height: 0.8;
  }
}
.p-point__dd {
  padding: min(3vw, 34px) 0 0;
}

@media only screen and (max-width: 767px) {
  .p-point__dd {
    padding: 5.8vw 0 0;
  }
}
.p-point__dd h5 {
  margin-bottom: min(2.4vw, 24px);
  font-size: min(1.9vw, 22px);
  font-weight: 700;
}

@media only screen and (max-width: 767px) {
  .p-point__dd h5 {
    margin-bottom: 5.8vw;
    font-size: 4.4vw;
  }
}
.p-point__dd p {
  font-size: min(1.4vw, 18px);
}

@media only screen and (max-width: 767px) {
  .p-point__dd p {
    font-size: 4vw;
  }
}
.p-point__last {
  margin: min(8vw, 80px) 0 min(10vw, 100px);
  font-size: min(2.6vw, 30px);
  font-weight: 700;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .p-point__last {
    margin: 5.8vw 0 8vw;
    font-size: 4.4vw;
  }
}
.p-point__last strong {
  font-weight: 800;
}

.p-point__last strong b {
  color: #EF8200;
  font-size: min(2.8vw, 36px);
}

@media only screen and (max-width: 767px) {
  .p-point__last strong b {
    font-size: 4.8vw;
  }
}
.c-cv__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px min(3vw, 30px) 26px;
  background-image: url(../img/sharedgridbattery_4th/btn-bg.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .c-cv__btn {
    margin: 0 calc(50% - 50vw);
    font-size: 4.4vw;
    padding: 5vw 5.8vw;
    background-image: url(../img/sharedgridbattery_4th/btn-bg-sp.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 0;
    overflow: hidden;
    width: 100%;
  }
}
.c-cv__inner {
  position: relative;
  display: flex;
  gap: 12px;
  padding-right: 23%;
}

@media only screen and (max-width: 767px) {
  .c-cv__inner {
    width: 100%;
    padding-right: 20%;
  }
}
@media only screen and (max-width: 767px) {
  .c-cv__left {
    width: 93%;
  }
}
.c-cv__ttl {
  margin-bottom: min(0.8vw, 12px);
  font-size: min(2vw, 26px);
  color: hsl(0, 0%, 100%);
  font-weight: 700;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .c-cv__ttl {
    margin-bottom: 2vw;
    font-size: 3.7vw;
    line-height: 1.4;
    text-align: center;
    letter-spacing: -0.001em;
  }
}
.c-cv__submit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: min(100%, 533px);
  width: min(37vw, 533px);
  padding: min(1.6vw, 24px) 20px;
  color: #EF8200;
  font-size: min(2vw, 28px);
  font-weight: 700;
  background: hsl(0, 0%, 100%);
  border-radius: 50px;
}

@media only screen and (max-width: 767px) {
  .c-cv__submit {
    padding: 3vw 1vw 3.2vw;
    font-size: 4.2vw;
    gap: 1.8vw;
    width: 100%;
  }
}
.c-cv__submit i {
  display: block;
  max-width: min(3.2vw, 42px);
  line-height: 1;
}

@media only screen and (max-width: 767px) {
  .c-cv__submit i {
    max-width: 6.8vw;
  }
}
.c-cv__submit:after {
  position: absolute;
  top: 50%;
  right: 7%;
  content: "";
  width: min(1.3vw, 26px);
  height: min(1.3vw, 26px);
  transform: translate(0, -50%);
  background-image: url(../img/sharedgridbattery_4th/icon-arrow-orange.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media only screen and (max-width: 767px) {
  .c-cv__submit:after {
    width: 3.4vw;
    height: 3.4vw;
  }
}
.c-cv__right {
  position: absolute;
  bottom: -26px;
  right: -20px;
  width: 38%;
}

@media only screen and (max-width: 767px) {
  .c-cv__right {
    bottom: -5vw;
    right: -12vw;
    width: 38%;
  }
}
.l-epc {
  padding: min(10vw, 120px) min(4vw, 40px) min(10vw, 120px);
  background-color: #EEF8FF;
}

@media only screen and (max-width: 767px) {
  .l-epc {
    padding: 10vw 5.8vw;
  }
}
.p-epc {
  max-width: 1200px !important;
  margin: 0 auto;
}

.p-epc__head {
  margin-bottom: min(5.8vw, 98px);
}

.p-epc__ttl {
  font-size: min(3.2vw, 36px);
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .p-epc__ttl {
    font-size: 5vw;
  }
}
.p-epc__intro {
  display: flex;
  gap: min(4vw, 40px);
  margin-bottom: min(8vw, 100px);
  align-items: flex-start;
}

@media only screen and (max-width: 767px) {
  .p-epc__intro {
    flex-direction: column;
    gap: 5.8vw;
    margin-bottom: 10vw;
  }
}
.p-epc__introImg {
  width: 50%;
}

@media only screen and (max-width: 767px) {
  .p-epc__introImg {
    width: 100%;
  }
}
.p-epc__introImg img {
  width: 100%;
  height: auto;
}

.p-epc__introTxt {
  width: 50%;
  font-size: min(1.4vw, 18px);
  line-height: 1.88;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .p-epc__introTxt {
    width: 100%;
    font-size: 3.8vw;
  }
}
.p-epc__introTxt p {
  margin-bottom: min(2vw, 30px);
  line-height: 1.88;
}

.p-epc__introTxt p:last-child {
  margin-bottom: 0;
}

.t-orange {
  color: #EF8200;
  border-bottom: 1px solid #EF8200;
}

.t-orange.large {
  font-size: min(2vw, 20px);
}

@media only screen and (max-width: 767px) {
  .t-orange.large {
    font-size: 4vw;
  }
}
.p-epc__block {
  margin-bottom: min(6vw, 80px);
}

@media only screen and (max-width: 767px) {
  .p-epc__block {
    margin-bottom: 10vw;
  }
}
.p-epc__block:last-of-type {
  margin-bottom: 0;
}

.p-epc__bandTtl {
  background-color: #005BC1;
  /* 指定いただいた青色 */
  color: #fff;
  font-size: min(1.6vw, 24px);
  font-weight: 700;
  padding: min(1.5vw, 16px) min(2vw, 24px);
  margin-bottom: min(3vw, 40px);
  border-radius: 4px;
}

@media only screen and (max-width: 767px) {
  .p-epc__bandTtl {
    font-size: 4.4vw;
    padding: 3vw 4vw;
    margin-bottom: 5vw;
  }
}
.p-epc__bandTtl small {
  font-size: 0.8em;
  font-weight: normal;
  margin-left: 10px;
}

.p-epc__lead {
  font-size: min(1.4vw, 18px);
  font-weight: 500;
  margin-bottom: min(4vw, 60px);
}

@media only screen and (max-width: 767px) {
  .p-epc__lead {
    font-size: 3.8vw;
    margin-bottom: 5vw;
  }
}
.p-epc__cardList {
  display: flex;
  gap: min(3vw, 40px);
  margin-bottom: min(4vw, 54px);
}

@media only screen and (max-width: 767px) {
  .p-epc__cardList {
    flex-direction: column;
    gap: 4vw;
    margin-bottom: 6vw;
  }
}
.p-epc__cardList.is-3col .p-epc__cardItem {
  width: calc((100% - min(4vw, 40px)) / 3);
}

@media only screen and (max-width: 767px) {
  .p-epc__cardList.is-3col .p-epc__cardItem {
    width: 100%;
    box-sizing: border-box;
  }
}
@media only screen and (max-width: 767px) {
  .p-epc__cardList.is-4col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-epc__cardList.is-4col .p-epc__cardItem .p-epc__cardTxt {
  font-size: min(2.4vw, 22px);
}

@media only screen and (max-width: 767px) {
  .p-epc__cardList.is-4col .p-epc__cardItem .p-epc__cardTxt {
    font-size: 4vw;
  }
}
.p-epc__cardList.is-4col .p-epc__cardItem .p-epc__cardIcon {
  margin-bottom: min(4vw, 58px);
}

/* @media only screen and (max-width: 767px) {
	.p-epc__cardList.is-4col .p-epc__cardItem .p-epc__cardTxt {
		margin-bottom: 4vw;
	}
} */
.p-epc__cardItem {
  background: #fff;
  padding: min(3vw, 46px) min(2vw, 20px) min(3vw, 30px) min(2vw, 20px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  flex: 1;
}

@media only screen and (max-width: 767px) {
  .p-epc__cardItem {
    padding: 6vw 4vw 5.5vw;
    aspect-ratio: auto;
  }
}
.p-epc__cardIcon {
  display: block;
  margin-bottom: min(5vw, 80px);
}

@media only screen and (max-width: 767px) {
  .p-epc__cardIcon {
    height: 12vw;
    margin-bottom: 4vw;
  }
}
.p-epc__cardIcon img {
  height: 100%;
  width: auto;
}

.p-epc__cardTxt {
  color: #005BC1;
  font-weight: 700;
  font-size: min(2.4vw, 28px);
}

@media only screen and (max-width: 767px) {
  .p-epc__cardTxt {
    font-size: 4vw;
  }
}
.p-epc__text {
  font-size: min(1.4vw, 18px);
  line-height: 1.88;
  font-weight: 500;
  margin-bottom: min(2vw, 32px);
}

.p-epc__text:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .p-epc__text {
    font-size: 3.8vw;
    margin-bottom: 4vw;
  }
}
.p-epc__list {
  margin-bottom: min(2vw, 32px);
  list-style: none;
}

@media only screen and (max-width: 767px) {
  .p-epc__list {
    margin-bottom: 4vw;
  }
}
.p-epc__list li {
  font-size: min(1.4vw, 18px);
  line-height: 1.8;
  font-weight: 500;
  position: relative;
  padding-left: 1.2em;
}

@media only screen and (max-width: 767px) {
  .p-epc__list li {
    font-size: 3.8vw;
  }
}
.p-epc__list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.p-epc__btnArea {
  margin-top: min(5vw, 82px);
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .p-epc__btnArea {
    margin-top: 8vw;
  }
}
.p-epc__submit {
  display: inline-flex;
  align-items: center;
  background-color: #00AEDE;
  color: #fff;
  font-size: min(1.6vw, 24px);
  font-weight: 700;
  padding: min(2vw, 28px) min(6vw, 60px);
  border-radius: 50px;
  position: relative;
  transition: opacity 0.3s;
  width: 100%;
  max-width: 576px;
}

@media only screen and (max-width: 767px) {
  .p-epc__submit {
    font-size: 3.8vw;
    padding: 4vw 8vw;
    width: 100%;
    box-sizing: border-box;
  }
}
.p-epc__submit:hover {
  opacity: 0.8;
}

.p-epc__submit::after {
  content: "";
  position: absolute;
  right: min(4vw, 45px);
  top: 50%;
  transform: translateY(-50%);
  width: min(2vw, 18px);
  height: min(2vw, 18px);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

@media only screen and (max-width: 767px) {
  .p-epc__submit::after {
    right: 6vw;
    width: 2.5vw;
    height: 2.5vw;
  }
}
.margin_none {
  margin: 0;
}

.l-merit {
  padding: min(12vw, 120px) min(4vw, 40px) min(10vw, 110px);
  background: #FFF8E6;
}

@media only screen and (max-width: 767px) {
  .l-merit {
    padding: 10vw 5.8vw 10vw;
  }
}
.p-merit__head {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: min(5vw, 50px);
}

@media only screen and (max-width: 767px) {
  .p-merit__head {
    margin-bottom: 8vw;
  }
}
.p-merit__ttl {
  margin-bottom: min(4vw, 40px);
  font-size: min(3.2vw, 36px);
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .p-merit__ttl {
    margin-bottom: 3.8vw;
    font-size: 6vw;
  }
}
.p-merit__icon {
  display: block;
  max-width: min(5vw, 114px);
  margin: 0 auto 20px;
}

@media only screen and (max-width: 767px) {
  .p-merit__icon {
    max-width: 18vw;
    margin: 0 auto 5.8vw;
  }
}
.p-merit__desc {
  text-align: center;
  font-weight: 500;
  font-size: min(1.8vw, 20px);
}

@media only screen and (max-width: 767px) {
  .p-merit__desc {
    font-size: 3.8vw;
    line-height: 1.8;
  }
}
.p-merit__list {
  max-width: 1200px;
  margin: 0 auto;
  list-style: none;
}

.p-merit__item {
  padding: min(5.8vw, 58px) min(5.8vw, 58px);
  border-bottom: 1px solid #d3d3d3;
}

@media only screen and (max-width: 767px) {
  .p-merit__item {
    padding: 8vw 0;
  }
}
.p-merit__item:last-child {
  padding: min(4vw, 40px) min(5.8vw, 58px) 0;
  border: 0;
}

@media only screen and (max-width: 767px) {
  .p-merit__item:last-child {
    padding: 8vw 0 0;
    border: 0;
  }
}
.p-merit__dl {
  display: flex;
  align-items: center;
  gap: min(5vw, 50px);
  max-width: 960px;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .p-merit__dl {
    flex-direction: column;
    padding: 0;
    gap: 8vw;
  }
}
.p-merit__itemIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 135px;
  height: 135px;
  border-radius: 135px;
  background-color: hsl(0, 0%, 100%);
}

@media only screen and (max-width: 767px) {
  .p-merit__itemIcon {
    margin: 0 auto;
    width: 30vw;
    height: 30vw;
    border-radius: 30vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-merit__dt {
    margin: 0 auto;
  }
}
.p-merit__itemIcon img {
  width: 90px;
}

@media only screen and (max-width: 767px) {
  .p-merit__itemIcon img {
    width: 70%;
  }
}
.p-merit__dd h5 {
  margin-bottom: min(1.6vw, 20px);
  font-size: min(2.4vw, 30px);
  font-weight: 700;
  line-height: 1.4;
}

@media only screen and (max-width: 767px) {
  .p-merit__dd h5 {
    margin-bottom: 3.8vw;
    font-size: 6.2vw;
  }
}
.p-merit__dd h5 strong {
  color: #EF8200;
}

.p-merit__dd p {
  font-size: min(1.4vw, 18px);
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .p-merit__dd p {
    font-size: 3.8vw;
    line-height: 1.8;
  }
}
.p-merit__last {
  margin: min(8vw, 80px) 0 min(8vw, 80px);
  font-size: min(2.4vw, 30px);
  font-weight: 700;
  text-align: center;
  line-height: 1.8;
}

@media only screen and (max-width: 767px) {
  .p-merit__last {
    margin: 5.8vw 0 8vw;
    font-size: 4.8vw;
    text-align: left;
  }
}
.p-merit__last strong {
  font-weight: 800;
}

.p-merit__last strong b {
  color: #EF8200;
  font-size: min(2.4vw, 30px);
}

@media only screen and (max-width: 767px) {
  .p-merit__last strong b {
    font-size: 5vw;
  }
}
.l-contact {
  padding: min(10vw, 120px) min(4vw, 40px) min(10vw, 118px);
  background-color: #fff;
}

@media only screen and (max-width: 767px) {
  .l-contact {
    padding: 10vw 5.8vw;
  }
}
.p-contact {
  max-width: 1000px;
  margin: 0 auto;
}

.p-contact__head {
  margin-bottom: min(4vw, 36px);
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .p-contact__head {
    margin-bottom: 8vw;
  }
}
.p-contact__ttl {
  color: #005BC1;
  font-size: min(3.6vw, 50px);
  font-weight: 800;
  margin-bottom: min(4vw, 52px);
  line-height: 1.4;
}

@media only screen and (max-width: 767px) {
  .p-contact__ttl {
    font-size: 6.8vw;
    margin-bottom: 4vw;
  }
}
.p-contact__lead {
  font-size: min(1.4vw, 18px);
  font-weight: 500;
  line-height: 1.88;
}

@media only screen and (max-width: 767px) {
  .p-contact__lead {
    font-size: 3.6vw;
  }
}
.p-contact__note {
  font-size: min(1.4vw, 18px);
  display: block;
  font-weight: 500;
  line-height: 1.88;
}

@media only screen and (max-width: 767px) {
  .p-contact__note {
    font-size: 3.6vw;
  }
}
.p-contact__box {
  background-color: #F5F5F5;
  padding: min(8vw, 74px) min(8vw, 80px) min(8vw, 80px);
  border-radius: 10px;
  max-width: 802px;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .p-contact__box {
    padding: 8vw 5vw;
  }
}
.p-contact__item {
  margin-bottom: min(3vw, 34px);
}

@media only screen and (max-width: 767px) {
  .p-contact__item {
    margin-bottom: 6vw;
  }
}
.p-contact__label {
  display: block;
  font-size: min(1.3vw, 16px);
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.6;
}

@media only screen and (max-width: 767px) {
  .p-contact__label {
    font-size: 3.6vw;
  }
}
.p-contact__req {
  margin-left: 2px;
}

.p-contact__inputs.is-radio {
  display: flex;
  gap: min(3vw, 30px);
  flex-wrap: wrap;
}

@media only screen and (max-width: 767px) {
  .p-contact__inputs.is-radio {
    gap: 4vw;
  }
}
.p-contact__radio {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  display: flex;
  gap: min(3vw, 30px);
  flex-wrap: wrap;
}

.p-contact__radio input[type=radio] {
  display: none;
}

.p-contact__radio .wpcf7-list-item {
  margin: initial;
}

.p-contact__radio .wpcf7-list-item-label {
  position: relative;
  padding-left: 36px;
  font-size: min(1.3vw, 16px);
}

@media only screen and (max-width: 767px) {
  .p-contact__radio .wpcf7-list-item-label {
    font-size: 3.6vw;
    padding-left: 6vw;
  }
}
.p-contact__radio .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background-color: #fff;
  box-sizing: border-box;
}

@media only screen and (max-width: 767px) {
  .p-contact__radio .wpcf7-list-item-label::before {
    width: 4.5vw;
    height: 4.5vw;
  }
}
.p-contact__radio input[type=radio]:checked + .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #222;
}

@media only screen and (max-width: 767px) {
  .p-contact__radio input[type=radio]:checked + .wpcf7-list-item-label::after {
    left: 1.25vw;
    width: 2vw;
    height: 2vw;
  }
}
/* .p-contact__radioTxt {
	position: relative;
	padding-left: 36px;
	font-size: min(1.3vw, 16px);
}

@media only screen and (max-width: 767px) {
	.p-contact__radioTxt {
		font-size: 3.6vw;
		padding-left: 6vw;
	}
}

.p-contact__radioTxt::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 24px;
	height: 24px;
	border-radius: 50%;
	border: 1px solid #ccc;
	background-color: #fff;
	box-sizing: border-box;
}

@media only screen and (max-width: 767px) {
	.p-contact__radioTxt::before {
		width: 4.5vw;
		height: 4.5vw;
	}
}

.p-contact__radio input[type="radio"]:checked+.p-contact__radioTxt::after {
	content: "";
	position: absolute;
	left: 8px;
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: #222;
}

@media only screen and (max-width: 767px) {
	.p-contact__radio input[type="radio"]:checked+.p-contact__radioTxt::after {
		left: 1.25vw;
		width: 2vw;
		height: 2vw;
	}
} */
.p-contact__input,
.p-contact__textarea {
  width: 100%;
  padding: 11px 16px;
  border: 1px solid #D4D4D4;
  border-radius: 5px;
  background-color: #fff;
  font-size: min(1.4vw, 16px);
  font-family: inherit;
  box-sizing: border-box;
  transition: border-color 0.3s;
}

.p-contact__input::placeholder,
.p-contact__textarea::placeholder {
  color: #969696;
}

.p-contact__input:focus,
.p-contact__textarea:focus {
  outline: none;
  border-color: #005BC1;
}

@media only screen and (max-width: 767px) {
  .p-contact__input,
  .p-contact__textarea {
    padding: 3.5vw 4vw;
    font-size: 16px;
  }
}
.p-contact__textarea {
  height: 260px;
  resize: none;
}

@media only screen and (max-width: 767px) {
  .p-contact__textarea {
    height: 40vw;
  }
}
.p-contact__privacy {
  text-align: center;
  margin-top: min(4vw, 28px);
  margin-bottom: min(3vw, 34px);
}

@media only screen and (max-width: 767px) {
  .p-contact__privacy {
    margin-top: 8vw;
    margin-bottom: 6vw;
  }
}
.p-contact__check {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.p-contact__check input[type=checkbox] {
  margin-right: 8px;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

@media only screen and (max-width: 767px) {
  .p-contact__check input[type=checkbox] {
    width: 4.5vw;
    height: 4.5vw;
    margin-right: 2vw;
  }
}
.p-contact__privacy .wpcf7-list-item-label {
  font-size: min(1.3vw, 14px);
  /* font-weight: 500; */
}

@media only screen and (max-width: 767px) {
  .p-contact__privacy .wpcf7-list-item-label {
    font-size: 3.6vw;
  }
}
.p-contact__privacy .wpcf7-list-item-label a {
  text-decoration: underline;
}

.p-contact__privacy .wpcf7-list-item-label a:hover {
  text-decoration: none;
}

.p-contact__privacy {
  text-align: center;
  margin-top: min(4vw, 36px);
  margin-bottom: min(3vw, 34px);
}

@media only screen and (max-width: 767px) {
  .p-contact__privacy {
    margin-top: 8vw;
    margin-bottom: 6vw;
  }
}
.p-contact__check {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

/* .p-contact__check input[type="checkbox"] {
	display: none;
} */
/* .p-contact__check input[type="checkbox"] {
  position: absolute;
  opacity: 0;
} */
.p-contact__privacy .wpcf7-list-item-label {
  position: relative;
  padding-left: 28px;
  font-size: min(1.3vw, 16px);
}

@media only screen and (max-width: 767px) {
  .p-contact__privacy .wpcf7-list-item-label {
    padding-left: 8vw;
    font-size: 3.6vw;
  }
}
.p-contact__privacy .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 51%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: 1px solid #D4D4D4;
  border-radius: 4px;
  background-color: #fff;
  box-sizing: border-box;
  transition: all 0.2s ease;
}

@media only screen and (max-width: 767px) {
  .p-contact__privacy .wpcf7-list-item-label::before {
    width: 5.5vw;
    height: 5.5vw;
  }
}
.p-contact__privacy .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  width: 5px;
  height: 10px;
  border-right: 2px solid #005BC1;
  border-bottom: 2px solid #005BC1;
  transform: translateY(-60%) rotate(45deg);
  opacity: 0;
  transition: opacity 0.2s ease;
}

@media only screen and (max-width: 767px) {
  .p-contact__privacy .wpcf7-list-item-label::after {
    left: 2vw;
    width: 1.5vw;
    height: 2.8vw;
  }
}
/* ✅ ~ （兄弟結合子）を使う */
.p-contact__privacy input[type=checkbox]:checked ~ .wpcf7-list-item-label::after {
  opacity: 1;
}

.p-contact__privacy input[type=checkbox]:checked ~ .wpcf7-list-item-label::before {
  border-color: #005BC1;
}

/* .p-contact__check input[type="checkbox"]:checked+.p-contact__privacy .wpcf7-list-item-label::after {
	opacity: 1;
} */
/* .p-contact__check input[type="checkbox"]:checked+.p-contact__privacy .wpcf7-list-item-label::before {
	border-color: #005BC1;
} */
.p-contact__privacy .wpcf7-list-item-label a {
  text-decoration: underline;
  color: #222;
  transition: opacity 0.3s;
}

.p-contact__privacy .wpcf7-list-item-label a:hover {
  opacity: 0.7;
}

.p-contact__submitArea {
  text-align: center;
}

.p-contact__submitArea .wpcf7-spinner {
  display: none;
}

.p-contact__submit {
  background-color: #005BC1;
  color: #fff;
  border: none;
  padding: 18px 40px;
  font-size: min(1.4vw, 15px);
  font-weight: 700;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  max-width: 207px;
  transition: opacity 0.3s;
}

@media only screen and (max-width: 767px) {
  .p-contact__submit {
    font-size: 4.2vw;
    padding: 4vw;
    max-width: 100%;
  }
}
.p-contact__submit:hover {
  opacity: 0.8;
}

.l-footer {
  border-top: 1px solid #CCCCCC;
  padding: min(10vw, 62px) min(5vw, 74px) min(8.5vw, 69px) min(4vw, 67px);
}

@media only screen and (max-width: 767px) {
  .l-footer {
    padding: 12vw 5.8vw 8.5vw;
  }
}
.p-footer__top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: min(4vw, 40px);
}

@media only screen and (max-width: 767px) {
  .p-footer__top {
    flex-direction: column;
    gap: 4vw;
  }
}
.p-footer__btm {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

@media only screen and (max-width: 960px) {
  .p-footer__btm {
    flex-direction: column;
    gap: 4vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-footer__btm {
    flex-direction: column;
  }
}
.p-footer__left {
  display: flex;
  align-items: flex-end;
  gap: min(5vw, 60px);
}

@media only screen and (max-width: 767px) {
  .p-footer__left {
    flex-direction: column;
    align-items: center;
    gap: 8.8vw;
  }
}
.p-footer__logo {
  display: block;
  width: min(19vw, 316px);
}

@media only screen and (max-width: 767px) {
  .p-footer__logo {
    width: 88%;
  }
}
.p-footer__address {
  font-size: min(1.2vw, 16px);
  font-weight: 500;
  line-height: 2;
}

@media only screen and (max-width: 767px) {
  .p-footer__address {
    font-size: 3.7vw;
    text-align: center;
    line-height: 2;
  }
}
.p-footer__address strong {
  font-size: min(1.4vw, 18px);
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .p-footer__address strong {
    font-size: 3.8vw;
  }
}
.p-footer__copy {
  font-size: min(0.9vw, 12px);
  font-weight: 500;
  padding-bottom: 14px;
}

@media only screen and (max-width: 767px) {
  .p-footer__copy {
    margin-top: 10.8vw;
    margin-left: auto;
    margin-right: auto;
    font-size: 2.8vw;
    letter-spacing: -0.02em;
  }
}
.p-footer__top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: min(4vw, 40px);
  margin-bottom: min(12vw, 120px);
}

@media only screen and (max-width: 767px) {
  .p-footer__top {
    margin-bottom: 16vw;
  }
}
.p-footer__btn {
  position: relative;
  display: block;
  max-width: 576px;
  width: 50%;
  padding: 26px 20px 24px;
  font-size: min(1.4vw, 24px);
  font-weight: 700;
  color: hsl(0, 0%, 100%);
  background: #00AEDE;
  border-radius: 50px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .p-footer__btn {
    width: 100%;
    padding: 4.8vw 5.8vw;
    font-size: 3.8vw;
  }
}
.p-footer__btn.is-contact {
  background: #005BC1;
}

.p-footer__btn:after {
  position: absolute;
  top: 50%;
  right: 6%;
  content: "";
  width: min(1.1vw, 20px);
  height: min(1.1vw, 20px);
  transform: translate(0, -50%);
  background-image: url(../img/sharedgridbattery_4th/icon-arrow.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media only screen and (max-width: 767px) {
  .p-footer__btn:after {
    width: 3.4vw;
    height: 3.4vw;
  }
}
/**
* Animation
**/
.js-body {
  opacity: 0;
  visibility: hidden;
  transition-duration: 6s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.js-body.is-active {
  opacity: 1;
  visibility: inherit;
}

.js-mv__img {
  transform: scale(1.08);
  transition-duration: 6s;
  filter: blur(6px);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.js-mv__img.is-active {
  transform: scale(1);
  filter: blur(0);
}

.js-mv__ttl {
  opacity: 0;
  filter: blur(6px);
  transition-duration: 2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.js-mv__ttl.is-active {
  opacity: 1;
  filter: blur(0);
}

.js-mv__ttl {
  opacity: 0;
  filter: blur(6px);
  transition-duration: 2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.js-mv__subttl {
  opacity: 0;
  filter: blur(6px);
  transition-duration: 2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.js-mv__subttl.is-active {
  opacity: 1;
  filter: blur(0);
}

.js-mv__scroll,
.js-mv__logo {
  transition-duration: 2s;
  opacity: 0;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.js-mv__scroll.is-active,
.js-mv__logo.is-active {
  opacity: 1;
}

.js-dummy {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.js-dummy__wrap {
  display: inline-block;
  position: relative;
}

/**
* youtube
**/
.l-youbute {
  padding: min(10vw, 120px) min(4vw, 40px) 0;
}

.p-youtube__area {
  max-width: 1200px;
  margin-inline: auto;
  aspect-ratio: 560/315;
}

.p-youtube__area iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.grecaptcha-badge {
  visibility: hidden;
}

@media (768px <= width) {
  .p-contact__box .wpcf7-not-valid-tip,
  .p-contact__box .wpcf7-response-output {
    font-size: 1.6em;
  }
}
.s-sp {
  display: none;
}
@media only screen and (max-width: 767px) {
  .s-sp {
    display: block;
  }
}

.l-content {
  max-width: 1728px;
  margin: 0 auto;
}

.service_repowering {
  font-size: 62.5%;
  padding-top: 80px;
}
@media (min-width: 920px) {
  .service_repowering {
    padding-top: min(10.0694444444vw, 174px);
  }
}
.service_repowering .contact_ate {
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  color: #f56b6b;
}
.service_repowering .contact_table {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
.service_repowering .contact_table th,
.service_repowering .contact_table td {
  text-align: left;
  vertical-align: top;
  display: block;
  width: 100%;
}
.service_repowering .contact_table th {
  font-size: 18px;
  padding: 10px 0 0;
}
.service_repowering .contact_table td {
  padding: 0 0 10px;
}
.service_repowering .contact_table input,
.service_repowering .contact_table textarea {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100% !important;
  font-size: 16px;
  border: 1px solid #dedede;
  border-radius: 3px;
  padding: 5px;
  margin-top: 5px;
}
.service_repowering .contact_table input[type=checkbox],
.service_repowering .contact_table input[type=radio] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 14px !important;
}
.service_repowering .contact_table .wpcf7-list-item {
  margin-left: 0;
}
.service_repowering .contact_table .recired {
  color: #e32;
  margin-left: 5px;
}
.service_repowering .contact_ex {
  display: block;
  font-size: 15px;
  margin: 5px 0 0;
}
.service_repowering .contact_submit {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
.service_repowering .contact_table .input-title {
  border: none;
  pointer-events: none;
}
.service_repowering input[type=submit] {
  width: 240px;
  padding: 10px;
  background: #0050A9;
  color: #fff;
  font-size: 16px;
  text-align: center;
  margin: 30px auto;
  border: none;
  font-weight: 500;
  letter-spacing: 3px;
}
.service_repowering span.wpcf7-list-item {
  display: block;
}
.service_repowering .wpcf7-list-item-label {
  font-size: 16px;
  line-height: 1.8;
}

.show-on-pc,
.show-on-tablet,
.show-on-sp {
  display: none;
}

.breadcrumbs {
  display: none;
}

.fixed-bnr {
  display: none !important;
}

@media screen and (min-width: 900px) {
  .show-on-pc {
    display: block;
  }
}
@media screen and (min-width: 601px) and (max-width: 899px) {
  .show-on-tablet {
    display: block;
  }
}
@media screen and (max-width: 600px) {
  .show-on-sp {
    display: block;
  }
}
.solution-header {
  margin-top: 65px;
}

/* ========================================
	太陽光発電トラブル解決ページ
======================================== */
/* セクション全体 */
.solution-section {
  padding: 0;
}
.solution-section p + * {
  margin-top: 1em;
}

.solution-section .container {
  background-image: url("../img/repowering/solution-hero.png");
  background-position: right 0 top 50px;
  background-repeat: no-repeat;
  background-size: 70%;
}

.solution-section .container .container-middle {
  padding-left: 10px;
  padding-right: 10px;
}

@media screen and (max-width: 899px) {
  .solution-section .container {
    background-image: none;
  }
}
/* ========================================
	ヒーロー部分
======================================== */
.solution-hero-section {
  position: relative;
  margin: 0 auto;
}

.solution-hero-illustration {
  flex: 0 0 auto;
  max-width: 450px;
  width: 100%;
}

.solution-hero-illustration img {
  width: 100%;
  height: auto;
  display: block;
}

.solution-title {
  display: flex;
  flex-direction: column;
  margin: 0;
  row-gap: 10px;
}

.solution-title img:nth-of-type(1) {
  height: 86px;
  width: fit-content;
}

.solution-title img:nth-of-type(2) {
  height: 86px;
  width: fit-content;
}

.solution-subtitle {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.4;
  margin-top: 90px;
  text-align: left;
  text-shadow: 1px 1px 2px #fff;
}

.solution-link-box {
  background: linear-gradient(180deg, rgb(40, 234, 134) 0%, rgb(36, 198, 22) 100%);
  border-radius: 8px;
  max-width: 440px;
  padding: 4px;
  transition: all 0.2s;
}

.solution-link-box a {
  border: 1px solid #fff;
  border-radius: 8px;
  display: block;
  padding: 28px 25px;
  text-decoration: none;
}

.solution-link-box:hover {
  opacity: 0.75;
}

.solution-link-box a span {
  color: #fff;
  column-gap: 10px;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  letter-spacing: 0.04em;
  line-height: 1.3;
  position: relative;
}

.solution-link-box a span::after {
  background-image: url("../img/repowering/arrow_down.svg");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 28px;
  width: 28px;
}

.solution-hero-badge-container {
  margin-top: 0;
}

.solution-hero-badge {
  align-items: stretch;
  display: flex;
  line-height: 1.6;
  margin-top: 35px;
  max-width: 400px;
  position: relative;
  width: 100%;
}

.solution-hero-badge .brackets {
  background-color: rgba(255, 255, 255, 0.8);
  border: 2px solid #204FA3;
  display: block;
  margin-top: 0;
  width: 15px;
}

.solution-hero-badge .brackets.left {
  border-right: none;
}

.solution-hero-badge .brackets.right {
  border-left: none;
}

.solution-hero-badge p {
  background-color: rgba(255, 255, 255, 0.8);
  color: #204FA3;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.3;
  padding: 8px 5px;
}

.solution-caption {
  margin-left: auto;
  margin-top: 60px;
  width: fit-content;
}

.solution-caption img {
  height: auto;
  max-width: 334px;
  width: 100%;
}

/* ========================================
	イントロダクション
======================================== */
.solution-intro {
  margin-bottom: 40px;
}

.solution-intro-title {
  color: #000;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.6;
  margin: 30px 0 0;
}

.solution-intro-title em {
  font-style: normal;
  position: relative;
}

.solution-intro-title em::before {
  background-image: url("../img/repowering/under_line.svg");
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  height: 5px;
  position: absolute;
  width: 100%;
}

.highlight-orange {
  color: #FF9900;
  font-weight: bold;
}

/* ========================================
	トラブルカード（画像全面＋オーバーレイ）
======================================== */
.solution-cards {
  display: flex;
  flex-direction: column;
  gap: 120px;
  margin-bottom: 120px;
  margin-top: 70px;
}

.solution-card {
  width: 100%;
}

.solution-card-image-container {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.solution-card-image-container img {
  width: 100%;
  height: auto;
  display: block;
}

.solution-card-box {
  background-color: #fff;
  border-radius: 8px 0 0 0;
  margin-left: auto;
  margin-top: -230px;
  position: relative;
  padding: 40px 80px 0;
  width: 58%;
}

.solution-card-box.small {
  padding: 40px 63px 0 80px;
}

.solution-card:nth-of-type(2n) .solution-card-box {
  border-radius: 0 8px 0 0;
  margin-left: unset;
  margin-right: auto;
}

.solution-card-header h3 {
  font-size: 32px;
  letter-spacing: 0.04em;
  line-height: 1.4;
  color: #FF9D39;
  background-color: transparent;
  padding: 0;
  margin: 0;
}

.solution-card-header h3 em {
  background-color: #FF9D39;
  border-radius: 4px;
  color: #fff;
  padding: 0 5px;
  font-style: normal;
}

.badge-line {
  margin-bottom: 8px;
  line-height: 1.8;
}

.solution-card-text {
  margin-top: 30px;
}

.solution-card-text p {
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
}

/* ========================================
	 お問い合わせセクション
	 ======================================== */
.solution-team {
  margin-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.solution-team-image {
  width: 100%;
}

.solution-team-image img {
  width: 100%;
  height: auto;
  display: block;
}

.solution-team-overlay {
  margin-top: -130px;
  position: relative;
  width: 100%;
  z-index: 2;
}

.solution-team-content {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 0;
  opacity: 0.95;
  padding: 45px 40px 55px;
  max-width: 1080px;
  margin: 0 auto;
}

.solution-team-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin: 0;
  text-align: center;
}

.solution-team-text {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 2;
  margin-top: 20px;
  text-align: center;
}

.solution-team-buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-inline: auto;
  margin-top: 30px !important;
  max-width: 380px;
  width: 100%;
}

.solution-team-buttons a {
  align-items: center;
  background-color: #204FA3;
  border-radius: 8px;
  color: #fff;
  display: flex;
  font-size: 18px;
  padding: 18px 15px;
  position: relative;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  width: 100%;
}

.solution-team-buttons a:hover {
  background-color: #003d7f;
  transform: translateY(-2px);
}

.solution-team-buttons a:hover .text {
  color: #fff;
}

.solution-team-buttons a .title {
  background-color: #fff;
  border-radius: 4px;
  color: #003d7f;
  display: flex;
  justify-content: flex-start;
  font-size: 14px;
  font-weight: 700;
  margin-right: 20px;
  padding: 2px 10px;
}

.solution-team-buttons a::after {
  background-image: url("../img/repowering/arrow_right.svg");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 12px;
  margin-left: 35px;
  position: absolute;
  right: 15px;
  top: 50%;
  translate: 0 -50%;
  width: 17px;
}

/* ========================================
	 メールフォーム
======================================== */
.solution-section .container #mail_form {
  background-color: #fcead6;
  padding: 70px 100px 30px;
}

.solution-section .container .contact_table {
  margin-top: 50px;
  max-width: unset;
}

.solution-section .container #mail_form .solution-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin: 0;
  text-align: center;
}

.solution-section .container .contact_table input,
.solution-section .container .contact_table textarea {
  background-color: #fff;
}

.solution-section .container #mail_form .contact_submit input {
  display: block;
  margin-inline: auto;
}

/* ========================================
	 レスポンシブ対応
======================================== */
@media (max-width: 1000px) {
  .solution-card-box,
  .solution-card-box.small {
    padding: 30px;
  }
  .solution-team-content {
    margin-left: 20px;
    margin-right: 20px;
  }
}
/* タブレット (900px以下) */
@media (max-width: 900px) {
  .solution-section .container {
    padding: 0;
  }
  .solution-hero-section {
    flex-direction: column;
    min-height: auto;
    gap: 30px;
    padding: 30px 15px;
  }
  .solution-hero-section .image-box {
    margin-top: 15px;
  }
  .solution-hero-badge {
    font-size: 20px;
    justify-content: space-between;
    margin-inline: auto;
    margin-top: 15px;
    padding: 0;
    text-align: center;
  }
  .solution-subtitle {
    margin-top: 30px;
    text-align: center;
  }
  .solution-link-box {
    margin-inline: auto;
  }
  .solution-intro-title {
    font-size: 30px;
  }
  .solution-cards {
    gap: 90px;
  }
  .solution-card-box {
    margin-top: 30px;
    padding: 0 20px;
    position: static;
    width: 100%;
  }
  .solution-team-overlay {
    margin-top: -80px;
    position: relative;
    translate: 0 0;
    width: 100%;
  }
  .solution-team-content {
    margin: -20px 20px 0;
    padding-top: 40px;
  }
}
@media (max-width: 600px) {
  .solution-section {
    padding: 40px 0;
  }
  .solution-header {
    margin-bottom: 40px;
    margin-top: 0;
  }
  .solution-hero-section {
    min-height: auto;
    padding: 0 20px;
    gap: 25px;
  }
  .solution-hero-illustration {
    max-width: 100%;
  }
  .solution-title img:nth-of-type(1) {
    height: 58px;
  }
  .solution-title img:nth-of-type(2) {
    height: 58px;
  }
  .solution-subtitle {
    margin-top: 15px;
    font-size: 14px;
  }
  .solution-link-box a {
    border: 1px solid #fff;
    border-radius: 8px;
    display: block;
    padding: 25px 20px;
    text-decoration: none;
  }
  .solution-link-box a span {
    font-size: 20px;
  }
  .solution-caption {
    margin-left: auto;
    margin-top: 40px;
    max-width: 210px;
  }
  .solution-intro {
    margin-bottom: 40px;
    padding: 0 15px;
  }
  .solution-intro-title {
    font-size: 20px;
    margin-top: 20px;
  }
  .solution-intro-title em::before {
    bottom: -5px;
  }
  .solution-cards {
    gap: 35px;
    margin-bottom: 35px;
    margin-top: 35px;
  }
  .solution-card-box,
  .solution-card-box.small {
    padding: 0 20px;
  }
  .solution-card-header h3 {
    font-size: 24px;
  }
  .solution-card-text {
    font-size: 14px;
    margin-top: 14px;
  }
  .solution-section .container #mail_form {
    padding: 40px 20px 0;
  }
  .solution-section .container #mail_form .solution-title {
    font-size: 24px;
  }
  .solution-section .container .contact_table {
    margin-top: 30px;
  }
  .solution-team {
    margin-top: 40px;
  }
  .solution-team-title {
    font-size: 18px;
    text-align: left;
  }
  .solution-team-text {
    margin-top: 10px;
    text-align: left;
  }
  .solution-team-overlay {
    margin-top: -20px;
  }
  .solution-team-buttons a {
    flex-direction: column;
    justify-content: center;
    padding: 10px 15px;
    row-gap: 8px;
  }
  .solution-team-buttons a .title {
    margin-right: 0;
  }
  .solution-team-buttons a .text .show-on-sp {
    display: inline;
  }
}
.container {
  padding-right: 10px;
  padding-left: 10px;
}

@media (min-width: 900px) {
  .container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
  }
}
.ofi {
  height: 100%;
  width: 100%;
  object-fit: cover;
  font-family: "object-fit: cover";
}

.nobr {
  white-space: nowrap;
}

/*==================================================
 グローバルナビ
==================================================*/
.head_logo_link {
  width: 24vw;
  max-width: 200px;
  display: inline-block;
  vertical-align: super;
  text-decoration: none;
}

.technonagai_logo {
  width: 100%;
  max-height: 40px;
}

.head_logo_link:has(.technonagai_logo) {
  margin-left: 15px;
}

@media (max-width: 500px) {
  .solare_logo {
    margin-top: 10px;
  }
}
.gn_tab-visible {
  display: none;
}

@media (min-width: 900px) {
  /*グローバルナビ用*/
  .gn-visible {
    display: none;
  }
  .gn_tab-visible {
    display: block;
  }
  .pc-3line {
    font-size: 11px;
  }
}
@media (max-width: 600px) {
  .head_logo_link {
    width: auto;
  }
}
@media (max-width: 460px) {
  .head_logo_link:has(.technonagai_logo) {
    margin-left: 0px;
    margin-top: 10px;
  }
}
/*==================================================
 トップページ
==================================================*/
.mvt_btnarea {
  width: 100%;
  /*max-width: 500px;*/
  max-width: 800px;
  margin: 0 auto;
}

/*==================================================
 追従ボタン
==================================================*/
.fixed-bnr-link {
  max-width: 70px;
}

@media (max-width: 1200px) {
  .fixed-bnr-item {
    flex: 0 0 33.333% !important;
  }
  .fixed-bnr-link {
    max-width: 100%;
  }
  .fixed-bnr-link:hover,
  .fixed-bnr-link:visited {
    color: #fff;
  }
  .fixed-bnr-link_news {
    background: #A80028;
  }
  .fixed-bnr-link_contact {
    background: #66B426 !important;
  }
  .fixed-bnr-link_technonagai {
    background: #0368b8;
  }
  .fixed-bnr-link_sp {
    width: 100%;
  }
  .side_bnr_icon {
    /*max-height: 16px;*/
    display: inline;
    width: 20px;
    /*vertical-align: baseline;*/
  }
}
@media (max-width: 500px) {
  .fixed-bnr-link {
    font-size: 12px;
  }
  .side_bnr_icon {
    width: 16px;
  }
}
/*==================================================
 フッター
==================================================*/
.footer_solare_logo {
  max-width: 270px;
  margin-top: 20px;
}

/*==================================================
 ページコンテンツ
==================================================*/
.youtube_area {
  text-align: center;
}

.youtube_area iframe {
  width: 100%;
  max-width: 600px;
  height: 55vw;
  max-height: 330px;
}

.sp_nobr {
  white-space: nowrap;
}

.industry_table {
  width: 100%;
}

.industry_table th,
.industry_table td {
  border: 1px solid #FF9900;
  padding: 10px;
  width: 50%;
}

.industry_table th {
  text-align: center;
  background-color: #FF9900;
}

.industry_table tr:first-child th {
  border-right: 1px solid #fff;
}

.industry_table td {
  background-color: #fff;
}

/*==================================================
 トップページ
==================================================*/
.top_concept_title {
  max-height: 56px;
}

/*==================================================
 ブログ
==================================================*/
.blog-cat-selector {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  transform: translateY(-100%);
}

.blog-cat-selector-item {
  padding: 0 10px;
  text-align: center;
}

.blog-cat-selector-link {
  display: inline-block;
  color: #fff;
  border-radius: 20px;
  transition: 0.3s ease;
  padding: 5px 20px;
  text-decoration: none;
  font-size: 14px;
}

.blog-cat-selector-link:hover {
  opacity: 0.7;
  color: #fff;
}

.blog-cat-selector-link_orange {
  background: #FF9900;
}

.blog-cat-selector-link_blue {
  background: #0050A9;
}

.blog-cat-selector-link_green {
  background: #66B426;
}

.title-line-color_linenone::after {
  display: none !important;
}

/*21_11_26追加*/
.orange_text_btn {
  color: #f90;
}

.orange_text_btn:hover {
  color: #ffbf5f;
}

/*関連記事*/
.kanren_area {
  padding: 50px 0;
}

.yarpp-thumbnails-horizontal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /*justify-content: space-around;*/
  justify-content: flex-start;
  width: calc(100% + 20px);
  margin-right: -20px;
}

.kanren_area .yarpp-thumbnails-horizontal .yarpp-thumbnail {
  display: block;
  width: calc(25% - 20px);
  margin: 0 20px 20px 0;
  height: auto;
  border: none;
  text-align: center;
  transition: 0.3s;
}

.kanren_area .yarpp-thumbnail > img,
.kanren_area .yarpp-thumbnail-default {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.kanren_area .yarpp-thumbnails-horizontal .yarpp-thumbnail-title {
  width: 100%;
  margin: 5px 0;
  overflow: visible;
}

/*==================================================
 太陽光発電事業
==================================================*/
.service_first_menu_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-top: 20px;
}

.service_fm_titlearea {
  width: 50vw;
  max-width: 900px;
  min-width: 300px;
  position: relative;
}

.service_fm_titlearea h1,
.service_fm_titlearea .catchcopy-svg {
  padding: 0 10px;
}

.sfm_title_photovoltaic:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 107px);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 50%, white 100%), url(images/photovoltaic/main_v_photovoltaic.JPG) no-repeat center center;
  background-size: cover;
  z-index: -1;
}

.service_fm_linkarea {
  width: 100%;
}

.sfm_section {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}

.sfm_section.sfm_business {
  background-color: #0050a9;
}

.sfm_section.sfm_customer {
  background-color: #ff9900;
}

.sfm_client_area {
  color: #fff;
  width: 200px;
  height: 100%;
  position: relative;
  text-align: center;
}

.sfm_cl_textarea {
  width: 100%;
}

.sfm_link {
  display: block;
  text-decoration: none;
  /*min-height: 180px;*/
  width: 100%;
  padding: 20px;
  color: #494949;
  background-color: #e5e5e5;
  transition: 0.3s;
  border-bottom: 2px solid #fff;
  position: relative;
}

.sfm_customer .sfm_link:last-child {
  border-bottom: none;
}

.sfm_link:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  /*width: 200px;*/
  width: 50%;
  height: 100%;
  background: linear-gradient(124deg, transparent 0%, transparent 44%, #0050A9 44%, #0050A9 100%);
}

.sfm_customer .sfm_link:before {
  background: linear-gradient(124deg, transparent 0%, transparent 44%, #ff9900 44%, #ff9900 100%);
}

.sfm_link_arrow {
  width: 30px;
  position: absolute;
  top: 60%;
  /*right: 80px;*/
  right: 15%;
  -webkit-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  -o-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  transition: 0.3s;
  margin: 0;
}

.sfm_customer .service-title:before {
  background-color: #ff9900;
}

.sfm_link .service-title {
  margin-bottom: 0px;
  font-size: 20px;
}

.sfm_desc {
  padding-right: 140px;
  font-size: 14px;
  line-height: 25px;
  max-width: 700px;
  position: relative;
}

.sfm_business .sfm_link:hover {
  background-color: #f7fbff;
}

.sfm_customer .sfm_link:hover {
  background-color: #fff9f0;
}

.sfm_link:hover .sfm_link_arrow {
  /*right: 75px;*/
  right: 14%;
}

/*==================================================
 住宅用太陽光発電
==================================================*/
/*メインビジュアル*/
.forhome_mv_area {
  padding: 60px 0 10px;
  background-image: url("images/for_home/forhome_mv.jpg");
  background-size: cover;
  background-position: center bottom 15%;
}

.fh_mv_yane {
  width: 100%;
}

.fh_mv_house {
  width: 50%;
  max-width: 520px;
  position: relative;
  margin: 0 0 120px auto;
  padding: 0 0 20px;
  text-align: center;
  z-index: 1;
}

.fh_mv_house_white {
  width: calc(100% - 40px);
  height: 100%;
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: -1;
  opacity: 0.9;
}

.fh_mv_house_white:before {
  content: "";
  width: 100%;
  height: 50%;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: -1;
}

.fh_mv_title {
  font-size: 35px;
  font-weight: 600;
  line-height: 50px;
  letter-spacing: 2px;
  color: #0050A9;
  margin: -70px auto 10px;
}

.fh_mv_readtext {
  line-height: 35px;
  font-size: 20px;
  margin-bottom: 20px;
}

.fh_mv_solare_logo {
  width: 100%;
  max-width: 210px;
  margin: 0 auto;
}

.fh_mv_btn_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  width: calc(100% + 20px);
  margin-right: -20px;
}

.fh_mv_bf_con {
  width: calc(25% - 20px);
  margin-right: 20px;
  margin-bottom: 20px;
}

.fh_mv_btn {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border: 2px solid #A3D6C0;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  padding: 5px 10px 45px;
  color: #0050A9;
  transition: 0.3s;
}

.fh_mv_btn:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border-right: 4px solid #FF9900;
  border-bottom: 4px solid #FF9900;
  position: absolute;
  bottom: 22px;
  right: 0;
  left: 0;
  margin: 0 auto;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: 0.3s;
}

.fh_b_eng {
  font-weight: 500;
  font-size: 10px;
  color: #A3D6C0;
}

.fh_mv_btn_title {
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 25px;
  min-height: 50px;
  position: relative;
}

.fhm_bt_center {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  -webkit-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  -o-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}

.fh_mv_btn:hover:before {
  bottom: 17px;
}

/*スマートハウス*/
.smart_house_img {
  width: 100%;
  max-width: 700px;
}

.forhome_youtube {
  text-align: center;
  margin: 50px auto;
}

.forhome_youtube iframe {
  width: 90vw;
  max-width: 600px;
  height: 50vw;
  max-height: 337px;
}

.angle_smart_house {
  text-align: center;
  background-color: #0050a9;
  font-weight: 500;
  font-size: 25px;
  line-height: 35px;
  color: #fff;
  padding: 30px 20px 0px;
  position: relative;
  width: 100%;
  max-width: 270px;
  margin: 50px auto 120px;
}

.angle_smart_house:before {
  content: "";
  width: calc(100% + 60px);
  display: inline-block;
  border-top: 80px solid #0050a9;
  border-left: 170px solid transparent;
  border-right: 170px solid transparent;
  position: absolute;
  bottom: 1px;
  left: 50%;
  margin: 0 auto;
  -webkit-transform: translate(-50%, 100%);
  -moz-transform: translate(-50%, 100%);
  -ms-transform: translate(-50%, 100%);
  -o-transform: translate(-50%, 100%);
  transform: translate(-50%, 100%);
}

.souene_shindan_btn {
  display: block;
  text-decoration: none;
  text-align: center;
  margin: 0px auto 0;
  font-size: 20px;
  width: 100%;
  max-width: 600px;
  color: #fff;
  background-color: #ff9900;
  padding: 20px;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}

.souene_shindan_btn:hover {
  color: #fff;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
  background-color: #ffd140;
}

/*オススメ*/
.osusume_img {
  text-align: center;
  margin: 50px 0;
}

.osusume_img img {
  width: 100%;
  max-width: 550px;
}

/*テクノナガイソラーレなら*/
.for_home_ts_nara {
  text-align: center;
  font-size: 45px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #fff;
}

#can-do .button {
  max-width: 300px;
}

/*アコーディオン*/
.j_aco_btn {
  position: relative;
  padding-right: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.j_aco_btn:hover {
  color: #f9a138;
}

.j_aco_btn:after {
  content: "+";
  position: absolute;
  right: 5px;
  top: 0px;
  color: #f9a138;
  font-weight: 600;
  font-size: 30px;
  line-height: 30px;
}

.j_aco_btn.active:after {
  content: "-";
  font-size: 40px;
}

.j_aco_content {
  padding: 10px;
  border-radius: 5px;
  background-color: #f2f2f2;
}

/*創エネとは*/
.what_souene {
  background-color: #d7fbf7;
  padding: 10px;
  border-radius: 5px;
}

.what_souene .j_aco_btn {
  margin: 0;
  font-size: 18px;
  padding-left: 10px;
  color: #494949;
}

.what_souene .j_aco_btn:hover {
  color: #0050a9;
}

.what_souene .j_aco_btn:after {
  color: #0050a9;
}

.what_souene .j_aco_content {
  background-color: transparent;
}

/*==================================================
 施工事例
==================================================*/
.photovoltaic_cate_btn_area {
  margin: 0 auto 50px;
  width: 100%;
  max-width: 900px;
  padding: 10px;
}

.photovoltaic_cate_btn {
  display: block;
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
  padding: 20px 10px;
  color: #fff;
  text-decoration: none;
  text-align: center;
  position: relative;
  transition: 0.3s;
  background-color: #FF9900;
}

.photovoltaic_cate_btn:hover {
  color: #fff;
  background-color: #ffaa2a;
}

.case-s-cat {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 10px;
  background: #0050A9;
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
}

/*==================================================
 お問い合わせ
==================================================*/
.contact_ate {
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  color: #f56b6b;
}

.contact_table {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
.contact_table a {
  color: #666;
  line-height: 1.8;
  font-size: 16px;
  text-decoration: underline;
}

.contact_table th,
.contact_table td {
  text-align: left;
  vertical-align: top;
  display: block;
  width: 100%;
}

.contact_table th {
  font-size: 18px;
  padding: 10px 0 0;
}

.contact_table td {
  padding: 0 0 10px;
}

.contact_table input,
.contact_table textarea {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100% !important;
  font-size: 16px;
  border: 1px solid #dedede;
  border-radius: 3px;
  padding: 5px;
  margin-top: 5px;
}

.contact_table input[type=checkbox],
.contact_table input[type=radio] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 14px !important;
}

.contact_table .wpcf7-list-item {
  margin-left: 0;
}

.contact_table .recired {
  color: #e32;
  margin-left: 5px;
}

.contact_ex {
  display: block;
  font-size: 15px;
  margin: 5px 0 0;
}

.contact_submit {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.contact_table .input-title {
  border: none;
  pointer-events: none;
}

/*==================================================
 レスポンシブ
==================================================*/
@media (max-width: 1200px) {
  /*太陽光発電事業================*/
  .sfm_client_area {
    padding: 0 10px;
    width: 120px;
  }
  .sfm_link {
    /*padding: 10px 10px 10px 15px;*/
    /*min-height: 161px;*/
  }
  .sfm_link:before {
    /*width: 120px;*/
    background: linear-gradient(124deg, transparent 0%, transparent 50%, #0050A9 50%, #0050A9 100%);
  }
  .sfm_customer .sfm_link:before {
    background: linear-gradient(124deg, transparent 0%, transparent 50%, #ff9900 50%, #ff9900 100%);
  }
  .sfm_link_arrow {
    right: 15px;
    top: auto;
    bottom: 20px;
    -webkit-transform: translate(0%, 0%);
    -moz-transform: translate(0%, 0%);
    -ms-transform: translate(0%, 0%);
    -o-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
  }
  .sfm_link:hover .sfm_link_arrow {
    right: 10px;
  }
  .sfm_desc {
    padding-right: 80px;
  }
}
@media (max-width: 1000px) {
  /*住宅用太陽光================*/
  .fh_mv_title {
    font-size: 3.5vw;
    line-height: 4.5vw;
    margin-top: -50px;
  }
  .fh_mv_readtext {
    font-size: 2vw;
    line-height: 3.5vw;
  }
}
@media (max-width: 900px) {
  /*太陽光発電事業================*/
  .service_first_menu_area {
    flex-direction: column;
  }
  .service_fm_titlearea {
    width: 100%;
    max-width: 100%;
    padding-bottom: 200px;
  }
  .sfm_link {
    padding: 20px 10px 20px 20px;
  }
  /*住宅用太陽光================*/
  .fh_mv_btn {
    padding-bottom: 5.5vw;
  }
  .fh_mv_btn_title {
    font-size: 1.5vw;
    line-height: 2vw;
    min-height: 4vw;
  }
  .fh_mv_btn:before {
    width: 2vw;
    height: 2vw;
  }
}
@media (max-width: 700px) {
  /*住宅用太陽光================*/
  .forhome_mv_area {
    background-image: url(images/for_home/forhome_mv_sp.jpg);
    background-position: center bottom 15%;
    padding-top: 40px;
  }
  .fh_mv_house {
    width: 100%;
    margin: 0 auto 300px;
  }
  .fh_mv_yane {
    width: 90%;
  }
  .fh_mv_house_white {
    display: none;
    opacity: 0;
  }
  .fh_mv_title {
    font-size: 37px;
    line-height: 48px;
    margin-top: -8vw;
  }
  .fh_mv_readtext {
    font-size: 18px;
    line-height: 35px;
  }
  /*ボタン*/
  .fh_mv_btn_flex {
    width: calc(100% + 10px);
    margin-right: -10px;
  }
  .fh_mv_bf_con {
    width: calc(50% - 10px);
    margin-right: 10px;
    margin-bottom: 10px;
  }
  .fh_mv_btn {
    padding-bottom: 35px;
  }
  .fh_mv_btn_title {
    font-size: 2.7vw;
    line-height: 3.7vw;
    min-height: 7vw;
  }
  .fh_mv_bf_con:nth-child(1) .fh_mv_btn_title,
  .fh_mv_bf_con:nth-child(2) .fh_mv_btn_title {
    min-height: 1px;
  }
  .fh_mv_bf_con:nth-child(1) .fhm_bt_center,
  .fh_mv_bf_con:nth-child(2) .fhm_bt_center {
    position: static;
    -webkit-transform: translate(0%, 0%);
    -moz-transform: translate(0%, 0%);
    -ms-transform: translate(0%, 0%);
    -o-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
  }
  .fh_mv_btn:before {
    width: 15px;
    height: 15px;
    bottom: 15px;
  }
}
@media (max-width: 600px) {
  .industry_table th,
  .industry_table td {
    font-size: 14px;
  }
  /*ブログ========*/
  .kanren_area .yarpp-thumbnails-horizontal .yarpp-thumbnail {
    width: calc(50% - 20px);
  }
  .kanren_area .yarpp-thumbnails-horizontal .yarpp-thumbnail-title {
    font-size: 14px;
  }
  /*太陽光発電事業================*/
  .sfm_section {
    flex-direction: column;
    margin-bottom: 20px;
  }
  .sfm_client_area {
    width: 100%;
    padding: 10px;
  }
  .sfm_cliant_title {
    margin: 0;
  }
  .sfm_link {
    padding-right: 40px;
    /*padding: 10px 10px 10px 10px;*/
    /*min-height: 1px;*/
  }
  .sfm_link:before {
    /*height: 175px;*/
    width: 120px;
  }
  .sfm_link_arrow {
    right: 10px;
  }
  .sfm_link:hover .sfm_link_arrow {
    right: 5px;
  }
  .sfm_desc {
    padding-right: 45px;
  }
  /*住宅用太陽光========*/
  /*スマートハウス*/
  .angle_smart_house {
    font-size: 20px;
    line-height: 30px;
    max-width: 230px;
    margin-bottom: 90px;
  }
  .angle_smart_house:before {
    border-top-width: 60px;
    border-left-width: 150px;
    border-right-width: 150px;
  }
  .for_home_ts_nara {
    font-size: 35px;
    line-height: 45px;
    margin-bottom: 30px;
  }
}
@media (max-width: 500px) {
  /*住宅用太陽光========*/
  .fh_mv_title {
    font-size: 7.5vw;
    line-height: 10vw;
  }
  .fh_mv_readtext {
    font-size: 4vw;
    line-height: 7vw;
  }
}
@media (min-width: 600px) {
  .blog-cat-selector-link {
    font-size: 16px;
  }
}
@media (min-width: 900px) {
  .global-link.global-link_aircon {
    padding-top: 0;
    padding-bottom: 0;
    line-height: 1.4;
  }
}
.company_page_top {
  position: relative;
  background: #F29526;
  border-radius: 50px 0 0 0;
}
.company_page_top_inner {
  padding: 46px 0 150px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 920px) {
  .company_page_top_inner {
    padding: min(9.837962963vw, 170px) 0 calc(min(10.4166666667vw, 180px) + 145px);
    border-radius: 120px 0 0 0;
  }
}
.company_page_top .company_circle01 {
  position: absolute;
  top: -182px;
  right: -206px;
}
@media (min-width: 920px) {
  .company_page_top .company_circle01 {
    top: max(-22.1643518519vw, -383px);
    right: max(-21.5277777778vw, -372px);
    width: min(48.6111111111vw, 840px);
  }
}
.company_page_top .company_circle02 {
  position: absolute;
  bottom: -124px;
  left: -114px;
}
@media (min-width: 920px) {
  .company_page_top .company_circle02 {
    bottom: max(-16.1458333333vw, -279px);
    left: max(-17.4189814815vw, -279px);
    width: min(32.2916666667vw, 558px);
  }
}
.company_page_top_ttl {
  color: hsl(0, 0%, 100%);
  font-weight: 900;
  font-size: 30px;
  text-box-trim: trim-both;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-align: center;
  font-feature-settings: "palt";
}
@media (min-width: 920px) {
  .company_page_top_ttl {
    font-size: clamp(30px, 2.3148148148vw, 40px);
  }
}
@media (min-width: 600px) {
  .company_page_top_ttl .br_sp {
    display: none;
  }
}
.company_page_top_ttl_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  position: relative;
  z-index: 2;
}
@media (min-width: 920px) {
  .company_page_top_ttl_wrap {
    gap: min(4.0509259259vw, 70px);
  }
}
.company_page_top_txt {
  color: hsl(0, 0%, 100%);
  font-weight: 500;
  font-size: 16px;
  text-box-trim: trim-both;
  line-height: 1.9;
  letter-spacing: 0.04em;
}
@media (min-width: 920px) {
  .company_page_top_txt {
    font-size: 20px;
    line-height: 2;
    text-align: center;
  }
}
.company_page_top_content {
  border-top: 1px solid #FFFFFF;
  padding: 40px 0 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (min-width: 920px) {
  .company_page_top_content {
    padding: clamp(40px, 2.8935185185vw, 50px) 0;
    flex-direction: row;
    align-items: flex-start;
    gap: 50px;
  }
}
@media (min-width: 1200px) {
  .company_page_top_content {
    gap: min(20.9490740741vw, 362px);
  }
}
.company_page_top_content:last-child {
  border-bottom: 1px solid #FFFFFF;
}
.company_page_top_content_txt {
  color: hsl(0, 0%, 100%);
  font-weight: 900;
  font-size: 20px;
  text-box-trim: trim-both;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-align: center;
}
@media (min-width: 920px) {
  .company_page_top_content_txt {
    font-size: clamp(20px, 1.7361111111vw, 30px);
  }
}
.company_page_top_content_container {
  margin-top: 30px;
  position: relative;
  z-index: 2;
}
@media (min-width: 920px) {
  .company_page_top_content_container {
    margin-top: min(6.3657407407vw, 110px);
  }
}
.company_page_top_content_ttl {
  color: #F08200;
  background: hsl(0, 0%, 100%);
  font-weight: 700;
  font-size: 18px;
  text-box-trim: trim-both;
  line-height: 1.9;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 2px 8px;
  border-radius: 4px;
  flex-shrink: 0;
}
@media (min-width: 920px) {
  .company_page_top_content_ttl {
    font-size: clamp(18px, 1.1574074074vw, 20px);
    line-height: 1.6;
    padding: 5px 12px;
  }
}
.company_page_top_content_list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.company_page_top_content_list_wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 920px) {
  .company_page_top_content_list_wrap {
    flex-direction: row;
    align-items: flex-start;
    gap: min(6.9444444444vw, 120px);
  }
}
.company_page_top_content_list_item_inner {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (min-width: 920px) {
  .company_page_top_content_list_item_inner {
    gap: 16px;
  }
}
.company_page_top_content_list_item_txt {
  color: hsl(0, 0%, 100%);
  font-weight: 700;
  font-size: 16px;
  text-box-trim: trim-both;
  line-height: 1.6;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
@media (min-width: 393px) {
  .company_page_top_content_list_item_txt {
    font-size: 18px;
  }
}
@media (min-width: 920px) {
  .company_page_top_content_list_item_txt {
    font-size: 20px;
  }
}
.company_page_top_content_list_item_icon {
  max-width: 24px;
  flex-shrink: 0;
}
@media (min-width: 920px) {
  .company_page_top_content_list_item_icon {
    max-width: 30px;
  }
}
.company_list {
  margin-top: 40px;
}
@media (min-width: 920px) {
  .company_list {
    max-width: 1020px;
    margin: 60px auto 0;
  }
}
.company_list_item {
  padding: 20px 0;
  border-top: 1px solid #E5E3DC;
}
.company_list_item:last-child {
  border-bottom: 1px solid #E5E3DC;
}
.company_list_item_inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 920px) {
  .company_list_item_inner {
    flex-direction: row;
    align-items: center;
    gap: min(10.2430555556vw, 177px);
  }
}
.company_list_ttl {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.04em;
}
@media (min-width: 920px) {
  .company_list_ttl {
    font-size: clamp(14px, 0.9259259259vw, 16px);
    width: 138px;
  }
}

.message_section {
  background: #F4F3F0;
  position: relative;
  margin-top: -50px;
  border-radius: 50px 0 0 0;
  position: relative;
  z-index: 1;
}
@media (min-width: 920px) {
  .message_section {
    margin-top: -145px;
    border-radius: 120px 0 0 0;
  }
}
.message_section_inner {
  padding: 100px 0 150px;
  overflow: hidden;
  position: relative;
}
@media (min-width: 920px) {
  .message_section_inner {
    padding: 180px 0 325px;
  }
}
.message_section .message_circle {
  bottom: -134px;
  right: -206px;
  z-index: 1;
}
@media (min-width: 920px) {
  .message_section .message_circle {
    width: min(48.6111111111vw, 840px);
    bottom: max(-18.287037037vw, -326px);
    right: max(-24.8842592593vw, -430px);
  }
}

.message_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}
@media (min-width: 920px) {
  .message_container {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1300px;
    margin: 60px auto 0;
  }
}
.message_img {
  overflow: hidden;
  border-radius: 10px;
  width: 77.4%;
}
@media (min-width: 920px) {
  .message_img {
    border-radius: 20px;
    width: 36.9%;
  }
}
.message_img img {
  max-width: none;
  width: 100%;
}
.message_txt_wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 920px) {
  .message_txt_wrap {
    gap: min(3.4722222222vw, 60px);
    width: clamp(500px, 41.6666666667vw, 720px);
  }
}
.message_txt_wrap .name_wrap {
  display: flex;
  align-items: center;
  gap: 30px;
}
.message_txt_wrap .name_wrap .name_txt {
  font-weight: 400;
  font-size: 14px;
  text-box-trim: trim-both;
  line-height: 1.9;
  letter-spacing: 0.04em;
}
.message_txt_wrap .name_wrap .name_img {
  max-width: 156px;
}
@media (min-width: 920px) {
  .message_txt_wrap .name_wrap .name_img {
    max-width: 200px;
  }
}

.overview_section {
  padding: 100px 0 40px;
  border-radius: 50px 0 0 0;
  margin-top: -50px;
  background: #FFFFFF;
  position: relative;
  z-index: 2;
}
@media (min-width: 920px) {
  .overview_section {
    padding: 180px 0 80px;
    border-radius: 120px 0 0 0;
    margin-top: -145px;
  }
}

.history_section {
  padding: 40px 0 100px;
  position: relative;
}
@media (min-width: 920px) {
  .history_section {
    padding: 80px 0 180px;
  }
}
.history_section .history_circle {
  bottom: -199px;
  left: -192px;
  z-index: -1;
}
@media (min-width: 920px) {
  .history_section .history_circle {
    width: min(45.5439814815vw, 787px);
    bottom: -16.724537037vw;
    left: max(-20.8333333333vw, -360px);
  }
}

.contact_head_wrap {
  position: relative;
  z-index: 2;
}
.contact_sub_txt {
  font-weight: 400;
  font-size: 14px;
  text-box-trim: trim-both;
  line-height: 1.9;
  letter-spacing: 0.04em;
  text-align: center;
  margin-top: 8px;
}
@media (min-width: 920px) {
  .contact_sub_txt br {
    display: none;
  }
}
.contact_form_container {
  position: relative;
  z-index: 2;
  border-radius: 10px;
  background: hsl(0, 0%, 100%);
  padding: 40px 20px;
  margin: 50px 0 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 920px) {
  .contact_form_container {
    padding: clamp(40px, 4.0509259259vw, 70px);
    max-width: 1020px;
    margin: 80px auto 0;
    gap: 33px;
  }
}
.contact_form_container.sub {
  margin: 0 auto;
}
.contact_ttl {
  font-weight: 500;
  font-size: 14px;
  text-box-trim: trim-both;
  line-height: 1.9;
  letter-spacing: 0.04em;
  position: relative;
  padding-left: 18px;
}
.contact_ttl::before {
  position: absolute;
  content: "";
  top: 3px;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background-color: #64C49F;
}
.contact_ttl_wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.required {
  color: white;
  font-weight: 700;
  font-size: 10px;
  text-box-trim: trim-both;
  line-height: 1;
  letter-spacing: 0.04em;
  background: #F08200;
  padding: 0 10px;
  width: fit-content;
  border-radius: 999px;
}

.thanks_main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 2;
}
@media (min-width: 920px) {
  .thanks_main {
    gap: 120px;
  }
}
.thanks_head {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (min-width: 920px) {
  .thanks_head {
    gap: 60px;
  }
}
.thanks_ttl {
  color: #F08200;
  font-weight: 900;
  font-size: 20px;
  text-box-trim: trim-both;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-align: center;
}
@media (min-width: 920px) {
  .thanks_ttl {
    font-size: 30px;
  }
}
@media (min-width: 920px) {
  .thanks_ttl br {
    display: none;
  }
}

.to_top {
  background: hsl(0, 0%, 100%);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #E5E3DC;
  max-width: 180px;
  width: 100%;
  padding: 20px;
  transition: background-color 0.3s ease-out;
}
.to_top span {
  font-weight: 400;
  font-size: 14px;
  text-box-trim: trim-both;
  line-height: 1.9;
  letter-spacing: 0.04em;
  transition: color 0.3s ease-out;
}
.to_top:hover {
  background-color: hsl(36, 6%, 15%);
}
.to_top:hover span {
  color: hsl(0, 0%, 100%);
}

.contact_service_link {
  background: hsl(0, 0%, 100%);
  border: 1px solid #E5E3DC;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 19px 16px 27px;
  transition: background-color 0.3s ease-out, border-color 0.3s ease-out, ease-out, color 0.3s ease-out;
}
.contact_service_link_group {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 12px;
}
@media (min-width: 920px) {
  .contact_service_link_group {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 12px 30px;
    max-width: 612px;
  }
}
.contact_service_link .common_link_arrow {
  width: fit-content;
}
.contact_service_link:hover {
  background-color: #F08200;
  border-color: #F08200;
  color: hsl(0, 0%, 100%);
}
.contact_service_link:hover .common_link_arrow {
  background-color: hsl(36, 6%, 15%);
}

/* 親要素のクラス */
.my-radio-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.my-radio-list.first {
  margin: 15px 0 40px;
}
@media (min-width: 920px) {
  .my-radio-list.first {
    margin: 15px 0 30px;
  }
}
.my-radio-list {
  /* 各ラジオボタンの項目 */
}
.my-radio-list label {
  display: flex;
  align-items: center;
  /* テキストとアイコンを中央揃え */
  cursor: pointer;
  margin-bottom: 10px;
  position: relative;
  /* 画像の重ね合わせの基準点 */
}
.my-radio-list {
  /* 実際のラジオボタン（非表示） */
}
.my-radio-list input[type=radio] {
  appearance: none;
  display: none;
}
.my-radio-list {
  /* 共通の土台（未選択・選択共通の丸い枠） */
}
.my-radio-list input[type=radio] + span:before {
  content: "\f111";
  /* Font Awesome: ◯ (Circle) */
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  /* Regular */
  /* --- サイズと見た目の設定 --- */
  display: inline-block;
  box-sizing: border-box;
  /* サイズ計算にpaddingを含める */
  text-align: center;
  vertical-align: middle;
  font-size: 30px;
  /* 全体の大きさ */
  width: 30px;
  /* 幅 */
  height: 30px;
  /* 高さ */
  line-height: 30px;
  /* 縦方向の中央寄せ */
  margin-right: 10px;
  /* テキストとの間隔 */
  /* --- 枠線の色（ご要望のカラー） --- */
  color: #E5E3DC;
  /* --- 選択時の画像設定の準備 --- */
  background-position: center;
  background-repeat: no-repeat;
  background-size: 60%;
  /* 丸の中に収まる画像の大きさ（調整してください） */
  transition: background-image 0.2s ease;
  /* 切り替わりを滑らかに */
}
.my-radio-list {
  /* --- 1. 未選択のとき --- */
}
.my-radio-list input[type=radio] + span:before {
  background-image: none;
  /* 画像は表示しない */
}
.my-radio-list {
  /* --- 2. 選択されたとき --- */
}
.my-radio-list input[type=radio]:checked + span:before {
  /* --- ご要望の画像を表示 --- */
  background-image: url("../img/common/contact_check.svg");
  /* 画像のURLに書き換えてください */
  /* 必要であれば、選択されたときだけ枠線の色を変えることも可能 */
  /* color: #333; */
}

.form_wrap.contact {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 920px) {
  .form_wrap.contact {
    gap: 33px;
  }
}
.form_wrap .contact_label_wrap input {
  background-color: #F4F3F0;
  border-radius: 10px;
  font-weight: 400;
  font-size: 16px;
  text-box-trim: trim-both;
  line-height: 1.9;
  letter-spacing: 0.04em;
  border: 1px solid #E5E3DC;
  width: 100%;
  padding: 16px 20px;
}
.form_wrap .contact_label_wrap input::placeholder {
  color: #9C968E;
  /* プレースホルダーの文字色（ご希望の色） */
  font-weight: 400;
  font-size: 16px;
  text-box-trim: trim-both;
  line-height: 1.9;
  letter-spacing: 0.04em;
}
.form_wrap .contact_label_wrap textarea {
  background-color: #F4F3F0;
  border-radius: 10px;
  border: 1px solid #E5E3DC;
  font-weight: 400;
  font-size: 16px;
  text-box-trim: trim-both;
  line-height: 1.9;
  letter-spacing: 0.04em;
  width: 100%;
  padding: 16px 20px;
  height: 230px;
  resize: none;
}

.contact_label_wrap {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form_checkArea_message {
  font-weight: 400;
  font-size: 16px;
  text-box-trim: trim-both;
  line-height: 1.9;
  letter-spacing: 0.04em;
  text-align: center;
  margin-bottom: 16px;
}
@media (min-width: 920px) {
  .form_checkArea_message {
    font-size: clamp(14px, 0.9259259259vw, 16px);
    margin-bottom: 20px;
  }
}
@media (min-width: 600px) {
  .form_checkArea_message br {
    display: none;
  }
}

.form_checkArea_consent {
  text-align: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.04em;
  /* MW WP Formが出力するチェックボックスのラッパー */
}
.form_checkArea_consent .mwform-checkbox-field {
  display: flex;
  align-items: center;
  justify-content: center;
}
.form_checkArea_consent {
  /* チェックボックス本体を隠す */
}
.form_checkArea_consent input[type=checkbox] {
  appearance: none;
  display: none;
}
.form_checkArea_consent {
  /* ラベルをflexにして、子要素（四角とテキスト）を縦中央に揃える */
}
.form_checkArea_consent label {
  display: inline-flex;
  align-items: center; /* これで四角とテキストの縦方向が中央に揃います */
  cursor: pointer;
}
.form_checkArea_consent {
  /* MW WP Formがテキストを囲んでいるspan（もしあれば）も含めて調整 */
}
.form_checkArea_consent label span {
  display: inline-flex;
  align-items: center;
}
.form_checkArea_consent {
  /* 角が丸い四角のベース */
}
.form_checkArea_consent input[type=checkbox] + span::before {
  content: "";
  display: inline-block;
  box-sizing: border-box;
  width: 30px;
  height: 30px;
  border-radius: 3px;
  border: 2px solid #E5E3DC;
  background-color: #fff;
  margin-right: 10px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 60%;
  flex-shrink: 0;
}
.form_checkArea_consent {
  /* 選択されたとき */
}
.form_checkArea_consent input[type=checkbox]:checked + span::before {
  background-image: url("../img/common/contact_check.svg");
}

.stream_line {
  background-image: linear-gradient(to right, hsl(30, 5%, 24%), hsl(30, 5%, 24%));
  /* 線の色 */
  background-size: 100% 1px;
  background-position: bottom left;
  background-repeat: no-repeat;
  /* 背景を繰り返さない */
  padding-bottom: 0;
}
.stream_line:hover {
  animation: linkLineReverse 0.5s ease forwards;
}
@keyframes linkLineReverse {
  0% {
    background-size: 100% 1px;
    background-position: bottom right;
  }
  50% {
    background-size: 0 1px;
    /* 幅(100%=文字の長さ) | 高さ(線の太さ) */
    background-position: bottom right;
  }
  51% {
    background-position: bottom left;
  }
  100% {
    background-size: 100% 1px;
  }
}

.form_checkArea_wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 920px) {
  .form_checkArea_wrap {
    gap: 50px;
  }
}

.mw_wp_form_input {
  width: 100%;
}
@media (min-width: 920px) {
  .mw_wp_form_input {
    width: auto;
  }
}

.form_btnArea button {
  color: hsl(0, 0%, 100%);
  font-weight: 400;
  font-size: 14px;
  text-box-trim: trim-both;
  line-height: 1.9;
  letter-spacing: 0.04em;
  background: #F08200;
  border-radius: 999px;
  max-width: 320px;
  width: 100%;
  box-shadow: none;
  border: none;
  transition: background-color 0.3s ease-out;
  padding: 19px 20px;
}
.form_btnArea button:hover {
  background-color: hsl(36, 6%, 15%);
}
.form_btnArea .confirmation {
  color: hsl(0, 0%, 100%);
  font-weight: 400;
  font-size: 14px;
  text-box-trim: trim-both;
  line-height: 1.9;
  letter-spacing: 0.04em;
  background: #F08200;
  border-radius: 999px;
  max-width: 320px;
  width: 100%;
  box-shadow: none;
  border: none;
  transition: background-color 0.3s ease-out;
  padding: 19px 20px;
  margin: 0 auto;
  display: block;
}
.form_btnArea .confirmation:hover {
  background-color: hsl(36, 6%, 15%);
}

.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0 !important;
}

.mw_wp_form_confirm .form_checkArea {
  display: none;
}

/* 入力画面では修正ボタンを隠す */
.mw_wp_form_input .form_backBtn {
  display: none;
}

.form_backBtn button {
  background: transparent;
  max-width: 215px;
  width: 100%;
  position: relative;
  padding-left: 72px;
  border: none;
  font-weight: 400;
  font-size: 14px;
  text-box-trim: trim-both;
  line-height: 1.9;
  letter-spacing: 0.04em;
  margin: 0 auto;
  display: block;
}
.form_backBtn button::after {
  content: "";
  position: absolute;
  left: 0;
  /* 右端からの距離 */
  top: 50%;
  transform: translateY(-50%);
  /* 画像の実際のサイズに合わせて指定してください（例：幅20px、高さ11pxの場合） */
  width: 58px;
  height: 22px;
  /* SVG画像を背景として読み込む */
  background-image: url("../img/common/retouch_arrow.svg");
  /* テーマのフォルダ構成に合わせてパスは調整してください */
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: background-image 0.3s ease;
  pointer-events: none;
}
.form_backBtn button:hover::after {
  background-image: url("../img/common/retouch_arrow_hover.svg");
  /* 選択時（クリック後）の矢印画像 */
}

/* 完了ページにどうしても出てしまうMW WP Formの出力を隠すCSS */
.mw_wp_form_complete_hidden {
  display: none;
}

.privacy_ttl {
  font-weight: 700;
  font-size: 18px;
  text-box-trim: trim-both;
  line-height: 1.9;
  letter-spacing: 0.04em;
}
@media (min-width: 920px) {
  .privacy_ttl {
    font-size: clamp(18px, 1.1574074074vw, 20px);
    text-box-trim: trim-both;
    line-height: 1.6;
  }
}
.privacy_container {
  padding: 0 0 76px;
}
@media (min-width: 920px) {
  .privacy_container {
    padding: 0 0 min(10.1851851852vw, 176px);
  }
}
.privacy_wrapper {
  display: flex;
  flex-direction: column;
  gap: 38px;
  max-width: 1020px;
  margin: 0 auto;
}
@media (min-width: 920px) {
  .privacy_wrapper {
    gap: clamp(20px, 2.662037037vw, 46px);
  }
}
.privacy_inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (min-width: 920px) {
  .privacy_inner {
    gap: 17px;
  }
}/*# sourceMappingURL=base.css.map */