@charset "UTF-8";
/* 画面全体のオーバーレイ */
.wrap_popup {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

/* 表示状態のフラグ（JSでaria-hidden切替） */
.wrap_popup[aria-hidden=false] {
  display: flex;
}

/* ダイアログ */
.area_popup {
  padding: 16px;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

/* カード本体 */
.content_qr {
  position: relative;
  width: min(92vw, 360px);
  background: #fff;
  border-radius: 14px;
  padding: 50px 20px 50px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(6px) scale(0.98);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
@media screen and (min-width: 641px) {
  .content_qr {
    width: min(92vw, 480px);
  }
}

.content_qr .image {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

/* 表示時のアニメ最終状態 */
.wrap_popup[aria-hidden=false] .content_qr {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.content_qr .title {
  display: block;
  margin: 14px 0 6px;
  font-size: 16px;
  font-weight: 700;
}

.content_qr .desc {
  margin: 0;
  font-size: 13px;
  opacity: 0.85;
  line-height: 1.5;
}

/* 閉じるボタン（右上） */
.button_close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: 0;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 6px;
}

body.is-locked {
  overflow: hidden; /* 背景スクロールロック */
  touch-action: none; /* iOS系での微スクロール抑制 */
}

/*=====================
  共通スタイル
======================*/
* {
  box-sizing: border-box;
}

@media screen and (max-width: 640px) {
  html {
    font-size: 3.466vw;
    height: 100%;
    scroll-behavior: smooth;
  }
}
@media screen and (min-width: 641px) {
  html {
    font-size: 16px;
  }
}
body {
  font-family: "Noto Sans JP", "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: black;
  line-height: 1.6;
  margin: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: justify;
  overflow-x: hidden;
  line-height: 1.8rem;
}

/* ページの先頭に戻るボタン */
.container960 {
  width: 95%;
  margin: 0 auto;
  padding: 3rem 0;
}

.container720 {
  width: 95%;
  margin: 0 auto;
  padding: 3rem 0;
}

@media screen and (min-width: 641px) {
  .container960 {
    width: 960px;
  }
  .container720 {
    width: 720px;
  }
}
.br-sp {
  display: block;
}

@media screen and (min-width: 641px) {
  .br-sp {
    display: none;
  }
}
.br-pc {
  display: block;
}

@media screen and (max-width: 640px) {
  .br-pc {
    display: none;
  }
}
.spacer-sm {
  display: block;
  height: 0.5rem;
}

@media screen and (min-width: 641px) {
  .spacer-sm {
    display: block;
    height: 10px;
  }
}
.spacer {
  display: block;
  height: 1rem;
}

body .pc-item {
  display: none !important;
}

body .sp-item {
  display: block !important;
}

@media screen and (min-width: 641px) {
  body .pc-item {
    display: block !important;
  }
  body .sp-item {
    display: none !important;
  }
}
.grid {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 641px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
  }
}

/* ボタン共通 */
.rollover {
  background: #329a1e;
  color: #fff;
  transition: background-color 0.2s;
}

/* ホバー/フォーカス時だけ少し濃く */
.rollover:is(:hover, :focus-visible) {
  background: rgb(41.6847826087, 128.3891304348, 25.0108695652);
}

/*ページ内リンク下げる*/
.contact {
  display: block;
  padding-top: 10px;
  margin-top: -10px;
}

.mail__form {
  display: block;
  padding-top: 0px;
  margin-top: -20px;
}

/*=====================
  マージン・パディング
======================*/
.mb-sm, .voice-img-top img {
  margin-bottom: 0.5rem !important;
}

.mb-md, .nayami .nayami-txt, .campaign .campaign-images, .campaign .campaign-txt02, .price .box-green, .contact .box-green img, .circle, .triangle-02, .triangle {
  margin-bottom: 1.5rem !important;
}

.mb-ml, .contact .box-green, .contact__tel__line .label {
  margin-bottom: 2.5rem !important;
}

.mb-lg, .main-title {
  margin-bottom: 4rem !important;
}
@media screen and (min-width: 641px) {
  .mb-lg, .main-title {
    margin-bottom: 60px !important;
  }
}

.pb-sm {
  padding-bottom: 16px !important;
}

.pb-lg {
  padding-bottom: 80px !important;
}
@media screen and (min-width: 641px) {
  .pb-lg {
    padding-bottom: 50px !important;
  }
}

/*=====================
  フォント
======================*/
.font-ss {
  font-size: 0.7rem;
  line-height: 1.8rem;
}
@media screen and (min-width: 641px) {
  .font-ss {
    font-size: 14px;
  }
}

.font-sm, .price .contact-txt, .reason-cont .reason-desc, .flow-cont .flow-desc, .voice-desc-b, .faq__a, .contact__tel__line .tel__hours, .contact__tel__line .line__hours, .footer .menu li {
  font-size: 1rem;
  line-height: 2rem;
  font-weight: 500;
}
@media screen and (min-width: 641px) {
  .font-sm, .price .contact-txt, .reason-cont .reason-desc, .flow-cont .flow-desc, .voice-desc-b, .faq__a, .contact__tel__line .tel__hours, .contact__tel__line .line__hours, .footer .menu li {
    font-size: 16px;
  }
}

.font-md, .nayami .nayami-txt, .campaign .campaign-txt02, .price .contact-cta .btn, .contact__tel__line .tel__line__btn, #toiawase .form-submit input[type=submit], .box-white, .box-red, .circle p {
  font-size: 1.2rem;
  line-height: 2.4rem;
}
@media screen and (min-width: 641px) {
  .font-md, .nayami .nayami-txt, .campaign .campaign-txt02, .price .contact-cta .btn, .contact__tel__line .tel__line__btn, #toiawase .form-submit input[type=submit], .box-white, .box-red, .circle p {
    font-size: 20px;
  }
}

.font-ml, .reason-cont .reason-ttl, .contact__tel__line .label, .box-green, .str-green04, .str-red {
  font-size: 1.5rem;
}
@media screen and (min-width: 641px) {
  .font-ml, .reason-cont .reason-ttl, .contact__tel__line .label, .box-green, .str-green04, .str-red {
    font-size: 22px;
  }
}

.font-lg, .price .price-title, .contact__tel__line .tel__number, .sub-title {
  font-size: 1.8rem;
}
@media screen and (min-width: 641px) {
  .font-lg, .price .price-title, .contact__tel__line .tel__number, .sub-title {
    font-size: 26px;
  }
}

.yellow {
  color: #ffed5a;
}

.yellow-bold {
  color: #ffed5a;
  font-weight: bold;
  font-size: 1.4rem;
}
@media screen and (min-width: 641px) {
  .yellow-bold {
    font-size: 22px;
  }
}

.yellow-bold-02 {
  color: #ffed5a;
  font-weight: bold;
  font-size: 1.3rem;
}

.bold14-white {
  color: white;
  font-weight: bold;
  font-size: 1.4rem;
}
@media screen and (min-width: 641px) {
  .bold14-white {
    font-size: 22px;
  }
}

.main-title {
  position: relative;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  line-height: 2.8rem;
}
.main-title::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1.2rem;
  display: inline-block;
  width: 5rem;
  height: 2px;
  transform: translateX(-50%);
  background-color: #246c0a;
  border-radius: 0px;
}

