/* ----------------------------------------
  Setting
-------------------------------------------*/
*, *::before, *::after{
  box-sizing: border-box;
}
body,
h1,h2,h3,h4,h5,h6,
p,ul,ol,dl,dd,
figure{
  margin: 0;
}
ul,ol{
  list-style: none;
  padding: 0;
}
img{
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
table{
  border-collapse: collapse;
}button,
input,
select,
textarea{
  font: inherit;
  color: inherit;
}
button{
  border: none;
  background: none;
  cursor: pointer;
}
address{
  font-style: normal;
}
a{
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
a:visited{
  color: inherit;
}
a,
a img{
  transition:
    color .15s ease-out,
    background-color .15s ease-out,
    opacity .15s ease-out,
    transform .15s ease-out;
}
a:hover img{
  opacity: var(--hover);
}
svg{
  display:block;
}
/* YouTube埋め込み用 */
iframe{
  max-width: 100%;
}
/* 上付き文字 */
sup{
  vertical-align: super;
  font-size: .75em;
  line-height: 0;
}

.pc{ display: block; }
.sp{ display: none; }

@media (max-width: 650px){
  .pc{ display: none; }
  .sp{ display: block; }
}

  
/* ----------------------------------------
  Common
-------------------------------------------*/

:root{
  --hover: 0.7;
  --page-wide: min(90%,1200px);
  --page: min(86%,1100px);
  --page-narrow: min(90%,1000px);
  --page-sp: 96%;
  --sec-margin: min(12%,100px);
  
  --black: #000;
  --black-rgb: 0,0,0;
  --green: #00a023;
  --green-rgb: 0,160,35;
  --right-green: #eef9d0;
  --orange: #f68015;
  --orange-rgb: 246,128,21;
  --right-orange: #fbd894;
  --beige: #fdecd1;
  --beige-rgb: 253,236,209;
  --tyukai: #5a8dda;
  --tyukai-bg: #daebff;
  --kaitori: #f3787b;
  --kaitori-bg: #ffd8dd;
}

html,body{
  height: 100% !important;
}
html{
  font-size: clamp(13px,2.0vw,17px);
  font-feature-settings: 'palt';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  overflow-y: scroll;
}

body{
  position: relative;
  color: var(--black);
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
  text-align: center;
  word-wrap: break-word;
  font-size: var(--normal-font-size);
  line-height: 2;
  letter-spacing: .03em;
}
#wrapper{
  position: relative;
  overflow: hidden;
  width: 100%;
}
#main{
  position: relative;
  width: 100%;
  margin-top: calc(120px + 4rem);/* ヘッダー + white分 */
}

@media (max-width: 650px){
  
  body{
    line-height: 1.75;
  }
  #main{
    margin-top: calc(60px + 4rem);/* ヘッダー + white分 */
  }
  .h2_tit{
    row-gap: .5rem;
    padding-bottom: 2.5rem;
  }
}

/* ----------------------------------------
  Contents
-------------------------------------------*/

/* contents / cmn
-------------------------------------------*/

.fade_up{
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade_up.is_show{
  opacity: 1;
  transform: translateY(0);
}

/* cta btn ---------------*/

.cta_btn{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  margin-top: 20px;
  padding: 15px 70px 15px 25px;
  border-radius: 999px;
  color: #fff;
  font-size: clamp(13px,2.0vw,18px);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  transition:
    background-color .3s ease,
    transform .3s ease;
}
.cta_btn > span{
  color: #fff;
}
.cta_btn i{
  position: absolute;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  font-style: normal;
  font-size: 0;
}
.cta_btn i::after{
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--green);
  border-right: 2px solid var(--green);
  transform: rotate(45deg);
  margin-left: -5px;
}
/* 緑 */
.cta_btn--green{
  background: var(--green);
}
.cta_btn--green:hover{
  background: #007d1c;
}
/* オレンジ */
.cta_btn--orange{
  font-size: 1rem;
  background: var(--orange);
}
.cta_btn--orange i::after{
  border-color: var(--orange);
}
.cta_btn--orange:hover{
  background: #dc6808;
}

/* CTA BOX */

.cta_box{
  width: 86%;
  max-width: 1100px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}
.cta_box_main{
  padding: 45px 30px 50px;
  background: var(--right-orange);
  text-align: center;
}
.cta_box_text{
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
  padding: 0 90px;
  font-weight: 700;
  letter-spacing: .125em;
}
.cta_box_text::before,
.cta_box_text::after{
  content: "";
  position: absolute;
  top: 50%;
  width: 2px;
  height: 70px;
  background: var(--black);
}
.cta_box_text::before{
  left: 30px;
  transform: translateY(-50%) rotate(-35deg);
}
.cta_box_text::after{
  right: 30px;
  transform: translateY(-50%) rotate(35deg);
}
.cta_box_text p{
  font-weight: 700;
  line-height: 1.8;
}
.cta_box_main .cta_btn{
  width: 360px;
  margin: 0 auto;
}
.cta_box_bottom{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
  padding: 30px;
  background: #fff;
}
.cta_box_bottom .cta_btn{
  width: 400px;
  max-width: 100%;
  margin-top: 0;
  font-size: clamp(14px,2.154vw,17px);
}

/* 電話 */
.cta_tel{
  text-align: center;
}
.cta_tel p{
  display: inline-block;
  margin-right: 10px;
  padding: 2px 10px;
  background: #eee;
  font-size: 13px;
  font-weight: 700;
}
.cta_tel a{
  font-size: clamp(36px,5.538vw,42px);
  font-weight: 800;
}
.cta_tel small{
  display: block;
  padding-top: 8px;
  border-top: 1px solid #222;
  font-size: clamp(13px,2.0vw,14px);
}

