:root {
  --d-green: #028502;
  --l-green: #00B900;
  --orange: #E64A00;
}

body {
  color: #4A4A4A;
  font-size: 16px;
  margin: 0;
}

.container {
  max-width: 1320px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  gap: 32px;
  padding: 0 20px; 
}

.main-wrapper {
  max-width: 970px;
  width: 100%;
}

.nav_wrapper {
  max-width: 305px;
  width: 100%;
}

section {
  margin-bottom: 60px;
}

.inner {
  padding: 0 35px;
  margin: 0 auto;
}

h2 {

}

h3 {

}

a {
  cursor: pointer;
  
}

ul {
  list-style: none;
  padding-left: 0;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0); /* 古いブラウザ用 */
  clip-path: inset(50%);  /* 新しいブラウザ用 */
  white-space: nowrap;
  border: 0;
}

.pc_only {
  display: block !important;
}

.sp_only {
  display: none !important;
}

.t-c-dg {
  color: var(--d-green);
}

.t-c-o {
  color: var(--orange);
}

/********** header ***********/
#kv_section {
  background: center/cover no-repeat url("../img/jiko_lp/kv.jpg");
  text-align: center;
  position: relative;
  height: 950px;

  aspect-ratio: 1440 / 950;   /* 画像の比率に合わせて調整 */
  height: auto;              /* 固定高さを外す */
  min-height: 420px;         /* 小さすぎ防止（任意） */
}

#kv_section .point {
  position: absolute;
  bottom: 6%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content:center;
  width: 100%;
}

#kv_section .point img{
  width: calc((100% - 5 * 12px) / 6);
  height: auto;
}


/********** header ***********/
header .header {
  box-sizing: border-box;
  position: fixed;
  padding: 4px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0px 0 7px rgba(0, 0, 0, 0.3);
}

header .header_sp {
  display: none;
}

header .header_btn_area {
  display: flex;
  gap: 4px;
}

header h1 {
  margin: 0;
  width: 300px;
  margin-right: 12px;
}

.nav_placeholder {
  display: none;
  width: 305px;
  flex-shrink: 0;
}

.nav_wrapper {
  width: 305px;
  flex-shrink: 0;
}

.nav_wrapper.fixed {
  position: fixed;
  top: 120px;
  left: 0;
  z-index: 999;
  width: 305px;
  left: calc(50% - 660px);

  opacity: 1;
  transform: translateY(0);
}

.nav_list {
  border: 2px solid #00762C;
  border-radius: 8px;
  padding: 16px 12px;
  background: #fff;
  margin-bottom: 32px;
}

.nav_list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav_list ul li {
  margin-bottom: 16px;
  padding-bottom: 5px;
  border-bottom: 1px dotted #00762C;
}

.nav_list ul li:last-child {
  margin-bottom: 0;
}

.nav_list ul li a {
  text-decoration: none;
  color: #333;
  font-size: 1.1rem;
  display: inline-block;
}


/********** 実績 ***********/
#jisseki_section .inner {
  text-align: center;
}

#jisseki_section img {
  width: 40%;
  margin: 0 auto;
}

#jisseki_section h2 img {
  width: 160px;
  margin-bottom: 8px;
}

#jisseki_section .sub_title {
  margin-bottom: 20px;
}

#jisseki_section .p1 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 12px;
}


/********** CVエリア ***********/
.cv_area {
  position: relative;
  background-color: #FFFFF5;
  border: var(--l-green) solid 1px;
  padding: 75px 12px 40px;
}

.cv_area h2 {
  position: absolute;
  top: -61px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--d-green);
  color: #fff;
  font-size: 2rem;
  text-align: center;
  padding: 8px 24px 16px;
  border-radius: 9999px;
  letter-spacing: 0.1rem;
  line-height: 1.2;
  white-space: nowrap;
}

.cv_area h2 span {
  font-size: 1.2rem;
}

.cv_area .inner {
  max-width: 680px;
}

.cv_area .top {
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: #000 solid 1px;
}

.cv_area .top .logo,
.cv_area .btn_area,
.cv_area .map div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.cv_area .map {
  margin-bottom: 28px;
}