.str-bg-yellow {
  background-color: #ffed5a;
}

.str-red {
  font-weight: 600;
  text-align: left;
  color: #ec5137;
  margin-bottom: 0.5rem;
}

.sub-title {
  margin-bottom: 1rem;
}

.str-green02 {
  color: #246c0a;
  font-weight: bold;
  background-color: #a8d2d1;
}

.str-green03 {
  color: #246c0a;
}

.str-green04 {
  color: #246c0a;
  font-weight: bold;
}

.yellow-underline {
  background: linear-gradient(transparent 90%, #ffed5a 90%);
  display: inline-block;
}

.dot {
  background-position: top left 0px;
  background-repeat: repeat-x;
  background-size: 1em 0.3em;
  background-image: radial-gradient(0.15em 0.15em at center center, #246c0a, #246c0a 100%, transparent, transparent);
  padding-top: 0.6em;
}

/*=====================
  other
======================*/
a.rollover:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha( opacity=70 )";
}

.rollover:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha( opacity=70 )";
}

a {
  text-decoration: none;
}

.flex, .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hr-dotted {
  border: none;
  border-top: 2px dotted black;
}

.hr-dashed {
  border: none;
  border-top: 2px dashed #246c0a;
}

.triangle {
  background: #246c0a;
  height: 17.3205080757px;
  width: 20px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  margin: 0 auto;
  top: 0;
}