@media (max-width: 650px){

  .cta_btn{
    min-height: 65px;
    padding: 10px 55px 10px 15px;
    font-size: 14px;
    line-height: 1.5;
  }
  .cta_btn i{
    right: 15px;
    width: 30px;
    height: 30px;
  }
  .cta_btn i::after{
    margin-left: -4px;
  }
  
  /* CTA BOX */
  
  .cta_box{
    width: 90%;
    box-shadow: 0 6px 20px rgba(0,0,0,.05);
  }
  .cta_box_main{
    padding: 2rem 1.5rem;
  }
  .cta_box_text{
    padding: 0 2rem;
    margin-bottom: 2rem;
  }
  .cta_box_text br{
    display: none;
  }
  .cta_box_text::before,
  .cta_box_text::after{
    content: "";
    position: absolute;
    top: 60%;
    width: 1px;
    height: 50px;
    background: var(--black);
  }
  .cta_box_text::before{
    left: 10px;
  }
  .cta_box_text::after{
    right: 10px;
  }
  .cta_box_main .cta_btn,
  .cta_box_bottom .cta_btn{
    width: 100%;
    max-width: 400px;
  }
  /* 下段 */
  .cta_box_bottom{
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
  }
  /* 電話 */
  .cta_tel{
    width: 100%;
  }
  .cta_tel p{
    margin-right: 0;
  }
  .cta_tel a{
    display: block;
    white-space: nowrap;
  }
  .cta_tel small{
    width: 100%;
    max-width: 330px;
    margin: 0 auto;
  }
}

/* section title ---------------*/

.section_title{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: 2rem;
}
.section_title_inner{
  position: relative;
  display: inline-block;
}
.section_title > div{
  text-align: center;
}
.section_title_deco{
  position: absolute;
  width: 70px;
  height: auto;
}
.section_title_deco--left{
  top: -25px;
  left: -60px;
}
.section_title_deco--right{
  right: -60px;
  bottom: -25px;
}
.section_title p{
  margin-bottom: 4px;
  font-size: clamp(15px,2.308vw,21px);
}
.section_title h2{
  font-weight: 800;
  font-size: clamp(21px,3.231vw,33px);
}

@media (max-width: 650px){

  .section_title_deco{
    width: 45px;
  }
  .section_title_deco--left{
    left: -50px;
    top: -20px;
  }
  .section_title_deco--right{
    right: -50px;
    bottom: -20px;
  }
}

/* mv
----------------------------------------- */

.mv{
  width: 100%;
  padding: 0;
}
.mv_inner{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  width: var(--page-wide);
  margin: 0 auto;
}
.mv_content{
  flex: 1;
  min-width: 0;
  text-align: left;
}
.mv_title{
  margin-left: -5%;
  max-width: 580px;
}
.mv_text{
  margin-top: 35px;
  line-height: 2.2;
  text-align: left;
}
.mv_illust{
  margin-top: 45px;
  width: 90%;
}
.mv_illust img{
  display: block;
  width: 100%;
  height: auto;
}

/* CTA BOX */

.mv_info{
  position: relative;
  flex: 0 0 40%;
  padding: 40px 50px;
  background: var(--beige);
  text-align: center;
}
.mv_info::before{
  content: "";
  position: absolute;
  top: -16px;
  left: 50%;
  width: 130px;
  height: 30px;
  background: rgba( var(--green-rgb), .18);
  transform: translateX(-50%) rotate(-2deg);
  z-index: 1;
}
.mv_points{
  margin: 0 0 30px;
  text-align: left;
}
.mv_points li{
  position: relative;
  padding-left: 30px;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.6;
}
.mv_points li span{
  text-decoration: underline;
}
.mv_points li::before{
  content: "";
  position: absolute;
  top: .25em;
  left: 0;
  width: 22px;
  height: 22px;
  border: 2px solid #999;
  background: #fff;
}
.mv_points li::after{
  content: "✓";
  position: absolute;
  top: -.1em;
  left: 4px;
  color: var(--green);
  font-size: 22px;
  font-weight: 700;
}

.mv_tel{
  margin-top: 1.5rem;
}
.mv_tel_label{
  display: inline-block;
  padding: 3px 12px;
  background: #fff;
  font-size: clamp(12px,1.846vw,14px);
  font-weight: 700;
}
.mv_tel_number{
  display: block;
  line-height: 1.5;
  font-size: clamp(28px,3vw,42px);
  font-weight: 800;
  letter-spacing: .03em;
}
.mv_hours{
  padding-top: 8px;
  border-top: 1px solid #222;
  font-size: clamp(12px,1.846vw,14px);
}

@media (max-width: 650px){
  
  .mv_inner{
    flex-direction: column;
  }
  .mv_title{
    margin-left: -3%;
    max-width: 100%;
  }
  .mv_illust{
    margin: 3rem auto 0;
    width: 100%;
  }
  .mv_info{
    width: 100%;
    padding: 2.5rem 2rem;
    text-align: center;
  }
  .mv_info_btn{
    min-height: 70px;
    margin-top: 1rem;
  }
}

/* parallax photo
----------------------------------------- */

.parallax_photo{
  width: 100%;
  height: clamp(400px, 45vw, 650px);
  overflow: hidden;
  margin-top: 5rem;
}
.parallax_photo_inner{
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.parallax_photo img{
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 120%;
  max-width: none;
  object-fit: cover;
  will-change: transform;
  object-position: 70% center;
}

@media (max-width: 650px){
  
  .parallax_photo{
    height: 60vh;
    min-height: 400px;
  }
}


/* worry
-------------------------------------------*/

#reason{
  scroll-margin-top: 120px;
}
.reason_area{
  background: var(--right-green);
}
.worry{
  background: var(--right-green);
  padding: 10rem 0;
}
.worry_inner{
  width: var(--page-narrow);
  max-width: 1100px;
  margin: 0 auto;
}