.cv_area .map div {
  gap: 0;
}

.cv_area .map iframe {
  height: 240px;
}

.cv_area .map img {
  width: 215px;
  height: 240px;
}

.cv_area .top .logo {
  margin-bottom: 20px;
}

.cv_area .top .p1 {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.cv_area .top .p2 {
  font-weight: 700;
  font-size: 1.2rem;
}

.cv_area .top .p3 {
  font-size: 1.2rem;
  background-color: var(--orange);
  color: #fff;
  padding: 4px 28px;
  border-radius: 9999px;
}

.cv_area .top .p2 span {
  font-size: 1.6rem;
}

.cv_area .top .sche {
  max-width: 455px;
}

.cv_area .bottom .close {
  width: 110px;
  margin: 0 auto 8px;
}

.cv_area .bottom .p1 {
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
}

.cv_area .block {
  padding: 16px;
  background-color: #fff;
  border-radius: 4px;
  border: #000 solid 1px;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cv_area .block .img {
  padding-right: 20px;
  border-right: #000 solid 1px;
}

.cv_area .block .img img {
  width: 180px;
}

.cv_area .block .info {
  padding-left: 20px;
}

.cv_area .block .shop_t {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.cv_area .block h3 {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.cv_area .block .shop_t h3 {
  margin-bottom: 0;
}

.cv_area .block p {
  font-size: 0.9rem;
  line-height: 1.2;
  margin-bottom: 4px;
}


/********** こんなお悩み ***********/
#onayami_section {
  background-color: #F6F5F5;
}

#onayami_section .inner {
  padding-top: 48px;
  padding-bottom: 48px;
}

#onayami_section .midashi {
  text-align: center;
}

#onayami_section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  padding: 8px 16px;
  border-top: #000 solid 1px;
  border-bottom: #000 solid 1px;
  display: inline-block;
  margin: 0 auto 40px;
}

#onayami_section .sub_title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  line-height: 1.5;
}

#onayami_section .area {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 20px;
}

#onayami_section .block {
  position: relative;
  width: calc((100% - 70px) / 2);
  background-color: #fff;
  padding: 32px 12px 20px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

#onayami_section .concern-checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

#onayami_section .concern-header label {
  position: relative;
  cursor: pointer;
  display: block;
  width: 100%;
}

#onayami_section .concern-header label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border: 2px solid var(--l-green);
  border-radius: 4px;
  background-color: #fff;
  transition: all 0.3s ease;
}

#onayami_section .concern-checkbox:checked + .concern-header label::before {
  background-color: var(--l-green);
}

#onayami_section .concern-checkbox:checked + .concern-header label::after {
  content: '✓';
  position: absolute;
  left: 4px;
  top: 12px;
  transform: translateY(-50%);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
}

#onayami_section h3 {
  font-size: 1.2rem;
  padding-left: 28px;
  padding-bottom: 16px;
  margin-bottom: 20px;
  border-bottom: var(--l-green) solid 1px;
  text-align: center;
  flex: 1;
}

#onayami_section .num {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--l-green);
  padding: 4px 40px;
  color: #fff;
  font-weight: 700;
  border-radius: 9999px;
}

#onayami_section .concern-list {
  margin-bottom: 0;
}

#onayami_section .concern-list li {
  font-size: 0.9rem;
  line-height: 1.2;
  padding-bottom: 8px;
  font-weight: 700;
}

#onayami_section .concern-list li::before {
  content: "●";
  color: var(--l-green);
  margin-right: 8px;
}

#onayami_section .solution-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease, margin 0.5s ease;
  margin-top: 0;
  padding-top: 0;
  border-top: 2px solid transparent;
}

#onayami_section .concern-checkbox:checked ~ .solution-content {
  max-height: 1000px;
  margin-top: 20px;
  padding-top: 20px;
  border-top-color: var(--l-green);
}

#onayami_section .solution-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--l-green);
}

#onayami_section .solution-content > p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

