@charset "utf-8";
/* CSS Document */



/* ------------------------------------------
  トップページ
--------------------------------------------- */

#main-visual{
  position: relative;
  width: 100%;
  height: 100vh;
  max-height: 850px;
  min-height: 680px;
  background-color: var(--color-bg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

.main-visual__art {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  aspect-ratio: 3000 / 1114;
  pointer-events: none;
  z-index: 0;
}

.main-visual__bg,
.main-visual__products {
  position: absolute;
  inset: 0;
}

.main-visual__bg {
  z-index: 0;
  background: url('../img/top/main-visual.webp') no-repeat center / 100% 100%;
}

.main-visual__products {
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-visual__product {
  position: absolute;
  left: calc(var(--x) * 100% / 3000);
  top: calc(var(--y) * 100% / 1114);
  width: calc(var(--w) * 100% / 3000);
  --rotate: var(--r, 0deg);
  transform: translate3d(0, 0, 0) rotate(var(--rotate));
  transform-origin: center;
  --intro-delay: 0s;
}

.main-visual__product--float {
  animation: main-visual-float var(--float-duration, 8s) ease-in-out infinite;
  animation-delay: calc(2.6s + var(--intro-delay));
  will-change: transform;
}

.main-visual__product img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0;
  transform: translate3d(0, -28px, 0) scale(0.92);
  transform-origin: center;
  filter: drop-shadow(0 8px 16px rgba(90, 78, 55, 0.15));
  animation: main-visual-product-in 1.15s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: calc(0.5s + var(--intro-delay));
  will-change: transform, opacity;
}

@keyframes main-visual-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(var(--rotate));
  }
  50% {
    transform: translate3d(var(--float-x, 0px), var(--float-y, -10px), 0) rotate(calc(var(--rotate) + var(--float-rotate, 1deg)));
  }
}

