/* ==================== */
/* メインビジュアル */
/* ==================== */
.hero {
  width: 100%;
  position: relative;
  z-index: 1;
  aspect-ratio: unset;
  aspect-ratio: 1920 / 930;
  max-height: 930px;
  min-height: 600px;
}

@media screen and (max-width: 767px) {
  .hero {
    aspect-ratio: 6 / 9;
    min-height: 460px;
  }
}

.hero .hero_container{
  width: 100%;
  height: 100%;
  position: relative;
}

.hero_kv {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero_kv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media screen and (max-width: 767px) {
  .hero_kv img {
   height: 55%; /* 画像ズームアウト */
  }
}

.hero_inner {
  position: absolute;
  top: 20%;
  left: 15%;
  width: 85%;
  z-index: 10;
  display: flex;
  flex-direction: column;
}

.hero_main_title {
  font-family: var(--font-Mincho);
  font-size: 6.0rem;
  line-height: 1.2;
  letter-spacing: 0em;
  margin-bottom: 16px;
  font-weight: 400;
  transition: all 0.8s ease;
}

.hero_main_title .small {
  font-size: 5.0rem;
  font-weight: 320;
}

.hero_sub_title01 {
  font-size: 1.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.hero_sub_title01::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background-color: var(--cl-main-01);
}

.hero_sub_title02 {
  font-size: 2.6rem;
  font-weight: 500;
  margin-bottom: 36px;
  line-height: 1.2;
}

/* hexa */
.banner_list {
  display: flex;
  position: relative;
}

.banner_item {
  position: absolute;
  width: 170px;
  height: 150px;
  background-image: url("../images/top/img_hero_hexa.svg");
  background-size: contain;
  background-repeat: no-repeat;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; 
  text-align: center;
  font-size: 2.2rem;
  line-height: 1.2;
  letter-spacing: 0;
  font-weight: 400;
}

.banner_item:nth-child(1) {
  left: 0px;
}

.banner_item:nth-child(2) {
  left: 180px;
}

.banner_item:nth-child(3) {
  left: 360px;
}

.banner_item .small {
  font-size: 1.6rem;
}

.bg_sparkle {
  position: absolute;
  background-image: url("../images/top/img_hero_sparkle.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  bottom: 0;
  left: 0%;
  width: 50%;
  height: 80%;
}

@media screen and (max-width: 1400px) {
  .hero_main_title { font-size: 4.0rem; }
  .hero_main_title .small { font-size: 3.4rem;}
  .hero_sub_title01 { font-size: 1.6rem; }
  .hero_sub_title02 { font-size: 2.4rem; }
  .contact_btn a .txt { font-size: 1.6rem;}
  .banner_item { font-size: 1.6rem; }
  .banner_item .small { font-size: 1.2rem; }

  .banner_item {
    width: 150px;
    height: 132px;
  }

  .banner_item:nth-child(2) {
    left: 160px;
  }

  .banner_item:nth-child(3) {
    left: 320px;
  }

}

@media screen and (max-width: 767px) {
  .hero_sub_title01 { font-size: 1.2rem; }
  .hero_main_title { font-size: 3.5rem; }
  .hero_main_title .small { font-size: 3rem;}
  .hero_sub_title02 { font-size: 1.8rem; }
  .contact_btn a .txt { font-size: 1.4rem;}
  .banner_item { font-size: clamp(1.2rem, 0.914rem + 0.895vw, 1.6rem);}
  .banner_item .small { font-size: 0.7em; }

  .hero_kv img {
    object-position: 78% center; 
  }

  .hero_inner {
    top: 35%;
    left: 8%;
    width: 92%;
  }

  .banner_list{
    width: 100%;
    display: flex;
    gap: 2%;
    justify-content: start;
  }

  .banner_item{
    aspect-ratio: 170 / 150;
    width: 30%;
    max-width: 130px;
    height: auto;
    position: relative;
    left: auto!important;;
  }

  .bg_sparkle {
    width: 85%;
    height: 80%;
  }

}

/* ==================== */
/* 個別相談 */
/* ==================== */

.cta{
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 20;
  transition: all 0.4s ease;
}

.cta_inner {
  width: 100%;
  display: flex;
  margin: 0 auto;
  overflow: hidden;
  color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
@media (max-width: 1024px) {
  .cta_inner {
    flex-direction: column;
    height: auto;
  }
}

.cta_desc,
.cta_entry{
  padding: 42px;
}
@media (max-width: 767px) {
  .cta_desc,
  .cta_entry{
    padding: 24px;
  }
}

.cta_desc {
  width: 57%;
  background-color: var(--cl-accent-01);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media (min-width: 1025px) {
  .cta_desc {
    padding-left: 4%;
  }
}
@media (max-width: 1200px) {
  .cta_desc {
    width: 100%;
  }
}

.cta_desc::before{
  content: "";
  position: absolute;
  background-image: url("../images/top/bg_overlay_p.svg");
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
  bottom: 0;
  left: 0;
  width: 322px;;
  max-width: 322px;
  aspect-ratio: 1 / 1;
  z-index: 2;
}

.cta_desc h2 {
  font-size: clamp(2.4rem, -0.88rem + 3.2vw, 3.6rem);
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 600;
}

@media (max-width:1024px) {

  .cta_desc h2 {
    font-size: clamp(2rem, 0.117rem + 3.759vw, 3rem);
  }

}

@media (max-width: 500px) {
  .cta_desc h2 .__w500{
    display: none;
  }
}

.cta_desc h2 .small {
  font-size: 0.7em;
  font-weight: 400;
}

.cta_desc h3 {
  font-size: clamp(2rem, 1.012rem + 0.964vw, 2.4rem);
  font-weight: 600;
  letter-spacing: 0.1rem;
}
@media (max-width: 1024px) {
  .cta_desc h3 {
    font-size: clamp(1.6rem, 0.4rem + 1.563vw, 2rem);
  }
}

.cta_desc p {
  line-height: 1.6;
  color: var(--cl-text-gr);
}

.cta_entry {
  width: 43%;
  background-color: var(--cl-main-01);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1200px) {
  .cta_entry {
    width: 100%;
  }
}

.cta_label {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .cta_label {
    font-size: 1.4rem;
  }
}

.cta_btn {
  display: flex;
  width: 100%;
  max-width: 780px;
  height: 74px;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--cl-main-01);
  text-decoration: none;
  position: relative;
  margin: 0 auto;
}
.cta_btn:hover {
  background: var(--cl-accent-01);
  color: #fff;
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
  opacity: 1;
}
@media (min-width: 1025px) {
  .cta_btn {
    width: 95%;
    height: 80px;
  }
}

.cta_btn img {
  display: inline-block;
  width: 30px;
  height: auto;
  margin-right: 14px;
  filter: brightness(0) invert(84%) sepia(38%) saturate(217%) hue-rotate(139deg) brightness(85%) contrast(88%);
  transition: all 0.3s ease;
}
.cta_btn:hover img {
  filter: brightness(0) invert(100%) sepia(0%) saturate(7500%) hue-rotate(194deg) brightness(101%) contrast(102%);
}
@media (max-width: 500px) {
  .cta_btn img {
    width: 25px;
    margin-right: 8px;
    transform: translateX(-4px);
  }
}


.cta_btn span {
  font-size: 1.8rem;
  font-weight: 600;
}
@media (min-width: 1025px) {
  .cta_btn span { font-size: 2.0rem; }
}
@media (max-width: 500px) {
  .cta_btn span { 
    font-size: 1.6rem;
    transform: translateX(-4px);
  }
}

.cta_btn::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--cl-main-01);
  border-right: 2px solid var(--cl-main-01);
  position: absolute;
  right: 27px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.cta_btn:hover:after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
@media (max-width: 500px) {
  .cta_btn::after {
    right: 5%;
  }
}

.cta_remarks{
  color: var(--cl-text-gr);
  font-size: 1.4rem;
  margin-top: 8px;
}
@media (max-width: 767px) {
  .cta_remarks{font-size: 1.2rem;}
}

.cta_remarks li {
  position: relative;
  padding-left: 1.4em;
}

.cta_remarks li::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}


.cta.hero_bottom{
  transform: translateY(-40px);
}
@media screen and (max-width: 1400px) {
  .cta.hero_bottom{transform: translateY(-50px);}
}
@media screen and (min-width: 600px) and (max-width: 767px) {
  .cta.hero_bottom{
    transform: translateY(clamp(-26rem, -10rem + -5vw, -20rem));
    margin-bottom: -20rem;
  }
}

@media screen and (min-width: 500px) and (max-width: 599px) {
  .cta.hero_bottom{
    transform: translateY(clamp(-24rem, -10rem + -5vw, -12rem));
    margin-bottom: -12rem;
  }
}

@media screen and (max-width: 499px) {
  .cta.hero_bottom{
    transform: translateY(clamp(-6rem, 20rem + -50vw, 4rem));
  }
}

.cta.advantage_bottom{
  transform: translateY(-40px);
}

.advantage_bottom h2 {
  font-size: clamp(2.2rem, 0.224rem + 1.928vw, 3rem);
}

@media (max-width:1024px) {
  .advantage_bottom h2 {
    font-size: clamp(2rem, 1.427rem + 1.79vw, 2.8rem);
  }
}

.cta.plan_bottom{
  transform: translateY(-120px);
}
@media screen and (max-width: 767px) {
  .cta.plan_bottom{
    transform: translateY(-80px);
  }
}

.plan_bottom .cta_inner{
  color: var(--cl-main-01);
  border: 1px solid var(--cl-accent-01);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.plan_bottom .cta_desc{
  background-color: #F8FAFC;
}
.plan_bottom .cta_desc::before{
  background-image: url(../images/top/bg_overlay_p02.png);
}
.plan_bottom .cta_desc h2{
  color: var(--cl-accent-01);
}
.plan_bottom .cta_entry{
  background-color: #FFF;
}
.cta.plan_bottom .cta_btn{
  background-color: var(--cl-main-01);
  color: #FFF;
}
.cta.plan_bottom .cta_btn::after{
  border-color: #fff;
}
.cta.plan_bottom .cta_btn:hover{
  background-color: #8A99AB;
}
.cta.faq_bottom{
  transform: translateY(80px);
}

/* ==================== */
/* issues */
/* ==================== */

.issues_inner {
  display: flex;
  width: 100%;
  padding: 0 20px;
  justify-content: center;
  gap: 40px;
  margin: 0 auto;
}

.issues_item {
  flex: 1;
  max-width: 350px
}

.issues_item_head {
  display: flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--cl-accent-03);
  padding-bottom: 4px;
  margin-bottom: 30px;
}

.issues_item_head .num {
  font-size: 3.6rem;
  font-weight: 500;
  color: var(--cl-accent-03);
  font-family: "Yu Mincho", "YuMincho","MS Mincho","Noto Serif JP", serif;
  line-height: 1;
}

.issues_item_head .ttl {
  font-size: 2.0rem;
  color: var(--cl-accent-01);
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .issues_inner {
    flex-direction: column;
    gap: 40px;
  }
  .issues_item {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
}

/* ==================== */
/* causes */
/* ==================== */

.cause_flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

.cause_inner {
  max-width: 600px;
  flex-shrink: 0;
}

.cause_lead {
  margin: 46px 0 50px;
}

.cause_list li {
  display: flex;
  margin-bottom: 40px;
  gap: 14px;
}

.cause_list_heading{
  display: flex;
  flex-direction: column;
}

.cause_list span {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--cl-main-01);
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.cause_list .ttl {
  font-size: 1.25em;
  font-weight: 600;
  color: var(--cl-accent-01);
  margin-bottom: 8px;
  line-height: 1.1;
}

.cause_list .txt {
  color: var(--cl-text-bk);
}

.cause_image {
  width: 45%;
  max-width: 500px;
  margin: 0 auto;
}
.cause_image.mobile-only{
  display: none; 
}

.cause_image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.cause_message {
  width: fit-content;
  border-bottom: 2px solid var(--cl-accent-02);
  padding-bottom: 4px;
  margin: 0 auto;
}

.cause_message_inner {
  display: flex;
  gap: 30px;
  align-items: center;
}

.cause_message .icon {
  width: 42px;
}

.cause_message p {
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--cl-accent-01);
}

@media screen and (max-width: 1024px) {
  .cause_flex {
    flex-direction: column;
    gap: 40px;
  }
  .cause_inner{
    max-width: 90%;
    margin: 0 auto;
  }
  .cause_image {
    width: 70%;
  }
  .cause_image.mobile-only{
   display: block; 
  }
  .cause_message_inner {
    gap: 14px;
  }
  .cause_message p {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .cause_message p {
    font-size: 2rem;
  }
}

@media (max-width: 500px) {
  .cause_message p {
    font-size: 1.8rem;
  }
}


/* ==================== */
/* solution */
/* ==================== */
.solution_inner{
  border: 1px solid #CCCCCC;
  width: 96%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 60px 8% 80px;
}

.solution_inner > .c_sectitle_center{
  margin-bottom: 20px;
}

.solution_main_visual {
  margin: 0 auto;
  max-width: 840px;
}

.solution_main_visual img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.solution_lead {
  max-width: 750px;
  padding: 24px 0 30px 0; 
  margin: 0 auto;
}

.solution_list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  list-style: none;
  margin: 0 auto;
}

.solution_item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.solution_item .icon {
  display: block;
  width: 34px;
  margin-bottom: 4px;
}

.solution_item .ttl {
  font-size: 1.25em;
  color: var(--cl-main-01);
  font-weight: 600;
}

.solution_item span {
  display: block;
  color: var(--cl-main-01);
  font-weight: 600;
  font-size: 0.875em;
}

@media screen and (max-width: 1024px) {
  .solution_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 1%;
  }
}