#onayami_section .solution_area {
  background-color: rgba(144, 238, 144, 0.15);
  padding: 16px;
  border-radius: 4px;
}

#onayami_section .solution-benefits {
  margin-bottom: 12px;
}

#onayami_section .benefits-title {
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

#onayami_section .benefits-title::before {
  content: "○";
  font-size: 1.2rem;
  color: var(--l-green);
  padding-right: 4px;
}

#onayami_section .solution-benefits ul li {
  font-size: 0.85rem;
  font-weight: 400;
  padding-bottom: 6px;
  line-height: 1.5;
}


/********** 6つの特徴 ***********/
#feature_section {
  background-color: #FFF6F3;
  padding: 60px 0;
  margin-bottom: 80px;
}

#feature_section .inner {
  max-width: 900px;
  margin: 0 auto;
}

#feature_section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 28px;
}

#feature_section h2 span.emp {
  font-size: 2.2rem;
}

#feature_section .attention {
  background-color: #fff;
  /*border: 2px solid  var(--orange);*/
  border-radius: 8px;
  padding: 16px 24px;
  text-align: center;
  font-weight: 700;
  color:  var(--orange);
  margin-bottom: 20px;
  line-height: 1.6;
}

#feature_section > .inner > p {
  text-align: center;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 40px;
}

#feature_section p.sub_title {
  font-size: 1.2rem;
  margin-bottom: 60px;
}

#feature_section .area {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 62px 32px;
}

#feature_section .block {
  background-color: #fff;
  border-radius: 12px;
  padding: 0;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

#feature_section .num {
  position: absolute;
  top: -20px;
  left: 20px;
  width: 60px;
  height: auto;
  z-index: 2;
}

#feature_section .feature_img {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  margin: 0 auto;
}

#feature_section .desc {
  padding: 50% 24px 30px;
  text-align: left;
}

#feature_section .desc h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color:  var(--orange);
  margin-bottom: 16px;
  text-align: center;
  line-height: 1.5;
}

#feature_section .desc .lead {
  font-weight: 700;
  font-size: 1rem;
}

#feature_section .desc p {
  font-size: 0.95rem;
  line-height: 1.7;
}

#feature_section .desc p:last-child {
  margin-bottom: 0;
}

#feature_section .feature-checkbox {
  display: none;
}

#feature_section .feature-toggle {
  position: relative;
  display: block;
  width: 100%;
  height: 40px;
  margin: 8px 0 0;
  cursor: pointer;
}

#feature_section .feature-toggle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--orange);
  transform: translateY(-50%);
}

#feature_section .feature-toggle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  background-color: var(--orange);
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(230, 74, 0, 0.3);
}

#feature_section .feature-toggle:hover::after {
  background-color: #d43f00;
  transform: translate(-50%, -50%) scale(1.1);
}

#feature_section .toggle-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  z-index: 1;
}

#feature_section .toggle-icon::before,
#feature_section .toggle-icon::after {
  content: '';
  position: absolute;
  background-color: #fff;
  transition: all 0.3s ease;
}

#feature_section .toggle-icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

#feature_section .toggle-icon::after {
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
  opacity: 1;
}

#feature_section .feature-checkbox:checked + .feature-toggle .toggle-icon::after {
  opacity: 0;
  transform: translateX(-50%) rotate(90deg);
}

#feature_section .feature-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, margin 0.5s ease;
  margin-top: 0;
}

#feature_section .feature-checkbox:checked ~ .feature-detail {
  max-height: 500px;
  margin-top: 16px;
}

#feature_section .feature-detail p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}


/********** もしも交通事故にあってしまったら ***********/
#if_section {
  position: relative;
  background-color: #EBF3E7;
  margin-bottom: 120px;
}

#if_section::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -74px;
  width: 100%;
  height: 75px;
  background: #EBF3E7;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}

#if_section .inner {
  padding-top: 32px;
  padding-bottom: 32px;
}

#if_section .midashi{
  text-align: center;
}

#if_section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  padding: 8px 16px;
  margin: 0 auto 40px;
  display: inline-block;
  border-bottom: #000 solid 1px;
}