@keyframes main-visual-product-in {
  0% {
    opacity: 0;
    transform: translate3d(0, -56px, 0) scale(0.88);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.main-visual__product:nth-child(6n + 1) {
  --intro-delay: 0.1s;
}

.main-visual__product:nth-child(6n + 2) {
  --intro-delay: 0.26s;
}

.main-visual__product:nth-child(6n + 3) {
  --intro-delay: 0.44s;
}

.main-visual__product:nth-child(6n + 4) {
  --intro-delay: 0.6s;
}

.main-visual__product:nth-child(6n + 5) {
  --intro-delay: 0.78s;
}

.main-visual__product:nth-child(6n) {
  --intro-delay: 0.94s;
}

.main-visual__inner {
  position: relative;
  z-index: 3;
  text-align: center;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 20px 20px 0;
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.main-visual__preheading,
.main-visual__heading,
.main-visual__logo-wrap,
.main-visual__campaign {
  opacity: 0;
  transform: translate3d(0, -24px, 0);
  animation: main-visual-content-in 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.main-visual__preheading {
  animation-delay: 0.12s;
}

.main-visual__heading {
  animation-delay: 0.32s;
}

.main-visual__logo-wrap {
  animation-delay: 0.56s;
}

.main-visual__campaign:nth-child(1) {
  animation-delay: 0.88s;
}

.main-visual__campaign:nth-child(2) {
  animation-delay: 1.04s;
}

@keyframes main-visual-content-in {
  0% {
    opacity: 0;
    transform: translate3d(0, -40px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.main-visual__preheading {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .15em;
  color: #585858;
  margin-bottom: 12px;
}

.main-visual__heading {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 47px;
  line-height: 1.6;
  letter-spacing: .05em;
  margin-bottom: 30px;
}
.main-visual__heading span {
  font-weight: 900;
}
.main-visual__heading-red {
  color: var(--key-color);
}

.main-visual__heading-sm {
  font-size: .65em;
}

.main-visual__logo-wrap {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 20px 0 20px 0;
  overflow: hidden;
  margin-bottom: 36px;
}

.main-visual__logo {
  margin: 0 auto;
  padding: 30px 110px;
}
.main-visual__logo img {
	width: 358px;
}

.main-visual__mandate {
  display: block;
  background-color: var(--color-green);
  color: #fff;
  font-size: 21px;
  font-weight: 700;
  padding: 12px 32px;
}

.main-visual__campaigns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.main-visual__campaign {
  display: flex;
  align-items: center;
  gap: 0;
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: 50px;
  padding: 6px 6px;
  overflow: hidden;
}

.main-visual__campaign-round {
  display: inline-block;
  background: #fff;
  color: var(--font-color);
  font-size: 18px;
  font-weight: 700;
  padding: 6px 18px;
  white-space: nowrap;
}

.main-visual__campaign-date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  background: var(--key-color);
  color: #fff;
  padding: 6px 18px;
  border-radius: 50px;
}

.main-visual__campaign-date time {
  font-size: 0.87em;
	font-weight: 700;
}

.main-visual__campaign-date time .em {
  font-size: 1.4em;
  letter-spacing: 0;
	font-weight: 700;
}

.main-visual__campaign-icon::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url('../img/icon-calendar-w.webp') no-repeat center / contain;
  vertical-align: middle;
	margin-top: -2px;
}

/* ------------------------ スマートフォン ------------------------ */
@media only screen and (max-width:768px){
  #main-visual {
    min-height: auto;
    max-height: none;
    height: 450px;
  }
  .main-visual__bg {
    background-image: url('../img/top/main-visual-sp.webp');
  }
  .main-visual__art {
    bottom: 0;
    aspect-ratio: 1 / 1;
  }
  .main-visual__product {
    left: calc(var(--sp-x, var(--x)) * 100% / 750);
    top: calc(var(--sp-y, var(--y)) * 100% / 750);
    width: calc(var(--sp-w, var(--w)) * 100% / 750);
    --rotate: var(--sp-r, var(--r, 0deg));
  }
  .main-visual__product img {
    filter: drop-shadow(0 5px 10px rgba(90, 78, 55, 0.12));
  }
  .main-visual__product--float {
    animation-duration: calc(var(--float-duration, 8s) + 1.2s);
  }
  .main-visual__inner {
    justify-content: flex-start;
    padding: 28px 14px 18px;
  }
  .main-visual__preheading {
    font-size: clamp(13px, 3.8vw, 15px);
    line-height: 1.6;
    letter-spacing: .08em;
    margin-bottom: 8px;
  }
  .main-visual__heading {
    font-size: clamp(18px, 5.6vw, 21px);
    line-height: 1.5;
    margin-bottom: 16px;
  }
  .main-visual__logo-wrap {
    max-width: 100%;
    margin-bottom: 16px;
    border-radius: 16px 0 16px 0;
  }
  .main-visual__logo {
    width: min(100%, 230px);
    max-width: none;
    box-sizing: border-box;
    padding: 14px 20px 10px;
  }
  .main-visual__logo img {
    width: 100%;
  }
  .main-visual__mandate {
    font-size: 12px;
    line-height: 1.5;
    padding: 8px 14px;
  }
  .main-visual__campaigns {
    width: 100%;
    max-width: 320px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .main-visual__campaign {
    width: 100%;
    box-sizing: border-box;
    justify-content: space-between;
    padding: 3px;
  }
  .main-visual__campaign-round {
    font-size: clamp(12px, 3.4vw, 14px);
    padding: 7px 7px;
  }
  .main-visual__campaign-date {
    gap: 4px;
    font-size: clamp(10px, 3vw, 12px);
    padding: 7px 10px;
  }
  .main-visual__campaign-date time {
    font-size: 0.8em;
    letter-spacing: -.01em;
  }
  .main-visual__campaign-date time .em {
    font-size: 1.3em;
  }
  .main-visual__campaign-icon::before {
    width: 14px;
    height: 14px;
    margin-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .main-visual__product--float {
    animation: none;
    transform: translate3d(0, 0, 0) rotate(var(--rotate));
  }
  .main-visual__product img,
  .main-visual__preheading,
  .main-visual__heading,
  .main-visual__logo-wrap,
  .main-visual__campaign {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ------------------------ スマートフォン ------------------------ */
@media only screen and (max-width:768px){


}


/* ------------------------------------------
  共通パーツ
--------------------------------------------- */

/* トップページ専用見出し */
.section-title-top {
  font-size: 30px;
  font-weight: 800;
  text-align: center;
  letter-spacing: .1em;
  margin-bottom: 40px;
}

/* 下層ページ見出し */
h2.section-title-sub {
  font-size: 19px;
  font-weight: 800;
  text-align: left;
  letter-spacing: .05em;
  margin-bottom: 30px;
  padding-left: 20px;
  position: relative;
  line-height: 1.4;
}

h2.section-title-sub::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: var(--key-color);
  border-radius: 3px;
}

/* h3 専用：ドット＋細線スタイル */
h3.section-title-sub {
  font-size: 20px;
  font-weight: 700;
  padding-left: 0;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-border-light);
  margin-bottom: 20px;
}

.btn-red {
  display: inline-block;
  background-color: var(--key-color);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  padding: 18px 60px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: .1em;
  box-shadow: 4px 6px 0 var(--color-red-shadow);
  position: relative;
  top: 0;
  left: 0;
  transition: box-shadow 0.1s ease, top 0.1s ease, left 0.1s ease, opacity 0.3s ease;
}
.btn-red:hover {
  color: #fff;
  opacity: 0.9;
  box-shadow: 2px 3px 0 var(--color-red-shadow);
  top: 3px;
  left: 2px;
}
.btn-red:active {
  box-shadow: none;
  top: 6px;
  left: 4px;
}

.btn-outline {
  display: inline-block;
  background-color: #fff;
  color: var(--key-color);
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  padding: 14px 50px;
  border-radius: 50px;
  border: 2px solid var(--key-color);
  text-decoration: none;
  letter-spacing: .1em;
  box-shadow: 4px 6px 0 var(--key-color);
  position: relative;
  top: 0;
  left: 0;
  transition: box-shadow 0.1s ease, top 0.1s ease, left 0.1s ease, opacity 0.3s ease;
}
.btn-outline:hover {
  opacity: 0.85;
  box-shadow: 2px 3px 0 var(--key-color);
  top: 3px;
  left: 2px;
}
.btn-outline:active {
  box-shadow: none;
  top: 6px;
  left: 4px;
}
.btn-outline--sm {
  font-size: 14px;
  padding: 10px 30px;
}

.btn-dark {
  display: inline-block;
  background-color: #fff;
  color: var(--font-color);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  padding: 10px 30px;
  border-radius: 50px;
  border: 2px solid var(--font-color);
  text-decoration: none;
  letter-spacing: .1em;
  box-shadow: 4px 6px 0 var(--font-color);
  position: relative;
  top: 0;
  left: 0;
  transition: box-shadow 0.1s ease, top 0.1s ease, left 0.1s ease, opacity 0.3s ease;
}
.btn-dark:hover {
  opacity: 0.85;
  box-shadow: 2px 3px 0 var(--font-color);
  top: 3px;
  left: 2px;
}
.btn-dark:active {
  box-shadow: none;
  top: 6px;
  left: 4px;
}

/* ------------------------ スマートフォン ------------------------ */
@media only screen and (max-width:768px){

	.btn-outline {
		font-size: 16px;
		padding: 14px 20px;
		border-radius: 20px;
	}

}

/* ------------------------------------------
  参加事業者募集
--------------------------------------------- */

#top-recruit {
  padding: 80px 0 0;
  margin-bottom: 80px;
}

.recruit-period-wrap {
  text-align: center;
  margin-bottom: 45px;
}

.recruit-period {
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  border: 2px solid var(--key-color);
  overflow: hidden;
  margin-bottom: 0;
}

.recruit-period__label {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--key-color);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 20px 55px;
  white-space: nowrap;
  border-radius: 0;
}

.recruit-period__date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 28px;
  white-space: nowrap;
  background-color: #fff;
}

.recruit-period__date .date-small {
  font-size: 15px;
  font-weight: 700;
}

.recruit-period__date .date-large {
  font-size: 1.25em;
  font-weight: 700;
}

.recruit-period__icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  vertical-align: middle;
}

.recruit-btn-wrap {
  text-align: center;
}

/* ------------------------ スマートフォン ------------------------ */
@media only screen and (max-width:768px){

  #top-recruit {
    padding: 40px 0 0;
    margin-bottom: 50px;
  }
  .section-title-top {
    font-size: 22px;
    margin-bottom: 25px;
  }
  .section-title-sub {
    font-size: 20px;
    margin-bottom: 20px;
  }
  h3.section-title-sub {
    font-size: 17px;
    margin-bottom: 16px;
  }
  .recruit-period {
    display: flex;
    width: 100%;
  }
  .recruit-period__label {
    font-size: 14px;
    padding: 10px 10px;
  }
  .recruit-period__date {
    font-size: 14px;
    padding: 10px 7px;
  }
	.recruit-period__date .date-small {
		font-size: 12px;
	}
	.recruit-period__date .date-large {
		font-size: 1.05em;
	}
  .btn-red {
    font-size: 16px;
    padding: 16px 40px;
  }

}


/* ------------------------------------------
  top-about
--------------------------------------------- */

#top-about {
  background-color: var(--color-bg-about);
  background-image: url('../img/top/top-about.webp');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 90%;
  padding: 100px 0;
  margin-bottom: 0;
  text-align: center;
}