.triangle-02 {
  background: #ec5137;
  height: 17.3205080757px;
  width: 20px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  margin: 0 auto;
  top: 0;
}

.circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #ffebad;
  margin: 0 auto;
}
.circle p {
  text-align: center;
  line-height: 100px;
}

.circle-02 {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #246c0a;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2rem;
  font-weight: bold;
  margin: 0 auto 2rem;
}

.box-green {
  background-color: #246c0a;
  width: 90%;
  padding: 1rem;
  color: white;
  text-align: center;
  line-height: 1.8rem;
  margin: 0 auto;
  font-weight: bold;
  border-radius: 10px;
}

.box-red {
  background-color: #ec5137;
  width: 90%;
  padding: 1rem;
  color: white;
  text-align: center;
  line-height: 1.7rem;
  margin: 0 auto;
  font-weight: bold;
  border-radius: 10px;
}
@media screen and (min-width: 641px) {
  .box-red {
    width: 300px;
  }
}

.box-white {
  background-color: white;
  width: 90%;
  padding: 1rem;
  color: #246c0a;
  text-align: center;
  line-height: 1.7rem;
  margin: 0 auto;
  font-weight: bold;
  border-radius: 50px;
  border: 2px solid #246c0a;
}

.header {
  width: 95%;
  margin: 0 auto;
}
.header .logo img {
  width: 80%;
  padding: 0.2rem 0;
}
.header .head-btn {
  color: black;
}
@media screen and (min-width: 641px) {
  .header {
    max-width: 1440px;
  }
}

@media (min-width: 1000px) {
  .fv {
    background: url("../images/FV-pc.jpg") center top/2000px no-repeat;
  }
}
@media screen and (min-width: 641px) {
  .fv img {
    max-width: 1000px;
    margin: 0 auto;
  }
}
.nayami img {
  margin: 0 auto;
}
@media screen and (min-width: 641px) {
  .nayami .nayami-images .img-a {
    width: 40%;
  }
  .nayami .nayami-images .img-d {
    width: 60%;
  }
}
.nayami .nayami-txt {
  width: 90%;
  margin: 0 auto;
  line-height: 2;
}

.campaign {
  background-color: #fcea77;
}
.campaign .campaign-txt {
  text-align: center;
  line-height: 2rem;
}
@media screen and (min-width: 641px) {
  .box-white-size {
    width: 600px;
  }
}
.price {
  background-color: #fcfcfc;
}
@media screen and (min-width: 641px) {
  .price .price-sub {
    width: 600px;
  }
}
.price .price-title {
  grid-column: 1/-1;
}
.price .contact-cta {
  position: relative;
  overflow: hidden;
}
.price .contact-cta__media img {
  height: auto;
}
.price .contact-cta .btn {
  position: absolute;
  left: 50%;
  bottom: 10%;
  transform: translateX(-50%);
  z-index: 1;
  width: 75%;
  text-align: center;
  display: inline-block;
  background-color: #329a1e;
  font-weight: 600;
  padding: 0.5rem 2rem;
  margin: 0;
  cursor: pointer;
  color: white;
  text-decoration: none;
  border-radius: 5rem;
  transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
}
@media screen and (min-width: 641px) {
  .price .contact-cta .btn-eco {
    position: absolute;
    bottom: 65px;
  }
}
.price .price-title {
  margin: 1rem auto;
  text-align: center;
}
.price .contact-txt {
  width: 90%;
  margin: 1rem auto;
  line-height: 2rem;
}

.reason {
  background-color: #fbf1c1;
}