#if_section .area {
  position: relative;
  background-color: #fff;
  padding: 60px 20px 24px;
  margin-bottom: 20px;
}

#if_section .sub_title {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.4rem;
  font-weight: 700;
  background-color: var(--d-green);
  color: #fff;
  letter-spacing: 1;
  padding: 8px 40px;
  border-radius: 9999px;
}

#if_section .block:not(:last-child)  {
  margin-bottom: 36px;
}

#if_section h3 {
  position: relative;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  padding-left: 36px;
}

#if_section h3 img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 30px;
}

#if_section .p1 {
  font-size: 0.9rem;
  line-height: 1.2;
  padding-left: 36px;
}

#if_section .bottom {
  display: flex;
  justify-content: center;
  gap: 32px;
  align-items: center;
}

#if_section .p2 {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.5;
}

#if_section .bottom img {
  width: 40%;
}


/********** お客様の声 ***********/
#voice_section .midashi{
  text-align: center;
}

#voice_section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  padding: 8px 16px;
  margin: 0 auto 40px;
  display: inline-block;
  border-bottom: #000 solid 1px;
}

#voice_section .lead {
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 40px;
}

#voice_section .voice_img {
  width: 50%;
  margin: 0 auto 28px;
}

#voice_section section.sb-feed-posts {
  margin-bottom: 28px;
}

#voice_section .more_btn {
  text-align: center;
}

#voice_section .more_btn a {
  display: inline-block;
  margin: 0 auto;
}


/********** スタッフ紹介 ***********/
#staff_section .midashi{
  text-align: center;
}

#staff_section .inner {
  max-width: 750px;
}

#staff_section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  padding: 8px 16px;
  margin: 0 auto 40px;
  display: inline-block;
  border-bottom: #000 solid 1px;
}

#staff_section .lead {
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 40px;
}

#staff_section .area {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 40px;
}

#staff_section .block {
  position: relative;
}

#staff_section .block::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background-color: #FFF6F3;
  border-radius: 9999px;
  width: 80%;
  height: 80%;
  z-index: -1;
}

#staff_section .block img {
  width: 45%;
  margin: 0 auto 12px;
}

#staff_section h3 {
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4px;
}

#staff_section .yakushoku,
#staff_section .shumi {
  font-size: 0.8rem;
  color: var(--orange);
  text-align: center;
}

#staff_section .desc {
  font-size: 0.8rem;
  line-height: 1.2;
  margin: 12px 0;
}


/********** よくある質問 ***********/
#qa_section {
  background-color: #F6F5F5;
  margin-bottom: 0;
}

#qa_section .inner {
  padding-top: 60px;
  padding-bottom: 60px;
}

#qa_section .midashi{
  text-align: center;
}

#qa_section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  padding: 8px 16px;
  margin: 0 auto 40px;
  display: inline-block;
  border-bottom: #000 solid 1px;
}

#qa_section .qa_tabs{
  display:flex;
  gap: 14px;
  justify-content:flex-start;
  margin: 0 auto 18px;
}

#qa_section .qa_tab{
  appearance:none;
  border: 1px solid #fff;
  background:#fff;
  padding: 14px 18px;
  border-radius: 4px;
  font-weight:700;
  cursor:pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
  position: relative;
  min-width: 200px;
  text-align: left;
}

#qa_section .qa_tab::after{
  content:"";
  position:absolute;
  right: 14px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: translateY(-60%) rotate(45deg);
  opacity: .9;
}

#qa_section .qa_tab.is-active{
  outline: 0;
  border-color:var(--orange);
}

#qa_section .qa_item{
  background:#fff;
  margin-bottom: 12px;
}

#qa_section .qa_q{
  width:100%;
  display:flex;
  align-items:center;
  gap: 14px;
  padding: 16px 18px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align:left;
  align-items: center;
}

#qa_section .qa_item.is-open .qa_q{
  background: #FFF6F3;
}

#qa_section .qa_badge{
  width: 20px;
}

#qa_section .qa_qtext{
  font-weight: 600;
  line-height: 1.5;
  flex: 1;
}

#qa_section .qa_icon{
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

