@charset "utf-8";

/* Reset
----------------------------------------------------------------- */
*, ::before, ::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}
body {
  margin: 0;
}
main {
  display: block;
}
p, table, blockquote, address, pre, iframe, form, figure, dl {
  margin: 0;
}
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}
ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
dt {
  font-weight: bold;
}
dd {
  margin-left: 0;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}
pre {
  font-family: monospace, monospace;
  font-size: inherit;
}
address {
  font-style: inherit;
}
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}
abbr[title] {
  text-decoration: underline dotted;
}
b, strong {
  font-weight: bolder;
}
code, kbd, samp {
  font-family: monospace, monospace;
  font-size: inherit;
}
small {
  font-size: 80%;
}
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
svg, img, embed, object, iframe {
  vertical-align: bottom;
}
button, input, optgroup, select, textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}
[type="checkbox"] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}
[type="radio"] {
  -webkit-appearance: radio;
  appearance: radio;
}
button, [type="button"], [type="reset"], [type="submit"] {
  cursor: pointer;
}
button:disabled, [type="button"]:disabled, [type="reset"]:disabled, [type="submit"]:disabled {
  cursor: default;
}
:-moz-focusring {
  outline: auto;
}
select:disabled {
  opacity: inherit;
}
option {
  padding: 0;
}
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}
legend {
  padding: 0;
}
progress {
  vertical-align: baseline;
}
textarea {
  overflow: auto;
}
[type="search"] {
  outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
label[for] {
  cursor: pointer;
}
details {
  display: block;
}
summary {
  display: list-item;
}
[contenteditable]:focus {
  outline: auto;
}
table {
  border-color: inherit;
  border-collapse: collapse;
}
caption {
  text-align: left;
}
td, th {
  vertical-align: top;
  padding: 0;
}
th {
  text-align: left;
  font-weight: bold;
}


/* Base
----------------------------------------------------------------- */
html {
  height: 100%;
  line-height: 1.75;
  scroll-behavior: smooth;
}

body {
  position: relative;
  min-height: 100%;
  -webkit-text-size-adjust: 100%;
  background-color: #FEFCF8;
  color: #5D5D5D;
  font-weight: 500;
  font-family: "Zen Maru Gothic", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: #794310;
  text-decoration: none;
  transition: all 0.2s ease;
}
@media (min-width: 992px) {
  a:hover {
    color: #794310;
  }
  a img {
    transition: opacity 0.3s ease;
  }
  a:hover img {
    opacity: 0.8;
  }
  a[href^='tel'] {
    pointer-events: none;
    cursor: text;
  }
}


/*--------------------------------------------------
  難聴児支援センター Figmaデザイン反映用CSS
--------------------------------------------------*/
.l-container {
  overflow: hidden;
}

/* Header
----------------------------------------------------------------- */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.l-header > .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  padding: 0 3.05343vw;
  background: #fff;
}
.l-header .logo {
  width: calc(93.89313vw - 74px);
  max-width: 296px;
}
.l-header .logo a {
  display: block;
}
@media (min-width: 992px) {
  .l-header > .inner {
    position: relative;
    height: 160px;
  }
  .l-header .logo {
    position: absolute;
    top: 34px;
    left: 3.05343vw;
    z-index: 101;
    width: 38.28125vw;
    height: 46px;
    max-width: 420px;
  }
  .l-header .logo a {
    display: block;
    width: 100%;
    height: 100%;
    background: url(../img/img_logo_l.svg) no-repeat center center / contain;
  }
  .l-header .logo img {
    display: none;
  }
}
@media (min-width: 1200px) {
  .l-header .logo {
    max-width: 508px;
    height: 56px;
  }
}
@media (hover: hover) {
  .l-header .logo a:hover {
    opacity: 0.8;
  }
}