.reason-cont {
  position: relative;
}
.reason-cont .reason-img img {
  display: block;
  width: 100%;
  height: auto;
}
.reason-cont .reason-ttl {
  position: absolute;
  top: 60%;
  left: 26%;
  margin: 0;
  font-weight: bold;
}
.reason-cont .reason-ttl-md {
  font-size: 1.35rem;
}
.reason-cont .reason-desc {
  position: absolute;
  width: 83%;
  line-height: 1.6rem;
  text-align: justify;
  top: 76%;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
}
.reason-cont .reason-txt.reason-txt--alt .reason-ttl {
  top: 62%;
}
.reason-cont .reason-txt.reason-txt--alt .reason-desc {
  top: 79%;
}
@media screen and (min-width: 641px) {
  .reason-cont .reason-ttl,
  .reason-cont .reason-desc {
    position: absolute;
    max-width: 380px;
    margin: 0;
  }
  .reason-cont .reason-ttl {
    top: 115px;
    left: 77px;
    text-align: left;
  }
  .reason-cont .reason-desc {
    top: 199px;
    left: 265px;
  }
  .reason-cont .reason-txt.reason-txt--alt .reason-ttl.ttl-right {
    top: 116px;
    left: auto;
    right: 273px;
  }
  .reason-cont .reason-txt.reason-txt--alt .reason-desc.desc-right {
    top: 193px;
    left: auto;
    right: -98px;
  }
  .reason-cont .reason-ttl.ttl-right {
    top: 116px;
    left: auto;
    right: 273px;
  }
  .reason-cont .reason-desc.desc-right {
    top: 193px;
    left: auto;
    right: -98px;
  }
}

.flow {
  background: url("../images/bg-flow.jpg") no-repeat center/cover;
}
@media screen and (min-width: 641px) {
  .flow {
    background: url("../images/bg-flow-pc.jpg") no-repeat center/cover;
  }
}

.flow-cont {
  position: relative;
}
.flow-cont .flow-img img {
  display: block;
  width: 100%;
  height: auto;
}
.flow-cont .flow-ttl {
  position: absolute;
  top: 16%;
  left: 26%;
  font-size: 1.3rem;
  font-weight: bold;
  margin: 0;
}
.flow-cont .flow-desc {
  position: absolute;
  top: 36%;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  line-height: 1.6rem;
  text-align: justify;
  margin: 0;
}
@media screen and (min-width: 641px) {
  .flow-cont .flow-ttl {
    top: 38px;
    left: 299px;
    text-align: left;
  }
  .flow-cont .flow-desc {
    top: 92px;
    left: 246px;
    transform: translateX(0%);
    width: 400px;
    line-height: 1.4rem;
  }
}

.voice {
  position: relative;
  background: url("../images/bg-voice.png") no-repeat center;
  background-position: bottom;
  padding-bottom: 5rem;
}
.voice::after {
  content: "";
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 80%;
  background-color: #fdfaea;
  z-index: -1;
}
.voice .container960 {
  padding: 1rem 0 3rem;
}
@media screen and (min-width: 641px) {
  .voice {
    position: relative;
    padding: 2rem 0 3rem;
    background: url("../images/bg-voice-pc.png") no-repeat center;
    background-position: bottom;
  }
  .voice::after {
    content: "";
    position: absolute;
    top: 13%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 66%;
    background-color: #fdfaea;
    z-index: -1;
  }
}