.top-about__heading {
  font-size: 35px;
  font-weight: 800;
  line-height: 1.7;
  letter-spacing: .08em;
  margin-bottom: 30px;
}

.top-about__note {
  line-height: 1.8;
  margin-bottom: 40px;
  text-align: center;
}

.top-about__btn-wrap {
  text-align: center;
}

/* ------------------------ スマートフォン ------------------------ */
@media only screen and (max-width:768px){

  #top-about {
    padding: 60px 0;
  }
  .top-about__heading {
    font-size: 20px;
    line-height: 1.9;
  }
  .top-about__note {
    font-size: 12px;
    text-align: left;
  }

}


/* ------------------------------------------
  top-news
--------------------------------------------- */

#top-news {
  padding: 80px 0 0;
  margin-bottom: 80px;
}

.news-list {
  max-width: 700px;
  margin: 0 auto;
}

.news-list__item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
}

.news-list__date {
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  min-width: 100px;
}

.news-list__text {
  font-size: 16px;
}

/* ------------------------ スマートフォン ------------------------ */
@media only screen and (max-width:768px){

  #top-news {
    padding: 50px 0 0;
    margin-bottom: 50px;
  }
  .news-list__item {
    gap: 20px;
    padding: 15px 0;
  }
  .news-list__date {
    font-size: 14px;
    min-width: 80px;
  }
  .news-list__text {
    font-size: 14px;
  }

}




/* ------------------------------------------
  下層ページ
--------------------------------------------- */

#pageheader {
  position: relative;
  width: 100%;
  height: 200px;
  background-image: url('../img/pageheader.webp');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
	margin-bottom: 70px;
}

#pageheader::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(248, 244, 234, 0.72);
  z-index: 0;
}

#pageheader h2 {
  position: relative;
  z-index: 1;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--font-color);
  text-align: center;
}


/* ------------------------ スマートフォン ------------------------ */
@media only screen and (max-width:768px){

  #pageheader {
    height: 120px;
		/*background-image: url('../img/pageheader-sp.webp');*/
  }

  #pageheader h2 {
    font-size: 20px;
  }
  
}


.pagenavi {
	clear: both;
	padding-top:5px;
	text-align:center;
	margin-top:50px;
}

.pagenavi a, .pagenavi span {
	text-decoration: none;
	border: 1px solid var(--color-border-navi);
	padding: 5px 15px !important;
	margin: 2px 2px 10px;
	display:inline-block;
	font-size: 17px;
}


.pagenavi span.current {
	font-weight: bold;
	color: #fff;
	background-color: var(--color-gold);
	border-color: var(--color-gold) !important;
}

.pagenavi .larger , .pagenavi .smaller{
	background-color: #fff;
}