.worry_list{
  position: relative;
}
.worry_item{
  position: relative;
  min-height: 230px;
}
.worry_bubbles{
  width: 75%;
  margin: 0 auto;
}
.worry_bubble{
  position: relative;
  width: 72%;
  margin: 0;
  padding: 26px 20px;
  border-radius: 999px;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
.worry_bubble--green{
  background: var(--green);
  color: #fff;
}
.worry_bubble--white{
  margin-top: 30px;
  margin-left: auto;
  background: #fff;
  color: var(--black);
}

/* 吹き出しの三角 */
.worry_bubble--green::after{
  content: "";
  position: absolute;
  left: 25%;
  bottom: -22px;
  width: 0;
  height: 0;
  border-top: 25px solid var(--green);
  border-left: 25px solid transparent;
}
.worry_bubble--white::after{
  content: "";
  position: absolute;
  right: 20%;
  bottom: -22px;
  width: 0;
  height: 0;
  border-top: 25px solid #fff;
  border-right: 25px solid transparent;
}

.worry_illust{
  position: absolute;
}
.worry_illust img{
  display: block;
  width: 100%;
  height: auto;
}
.worry_item--01 .worry_illust{
  left: -1rem;
  top: -2rem;
  width: 92px;
}
.worry_item--02 .worry_illust{
  right: 0;
  top: -10rem;
  width: 134px;
}
.worry_item--03 .worry_illust{
  left: 0;
  top: 0;
  width: 150px;
  height: 200px;
}
.worry_item--03 .worry_illust img{
  position: absolute;
  width: auto;
  height: auto;
}
.worry_item--03 .worry_illust img:first-child{
  width: 140px;
  left: -5rem;
  top: -8rem;
}
.worry_item--03 .worry_illust img:last-child{
  width: 110px;
  top: 6rem;
}
.worry_item--04 .worry_illust{
  right: -5rem;
  top: -4rem;
  width: 220px;
}
.worry_item--01 .worry_bubbles{
  transform: translateX(-30px);
}
.worry_item--02 .worry_bubbles{
  transform: translateX(30px);
}
.worry_item--03 .worry_bubbles{
  transform: translateX(-30px);
}
.worry_item--04 .worry_bubbles{
  transform: translateX(30px);
}

@media (max-width: 650px){

  .worry{
    padding: 6rem 0;
  }
  .worry_item{
    min-height: 0;
    margin-bottom: 3rem;
  }
  .worry_bubbles,
  .worry_bubble{
    width: 85%;
  }
  .worry_bubble{
    padding: 20px 26px;
  }
  /* 三角 */
  .worry_bubble--green::after{
    left: 20%;
    bottom: -16px;
    border-top-width: 18px;
    border-left-width: 18px;
  }
  .worry_bubble--white::after{
    right: 15%;
    bottom: -16px;
    border-top-width: 18px;
    border-right-width: 18px;
  }
  
  .worry_item--01 .worry_illust{
    left: 0;
    top: 7.5rem;
    width: 60px;
  }
  .worry_item--02 .worry_illust{
    right: -1rem;
    top: -1rem;
    width: 82px;
  }
  .worry_item--03 .worry_illust{
    left: 0;
    top: 0;
    width: 100px;
  }
  .worry_item--03 .worry_illust img:first-child{
    width: 90px;
    left: -.5rem;
    top: -8rem;
  }
  .worry_item--03 .worry_illust img:last-child{
    width: 60px;
    left: 3%;
    top: 6rem;
  }
  .worry_item--04 .worry_illust{
    right: -4rem;
    top: 0;
    width: 120px;
  }
  /* PC用の位置ずらしを解除 */
  .worry_item--01 .worry_bubbles,
  .worry_item--02 .worry_bubbles,
  .worry_item--03 .worry_bubbles,
  .worry_item--04 .worry_bubbles{
    transform: none;
  }
}

/* 選ばれる理由
-------------------------------------------*/

#reason .section_title_deco--left{
  top: 0;
}
.reason{
  padding-bottom: 10rem;
}
.reason_inner{
  width: var(--page-narrow);
  margin: 0 auto;
}
.reason_title{
  padding-bottom: 8rem;
}
.reason_title .section_title_text h2 span{
  color: var(--green);
  font-size: 2em;
}
.reason_title .section_title_text h2 span:nth-child(2){
  color: var(--black);
  font-size: 1.25em;
}
.reason_item{
  position: relative;
  display: grid;
  align-items: start;
  grid-template-columns: 160px 1fr 280px;
  column-gap: 2rem;
  margin-bottom: 6rem;
}
.reason_item--02{
  grid-template-columns: 280px 160px 1fr;
}
.reason_number{
  color: var(--green);
  font-size: clamp(60px,9.231vw,130px);
  font-weight: 600;
  line-height: .9;
  letter-spacing: -.04em;
  white-space: nowrap;
}
.reason_text{
  padding-top: 10px;
  text-align: left;
}
.reason_text h3{
  margin-bottom: 1.5rem;
  font-size: clamp(18px,2.769vw,33px);
  font-weight: 700;
  line-height: 1.5;
}
.reason_item--02 .reason_text p span{
  background: #fff000;
  font-weight: 700;
}
.reason_img{
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 50%;
}
.reason_img img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reason_regions > p{
  margin: 2rem 0 .75rem;
  font-weight: 700;
}
.reason_regions > p span{
  color: var(--green);
}
.reason_regions ul{
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.reason_regions li{
  padding: 4px 24px;
  border: 2px solid var(--green);
  border-radius: 999px;
  background: #fff;
  font-size: clamp(11px,1.692vw,14px);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: .075em;
}
.reason_item--02 .reason_img{
  grid-column: 1;
  grid-row: 1;
}
.reason_item--02 .reason_number{
  grid-column: 2;
  grid-row: 1;
}
.reason_item--02 .reason_text{
  grid-column: 3;
  grid-row: 1;
}

@media (max-width: 650px){

  .reason{
    padding-bottom: 6rem;
  }
  .reason_inner{
    padding-bottom: 2.5rem;
  }
  .reason_title{
    padding-bottom: 3rem;
  }
  .reason_title .section_title_text h2 span:nth-child(2){
    font-size: 1em;
  }
  /* 理由1〜3 */
  .reason_item{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
  }
  /* 数字 → 画像 → テキスト */
  .reason_number{
    order: 1;
    text-align: center;
    margin: 0 auto;
  }
  .reason_img{
    order: 2;
    width: 60%;
    max-width: 300px;
    margin: 0 auto;
  }
  .reason_text{
    order: 3;
    padding-top: 0;
  }
  
  /* 02もPC用のgrid指定を解除 */
  .reason_item--02{
    display: flex;
    flex-direction: column;
  }
  .reason_item--02 .reason_img,
  .reason_item--02 .reason_number,
  .reason_item--02 .reason_text{
    grid-column: auto;
    grid-row: auto;
  }
}

/* 地域を知る会社だからできること
----------------------------------------- */

.local{
  padding: 3rem 0 8rem;
  background: #fff;
}
.local_inner{
  width: var(--page-narrow);
  max-width: 1100px;
  margin: 0 auto;
}
.local_intro{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.local_intro_text{
  width: 45%;
  text-align: left;
}
.local_intro .section_title{
  justify-content: flex-start;
  text-align: left;
}
.local_intro .section_title_inner{
  text-align: left;
}
.local_intro .section_title_deco--left{
  left: 0;
}
.local_intro .section_title_deco--right{
  right: 0;
}
.local_intro .section_title h2{
  text-align: left;
  line-height: 1.7;
  padding: 0 3rem;
  white-space: nowrap;
}
.local_intro .section_title h2 span{
  color: var(--green);
}
.local_intro_lead{
  margin-top: 2rem;
  line-height: 2;
  text-align: left;
}

.local_intro_images{
  position: relative;
  width: 60%;
  height: 600px;
  margin-right: calc((100vw - var(--page-narrow)) / -2);
  flex-shrink: 0;
}
.local_intro_img{
  position: absolute;
  width: clamp(160px,14vw,300px);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
}
.local_intro_img img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.local_intro_img--01{
  top: 0;
  right: 0;
  width: clamp(250px,20vw,300px);
}
.local_intro_img--02{
  top: 10rem;
  right: 20rem;
  width: clamp(210px,18vw,250px);
}
.local_intro_img--03{
  bottom: 2rem;
  right: 8rem;
  width: clamp(210px,18vw,220px);
}
.local_intro_img--04{
  bottom: 1rem;
  left: -10rem;
  width: clamp(160px,15vw,200px);
}

/* 4つのポイント */
.local_points{
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.local_point{
  text-align: left;
}
.local_point_img{
  width: 180px;
  margin: 0 auto 1.5rem;
}
.local_point_img img{
  display: block;
  width: 100%;
  height: auto;
}
.local_point h3{
  margin-bottom: 1rem;
  font-size: clamp(15px,2.308vw,17px);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.local_point p{
  line-height: 1.8;
  text-align: left;
  font-size: clamp(13px,2.0vw,15px);
}

@media (max-width: 1200px){
  
  .local_intro_images{
    width: 50%;
  }
  .local_intro_img--02{
    right: 15rem;
  }
  .local_intro_img--03{
    right: 5rem;
  }
  .local_intro_img--04{
    left: -5rem;
  }
}
@media (max-width: 860px){
  
  .local_intro_img--02{
    top: 12rem;
    right: 10rem;
  }
  .local_intro_img--03{
    bottom: 5rem;
    right: 2rem;
  }
}
@media (max-width: 650px){

  .local{
    padding: 6rem 0;
  }
  .local_intro{
    display: block;
  }
  .local_intro_text{
    width: 100%;
  }
  .local_intro .section_title{
    justify-content: center;
  }
  .local_intro .section_title_inner{
    text-align: center;
  }
  .local_intro .section_title h2{
    text-align: center;
    padding: 0 5rem;
  }
  .local_intro .section_title_deco--left{
    left: 20px;
  }
  .local_intro .section_title_deco--right{
    right: 20px;
  }
  .local_intro_lead{
    margin-top: 1rem;
    line-height: 1.9;
  }
  /* 写真 */
  .local_intro_images{
    position: relative;
    width: 80%;
    height: auto;
    margin: 2rem auto 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
   .local_intro_img{
    position: static;
    width: 100%;
    max-width: none;
    aspect-ratio: 1;
  }
  
  /* 4つのポイント */
  .local_points{
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 4rem;
  }
  .local_point{
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-align: left;
  }
  .local_point_img{
    flex: 0 0 120px;
    width: 120px;
    margin: 0;
  }
  .local_point_text{
    flex: 1;
  }
  .local_point h3{
    margin-bottom: .75rem;
    text-align: left;
  }
  .local_point h3 br{
    display: none;
  }
  .local_point p{
    text-align: left;
  }
}

/* 仲介と買取
-------------------------------------------*/

.sale_method{
  padding: 8rem 0;
  background: #fef4e3;
}
.sale_method_inner{
  width: var(--page);
  margin: 0 auto;
}
.sale_method_title h2{
  line-height: 1.7;
}
.sale_method_title .tyukai{
  color: var(--tyukai);
}
.sale_method_title .kaitori{
  color: var(--kaitori);
}
.sale_method_lead{
  margin-bottom: 4rem;
  line-height: 2;
}

.sale_method_items{
  display: flex;
  gap: 3rem;
  padding-bottom: 6rem;
}
.sale_method_item{
  width: 50%;
  padding: 2rem;
  border-radius: 40px;
}
.sale_method_item--tyukai{
  background: var(--tyukai-bg);
}
.sale_method_item--kaitori{
  background: var(--kaitori-bg);
}

/* ラベル */
.sale_method_label{
  width: 50%;
  margin: 0 auto 1rem;
  padding: .2rem 1rem;
  border-radius: 999px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
}
.sale_method_item--tyukai .sale_method_label{
  background: var(--tyukai);
}
.sale_method_item--kaitori .sale_method_label{
  background: var(--kaitori);
}

/* 見出し */
.sale_method_item h3{
  font-size: 1.4rem;
  line-height: 1.6;
}
.sale_method_item--tyukai h3 span{
  color: var(--tyukai);
}
.sale_method_item--kaitori h3 span{
  color: var(--kaitori);
}

/* 下線 */
.sale_method_line{
  width: 40px;
  height: 2px;
  margin: 1rem auto;
}
.sale_method_item--tyukai .sale_method_line{
  background: var(--tyukai);
}
.sale_method_item--kaitori .sale_method_line{
  background: var(--kaitori);
}

/* 説明 */
.sale_method_desc{
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* おすすめ */
.sale_method_recommend{
  padding: 1.5rem 2rem;
  background: #fff;
  border-radius: 20px;
  text-align: left;
}
.sale_method_recommend h4{
  width: 55%;
  min-width: 200px;
  margin: 0 auto 1rem;
  padding: .3rem 1rem;
  border-radius: 999px;
  text-align: center;
}
.sale_method_item--tyukai .sale_method_recommend h4{
  background: #c3e9fa;
}
.sale_method_item--kaitori .sale_method_recommend h4{
  background: #ffc8cd;
}
.sale_method_recommend li{
  position: relative;
  padding-left: 1em;
}
.sale_method_recommend li::before{
  content: "・";
  position: absolute;
  left: 0;
}
.sale_method_bottom{
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 2px solid #eee;
  text-align: center;
  line-height: 1.75;
  font-weight: 700;
}
.sale_method_item--tyukai .sale_method_bottom span{
  color: var(--tyukai);
}
.sale_method_item--kaitori .sale_method_bottom span{
  color: var(--kaitori);
}

/* CTA  */
.sale_method .cta_box{
  width: 100%;
  max-width: 1100px;
}
.sale_method .cta_box_main{
  display: grid;
  grid-template-columns: 1fr 360px;
  align-items: center;
  gap: 4rem;
  padding: 40px 60px;
  text-align: left;
}
.sale_method .cta_box_text{
  margin: 0;
  padding: 0;
  text-align: left;
}
.sale_method .cta_box_text::before,
.sale_method .cta_box_text::after{
  display: none;
}
.sale_method .cta_box_text p{
  line-height: 1.8;
}
.sale_method .cta_box_text p span{
  color: var(--green);
}
.sale_method .cta_box_main .cta_btn{
  width: 100%;
  margin: 0;
}

@media (max-width: 650px){
  
  .sale_method{
    padding: 6rem 0;
  }
  .sale_method_lead{
    margin-bottom: 1.5rem;
  }
  .sale_method_items{
    flex-direction: column;
    gap: 1.5rem;
    padding-bottom: 3rem;
  }
  .sale_method_item{
    width: 100%;
    padding: 2rem 1.5rem;
    border-radius: 30px;
  }
  .sale_method_desc{
    margin-bottom: 1.5rem;
  }

  /* CTA  */
  .sale_method .cta_box_main{
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2.5rem 1.5rem;
    text-align: center;
  }
  .sale_method .cta_box_text{
    text-align: center;
  }
  .sale_method .cta_box_main .cta_btn{
    max-width: 400px;
    margin: 0 auto;
  }
  .sale_method .cta_box_bottom{
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 1.5rem;
  }
  .sale_method .cta_box_bottom .cta_btn{
    max-width: 400px;
  }
}

/* 売却までの流れ
-------------------------------------------*/

.sale_flow{
  padding: 8rem 0;
  background:#fff;
}
.sale_flow_inner{
  width: var(--page-narrow);
  margin: 0 auto;
}

/* STEP 01〜03 */
.sale_flow_steps{
  position: relative;
}
.sale_flow_step{
  display: flex;
  text-align: left;
  align-items: center;
  gap: .5rem;
  width: 100%;
  min-height: 95px;
  padding: 1.25rem 2rem;
  border: 1px solid var(--green);
  background: #fff;
}
.sale_flow_step_num{
  flex: 0 0 50px;
  color: var(--green);
  font-size: 1.8rem;
  font-weight: 700;
}
.sale_flow_step h3{
  flex: 0 0 210px;
  font-weight: 700;
}
.sale_flow_step_line{
  width: 1px;
  height: 50px;
  margin: 0 1rem 0 0;
  background: var(--green);
}
.sale_flow_step p{
  line-height: 1.75;
}

/* 矢印 */
.sale_flow_arrow{
  position: relative;
  width: 2px;
  height: 42px;
  margin: 0 auto;
  background: repeating-linear-gradient(
    to bottom,
    var(--green) 0,
    var(--green) 3px,
    transparent 3px,
    transparent 6px
  );
}
.sale_flow_arrow::before{
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 12px solid var(--green);
  transform: translateX(-50%);
}

/* 分岐 */
.sale_flow_branch_title{
  margin-top: 0;
  padding: .75rem 1.5rem;
  background:#ccebd3;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: .05em;
}
.sale_flow_branch_title span{
  color:var(--green);
  font-size:1.3em;
  padding: 0 2px;
}

/* 仲介・買取 */

.sale_flow_methods{
  display: flex;
  gap: 2rem;
  margin-top: 3.5rem;
}
.sale_flow_method{
  position:relative;
  width: 50%;
  padding: 2rem;
  border-radius: 30px;
}

/* 矢印 */
.sale_flow_method::before{
  content: "";
  position: absolute;
  top: -3.5rem;
  left: 50%;
  width: 2px;
  height: 3rem;
  background: repeating-linear-gradient(
    to bottom,
    var(--green) 0,
    var(--green) 3px,
    transparent 3px,
    transparent 6px
  );
  transform: translateX(-50%);
}
.sale_flow_method::after{
  content: "";
  position: absolute;
  top: -0.5rem;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 12px solid var(--green);
  transform: translateX(-50%);
}
.sale_flow_method--tyukai{
  background:var(--tyukai-bg);
}
.sale_flow_method--kaitori{
  background:var(--kaitori-bg);
}
.sale_flow_method_label{
  width: 200px;
  margin: 0 auto;
  padding: .5rem 1rem;
  border-radius: 999px;
  color:#fff;
  font-size: 1.25rem;
  font-weight: 700;
}
.sale_flow_method--tyukai .sale_flow_method_label{
  background:var(--tyukai);
}
.sale_flow_method--kaitori .sale_flow_method_label{
  background:var(--kaitori);
}
.sale_flow_method_lead{
  margin: 1rem 0;
  font-size: 1.1rem;
  font-weight: 700;
}
.sale_flow_method--tyukai .sale_flow_method_lead{
  color:var(--tyukai);
}
.sale_flow_method--kaitori .sale_flow_method_lead{
  color:var(--kaitori);
}
.sale_flow_method_inner{
  padding: 1.5rem;
  border-radius: 20px;
  background:#fff;
}

/* 04〜06 */
.sale_flow_method_step{
  display: flex;
  align-items: flex-start;
  gap: .8rem;
}
.sale_flow_method_num{
  flex: 0 0 52px;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.5;
}
.sale_flow_method--tyukai .sale_flow_method_num{
  color:var(--tyukai);
}
.sale_flow_method--kaitori .sale_flow_method_num{
  color:var(--kaitori);
}
.sale_flow_method_text{
  flex:1;
  text-align: left;
}
.sale_flow_method_text h3{
  margin: 0 0 .25rem;
  font-size: 1.1rem;
  font-weight: 700;
}
.sale_flow_method_text p{
  margin:0;
  font-size:.8rem;
  line-height:1.7;
}
/* 下の矢印 */
.sale_flow_method_arrow{
  position: relative;
  width: 2px;
  height: 50px;
  margin: -15px 0 0 25px;
  background: repeating-linear-gradient(
    to bottom,
    var(--tyukai) 0,
    var(--tyukai) 3px,
    transparent 3px,
    transparent 6px
  );
}
.sale_flow_method--kaitori .sale_flow_method_arrow{
  background: repeating-linear-gradient(
    to bottom,
    var(--kaitori) 0,
    var(--kaitori) 3px,
    transparent 3px,
    transparent 6px
  );
}
.sale_flow_method_arrow::before{
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  transform: translateX(-50%);
}
.sale_flow_method--tyukai .sale_flow_method_arrow::before{
  border-top: 9px solid var(--tyukai);
}
.sale_flow_method--kaitori .sale_flow_method_arrow::before{
  border-top: 9px solid var(--kaitori);
}
.sale_flow_tabs{
  display: none;
}

@media (max-width: 650px){
  
  .sale_flow{
    padding: 6rem 0;
  }
  .sale_flow_title{
    margin-bottom: 3rem;
  }
  .sale_flow_step{
    display: grid;
    grid-template-columns: 55px 1fr;
    align-items: center;
    min-height: 0;
    padding: 1.5rem 2rem;
  }
  .sale_flow_step_num{
    grid-row: 1 / 3;
  }
  .sale_flow_step h3{
    width: auto;
  }
  .sale_flow_step_line{
    display: none;
  }
  .sale_flow_arrow{
    height: 30px;
  }
  .sale_flow_branch_title{
    padding: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
  }
  .sale_flow_branch_title span{
    font-size: 1.2em;
  }
  
  /* tab */
  .sale_flow_methods{
    flex-direction: column;
    margin-top: 2.5rem;
  }
  .sale_flow_method{
    width: 100%;
    padding: 2rem 1.5rem;
  }
  .sale_flow_method::before,
  .sale_flow_method::after{
    display: none;
  }
  
  /* 矢印 */
  .sale_flow_tabs{
    position: relative;
    display: flex;
    margin-top: 3rem;
    margin-bottom: 0;
  }
  .sale_flow_tabs::before{
    content: "";
    position: absolute;
    top: -2rem;
    left: 25%;
    width: 50%;
    height: 2px;
    background: repeating-linear-gradient(
      to right,
      var(--green) 0,
      var(--green) 3px,
      transparent 3px,
      transparent 6px
    );
  }
  .sale_flow_tabs::after{
    content: "";
    position: absolute;
    top: -3rem;
    left: 50%;
    width: 2px;
    height: 1rem;
    background: repeating-linear-gradient(
      to bottom,
      var(--green) 0,
      var(--green) 3px,
      transparent 3px,
      transparent 6px
    );
    transform: translateX(-50%);
  }
  .sale_flow_tab{
    position: relative;
    min-height: 70px;
    cursor: pointer;
    transition: opacity .3s ease,transform .3s ease;
  }
  .sale_flow_tab.is_active{
    box-shadow: 0 4px 12px rgba(0,0,0,.12);
  }
  .sale_flow_tab::before{
    content: "";
    position: absolute;
    top: -2rem;
    left: 50%;
    width: 2px;
    height: 1.5rem;
    background: repeating-linear-gradient(
      to bottom,
      var(--green) 0,
      var(--green) 3px,
      transparent 3px,
      transparent 6px
    );
    transform: translateX(-50%);
  }
  .sale_flow_tab::after{
    content: "";
    position: absolute;
    top: -1rem;
    left: 50%;
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 12px solid var(--green);
    transform: translateX(-50%);
  }
  
  /* タブボタン */
  .sale_flow_tab{
    width: 50%;
    padding: 1.2rem 2.5rem 1.2rem .5rem;
    border: none;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
  }
  .sale_flow_tab:first-child{
    border-radius: 20px 0 0 0;
    color: var(--tyukai);
    background: var(--tyukai-bg);
  }
  .sale_flow_tab:last-child{
    border-radius: 0 20px 0 0;
    color: var(--kaitori);
    background: var(--kaitori-bg);
  }
  .sale_flow_tab.is_active:first-child{
    color: #fff;
    background: var(--tyukai);
  }
  .sale_flow_tab.is_active:last-child{
    color: #fff;
    background: var(--kaitori);
  }
  .sale_flow_tab_arrow{
    position: absolute;
    top: 50%;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border: 1px solid currentColor;
    border-radius: 50%;
    transform: translateY(-50%);
  }
  .sale_flow_tab_arrow::after{
    content: "";
    width: 7px;
    height: 7px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    margin-left: -3px;
  }
  .sale_flow_methods{
    margin-top: 0;
  }
  .sale_flow_method{
    display: none;
  }
  .sale_flow_method.is_active{
    display: block;
    border-radius: 0 0 20px 20px;
  }
}


/* 売買実績
-------------------------------------------*/

.sale_result{
  padding: 8rem 0;
  background: #e5f5e9;
}
.sale_result_inner{
  width: var(--page);
  margin: 0 auto;
}
.sale_result_lead{
  margin: 2.5rem 0 3rem;
  text-align: center;
  line-height: 1.8;
}
#sale-list ul{
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
#sale-list li{
  width: 33%;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 10px rgba(54,108,71,.1);
}
#sale-list li a{
  display: block;
  color: var(--black);
  text-decoration: none;
}
.sale_result_image{
  position: relative;
  aspect-ratio: 1.55 / 1;
  overflow: hidden;
}
.sale_result_image img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
#sale-list li a:hover .sale_result_image img{
  transform: scale(1.04);
}
.sale_result_caption{
  padding: 1rem;
  text-align: left;
  font-size: clamp(13px,2.0vw,17px);
  line-height: 1.6;
  font-weight: 700;
}
.sale_result_title{
  margin-bottom: 4px;
}
.sale_result_price{
  color: #b18a4a;
  margin-bottom: 10px;
}
.sale_result_date{
  margin: 0;
  color: #aaa;
  font-size: clamp(12px,1.846vw,14px);
  font-weight: normal;
}

/*リンクボタン*/

.link_btn{
  position: relative;
  display: block;
  padding: 20px;
  border: 2px solid var(--green);
  border-radius: 999px;
  background: #fff;
  color: var(--black);
  text-align: center;
  font-weight: 700;
  text-decoration: none;
  transition: background-color .3s ease,color .3s ease;
}
.link_btn:hover{
  background: var(--green);
  color: #fff;
}
.section_link_btn{
  width: min(380px,100%);
  margin: 4rem auto 0;
}

@media(max-width:650px){
  
  .sale_result{
    padding: 6rem 0;
  }
  .sale_result_lead{
    margin: 30px 0 35px;
    line-height: 1.8;
  }
  #sale-list ul{
    flex-direction: column;
    gap: 25px;
  }
  #sale-list li{
    width: 100%;
  }
  .sale_result_caption{
    padding: 18px 18px 22px;
  }
  .sale_result_title{
    font-size: 17px;
  }
  .sale_result_price{
    font-size: 19px;
  }
  .link_btn{
    padding: 1.5rem 20px;
  }
}


/* お客様の声
-------------------------------------------*/

.customer_voice{
  padding: 8rem 0 4rem;
  background: #fff;
}
.customer_voice_inner{
  width: var(--page);
  margin: 0 auto 3rem;
}
.customer_voice_list{
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 4rem;
}
.customer_voice_item{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 330px;
  min-height: 250px;
  padding: 2rem 2.5rem;
  border-radius: 50px;
  background: rgba(var(--orange-rgb), .2);
  text-align: center;
}
.customer_voice_icon{
  width: 62px;
  height: 60px;
}
.customer_voice_icon img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.customer_voice_text{
  margin: 1.5rem 0;
  font-size: .9rem;
  line-height: 1.75;
}
.customer_voice_name{
  color: var(--orange);
  font-size: .8rem;
  font-weight: 700;
}

@media(max-width:650px){
  
  .customer_voice{
    padding: 6rem 0 3rem;
  }
  .customer_voice_list{
    margin-top: 2.5rem;
    gap: 1.5rem;
  }
  .customer_voice_item{
    width: 100%;
    border-radius: 30px;
    padding: 2.5rem;
  }
  .customer_voice_icon{
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
  }
  .customer_voice_text{
    margin: 1rem 0;
    font-size: 1rem;
    line-height: 2;
  }
  .customer_voice_text br{
    display: none;
  }
  .customer_voice_name{
    font-size: .9rem;
  }
}


/* よくあるご質問
-------------------------------------------*/

.faq{
  padding: 8rem 0;
  background: var(--beige);
}
.faq_inner{
  width: var(--page-narrow);
  margin: 0 auto;
}
.faq_title{
  margin-bottom: 4rem;
}
.faq_list{
  width: 100%;
}
.faq_item{
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 12px;
  background: #fff;
}
.faq_question_text,
.faq_answer p{
  letter-spacing: .05em;
  line-height: 1.7;
  text-align: left;
  letter-spacing: .075em;
}
.faq_question{
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 105px;
  padding: 1.5rem 2rem;
  border: none;
  background: #fff;
  text-align: left;
  cursor: pointer;
  transition: background-color .3s ease;
}
.faq_question:hover{
  background: #f1faf3;
}
.faq_q{
  flex: 0 0 55px;
  color: var(--green);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.faq_question_text{
  flex: 1;
  padding-right: 3rem;
  font-size: clamp(13px,2.0vw,18px);
  font-weight: 700;
}
.faq_plus{
  position: absolute;
  right: 2rem;
  width: 25px;
  height: 25px;
}
.faq_plus::before,
.faq_plus::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 25px;
  height: 3px;
  background: var(--green);
  transform: translate(-50%,-50%);
}
.faq_plus::after{
  transform: translate(-50%,-50%) rotate(90deg);
  transition: transform .3s ease;
}
.faq_answer{
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: start;
  max-height: 0;
  padding: 0 2rem;
  opacity: 0;
  overflow: hidden;
  transition: max-height .35s ease,padding .35s ease,opacity .35s ease;
}
.faq_a{
  color: var(--orange);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
}
.faq_answer p{
  margin: 0;
  padding: .5rem 3rem .5rem 0;
  font-size: clamp(13px,2.0vw,18px);
}
.faq_item.is_open .faq_answer{
  max-height: 300px;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  opacity: 1;
}
.faq_item.is_open .faq_plus::after{
  transform: translate(-50%,-50%) rotate(0);
}

@media(max-width:650px){
  
  .faq{
    padding: 6rem 0;
  }
  .faq_item{
    margin-bottom: .75rem;
  }
  .faq_question{
    min-height: 75px;
    padding: .5rem 1.5rem;
  }
  .faq_q{
    flex: 0 0 30px;
  }
  .faq_q,
  .faq_a{
    font-size: 1.5rem;
  }
  .faq_plus{
    right: 1.25rem;
    width: 18px;
    height: 18px;
  }
  .faq_plus::before,
  .faq_plus::after{
    width: 18px;
    height: 2px;
  }
  .faq_answer{
    grid-template-columns: 38px 1fr;
    padding: 0 1rem;
  }
}


/* NEWS・お役立ち情報
-------------------------------------------*/

.news{
  padding: 8rem 0;
  background: #fff;
}
.news_inner{
  width: var(--page-narrow);
  margin: 0 auto;
}
.news_section_title{
  margin-bottom: 3.5rem;
}
#news-list{
  width: 70%;
  margin: 0 auto;
}
#news-list ul{
  margin: 0;
  padding: 0;
  list-style: none;
}
#news-list li{
  padding-bottom: .5rem;
}
#news-list li a{
  display: flex;
  align-items: center;
  gap: 2rem;
  text-decoration: none;
  transition: color .3s ease;
}
.news_date{
  flex: 0 0 150px;
}
#news-list li a:hover{
  color: var(--green);
}