#qa_section .qa_icon::before,
#qa_section .qa_icon::after{
  content:"";
  position:absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 2px;
  background:#E64A00;
  transform: translate(-50%,-50%);
}

#qa_section .qa_icon::after{
  transform: translate(-50%,-50%) rotate(90deg);
}

#qa_section .qa_item.is-open .qa_icon::after{
  opacity: 0;
}

#qa_section .qa_a{
  padding: 0 18px 18px;
}

#qa_section .qa_a_inner{
  display:flex;
  gap: 14px;
  padding-top: 10px;
  border-top: 1px solid #eee;
  align-items: center;
}

#qa_section .qa_atext{
  line-height: 1.5;
  font-size: 0.95rem;
}


/********** アクセス ***********/
#access_section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  background-color: var(--orange);
  color: #fff;
  margin-bottom: 40px;
  padding: 12px 0;
}

#access_section .cv_area {
  background-color: #fff;
  border: none;
  padding: 0 12px 40px;
}

#access_section .cv_area .top {
  border: none;
  margin-bottom: 0;
}

#access_section .cv_area .bottom {
  padding-top: 32px;
  padding-bottom: 32px;
  background-color: #FFF6F3;
}


/********** フッター ***********/
footer {
  background-color: #00762C;
  color: #ffffff;
  font-size: 0.98rem;
  text-align: center;
  padding: 20px 0;
}

/********** フローティングナビ ***********/
.floating_nav {
  display: none;
}