@media (max-width: 767px) {
  .solution_inner{
    width: 96%;
    padding: 40px 4% 60px;
  }
  .solution_main_visual {
    max-width: 90%;
  }
}

@media screen and (max-width: 500px) {
  .solution_item .ttl  {
    font-size: clamp(1.2rem, 0.975rem + 1.25vw, 1.6rem);
  }
}

/* ==================== */
/* advantage */
/* ==================== */
.advantage {
  background-image: url("../images/top/bg_advantage.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.advantage_list {
  border: 1px solid var(--cl-accent-03);
  background-color: #fff;
  display: flex;
}

.advantage_item {
  width: calc(33.333% - 1px);
  padding: 60px 32px;
}

.advantage_item:not(:first-child) {
  border-left: 1px solid var(--cl-accent-03);
}

.advantage_item_head {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  color:var(--cl-main-01);
  font-weight: bold;
}

.advantage_item_num {
  font-size: 0.875em;
  margin-right: 14px;
}

.advantage_item_title {
  font-size: 1.125em;
}

.advantage_item_lead {
  font-size: 1.25em;
  color: var(--cl-accent-01);
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 1.4;
}


@media screen and (max-width: 1024px) {

  

  .advantage_list {
    flex-direction: column;
    width: 85%;
    margin: 0 auto;
  }

  .advantage_item {
    width: 100%;
    padding: 30px 24px;
  }

  .advantage_item:not(:first-child) {
    border-left: none;
    border-top: 1px solid var(--cl-accent-03);
  }

  .advantage_item_head {
    margin-bottom: 0px;
  }

  .advantage_item_lead {
    margin-bottom: 18px;
  }
}

@media screen and (max-width: 767px) {
  .advantage_item_title {
    font-size: 1.4rem;
  }

  .advantage_item_lead {
    font-size: clamp(1.6rem, 1.314rem + 0.895vw, 2rem);
  }
}

@media screen and (min-width: 501px) and (max-width: 1024px) {
  .advantage_item_lead br.__w501-1024{
    display: none;
  }
}

/* ==================== */
/* OUR SERVICE */
/* ==================== */

.service_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 30px 3%;
}