@media (max-width: 650px){
  
  #news-list{
    width: 100%;
  }
  #news-list li{
    padding-bottom: 1rem;
  }
  #news-list li a{
    gap: 1rem;
  }
  .news_date{
    flex: 0 0 100px;
  }
}


/* footer
-------------------------------------------*/

/* footer contact */

.footer_cta{
  position: relative;
  padding: 6rem 0;
  background: url("../img/cmn/footer_cta_bg.jpg") center center / cover no-repeat;
}
.footer_cta::before{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
}
.footer_cta_inner{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--page-wide);
  margin: 0 auto;
}
.footer_cta_text{
  width: 40%;
  text-align: left;
}
.footer_cta_text h2{
  margin-bottom: 1rem;
  font-size: clamp(21px,3.231vw,33px);
  letter-spacing: .05em;
  line-height: 1.6;
}
.footer_cta_text p{
  font-size: .9rem;
}
.footer_cta_action{
  width: 58%;
}
.footer_cta_buttons{
  display: flex;
  gap: 1.25rem;
}
.footer_cta_buttons .cta_btn{
  width: 50%;
  margin-top: 0;
}
.footer_cta .cta_btn--orange{
  font-size: clamp(14px,2vw,16px);
}
.footer_cta .cta_tel{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0rem 1rem;
  margin-top: 1rem;
}
.footer_cta .cta_tel p{
  margin-right: 0;
  background: #fff;
}
.footer_cta .cta_tel a{
  white-space: nowrap;
}
.footer_cta .cta_tel small{
  width: 70%;
  padding-top: .5rem;
  text-align: center;
  letter-spacing: .1em;
  border-top: 1px solid var(--black);
}

