@charset "utf-8";

/* ========== Mini Reset (normalize-like) ========== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; }
h1,h2,h3,h4,h5,h6,p,figure { margin: 0; font-size: inherit; font-weight: inherit; }
ul,ol { margin: 0; padding: 0; list-style: none; }
img,svg,video,canvas { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button,input,select,textarea { font: inherit; color: inherit; }
button { background: none; border: none; padding: 0; cursor: pointer; }
table { border-collapse: collapse; border-spacing: 0; }

/* ========== Tokens ========== */
:root{
  --c-main: #19A37B;
  --c-bg: #FFEC5D;
  --c-bg-soft: #FCFCF8;
  --c-line: #ccc;
  --c-text: #222;
  --container: 1200px;
  --gutter: 20px;
  /* font size */
  --fz-display: 40px;
  --fz-title: 20px;
  --fz-text-lg: 18px;
  --fz-text: 16px;
  /* font family */
  --ff-base: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP",
             -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
             "Yu Gothic", "Meiryo", sans-serif;
  --ff-display: "Noto Sans JP", "Hiragino Kaku Gothic ProN","Yu Gothic",sans-serif;
  --ff-en: 'Oswald', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ========== Text Link (inline) ========== */
.c-textLink{
  color: var(--c-main);
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-size: 100% 1px;
  background-position: 0 calc(100% - 1px);
  padding-bottom: 4px;
}
/* キーボード操作の視認性 */
.c-textLink:focus-visible{
  outline: 2px solid var(--c-main);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ========== Hover : Opacity (common) ========== */
@media (hover: hover) and (pointer: fine){
  .c-hoverOpacity{
    transition: opacity .2s ease-out;
  }
  .c-hoverOpacity:hover{
    opacity: .7;
  }
}

/* ========== Base ========== */
body {
  font-family: var(--ff-base);
  color: var(--c-text);
  font-size: var(--fz-text);
  line-height: 1.7;
  background: #fff;
}
.is-display{
  font-family: var(--ff-display);
  font-weight: 800;
}
.is-en {
  font-family: var(--ff-en);
}
.is-sp{ display:none !important; }
.is-pc{ display:block !important; }

/* =========================
  Section Head（共通）
========================= */
.c-sectionHead{
  text-align: center;
  margin-bottom: 40px;
}
.c-sectionHead__lead{
  font-size: 24px;
  line-height: 1;
}
.c-sectionHead__title{
  font-size: var(--fz-display);
  margin-bottom: 8px;
}
.c-sectionHead__sub{
  color: var(--c-main);
  line-height: 1;
}

.c-sectionBar {
  background: var(--c-main);
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  padding: 20px;
}

/* 吹き出しラベル */
.c-eyecatch{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 22px;
  border-radius: 999px;
  background: var(--c-main);
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  position: relative;
}
.c-eyecatch::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-12px;
  transform:translateX(-50%);
  border-width:13px 8px 0 8px;
  border-style:solid;
  border-color: var(--c-main) transparent transparent transparent;
}

/* 見出し */
.c-displayTitle{
  margin-top: 16px;
  font-size: var(--fz-display);
  line-height: 1.4;
  color: var(--c-text);
}
.c-pageTitle{
  margin: 0 0 40px;
  text-align: center;
  font-size: var(--fz-display);
  line-height: 1.2;
  color: var(--c-main);
}
.c-pageTitle__sml{
  font-size: 80%;
}

/* ========== Layout utilities ========== */
.container {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
}
.c-centerBlock{
  text-align: center;
}

/* =========================
  Common CTA Button
========================= */
.c-ctaBtn{
  background: #FB8B5A;
  border: 1px solid #fff;
  color: #fff;
  min-width: 420px;
  width: fit-content;
  max-width: 100%;
  min-height: 70px;
  border-radius: 999px;
  padding: 0 20px 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: var(--fz-title);
  font-weight: 700;
  transition: background-color .2s ease-out, color .2s ease-out, border-color .2s ease-out;
}
.c-ctaBtn__arrowWrap{
  position: relative;
  width: 24px;
  height: 24px;
}
.c-ctaBtn__arrow{
  position: absolute;
  inset: 0;
  transition: opacity .2s ease-out;
}
.c-ctaBtn__arrow.is-hover{
  opacity: 0;
}

@media (hover: hover) and (pointer: fine){
  .c-ctaBtn:hover{
    background: #fff;
    color: #FB8B5A;
    border-color: #FB8B5A;
  }
  .c-ctaBtn:hover .c-ctaBtn__arrow.is-default{
    opacity: 0;
  }
  .c-ctaBtn:hover .c-ctaBtn__arrow.is-hover{
    opacity: 1;
  }
}

/* ========== Header ========== */
.siteHeader__top{
  border-bottom: 1px solid #eee;
}
.siteHeader__topText{
  font-size: 11px;
  font-weight: 400;
  padding: 6px 0;
  margin-left: 12px;
}

/* Main row */
.siteHeader__main{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

/* Brand */
.siteHeader__brand{
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 420px;
}
.siteHeader__medal{
  width: 80px;
  height: auto;
}
.siteHeader__brandBody{
  display: flex;
  align-items: center;
  gap: 10px;
}
.siteHeader__brandText{
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.siteHeader__logoMark{
  width: 108px;
  height: auto;
}
.siteHeader__logoType{
  height: 28px;
  width: auto;
  display: block;
}
.siteHeader__brandMeta{
  margin-top: 6px;
  font-size: 11px;
  line-height: 1.5;
  color: var(--c-text);
  white-space: nowrap;
}

.siteHeader__contact{
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.siteHeader__tel,
.siteHeader__cta{
  flex: 0 0 auto;
}
.siteHeader__telLead{
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0;
}
.siteHeader__marker{
  background: linear-gradient(transparent 62%, var(--c-bg) 62%);
  padding: 0 2px;
}
.siteHeader__telImg{
  height: 40px;
  width: auto;
}
.siteHeader__hours{
  font-size: 12px;
  color: var(--c-text);
}
.siteHeader__cta{
  display: flex;
  align-items: center;
  gap: 8px;
}
.siteHeader__btn{
  width: 180px;
  height: 60px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  box-shadow: 0 2px 0 rgba(0,0,0,.08);
}
.siteHeader__btn--line{
  background: #00B900;
  box-shadow: 0 5px 0 #039003;
}
.siteHeader__btn--line .siteHeader__btnIco {
  width: 36px;
  height: auto;
  margin-left: -10px;
}
.siteHeader__btn--mail{
  background: #1A51A8;
  box-shadow: 0 5px 0 #123C80;
}
.siteHeader__btn--mail .siteHeader__btnIco {
  width: 29px;
  height: auto;
}
.siteHeader__btn.siteHeader__btn--mail {
  gap: 4px;
}

/* Nav */
.siteHeader__nav{
  background: var(--c-main);
}
.gnav{
  display: flex;
  align-items: stretch;
  height: 60px;
}
.gnav__item{
  flex: 1;
  border-left: 1px solid rgba(255,255,255,.32);
}
.gnav__item:last-child{
  border-right: 1px solid rgba(255,255,255,.32);
}
.gnav__link{
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: var(--fz-text);
  font-weight: 700;
  transition: color .2s ease-out;
}

/* PC hover only */
@media (hover: hover) and (pointer: fine){
  .gnav__link:hover{
    color: #FFFF81;
  }
}

/* PC only */
.mnavBtn,
.mnavPanel{
  display: none;
}

/* ========== NEWS section ========== */
.newsSec{
  padding: 80px 0 120px;
}

/* ========== Accordion ========== */
.newsAcc{
  border-top: 1px solid var(--c-line);
}
.newsAcc__item{
  border-bottom: 1px solid var(--c-line);
}
.newsAcc__btn{
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  text-align: left;
}
.newsAcc__date{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--c-main);
  color: #fff;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}
.newsAcc__ttl{
  font-size: var(--fz-text-lg);
  font-weight: 700;
}
.newsAcc__icon{
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--c-main);
  position: relative;
  flex: 0 0 auto;
}
.newsAcc__icon::before,
.newsAcc__icon::after{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  background: #fff;
  transform: translate(-50%, -50%);
}
.newsAcc__icon::after{
  transform: translate(-50%, -50%) rotate(90deg);
}
.newsAcc__item.is-open .newsAcc__icon::after{
  opacity: 0;
}

/* panel */
.newsAcc__panel{
  height: 0;
  overflow: hidden;
  transition: height .25s ease-out;
}
.newsAcc__body{
  background: var(--c-bg-soft);
  padding: 24px 80px;
}

/* =========================
  Example Section
========================= */
.exampleSec{
  background: var(--c-bg-soft);
}
.exampleHero{
  position: relative;
  padding: 80px 0 0;
}
:root{
  --example-photo-w: 46.4%;
  --example-photo-gap: 12px;
}
.exampleHero__photo{
  position: absolute;
  left: 0;
  top: -40px;
  width: var(--example-photo-w);
  max-height: 500px;
  border-radius: 0 192px 192px 0;
  overflow: hidden;
}
.exampleHero__photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.exampleHero .container{
  position: relative;
}
.exampleHero__content{
  position: relative;
  padding-bottom: 40px;
  padding-left: calc(var(--example-photo-w) + var(--example-photo-gap));
}
.exampleHero__em{
  color: #FB8B5A;
}
.exampleHero__text{
  margin-top: 20px;
  font-size: var(--fz-text-lg);
}
.exampleHero__note{
  margin-top: 16px;
  font-size: var(--fz-text-lg);
  font-weight: 700;
}
.exampleHero__calc{
  position: absolute;
  right: 0;
  top: 12px;
  width: 136px;
  height: auto;
}
.exampleBody{
  padding: 0 0 80px;
}
.exampleBody__bar{
  margin-top: 40px;
}
.exampleBody__lead{
  margin-top: 24px;
  text-align: center;
  font-size: var(--fz-text-lg);
}
.exampleBody__strong{
  margin-top: 16px;
  text-align: center;
  font-size: var(--fz-title);
  font-weight: 700;
}
.tabs{
  margin-top: 32px;
}
.tabs__head{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  gap: 6px;
  align-items: end;
  width: 100%;
  padding: 0 8px;
}
.tabs__tab{
  width: 100%;
  height: 60px;
  border-radius: 8px 8px 0 0;
  background: #777777;
  color: #fff;
  font-size: var(--fz-text-lg);
  font-weight: 700;
  line-height: 1.1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: background-color .2s ease-out;
}
.tabs__tab.is-active{
  background: #FB8B5A;
}

/* PC hover only */
@media (hover: hover) and (pointer: fine){
  .tabs__tab:hover{
    background: #FB8B5A;
  }
}

.tabs__panelWrap{
  border: 2px solid var(--c-line);
  border-top: 2px solid #FB8B5A;
  background: #fff;
  padding: 40px;
}
.tabs__panel{ display: none; }
.tabs__panel.is-show{ display: block; }
.tabsCard{
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.tabsCard__img{
  width: 124px;
  height: auto;
  flex: 0 0 auto;
}
.tabsCard__body{
  flex: 1;
}
.tabsCard__title{
  position: relative;
  font-size: 24px;
  font-weight: 700;
  padding-bottom: 8px;
  margin-bottom: 12px;
}
.tabsCard__title::before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--c-text);
}
.tabsCard__title::after{
  content: "";
  position: absolute;
  left: 52px;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #eee;
}
.tabsCard__text{
  font-size: var(--fz-text-lg);
}

/* =========================
  Store / Area Section
========================= */
.storeSec{
  padding: 80px 0;
}
.storeHero{
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 40px;
  align-items: start;
}
.storeHero__lead{
  margin-top: 20px;
  font-size: var(--fz-text-lg);
}
.storeHero__photo{
  position: relative;
  margin: 0;
}
.storeHero__photo img{
  width: 100%;
  height: auto;
  display: block;
}
.storeHero__cap{
  position: absolute;
  right: 0;
  bottom: 0;
  background: rgba(34,34,34,.8);
  color: #fff;
  font-weight: 700;
  padding: 8px 16px;
}
.storeCards{
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.storeCard{
  border: 2px solid var(--c-line);
  background: #fff;
  padding: 28px;
  position: relative;
}
.storeCard__head{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.storeCard__tag{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 12px;
  border-radius: 4px;
  background: var(--c-main);
  color: #fff;
  white-space: nowrap;
}
.storeCard__name{
  font-size: var(--fz-title);
  font-weight: 700;
}
.storeCard__meta{
  font-size: var(--fz-text-lg);
  margin-bottom: 8px;
}
.storeCard__telRow{
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.storeCard__telIco{
  width: 32px;
  height: auto;
  display: block;
}
.storeCard__tel{
  font-size: var(--fz-text-lg);
  font-weight: 700;
}
.storeCard__btn{
  position: absolute;
  bottom: 28px;
  right: 28px;
  display: block;
  padding: 8px 12px;
  border-radius: 4px;
  background: var(--c-main);
  color: #fff;
  font-weight: 700;
  transition: color .2s ease-out;
}

/* PC hover only */
@media (hover: hover) and (pointer: fine){
  .storeCard__btn:hover{
    color: #FFFF81;
  }
}

.storeSec__areaBar{
  margin-top: 60px;
}
.storeSec__areaLead{
  margin-top: 24px;
  text-align: center;
  font-size: var(--fz-title);
  font-weight: 700;
}
.areaBox{
  margin-top: 32px;
  border: 1px solid var(--c-line);
  background: #fff;
  padding: 28px 20px;
  position: relative;
}
.areaBox__scroll{
  max-height: 140px;
  overflow: auto;
  padding-right: 10px;
}
.areaBox__group + .areaBox__group{
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--c-line);
}
.areaBox__ttl{
  font-size: var(--fz-title);
  font-weight: 700;
  margin: 0 0 12px;
}
.areaBox__list{
  font-size: var(--fz-text-lg);
}
.areaBox__scroll::-webkit-scrollbar{
  width: 10px;
}
.areaBox__scroll::-webkit-scrollbar-track{
  background: #ddd;
  border-radius: 999px;
}
.areaBox__scroll::-webkit-scrollbar-thumb{
  background: var(--c-main);
  border-radius: 999px;
  border: 2px solid #ddd;
}
.areaBox__scroll::-webkit-scrollbar-button{
  width: 0;
  height: 0;
}
.areaBox__scroll{
  scrollbar-width: thin;
  scrollbar-color: var(--c-main) #ddd;
}

/* =========================
  Fee Section
========================= */
.feeSec{
  background: var(--c-main);
  padding: 80px 0;
  color: #fff;
}
.feeSec__head{
  margin-bottom: 32px;
}
.feeSec__badge{
  background: #fff;
  color: var(--c-main);
}
.feeSec__badge::after{
  border-color: #fff transparent transparent transparent;
}
.feeSec__title{
  color: #fff;
}
.feeGrid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feeItem{
  background: #fff;
  border-radius: 8px;
  padding: 12px;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  align-items: center;
  color: var(--c-text);
}
.feeItem__img{
  width: 100px;
  height: 100px;
  object-fit: contain;
  display: block;
}
.feeItem__name{
  font-size: var(--fz-title);
  font-weight: 700;
  line-height: 1.2;
}
.feeItem__sub{
  font-size: var(--fz-text);
}
.feeItem__price{
  margin-top: 8px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}
.feeSec__note{
  margin-top: 16px;
}
.feeSec__copy{
  position: relative;
  display: inline-block;
  margin-top: 40px;
  padding-bottom: 8px;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #FFFF81;
}
.feeSec__copy::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  height: 3px;
  background: #FFFF81;
}
.feeSec__cta{
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

/* =========================
  Pack (Truck) Section
========================= */
.packSec{
  padding: 80px 0;
  background: #fff;
}
.packBox{
  border: 8px solid #90C2B4;
  padding: 32px;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
  align-items: start;
}
.packBox__truck{
  width: 100%;
  height: auto;
  display: block;
}
.packBox__bar{
  margin-bottom: 20px;
}
.packBox__lead{
  font-size: var(--fz-title);
  font-weight: 700;
  color: var(--c-text);
  text-align: center;
  margin-bottom: 16px;
}
.packPlans{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.packPlan{
  text-align: center;
}
.packPlan__tag{
  min-height: 44px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: var(--fz-title);
  font-weight: 700;
  margin-bottom: 16px;
  padding: 4px 8px;
}
.packPlan__tag--kei{ background: #5DB29A; }
.packPlan__tag--big{ background: var(--c-main); }
.packPlan__priceRow{
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}
.packPlan__label{
  font-size: var(--fz-title);
  font-weight: 700;
}
.packPlan__price{
  margin: 0;
  line-height: 1;
  font-weight: 700;
}
.packPlan__num{
  font-size: 32px;
  color: #EF5353;
  letter-spacing: .02em;
}
.packPlan__yen{
  font-size: 24px;
  color: var(--c-text);
  margin-left: 4px;
}
.packPlan__visit{
  margin-top: 16px;
}
.packBox__note{
  margin: 16px 0 0;
  text-align: center;
}

/* =========================
  Payment Area
========================= */
.packPay__bar{
  margin: 48px 0 32px;
  font-size: var(--fz-title);
}
.packPay__logos{
  display: flex;
  justify-content: center;
}
.packPay__logos img{
  max-width: 100%;
  width: 1025px;
  height: auto;
  display: block;
}

/* =========================
  Service Section
========================= */
.serviceSec{
  padding: 80px 0;
  background: var(--c-bg-soft);
}
.serviceGrid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.serviceCard{
  border: 1px solid var(--c-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 5px 5px 0 rgba(0,0,0,.07);
  overflow: hidden;
}
.serviceCard__photo{
  position: relative;
  height: 184px;
}
.serviceCard__photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.serviceCard__name{
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
  z-index: 2;
  min-width: 194px;
  padding: 8px;
  border-radius: 999px;
  background: var(--c-main);
  color: #fff;
  font-size: var(--fz-title);
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}
.serviceCard__text{
  padding: 32px 20px 20px;
}

/* =========================
  Scene Box
========================= */
.sceneBox{
  margin-top: 48px;
  border: 1px solid var(--c-line);
  background: #fff;
  padding: 40px;
}
.sceneBox__ttl{
  font-size: 24px;
  font-weight: 700;
  color: var(--c-main);
  text-align: left;
  margin-bottom: 18px;
}
.sceneBox__inner{
  display: grid;
  grid-template-columns: 1fr 192px;
  gap: 24px;
  align-items: center;
}
.sceneList{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.sceneList__item{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 700;
}
.sceneList__ico{
  width: 26px;
  height: 24px;
  flex: 0 0 16px;
  display: block;
}
.sceneBox__illust img{
  width: 100%;
  height: auto;
  display: block;
}

/* CTA */
.serviceSec__cta{
  margin-top: 40px;
}

/* =========================
  License Section
========================= */
.licenseSec{
  padding: 80px 0;
  background: #fff;
}
.licenseTop{
  display: grid;
  grid-template-columns: 1fr 1.24fr;
  gap: 40px;
  align-items: start;
}
.licenseTop__docs{
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
.docShot{
  margin: 0;
  width: 230px;
}
.docShot__img{
  width: 230px;
  height: 230px;
  object-fit: cover;
  display: block;
  background: #f3f3f3;
}
.docShot__btn{
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  display: block;
}
.docShot__zoom{
  position: absolute;
  right: 8px;
  bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}
.docShot__zoom img{
  width: 16px;
  height: 16px;
  display: block;
}

/* クリックで拡大が分かる演出（hoverはPC想定） */
@media (hover: hover) and (pointer: fine){
  .docShot__btn::after{
    content:"";
    position:absolute;
    inset: 0;
    border-radius: 8px;
    background: rgba(0,0,0,0);
    transition: .2s ease-out;
  }
  .docShot__btn:hover::after{
    background: rgba(0,0,0,.08);
  }
  .docShot__btn:hover .docShot__zoom{
    transform: translateY(-2px);
    transition: transform .2s ease-out;
  }
}

.docShot__cap{
  margin-top: 12px;
  font-size: 14px;
  text-align: center;
}
.licenseTop__body .c-centerBlock{
  margin-bottom: 20px;
}
.licenseTop__text p{
  margin: 0;
  font-size: var(--fz-text-lg);
}
.licenseTop__text p + p{
  margin-top: 20px;
}

/* ---------- modal（dialog） ---------- */
.imgModal{
  border: none;
  padding: 0;
  max-width: min(92vw, 520px);
  opacity: 0;
  transform: scale(.96);
  transition: opacity .2s ease-out, transform .2s ease-out;
}
.imgModal.is-show{
  opacity: 1;
  transform: scale(1);
}
.imgModal::backdrop{
  background: rgba(0,0,0,0);
  transition: background .2s ease-out;
}
.imgModal.is-show::backdrop{
  background: rgba(0,0,0,.55);
}
.imgModal__img{
  width: 100%;
  max-width: 460px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.imgModal__close{
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(0,0,0,.6);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  display: grid;
  place-items: center;
}

.licenseBottom{
  margin-top: 60px;
}
.licenseBottom .c-sectionBar{
  margin-bottom: 24px;
}
.licenseBottom__cols{
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 40px;
  align-items: start;
}
.licenseBottom__lead{
  margin: 0;
  font-size: var(--fz-text-lg);
}
.warnList{
  margin: 28px 0;
  padding: 0;
  list-style: none;
}
.warnList__item{
  position: relative;
  padding-left: 18px;
  font-size: var(--fz-text-lg);
}
.warnList__item + .warnList__item{
  margin-top: 4px;
}
.warnList__item::before{
  content:"";
  position:absolute;
  left: 0;
  top: .85em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-main);
  transform: translateY(-50%);
}
.licenseBottom__note{
  font-size: var(--fz-text-lg);
}
.warnPoster{
  display: block;
  width: 200px;
  margin-left: auto;
}
.warnPoster img{
  width: 100%;
  height: auto;
  display: block;
}

/* =========================
  Case Study
========================= */
.caseSec{
  padding: 80px 0;
  background: var(--c-bg-soft);
}
.caseGrid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: stretch;
}
.caseCard{
  border-radius: 8px;
  height: 100%;
}
.caseCard__link{
  display: block;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 8px;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, .07);
  color: inherit;
  height: 100%;
}
.caseCard__thumb{
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #e9e9e9;
}
.caseCard__thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform .2s ease-out;
}

@media (hover: hover) and (pointer: fine){
  .caseCard__link:hover .caseCard__thumb img{
    transform: scale(1.04);
  }
}

.caseCard__cat{
  position: absolute;
  right: 0;
  bottom: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 4px 8px;
  background: var(--c-main);
  color: #fff;
  line-height: 1;
}
.caseCard__date{
  display: block;
  margin-top: 16px;
}
.caseCard__title{
  margin-top: 4px;
  font-size: var(--fz-text-lg);
  font-weight: 700;
  color: var(--c-main);
}
.caseCard__text{
  margin-top: 8px;
}
.caseSec__cta{
  margin-top: 40px;
}

/* =========================
   Voice Section
========================= */
.voiceSec {
  padding: 80px 0;
}
.voiceGrid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 40px;
  row-gap: 32px;
}
.voiceCard{
  border: 1px solid var(--c-line);
  background: #fff;
  padding: 12px;
}
.voiceCard__head{
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--c-main);
  padding: 12px;
  color: #fff;
}
.voiceCard__label{
  background: #fff;
  color: var(--c-main);
  padding: 4px 12px;
  border-radius: 999px;
  line-height: 1;
}
.voiceCard__name{
  font-size: var(--fz-text-lg);
  font-weight: 700;
  margin: 0;
}
.voiceCard__body{
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 20px 16px 16px;
  align-items: flex-start;
}
.voiceCard__avatar{
  border-radius: 50%;
}

/* =========================
  Reason Section
========================= */
.reasonSec{
  background: var(--c-main);
  padding: 80px 0;
}
.reasonSec__head{
  margin-bottom: 32px;
}
.reasonSec__badge{
  background: #fff;
  color: var(--c-main);
}
.reasonSec__badge::after {
    border-color: #fff transparent;
}
.reasonSec__title{
  color: #fff;
  margin-top: 8px;
}
.reasonSec__num{
  display: inline-block;
  font-size: 60px;
  line-height: 1;
  margin: 0 .08em;
  transform: translateY(.05em);
}
.reasonGrid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.reasonCard{
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 240px;
}
.reasonCard__media{
  margin: 0;
  width: 240px;
  height: 100%;
}
.reasonCard__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.reasonCard__body{
  padding: 24px 20px;
}
.reasonCard__ttl{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--c-main);
}
.reasonCard__no{
  font-family: var(--ff-en);
  font-size: 60px;
  line-height: .9;
  font-weight: 500;
  letter-spacing: .02em;
  flex: 0 0 auto;
}
.reasonCard__name{
  font-size: 23px;
  font-weight: 700;
  line-height: 1.4;
}

/* =========================
  FAQ Section
========================= */
.faqSec{
  padding: 80px 0;
}
.faqAcc{
  display: grid;
  gap: 20px;
}
.faqAcc__item{
  border: 2px solid var(--c-main);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.faqAcc__btn{
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 24px;
  text-align: left;
  position: relative;
}
.faqAcc__btn::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  border-bottom: 1px dashed var(--c-line);
  opacity: .9;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease-out, opacity .2s ease-out;
}
.faqAcc__item.is-open .faqAcc__btn::after{
  transform: scaleX(1);
}
.faqAcc__qMark{
  font-family: var(--ff-en);
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  color: var(--c-main);
}
.faqAcc__qTtl{
  font-size: var(--fz-title);
  font-weight: 700;
}
.faqAcc__icon{
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--c-main);
  position: relative;
  flex: 0 0 auto;
}
.faqAcc__icon::before,
.faqAcc__icon::after{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  background: #fff;
  transform: translate(-50%, -50%);
}
.faqAcc__icon::after{
  transform: translate(-50%, -50%) rotate(90deg);
}
.faqAcc__item.is-open .faqAcc__icon::after{
  opacity: 0;
}
.faqAcc__panel{
  height: 0;
  overflow: hidden;
  transition: height .25s ease-out;
}
.faqAcc__body{
  padding: 24px;
}
.faqAcc__aRow{
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}
.faqAcc__aMark{
  font-family: var(--ff-en);
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  color: #B5BFBC;
}
.faqAcc__aTxt{
  font-size: var(--fz-text-lg);
}
.faqAcc__aTxt p {
  margin-bottom: 1.5em;
}
.faqAcc__aTxt p:last-child {
  margin-bottom: 0;
}
.faqSec__cta{
  margin-top: 40px;
}

/* =========================
  Flow Section
========================= */
.flowSec{
  background: var(--c-bg);
  padding: 80px 0;
}
.flowSec__head{
  margin-bottom: 32px;
}
.flowSec__badge{
  background: #fff;
  color: var(--c-text);
}
.flowSec__badge::after{
  border-color: #fff transparent transparent transparent;
}
.flowSec__title{
  color: var(--c-text);
}
.flowSteps{
  display: grid;
  gap: 60px;
}
.flowStep{
  background: #fff;
  border-radius: 8px;
  padding: 40px 40px 40px 24px;
  position: relative;
}
.flowStep.is-hasArrow::after{
  content:"";
  position: absolute;
  left: 50%;
  bottom: -32px;
  width: 108px;
  height: 32px;
  transform: translateX(-50%);
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.flowStep__inner{
  display: grid;
  grid-template-columns: 100px 172px 1fr;
  gap: 28px;
  align-items: start;
}
.flowStep__left{
  display: flex;
  align-items: center;
  gap: 4px;
}
.flowStep__step{
  font-family: var(--ff-en);
  font-size: var(--fz-text-lg);
  font-weight: 700;
  color: var(--c-main);
  letter-spacing: .2em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  padding-top: 8px;
}
.flowStep__no{
  font-family: var(--ff-en);
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  color: var(--c-main);
  position: relative;
  padding-right: 20px;
  margin-right: 20px;
}
.flowStep__no::after{
  content: "";
  position: absolute;
  top: 56%;
  right: 0;
  width: 2px;
  height: 44px;
  background: var(--c-main);
  transform: translateY(-50%);
}
.flowStep__ttl{
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
}
.flowStep__desc{
  font-size: var(--fz-text);
  margin: 0;
}
.flowStep__ctaRow{
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 8px;
  align-items: stretch;
}
.flowCta{
  display: grid;
  grid-template-rows: auto auto;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  background: #FF8A4A;
  color: #fff;
  box-shadow: 0 5px 0 #D66C3E;
  text-decoration: none;
}
.flowCta__mainRow{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.flowCta__ico{
  width: 28px;
  height: auto;
}
.flowCta__main{
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}
.flowCta__sub{
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
}
.flowCtaBtn{
  width: 100%;
  height: auto;
  padding: 0 16px;
  min-height: 64px;
  justify-content: center;
}
.flowSec__cta {
  margin-top: 40px;
}

/* ========== Footer ========== */
.siteFooter{
  background: var(--c-bg-soft);
}
.siteFooter .container {
  padding: 60px 0;
}
.siteFooter__inner{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
}
.siteFooter__catch{
  margin: 0 0 12px;
  line-height: 1.4;
}
.siteFooter__brandTop{
  display: flex;
  align-items: center;
  gap: 20px;
}
.siteFooter__logo{
  width: 128px;
  height: auto;
  flex: 0 0 auto;
}
.siteFooter__name{
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 12px;
}
.siteFooter__permit{
  font-size: 12px;
  line-height: 1.6;
  margin: 0;
}
.siteFooter__contact{
  margin-top: 28px;
}
.siteFooter__tel{
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
}
.siteFooter__telIco{
  width: 30px;
  height: auto;
  flex: 0 0 auto;
}
.siteFooter__telNum{
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
}
.siteFooter__addr{
  font-size: var(--fz-text-lg);
  line-height: 1.7;
  margin: 0;
}
.siteFooter__nav{
  justify-self: end;
  width: 540px;
}
.siteFooter__navList{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
  column-gap: 40px;
  justify-content: flex-end;
}
.siteFooter__navLink{
  color: var(--c-text);
  font-weight: 700;
  line-height: 1.2;
  transition: color .2s ease-out;
}

/* PC hover only */
@media (hover: hover) and (pointer: fine){
  .siteFooter__navLink:hover{
    color: var(--c-main);
  }
}

.siteFooter__copy{
  background: var(--c-main);
  color: #fff;
  padding: 12px 0;
}
.siteFooter__copyTxt{
  margin: 0;
  text-align: center;
}

/* ========== Fixed LINE CTA ========== */
.lineFixedCta{
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 1000;
}
.lineFixedCta__btn{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  min-height: 68px;
  background: #00B900;
  box-shadow: 0 5px 0 #039003;
  border-radius: 8px 8px 0 0;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  width: auto;
  max-width: 100%;
}
.lineFixedCta__ico{
  width: 42px;
  height: auto;
  flex: 0 0 auto;
}
.lineFixedCta__main{
  font-size: 28px;
  line-height: 1.2;
  white-space: nowrap;
}
.lineFixedCta__badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 8px;
  background: #fff;
  color: #EF5353;
  font-size: 22px;
  line-height: 1.1;
  white-space: nowrap;
}
.lineFixedCta{
  transition: transform .3s ease, opacity .3s ease;
}
.lineFixedCta.is-hide{
  transform: translate(-50%, 100%);
  opacity: 0;
  pointer-events: none;
}

@media (hover: hover) and (pointer: fine){
  .lineFixedCta__btn{
    transition: transform .2s ease-out, box-shadow .2s ease-out;
  }
  .lineFixedCta__btn:hover{
    transform: translateY(-5px);
    box-shadow: 0 7px 0 #039003;
  }
}

/* ========== PageTop ========== */
.pageTop{
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 48px;
  height: 48px;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .25s ease-out, transform .25s ease-out;
}
.pageTop.is-show{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.pageTop img{
  width: 100%;
  height: auto;
  display: block;
}

@media (hover: hover) and (pointer: fine){
  .pageTop{
    transition: transform .2s ease-out;
  }
  .pageTop:hover{
    transform: translateY(-5px);
  }
}

/* ========== Subpage Hero ========== */
.subHero{
  height: 200px;
  background: linear-gradient(to bottom, #FCFCF8 0%, #F5F8E3 100%);
  position: relative;
  background-image:
    url("../img/common/bg-leaf.png"),
    linear-gradient(to bottom, #FCFCF8 0%, #F5F8E3 100%);
  background-repeat: no-repeat, no-repeat;
  background-size: auto 100%, auto;
  background-position: right 64px center, left top;
}
.subHero__inner{
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}
.subHero__title{
  font-size: var(--fz-display);
  line-height: 1.2;
  margin: 0;
  color: #502116;
}
.subHero__sub{
  margin: 0;
  font-family: var(--ff-en);
  font-size: var(--fz-title);
  color: var(--c-main);
  letter-spacing: .08em;
}

/* ========== Breadcrumb ========== */
.breadcrumb{
  padding: 12px 0;
}
.breadcrumb__list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  font-size: 14px;
  line-height: 1.4;
}
.breadcrumb__link{
  color: var(--c-main);
  text-decoration: none;
}

/* =========================
  Service Page Main Content
========================= */
.servicePageSec{
  padding: 72px 0 80px;
}
.servicePageIntro{
  text-align: center;
  margin-bottom: 80px;
}
.servicePageIntro__title{
  margin: 0;
  font-size: var(--fz-display);
  line-height: 1.35;
  color: var(--c-text);
}
.servicePageIntro__emp{
  color: #FB8B5A;
}
.servicePageIntro__sml{
  font-size: 32px;
}
.servicePageIntro__text{
  margin-top: 32px;
}
.servicePageIntro__text p{
  font-size: var(--fz-text-lg);
}
.serviceItems__ttl{
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: var(--c-main);
  margin: 0 0 20px;
}
.serviceItems__box{
  border: 5px solid var(--c-main);
  background: #fff;
  padding: 32px;
}
.serviceItems__grid{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px 28px;
  align-items: center;
  justify-items: center;
}
.serviceItems__item{
  display: grid;
  grid-template-columns: 100px auto;
  gap: 20px;
  align-items: center;
  justify-items: start;
  width: 100%;
}
.serviceItems__img{
  width: 100px;
  height: 100px;
  object-fit: contain;
  display: block;
}
.serviceItems__name{
  font-size: var(--fz-text-lg);
  font-weight: 700;
  line-height: 1.4;
}
.serviceItems__note{
  text-align: center;
  background: var(--c-bg-soft);
  padding: 28px;
  font-weight: bold;
  margin-top: 24px;
}
.serviceDetail{
  margin-top: 80px;
  display: grid;
  gap: 60px;
}
.serviceBlock{
  border: 6px solid var(--c-main);
  background: #fff;
}
.serviceBlock__bar{
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-main);
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 16px;
}
.serviceBlock__inner{
  padding: 40px 40px 0;
  display: grid;
  grid-template-columns: 1fr 450px;
  gap: 28px;
  align-items: start;
}
.serviceBlock__photo{
  margin: 0 auto;
  max-width: 450px;
  width: 100%;
}
.serviceBlock__photo img{
  width: 100%;
  height: auto;
  display: block;
}
.serviceBlock__lead{
  margin: 0 0 16px;
  font-size: 28px;
  font-weight: 700;
  color: var(--c-main);
  line-height: 1.55;
}
.serviceBlock__desc p{
  font-size: var(--fz-text-lg);
  margin-bottom: 1.5em;
}
.serviceBlock__desc p:last-child {
  margin-bottom: 0;
}
.serviceBlock__cta{
  padding: 32px 40px 40px;
}

/* =========================
  Fee Pack Section
========================= */
.feePackSec{
  padding: 108px 0 80px;
}
.feePackGrid{
  display: grid;
  gap: 76px;
}
.feePackBlock{
  border: 4px solid var(--c-main);
  background: #fff;
  padding: 48px;
  position: relative;
}
.feePackBlock__bar{
  position: absolute;
  left: -4px;
  top: -16px;
  min-width: 584px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  background: var(--c-main);
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  margin: 0;
}
.feePackBlock__bar span {
  font-size: 80%;
  display: inline-block;
  padding-right: 0.4em;
}
.feePackBlock__bar::after{
  content:"";
  position: absolute;
  right: -40px;
  top: 0;
  width: 40px;
  height: 70px;
  background: var(--c-main);
  clip-path: polygon(
    0 0,
    100% 0,
    0 100%
  );
}
.feePackBlock__grid{
  display: grid;
  gap: 28px;
}

/* =========================
  Top row
========================= */
.feePackTop{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}
.feePackPhoto{
  margin: 0 auto;
  max-width: 530px;
  width: 100%;
  justify-self: stretch;
  padding-top: 12px;
}
.feePackPhoto img{
  width: 100%;
  height: auto;
  display: block;
}
.feePackPrice {
  padding-top: 48px;
  text-align: center;
}
.feePackPrice__eyecatch{
  font-size: var(--fz-title);
  min-width: 370px;
}
.feePackPrice__row{
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}
.feePackPrice__plan{
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: var(--c-main);
}
.feePackPrice__label{
  margin: 0;
  font-size: var(--fz-title);
  font-weight: 700;
}
.feePackPrice__price{
  margin: 0;
  line-height: 1;
  font-weight: 700;
}
.feePackPrice__num{
  font-size: var(--fz-display);
  color: #FB8B5A;
  letter-spacing: .02em;
}
.feePackPrice__yen{
  font-size: 24px;
  margin-left: 6px;
}
.feePackPrice__visit{
  margin: 12px 0 0;
  padding: 12px 32px;
  background: var(--c-bg-soft);
  font-size: var(--fz-text-lg);
  text-align: center;
  display: inline-block;
}
.feePackPrice__notes{
  margin: 20px 0 0;
  color: #555;
}

/* =========================
  Bottom row
========================= */
.feePackBottom{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}
.feePackExamples{
  background: var(--c-bg-soft);
  padding: 32px 20px;
}
.feePackExamples__ttl{
  margin: 0 0 20px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--c-main);
}
.feePackExamples__list{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.feePackExamples__item{
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}
.feePackExamples__img{
  width: 110px;
  height: 110px;
  object-fit: contain;
  display: block;
}
.feePackExamples__name{
  font-weight: 700;
  line-height: 1.35;
}
.feePackLayout{
  max-width: 530px;
  width: 100%;
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feePackLayout__inner{
  width: 100%;
  display: grid;
  gap: 8px;
  align-content: center;
  justify-items: center;
  padding: 40px;
  border: 1px solid var(--c-line);
  background: #fff;
}
.feePackLayout__ttl{
  margin: 0;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--c-main);
}
.feePackLayout__size{
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
}
.feePackLayout__frame{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feePackLayout__img{
  max-width: 390px;
  width: 100%;
  height: auto;
  display: block;
}
.feePackLayout__img.t2 {
  max-width: 465px;
}
.feePackSec .packPay__bar {
  margin-top: 80px;
}

/* =========================
  Fee List Section
========================= */
.feeListSec{
  padding: 40px 0 80px;
}
.feeNotes{
  background: var(--c-bg-soft);
  padding: 48px;
}
.feeNotes__list{
  margin: 0 auto;
  max-width: 836px;
  display: grid;
  gap: 16px;
}
.feeNotes__item{
  position: relative;
  padding-left: 36px;
}
.feeNotes__item::before{
  content:"";
  position: absolute;
  left: 0;
  top: .35em;
  width: 26px;
  height: 24px;
  background: url("../img/icon-check.png") no-repeat center / contain;
}
.feeAnchorNav{
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
}
.feeAnchorNav__btn{
  width: 100%;
  padding: 16px;
  border-radius: 4px;
  background: var(--c-main);
  color: #fff;
  font-size: var(--fz-text-lg);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.feeAnchorNav__arrow{
  width: 12px;
  height: auto;
  display: block;
  transition: transform .2s ease-out;
}

@media (hover: hover) and (pointer: fine){
  .feeAnchorNav__btn:hover .feeAnchorNav__arrow{
    transform: translateY(4px);
  }
}

.feeCatBar{
  margin: 60px 0 40px;
  padding: 16px;
  background: var(--c-main);
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
}
.feeCatBar__sml{
  font-size: var(--fz-title);
}
.feeTables{
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}
.feeTable{
  width: 100%;
  border: 2px solid var(--c-main);
  border-collapse: collapse;
  background: #fff;
}
.feeTable th,
.feeTable td{
  border: 1px solid var(--c-main);
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.5;
  vertical-align: top;
}
.feeTable th{
  background: #E7F2EF;
  font-size: var(--fz-text-lg);
  font-weight: 700;
  text-align: center;
  width: 50%;
}
.feeTable__price{
  text-align: right;
  white-space: nowrap;
}
.feeTableCol{
  display: grid;
  gap: 16px;
}
.feeTable__note{
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #555;
  line-height: 1.4;
  font-weight: 400;
}
.feeTable th .feeTable__note{
  margin-top: 8px;
}
.feeTable__sticky{
  position: sticky;
  top: 60px;
}
.feeExample{
  margin-top: 20px;
  text-align: center;
}
.feeExample__img{
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.feeExample__cap{
  margin: 16px 0 0;
  font-size: var(--fz-text-lg);
}

/* =========================
  Case Section
========================= */
.caseArchiveSec{
  margin-top: 60px;
  padding: 80px 0;
  background: var(--c-bg-soft);
}
.caseArchiveGrid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  align-items: stretch;
}
.caseArchiveCard{
  height: 100%;
  position: relative;
}
.caseArchiveCard__link{
  height: 100%;
  display: flex;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--c-line);
  box-shadow: 5px 5px 0 rgba(0, 0, 0, .07);
  border-radius: 8px;
}
.caseArchiveCard__thumb{
  margin: 0;
  width: 200px;
  height: 200px;
  flex: 0 0 auto;
  overflow: hidden;
  background: #eee;
  border-radius: 8px;
}
.caseArchiveCard__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1);
  transition: transform .2s ease-out;
}

@media (hover: hover) and (pointer: fine){
  .caseArchiveCard__link:hover .caseArchiveCard__img{
    transform: scale(1.04);
  }
}

.caseArchiveCard__body{
  display: grid;
  gap: 8px;
  align-content: start;
  padding-top: 4px;
}
.caseArchiveCard__tag{
  position: absolute;
  top: 20px;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 20px;
  background: var(--c-main);
  color: #fff;
  font-size: var(--fz-text);
  line-height: 1.2;
}
.caseArchiveCard__meta{
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}
.caseArchiveCard__title{
  margin: 0;
  font-size: var(--fz-text-lg);
  font-weight: 700;
  color: var(--c-main);
}
.caseArchiveCard__excerpt{
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* =========================
  PageNavi (WP-PageNavi)
========================= */
.casePagenavi{
  margin-top: 60px;
}
.wp-pagenavi{
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.wp-pagenavi a,
.wp-pagenavi span{
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--c-line);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: var(--fz-text);
  line-height: 1;
  background: #fff;
  color: #999;
}
.wp-pagenavi span.current{
  background: var(--c-main);
  border-color: var(--c-main);
  color: #fff;
  font-weight: 700;
}
.wp-pagenavi span.extend{
  border-color: transparent;
  background: transparent;
  min-width: auto;
}
.voiceArchiveSec{
  padding: 80px 0;
  background: var(--c-main);
}
.voiceArchiveSec__title{
  color: #fff;
}

/* =========================
  Case Single
========================= */
.caseSingleSec{
  margin-top: 60px;
  padding: 80px 0;
  background: var(--c-bg-soft);
}
.caseSingleSec .container{
  max-width: 1000px;
}
.caseSingleArticle{
  padding: 60px;
  background: #fff;
  border: 4px solid var(--c-main);
}
.caseSingleHead{
  margin-bottom: 28px;
}
.caseSingleTitle{
  margin: 0 0 16px;
  padding-bottom: 16px;
  font-size: 32px;
  line-height: 1.5;
  font-weight: 700;
  color: var(--c-main);
  border-bottom: 1px solid var(--c-line);
}
.caseSingleMeta{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.caseSingleDate{
  font-size: var(--fz-text);
}
.caseSingleTag{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 20px;
  background: var(--c-main);
  color: #fff;
  font-size: var(--fz-text);
  line-height: 1.2;
}
.caseSingleBody{
  font-size: var(--fz-text-lg);
  line-height: 2;
}
.caseSingleBody p{
  margin: 0 0 1.5em;
}
.caseSingleBody p:last-child{
  margin-bottom: 0;
}
.caseSingleFigure{
  margin: 32px auto 0;
  text-align: center;
}
.caseSingleImg{
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.caseSingleNav{
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.caseSingleNav {
  margin-top: 28ox;
}
.caseSingleNav a{
  font-size: var(--fz-text);
}
.caseSingle__cta {
  margin-top: 28px;
}

/* =========================
  Flow Section
========================= */
.requestFlowSec{
  padding: 72px 0 80px;
}
.requestFlowSec__title{
  margin-bottom: 52px;
}
.requestFlowSteps{
  display: grid;
  gap: 72px;
}
.requestFlowStep{
  position: relative;
}
.requestFlowStep__frame{
  position: relative;
  padding: 52px 40px 40px;
  background: #fff;
  border: 4px solid var(--c-main);
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 40px;
}
.requestFlowStep__frame::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-40px;
  transform:translateX(-50%);
  width:0;
  height:0;
  border-style:solid;
  border-width:40px 100px 0 100px;
  border-color:var(--c-main) transparent transparent transparent;
}
.requestFlowStep:not(.is-last) .requestFlowStep__frame::before{
  content:"";
  position:absolute;
  left:50%;
  bottom:-36px;
  transform:translateX(-50%);
  width:0;
  height:0;
  border-style:solid;
  border-width:36px 96px 0 96px;
  border-color:#fff transparent transparent transparent;
}
.requestFlowStep.is-last .requestFlowStep__frame::after,
.requestFlowStep.is-last .requestFlowStep__frame::before{
  content:none;
}
.requestFlowStep__side{
  position: relative;
  width: 240px;
  display: block;
  padding-top: 12px;
}
.requestFlowStep__step{
  position: absolute;
  top: -20px;
  left: -12px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--ff-en);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .2em;
  line-height: 1;
  color: var(--c-main);
}
.requestFlowStep__num{
  position: absolute;
  top: -32px;
  left: 20px;
  font-family: var(--ff-en);
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
  color: var(--c-main);
  -webkit-text-stroke:8px #fff;
  paint-order:stroke fill;
  /* フォールバック（Firefoxなど） */
  text-shadow:
    3px 3px 0 #fff,
   -3px 3px 0 #fff,
    3px -3px 0 #fff,
   -3px -3px 0 #fff,
    0 3px 0 #fff,
    0 -3px 0 #fff,
    3px 0 0 #fff,
   -3px 0 0 #fff,
    6px 6px 0 #fff,
   -6px 6px 0 #fff,
    6px -6px 0 #fff,
   -6px -6px 0 #fff,
    0 6px 0 #fff,
    0 -6px 0 #fff,
    6px 0 0 #fff,
   -6px 0 0 #fff;
}
.requestFlowStep__photo{
  width: 240px;
  height: 240px;
  margin: 0;
}
.requestFlowStep__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.requestFlowStep__main{
  min-width: 0;
}
.requestFlowStep__title{
  margin: 0 0 20px;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  background: var(--c-main);
  padding: 8px 40px;
  display: inline-block;
}
.requestFlowStep__text{
  margin-bottom: 1.5em;
  font-size: var(--fz-text-lg);
}
.requestFlowStep__text:last-child {
  margin-bottom: 0;
}
.requestFlowBoxes{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 32px;
}
.requestFlowBox{
  border: 1px solid var(--c-line);
  background: #fff;
}
.requestFlowBox__head{
  margin: 0;
  padding: 8px 16px;
  background: var(--c-main);
  color: #fff;
  font-size: var(--fz-title);
  font-weight: 700;
  text-align: center;
}
.requestFlowBox__body{
  padding: 20px;
}
.requestFlowBox__lead{
  margin: 0 0 16px;
  font-size: 15px;
}
.requestFlowBox__item{
  background: var(--c-bg-soft);
  padding: 16px;
  margin-bottom: 20px;
}
.requestFlowBox__item:last-child {
  margin-bottom: 0;
}
.requestFlowBox__itemTitle{
  margin: 0 0 10px;
  font-size: var(--fz-text-lg);
  font-weight: 700;
  color: var(--c-main);
  text-align: center;
}
.requestFlowBox__note p{
  margin: 0;
  font-size: 15px;
}
.requestFlowBox__warn{
  margin-top: 20px;
  padding: 16px;
  background: #FB8B5A;
  color: #fff;
}
.requestFlowBox__warn p{
  margin: 0;
  font-size: 15px;
}

/* =========================
  FAQ Section
========================= */
.faqPageSec{
  padding: 72px 0 80px;
}
.faqPageSec .container {
  max-width: 1000px;
}
.faqSec__title{
  margin-bottom: 52px;
}
.faqAnchorNav{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}
.faqAnchorNav__btn{
  width: 100%;
  padding: 16px;
  border-radius: 4px;
  background: var(--c-main);
  color: #fff;
  font-size: var(--fz-text-lg);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.faqAnchorNav__arrow{
  width: 12px;
  height: auto;
  display: block;
  transition: transform .2s ease-out;
}

@media (hover: hover) and (pointer: fine){
  .faqAnchorNav__btn:hover .faqAnchorNav__arrow{
    transform: translateY(4px);
  }
}

.faqSec__block {
  margin-top: 60px;
}
.faqSec__subTitle {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--c-main);
  margin-bottom: 40px;
  text-align: center;
}

/* =========================
  Company Greeting
========================= */
.companyGreetingSec{
  position: relative;
  overflow: hidden;
  padding: 72px 0 120px;
}
.companyGreetingSec__title {
  margin-bottom: 120px;
}
.companyGreeting{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 47.1%;
  align-items: center;
  gap: 40px;
}
.companyGreeting__media{
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-52%);
  width: 47.1%;
  max-height: 540px;
  overflow: hidden;
  border-top-left-radius: 220px;
  border-bottom-left-radius: 220px;
}
.companyGreeting__img{
  width: 100%;
  height: 100%;
  max-height: 540px;
  object-fit: cover;
  display: block;
}
.companyGreeting__body{
  position: relative;
  z-index: 1;
}
.companyGreeting__lead{
  position: relative;
  margin: 0 0 32px;
  font-size: 28px;
  font-weight: 700;
  color: var(--c-main);
  line-height: 1.35;
}
.companyGreeting__leadBg{
  position: absolute;
  left: -20px;
  top: -120px;
  font-family: var(--ff-en);
  font-size: 120px;
  letter-spacing: .08em;
  color: color-mix(in srgb, var(--c-main) 7%, transparent);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

@supports not (color: color-mix(in srgb, #000 50%, transparent)){
  .companyGreeting__leadBg{
    color: rgba(25,163,123,.07);
  }
}

.companyGreeting__text p{
  margin: 0 0 1.6em;
  font-size: var(--fz-text-lg);
  line-height: 1.8;
}
.companyGreeting__sign{
  font-size: var(--fz-text-lg);
  text-align: right;
}

/* =========================
  Company Overview
========================= */
.companyOverviewSec {
  padding-bottom: 120px;
}
.companyOverviewSec__title {
  margin-bottom: 48px;
}
.companyOverviewTable{
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--c-main);
}
.companyOverviewTable th,
.companyOverviewTable td{
  padding: 24px 32px;
  border-bottom: 1px solid var(--c-main);
  border-right: 1px solid var(--c-main);
  font-size: var(--fz-text-lg);
  line-height: 1.6;
  text-align: left;
}
.companyOverviewTable th{
  background: var(--c-main);
  color: #fff;
  font-weight: 700;
  width: 25%;
  border-bottom: 1px solid #fff;
}
.companyOverviewTable tr td:last-child{
  border-right: none;
}
.companyOverviewTable tr:last-child th,
.companyOverviewTable tr:last-child td{
  border-bottom: none;
}

/* =========================
  Company Access
========================= */
.companyAccessSec {
  padding-bottom: 80px;
}
.companyOverviewSec__title {
  margin-bottom: 48px;
}
.companyAccessGrid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.companyAccessMap{
  width: 100%;
  aspect-ratio: 16/10;
  margin-bottom: 20px;
}
.companyAccessMap iframe{
  width: 100%;
  height: 100%;
  border: 0;
}

/* =========================
  Contact CTA
========================= */
.contactCtaSec {
  padding: 72px 0 88px;
}
.contactCtaSec__title{
  text-align:center;
  margin-bottom:48px;
}
.contactCtaSec__lead{
  text-align:center;
  margin-bottom:40px;
  font-size:var(--fz-text-lg);
}
.contactCtaGrid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}
.contactTelCard,
.contactLineCard{
  border:2px solid var(--c-main);
  padding:40px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  height:100%;
}
.contactTelCard__lead{
  font-size: var(--fz-title);
  font-weight:700;
  text-align:center;
  margin-bottom:4px;
}
.contactTelCard__telRow{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  margin-bottom:4px;
}
.contactTelCard__telIco{
  width:60px;
}
.contactTelCard__tel{
  font-size:44px;
  font-weight:700;
}
.contactTelCard__time{
  text-align:center;
}
.contactLineCard{
  align-items:center;
  text-align:center;
}
.contactLineCard__lead{
  font-size: var(--fz-title);
  font-weight:700;
  margin-bottom:28px;
}

/* =========================
  Contact Form
========================= */
.contactFormSec {
  padding-bottom: 80px;
}
.contactFormSec__title{
  margin-bottom: 48px;
}
.contactFormSec__lead{
  margin: 0 0 40px;
  text-align: center;
  font-size: var(--fz-text-lg);
}
.contactFormTable{
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--c-main);
  background: #fff;
}
.contactFormTable th,
.contactFormTable td{
  padding: 24px 32px;
  border-bottom: 1px solid var(--c-main);
  border-right: 1px solid var(--c-main);
  font-size: var(--fz-text-lg);
  line-height: 1.6;
  text-align: left;
  vertical-align: middle;
}
.contactFormTable th{
  background: var(--c-main);
  color: #fff;
  font-weight: 700;
  width: 25%;
  border-bottom: 1px solid #fff;
  /* display:flex は使わない */
}
.contactFormTable tr td:last-child{
  border-right: none;
}
.contactFormTable tr:last-child th,
.contactFormTable tr:last-child td{
  border-bottom: none;
}
.contactFormTh{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  width: 100%;
}
.contactFormTh__label{
  min-width: 0;
}
.contactFormTable__req{
  flex: 0 0 auto;
  margin-left: auto;
  padding: 4px 12px;
  border-radius: 999px;
  background: #fff;
  color: #FB8B5A;
  font-size: 14px;
  line-height: 1;
}
.wpcf7-form-control{
  width: 100%;
  max-width: 100%;
  border: 1px solid var(--c-line);
  padding: 8px;
  font-size: var(--fz-text);
  line-height: 1.4;
  background: #fff;
}
.wpcf7-textarea{
  min-height: 200px;
  resize: vertical;
}
.contactFormActions{
  margin-top: 48px;
  text-align: center;
}
.contactFormSubmit{
  width: auto;
  min-width: 320px;
  padding: 24px;
  border: none;
  background: var(--c-main);
  color: #fff;
  font-size: var(--fz-text-lg);
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
}

/* =========================
  Privacy Policy
========================= */
.privacySec {
  padding: 72px 0 80px;
}
.privacySec .container {
  max-width: 800px;
}
.privacySec__title {
  margin-bottom: 48px;
}
.privacySec__text {
  margin: 24px 0 40px;
}
.privacySec__text p {
  margin-bottom: 1.6em;
}
.privacySec__text p:last-child {
  margin-bottom: 0;
}

/* =========================
  MV
========================= */
.mv{
  height: calc(100vh - 92px);
  min-height: 540px;
  background: #FFFDED;
  overflow: hidden;
}
.mv__inner{
  position: relative;
  height: 100%;
}
.mv__right{
  margin: 0;
  height: 100%;
  width: 41.8%;
  margin-left: auto;
  overflow: hidden;
}
.mv__illust{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
}
.mv__left{
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width: 68%;
  max-width: 860px;
  padding-top: clamp(8px, 0.9vw, 20px);
  padding-left: clamp(20px, 7vw, 56px);
}
.mv__left *{
  pointer-events: auto;
}
.mv__eyebrow{
  margin: 0 0 clamp(8px, 0.8vw, 12px);
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 700;
  color: #3a2a22;
}
.mv__eyebrowStrong{
  position: relative;
  display: inline-block;
  z-index: 0;
}
.mv__eyebrowStrong::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0.12em;
  width:100%;
  height:0.35em;
  background: var(--c-bg);
  z-index:-1;
}
.mv__tags{
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(12px, 0.1vw, 20px);
}
.mv__tag{
  padding: 10px 20px;
  border-radius: 8px;
  background: var(--c-main);
  color: var(--c-bg);
  font-weight: 700;
  font-size: clamp(20px, 1.7vw, 28px);
  line-height: 1;
}
.mv__lead{
  margin: 0;
  font-size: clamp(40px, 3.1vw, 48px);
}
.mv__lead span {
  font-size: 74%;
}
.mv__title{
  margin-top: -2.8vw;
  line-height: 1.02;
  color: #FF0000;
  font-size: clamp(60px, 6.4vw, 80px);
  letter-spacing: -0.05em;
}
.mv__title strong {
  font-size: 135%;
}
.mv__titleLine{
  display: inline-block;
  padding: 0 .18em;
  background: linear-gradient(transparent 84%, var(--c-bg) 60%);
}
.mv__cta{
  align-self: end;
  margin-top: clamp(12px, 1vw, 20px);
}
.mv__ctaBtn{
  display: inline-block;
  max-width: 100%;
  transition: transform .2s ease-out;
}
.mv__ctaImg{
  width: min(860px, 100%);
  height: auto;
  display: block;
}

@media (hover: hover) and (pointer: fine){
  .mv__ctaBtn:hover{
    transform: translateX(8px);
  }
}



