.single-top {
  margin-bottom: 25px;
}
.single-top data {
  display: inline-block;
  font-size: 18px;
}
.single-top p {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: #fff;
  font-weight: bold;
  background-color: var(--key-color);
  border-bottom-right-radius: 20px;
  padding: 0 30px;
}
.single-top h2 {
  font-size: 26px;
  font-weight: bold;
  color: var(--key-color);
  margin-top: 30px;
  letter-spacing: var(--letter-spacing);
}
.single-top p.pink {background-color: var(--color-pink);}
.single-top p.green {background-color: var(--key-color);}

@media screen and (max-width:768px) {
  
  .single-top {
    margin-bottom: 25px;
  }
  .single-top data {
    font-size: 16px;
  }
  .single-top p {
    margin-right: 10px;
    font-size: 16px;
    border-bottom-right-radius: 20px;
    padding: 0 15px;
  }
  .single-top h2 {
    font-size: 20px;
    margin-top: 15px;
  }

}

/* ------------------------------------------
  FAQ タブ切り替え
--------------------------------------------- */
.tab-group {
  display: flex;
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  gap: 4px;
}

.tab {
  flex: 1;
  padding: 14px 10px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  background-color: #F6F6F6;
  border: 2px solid var(--color-border);
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  color: #888;
  transition: background-color 0.3s, color 0.3s;
  user-select: none;
}

.tab:hover {
  background-color: #faeaea;
  color: var(--key-color);
}

.tab.is-active {
  background-color: #fff;
  border-color: var(--key-color);
  color: var(--key-color);
  position: relative;
  z-index: 1;
}

.tab.is-active::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
}

.panel-group {
  border: 2px solid var(--key-color);
  border-radius: 0 0 6px 6px;
  background-color: #fff;
  padding: 30px;
}

.panel {
  display: none;
}

.panel.is-show {
  display: block;
}

/* FAQ リスト */
.faq_list {
  margin-bottom: 30px;
}

.faq_list dl {
  border-top: 1px solid var(--color-border-light);
}

.faq_list dt,
.faq_list dd {
  padding: 14px 14px 14px 46px;
  border-bottom: 1px solid var(--color-border-light);
  line-height: 1.8;
  position: relative;
}

.faq_list dt {
  font-weight: 700;
  cursor: pointer;
  padding-right: 46px;
}

.faq_list dt::after {
  content: '+';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: 700;
  color: var(--key-color);
  line-height: 1;
  transition: transform 0.3s;
}

.faq_list dt.is-open::after {
  content: '−';
}

/*.faq_list dt:hover {
  background-color: #faeaea;
}*/

.faq_list dt::before {
  content: 'Q';
  position: absolute;
  left: 12px;
  top: 14px;
  font-weight: 900;
  font-size: 25px;
  line-height: 1;
}

.faq_list dd {
  background-color: #fff;
  display: none;
}

.faq_list dd::before {
  content: 'A';
  position: absolute;
  left: 12px;
  top: 14px;
  font-weight: 900;
  color: var(--key-color);
  font-size: 25px;
  line-height: 1;
}

.panel--business-faq .faq_list dl {
  counter-reset: business-faq;
}

.panel--business-faq .faq_list dt,
.panel--business-faq .faq_list dd {
  padding-left: 62px;
}

.panel--business-faq .faq_list dt {
  counter-increment: business-faq;
}

.panel--business-faq .faq_list dt::before {
  content: 'Q' counter(business-faq) '.';
  font-size: 20px;
}

.panel--business-faq .faq_list dd::before {
  content: 'A' counter(business-faq) '.';
  font-size: 20px;
}

.section-title-panel {
  font-size: 20px;
  font-weight: 700;
  margin: 30px 0 25px;
  padding: 12px 14px;
  background-color: #f8f4ea;
  border-left: 4px solid var(--key-color);
}

.section-title-panel:first-child {
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  .tab {
    font-size: 13px;
    padding: 12px 6px;
  }

  .panel-group {
    padding: 20px 15px;
  }

  .faq_list dt,
  .faq_list dd {
    padding: 12px 12px 12px 38px;
    font-size: 14px;
  }

  .faq_list dt::before,
  .faq_list dd::before {
    left: 10px;
    font-size: 15px;
  }

  .panel--business-faq .faq_list dt,
  .panel--business-faq .faq_list dd {
    padding-left: 50px;
  }

  .panel--business-faq .faq_list dt::before,
  .panel--business-faq .faq_list dd::before {
    font-size: 15px;
  }
}

/* ご利用方法リスト */
.howto-list {
  margin-top: 20px;
  border-top: 1px solid var(--color-border-light);
}
.howto-list dt {
  font-weight: 700;
  padding: 14px 14px 6px;
  color: var(--key-color);
  font-size: 16px;
}
.howto-list dd {
  padding: 0 14px 14px;
  border-bottom: 1px solid var(--color-border-light);
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .howto-list dt,
  .howto-list dd {
    font-size: 14px;
    padding-left: 10px;
    padding-right: 10px;
  }
}

.single{
	margin-bottom: 100px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--key-color);
}
.single h2 {
  font-size: 23px;
  font-weight: bold;
  margin-bottom: 30px;
  padding: 10px 20px;
  letter-spacing: var(--letter-spacing);
  background-color: var(--color-gray);
}
.single h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 30px;
  letter-spacing: var(--letter-spacing);
}
.single img {
	margin: 0 auto 20px;
}
.single p {
	margin-bottom: 20px;
}

.single a{
	text-decoration: underline;
	color: var(--color-link);
}

.wp-block-file .wp-block-file__button{
	background-color: var(--color-gold) !important;
}