/* footer info */

.footer{
  background: #eee;
  padding: 4.5rem 0;
}
.footer_inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  width: var(--page-wide);
  margin: 0 auto;
}
.footer_company{
  width: 40%;
}
.footer_logo{
  margin-bottom: 2rem;
}
.footer_logo img{
  width: min(280px,80%);
}
.footer_company p{
  margin: .5rem 0;/* 行間 */
  font-size: .85rem;
  line-height: 1.5;
}
.footer_right{
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.footer_nav{
  display: flex;
  align-items: center;
  gap: 1.5rem;
  white-space: nowrap;
}
.footer_nav a{
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
}
.footer_nav a:hover{
  opacity: .5;
}
.footer_sns{
  display: flex;
  align-items: center;
  gap: 2rem;
  transform: translateY(-3px);
}
.footer_sns a{
  display: block;
}
.footer_sns img{
  width: 26px;
  height: 26px;
  object-fit: contain;
}
.copyright{
  padding: 2rem 0;
  background: #fff;
  text-align: center;
}
.copyright p{
  margin: 0;
  font-size: .8rem;
}

@media (max-width: 650px){
  
  .footer_cta{
    padding: 5rem 0;
    background-position: 65% center;
  }
  .footer_cta_inner{
    display: block;
  }
  .footer_cta_text{
    width: 100%;
    margin-bottom: 2rem;
  }
  .footer_cta_action{
    width: 100%;
  }
  .footer_cta_buttons{
    flex-direction: column;
    gap: 1rem;
  }
  .footer_cta_buttons .cta_btn{
    width: 100%;
  }
  .footer_cta .cta_tel{
    display: block;
    margin-top: 2rem;
  }
  .footer_cta .cta_tel small{
    width: 100%;
  }
  
  /* footer info */
  .footer{
    padding: 3rem 0;
  }
  .footer_inner{
    display: block;
  }
  .footer_company{
    width: 100%;
  }
  .footer_logo{
    margin-bottom: 1.5rem;
  }
  .footer_logo img{
    width: 230px;
  }
  .footer_company p{
    margin: .4rem 0;
    font-size: 12px;
  }
  .footer_right{
    display: block;
    margin-top: 3rem;
  }
  .footer_nav{
    flex-wrap: wrap;
  }
  .footer_nav a{
    font-size: 11px;
  }
  .footer_sns{
    margin-top: 3rem;
  }
  .footer_sns img{
    width: 22px;
    height: 22px;
  }
  .copyright p{
    font-size: 10px;
  }
}