@media screen and (min-width: 641px) {
  .voice-wrap {
    position: relative;
  }
  .voice-wrap .main-title {
    position: absolute;
    top: 62px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.voice-cont {
  position: relative;
  overflow: hidden;
}

.voice-img-top img {
  width: 100%;
  height: auto;
}

.voice-img img {
  width: 100%;
  height: auto;
}

.voice-ttl,
.voice-desc-a,
.voice-desc-b {
  position: absolute;
  margin: 0;
}

.voice-ttl {
  transform: none;
  font-size: 1.5rem;
  font-weight: 700;
}

.voice-desc-a {
  width: 75%;
  text-align: justify;
}

.voice-desc-b {
  width: 75%;
  text-align: justify;
}

.voice-cont01 .voice-ttl {
  top: 12%;
  left: 40%;
}
.voice-cont01 .voice-desc-a {
  top: 18%;
  left: 40%;
}
.voice-cont01 .voice-desc-b {
  top: 32%;
  left: 50%;
  line-height: 2.77rem;
  transform: translateX(-50%);
}

.voice-cont02 .voice-ttl {
  top: 8%;
  left: 40%;
}
.voice-cont02 .voice-desc-a {
  top: 12%;
  left: 40%;
}
.voice-cont02 .voice-desc-b {
  top: 22%;
  left: 50%;
  line-height: 2.9rem;
  transform: translateX(-50%);
}

.voice-cont03 .voice-ttl {
  top: 10%;
  left: 40%;
}
.voice-cont03 .voice-desc-a {
  top: 22%;
  left: 40%;
}
.voice-cont03 .voice-desc-b {
  top: 33%;
  left: 50%;
  line-height: 2.77rem;
  transform: translateX(-50%);
}

@media screen and (min-width: 641px) {
  .voice-cont01 .voice-ttl {
    top: 70px;
    left: 191px;
  }
  .voice-cont01 .voice-desc-a {
    top: 103px;
    left: 193px;
  }
  .voice-cont01 .voice-desc-b {
    top: 170px;
    line-height: 3.1;
  }
  .voice-cont02 {
    margin-top: 80px;
  }
  .voice-cont02 .voice-desc-b {
    top: 173px;
    line-height: 3.13;
  }
  .voice-cont03 {
    margin-top: -320px;
  }
  .voice-cont03 .voice-desc-b {
    top: 184px;
    line-height: 3.1;
  }
}
.faq {
  margin: 0 auto;
  background: url("../images/bg-faq.jpg") no-repeat center/cover;
}
.faq .container720 {
  padding: 0 0 3rem;
}
.faq__list {
  margin: 0 auto;
  width: 95%;
}
@media screen and (min-width: 641px) {
  .faq {
    background: url("../images/bg-faq-pc.jpg") no-repeat center/cover;
  }
  .faq__list {
    width: 100%;
  }
}
.faq__q, .faq__a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  margin: 0;
  padding: 0.9rem 0;
}
.faq__q {
  font-size: 1.3rem;
  font-weight: bold;
  align-items: center;
  padding: 2rem 0 0.1rem;
}
.faq__a {
  align-items: start;
  border-bottom: 0.5px solid gray;
  padding-bottom: 2rem;
}
.faq__icon-q {
  width: 100%;
  align-items: center;
}
.faq__icon-a {
  width: 100%;
  padding-left: 1rem;
  padding-top: 0.2rem;
}
.faq__ttl {
  line-height: 1.2;
}
.faq__text {
  line-height: 1.8;
}

@media screen and (min-width: 641px) {
  .contact .grid {
    gap: 20px;
  }
}

.contact__tel__line {
  text-align: center;
  padding: 2rem 0;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  width: 90%;
  margin: 2rem auto 0;
}
@media screen and (min-width: 641px) {
  .contact__tel__line {
    width: 100%;
    height: 300px;
  }
  .contact__tel__line .grid {
    grid-template-columns: 1fr 2fr;
    place-items: center;
  }
  .contact__tel__line .tel__text {
    margin-bottom: 17px;
  }
}
.contact__tel__line .label {
  font-weight: 600;
}
@media screen and (min-width: 641px) {
  .contact__tel__line .label {
    margin-bottom: 10px;
  }
}
.contact__tel__line .tel__number {
  font-weight: 800;
  letter-spacing: 0.02em;
}
.contact__tel__line .tel__hours {
  opacity: 0.85;
}
.contact__tel__line .line__hours {
  opacity: 0.85;
}
@media screen and (min-width: 641px) {
  .contact__tel__line .line__hours {
    font-size: 15px;
    line-height: 1.5;
    align-items: center;
  }
}
.contact__tel__line .tel__line__btn {
  z-index: 1;
  width: 75%;
  text-align: center;
  display: inline-block;
  background-color: #329a1e;
  font-weight: 600;
  padding: 0.5rem 2rem;
  margin: 1rem auto;
  cursor: pointer;
  color: white;
  text-decoration: none;
  border-radius: 5rem;
  transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
}
.contact__tel__line .line-qr {
  width: 40%;
  margin: 0 auto 1rem;
}
@media screen and (min-width: 641px) {
  .contact__tel__line .line-qr {
    width: 70%;
    margin: 0 0 0 80px;
  }
}

@media screen and (max-width: 640px) {
  .tel__line__btm {
    margin-bottom: 3rem;
  }
}
#toiawase {
  color: #222;
  width: 90%;
  margin: 0 auto;
  padding: 0 0 4rem;
}
@media screen and (min-width: 641px) {
  #toiawase {
    width: 100%;
  }
}
#toiawase h3 {
  margin: 2rem 0 0.8rem;
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.4;
  position: relative;
  padding-left: 0.8rem;
}
#toiawase h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 0.28rem;
  height: 1.1rem;
  border-radius: 2px;
  background: #246c0a;
}
#toiawase .tbl.form {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  margin-top: 1.4rem;
}
#toiawase .tbl.form th,
#toiawase .tbl.form td {
  padding: 0.9rem 1rem;
  vertical-align: top;
  border-bottom: 1px solid #e5e5e5;
  background: #fff;
  line-height: 1.8;
}
#toiawase .tbl.form th {
  width: 28%;
  background: #f7faf5;
  font-weight: 700;
}
#toiawase .tbl.form td {
  width: 72%;
}
#toiawase .tbl.form tr:last-child th,
#toiawase .tbl.form tr:last-child td {
  border-bottom: 0;
}
#toiawase .entry {
  display: inline-block;
  margin-left: 0.4em;
  color: white;
  background: #ec5137;
  border-radius: 0.35rem;
  padding: 0.05rem 0.4rem;
  font-size: 0.8em;
  line-height: 1.2;
  vertical-align: middle;
}
#toiawase input[type=text],
#toiawase textarea,
#toiawase select {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background: #fff;
  padding: 0.65rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  transition: border-color 0.15s, box-shadow 0.15s, background-color 0.15s;
}
#toiawase input[type=text]:focus,
#toiawase textarea:focus,
#toiawase select:focus {
  outline: 0;
  border-color: #7bcf6f;
  box-shadow: 0 0 0 3px rgba(123, 207, 111, 0.25);
  background: #fcfffb;
}
#toiawase input[type=text]::-moz-placeholder, #toiawase textarea::-moz-placeholder, #toiawase select::-moz-placeholder {
  color: #9aa0a6;
}
#toiawase input[type=text]::placeholder,
#toiawase textarea::placeholder,
#toiawase select::placeholder {
  color: #9aa0a6;
}
#toiawase textarea {
  min-height: 8rem;
  resize: vertical;
}
#toiawase select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #777 50%), linear-gradient(135deg, #777 50%, transparent 50%), linear-gradient(to right, transparent, transparent);
  background-position: calc(100% - 18px) center, calc(100% - 12px) center, 100% 0;
  background-size: 6px 6px, 6px 6px, 2.5rem 100%;
  background-repeat: no-repeat;
}
#toiawase select[name=希望商品１],
#toiawase select[name=希望商品２] {
  font-size: 1rem;
  min-height: 44px;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  background-size: 7px 7px, 7px 7px, 2.8rem 100%;
}
#toiawase select[name=希望商品１] option,
#toiawase select[name=希望商品２] option {
  font-size: 1rem;
}
#toiawase .tbl.form tr.stacked {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 0.4rem;
}
#toiawase .tbl.form tr.stacked th,
#toiawase .tbl.form tr.stacked td {
  width: 100%;
  border: 0;
  padding: 0.6rem 1rem;
}
@supports selector(:has(*)) {
  #toiawase .tbl.form tr:has(select[name=希望商品１]),
  #toiawase .tbl.form tr:has(select[name=希望商品２]) {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 0.4rem;
  }
  #toiawase .tbl.form tr:has(select[name=希望商品１]) th,
  #toiawase .tbl.form tr:has(select[name=希望商品２]) th,
  #toiawase .tbl.form tr:has(select[name=希望商品１]) td,
  #toiawase .tbl.form tr:has(select[name=希望商品２]) td {
    width: 100%;
    border: 0;
    padding: 0.6rem 1rem;
  }
}
#toiawase .form-submit {
  text-align: center;
  margin: 1.5rem 0 0;
}
#toiawase .form-submit input[type=submit] {
  width: 90%;
  display: inline-block;
  cursor: pointer;
  border: none;
  color: white;
  background: #329a1e;
  font-weight: 700;
  padding: 0.85rem 2.4rem;
  border-radius: 9999px;
  letter-spacing: 0.08em;
  transition: filter 0.2s, box-shadow 0.2s, background-color 0.2s;
}
#toiawase .form-submit input[type=submit]:hover, #toiawase .form-submit input[type=submit]:focus-visible {
  background: rgb(41.6847826087, 128.3891304348, 25.0108695652);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