/* グローバルナビ */
.l-gnav {
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100svh;
  background: rgba(255,255,255,0.98);
  z-index: -1;
  overflow-y: auto;
  transition: opacity 0.3s;
  pointer-events: none;
}
.l-gnav.open {
  display: block;
  opacity: 1;
  z-index: 100;
  animation: fadeIn 0.3s;
  pointer-events: auto;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.l-gnav .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 6.10687vw;
  padding-top: 4.5rem;
  border-radius: 24px;
  background: #F8F6EF;
}
.l-gnav-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.l-gnav-main .item {
  font-weight: 700;
  font-size: 1.125rem;
}
.l-dropdown-list .item,
.l-gnav-sub .item {
  font-weight: 500;
  font-size: 0.9375rem;
}
.l-gnav .item a {
  display: block;
  position: relative;
  padding: 0.5rem;
  color: #794310;
}
.l-gnav .js-dropdown > a::after {
  position: absolute;
  top: calc(50% - 4px);
  right: 0.5rem;
  width: 14px;
  height: 8px;
  background: url(../img/icon_arrow_down.svg) no-repeat center center / contain;
  content: "";
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease
}
.l-gnav .js-dropdown > a[aria-expanded=true]::after {
  transform: rotate(180deg);
}
.l-gnav-sub {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  position: relative;
  margin-top: 40px;
  margin-bottom: 40px;
}
.l-gnav-sub .item.contact {
  order: -1;
  margin-bottom: 1rem;
}
.l-gnav-sub .item.contact a {
  width: 225px;
  border: 2px solid #794310;
  border-radius: 27px;
  box-shadow: 0 4px 0 0 rgba(0,0,0,0.16);
  background: #F8DBD8;
  font-weight: 700;
  font-size: 1.125rem;
  text-align: center;
}
.l-gnav-sub .item.contact a:hover {
  transform: translateY(4px);
  box-shadow: none;
}
.l-dropdown-list .item a::before {
  position: absolute;
  top: calc(50% - 2px);
  left: -6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FEA79E;
  content: "";
}
.l-dropdown-list {
  opacity: 0;
  visibility: hidden;
  height: 0;
  margin-right: 2rem;
  margin-left: 2rem;
  -webkit-transition: opacity .3s ease, visibility .3s ease, height .3s ease;
  transition: opacity .3s ease, visibility .3s ease, height .3s ease;
}
.l-dropdown-list.open {
  opacity: 1;
  visibility: visible;
  height: auto;
}
@media (min-width: 992px) {
  .l-gnav {
    position: static;
    opacity: 1;
    visibility: visible;
    z-index: 100;
    pointer-events: auto;
    height: 100%;
    overflow: visible;
  }
  .l-gnav .inner {
    flex-direction: column-reverse;
    height: 100%;
    margin: 0;
    padding-top: 0;
    border-radius: 0;
    background: #FFF;
  }
  .l-gnav-main {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: 100%;
  }
  .l-gnav-main > .item {
    width: calc((100% - 48px) / 5);
    max-width: 200px;
  }
  .l-gnav-main > .item > a {
    padding: 0.75rem 0.5rem;
    text-align: center;
  }
  .l-gnav-main .js-dropdown > a {
    padding-right: 1.5em;
  }
  .l-dropdown-list.open {
    z-index: -1;
    width: calc(100% + 3.75rem);
    margin: 0 -1.875rem;
    padding: 1.5rem 1rem 1.5rem 1.75rem;
    border-bottom-right-radius: 24px;
    border-bottom-left-radius: 24px;
    box-shadow: 0 3px 12px 0 rgba(0,0,0,0.16);
    background-color: #FFF;
  }
  .l-dropdown-list .item {
    font-size: 1.125rem;
  }
  .l-dropdown-list .item a {
    padding-left: 1rem;
  }
  .l-dropdown-list .item a::before {
    top: calc(50% - 4px);
    left: -2px;
    width: 8px;
    height: 8px;
  }
  .l-gnav-sub {
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
    width: 100%;
    margin-top: 33px;
    margin-bottom: 20px;
  }
  .l-gnav-sub .item.contact {
    order: 1;
    margin-bottom: 4px;
  }
  .js-dropdown {
    position: relative;
  }
  .l-dropdown-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #FFF;
  }
}
@media (any-hover: hover) {
  .l-gnav .js-dropdown > .l-dropdown-list {
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    width: calc(100% + 2.5rem);
    height: 0;
    margin: 0 -1.25rem;
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    border-bottom-right-radius: 24px;
    border-bottom-left-radius: 24px;
    box-shadow: 0 3px 12px 0 rgba(0,0,0,0.16);
    background-color: #FFF;
    pointer-events: none;
    transition: opacity .3s, visibility .3s, height .3s;
  }
  .l-gnav .js-dropdown:hover > .l-dropdown-list,
  .l-gnav .js-dropdown:focus-within > .l-dropdown-list {
    opacity: 1;
    visibility: visible;
    height: auto;
    pointer-events: auto;
    z-index: 10;
  }
  .l-gnav-main > .item > a::before {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 4px;
    border-radius: 4px;
    background: #FEA79E;
    content: "";
    transform: translateX(-50%);
    transition: width 0.3s ease;
  }
  .l-gnav-main > .item:hover > a::before {
    width: 100%;
  }
  .l-gnav .js-dropdown:hover > a::after {
    transform: rotate(180deg);
  }
  .l-gnav-sub .item a:hover {
    opacity: 0.8;
  }
}

/* メニューオープン時のbody固定 */
body.menu-open {
  overflow: hidden;
}

/* ハンバーガーメニュー */
@media (max-width: 991px) {
  .l-header .menu {
    display: block;
    position: relative;
    z-index: 101;
    width: 3.875rem;
    height: 3.875rem;
    padding: 0;
    cursor: pointer;
    box-shadow: 0 4px 0 rgba(0,0,0,0.16);
    background: #F8DBD8;
    border: 2px solid #794310;
    border-radius: 50%;
    -webkit-appearance: none;
    appearance: none;
  }
  .l-header .menu:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 rgba(0,0,0,0.16);
  }
  .l-header .menu::before,
  .l-header .menu::after {
    content: "";
  }
  .l-header .menu > span,
  .l-header .menu::before,
  .l-header .menu::after {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -12px;
    width: 24px;
    height: 2px;
    border-radius: 100vmax;
    background-color: #794310;
    opacity: 1;
  }
  .l-header .menu > span {
    margin-top: -1px;
  }
  .l-header .menu::before {
    margin-top: -8px
  }
  .l-header .menu::after {
    margin-top: 6px;
  }
  .l-header .menu[aria-expanded=false] > span {
    -webkit-transition: opacity .3s ease, -webkit-transform .3s .3s ease;
    transition: opacity .3s ease, -webkit-transform .3s .3s ease;
    transition: transform .3s .3s ease, opacity .3s ease;
    transition: transform .3s .3s ease, opacity .3s ease,-webkit-transform .3s .3s ease;
  }
  .l-header .menu[aria-expanded=false]::before,
  .l-header .menu[aria-expanded=false]::after {
    -webkit-transition: margin .3s .3s ease, -webkit-transform .3s ease;
    transition: margin .3s .3s ease, -webkit-transform .3s ease;
    transition: transform .3s ease, margin .3s .3s ease;
    transition: transform .3s ease, margin .3s .3s ease, -webkit-transform .3s ease;
  }
  .l-header .menu[aria-expanded=true]::before,
  .l-header .menu[aria-expanded=true]::after {
    -webkit-transition: margin .3s ease, -webkit-transform .3s .3s ease;
    transition: margin .3s ease, -webkit-transform .3s .3s ease;
    transition: transform .3s .3s ease, margin .3s ease;
    transition: transform .3s .3s ease, margin .3s ease, -webkit-transform .3s .3s ease;
  }
  .l-header .menu[aria-expanded=true] > span {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    opacity: 0;
    -webkit-transition: opacity .3s ease, -webkit-transform .3s ease;
    transition: opacity .3s ease, -webkit-transform .3s ease;
    transition: transform .3s ease, opacity .3s ease;
    transition: transform .3s ease, opacity .3s ease, -webkit-transform .3s ease
  }
  .l-header .menu[aria-expanded=true]::before {
    margin-top: -1px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .l-header .menu[aria-expanded=true]::after {
    margin-top: -1px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .p-family-list {
    justify-content: center;
  }
}

/* Footer
----------------------------------------------------------------- */
.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2.5rem 0;
  background: #F8EDE3;
}
.footer-links a {
  padding: 0.5rem;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}
.footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 3.5rem 3.05343vw;
  background: #FDF8F0;
}
.footer-info .title img {
  max-width: 342px;
}
.footer-info .address {
  font-size: 0.875rem;
  line-height: 2;
  text-align: center;
}
.footer-info .logo {
  position: relative;
  padding-left: 34px;
  font-size: 0.8125rem;
  font-weight: 400;
}
.footer-info .logo::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 27px;
  background: url(../img/img_mark.svg) no-repeat center center / contain;
  content: "";
}
.copyright {
  padding: 2rem 3.05343vw 1.5rem;
  background: #F8EDE3;
  color: #957F6A;
  font-size: 0.6875rem;
  letter-spacing: 0.05em;
  text-align: center;
}
.pagetop {
  position: fixed;
  bottom: 14px;
  right: 14px;
  width: 48px;
  height: 48px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s, transform 0.4s, bottom 0.4s;
  transform: translateY(40px);
  z-index: 999;
}
.pagetop.is-show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.pagetop a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #F8DBD8;
  border: 2px solid #794310;
  border-radius: 50%;
  box-shadow: 0 4px 0 0 rgba(0, 0, 0, 0.16);
  color: #794310;
  font-size: 0;
}
.pagetop a::before {
  display: block;
  width: 8px;
  height: 18px;
  background: url(../img/img_arrow.svg) no-repeat center center / contain;
  content: "";
}
@media (max-width: 991px) {
  .pagetop a:active {
    transform: translateY(4px);
    box-shadow: none;
  }
}
@media (min-width: 768px) {
  .footer-links {
    flex-direction: row;
    justify-content: center;
    padding: 1.125rem 0;
  }
  .footer-info {
    padding: 3rem 0 1.5rem;
  }
  .footer-info .title img {
    max-width: 308px;
  }
  .footer-info .address {
    font-size: 1.125rem;
    line-height: 1.6;
  }
  .copyright {
    padding: 1rem 0;
    line-height: 2;
  }
  .pagetop {
    right: 32px;
    bottom: 32px;
  }
}
@media (hover: hover) {
  .pagetop a:hover {
    transform: translateY(4px);
    box-shadow: none;
  }
}

/* メインビジュアル */
.p-index-kv {
  position: relative;
  padding-bottom: 120px;
}
.index-slider {
  width: 100%;
  height: calc(100svh - 120px);
  overflow: hidden;
}
.slick-slide {
  height: calc(100svh - 120px);
}
.index-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-index-kv .catch {
  position: absolute;
  bottom: 26px;
  left: calc(50% - 210px);
  width: 420px;
  height: 242px;
}
@media (max-width: 392px) {
  .p-index-kv {
    padding-bottom: 30.53435vw;
  }
  .p-index-kv .catch {
    bottom: 6.61577vw;
    left: -3.435115vw;
    width: 106.87023vw;
    height: 61.5776vw;
  }
}
@media (min-width: 601px) {
  .p-index-kv .catch {
    right: -13px;
    left: inherit;
  }
}
@media (min-width: 768px) {
  .p-index-kv {
    margin-top: 90px;
  }
}
@media (min-width: 992px) {
  .p-index-kv {
    margin-bottom: 100px;
    padding-bottom: 0;
  }
  .index-slider,
  .slick-slide {
    height: min(796px, calc(160px + 41.45833vw));
  }
  .index-slider img {
    object-position: 0 0;
  }
  .p-index-kv .catch {
    right: -80px;
    bottom: 0;
    width: 910px;
    height: auto;
  }
  .p-index-kv .catch::after {
    position: absolute;
    right: 310px;
    bottom: -45px;
    width: 70px;
    height: 0;
    padding-top: 70px;
    background: url(../img/img_bubble.png) no-repeat center center / contain;
    content: "";
  }
}
@media (min-width: 1200px) {
  .index-slider img {
    object-position: center center;
  }
}
@media (min-width: 1680px) {
  .p-index-kv .catch {
    width: 53.90625vw;
    height: auto;
  }
  .p-index-kv .catch::after {
    right: 18.33333vw;
    bottom: -2.60417vw;
    width: 4.16667vw;
    height: 0;
    padding-top: 4.16667vw;
  }
}

[class^="p-index-"] > .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
  font-weight: 700;
  color: #794310;
  letter-spacing: 0.05em;
  text-align: center;
}
[class^="p-index-"] > .title::before {
  display: block;
  width: 32px;
  height: 29px;
  margin-bottom: 1rem;
  background: url(../img/img_dots.svg) no-repeat center center / contain;
  content: "";
}
.c-button {
  margin-top: 3rem;
  text-align: center;
}
.c-button a {
  display: inline-flex;
  align-items: center;
  position: relative;
  min-width: 260px;
  height: 58px;
  padding-left: 2.25rem;
  padding-right: 1.2em;
  border: 2px solid #794310;
  border-radius: 30px;
  box-shadow: 0 8px 0 0 rgba(0, 0, 0, 0.05);
  background: #F8DBD8;
  color: #794310;
  font-weight: 700;
  font-size: 1.25rem;
}
form .c-button + .c-button {
  margin-top: 1.75rem;
}
form .c-button a {
  justify-content: center;
  width: 76.33587vw;
  max-width: 300px;
  padding-right: 0;
  padding-left: 0;
  background-color: #F7ECE2;
}
.c-button a:hover {
  transform: translateY(4px);
  box-shadow: 0 4px 0 0 rgba(0, 0, 0, 0.05);
}
.c-button a::after {
  position: absolute;
  top: calc(50% - 7px);
  right: 20px;
  width: 8px;
  height: 14px;
  background: url(../img/icon_arrow.svg) no-repeat center center / contain;
  content: "";
}
form .c-button a::after {
  display: none;
}
.g-recaptcha {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}
@media (min-width: 992px) {
  [class^="p-index-"] > .title {
    margin-bottom: 2.5rem;
    font-size: 2.25rem;
  }
  [class^="p-index-"] > .title::before {
    width: 53px;
    height: 48px;
    margin-bottom: 1.5rem;
  }
  form .c-button + .c-button {
    margin-top: 3rem;
  }
  .c-button a {
    font-size: 1.25rem;
  }
  .c-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.75rem;
  }
}

/* お知らせ */
.p-index-news {
  display: flex;
  flex-direction: column;
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 6.10687vw 6rem;
}
.p-index-news .title::before {
  display: none;
}
.p-index-news .c-button {
  order: 3;
}
.p-index-news .c-button a {
  justify-content: center;
  min-width: 210px;
  height: 46px;
  padding-left: 0;
  box-shadow: 0 6px 0 0 rgba(0, 0, 0, 0.05);
}
.p-index-news .c-button a:hover {
  box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.05);
}
.p-news {
  border-bottom: 1px solid rgba(149, 127, 106, 0.4);
}
.p-news:first-child {
  border-top: 3px solid #E7E3CC;
}
.p-news:last-child {
  border-bottom: 3px solid #E7E3CC;
}
.p-news a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 1rem 4px;
}
.p-news time {
  color: #957F6A;
  font-weight: 700;
  min-width: 88px;
  font-size: 1rem;
  letter-spacing: 0.1em;
}
.p-news .category {
  background: #F8EDE3;
  color: #957F6A;
  font-size: 0.8125rem;
  padding: 2px 8px;
  border-radius: 100vmax;
  margin-left: 4px;
  line-height: 1.1;
}
.p-news .text {
  width: 100%;
  margin-top: 4px;
  color: #5D5D5D;
  font-size: 1rem;
}
@media (min-width: 992px) {
  .p-index-news {
    display: grid;
    grid-template-columns: 210px 1fr;
    grid-template-rows: 1fr 46px;
    gap: 48px;
    padding: 2rem 3.56234vw 6rem;
  }
  .p-index-news .title {
    align-items: flex-start;
    text-align: left;
  }
  .p-index-news .c-button {
    grid-column-start: 1;
    grid-row-start: 2;
    margin-top: 0;
  }
  .p-news-list {
    grid-row: span 2 / span 2;
    grid-column-start: 2;
    grid-row-start: 1;
  }
}
@media (hover: hover) {
  .p-news a:hover {
    opacity: 0.8;
  }
}

/* センターについて */
.p-index-about {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 11.19565vw 6rem;
}
.p-index-about p {
  font-size: 1rem;
  line-height: 2;
}
@media (min-width: 992px) {
  .p-index-about {
    padding: 0 3.56234vw 7.5rem;
  }
  .p-index-about p {
    font-size: 1.125rem;
    line-height: 2.2;
  }
}

/* Q&A */
.p-index-faq {
  position: relative;
  max-width: 1480px;
  margin: 0 auto;
  padding: 4rem 6.10687vw 3rem;
  background: #F8F6EF;
  border-radius: 24px;
}
.p-index-faq::before {
  position: absolute;
  top: -32px;
  left: calc(50% - 41px);
  width: 82px;
  height: 63px;
  background: url(../img/img_faq.svg) no-repeat center center / contain;
  content: "";
}
.p-index-faq .title {
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}
.p-index-faq .title::before {
  display: none;
}
.p-index-faq .txt {
  max-width: 124px;
  margin-top: 10px;
}
.p-faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.p-faq {
  width: 100%;
}
.p-faq a {
  display: flex;
  align-items: center;
  position: relative;
  background: #fff;
  border: 3px solid #EBEBEB;
  border-radius: 12px;
  box-shadow: 0 4px 0 0 rgba(0, 0, 0, 0.08);
  padding: 18px 12px 18px 44px;
  font-size: 1.125rem;
  color: #5D5D5D;
}
.p-faq a:hover {
  transform: translateY(4px);
  box-shadow: none;
}
.p-faq a::before {
  position: absolute;
  top: 22px;
  left: 10px;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  box-shadow: 0 3px 0 0 rgba(0, 0, 0, 0.08);
  background: #FEA79E url(../img/icon_arrow_white.svg) no-repeat center center / 6px auto;
  content: "";
}
@media (min-width: 992px) {
  .p-index-faq {
    padding: 5rem 6.75675% 4.5rem;
    border-radius: 40px;
  }
  .p-index-faq::before {
    top: -48px;
    left: calc(50% - 61px);
    width: 122px;
    height: 94px;
  }
  .p-index-faq .title {
    margin-bottom: 3rem;
    font-size: 1.375rem;
  }
  .p-index-faq .txt {
    max-width: 150px;
    margin-top: 1rem;
  }
  .p-faq {
    width: calc(50% - 10px);
  }
  .p-faq a {
    padding-left: 70px;
    border-radius: 20px;
    font-size: 1.375rem;
  }
  .p-faq a::before {
    left: 22px;
    width: 30px;
    height: 30px;
    background-size: 9px auto;
  }
  .p-index-faq .c-button {
    margin-top: 4rem;
  }
  .p-index-faq .c-button a {
    width: 428px;
    height: 96px;
    padding-left: 64px;
    border-radius: 48px;
    font-size: 2.25rem;
    letter-spacing: 0.1em;
  }
}

/* ご家族の方へ */
.p-index-family {
  max-width: 1280px;
  margin: 120px auto 0;
  padding: 0 6.10687vw 6rem;
}
.p-family-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.p-family {
  position: relative;
  width: min(160px, calc(50% - 0.75rem));
  padding-top: min(160px, calc(50% - 0.75rem));
}
.p-family a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 8px 0 0 rgba(0, 0, 0, 0.08);
}
.p-family:nth-child(odd) a {
  background: #F7ECE2;
}
.p-family:nth-child(even) a {
  background: #F8DBD8;
}
.p-family a:hover {
  transform: translateY(4px);
  box-shadow: 0 4px 0 0 rgba(0, 0, 0, 0.08);
}
.p-family .text {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  margin-top: 10px;
  color: #794310;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.33333;
  letter-spacing: 0.05em;
  text-align: center;
}
.p-family .img {
  width: 48.025%;
  margin-top: 10px;
}
.p-family:nth-child(2) .img {
  margin-top: 0;
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .p-index-family {
    padding-bottom: 7rem;
  }
  .p-family {
    width: min(257px, 17.78546%);
    padding-top: min(257px, 17.78546%);
  }
  .p-family .text {
    font-size: min(1.5rem, 1.875vw);
    line-height: 1.5;
  }
}

/* 支援内容 */
.p-index-support {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 6.10687vw 6rem;
}
.p-support-list {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  min-width: 220px;
  max-width: 400px;
  margin-right: auto;
  margin-left: auto;
}
.p-support {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 260px;
  transition: background 0.3s, color 0.3s;
}
.p-support a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 120px;
  padding-left:  32.17391%;
  border: 2px solid #957F6A;
  border-radius: 24px;
  background: #F7ECE2;
  border-radius: 24px;
  box-shadow: 0 8px 0 0 rgba(0, 0, 0, 0.08);
  color: #794310;
  text-align: center;
}
.p-support a:hover {
  transform: translateY(4px);
  box-shadow: 0 4px 0 0 rgba(0, 0, 0, 0.08);
}
.p-support a::after {
  position: absolute;
  right: 10px;
  bottom: 14px;
  width: 24px;
  height: 24px;
  background: url(../img/img_light.svg) no-repeat center center / contain;
  content: "";
}
.p-support .img {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 7.53623%;
  width: 33.26956%;
  height: 100%;
}
.p-support .img img {
  width: 100%;
  height: auto;
}
.p-support.information .img img {
  width: 52.56142%;
}
.p-support.cooperation .img img {
  width: 98.1617%;
}
.p-support .text {
  font-weight: 700;
  font-size: 1.25rem;
}
@media (min-width: 992px) {
  .p-support-list {
    justify-content: center;
    max-width: 100%;
  }
  .p-support a {
    flex-direction: column;
    gap: 1rem;
    height: 260px;
    padding: 3.75rem 1rem;
  }
  .p-support a::after {
    width: 46px;
    height: 46px;
    right: 1.25rem;
    bottom: 1.25rem;
  }
  .p-support .img {
    position: static;
    width: 114px;
    height: 72px;
    margin-top: 0;
  }
  .p-support .text {
    font-size: min(2rem, 2.5vw);
  }
}

/* お問い合わせ */
.p-index-contact {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 6.10687vw 6rem;
}
.p-index-contact .title {
  margin-bottom: 3rem;
}
.p-contact-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  margin-bottom: -2rem;
  color: #794310;
  font-weight: 700;
  line-height: 1.67;
  letter-spacing: 0.05em;
  text-align: center;
}
.p-contact-text .sub {
  position: relative;
  font-size: 1rem;
}
.p-contact-text .sub::before {
  position: absolute;
  top: 0;
  left: -72px;
  width: 61px;
  height: 55px;
  background: url(../img/icon_call.svg) no-repeat center center / contain;
  content: "";
}
.p-contact-text .sub::after {
  position: absolute;
  right: -65px;
  bottom: 0;
  width: 47px;
  height: 32px;
  background: url(../img/icon_mail.svg) no-repeat center center / contain;
  content: "";
}
.p-contact-text .sub .free {
  display: block;
  font-size: 1.25rem;
}
.p-contact-text .sub .free em {
  font-style: normal;
  color: #FEA79E;
}
.p-contact-text .main {
  margin-top: 1.25rem;
  font-size: 1.5rem;
}
.p-contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  border: 2px solid #957F6A;
  background: #F8F6EF;
  border-radius: 20px;
  padding: 5rem 1.25rem 3rem;
  color: #794310;
}
.p-contact-info::before {
  position: absolute;
  top: -2px;
  left: 20px;
  width: calc(100% - 40px);
  height: 2px;
  background: #F8F6EF;
  content: "";
}
.p-contact-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-contact-box.email {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #957F6A;
}
.p-contact-box img {
  height: 32px;
  margin-bottom: 8px;
}
.p-contact-box .label {
  font-weight: 700;
  font-size: 1.5rem;
}
.p-contact-box .tel {
  position: relative;
  min-width: 270px;
  margin-top: 1rem;
  padding-left: 48px;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.05em;
}
.p-contact-box .tel.mobile::before {
  position: absolute;
  top: -4px;
  left: 12px;
  width: 20px;
  height: 39px;
  background: url(../img/icon_mobile.svg) no-repeat center center / contain;
  content: "";
}
.p-contact-box .tel.phone::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 35px;
  background: url(../img/icon_phone.svg) no-repeat center center / contain;
  content: "";
}
.p-contact-box .tel span {
  display: block;
  padding: 8px 0 0 78px;
  font-size: 1.375rem;
}
.p-contact-box .time {
  display: flex;
  margin-top: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.p-contact-box .time dt {
  padding: 5px 1em 0 0;
  font-size: 0.875rem;
}
.p-contact-box .time dd {
  font-size: 1.125rem;
  text-align: center;
}
.p-contact-box .note {
  font-size: 0.95rem;
  color: #957F6A;
  margin-bottom: 4px;
}
.p-contact-box .email {
  font-size: 1.1rem;
  color: #794310;
  margin-bottom: 4px;
}
.p-index-contact .c-button {
  margin-top: 1.5rem;
}
.p-index-contact .c-button a {
  justify-content: center;
  min-width: 225px;
  height: 46px;
  padding-right: 0;
  padding-left: 0;
  font-size: 1.125rem;
  text-align: center;
}
.p-index-contact .c-button a::after {
  display: none;
}
@media (min-width: 768px) {
  .p-contact-info {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
  }
  .p-contact-box {
    align-items: flex-start;
  }
  .p-contact-box.email {
    margin-top: 0;
    margin-left: calc((100% - 506px) / 4);
    padding-top: 0;
    padding-bottom: 1.5rem;
    padding-left: calc((100% - 506px) / 4);
    border-top: 0;
    border-left: 1px solid #957F6A;
  }
  .p-contact-text .main br {
    display: none;
  }
}
@media (min-width: 992px) {
  .p-index-contact {
    padding: 0 40px 7rem;
  }
  .p-contact-text .sub {
    font-size: 1.125rem;
  }
  .p-contact-text .sub::before,
  .p-contact-text .sub::after {
    display: none;
  } 
  .p-contact-text .sub .free {
    display: inline;
    font-size: 1.125rem;
  }
  .p-contact-text .sub .free em {
    font-size: 1.4375rem;
  }
  .p-contact-text .main {
    position: relative;
    margin-top: 0;
    font-size: 1.5rem;
    line-height: 1.5;
  }
  .p-contact-text .main::before {
    position: absolute;
    top: -35px;
    left: -100px;
    width: 80px;
    height: 72px;
    background: url(../img/icon_call.svg) no-repeat center center / contain;
    content: "";
  }
  .p-contact-text .main::after {
    position: absolute;
    right: -96px;
    bottom: 0;
    width: 76px;
    height: 54px;
    background: url(../img/icon_mail.svg) no-repeat center center / contain;
    content: "";
  }
  .p-contact-info {
    padding: 3.5rem 2rem 2.5rem;
  }
  .p-contact-info::before {
    left: calc(50% - 382px);
    width: 764px;
  }
  .p-contact-box .tel span {
    display: inline;
    padding: 0;
  }
  .p-contact-box .time dt {
    padding: 0 1em 0 0;
    font-weight: 400;
    font-size: 1rem;
  }
  .p-contact-box .time dd {
    font-size: 1rem;
  }
  .p-contact-box .time dd br {
    display: none;
  }
  .p-contact-box .note {
    color: #794310;
    font-size: 1rem;
    line-height: 1.75;
  }
  .p-contact-box .note br:first-child {
    display: none;
  }
  .p-contact-box.email {
    margin-left: min(3.75rem, 2.5vw);
    padding-left: min(3.75rem, 2.5vw);
  }
}

/* パンくずリスト */
.l-breadcrumbs {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 3.05343vw;
}
.l-breadcrumbs ul {
  display: flex;
  flex-wrap: wrap;
}
.l-breadcrumbs li {
  color: #794310;
  font-weight: 500;
  font-size: 0.75rem;
}
.l-breadcrumbs li + li::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 0.75rem;
  background: #FEA79E;
  border-radius: 50%;
  content: "";
}
.l-breadcrumbs li a {
  color: #794310;
}

/* Contents
----------------------------------------------------------------- */
.p-page-header {
  margin-top: 90px;
  padding: 2.5rem 3.56234vw;
  background: #F8F6EF;
}
.p-page-header .title {
  color: #794310;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
}
.p-page-content {
  max-width: 1480px;
  margin: 0 auto 10rem;
  padding: 0 6.10687vw;
}
.c-heading {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  margin-top: -90px;
  margin-bottom: 1rem;
  padding-top: calc(4rem + 90px);
  font-size: 1.75rem;
  font-weight: 700;
  color: #794310;
  letter-spacing: 0.05em;
  text-align: center;
}
.c-heading::before {
  display: block;
  width: 32px;
  height: 29px;
  margin-bottom: 1rem;
  background: url(../img/img_dots.svg) no-repeat center center / contain;
  content: "";
}
.p-page-content h3,
.p-page-content a h3 {
  margin: 1.25rem auto 1rem;
  color: #794310;
  font-weight: 700;
  font-size: 1.375rem !important;
  line-height: 1.6;
}
.p-page-content h4 {
  margin: 2rem auto 1rem;
  color: #794310;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.6;
}
.p-page-content h4::before {
  margin-right: 0.25em;
  color: #FEA79E;
  content: "●";
}
.p-page-content ul,
.p-page-content ol,
.p-page-content p,
.c-text,
.txt_download {
  font-size: 1rem;
  line-height: 2;
}
.p-page-content ul + p,
.p-page-content ol + p,
.p-page-content p + p,
.txt_download {
  margin-top: 1em;
}
.bl_access p {
  font-size: 0.875rem;
  line-height: 1.75;
}
.bl_access__info {
  margin-top: 1rem;
}
.p-page-content h4 + ol,
.p-page-content h4 + ul {
  margin-top: 0.5rem;
  margin-left: 0.5rem;
}
.c-table {
  max-width: 1020px;
  margin: 2rem auto 0;
}
.c-table.-scroll {
  overflow-x: auto;
  padding-bottom: 1rem;
}
.c-table:not(.-scroll) table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #957F6A;
  border-top: 0;
}
.c-table.-scroll table {
  width: 800px;
  border-bottom: 1px solid #957F6A;
}
.c-table table th {
  background: #F8EDE3;
  border-top: 1px solid #957F6A;
  color: #957F6A;
  padding: 1em;
}
.c-table:not(.-scroll) table th {
  text-align: center;
  vertical-align: middle;
}
.c-table table td {
  border-top: 1px solid #957F6A;
  padding: 1em;
}
.c-table table th,
.c-table table td {
  font-size: 1rem;
  line-height: 1.5;
}
.c-table:not(.-scroll) table th,
.c-table:not(.-scroll) table td {
  display: block;
}
.c-block {
  margin-top: 2rem;
}
.c-block.bg {
  max-width: 1480px;
  margin-right: -3.56234vw;
  margin-left: -3.56234vw;
  padding: 1.5rem;
  border-radius: 24px;
  background: #F8F6EF;
}
.p-page-content ol {
  list-style: decimal;
  margin-top: 1em;
  margin-left: 1em;
}
.p-page-content ul {
  margin-top: 1em;
}
.p-page-content ul > li,
.txt_download a {
  position: relative;
  padding-left: 1em;
}
.bl_list_materials > li{
  margin-top: 1em;
}
.p-page-content ul > li::before,
.txt_download a::before {
  position: absolute;
  top: calc(1rem - 3px);
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FEA79E;
  content: "";
}
.p-page-content .bl_img--cols {
  flex-direction: column;
}
.p-page-content .bl_img--cols a {
  margin-right: 0;
  text-align: center;
}
.p-page-content .bl_img--cols a:last-child {
  margin-top: 0;
}
.p-page-content .bl_reference {
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 1px solid #957F6A;
  color: #957F6A;
}
.p-page-content a:not(:has(h3, h4))[target="_blank"],
.p-page-content a:not(:has(h3, h4))[href$=".pdf"] {
  position: relative;
  margin-right: 0.5em;
  padding-right: 1.5em;
}
.p-page-content a:not(:has(h3, h4))[target="_blank"]::after {
  position: absolute;
  bottom: 4px;
  right: 0;
  width: 14px;
  height: 14px;
  background: url(../img/icon_window.svg) no-repeat center center / contain;
  content: "";
}
.p-page-content a:not(:has(h3, h4))[href$=".pdf"]::after {
  position: absolute;
  bottom: 0;
  right: -2px;
  width: 20px;
  height: 22px;
  background: url(../img/icon_pdf.svg) no-repeat center center / contain;
  content: "";
}
.city-list + .city-list,
.city-item + .city-item {
  margin-top: 1.5rem;
}
.city-item p {
  color: #794310;
  font-weight: 700;
  font-size: 1.0625rem !important;
}
.city-item a {
  margin-left: 0.5rem;
  padding-left: 1em;
}
.city-item a::before {
  position: absolute;
  top: calc(1em - 6px);
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FEA79E;
  content: "";
}
@media (min-width: 992px) {
  .p-page-header {
    margin-top: 160px;
    padding: 5rem 3.56234vw;
  }
  .p-page-header .title {
    font-size: 3rem;
  }
  .p-page-content {
    margin-bottom: 12rem;
  }
  .c-heading {
    margin-top: -100px;
    padding-top: calc(4rem + 160px);
    margin-bottom: 2.5rem;
    font-size: 2.25rem;
  }
  .c-heading::before {
    width: 53px;
    height: 48px;
  }
  .p-page-content h3,
  .p-page-content a h3 {
    max-width: 1080px;
    margin-top: 2.5rem;
    font-size: 1.75rem !important;
  }
  .p-page-content h4 {
    max-width: 1080px;
    font-size: 1.375rem;
  }
  .p-page-content ul,
  .p-page-content ol,
  .p-page-content p,
  .c-text,
  .txt_download {
    max-width: 1080px;
    margin-right: auto;
    margin-left: auto;
    font-size: 1.125rem;
  }
  .bl_access p {
    font-size: 1rem;
  }
  .bl_access__info {
    margin-top: 1rem;
  }
    .p-page-content ul,
  .p-page-content ol {
    max-width: 1080px;
    margin-right: auto;
    margin-left: auto;
    font-size: 1.125rem;
  }
  .p-page-content ul > li,
  .txt_download a {
    padding-left: 1.5em;
  }
  .p-page-content ul > li::before,
  .txt_download a::before {
    top: calc(1em - 4px);
    left: 0.5em;
    width: 8px;
    height: 8px;
  }
  .c-table.-scroll {
    padding-bottom: 0;
  }
  .c-table table {
    border-collapse: separate !important;
    border-spacing: 0 3px;
    border: 0 !important;
  }
  .c-table.-scroll table {
    width: 100%;
    border-bottom: 0;
  }
  .c-table table th,
  .c-table table td {
    font-size: 1.125rem;
    line-height: 1.6;
  }
  .c-table table:not(.-scroll) th {
    width: 210px;
  }
  .c-table.-scroll table th {
    padding-left: 1.75rem;
  }
  .c-table table td {
    padding: 1rem 1.75rem;
  }
  .c-table table th,
  .c-table table td {
    display: table-cell !important;
    position: relative;
    border-top: 0;
  }
  .c-table table th::before,
  .c-table table td::before {
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #957F6A;
    content: "";
  }
  .c-table table tr:last-child th::after,
  .c-table table tr:last-child td::after {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #957F6A;
    content: "";
  }
  .c-block.bg {
    margin-right: auto;
    margin-left: auto;
    padding: 2rem;
    border-radius: 40px;
  }
  .p-page-content .bl_img--cols {
    flex-direction: row;
  }
  .p-page-content .bl_img--cols a {
    margin-right: 3rem;
  }
  .p-page-content .bl_img--cols a:last-child {
    margin-top: 2rem;
  }
  .p-page-content a:not(:has(h3, h4))[target="_blank"]::after {
    width: 16px;
    height: 16px;
  }
  .p-page-content a:not(:has(h3, h4))[href$=".pdf"]::after {
    width: 24px;
    height: 24px;
  }
  .bl_city {
    display: flex;
    flex-wrap: wrap;
    gap: 100px;
  }
  .city-list + .city-list {
    margin-top: 0;
  }
  .city-item p {
    font-size: 1.25rem !important;
  }
  .city-item a {
    padding-left: 1.5em;
  }
  .city-item a::before {
    position: absolute;
    top: calc(1em - 8px);
    left: 0.5em;
    width: 8px;
    height: 8px;
  }
}

/* faq */
.p-faqCont {
  margin-top: 4rem;
}
.p-faqCol {
  margin-top: -90px;
  padding-top: 120px;
}
.p-faqCol + .p-faqCol {
  padding-top: calc(2.5rem + 120px);
}
.question p {
  display: flex;
  align-items: center;
  position: relative;
  background: #fff;
  border: 3px solid #EBEBEB;
  border-radius: 12px;
  box-shadow: 0 4px 0 0 rgba(0, 0, 0, 0.08);
  padding: 18px 12px 18px 44px;
  font-size: 1.125rem;
  line-height: 1.75;
}
.question p::before {
  position: absolute;
  top: 22px;
  left: 10px;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  box-shadow: 0 3px 0 0 rgba(0, 0, 0, 0.08);
  background: #FEA79E url(../img/icon_arrow_white.svg) no-repeat center center / 6px auto;
  content: "";
}
.answer {
  margin: 1.5rem auto 0;
  padding: 0 1.5rem;
}
.answer a {
  position: relative;
  padding-right: 1.5em;
}
.answer a::after {
  position: absolute;
  bottom: 6px;
  right: 0;
  width: 16px;
  height: 6px;
  background: url(../img/icon_link.svg) no-repeat center center / contain;
  content: "";
}
@media (min-width: 992px) {
  .p-faqCol {
    margin-top: -160px;
    padding-top: 180px;
  }
  .p-faqCol + .p-faqCol {
    padding-top: calc(3rem + 180px);
  }
    .question p {
    padding-left: 70px;
    border-radius: 20px;
    font-size: 1.25rem;
  }
  .question p::before {
    left: 22px;
    width: 30px;
    height: 30px;
    background-size: 9px auto;
  }
  .answer a::after {
    bottom: 8px;
  }
}

/* inquiry */
.bl_access {
  margin-top: 2rem;
}
.c-text:has(form) > p:first-of-type {
  margin-top: 2rem;
}
.c-text:has(form) > .c-heading + p:first-of-type {
  margin-top: 0;
}
.c-text form {
  width: 100%;
  max-width: 1000px;
  margin: 4rem auto 0
}
.c-text form table {
  width: 100%;
}
.c-text form table tr {
  display: block;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(149, 127, 106, 0.4);
}
.c-text form table th {
  display: block;
  padding-bottom: 0.5rem;
  color: #957F6A;
}
.c-text form table td {
  display: block;
}
input[type="text"],
input[type="tel"],
input[type="email"],
textarea,
select {
  background-color: #FFF;
  border: 1px solid #DBDBDB;
  width: 100%;
  padding: 8px 10px;
}
textarea {
  height: 200px;
}
form label {
  width: 100%;
}
form label:has(input[type="radio"], input[type="checkbox"]) {
  display: inline-block;
  width: auto;
}
form label + label{
  margin-left: 1rem;
}
::placeholder {
  color: #999;
}
input[type="radio"],
input[type="checkbox"] {
  margin-right: 2px;
}
.radio,
.checkbox {
  display: block;
}
.radio+.radio,
.checkbox+.checkbox {
  margin-top: 10px;
}
.c-text form table th span {
  margin-left: 10px;
  padding: 1px 6px 2px;
  background-color: #FEA79E;
  border-radius: 3px;
  color: #FFF;
  font-weight: 500;
  font-size: 0.6875rem;
  line-height: 1;
}
.el_error {
  background-color: #fcf5f6;
  color: #e11b36;
  margin-top: 15px;
  padding: 10px;
}
input[type="submit"],
input[type="reset"],
input[type="button"]  {
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  box-sizing: border-box;
  cursor: pointer;
  border: 0;
  display: block;
  transition: 0.3s;
}
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
  opacity: 0.8;
}
input[type="submit"]::-webkit-search-decoration,
input[type="reset"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="reset"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}
.c-button input[type="submit"],
.c-button input[type="reset"],
.c-button input[type="button"] {
  width: 76.33587vw;
  max-width: 300px;
  height: 58px;
  margin-right: auto;
  margin-left: auto;
  border: 2px solid #794310;
  border-radius: 30px;
  box-shadow: 0 8px 0 0 rgba(0, 0, 0, 0.05);
  background: #F8DBD8;
  color: #794310;
  font-weight: 700;
  font-size: 1.25rem;
}
@media (min-width: 992px) {
  .bl_access {
    display: flex;
    align-items: end;
    justify-content: space-around;
    margin: 2rem 0;
  }
  .c-text form {
    margin-top: 7rem;
  }
  .c-text form table tr {
    display: flex;
    justify-content: space-between;
  }
  .c-text form table th {
    width: 35%;
    padding-top: 0.5rem;
  }
  .c-text form table td {
    display: flex;
    align-items: center;
    width: 65%;
  }
  .c-text form table th span {
    padding: 2px 8px 3px;
    font-size: 0.75rem;
  }
  .c-text form p {
    margin-top: 2em;
    text-align: center;
  }
}

/* privacy */
.bl_list > li:not(:first-child),
.bl_listNumber > li:not(:first-child) {
  margin-top: 1em;
}
.bl_list .bl_list,
.bl_list .bl_list > li:not(:first-child) {
  margin-top: 0;
}
@media (min-width: 992px) {
  .bl_listNumber {
    padding-left: 1.5em;
  }
}

/* sitemap */
.p-page-content .sitemap ul {
  margin-top: 0;
  margin-bottom: 1em;
}
.p-page-content .sitemap ul > li::before,
.bl_list .bl_list > li::before {
  top: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: #957F6A;
  content: "-";
}