.single table , table.p01{
	width: 100%;
	margin: 15px auto 40px;
	border-top: 1px solid var(--color-border-table);
}
.single table th,
.single table td,
table.p01 th,
table.p01 td{
	padding: 15px 20px;
	border-bottom: 1px solid var(--color-border-table);
}
.single table th , table.p01 th {
	font-weight:bold;
	background-color: var(--color-gray);
	border-bottom: 1px solid var(--color-border-table);
	vertical-align: middle;
}
.single table th , table.p01 th {white-space: nowrap;}

.table-100{min-width: 100px;}
.table-110{min-width: 110px;}
.table-120{min-width: 120px;}
.table-130{min-width: 130px;}
.table-140{min-width: 140px;}
.table-150{min-width: 150px;}
.table-160{min-width: 160px;}
.table-170{min-width: 170px;}
.table-180{min-width: 180px;}

@media screen and (max-width:768px) {
  
  .single{
    margin-bottom: 50px;
    padding-bottom: 30px;
  }
  .single h2 {
    font-size: 18px;
  }
  .single h3 {
    font-size: 16px;
  }
	.single table img{
    max-width:  100%;
    height: auto;
  }
	.single table , table.p01{
		width: 100%;
		margin: 15px auto 40px;
		border-top: 1px solid var(--color-border-table);
	}
	.single table th,
	.single table td,
	table.p01 th,
	table.p01 td{
		padding: 15px 20px;
		display: block;
	}
	.single table th , table.p01 th {
		font-weight:bold;
		background-color: var(--color-gray);
		border-bottom: none;
		vertical-align: middle;
	}

}


/* ------------------------------------------
  参加事業者申請フォーム
--------------------------------------------- */

.entry-application {
  position: relative;
}

.entry-form__hero {
  position: relative;
  margin-bottom: 28px;
  overflow: hidden;
}

/*.entry-form__hero::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -56px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 72, 72, 0.18) 0%, rgba(212, 72, 72, 0) 72%);
}*/

.entry-form__eyebrow {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.88);
  color: var(--key-color);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.entry-form__title {
  position: relative;
  z-index: 1;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.35;
  margin-bottom: 16px;
}

.entry-form__lead {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.9;
}

.entry-form {
  display: grid;
  gap: 24px;
}

.entry-form__section {
  padding: 32px;
  /*background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #fffdf8 100%);*/
  border: 1px solid rgba(196, 179, 150, 0.42);
  border-radius: 28px;
  /*box-shadow: 0 16px 36px rgba(60, 46, 28, 0.06);*/
}

.entry-form__section-head {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 24px;
}

.entry-form__section-index {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 20px;
  background: var(--key-color);
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  flex: 0 0 56px;
}

.entry-form__section-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.4;
}

.entry-form__section-text {
  margin-bottom: 0;
  line-height: 1.8;
}

.entry-form__subsection {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(196, 179, 150, 0.4);
}

.entry-form__subsection:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.entry-form__subheading {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 18px;
}

.entry-form__subheading::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--key-color);
}

.entry-form__grid--valign-top {
  align-items: start;
}

.entry-form__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.entry-form__col h5 {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 15px;
  font-weight: 800;
  padding-bottom: 6px;
  border-bottom: 2px solid rgba(212, 72, 72, 0.2);
  margin-bottom: 4px;
}

.entry-form__col > p {
  line-height: 1.7;
}

.entry-form__grid {
  display: grid;
  gap: 18px 40px;
}

.entry-form__grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* ラベル左・入力右 2カラムレイアウト */
.entry-form__rows {
  display: flex;
  flex-direction: column;
}

.entry-form__rows > .entry-form__field {
  display: grid;
  grid-template-columns: 260px 1fr;
  column-gap: 32px;
  row-gap: 10px;
  align-items: start;
  padding: 20px 0;
  border-top: 1px dashed rgba(196, 179, 150, 0.6);
}

.entry-form [hidden] {
  display: none !important;
}

.entry-form__rows > .entry-form__field:first-child {
  border-top: none;
  padding-top: 0;
}

.entry-form__rows > .entry-form__field > .entry-form__label {
  padding-top: 14px;
  align-self: start;
}

.entry-form__rows > .entry-form__field > *:not(.entry-form__label) {
  grid-column: 2;
}

/* 所在地フィールド内のサブラベル（市区郡町村、町番地等） */
.entry-form__sublabel {
  font-size: 15px;
  font-weight: 700;
  margin: 8px 0 4px;
}