@media screen and (min-width: 641px) {
  #toiawase .form-submit input[type=submit] {
    width: 300px;
  }
}
#toiawase input[type=text][name*=郵便番号],
#toiawase input[type=text][name*=電話] {
  font-variant-numeric: tabular-nums;
}

@media (max-width: 768px) {
  #toiawase .tbl.form {
    border: none;
    border-radius: 0;
  }
  #toiawase .tbl.form tr {
    display: block;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 0 0.9rem;
    background: #fff;
  }
  #toiawase .tbl.form th,
  #toiawase .tbl.form td {
    display: block;
    width: 100%;
    border: 0;
    padding: 0.8rem 0.9rem;
  }
  #toiawase .tbl.form th {
    border-bottom: 1px dashed #e5e5e5;
    background: #f7faf5;
  }
  #toiawase .form-submit {
    margin-top: 1rem;
  }
}
.footer {
  text-align: center;
  padding: 2rem 0 13rem 0;
  margin-top: 0px;
  background-color: #f5f8fa;
}
@media screen and (min-width: 641px) {
  .footer {
    padding: 2rem 0 12rem 0;
  }
}
.footer a {
  color: #000;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}
.footer .menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.footer .menu li {
  margin: 0;
  padding: 0 20px;
}
.footer .copyright {
  margin: 0;
  padding: 20px 0 0 0;
}

.menu li {
  padding: 0 20px;
  font-size: 16px;
}

.menu li:nth-child(2) {
  border-left: 1px solid #000;
}

.menu li:nth-child(3) {
  border-left: 1px solid #000;
}

.copyright {
  text-align: center;
}

.with-sticky-cta {
  padding-bottom: clamp(124px, 22vw, 168px);
}

/* ===== 固定CTA本体 ===== */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  box-shadow: 0 -6px 16px rgba(0, 0, 0, 0.12);
  /* 上のコピー */
  /* 3ボタン横並び */
  /* 各ボタン */
  /* バリアント色 */
}
@media screen and (min-width: 641px) {
  .sticky-cta {
    padding: 0.2rem 0 calc(env(safe-area-inset-bottom, 0px) + 0.5rem);
  }
}
.sticky-cta__note {
  margin: 0.3rem auto;
  text-align: center;
  font-weight: 700;
  font-size: clamp(0.9rem, 3.7vw, 1rem);
  color: #333;
}
@media screen and (min-width: 641px) {
  .sticky-cta__note {
    margin: 0px auto 3px;
  }
}
.sticky-cta__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
}
@media screen and (min-width: 641px) {
  .sticky-cta__grid {
    width: min(96vw, 1100px);
    margin: 0 auto;
    padding: 0 0.5rem;
  }
}
.sticky-cta__btn {
  display: grid;
  grid-auto-flow: row;
  grid-template-rows: auto 1fr;
  justify-items: center;
  text-align: center;
  gap: 0;
  text-decoration: none;
  color: #ffffff;
  transition: transform 0.08s ease, filter 0.12s ease, box-shadow 0.12s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  padding-bottom: 1rem;
  /* テキスト */
}
.sticky-cta__btn:hover, .sticky-cta__btn:focus-visible {
  outline: none;
  transform: translateY(-1px);
  filter: brightness(0.96);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 641px) {
  .sticky-cta__btn {
    grid-template-columns: auto 1fr;
    align-items: center;
    padding: 0.5rem 0.8rem 0;
    grid-template-rows: none;
    height: 80px;
  }
}
.sticky-cta__btn .sticky-cta__icon {
  font-size: clamp(18px, 5vw, 26px);
  line-height: 1;
  display: inline-block;
  width: 1em;
  text-align: center;
  margin: 0 auto;
  padding: 1rem 0 0.5rem;
}
@media screen and (min-width: 641px) {
  .sticky-cta__btn .sticky-cta__icon {
    padding: 0 10px 0 30px;
  }
}
.sticky-cta__btn .sticky-cta__text {
  line-height: 1.25;
  font-size: clamp(0.78rem, 3.2vw, 0.95rem);
  align-items: start;
  padding-bottom: 0.5rem;
}
.sticky-cta__btn .sticky-cta__text strong {
  font-weight: 800;
  font-size: 1em;
}
.sticky-cta__btn .sticky-cta__text small {
  font-size: 0.82em;
  opacity: 0.95;
}
.sticky-cta__btn .sticky-cta__text .sticky-cta__em {
  font-size: 1.05em;
  font-weight: 800;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 641px) {
  .sticky-cta__btn .sticky-cta__text strong {
    font-weight: 800;
    font-size: 1.3em;
  }
}
.sticky-cta__btn .mail__text {
  color: #ec5137;
}
.sticky-cta__btn--mail {
  background: #fbe977;
}
.sticky-cta__btn--tel {
  background: #2563eb;
}
.sticky-cta__btn--line {
  background: #06c755;
}

@media (max-width: 340px) {
  .sticky-cta__text small {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */