@charset "UTF-8";
/* ---------- base ---------- */
body {
  color: var(--black-color);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.1em;
}

:root {
  /* 色管理用の変数 */
  --white-color: #F9F9F9;
  --black-color: rgba(51, 51, 51, 0.8);
  --gray-color: #F0F0F0;
  --gray-color02: #D9D9D9;
  --gray-color03: #f2f2f2;
  --gray-color04: #707070;
  --base-color: rgba(167, 216, 240, 0.3);
  --primary-color: rgba(182, 227, 195, 0.3);
  --accent-color: rgba(222, 209, 154, 0.3);

  /* 詳細ボタングラデーション用の色 */
  --detail-gradient-start: #A7D8F0;
  --detail-gradient-end: #B6E3C3; 

  /* 問い合わせボタングラデーション用の色 */
  --green-gradient-start: #B6E3C3;
  --green-gradient-middle: #95D6A8;
  --green-gradient-end: #80D097;

  /* マーカーのグラデーション用の色 */
  --gradient-start: #F9F9F9;
  --gradient-middle: #DED19A;
  --gradient-end: #DED19A;

  /* footer */
  --blue-gradient-start: rgba(240, 240, 240, 0.85); /* #F0F0F0 with 85% opacity */
  --blue-gradient-point1: #BADFF2;
  --blue-gradient-point2: #B3DEF3;
  --blue-gradient-end: #ACCEDF;
}

:root {
  /* コンテンツ幅管理用の変数 */
  --content-width-sm: 800px;
  --content-width: 936px;
  --content-width-lg: 1080px;
}

:root {
  /* z-index管理用の変数 */
  --z-index-back: -1;
  --z-index-default: 1;
  --z-index-page-top: 50;
  --z-index-header: 100;
  --z-index-menu: 150;
  --z-index-modal: 200;
}

/* ---------- utility ---------- */
@media screen and (min-width: 375px) {
  .u_sm-dn {
    display: none;
  }
}

@media screen and (min-width: 1080px) {
  .u_lg-dn {
    display: none;
  }
}

/* ---------- layout ---------- */
.l_container-sm,
.l_container-lg,
.l_container {
  margin-left: auto;
  margin-right: auto;
  padding: 0 16px;
}

.l_container-sm {
  max-width: calc(var(--content-width-sm) + 32px);
}

.l_container {
  max-width: calc(var(--content-width) + 32px);
}

.l_container-lg {
  max-width: calc(var(--content-width-lg) + 32px);
}

.l_contents {
  padding: 64px 0px;
}

.l_page-main {
  padding-top: 120px;
}

/* -----btn-color------- */
.m_cta-wrapper{
  margin: 48px auto 56px;
}

@media screen and (min-width: 1080px) {
  .m_cta-wrapper{
    margin-top: 60px;
  }
}

.m_cta_btn-wrapper{
  height: 59px;
  border-radius: 8px;
  background: linear-gradient(
    to bottom,
    var(--green-gradient-start) 1%,
    var(--green-gradient-middle) 61%,
    var(--green-gradient-end) 100%
  );
  align-content: center;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 343px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.m_cta_btn-wrapper:hover{
  transform: scale(1.05);
  box-shadow: 0px 6px 8px rgba(0,0,0,0.3);
}

.m_cta_btn-wrapper:active {
  transform: scale(0.95); 
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2); 
}

@media screen and (min-width: 1080px) {
  .m_cta_btn-wrapper{
    height: 84px;
  }
}

@media screen and (min-width: 1080px) {
  .m_cta-wrapper.m_cta_btn-wrapper.m_cta_page-bottom{
    display: none;
  }
}

.m_btn__cta{
  position: relative;
  z-index: 0;
}

@media screen and (min-width: 1080px) {
  .m_btn__cta{
  font-size: 20px;
  font-weight: bold;
}
}

.m_btn__cta::after{
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 300px;
  background: var(--white-color);
  top: 50%;
  right: 14%;
  transform: translateY(-42%);
  z-index: -1;
}

@media screen and (min-width: 1080px) {
  .m_btn__cta::after{
    width: 24px;
    height: 24px;
    right: 34px;
    transform: translateY(-49%);
  }
}

.m_btn__cta::before{
  content: '';
  width: 8px;
  height: 8px;
  border-width: 2px;
  border-style: solid solid none none;
  border-color: var(--black-color);
  position: absolute;
  top: 50%;
  right: 16%;
  transform: translateY(-32%) rotate(45deg);
  z-index: 0;
}

@media screen and (min-width: 1080px) {
  .m_btn__cta::before{
    width: 12px;
    height: 12px;
    right: 42px;
    transform: translateY(-48%) rotate(45deg);
  }
}

.contact_banner{
  display: none;
}

@media screen and (min-width: 1080px) {
  .contact_banner{
  display: block;
  height: 153px;
  border-radius: 10px;
  background: linear-gradient(
    to bottom,
    var(--green-gradient-start) 1%,
    var(--green-gradient-middle) 61%,
    var(--green-gradient-end) 100%
  );
  align-content: center;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  margin-bottom: 40px;
  }
}

@media screen and (min-width: 1080px) {
  .contact_banner-inner {
  display: flex;
  gap: 80px;
  align-items: center;
  justify-content: center;
}
}

@media screen and (min-width: 1080px) {
  .contact_banner-title{
    font-weight: bold;
    font-size: 32px;
  }
}

@media screen and (min-width: 1080px) {
  .contact_banner-message{
    font-size: 20px;
  }
}

@media screen and (min-width: 1080px) {
  .m_btn__primary{
  width: 343px;
  height: 83px;
  display: flex;
  background-color: var(--white-color);
  padding: 12px 72px;
  border-radius: 15px;
  text-decoration: none;
  font-size: 20px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  align-items: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
}

@media screen and (min-width: 1080px) {
.m_btn__primary:hover {
  transform: scale(1.05);
  box-shadow: 0px 6px 8px rgba(0,0,0,0.3);
}
}

@media screen and (min-width: 1080px) {
  .m_btn__primary:active{
  transform: scale(0.95); 
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2); 
  }
}

@media screen and (min-width: 1080px) {
  .m_btn__primary::before{
  content: '';
  width: 12px;
  height: 12px;
  border-width: 2px;
  border-style: solid solid none none;
  border-color: var(--black-color);
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateX(-130%) translateY(-50%) rotate(45deg);
  }
}

.btn-container{
  display: flex;
}

.m_btn-wrapper{
  margin-top: 48px;
  margin-left: auto;
  margin-right: 16px;
  width: 234px;
}

.top_about_btn-wrapper{
  height: 59px;
  border-radius: 8px;
  background: linear-gradient(to right, #A7D8F0 0%, #B6E3C3 100%);
  align-content: center;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

@media screen and (min-width: 1080px) {
  .m_btn-wrapper.top_about_btn-wrapper{
    margin-top: -55px;
  }
}

.m_btn__about-more{
  font-weight: bold;
  padding-left: 21px;
  position: relative;
  z-index: 0;
  cursor: pointer;
}

.m_btn__about-more:hover {
  transform: scale(1.05); 
  box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.3); 
}

.m_btn__about-more:active {
  transform: scale(0.95); 
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2); 
}

.m_btn__about-more::after{
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 300px;
  background: var(--white-color);
  top: 50%;
  right: 9%;
  transform: translateY(-47%) rotate(45deg);
  z-index: -1;
}

.m_btn__about-more::before{
  content: '';
  width: 8px;
  height: 8px;
  border-width: 2px;
  border-style: solid solid none none;
  border-color: var(--black-color);
  position: absolute;
  top: 50%;
  right: 12%;
  transform: translateY(-42%) rotate(45deg);
  z-index: 0;
}