.entry-form__nested-field {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px dashed rgba(196, 179, 150, 0.6);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.entry-form__nested-title {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.6;
  margin: 0 0 4px;
}

.entry-form__rows > .entry-form__field > .entry-form__nested-field > .entry-form__inline {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-wrap: wrap;
}

.entry-form__rows > .entry-form__field > div > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.entry-form__field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.entry-form__field--full {
  grid-column: 1 / -1;
}

.entry-form__label {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-weight: 700;
  line-height: 1.6;
}

.entry-form__required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background-color: rgba(214, 61, 61, 0.12);
  color: #c33d3d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.entry-form__input,
.entry-form select {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid #d8cfc1;
  border-radius: 16px;
  background-color: #fff;
  font-size: 15px;
  line-height: 1.6;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.entry-form__input:focus,
.entry-form select:focus {
  outline: none;
  border-color: rgba(198, 63, 63, 0.62);
  box-shadow: 0 0 0 4px rgba(214, 61, 61, 0.12);
  transform: translateY(-1px);
}

.entry-form__input::placeholder,
.entry-form__textarea::placeholder {
  color: #a89d90;
}

.entry-form__textarea {
  min-height: 120px;
  resize: vertical;
}

.entry-form__choice-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}

.entry-form__choice-group label,
.entry-form__consent-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 16px;
  border: 1px solid #ddd1c0;
  border-radius: 16px;
  background-color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.entry-form__choice-group input,
.entry-form__consent-box input {
  width: 18px;
  height: 18px;
  accent-color: var(--key-color);
  flex: 0 0 auto;
}

.entry-form__consent-box input:disabled + span {
  opacity: 0.45;
}

.entry-form__inline {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.entry-form__inline label {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1 1 140px;
}

.entry-form__inline--date .entry-form__input {
  flex: 1 1 0;
  width: auto;
  min-width: 0;
}

.entry-form__consent {
  padding: 24px;
	background-color: #f9f9f9;
  /*background: linear-gradient(135deg, #fbf8f1 0%, #f4f9f3 100%);*/
  border: 1px solid rgba(196, 179, 150, 0.42);
  border-radius: 24px;
}

.entry-form__notice {
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.8;
  color: #5d5245;
}

.entry-form__submit {
  text-align: center;
  margin-top: 28px;
}

.entry-form__confirm {
  padding: 24px;
  border: 1px solid rgba(196, 179, 150, 0.42);
  background-color: #fff;
  border-radius: 16px;
}

.entry-form__confirm-lead {
  margin-bottom: 18px;
  font-size: 16px;
  font-weight: 700;
}

.entry-form__confirm-section + .entry-form__confirm-section {
  margin-top: 28px;
}

.entry-form__confirm-heading {
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(212, 72, 72, 0.2);
  font-size: 18px;
  font-weight: 800;
}

.entry-form__confirm-list {
  display: grid;
  gap: 0;
  border-top: 1px dashed rgba(196, 179, 150, 0.6);
}

.entry-form__confirm-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px dashed rgba(196, 179, 150, 0.6);
}

.entry-form__confirm-row dt {
  font-weight: 700;
}

.entry-form__confirm-row dd {
  min-width: 0;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.entry-form__submit .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  min-height: 64px;
  padding: 18px 60px;
  border: none;
  border-radius: 50px;
  background: var(--key-color);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .1em;
  box-shadow: 4px 6px 0 var(--color-red-shadow);
  cursor: pointer;
  position: relative;
  top: 0;
  left: 0;
  transition: box-shadow 0.1s ease, top 0.1s ease, left 0.1s ease, opacity 0.3s ease;
}

.entry-form__submit .button--secondary {
  margin-right: 16px;
  background: #fff;
  color: var(--key-color);
  border: 2px solid var(--key-color);
  box-shadow: none;
}

.entry-form__submit .button:hover {
  color: #fff;
  opacity: 0.9;
  box-shadow: 2px 3px 0 var(--color-red-shadow);
  top: 3px;
  left: 2px;
}

.entry-form__submit .button--secondary:hover {
  color: var(--key-color);
  box-shadow: none;
}

.entry-form__submit .button:active {
  box-shadow: none;
  top: 6px;
  left: 4px;
}

[data-formrun-show-if-error] {
  display: block;
  color: #c33d3d;
  font-size: 12px;
  font-weight: 700;
}

.entry-form__with-unit,
.entry-form__postal,
.entry-form__inline--period label {
  flex-wrap: wrap;
}

.entry-form__with-unit [data-formrun-show-if-error],
.entry-form__postal [data-formrun-show-if-error],
.entry-form__inline--period label [data-formrun-show-if-error] {
  flex: 0 0 100%;
  margin-top: 4px;
}

@media only screen and (max-width: 768px) {

  .entry-form__hero {
    padding: 28px 22px;
    border-radius: 24px;
  }

  .entry-form__title {
    font-size: 24px;
  }

  .entry-form__lead {
    font-size: 14px;
  }

  .entry-form__section {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .entry-form__section-head {
    gap: 14px;
    margin-bottom: 18px;
  }

  .entry-form__section-index {
    width: 46px;
    height: 46px;
    font-size: 16px;
    border-radius: 16px;
    flex-basis: 46px;
  }

  .entry-form__section-title {
    font-size: 20px;
  }

  .entry-form__grid--2 {
    grid-template-columns: 1fr;
  }

  .entry-form__rows > .entry-form__field {
    grid-template-columns: 1fr;
  }

  .entry-form__rows > .entry-form__field > .entry-form__label {
    grid-row: auto;
    padding-top: 0;
  }

  .entry-form__rows > .entry-form__field > *:not(.entry-form__label) {
    grid-column: 1;
  }

  .entry-form__inline {
    flex-direction: column;
  }

  .entry-form__inline--date,
  .entry-form__inline--period {
    flex-direction: row;
    align-items: center;
  }

  .entry-form__inline--date label {
    flex: 1 1 0;
  }

  .entry-form__choice-group label,
  .entry-form__consent-box {
    width: 100%;
  }

  .entry-form__choice-group--plain label {
    width: auto;
  }

  .entry-form__attachment,
  .entry-form__condition,
  .entry-form__terms {
    padding: 16px 14px;
  }

  .entry-form__bank-codes {
    padding: 12px 14px;
  }

  .entry-form__bank-codes ul {
    grid-template-columns: 1fr;
  }

  .entry-form__checkline {
    font-size: 15px;
  }

  .entry-form__with-unit,
  .entry-form__postal,
  .entry-form__inline--period {
    flex-wrap: wrap;
  }

  .entry-form__add-note {
    padding: 10px 14px;
    font-size: 13px;
  }

  .entry-form__submit .button {
    width: 100%;
    min-width: 0;
    font-size: 16px;
    padding: 16px 40px;
  }

  .entry-form__submit .button--secondary {
    margin: 0 0 14px;
  }

  .entry-form__confirm {
    padding: 18px 14px;
  }

  .entry-form__confirm-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

}

/* ===============================
   フォームバリデーション エラースタイル
   =============================== */
.entry-form__error-msg {
  display: block;
  color: #d00;
  margin-top: 5px;
  font-weight: bold;
}

.entry-form__input.is-error {
  border-color: #d00 !important;
  background-color: #fff5f5 !important;
}

.entry-form__field.is-error > .entry-form__label {
  color: #d00;
}

/* 文字カウンター */
.entry-form__char-count {
  display: block;
  font-size: 0.75rem;
  color: #888;
  text-align: right;
  margin-top: 3px;
}

.entry-form__char-count--over {
  color: #d00;
  font-weight: 600;
}

/* 注記テキスト */
.entry-form__note {
  display: block;
  margin-top: 5px;
  line-height: 1.6;
}

.entry-form__note--alert {
  color: var(--color-alert);
  font-weight: 700;
  line-height: 1.8;
	font-size: 15px;
}

.entry-form__label small {
  width: 100%;
  font-size: 0.78rem;
  font-weight: 700;
}

.entry-form__choice-group--plain label,
.entry-form__checkline {
  border: none;
  border-radius: 0;
  padding: 4px 0;
  min-height: 0;
  background: transparent;
  font-size: 16px;
}

.entry-form__choice-group--plain {
  gap: 8px 18px;
}

.entry-form__attachment-group,
.entry-form__condition-list {
  display: grid;
  gap: 18px;
  margin: 28px 0;
}

.entry-form__condition-list__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.entry-form__attachment,
.entry-form__condition,
.entry-form__terms,
.entry-form__bank-codes {
  padding: 22px 24px;
  border: 1px solid rgba(196, 179, 150, 0.42);
  background: #fff;
}

.entry-form__attachment {
  border-left: 4px solid var(--color-alert);
}

.entry-form__attachment h5,
.entry-form__condition h5,
.entry-form__bank-codes h5,
.entry-form__terms h5 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 8px;
}

.entry-form__condition h5 {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.entry-form__attachment .entry-form__note--alert {
  font-weight: 600;
}

.entry-form__attachment ol {
  margin: 10px 0 0;
  padding-left: 0;
  line-height: 1.9;
  list-style: none;
  counter-reset: attachment-counter;
}

.entry-form__attachment ol li {
  display: flex;
  gap: 10px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(196, 179, 150, 0.25);
  counter-increment: attachment-counter;
  align-items: flex-start;
}

.entry-form__attachment ol li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.entry-form__attachment ol li::before {
  content: counter(attachment-counter);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-alert);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  margin-top: 3px;
  line-height: 1;
}

.entry-form__terms ol {
  margin: 10px 0 0;
  padding-left: 0;
  list-style: none;
  line-height: 1.9;
}

.entry-form__terms ol > li {
  padding-left: 3em;
  text-indent: -3em;
  margin-bottom: 1em;
  font-feature-settings: normal;
}

.entry-form__terms ol > li .terms-sub-note {
  display: block;
  text-indent: 0;
  padding-left: 0;
  margin-top: 0.4em;
}

.entry-form__terms ol > li .terms-sub-example {
  display: block;
  text-indent: 0;
  padding-left: 0;
}

.entry-form__condition > p:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding-bottom: 10px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(212, 72, 72, 0.25);
  font-size: 15px;
  font-weight: 700;
}