/********** ガイドバナー ***********/
.guide-banner {
  background-color: #EAF0F5;
  border: solid 2px #004A86;
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 16px 20px;
  text-align: center;
  margin-bottom: 40px;
  justify-content: center;
  gap: 12px;

  position: relative;
  text-decoration: none;              /* aタグの下線対策 */
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

.guide-banner:hover,
.guide-banner:focus-visible{
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
  background-color: #e3eefb;          /* ほんの少し濃く */
  border-color: #003a6a;
}

.guide-banner .guide-title {
  font-size: 1.5rem;
  font-weight: 700;
  background-color: #004A86;
  color: #fff;
  border-radius: 9999px;
  margin-bottom: 12px;
  padding: 8px 12px;
  letter-spacing: 1px;
}

.guide-banner .guide-text {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.5;
}



@media screen and (max-width: 1380px) {
  .nav_wrapper.fixed {
    left: 20px;
  }
}


@media screen and (max-width: 1200px) {
  header .header_btn_area {
    gap: 12px;
  }
  h3 {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 1100px) {
  header .header_btn_area {
    gap: 12px;
  }
  .nav_wrapper.fixed {
    left: 20px;
  }
  .nav_placeholder {
    width: 205px;
  }
  .nav_wrapper {
    width: 205px;
  }
  .nav_wrapper.fixed {
    width: 205px;
  }
}

@media screen and (max-width: 749px) {
  img {
    width: 100%;
  }
  .pc_only {
    display: none !important;
  }
  .sp_only {
    display: block !important;
  }
  .nav_placeholder {
    display: none !important;
  }
  .nav_wrapper {
    display: none !important;
  }

  .container {
    display: block;
    padding: 0;
  }

  .inner {
    padding: 0 12px;
  }

  section {
    margin-bottom: 40px;
  }

  #kv_section {
    background: center/cover no-repeat url("../img/jiko_lp/kv_sp.jpg");
    aspect-ratio: 750 / 1530;
  }

  #kv_section .point {
    flex-wrap: wrap;
    bottom: 3%;
  }

  #kv_section .point img {
    width: calc((100% - 5 * 6px) / 3);
  }

  #jisseki_section h2 img {
    width: 120px;
  }

  #jisseki_section img {
    width: 80%;
  }

  #jisseki_section .p1 {
    font-size: 1.1rem;
  }

  .cv_area {
    padding: 60px 12px 40px;
  }

  .cv_area h2 {
    font-size: 1.5rem;
    line-height: 0.7;
  }

  .cv_area h2 span {
    display: block;
    font-size: 0.8rem;
    line-height: 1.2;
  }

  .cv_area .top .logo {
    flex-direction: column;
    width: 100%;
  }

  .cv_area .btn_area {
    gap: 4px;
    margin-bottom: 8px;
  }

  .cv_area .top .logo img {
    width: 80%;
    margin-bottom: 8px;
  }

  .cv_area .bottom .p1 {
    font-size: 1rem;
  }

  .cv_area .block {
    flex-direction: column;
    padding: 16px 8px 8px;
  }

  .cv_area .block .info {
    padding-left: 0;
  }

  .cv_area .block p {
    font-size: 0.8rem;
    margin-bottom: 8px;
  }

  .cv_area .block .img {
    padding-right: 0;
    border-right: none;
  }

  .cv_area .block .img img {
    margin-bottom: 8px;
  }

  .cv_area .block h3 {
    display: none;
  }

  #onayami_section h2 {
    font-size: 1.2rem;
  }

  #onayami_section h3 {
    font-size: 1.1rem;
  }

  #onayami_section .sub_title {
    font-size: 1rem;
  }

  #onayami_section .area {
    flex-direction: column;
  }

  #onayami_section .block {
    width: 90%;
    margin: 0 auto;
  }

  #feature_section h2 {
    font-size: 1.3rem;
  }

  #feature_section p.sub_title {
    font-size: 1rem;
  }

  #feature_section .area {
    grid-template-columns: repeat(1, 1fr);
  }

  #feature_section .desc h3 {
    font-size: 1.2rem;
    line-height: 1.3;
  }

  #feature_section .desc p {
    line-height: 1.5;
  }

  #if_section h2 {
    font-size: 1.2rem;
  }

  #if_section .sub_title {
    font-size: 0.95rem;
    width: 46%;
    text-align: center;
  }

  #if_section .area {
    padding: 40px 20px 24px;
  }

  #if_section h3 {
    font-size: 1rem;
    line-height: 1.2;
  }

  #if_section .bottom {
    flex-direction: column;
    gap: 16px;
  }

  #if_section .bottom img {
    width: 75%;
  }

  #if_section .p2 {
    text-align: center;
  }

  #voice_section h2 {
    font-size: 1.2rem;
  }

  #voice_section .voice_img {
    width: 80%;
  }

  #voice_section .lead {
    font-size: 1.1rem;
  }

  #staff_section h2 {
    font-size: 1.2rem;
  }

  #staff_section .lead {
    font-size: 1rem;
  }

  #staff_section .area {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }

  #staff_section .block img {
    width: 55%;
  }

  #qa_section h2 {
    font-size: 1.2rem;
  }

  #qa_section .qa_tab {
    min-width: 0;
    padding: 8px 24px 8px 8px;
  }

  .cv_area .map div {
    flex-direction: column;
  }

  .cv_area .map img {
    display: none;
  }

  .cv_area .block .shop_t {
    justify-content: center;
  }

  .guide-banner {
    display: block;
    margin: 0 20px 40px;
  }

  .guide-banner div {
    display: flex;
    align-items: center;
    padding: 0;
    text-align: left;
    margin-bottom: 20px;
    justify-content: center;
    gap: 12px;
  }

  .guide-banner .guide-text {
    font-size: 0.9rem;
  }

  .guide-banner .guide-title {
    font-size: 1.1rem;
  }

  .guide-banner img {
    width: 44%;
  }
}

@media screen and (max-width: 449px) {
  h2 {

  }
  h3 {

  }
  header .header {
    display: none;
  }
  header h1 {
    width: 150px;
  }
  header .header_sp {
    display: flex;
    padding: 8px;
    background-color: #ffffff;
    position: fixed;
    top: 0;
    z-index: 999;
    width: 100%;
  }
  header .header_sp_area {
    display: flex;
    justify-content: space-between;
  }


  .floating_nav {
    display: flex;
    padding: 12px 4px 8px;
    background-color: #FFFCDE;
    position: fixed;
    bottom: 0;
    left: 0;
    gap: 5px;
    z-index: 10;
    width: 100%;
    justify-content: center;
  }
}