.service_item {
  background-color: var(--cl-main-02);
  padding: 60px 10%;
  height: 100%;
}

.service_item_head {
  display: flex;
  align-items: center;
  margin-bottom: 36px;
}

.service_item_head .num {
  font-size: 0.875em;
  background-color: var(--cl-main-01);
  color: #fff;
  padding: 2px 10px;
  margin-right: 8px;
  letter-spacing: 0.1em;
  line-height: 1;
}

.service_item_head .ttl {
  font-size: 1.25em;
  font-weight: 700;
  color: var(--cl-accent-01);
}

.service_sub_block:not(:last-child) {
  margin-bottom: 24px;
}

.service_sub_block .sub_ttl {
  position: relative;
  font-size: 1.125em;
  font-weight: 700;
  color: var(--cl-main-01);
  padding-left: 1em;
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}

.service_sub_block .sub_ttl::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 1.2em;
  background-color: var(--cl-main-01);
}

.service_item_body .text {
  margin-bottom: 8px;
}

.list_dot li {
  position: relative;
  color: var(--cl-text-gr);
  font-weight: 600;
  padding-left: 1em;
  margin-bottom: 4px;
}

.list_dot li::before {
  content: "・";
  position: absolute;
  left: 0;
}


@media screen and (max-width: 767px) {
  .service_list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .service_item {
    padding: 40px 7%;
  }

  .service_item_head{
    margin-bottom: 24px;
    flex-direction: column;
    align-items: start;
    gap: 8px;
  }
    
}