.entry-form__checkline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 6px 0 10px;
  font-size: 16px;
  font-weight: 700;
}

.entry-form__checkline input {
  width: 20px;
  height: 20px;
  accent-color: var(--key-color);
}

.entry-form__with-unit,
.entry-form__postal {
  display: flex;
  align-items: center;
  gap: 10px;
}

.entry-form__with-unit .entry-form__input,
.entry-form__postal .entry-form__input {
  flex: 1 1 0;
  min-width: 0;
}

.entry-form__inline--period {
  align-items: center;
}

.entry-form__inline--period label {
  flex: 0 1 auto;
}

.entry-form__period-separator {
  flex: 0 0 auto;
  font-weight: 700;
}

.entry-form__inline--period .entry-form__input {
  flex: 0 0 88px;
  width: auto;
  min-width: 88px;
}

.entry-form__add-note {
  display: block;
  margin: 16px 0;
  padding: 12px 18px;
  background: #faf7f2;
  border: 1px solid rgba(196, 179, 150, 0.5);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #5d5245;
  line-height: 1.7;
}

.entry-form__details {
  margin-top: 14px;
  padding: 16px 20px;
  border: 1px solid rgba(196, 179, 150, 0.42);
  background: #fff;
}

.entry-form__details summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.entry-form__details summary::-webkit-details-marker {
  display: none;
}

.entry-form__details summary::before {
  content: '+';
  display: inline-block;
  width: 1em;
  text-align: center;
  margin-right: 4px;
}

.entry-form__details[open] summary::before {
  content: '-';
}

.entry-form__details .entry-form__grid {
  margin-top: 18px;
}