.m_btn-wrapper.top_about_btn-wrapper.m_btn__about-more {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.m_btn-wrapper.top_about_btn-wrapper.m_btn__about-more:hover {
  transform: scale(1.05);
  box-shadow: 0px 6px 8px rgba(0,0,0,0.3);
}

.m_btn-wrapper.top_about_btn-wrapper.m_btn__about-more:active {
  transform: scale(0.95) translateY(2px);
  box-shadow: none;
}

.m_btn__more{
  font-weight: bold;
  padding-left: 35px;
  position: relative;
  z-index: 0;
  cursor: pointer;
}

.m_btn__more::after{
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 300px;
  background: var(--white-color);
  top: 50%;
  right: 18%;
  transform: translateY(-38%) rotate(45deg);
  z-index: -1;
}

.m_btn__more::before{
  content: '';
  width: 8px;
  height: 8px;
  border-width: 2px;
  border-style: solid solid none none;
  border-color: var(--black-color);
  position: absolute;
  top: 50%;
  right: 21%;
  transform: translateY(-33%) rotate(45deg);
  z-index: 0;
}

.m_case_btn-wrapper{
  margin: 0px 16px 0px auto;
}

.top_case_btn-wrapper{
  width: 190px;
  height: 59px;
  border-radius: 8px;
  background: linear-gradient(to right, #A7D8F0 0%, #B6E3C3 100%);
  align-content: center;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.m_case_btn-wrapper.top_case_btn-wrapper.m_btn.m_btn__more:hover {
  transform: scale(1.05);
  box-shadow: 0px 6px 8px rgba(0,0,0,0.3);
}

.m_case_btn-wrapper.top_case_btn-wrapper.m_btn.m_btn__more:active {
  transform: scale(0.95) translateY(2px);
  box-shadow: none;
}

/* ------index.css------- */
.l_header {
  position: absolute;
  position:sticky;
  top: 0;
  left: 0;
  z-index: var(--z-index-header);
  width: 100%;
  height: 75px;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.03); 
  transition: background-color 0.3s ease;
}

@media screen and (min-width: 1080px) {
  .l_header {
    padding: 0 56px;
  }
}

.l_header-logo {
  font-size: 18px;
  font-weight: bold;
  font-family: 'Roboto', sans-serif;
}

.l_header-nav {
  display: none;
}

.l_header-nav.is-open {
  display: block;
  width: 260px;
  padding-bottom: 90px;
  margin: 146px -48px 0px auto;
  border-radius: 16px;
}

@media screen and (min-width: 1080px) {
  .l_header-nav {
    opacity: 1;
    display: block;
  }
}

@media screen and (max-width: 1079px) {
  .l_header-nav {
    background: linear-gradient(
      to right,
      var(--detail-gradient-start),
      var(--detail-gradient-end)
    );
    transform: translateY(-10px); /* 少し上から出てくる */
    transition: opacity 0.35s ease, transform 0.35s ease;
  }
}

.l_header-nav_list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 30px;
  margin-top: 240px;
}

@media screen and (min-width: 1080px) {
  .l_header-nav_list {
    gap: 56px;
    flex-direction: row;
    margin-top: 0;
  }
}

.l_header-nav_item {
  font-size: 14px;
  font-weight: bold;
}

@media screen and (min-width: 1080px) {
  .l_header-nav_item {
    font-size: 16px;
  }
}

.l_header-nav_link {
  display: inline-block;
  transition: all 0.2s ease;
}

.l_header-nav_link:hover {
  transform: scale(1.2);
}
.l_header-nav_link:active {
  transform: scale(0.95);
}

.l__header-nav_contact .l_header-nav_link:hover,
.l__header-nav_contact .l_header-nav_link:active {
  transform: none;
}

.l__header-nav_contact {
  display: flex;          
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 10px 40px 10px 16px;
  background: linear-gradient(
    to bottom,
    var(--green-gradient-start) 1%,
    var(--green-gradient-middle) 61%,
    var(--green-gradient-end) 100%
  );
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;  
  color: inherit;             
}

.l__header-nav_contact:hover {
  transform: scale(1.05); 
  box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.3); 
}

.l__header-nav_contact:active {
  transform: scale(0.95); 
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2); 
}

.l__header-nav_contact::after{
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 300px;
  background: var(--white-color);
  top: 50%;
  right: 14px;
  transform: translateY(-50%) rotate(45deg);
  z-index: 2;
}

.l__header-nav_contact::before{
  content: '';
  width: 8px;
  height: 8px;
  border-width: 2px;
  border-style: solid solid none none;
  border-color: var(--black-color);
  position: absolute;
  top: 50%;
  right: 21px;
  transform: translateY(-50%) rotate(45deg);
  z-index: 3;
}

.m_hamburger {
  display: block;
  width: 40px;
  height: 28px;
  position: relative;
  z-index: var(--z-index-modal);
  border: none;
  border-radius: 8px;
  opacity: 0.85;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

@media screen and (min-width: 1080px) {
  .m_hamburger {
    display: none;
  }
}

.m_hamburger-inner{
  width: 50px;
  height: 54px;
  border-radius: 8px;
  background: linear-gradient(
    to right,
    var(--detail-gradient-start),
    var(--detail-gradient-end));
  margin-left: -5px;
  margin-top: -6px;
}

.m_hamburger-bar {
  width: 100%;
  height: 2.67px;
  position: absolute;
  left: 0;
  background: var(--black-color);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.m_hamburger-bar:nth-child(1) {
  top: 16%;
}

.m_hamburger-bar:nth-child(2) {
  top: 55%;
  transform: translateY(-50%);
}

.m_hamburger-bar:nth-child(3) {
  top: 93%;
  transform: translateY(-100%);
}

.m_hamburger.is-open .m_hamburger-bar:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.m_hamburger.is-open .m_hamburger-bar:nth-child(2) {
  opacity: 0;
}

.m_hamburger.is-open .m_hamburger-bar:nth-child(3) {
  transform: translateY(-13px) rotate(-45deg);
}

.m_hamburger-label{
  font-size: 9px;
  font-weight: bold;
  position: absolute;
  left: 4%;
  top: 150%;
  transform: translateY(-80%);
}

@media screen and (min-width: 1080px) {
  .m_hamburger-label {
    display: none;
  }
}

.top_kv{
  height: 100vh;
  min-height: 668px;
  background: url('../img/bg_kv.jpg') center/cover;
  position: relative;
  margin-top: -120px;
}

@media screen and (min-width: 1080px) {
  .top_kv{
  height: 100vh;
  min-height: 995px;
  background: url('../img/bg_kv_lg.jpg') center/cover;
  }
}

.top_kv_contents {
  width: 91.5vw; /* 375pxに対して343px相当 → 343 / 375 ≒ 91.5% */
  aspect-ratio: 343 / 278;
  background: url('../img/top_kv-img.png') center/cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 840px) {
  .top_kv_contents {
    aspect-ratio: 1080 / 673;
    background: url('../img/top_kv-img_lg.png') center/cover;
  }
}

.top_kv_textbox{
  margin-top: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (min-width: 650px) {
  .top_kv_textbox{
    margin-top: 250px;
  }
}

@media screen and (min-width: 1080px) {
  .top_kv_textbox{
    margin-top: 330px;
  }
}

.top_kv_copy {
  color: var(--white-color);
  font-size: 24px;
}

@media screen and (min-width: 650px) {
  .top_kv_copy {
    font-weight: bold;
    font-size: 36px;
  }
}

@media screen and (min-width: 1080px) {
  .top_kv_copy {
    font-size: 50px;
  }
}

.top_kv_copy-first{
  display: inline-block;
  background: linear-gradient(rgba(51, 51, 51, 0.8),rgba(51, 51, 51, 0.8));
  padding: 0px 8px;
}

@media screen and (min-width: 840px) {
  .top_kv_copy-first{
    margin-left: -200px;
  }
}

.top_kv_copy-second{
  display: inline-block;
  background: linear-gradient(rgba(51, 51, 51, 0.8),rgba(51, 51, 51, 0.8));
  margin-left: 70px;
  padding: 0px 4px;
}

@media screen and (min-width: 840px) {
  .top_kv_copy-second{
    margin-left: 180px;
  }
}

@media screen and (min-width: 1080px) {
  .top_kv_copy-second{
    margin-left: 270px;
  }
}

.m_section_title-wrapper{
  position: relative;
}

.m_section_title{
  font-weight: bold;
  font-size: 28px;
  position: relative;
  padding-right: 16px;
}

@media screen and (min-width: 1080px) {
  .m_section_title{
    font-size: 48px;
    margin-top: 96px;
  }
}

.m_section_title::after{
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: calc(100% - 192px); 
  height: 1px;
  background-color: var(--black-color);
  transform: translateY(-50%);
}

@media screen and (min-width: 1080px) {
  .m_section_title::after{
    width: calc(100% - 340px); 
  }
}

.top_about_contents{
  max-width: 640px;
}

@media screen and (min-width: 1080px) {
  .top_about_contents{
  max-width: 1080px;
}
}

.top_about_txts{
  margin-top: 64px;
  font-size: 24px;
}

@media screen and (min-width: 464px) {
  .top_about_txts{
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media screen and (min-width: 1080px) {
  .top_about_txts{
    font-size: 32px;
  }
}

.top_about_heading-first{
  display: flex;
  justify-content: flex-start;
}

.top_about_heading-second{
  display: flex;
  justify-content: flex-end;
}

@media screen and (min-width: 1080px) {
  .top_about_lg-wrapper{
    display: flex;
    align-items: center;
    margin-top: 64px;
    gap: 24px;
  }
}

.top_about_img-wrapper{
  margin-top: 48px;
  display: block;
  width: fit-content;
  height: fit-content;
}

@media screen and (min-width: 1080px) {
  .top_about_img-wrapper{
  margin-top: 0px;
}
}

@media screen and (min-width: 1080px) {
  .top_about_img{
    display: none;
  }
}

.top_about_img-lg{
  display: none;
}

@media screen and (min-width: 1080px) {
  .top_about_img-lg{
    display: block;
    width: 100%;
    aspect-ratio: 127 / 80;
    border-radius: 15px;
  }
}

.top_about_desc{
  margin-top: -30px;
}

@media screen and (min-width: 1080px) {
  .top_about_desc{
  margin-top: -80px;
  font-size: 20px;
}
}

.section-problem{
  margin: 142px auto 153px;
  background: url('../img/problem_bg.png') center/cover;
  width: 100%; 
  max-width: 640px;
  aspect-ratio: 360 / 331;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.section-title{
  text-align: center;
  margin-top: 60px;
}

.section-title__icon-problem{
  position: relative;
}

.section-title__icon-problem::after{
  content: '';
  position: absolute;
  width: 150px;
  height: 190px;
  background-size: cover;
  background-image: url(../img/problem01.png);
  top: 0;
  left: 0;
  transform: translateX(107%) translateY(-90%);
  background-repeat: no-repeat;
}

@media screen and (min-width: 1080px) {
  .section-title__icon-problem::after{
    transform: translateX(140%) translateY(-95%);
  }
}

.section-title__icon-problem::before{
  content: '';
  position: absolute;
  width: 232px;
  height: 268px;
  background-size: 60%;
  background-image: url(../img/problem02.png);
  top: 0;
  left: 0;
  transform: translateX(-20%) translateY(90%);
  background-repeat: no-repeat;
}

.section-title__text{
  display: inline-block;
  font-weight: bold;
  font-size: 20px;
  border-bottom: 1px solid var(--black-color);
}

@media screen and (min-width: 1080px) {
  .section-title__text{
    font-size: 24px;
  }
}

.problem-list{
  margin: 32px 0 60px;
  display: grid;
  gap: 16px;
  justify-content: center;
}

.problem-item{
  display: flex;
  align-items: center;
}

.support-card {
  text-align: center;
  border: 1px solid var(--black-color);
  border-radius: 15px;
  margin: 48px auto 0px;
  max-width: 640px;
}

@media screen and (min-width: 1080px) {
  .support-card {
    display: flex;
    max-width: 1048px;
  }
}

@media screen and (min-width: 1080px) {
  .support-card__title-lg{
    display: flex;
    align-items: center;
  }
}

.support-card__title {
  font-weight: bold;
  display: block;
  text-align: center;
}

@media screen and (min-width: 1080px) {
  .support-card__title {
  font-size: 24px;
  margin-left: 60px;
  text-align: left;
}

}

.support-card__title:first-of-type {
  margin-top: 48px;
}

@media screen and (min-width: 1080px) {
  .support-card__title-lg .support-card__title:nth-of-type(2) .support-card__title-text {
  margin-top: 48px;
  margin-left: -60px;
}
}

.support-card__title-text {
  display: inline-block; /* ← 背景サイズを文字に合わせる */
  background: linear-gradient(transparent 60%, var(--accent-color) 60%);
}

.support-card__text{
  font-size: 14px;
  margin: 16px auto 32px;
}

@media screen and (min-width: 1080px) {
  .support-card__text{
    font-size: 20px;
    margin-left: 60px;
    text-align: left;
    max-width: 657px;
  }
}

@media screen and (min-width: 1080px) {
  .support-card__text br:nth-of-type(2){
    display: none;
  }
}

.support-card__img-wrapper{
  margin-bottom: 48px;
}

@media screen and (min-width: 1080px) {
  .support-card__img-wrapper{
  margin: auto;
}
}

.support-card__img01{
  max-width: 280px;
}

.support-card__img02{
  max-width: 190px;
}

.support-card__img03{
  max-width: 241px;
}

.section-support__note{
  text-align: center;
  margin-top: 48px;
}

@media screen and (min-width: 768px) {
  .section-support__note{
    font-size: 20px;
  }
}

@media screen and (min-width: 1080px) {
  .section-support__note{
    font-size: 24px;
  }
}

@media screen and (min-width: 1080px) {
  .section-support__note br{
    display: none;
  }
}

.top_case{
  background: var(--gray-color);
}

.caption-label{
  display: inline-block;
  font-weight: bold;
  border-bottom: 1px solid var(--black-color);
  margin-left: 16px;
}

.caption-label.top-page{
    margin-top: 16px;
  }

/* @media screen and (min-width: 1080px) {
  .caption-label.top-page{
    margin-left: 280px;
  }
} */


.top_case_item{
    background: var(--white-color);
    margin-top: 60px;
    padding-bottom: 24px;
    border-radius: 8px;
  }

@media screen and (min-width: 1080px) {
  .top_case_item{
    background: var(--white-color);
    margin-top: 60px;
    padding-bottom: 24px;
  }
}

@media screen and (min-width: 1080px) {
  .top_case_item-lg{
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
}

.top_case_item_before-wrapper{
  margin: 4px 0 56px;
  position: relative;
  display: flex;
  justify-content: center;
}

@media screen and (min-width: 1080px) {
  .top_case_item_before-wrapper{
    margin: 0;
  }
}

.top_case_item_thumb{
  width: 343px;
  height: 300px;
}

@media screen and (min-width: 1080px) {
  .top_case_item_thumb{
    margin-top: 24px;
    max-width: 300px;
    object-fit: contain;
  }
}

.top_case_item_before-wrapper::before{
  content: '';
  position: absolute;
  background-image: url(../img/arrow.png);
  width: 74px;
  height: 107px;
  top: 100%;
  left: 50%;
  background-size: 40%;
  background-repeat: no-repeat;
  transform: translateX(-30%) translateY(10%);
}

@media screen and (min-width: 1080px) {
  .top_case_item_before-wrapper::before{
    content: '';
    position: absolute;
    background-image: url(../img/arrow.png);
    width: 74px;
    height: 107px;
    background-size: 45%;
    top: 30%;
    left: 100%;
    transform: translateX(91%) rotate(-90deg);
    background-repeat: no-repeat;
  }
}

@media screen and (min-width: 1080px) {
  .top_case_item_before-wrapper.about::before{
    content: '';
    position: absolute;
    background-image: url(../img/arrow.png);
    width: 74px;
    height: 107px;
    background-size: 45%;
    top: 35%;
    left: 106%;
    transform: translateX(130%) rotate(-90deg);
    background-repeat: no-repeat;
  }
}

.arrow-up{
  margin: 4px 0 56px;
  position: relative;
}

.arrow-up::before{
  content: '';
  position: absolute;
  background-image: url(../img/arrow.png);
  width: 74px;
  height: 107px;
  top: 100%;
  left: 50%;
  background-size: 40%;
  background-repeat: no-repeat;
  transform: translateX(-30%) translateY(0%);
}

@media screen and (min-width: 1080px) {
  .arrow-up::before{
    top: 30%;
    left: 100%;
    background-size: 50%;
    transform: translateX(85%) translateY(-14%) rotate(-90deg);
  }
}

.top_case_item_after-wrapper{
  margin-top: 4px;
  position: relative;
  display: flex;
  justify-content: center;
}

@media screen and (min-width: 1080px) {
  .top_case_item_after-wrapper{
  margin-top: 0px;
}
}

@media screen and (min-width: 1080px) {
  .caption-label{
    margin: 0px;
    font-weight: bold;
    font-size: 20px;
  }
}

@media screen and (min-width: 1080px) {
  .section-title.top-space_none_lg{
    margin-top: 0px;
  }
}


.top_case_item_txt{
  margin: 48px 24px 0px;
}

.change-cards{
  display: grid;
  gap: 84px;
  margin-top: 50px;
}

@media screen and (min-width: 1080px) {
  .change-cards{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 1080px;
  margin: auto;
}
}

.change-card{
  margin: auto;
}

@media screen and (min-width: 1080px) {
  .change-card{
  margin: 60px auto 0px;
}
}

.change-card:first-child{
  margin-top: 68px;
}

@media screen and (min-width: 1080px) {
  .change-card:first-child{
  margin-top: 60px;
}
}

.change-card__caption{
  margin-top: 16px;
  text-align: center;
}

.change-card_thumb-wrapper{
  position: relative;
  display: inline-block;
}

.photo-wrapper--1::after {
  content: '集客UP';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  transform: translateX(16%) translateY(-40%);
  background-color: var(--black-color);
  color: var(--white-color);
  font-size: 16px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
}

.photo-label {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  transform: translateX(16%) translateY(-30%);
  background-color: var(--black-color);
  color: var(--white-color);
  font-size: 16px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.6;
  z-index: 3; /* ← 画像より前に表示 */
}

.change-card__text{
  display: inline-block;
  border-bottom: 4px double var(--black-color);
}

.subsidy-info {
  background-color: var(--accent-color);
  padding: 16px 20px;
  margin: 24px auto 0px;
  border-radius: 15px;
  max-width: 800px;
  border: 1px solid var(--black-color);
  position: relative;
}

@media screen and (min-width: 800px) {
  .subsidy-info::before{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  background-image: url('../img/subsidy-info.png');
  width: 100%;
  width: 160px;
  height: 160px;
  background-repeat: no-repeat;
  background-size: cover;
  transform: translateX(7%) translateY(36%);
}
}

@media screen and (min-width: 1080px) {
  .subsidy-info::before{
  width: 200px;
  height: 200px;
  transform: translateX(27%) translateY(13%);
  }
}

.subsidy-info__title {
  text-align: center;
}

@media screen and (min-width: 800px) {
  .subsidy-info__title {
  font-size: 20px;
}
}

.subsidy-info__text{
  margin: 16px auto 0px;
  font-size: 14px;
  max-width: 600px;
}

.subsidy-info__text strong {
  font-weight: bold;
}

.subsidy-info__text small {
  display: block;
  margin-top: 4px;
  font-size: 14px;
}

.subsidy-link {
  text-decoration: underline;
}

.plan-card__catch{
  position: relative;
  margin-top: 32px;
}

@media screen and (min-width: 1080px) {
  .plan-card__catch{
    font-size: 20px;
  }
}

@media screen and (min-width: 500px) {
  .plan-card__catch{
    margin-left: 14%;
  }
}

@media screen and (min-width: 650px) {
  .plan-card__catch{
    margin-left: 25%;
  }
}

@media screen and (min-width: 900px) {
  .plan-card__catch{
    margin-left: 32%;
  }
}

.plan-card__catch::after{
  content: '＼';
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-90%) translateY(40%);
  font-size: 10px;
  color: var(--black-color);
}

@media screen and (min-width: 1080px) {
  .plan-card__catch::after{
    font-size: 18px;
    transform: translateX(-106%) translateY(18%);
  }
}

.plan-card__catch::before{
  content: '／';
  position: absolute;
  top: 0;
  left: 100px;
  transform: translateX(210%) translateY(40%);
  font-size: 10px;
  color: var(--black-color);
}

@media screen and (min-width: 1080px) {
  .plan-card__catch::before{
    font-size: 18px;
    transform: translateX(276%) translateY(12%);
  }
}

.plan-card__title-wrapper{
  background: var(--black-color);
  width: 343px;
  height: 53px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 48px auto 0px;
}

@media screen and (min-width: 1080px) {
  .plan-card__title-wrapper{
    margin: 16px auto 0px;
  }
}

.plan-card__title{
  color: var(--white-color);
  font-weight: bold;
}

.top-package{
  margin: 0px auto;
}

.plan_card--highlight{
  background-color: var(--gray-color);
  border-radius: 12px;
}

@media screen and (min-width: 1080px) {
  .plan_card01-lg{
    display: flex;
  }
}

@media screen and (min-width: 1080px) {
  .plan-card__recommend-lg{
    margin: auto;
  }
}

.plan-card__recommend{
  margin: 48px 23px 0px;
}

@media screen and (min-width: 1080px) {
  .plan-card__recommend{
  margin: 40px 23px 0px;
}
}

.plan-card__recommend-title{
  text-align: center;
  font-weight: bold;
  position: relative;
  max-width: 264px;
  margin: auto;
}

@media screen and (min-width: 1080px) {
  .plan-card__recommend-title{
    font-size: 20px;
    max-width: 360px;
  }
}

.plan-card__recommend-title::before{
  content: '';
  position: absolute;
  top: -6px;
  right: -31px;
  width: 26px;
  height: 26px;
  background-size: 50%;
  background-image: url(../img/attention02.png);
  background-repeat: no-repeat;
}

@media screen and (min-width: 1080px) {
  .plan-card__recommend-title::before{
  background-size: 68%;
  top: -10px;
  right: -12px;
  }
}

.plan-card__recommend-list{
  margin-top: 16px;
  display: grid;
  gap: 8px;
  justify-content: center;
  text-align: center;
}

.plan-card__recommend-item{
    margin: 16px auto 0px;
  }

.plan-card__recommend-list .plan-card__recommend-item:nth-of-type(2) {
  margin-top: 0;
}


@media screen and (min-width: 1080px) {
  .plan-card__recommend-item{
    font-size: 18px;
  }
}

.plan-card__recommend-explain{
  margin: 16px auto 8px;
  text-align: center;
}

.plan-card__recommend-desc{
  font-size: 14px;
  max-width: 640px;
  margin: 16px auto 0px;
}

@media screen and (min-width: 1080px) {
  .plan-card__recommend-desc{
  margin-top: 24px;
  font-size: 16px;
}
}

.plan-card__price-wrapper{
  margin: 48px auto 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--black-color);
  max-width: 300px;
}

@media screen and (min-width: 1080px) {
  .plan-card__price-wrapper{
    font-size: 20px;
  }
}

.plan-card__features-lg{
  margin: auto;
}

.plan-card__features{
  margin-top: 48px;
}

.plan-card__features-title{
  max-width: 640px;
  width: 100%;
  margin: auto;
}

@media screen and (min-width: 1080px) {
  .plan-card__features-title{
    font-size: 20px;
  }
}

.plan-card__features-list{
  border: 1px solid var(--black-color);
  border-radius: 15px;
  margin: 16px auto 0px;
  padding: 35px 25px;
  display: grid;
  gap: 16px;
  position: relative;
  max-width: 640px;
}

@media screen and (min-width: 1080px) {
  .plan-card__features-list{
    gap: 5px;
  }
}

.plan-card__features-list::before{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-60%);
  background-size: contain;
  background-repeat: no-repeat;
}

.plan_card--1.plan-card__features-list::before {
  background-image: url('../img/plan_card01.png');
  width: 150px;
  height: 150px;
}

.plan_card--2.plan-card__features-list::before {
  background-image: url('../img/plan_card02.png');
  width: 130px;
  height: 130px;
}

.plan_card--3.plan-card__features-list::before {
  background-image: url('../img/plan_card03.png');
  width: 150px;
  height: 150px;
}

.plan_card--4.plan-card__features-list::before {
  background-image: url('../img/plan_card04.png');
  width: 140px;
  height: 140px;
}

.plan_card--5.plan-card__features-list::before {
  background-image: url('../img/plan_card05.png');
  width: 120px;
  height: 120px;
}

.plan_card--6.plan-card__features-list::before {
  background-image: url('../img/plan_card06.png');
  width: 140px;
  height: 140px;
}

.plan_card--7.plan-card__features-list::before {
  background-image: url('../img/plan_card07.png');
  width: 130px;
  height: 130px;
}

.plan-card__note{
  margin: 48px auto 0px;
  max-width: 640px;
}

@media screen and (min-width: 1080px) {
  .plan-card__note{
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media screen and (min-width: 1080px) {
  .plan_card-lg{
    display: flex;
    justify-content: center;
    max-width: 1080px;
    margin: 24px auto 0px;
    gap: 16px;
  }
}

@media screen and (min-width: 1080px) {
  .plan_card02{
    max-width: 353px;
  }
}

@media screen and (min-width: 1080px) {
  .plan-card__recommend-list02{
    max-height: 100px;
    text-align: start;
  }
}

@media screen and (min-width: 1080px) {
  .plan-card__recommend-title.plan-card__recommend-title02{
    font-size: 16px;
  }
}

@media screen and (min-width: 1080px) {
  .plan-card__price-wrapper_lg{
    margin-top: 76px;
  }
}

/* お客様の声 */

.top_voice{
  background: var(--gray-color);
}

.voice_wrapper {
  display: grid;
  grid-template-columns: 343px; /* 幅343pxで1列 */
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

.voice_item {
  border: 1px solid #333; /* 外枠の線 */
  padding: 24px;          /* 内側の余白 */
  border-radius: 12px;
  background: #fff;
  position: relative;
  max-width: 360px; 
}

/* ▼ 文章部分 */
.voice_text {
  font-size: 14px;
  line-height: 1.8;
  font-weight: 300; /* Light */
  color: #333;
  margin: 0;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  overflow-wrap: break-word;
  max-width: 320px;
}

.voice_text p {
  margin: 0 0 1.2em;
  line-height: 1.8;
  font-weight: 300;
}

/* ▼ 疑似要素の線（295px） */
.voice_text::after {
  content: "";
  display: block;
  width: 295px;
  height: 1px;
  background-color: #ccc;
  margin-top: 16px;
}

/* ▼ ロゴ＋名前を横並び */
.voice_footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.voice_logo img {
  width: 80px;
  height: auto;
  display: block;
}

.voice_name {
  font-size: 14px;
  color: #000;
  margin-left: 32px;
}

/* ▼ 768px〜：2列 */
@media screen and (min-width: 768px) {
  .voice_wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }
}

/* ▼ 1440px〜：3列 */
@media screen and (min-width: 1440px) {
  .voice_wrapper {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
    margin-top: 64px;
  }
}

.top_contact{
  background: var(--white-color);
}

.top_contact_intro{
  margin: 64px auto 0px;
  max-width: 600px;
}

@media screen and (min-width: 1080px) {
  .top_contact_intro{
  font-size: 20px;
  position: relative;
}
}

@media screen and (min-width: 1080px) {
  .top_contact_intro::before{
    content: '';
    position: absolute;
    bottom: -150px;
    right: 0;
    background-image: url('../img/cta-btn_img.png');
    width: 131px;
    height: 136px;
    background-size: contain;
    background-repeat: no-repeat;
  }
}

.l_footer {
  padding: 16px 0 24px;
  background: linear-gradient(
    to bottom,
    var(--blue-gradient-start) 0%,
    var(--blue-gradient-point1) 34%,
    var(--blue-gradient-point2) 55%,
    var(--blue-gradient-end) 100%);
  margin-top: -2px;
}

.l_footer.case{
  padding: 16px 0 24px;
  background: linear-gradient(
    to bottom,
    #f9f9f9 0%,
    var(--blue-gradient-point1) 34%,
    var(--blue-gradient-point2) 55%,
    var(--blue-gradient-end) 100%);
  margin-top: -2px;
}

.l_footer-logo {
  font-size: 14px;
  text-align: center;
}

.footer-sns {
  display: flex;
  gap: 24px;
  justify-content: center;
  list-style: none;
  margin-top: 24px;
}

.sns-icon {
  display: inline-block;
  width: 45px;
  height: 45px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* SNSごとのアイコン画像を指定 */
.sns-facebook {
  background-image: url('../img/Facebook_Logo_Primary\ 1.png');
}

.sns-x {
  background-image: url('../img/logo-black.png');
}

.sns-instagram {
  background-image: url('../img/Instagram_Glyph_Gradient.png');
}

.l_footer-copyright {
  text-align: center;
  margin-top: 24px;
}

.l_footer-copyright_txt {
  font-size: 14px;
  letter-spacing: 0;
}

/* 下層ページ */
/* 私について */
.about_main.about{
  margin-top: -120px;
}

.about_intro-message{
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 1080px) {
  .about_intro-message{
    font-size: 24px;
  }
}

@media screen and (min-width: 1080px) {
  .about_intro-lg{
  display: flex;
  align-items: center;
  justify-content: center;
}
}

.about_intro-img-wrapper{
  margin-top: 48px;
  max-width: 640px;
}

@media screen and (min-width: 641px) {
  .about_intro-img-wrapper{
    margin: 48px auto;
  }
}

@media screen and (min-width: 1080px) {
  .about_intro-img{
    display: none;
  }
}

.about_intro-img_lg{
  display: none;
}

@media screen and (min-width: 1080px) {
  .about_intro-img_lg{
    display: block;
    width: 500px;
    height: 320px;
    border-radius: 15px;
}
}

.about_intro-texts{
  position: relative;
  max-width: 640px;
}

@media screen and (min-width: 641px) {
  .about_intro-texts{
    margin: auto;
  }
}

@media screen and (min-width: 1080px) {
  .about_intro-texts{
    margin-left: 40px;
  }
}

.about_intro-texts::after{
  content: '';
  position: absolute;
  background-image: url(../img/about_bg01.png) ;
  top: 0;
  right: 0;
  width: 130px;
  height: 164px;
  background-size: cover;
  transform: translateX(-4%) translateY(109%);
  background-repeat: no-repeat;
  z-index: -1;
}

.about_intro-texts::before{
  content: '';
  position: absolute;
  background-image: url(../img/about_img01.png) ;
  top: 0;
  right: 0;
  width: 180px;
  height: 106px;
  background-size: contain;
  transform: translateX(4%) translateY(208%);
  background-repeat: no-repeat;
}

@media screen and (min-width: 1080px) {
  .about_intro-texts::before{
    width: 200px;
    height: 126px;
    transform: translateX(-3%) translateY(156%);
  }
}

.about_intro-role{
  font-size: 10px;
  margin-top: -30px;
}

@media screen and (min-width: 1080px) {
  .about_intro-role{
    margin-top: 4px;
    font-size: 14px;
  }
}

@media screen and (min-width: 1080px) {
  .about_intro-role br {
    display: none;
  }
}

.about_intro-name{
  margin-top: 16px;
}

@media screen and (min-width: 1080px) {
  .about_intro-name{
    font-size: 20px;
  }
}

.about_intro-birthplace{
  margin-top: 16px;
}

.about_intro-summary{
  margin-top: 16px;
  margin-right: 133px;
}

.about_intro-favorite{
  margin-top: 56px;
}

@media screen and (min-width: 1080px) {
  .about_intro-favorite{
  margin-top: 45px;
}
}

.about_message-roots{
  margin-top: 56px;
  max-width: 640px;
}

@media screen and (min-width: 641px) {
  .about_message-roots{
    margin: 56px auto 0px;
  }
}

@media screen and (min-width: 1080px) {
  .about_message-roots{
    text-align: center;
  }
}

.about_message-text{
  margin-top: 24px;
  max-width: 640px;
}

@media screen and (min-width: 641px) {
  .about_message-text{
    margin: 24px auto 0px;
  }
}

@media screen and (min-width: 1080px) {
  .about_message-text{
    margin: 16px auto 0px;
  }
}

.width-left{
  margin-right: 73px;
}

@media screen and (min-width: 597px) {
  .width-left{
    margin:24px auto;
  }
}

@media screen and (min-width: 1080px) {
  .width-left{
    margin: 16px auto 0px;
  }
}

.space-top__1{
  margin-top: 128px;
  position: relative;
}

@media screen and (min-width: 1080px) {
  .space-top__1{
    margin-top: 245px;
    text-align: center;
  }
}

.space-top__1::after{
  content: '';
  position: absolute;
  background-image: url(../img/about_bg02.png) ;
  top: 0;
  right: 0;
  width: 158px;
  height: 162px;
  background-size: cover;
  transform: translateX(-56%) translateY(-94%);
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .space-top__1::after{
    transform: translateX(-150%) translateY(-94%);
  }
}

@media screen and (min-width: 1080px) {
  .space-top__1::after{
    width: 228px;
    height: 232px;
    transform: translateX(-89%) translateY(-107%);
  }
}

.space-top__1::before{
  content: '';
  position: absolute;
  background-image: url(../img/about_img02.png) ;
  top: 0;
  right: 0;
  width: 200px;
  height: 116px;
  background-size: cover;
  transform: translateX(-35%) translateY(-114%);
  background-repeat: no-repeat;
}

@media screen and (min-width: 768px) {
  .space-top__1::before{
    transform: translateX(-107%) translateY(-114%);
  }
}

@media screen and (min-width: 1080px) {
  .space-top__1::before{
  width: 220px;
  height: 136px;
  transform: translateX(-94%) translateY(-153%);
  }
}

@media screen and (min-width: 1080px) {
  .text-center_lg{
    text-align: center;
  }
}

.text-center{
  text-align: center;
  margin-top: 24px;
}

@media screen and (min-width: 1080px) {
  .about_message-text_lg-left{
    width: 540px;
    display: block;
    gap: 16px;
    margin-left: 60px;
  }
}

@media screen and (min-width: 1080px) {
  .about_message-roots.about_message-roots_lg{
    text-align-last: left;
  }
}

@media screen and (min-width: 1080px) {
  .about_message-text_lg-right{
    width: 540px;
    display: block;
    margin-right: 30px;
    margin-left: auto;
  }
}

.space-top__2{
  margin-top: 163px;
  position: relative;
}

@media screen and (min-width: 1080px) {
  .space-top__2{
  margin-top: 64px;
}
}

.space-top__2::after{
  content: '';
  position: absolute;
  background-image: url(../img/about_bg03.png) ;
  top: 0;
  right: 0;
  width: 206px;
  height: 102px;
  transform: translateX(3%) translateY(-112%);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .space-top__2::after{
  transform: translateX(-23%) translateY(-112%);
  }
}

@media screen and (min-width: 1080px) {
  .space-top__2::after{
  width: 226px;
  height: 122px;
  transform: translateX(-41%) translateY(-114%);
  }
}

.space-top__2::before{
  content: '';
  position: absolute;
  background-image: url(../img/about_img03.png) ;
  top: 0;
  right: 0;
  width: 230px;
  height: 140px;
  transform: translateX(4%) translateY(-117%);
  background-size: contain;
  background-repeat: no-repeat;
}

@media screen and (min-width: 768px) {
  .space-top__2::before{
    transform: translateX(22%) translateY(-117%);
  }
}

@media screen and (min-width: 1080px) {
  .space-top__2::before{
  width: 260px;
  height: 170px;
  transform: translateX(15%) translateY(-124%);
  }
}

.width-right{
  margin-left: 72px;
  position: relative;
}

@media screen and (min-width: 597px) {
  .width-right{
    margin:24px auto;
  }
}

@media screen and (min-width: 1080px) {
  .width-right{
    margin:16px auto 0px;
  }
}

.width-right::after{
  content: '';
  position: absolute;
  background-image: url(../img/about_bg04.png) ;
  top: 29px;
  right: 69px;
  width: 378px;
  height: 272px;
  background-size: 45%;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}

@media screen and (min-width: 420px) {
  .width-right::after{
    top: -3px;
    right: 115px;
  }
}

@media screen and (min-width: 660px) {
  .width-right::after{
    top: -27px;
    right: 360px;
  }
}

@media screen and (min-width: 1080px) {
  .width-right::after{
  background-size: 69%;
  top: -138px;
  right: 567px;
  }
}

.width-right::before{
  content: '';
  position: absolute;
  background-image: url(../img/about_img04.png) ;
  top: 0;
  right: 0;
  width: 200px;
  height: 124px;
  background-size: cover;
  transform: translateX(-70%) translateY(78%);
  background-repeat: no-repeat;
  background-position: center;
}

@media screen and (min-width: 421px) {
  .width-right::before{
  transform: translateX(-70%) translateY(56%);
  }
}
@media screen and (min-width: 665px) {
  .width-right::before{
  transform: translateX(-183%) translateY(31%);
  }
}

@media screen and (min-width: 1080px) {
  .width-right::before{
  width: 240px;
  height: 164px;
  transform: translateX(-229%) translateY(-48%);
  }
}

.space-top__3{
  margin-top: 143px;
}

@media screen and (min-width: 1080px) {
  .space-top__3{
  margin-top: 64px;
}
}

@media screen and (min-width: 1080px) {
  .about_message-text_lg-left02{
    width: 760px;
  }
}

@media screen and (min-width: 1080px) {
  .about_message-text br{
    display: none;
  }
}

@media screen and (min-width: 1080px) {
  .about_message-text_lg-right02{
    width: 760px;
    margin-right: 0px;
    margin-left: auto;
  }
}

.space-top__4{
  margin-top: 116px;
  position: relative;
}

@media screen and (min-width: 1080px) {
  .space-top__4{
  margin-top: 264px;
  }
}

.space-top__4::after{
  content: '';
  position: absolute;
  background-image: url(../img/about_bg05.png) ;
  top: 0;
  right: 0;
  width: 228px;
  height: 111px;
  background-size: contain;
  transform: translateX(-25%) translateY(-99%);
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .space-top__4::after{
  width: 258px;
  height: 141px;
  transform: translateX(-15%) translateY(-109%);
  }
}

@media screen and (min-width: 1080px) {
  .space-top__4::after{
  width: 328px;
  height: 211px;
  transform: translateX(-20%) translateY(-133%);
  }
}

.space-top__4::before{
  content: '';
  position: absolute;
  background-image: url(../img/about_img05.png) ;
  top: 0;
  right: 0;
  width: 200px;
  height: 125px;
  background-size: contain;
  transform: translateX(5%) translateY(-136%);
  background-repeat: no-repeat;
}

@media screen and (min-width: 768px) {
  .space-top__4::before{
  transform: translateX(-72%) translateY(-111%);
  }
}

@media screen and (min-width: 1080px) {
  .space-top__4::before{
  width: 250px;
  height: 175px;
  transform: translateX(-102%) translateY(-148%);
  }
}

@media screen and (min-width: 1080px) {
  .font-size_up-lg{
    font-size: 20px;
  }
}

.space-bottom{
  margin-bottom: 120px;
}

.l_footer.about{
background: linear-gradient(
    to bottom,
    var(--white-color) 0%,
    var(--blue-gradient-point1) 34%,
    var(--blue-gradient-point2) 55%,
    var(--blue-gradient-end) 100%);
}

/* 制作事例 */
.about_main.case{
  background-color: var(--gray-color);
  margin-top: -120px;
}

.demo_slider {
  overflow: hidden;
  position: relative;
  padding: 0px 16px;
}

.demo_slider-track {
  display: flex;
  justify-content: space-evenly;
  animation: slide-left 20s linear infinite;
}

/* 右→左に流れるアニメーション */
@keyframes slide-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.demo_slide-wrapper {
  width: 221px;
  height: 172px;
  flex-shrink: 0;
  overflow: hidden;
  margin-right: 16px;
}

@media screen and (min-width: 1080px) {
  .demo_slide-wrapper {
    width: 350px;
    height: 251px;
    margin-right: 24px;
  }
}

.demo_slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.demo_description {
  margin: 48px auto 0px;
  display: grid;
  gap: 24px;
}

.demo_description-text {
  font-size: 20px;
  line-height: 1.8;
  max-width: 653px;
}

@media screen and (min-width: 654px) {
  .demo_description-text {
    margin: auto;
  }
}

@media screen and (min-width: 1080px) {
  .demo_description-text {
    font-size: 24px;
  }
}

.demo_description p:nth-child(3) {
  margin-bottom: 56px;
}

.demo_description-sub{
  max-width: 700px;
}

@media screen and (min-width: 701px) {
  .demo_description-sub{
    margin: auto;
  }
}

@media screen and (min-width: 1080px) {
  .demo_description-sub{
    font-size: 20px;
  }
}

.top_case_list{
  max-width: 640px;
  margin: auto;
}

@media screen and (min-width: 1080px) {
  .top_case_list{
  max-width: 1080px;
}
}

.top_case_item.top-bg{
  background: var(--gray-color);
}

@media screen and (min-width: 1080px) {
  .top_case_item_figure-lg{
  display: flex;
  gap: 140px;
  justify-content: center;
  align-items: center;
  padding-top: 16px;
}
}

.caption-label.case-space01{
  margin-top: 56px;
}

@media screen and (min-width: 1080px) {
  .caption-label.case-space01{
  margin-top: 0px;
}
}

@media screen and (min-width: 1080px) {
  .top_case_item_figure-lg.case-03{
    display: flex;
    gap: 140px;
    justify-content: center;
    padding-top: 16px;
    align-items: flex-start;
  }
}

@media screen and (min-width: 1080px) {
  .top_case_item_thumb03{
    margin-top: -14px;
  }
}

.top_case_item_heading{
  margin: 0px 24px 72px;
}

@media screen and (min-width: 1080px) {
  .top_case_item_heading{
    text-align: center;
    font-size: 20px;
    margin: 16px auto 0px;
    max-width: 700px;
  }
}

@media screen and (min-width: 1080px) {
  .top_case_item_heading.magin-top_03{
    margin-top: -80px;
  }
}

.top_case_item_heading br{
  display: none;
}

@media screen and (min-width: 1080px) {
  .top_case_item_heading br{
  display: block;
}
}

.top_case_item_txt.case-space02 {
  margin-top: 0;
}

.new-page_img-wrapper{
  display: flex;
  justify-content: center;
}

.new-page_img{
  width: 343px;
  height: 201px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.new-page_category-wrapper{
  text-align: center;
}

.new-page_category{
  margin-top: 32px;
  font-size: 20px;
  text-align: center;
  display: inline-block;
  border-bottom: 1px solid var(--black-color);
}

.project-period{
  margin-top: 24px;
}

.project_info-tasks{
  margin-top: 16px;
}

.project_desc{
  margin: 24px 24px 20px;
  padding-bottom: 20px;
}

.work-card {
  background-color: #fff;
  border-radius: 8px;
  max-width: 343px;
  width: 100%;
  margin: 64px auto;
  padding-bottom: 24px;
}

.work-card_img-wrapper {
  position: relative;
  width: 100%;
  height: 201px;
  overflow: hidden;
}

.new-page_example-wrapper .work-card_img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* .work-card_img-wrapper img {
  width: 100%;
  height: 100%;
  border-radius: 8px 8px 0 0; 
  display: block;
  object-fit: cover;
} */

.work-card_category {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #76A283;
  color: #fff;
  padding: 4px 12px;
  font-size: 14px;
  border-radius: 8px;
  letter-spacing: 0.05em;
  z-index: 10;
}

.work-card_header {
  margin-top: 16px;
}

.work-card_section {
  margin-top: 32px;
}

.work-card_header,
.work-card_section {
  padding: 0 16px; /* ← テキストだけ左右に余白 */
  margin-top: 16px;
}

.work-card_title{
  font-weight: bold;
  font-size: 18px;
}

.work-card_meta {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-top: 8px;
  letter-spacing: -0.02em;
  position: relative;
}

.work-card_meta::before {
  content: "";
  position: absolute;
  left: 50%;              
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 16px;          
  background-color: #ccc;
}

.work-card_period {
  position: relative;
  padding-left: 35px;
  font-size: 14px;
}

.work-card_period::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translateY(-38%);
  background-image: url('../img/Vector.png');
  background-size: contain;
  background-repeat: no-repeat;
}

.work-card_link {
  position: relative;
  padding-left: 32px;
  padding-right: 18px;
  font-size: 14px;
  text-decoration: none;
  color: #333;
}

.work-card_link::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 13px;
  height: 13px;
  transform: translateY(-46%);
  background-image: url('../img/Vector1.png'); 
  background-size: contain;
  background-repeat: no-repeat;
}

.work-card_link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translateY(-38%);
  background-image: url('../img/Vector2.png'); 
  background-size: contain;
  background-repeat: no-repeat;
}

.site-point,
.site-design {
  position: relative;
  padding-left: 35px;
  font-size: 14px;
  letter-spacing: -0.02em;
  font-weight: bold;
}

.site-point{
  color: #CC6161;
  margin-top: 32px;
}

.site-point_text{
  margin-top: 8px;
}

.site-design{
  margin-top: 24px;
  color: #76A283;
}

.site-design_text{
  margin-top: 8px;
}

.site-point::before,
.site-design::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-47%);
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
}

/* 制作のポイント（電球） */
.site-point::before {
  background-image: url('../img/Group.png');
}

/* デザインのこだわり（パレット） */
.site-design::before {
  background-image: url('../img/Vector3.png');
}

.new-page_example{
  background-color: var(--white-color);
  border-radius: 8px;
  margin-top: 60px;
  padding: 0px 16px;
  max-width: 640px;
}

@media screen and (min-width: 641px) {
  .new-page_example{
    margin: 60px auto;
  }
}

@media screen and (min-width: 1080px) {
  .new-page_example{
    max-width: 343px;
  }
}

@media screen and (min-width: 1080px) {
  .new-page_example-wrapper{
    display: flex;
    max-width: 1080px;
    margin: 0 auto;
  }
}

.project_info-tasks{
  display: flex;
}

.m_btn-wrapper.case_ver{
  margin-top: 60px;
}

/* お問い合わせページ */
.about_main.contact{
  background: linear-gradient(
    to bottom,
    var(--blue-gradient-start) 0%,
    var(--blue-gradient-point1) 34%,
    var(--blue-gradient-point2) 55%,
    var(--blue-gradient-end) 100%);
  margin-top: -120px;
}

.contact_intro{
  font-weight: bold;
  font-size: 20px;
  text-align: center;
}

@media screen and (min-width: 1080px) {
  .contact_intro{
    font-size: 32px;
  }
}

@media screen and (min-width: 1080px) {
  .contact_intro br{
    display: none;
  }
}

@media screen and (min-width: 1080px) {
  .contact-wrapper_lg{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    max-width: 1080px;
    margin: auto;
  }
}

.contact_line-icon_lg{
  display: none;
}

@media screen and (min-width: 1080px) {
  .contact_line-icon_lg{
  display: flex;
  justify-content: center;
  margin-top: 26px;
}
}

@media screen and (min-width: 1080px) {
  .line_icon_lg{
    width: 120px;
    height: 120px;
  }
}

@media screen and (min-width: 1080px) {
  .line_icon{
    display: none;
  }
}

.contact_block.contact_block-tel{
  margin: 48px 16px 0px;
  background-color: var(--white-color);
  border-radius: 15px;
  max-width: 640px;
}

@media screen and (min-width: 641px) {
  .contact_block.contact_block-tel{
    margin: 48px auto 0px;
  }
}

.contact_tel-icon{
  display: flex;
  padding-top: 25px;
  justify-content: center;
  text-align: center;
  gap: 8px;
}

.phone-call_icon{
  width: 45px;
  height: 45px;
}

@media screen and (min-width: 1080px) {
  .phone-call_icon{
  display: none;
}
}

.contact_block-title{
  font-weight: bold;
  font-size: 20px;
}

@media screen and (min-width: 1080px) {
  .contact_block-title{
  font-size: 36px;
}
}

.contact_block-desc{
  font-size: 14px;
  margin-top: 14px;
  text-align: center;
}

@media screen and (min-width: 1080px) {
  .contact_block-desc{
    font-size: 24px;
    text-align: left;
    margin-right: 24px;
    padding-left: 170px;
  }
}

@media screen and (min-width: 1080px) {
  .contact_block-desc br{
    display: none;
  }
}

.contact_tel{
  font-size: 20px;
  margin-top: 8px;
  text-align: center;
}

@media screen and (min-width: 1080px) {
  .contact_tel{
    font-size: 32px;
    text-align: right;
    margin-right: 24px;
    position: relative;
  }
}

@media screen and (min-width: 1080px) {
  .contact_tel::after{
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    background-image: url(../img/mage_phone-call-fill.png);
    top: -50px;
    left: 40px;
    background-repeat: no-repeat;
  }
}

.contact_tel-link{
  border-bottom: 1px solid var(--black-color);
}

.contact_attention{
  font-size: 12px;
  margin-top: 16px;
  display: flex;
  justify-content: center;
  padding-bottom: 26px;
}

@media screen and (min-width: 1080px) {
  .contact_attention{
    font-size: 20px;
    margin: 16px 24px;
  }
}

.contact_block.contact_block-line{
  margin: 48px 16px 0px;
  background-color: var(--white-color);
  border-radius: 15px;
  max-width: 640px;
}

@media screen and (min-width: 641px) {
  .contact_block.contact_block-line{
    margin: 48px auto 0px;
  }
}

@media screen and (min-width: 1080px) {
  .contact_block.contact_block-line{
    padding: 10px 36px;
  }
}

.contact_line-icon{
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 25px;
  gap: 8px;
}

.line_icon{
  width: 60px;
  height: 60px;
}

.contact_line-desc{
  text-align: center;
}

@media screen and (min-width: 1080px) {
  .contact_line-desc{
  font-size: 24px;
  margin: 22px auto;
}
}

.contact_line-btn-wrapper{
  width: 268px;
  height: 59px;
  background-color: #06C755;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 16px auto 22px;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact_line-btn-wrapper:hover {
  font-size: 22px;
  transform: scale(1.05); 
  box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.3); 
}

.contact_line-btn-wrapper:active {
  transform: scale(0.95); 
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2); 
}

.contact_line-btn{
  color: var(--white-color);
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  transition: font-size 0.2s ease; 
}

.contact_line-space{
  height: 2px;
}

.contact_form-info{
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-top: 48px;
}

@media screen and (min-width: 1080px) {
  .contact_form-info{
    font-size: 36px;
    margin-top: 120px;
  }
}

.contact_form-info_desc{
  display: block;
  width: fit-content;
  margin: 16px auto 0px;
  padding: 0 32px;
}

@media screen and (min-width: 1080px) {
  .contact_form-info_desc{
    font-size: 24px;
  }
}

.contact_form-info_attention{
  display: block;
  width: fit-content;
  margin: 16px auto 0px;
  padding: 0px 32px 30px;
  font-size: 12px;
}

@media screen and (min-width: 1080px) {
  .contact_form-info_attention{
    font-size: 20px;
  }
}

.contact_form {
  max-width: 640px;
  margin: 0 16px;
  padding: 32px;
  background-color: #f9f9f9;
  border-radius: 15px;
  border: 3px solid var(--black-color);
}

@media screen and (min-width: 641px) {
  .contact_form {
    margin: 0 auto;
  }
}

@media screen and (min-width: 1080px) {
  .contact_form {
    max-width: 1080px;
    margin-top: 34px;
  }
}

.contact_form-group {
  margin-bottom: 24px;
}

@media screen and (min-width: 1080px) {
  .contact_form-group {
    max-width: 700px;
    margin: 64px auto;
  }
}

.contact_label{
  display: flex;
  align-items: center;
  white-space: nowrap;
}

@media screen and (min-width: 1080px) {
  .contact_label-main{
    font-size: 20px;
  }
}

.contact_label-example {
  font-size: 12px;        
  margin-left: 8px;
}

@media screen and (min-width: 1080px) {
  .contact_label-example{
    font-size: 18px;
    margin-left: 30px;
  }
}

.contact_form-group input,
.contact_form-group select,
.contact_form-group textarea {
  width: 100%;
  padding: 12px;
  font-size: 14px;
  border: 1px solid var(--black-color);
  border-radius: 6px;
  background-color: #fff;
  box-sizing: border-box;
}

@media screen and (min-width: 1080px) {
  .contact_form-group textarea {
    font-size: 18px;
  }
}

.contact_form-group input:focus,
.contact_form-group select:focus,
.contact_form-group textarea:focus {
  outline: none;
  border-color: var(--blue-gradient-end); 
  box-shadow: 0 0 0 2px rgba(6, 199, 85, 0.2);
}

.contact_radio-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.contact_radio-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media screen and (min-width: 1080px) {
  .contact_radio-item {
    font-size: 20px;
  }
}

.contact_form_checkbox input[type="checkbox"] {
  accent-color: var(--blue-gradient-end);
  width: 8px;
  height: 8px;
  border-radius: 100%;
  transform: translateY(6px);
}

.textarea {
  resize: vertical; /* 高さだけ調整可能にする */
  font-size: 12px;
}

.contact_form-agree {
  margin: 24px 0;
  font-size: 13px;
}

.contact_form-agree input {
  margin-right: 8px;
}

.contact_checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px; /* チェックボックスと文字の間に余白 */
}

input[type="checkbox"] {
  width: 20px;
  height: 20px;
  border: 1px solid var(--black-color); /* 明示的に枠線をつける */
  cursor: pointer;
  position: relative;
  margin-top: 9px;
}

input[type="checkbox"]:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  color: var(--black-color);
}

.privacy_link {
  text-decoration: underline;
  font-size: 14px;
}

@media screen and (min-width: 1080px) {
  .privacy-wrapper{
    font-size: 20px;
  }
}

@media screen and (min-width: 1080px) {
  .privacy_link {
    font-size: 20px;
  }
}

.contact_form-submit {
  text-align: center;
}

@media screen and (min-width: 1080px) {
  .contact_form-submit {
    margin: 48px auto;
  }
}

.m_btn__submit {
  background-color: var(--white-color);
  color: var(--black-color);
  font-weight: bold;
  padding: 12px 32px;
  border: 1px solid var(--black-color); 
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media screen and (min-width: 1080px) {
  .m_btn__submit {
    font-size: 20px;
    padding: 12px 64px;
    border-radius: 8px;
  }
}

.m_btn__submit:hover {
  background-color: var(--black-color);
  color: var(--white-color);
  transform: scale(1.05); 
  box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.3); 
}

.m_btn__submit:active {
  background-color: var(--white-color);
  color: var(--black-color);
  transform: scale(0.95); 
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2); 
}

.wpcf7-spinner{
  display: none;
}

.l_footer.contact{
  background: var(--blue-gradient-end);
  z-index: var(--z-index-header);
  padding-top: 64px;
}

/* プライバシーポリシー */
.modal {
  display: none; /* ← これが超重要 */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-content {
  background: var(--white-color); /* ← 白背景でくっきり */
  padding: 24px;
  max-width: 760px;
  margin: auto;
  max-height: 80%;
  overflow-y: auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2); /* ← 影で浮かせる */
}

.modal-close{
  display: block;
  margin-left: auto;
  text-align: right;
  font-size: 24px;
}

.modal-title{
  font-size: 38px;
  text-align: center;
  margin: 40px auto 24px;
  font-weight: bold;
}

.privacy-title{
  font-size: 24px;
  margin: 40px 0px 24px 24px;
  position: relative;
}

.privacy-title::after{
  content: '';
  position: absolute;
  width: 5px;
  height: 100%;
  top: 0;
  left: -21px;
  background-color: var(--black-color);
}

.sub-title{
  margin-top: 20px;
}

.number-wrapper{
  display: flex;
}

.number-item{
  margin-top: 12px;
}

.sub-text{
  margin-top: 12px;
}

.modal-end{
  margin-top: 32px;
}

.privacy-end-wrapper{
  display: flex;
  margin-top: 16px;
}

.error404 {
  padding: 120px 20px;
  text-align: center;
}

.error404__title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}

.error404__text {
  font-size: 16px;
  margin-bottom: 40px;
}

.error404__btn {
  display: inline-block;
  padding: 12px 28px;
  background: #333;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
}

.error404__btn:hover {
  background: #555;
}