/* ==================== */
/* SUPPORT PROCESS */
/* ==================== */

.process_head_lead {
  font-size: 1.125em;
  color: var(--cl-text-gr);
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.process_head_text {
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 40px;
}

.process_list {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.process_list::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 11%;
  right: 11%;
  height: 1px;
  background-color: #D7DCE3;
  z-index: 1;
}

.process_item {
  width: 22%;
  text-align: center;
  position: relative;
}

.process_item_num {
  width: 48px;
  height: 48px;
  background-color: #fff;
  border: 1px solid #D7DCE3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
}

.process_item_num span {
  font-family: var(--font-Mincho);
  font-weight: 650;
  color: var(--cl-main-01);
  letter-spacing: 0.1em;
}

.process_item_ttl {
  font-size: 1.125em;
  font-weight: 600;
  color: var(--cl-accent-01);
  margin-bottom: 6px;
  letter-spacing: 0.1em;
}

.process_item_txt {
  max-width: 260px;
  margin: 0 auto 30px;
  text-align: left;
}

@media screen and (max-width: 767px) {

  .process_list {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .process_list::before {
    display: none;
  }

  .process_item {
    width: 100%;
    position: relative;
  }

  .process_item::before {
    content: "";
    position: absolute;
    top: 25px;
    left: 11%;
    right: 11%;
    height: 1px;
    background-color: #D7DCE3;
    z-index: 1;
  }
  
  .process_item_txt {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
  }
}




/* ==================== */
/* PLAN */
/* ==================== */
.plan {
  color: #fff;
  padding-bottom: 120px;
}

.plan .c_sectitle_center{
  margin-bottom: 14px;
}

.plan_head_lead {
  font-size: 1.25em;
  font-weight: 600;
  margin-top: 30px;
  text-align: center;
}

.plan_head_text {
  line-height: 1.8;
  max-width: 900px;
  margin: 20px auto 48px;
}

.plan_main_box {
  display: flex;
  max-width: 1024px;
  margin: 0 auto;
  border: 1px solid #fff;
}

.plan_box_item {
  flex: 1;
  text-align: center;
  background-color: var(--cl-accent-01);
}

.plan_box_item:first-child {
  border-right: 1px solid #fff;
}

.plan_box_head {
  padding: 20px 0;
  border-bottom: 1px solid #fff;
  font-size: 1.25em;
  letter-spacing: 0.01em;
}

.plan_box_body {
  padding: 20px 0px 30px;
}

.plan_box_body .price {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.plan_box_body .price span {
  font-size: 1.4rem;
}

.plan_box_body .desc {
  font-size: 0.875em;
  text-align: left;
  margin: 12px auto 0px;
  width: 83%;
}

.plan_appeal {
  margin-top: 60px;
}

.plan_appeal_ttl {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 50px;
}

.plan_appeal_list {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 0 1%;
}

.plan_appeal_item {
  flex: 1;
}

.plan_appeal_item h4 {
  margin-bottom: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.6rem;
}

.plan_appeal_item .num {
  width: 28px;
  height: 28px;
  background-color: #fff;
  color: var(--cl-main-01); 
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  flex-shrink: 0;
}

.plan_appeal_item p {
  font-size: 1.4rem;
  max-width: 350px;
}

@media screen and (max-width: 767px) {
  .plan {
    padding-bottom: 80px;
  }
  .plan_head_lead{
    text-align: left;
  }
  .plan_main_box {
    flex-direction: column;
    border: none;
  }
  .plan_box_item {
    border-right: none;
    border: 1px solid #fff;
  }
  .plan_box_item:first-child{
    margin-bottom: 20px;
  }

  .plan_appeal_list {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
}

/* ==================== */
/* OUR STANCE */
/* ==================== */

.stance .c_sectitle_main{
  margin-bottom: 28px;
}

.stance_flex {
  display: flex;
  align-items: center;
  gap: 3.333%;
}

.stance_image {
  flex: 1;
  max-width: 500px;
}
.stance_image.mobile-only{
  display: none;
}
  
.stance_image img {
  width: 100%;
  object-fit: contain;
}

.stance_content {
  flex: 1;
}

.stance_lead {
  margin-bottom: 36px;
}

.stance_block {
  margin-bottom: 40px;
}

.stance_block:last-child {
  margin-bottom: 0;
}

.stance_block_ttl {
  font-size: 1.125em;
  font-weight: 700;
  color: var(--cl-main-01);
  margin-bottom: 14px;
  position: relative;
}

@media screen and (max-width: 1024px) {
  .stance_flex {
    gap: 0px;
  }

  .stance_image {
    width: 70%;
    max-width: 500px;
    margin: 0 auto;
    margin-bottom: 40px;
  }
  .stance_image.mobile-only{
    display: block;
  }
  
  .stance_image img {
    width: 100%;
    object-fit: contain;
  }
}

/* ==================== */
/* profile */
/* ==================== */

.profile_flex_container {
  display: flex;
  gap: 3.333%;
  align-items: flex-start;
}

.profile_text_side {
  width: 50%;
}

.profile_catch {
  font-size: clamp(3rem, -0.6rem + 3vw, 3.6rem);
  line-height: 1.2;
  font-weight: 600;
  color: var(--cl-accent-01);
  margin-bottom: 30px;
}

.profile_text_side .text {
  margin-bottom: 60px;
  max-width: 560px;
}

.record_item {
  margin-bottom: 40px;
}

.record_ttl {
  font-size: 1.125em;
  color: var(--cl-main-01);
  margin-bottom: 4px;
  font-weight: 600;
}

.profile_card_side {
  width: 50%;
  min-width: 520px;
  max-width: 600px;
}

.profile_card {
  background: #fff;
  border: 1px solid #8EA2BB;
  padding: 34px 3.6% 30px 7%;
}

.card_top {
  display: flex;
  gap: 5%;
  margin-bottom: 24px;
}

.card_img {
  max-width: 190px;
  flex-shrink: 0;
}

.card_img img {
  width: 100%;
}

.card_info .name_main {
  font-size: 1.8rem;
  color: var(--cl-main-01);
  margin-bottom: 13px;
  font-weight: 600;
  line-height: 1;
}

.card_info .name_sub {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cl-main-01);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  line-height: 1;
}

.card_desc {
  font-size: 1.4rem;
}

.card_bottom{
  width: 98%;
}

.profile_dl {
  display: flex;
  font-size: 1.4rem;
}
.profile_dl:not(:last-child) {
  border-bottom: 1px solid #8EA2BB;
  padding-bottom: 6px;
  margin-bottom: 14px;
}

.profile_dl dt {
  width: 30%;
  max-width: 100px;
  font-weight: 700;
  color: var(--cl-main-01);
  flex-shrink: 0;
}

.profile_dl dd li {
  position: relative;
  padding-left: 1.4rem;
}

.profile_dl dd li::before {
  content: "・";
  position: absolute;
  left: 0;
}

@media screen and (max-width: 1024px) {

  .profile_flex_container {
    flex-direction: column;
    width: 96%;
    margin: 0 auto;
    gap: 40px;
  }

  .profile_catch {
    font-size: clamp(2.4rem, 1.333rem + 1.389vw, 3rem);
  }

  .profile_text_side,
  .profile_card_side {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .profile_text_side{
    text-align: left;
  }

  .profile_text_side .text {
    max-width: 750px;
    text-align-last: left;
  }

  .profile_card_side{
    min-width: 0;
  }
}

@media screen and (max-width: 1024px) {
  
}

@media screen and (max-width: 500px) {
  .card_top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  .card_desc{
    text-align: left;
    margin-top: 20px;
  }

  .profile_dl dt{
    max-width: 70px;
  }
}


/* ==================== */
/* faq */
/* ==================== */
.faq>.c_container{
  padding-bottom: 0 !important;
}

.faq_content {
  max-width: 850px;
  margin: 60px auto 0;
}

.faq_item {
  border: 0.5px solid var(--cl-accent-03);
  margin-bottom: 20px;
  background-color: var(--cl-main-02);
  transition: all 0.2s;
}

/* faq Q */
.faq_q {
  padding: 20px 4% 20px 3%;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  background-color: var(--cl-main-02);
  transition: all 0.2s;
}

.faq_item.is-open .faq_q {
  border-bottom: 0.5px solid var(--cl-accent-03);
}

.q_prefix{
  color: var(--cl-accent-01);
  margin-right: 4px;
  display: inline-block;
  transform: translateY(-0.1rem);
}

.q_prefix_Q {
  font-size: 1.2em;
  font-weight: 600;
  font-family: "Playfair Display", "YuMincho", "Hiragino Mincho ProN", serif;
}

.q_text {
  color: var(--cl-accent-01);
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  flex: 1;
  padding-right: 30px;
}

.q_icon {
  width: 16px;
  height: 8px;
  position: relative;
}

.q_icon::before,
.q_icon::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 2px;
  border-radius: 1px;
  background-color: var(--cl-accent-03);
  transition: all 0.3s;
}

.q_icon::before {
  left: 0;
  transform: translateY(-50%) rotate(45deg);
}

.q_icon::after {
  right: 0;
  transform: translateY(-50%) rotate(-45deg);
}

.faq_item.is-open .q_icon::before {
  transform: translateY(-50%) rotate(-45deg);
}
.faq_item.is-open .q_icon::after {
  transform: translateY(-50%) rotate(45deg);
}

/* faq A */
.faq_a {
  display: none;
  background-color: var(--cl-main-02);
}

.a_inner {
  padding: 20px 3%;
  line-height: 1.8;
  color: var(--cl-text-bk);
}

@media screen and (max-width: 767px) {

  .q_prefix{
    position: absolute;
    top: 16px;
    transform: translateY(0px);
  }
  .q_text {
    padding-left: 20px;
    font-size: 1.4rem;
  }
  .a_inner {
    padding: 20px;
    font-size: 1.4rem;
  }
}

/* ==================== */
/* corporate
/* ==================== */
.corporate{
  padding-top: 60px;
}

.corporate_flex {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.corporate_brand {
  flex-shrink: 0;
}

.brand_logo_wrap {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 25px;
}

.brand_logo {
  width: 70px;
  flex-shrink: 0;
}

.brand_logo img {
  width: 100%;
  display: block;
}

.brand_logo_name {
  font-weight: bold;
  line-height: 1.1;
  color: var(--cl-main-01); 
  letter-spacing: 0.05em;
}

.brand_text {
  font-size: 1.4rem;
  color: var(--cl-text-gr);
}

.corporate_info_side {
  width: 60%;
  max-width: 720px;
}

.corporate_card {
  background-color: #fff;
  border: 0.5px solid var(--cl-accent-03);
  padding: 34px 8%;
}

.corporate_card .c_sectitle_side {
  margin-bottom: 30px;
}

.corporate_list {
  display: flex;
  flex-direction: column;
}

.corporate_row {
  display: flex;
  padding: 20px 0;
  border-bottom: 0.5px solid var(--cl-accent-03);
  font-size: 1.5rem;
}

.corporate_row:last-child {
  border-bottom: none;
}

.corporate_row dt {
  width: 90px;
  font-weight: 700;
  color: var(--cl-main-01);
  flex-shrink: 0;
}

.corporate_row dd {
  color: #555;
  line-height: 1.6;
}

@media screen and (max-width: 1024px) {
  .corporate_flex {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .corporate_info_side {
    width: 100%;
  }
}

@media screen and (max-width: 500px) {
 
  .corporate_brand,
  .corporate_row dt {
    width: 100%;
  }

  .brand_logo {
    width: 50px;
  }

  .corporate_row {
    flex-direction: column;
    gap: 2px;
  }

  .brand_text br.__w500{
    display: none;
  }
}