.entry-form__details .entry-form__subsection:first-of-type {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(196, 179, 150, 0.4);
}

.entry-form__bank-codes {
  margin: 16px 0;
  padding: 14px 20px;
}

.entry-form__bank-codes h5 {
  margin-bottom: 10px;
}

.entry-form__bank-codes ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 24px;
  font-size: 15px;
  line-height: 1.7;
  margin-top: 6px;
  padding-left: 0;
  list-style: none;
}

.entry-form__bank-codes > p {
  margin-top: 8px;
}

.entry-form__terms {
  max-height: 340px;
  overflow-y: auto;
  margin: 24px 0;
}

/* 個人情報に関するお知らせ */
.entry-form__privacy-notice {
  text-align: center;
  margin: 32px 0 16px;
  padding: 16px;
  background: #f5f5f5;
  border-radius: 4px;
}

/* ===============================
   添付書類グループ：送付先誘導バナー
   =============================== */
.entry-form__attachment-notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
  padding: 14px 20px;
  background: #fff8f8;
  border: 1px solid rgba(212, 72, 72, 0.3);
  font-weight: 700;
  color: var(--color-alert);
  line-height: 1.6;
}

.entry-form__attachment-notice__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-alert);
  text-decoration: underline;
  white-space: nowrap;
}

.entry-form__attachment-notice__link:hover {
  opacity: 0.75;
}

/* ===============================
   送信完了ページ
   =============================== */
.thanks-message {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.thanks-message__eyebrow {
  color: var(--key-color);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.thanks-message__heading {
  margin-top: 8px;
  font-size: 30px;
  font-weight: 800;
}

.thanks-message__lead {
  margin-top: 18px;
  line-height: 1.9;
}

.thanks-message__panel {
  margin-top: 28px;
  text-align: left;
}

.thanks-message__panel h4 {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 800;
}

.thanks-message__panel p + p {
  margin-top: 10px;
}

.thanks-message__panel a {
  color: var(--color-link);
  text-decoration: underline;
}

.thanks-message__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
}

/* ===============================
   添付書類送付先セクション
   =============================== */

.attachment-address__lead {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-alert);
  margin-bottom: 20px;
}

.attachment-address__list {
  display: grid;
  gap: 14px;
}

.attachment-address__row {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  line-height: 1.8;
}

.attachment-address__row::before {
  content: "■";
  color: #3a3a3a;
  flex: 0 0 auto;
  font-size: 12px;
  margin-top: 4px;
}

.attachment-address__row dt {
  font-weight: 700;
  white-space: nowrap;
  flex: 0 0 auto;
}

.attachment-address__row dd {
  color: #333;
}

.attachment-address__row dd a {
  color: var(--key-color);
  text-decoration: underline;
  word-break: break-all;
}

.attachment-address__body-list {
  margin-bottom: 4px;
  padding-left: 1em;
}

.attachment-address__body-list li {
  line-height: 1.9;
}

@media only screen and (max-width: 768px) {
  .thanks-message {
    padding: 28px 20px;
  }

  .thanks-message__heading {
    font-size: 24px;
  }

  .thanks-message__actions {
    flex-direction: column;
  }

  .thanks-message__actions .btn-dark,
  .thanks-message__actions .btn-outline {
    width: 100%;
    text-align: center;
  }

  .attachment-address {
    padding: 20px 18px;
  }

  .attachment-address__row {
    font-size: 13px;
  }
}

/* ===============================
   問い合わせ窓口
   =============================== */
.contact-info {
  border-radius: 8px;
  padding: 32px 40px;
  background: var(--color-gray);
}

.contact-info__heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
  padding-bottom: 12px;
  border-bottom: 2px solid #e0e0e0;
  margin-bottom: 16px;
}

.contact-info__heading::before {
  content: "［";
}

.contact-info__heading::after {
  content: "］";
}

.contact-info__name {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-info__lead {
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.contact-info__tel-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.contact-info__tel-list > div {
  display: flex;
  gap: 24px;
  align-items: baseline;
}

.contact-info__tel-list dt {
  font-weight: 700;
  white-space: nowrap;
}

.contact-info__tel-list dd {
  font-size: 1rem;
  line-height: 1.8;
}

.contact-info__tel-list dd a {
  font-size: 1.2rem;
  font-weight: 700;
  color: #333;
  text-decoration: none;
}

.contact-info__tel-list dd a:hover {
  text-decoration: underline;
}

.contact-info__holiday {
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .contact-info {
    padding: 24px 20px;
  }

  .contact-info__tel-list {
    flex-direction: column;
    gap: 4px;
  }
}

/* FAQ お問い合わせセクション */
.faq-contact {
  margin-top: 8px;
}

.faq-contact__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #333;
  margin-top: 24px;
  margin-bottom: 10px;
}

.faq-contact__title:first-child {
  margin-top: 0;
}

.faq-contact__name {
  font-size: 1rem;
  margin-bottom: 8px;
}

.faq-contact__link {
  margin-bottom: 30px;
}

.faq-contact__link a {
  color: var(--color-main, #c00);
  text-decoration: underline;
}

.faq-contact__link a:hover {
  text-decoration: none;
}

.faq-contact__text {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 4px;
}

.faq-contact__text a {
  color: #333;
  font-weight: 700;
  text-decoration: none;
}

.faq-contact__text a:hover {
  text-decoration: underline;
}

.faq-contact__holiday {
  font-size: 0.85rem;
  color: #777;
  margin-top: 8px;
  line-height: 1.7;
}
