@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lora:wght@400;700&display=swap");
.u-font-lora {
  font-family: "Lora", serif;
}

:root {
  --font: "Zen Maru Gothic","游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  --font-min: "Noto Sans JP";
  --font-en: "Lora", sans-serif;
  --bg-color: #fff;
  --text-color: #494949;
  --primary: #264f77;
  --w:0;
  --w-pc:1280;
  --w-sp:390;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  tab-size: 4;
}

body {
  margin: 0;
  line-height: 1.4;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
}

p, li, dt, dl, dd {
  line-height: 1.8;
}

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

hr {
  height: 0;
  color: inherit;
}

abbr[title] {
  text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

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;
}

table {
  text-indent: 0;
  border-color: inherit;
  border-collapse: collapse;
}

button, input, optgroup, select, textarea {
  font: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
}

button, select {
  text-transform: none;
}

button, [type=button], [type=reset], [type=submit] {
  -webkit-appearance: button;
}

::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

:-moz-focusring {
  outline: 1px dotted ButtonText;
}

:-moz-ui-invalid {
  box-shadow: none;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

summary {
  display: list-item;
}

body {
  background-color: var(--bg-color);
  font-family: var(--font);
  color: var(--text-color);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
}

img {
  width: 100%;
}

.u-en {
  font-family: var(--font-en);
}

.u-min {
  font-family: var(--font-min);
}

.u-fw-normal {
  font-weight: normal !important;
}

.u-fw-bold {
  font-weight: bold !important;
}

.u-td-u {
  text-decoration: underline !important;
}

.u-td-n {
  text-decoration: none !important;
}

.u-ta-l {
  text-align: left !important;
}

.u-ta-c {
  text-align: center !important;
}

.u-ta-r {
  text-align: right !important;
}

.c-anim {
  transition-delay: 0.2s;
  transition-duration: 1.2s;
}
.c-anim.is-fade {
  opacity: 0;
}
.c-anim.is-fade.is-active {
  opacity: 1;
}
.c-anim.is-top {
  opacity: 0;
  transform: translate(0, -100px);
}
.c-anim.is-top.is-active {
  opacity: 1;
  transform: translate(0, 0);
}
.c-anim.is-bottom {
  opacity: 0;
  transform: translate(0, 50px);
}
.c-anim.is-bottom.is-active {
  opacity: 1;
  transform: translate(0, 0);
}
.c-anim.is-left {
  opacity: 0;
  transform: translate(-100px, 0);
}
.c-anim.is-left.is-active {
  opacity: 1;
  transform: translate(0, 0);
}
.c-anim.is-right {
  opacity: 0;
  transform: translate(100px, 0);
}
.c-anim.is-right.is-active {
  opacity: 1;
  transform: translate(0, 0);
}
.c-anim.is-zoom {
  opacity: 0;
  transform: scale(0.8);
}
.c-anim.is-zoom.is-active {
  opacity: 1;
  transform: scale(1);
}
.c-anim.is-zoom-out {
  opacity: 0;
  transform: scale(1.1);
}
.c-anim.is-zoom-out.is-active {
  opacity: 1;
  transform: scale(1);
}
.c-anim.is-text-up {
  overflow: hidden;
  opacity: 1;
  display: inline-block;
  vertical-align: bottom;
}
.c-anim.is-text-up > span > span {
  display: block;
  transform: translateY(110%);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.c-anim.is-text-up.is-active > span > span {
  transform: translateY(0);
}
.c-anim.is-text-mask {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.c-anim.is-text-mask.is-active {
  clip-path: inset(0 0 0 0);
}
.c-anim.is-delay-00 {
  transition-delay: 0s;
}
.c-anim.is-delay-01 {
  transition-delay: 0.1s;
}
.c-anim.is-delay-02 {
  transition-delay: 0.2s;
}
.c-anim.is-delay-03 {
  transition-delay: 0.3s;
}
.c-anim.is-delay-04 {
  transition-delay: 0.4s;
}
.c-anim.is-delay-05 {
  transition-delay: 0.5s;
}
.c-anim.is-delay-06 {
  transition-delay: 0.6s;
}
.c-anim.is-delay-07 {
  transition-delay: 0.7s;
}
.c-anim.is-delay-08 {
  transition-delay: 0.8s;
}
.c-anim.is-delay-09 {
  transition-delay: 0.9s;
}
.c-anim.is-delay-10 {
  transition-delay: 1s;
}
.c-anim.is-delay-12 {
  transition-delay: 1s;
}
.c-anim.is-delay-14 {
  transition-delay: 1s;
}
.c-anim.is-delay-16 {
  transition-delay: 1s;
}
.c-anim.is-delay-18 {
  transition-delay: 1s;
}
.c-anim.is-delay-20 {
  transition-delay: 1s;
}

.c-anim-bird {
  animation: infinite_loop 2s ease-in-out 0s infinite;
}

@keyframes infinite_loop {
  0% {
    transform: translate3d(0, 1vw, 0);
  }
  50% {
    transform: translate3d(0, -1vw, 0);
  }
  100% {
    transform: translate3d(0, 1vw, 0);
  }
}
@media print, screen and (min-width: 768px) {
  :root {
    --w: var(--w-pc) ;
  }
  .u-sp {
    display: none;
  }
  .l-wrapper {
    overflow: clip;
  }
  .l-inner {
    position: relative;
    margin: 0 auto;
    max-width: min(1152px, 1152 / var(--w) * 100vw);
  }
  .l-inner-900 {
    position: relative;
    margin: 0 auto;
    max-width: min(900px, 900 / var(--w) * 100vw);
  }
  .l-header-wrap {
    height: 0;
  }
  .l-header {
    transition: all 0.2s ease;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: min(140px, 140 / var(--w) * 100vw);
    z-index: 100;
    border-radius: 0 0 min(20px, 20 / var(--w) * 100vw) min(20px, 20 / var(--w) * 100vw);
  }
  .l-header h1, .l-header h2, .l-header h3, .l-header h4, .l-header h5, .l-header h6 {
    margin: 0;
    padding: 0;
  }
  .l-header p {
    margin: 0;
  }
  .l-header ol, .l-header ul, .l-header li {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .l-header a {
    text-decoration: none;
    color: inherit;
  }
  .l-header ._header-site {
    position: absolute;
    top: min(30px, 30 / var(--w) * 100vw);
    left: min(23px, 23 / var(--w) * 100vw);
    display: flex;
    gap: min(30px, 30 / var(--w) * 100vw);
  }
  .l-header ._site-name {
    display: none;
    padding-top: min(5px, 5 / var(--w) * 100vw);
  }
  .l-header ._header-right {
    position: absolute;
    top: min(25px, 25 / var(--w) * 100vw);
    right: min(30px, 30 / var(--w) * 100vw);
    display: flex;
    flex-direction: column;
    gap: min(20px, 20 / var(--w) * 100vw);
    align-items: flex-end;
  }
  .l-header ._btns {
    display: flex;
    gap: min(35px, 35 / var(--w) * 100vw);
  }
  .l-header ._header-modal {
    display: none;
  }
  .c-head-logo {
    display: block;
    width: min(220px, 220 / var(--w) * 100vw);
  }
  .c-head-name {
    font-size: min(12px, 12 / var(--w) * 100vw);
    line-height: 1.67;
    letter-spacing: 0.15em;
    color: #a0a0a0;
  }
  .l-modal-menu {
    display: none;
  }
  body.is-scroll-start .l-header {
    background: #fff;
    position: fixed;
    top: 0;
    right: min(20px, 20 / var(--w) * 100vw);
    left: min(20px, 20 / var(--w) * 100vw);
    height: min(120px, 120 / var(--w) * 100vw);
  }
  body.is-scroll-start .l-header ._header-site {
    position: absolute;
    top: min(20px, 20 / var(--w) * 100vw);
    left: min(40px, 40 / var(--w) * 100vw);
  }
  body.is-scroll-start .l-header ._header-right {
    position: absolute;
    top: min(15px, 15 / var(--w) * 100vw);
    right: min(40px, 40 / var(--w) * 100vw);
    display: flex;
    flex-direction: column;
    gap: min(10px, 10 / var(--w) * 100vw);
    align-items: flex-end;
  }
  body.is-scroll-start .l-header ._site-name {
    display: block;
  }
  body.is-scroll-start .l-header ._btns {
    display: flex;
    gap: min(25px, 25 / var(--w) * 100vw);
  }
  body.is-scroll-start .c-head-logo {
    display: block;
    width: min(160px, 160 / var(--w) * 100vw);
  }
  body.is-scroll-start .c-head-btn-contact {
    position: relative;
    height: min(36px, 36 / var(--w) * 100vw);
    font-size: min(16px, 16 / var(--w) * 100vw);
    line-height: 1;
    letter-spacing: 0em;
    font-weight: bold;
    padding: 0 min(30px, 30 / var(--w) * 100vw) 0 min(45px, 45 / var(--w) * 100vw);
  }
  body.is-scroll-start .c-head-btn-contact::before {
    width: min(15px, 15 / var(--w) * 100vw);
    height: min(15px, 15 / var(--w) * 100vw);
  }
  body.is-scroll-start .c-head-btn-contact::after {
    width: min(11px, 11 / var(--w) * 100vw);
    height: min(11px, 11 / var(--w) * 100vw);
  }
  body.is-scroll-start .c-head-btn-tel {
    padding-left: min(26px, 26 / var(--w) * 100vw);
  }
  body.is-scroll-start .c-head-btn-tel ._ja {
    font-size: min(10px, 10 / var(--w) * 100vw);
  }
  body.is-scroll-start .c-head-btn-tel ._en {
    font-size: min(28px, 28 / var(--w) * 100vw);
  }
  body.is-scroll-start .c-head-btn-tel::after {
    position: absolute;
    top: min(18px, 18 / var(--w) * 100vw);
    bottom: 0;
    left: 0;
    width: min(26px, 26 / var(--w) * 100vw);
    height: min(26px, 26 / var(--w) * 100vw);
  }
  .c-head-btn-contact {
    position: relative;
    height: min(56px, 56 / var(--w) * 100vw);
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FF7C33;
    color: #fff;
    border-radius: min(100px, 100 / var(--w) * 100vw);
    font-size: min(18px, 18 / var(--w) * 100vw);
    line-height: 1;
    letter-spacing: 0em;
    font-weight: bold;
    padding: 0 min(40px, 40 / var(--w) * 100vw) 0 min(65px, 65 / var(--w) * 100vw);
    cursor: pointer;
    transition-duration: 0.2s;
  }
  .c-head-btn-contact:hover {
    opacity: 0.8;
  }
  .c-head-btn-contact::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: min(20px, 20 / var(--w) * 100vw);
    width: min(30px, 30 / var(--w) * 100vw);
    height: min(30px, 30 / var(--w) * 100vw);
    margin: auto 0;
    background: #fff;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m22 7-8.991 5.727a2 2 0 0 1-2.009 0L2 7 M2 4h20v16H2z' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
  }
  .c-head-btn-contact::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: min(15px, 15 / var(--w) * 100vw);
    bottom: 0;
    width: min(22px, 22 / var(--w) * 100vw);
    height: min(22px, 22 / var(--w) * 100vw);
    margin: auto 0;
    background: #fff;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 13h11.17l-4.88 4.88c-.39.39-.39 1.03 0 1.42 .39.39 1.02.39 1.41 0l6.59-6.59c.39-.39.39-1.02 0-1.41l-6.58-6.6c-.39-.39-1.02-.39-1.41 0 -.39.39-.39 1.02 0 1.41L16.17 11H5c-.55 0-1 .45-1 1s.45 1 1 1Z' fill='currentColor'/%3E%3C/svg%3E");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
  }
  .c-head-btn-tel {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: min(5px, 5 / var(--w) * 100vw);
    padding-left: min(36px, 36 / var(--w) * 100vw);
    color: var(--primary);
  }
  .c-head-btn-tel ._ja {
    font-size: min(14px, 14 / var(--w) * 100vw);
    line-height: 1;
    letter-spacing: 0.15em;
    font-weight: bold;
  }
  .c-head-btn-tel ._en {
    font-size: min(36px, 36 / var(--w) * 100vw);
    line-height: 1;
    letter-spacing: 0.06em;
    font-weight: bold;
  }
  .c-head-btn-tel::after {
    content: "";
    display: block;
    position: absolute;
    top: min(22px, 22 / var(--w) * 100vw);
    bottom: 0;
    left: 0;
    width: min(32px, 32 / var(--w) * 100vw);
    height: min(32px, 32 / var(--w) * 100vw);
    background: var(--primary);
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z' fill='currentColor'/%3E%3C/svg%3E");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
  }
  .c-head-gmenu {
    display: flex;
    gap: min(35px, 35 / var(--w) * 100vw);
  }
  .c-head-gmenu ._item {
    display: block;
    cursor: pointer;
    transition-duration: 0.2s;
  }
  .c-head-gmenu ._item span {
    display: inline-block;
    padding: min(5px, 5 / var(--w) * 100vw) 0 min(10px, 10 / var(--w) * 100vw) 0;
    position: relative;
    display: block;
    font-size: min(18px, 18 / var(--w) * 100vw);
    line-height: 1;
    font-weight: bold;
    color: var(--primary);
  }
  .c-head-gmenu ._item:hover {
    opacity: 0.8;
  }
  .c-head-gmenu ._item:hover {
    border-bottom: min(1px, 1 / var(--w) * 100vw) solid var(--primary);
  }
  .l-footer-pre {
    position: relative;
    height: 100vw;
    background-image: url("../images/common/footer-bg.webp");
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
  }
  .l-footer {
    position: relative;
    margin-top: max(-50px, -50 / var(--w) * 100vw);
    color: var(--primary);
    background-image: url("../images/common/footer-bar.webp");
    background-size: 100% auto;
    background-position: bottom center;
    background-repeat: no-repeat;
    border-radius: min(50px, 50 / var(--w) * 100vw) min(50px, 50 / var(--w) * 100vw) 0 0;
    padding: min(80px, 80 / var(--w) * 100vw) min(20px, 20 / var(--w) * 100vw);
    background-color: #fff;
  }
  .l-footer h1, .l-footer h2, .l-footer h3, .l-footer h4, .l-footer h5, .l-footer h6 {
    margin: 0;
    padding: 0;
  }
  .l-footer p {
    margin: 0;
  }
  .l-footer ol, .l-footer ul, .l-footer li {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .l-footer a {
    text-decoration: none;
    color: inherit;
  }
  .l-footer p {
    font-size: min(14px, 14 / var(--w) * 100vw);
    font-weight: bold;
  }
  .l-footer ._cols {
    display: flex;
    gap: min(30px, 30 / var(--w) * 100vw);
  }
  .l-footer ._col-left {
    width: min(230px, 230 / var(--w) * 100vw);
    display: flex;
    flex-direction: column;
    gap: min(30px, 30 / var(--w) * 100vw);
  }
  .l-footer ._col-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: min(30px, 30 / var(--w) * 100vw);
    align-items: flex-start;
    justify-content: center;
    border-left: min(1px, 1 / var(--w) * 100vw) solid #EFECE6;
    padding-left: min(70px, 70 / var(--w) * 100vw);
  }
  .l-footer ._col-right {
    width: min(220px, 180 / var(--w) * 100vw);
    display: flex;
    flex-direction: column;
    gap: min(10px, 10 / var(--w) * 100vw);
    padding-left: min(70px, 70 / var(--w) * 100vw);
    padding-top: min(10px, 10 / var(--w) * 100vw);
    border-left: min(1px, 1 / var(--w) * 100vw) solid #EFECE6;
  }
  .c-footer-logo {
    width: min(210px, 210 / var(--w) * 100vw);
    display: block;
  }
  .c-footer-btn-contact {
    position: relative;
    display: inline-block;
    height: min(56px, 56 / var(--w) * 100vw);
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FF7C33;
    color: #fff;
    border-radius: min(100px, 100 / var(--w) * 100vw);
    font-size: min(18px, 18 / var(--w) * 100vw);
    line-height: 1;
    letter-spacing: 0em;
    font-weight: bold;
    padding: 0 min(40px, 40 / var(--w) * 100vw) 0 min(65px, 65 / var(--w) * 100vw);
    cursor: pointer;
    transition-duration: 0.2s;
  }
  .c-footer-btn-contact:hover {
    opacity: 0.8;
  }
  .c-footer-btn-contact::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: min(40px, 40 / var(--w) * 100vw);
    width: min(30px, 30 / var(--w) * 100vw);
    height: min(30px, 30 / var(--w) * 100vw);
    margin: auto 0;
    background: #fff;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m22 7-8.991 5.727a2 2 0 0 1-2.009 0L2 7 M2 4h20v16H2z' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
  }
  .c-footer-btn-contact::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: min(15px, 15 / var(--w) * 100vw);
    bottom: 0;
    width: min(22px, 22 / var(--w) * 100vw);
    height: min(22px, 22 / var(--w) * 100vw);
    margin: auto 0;
    background: #fff;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 13h11.17l-4.88 4.88c-.39.39-.39 1.03 0 1.42 .39.39 1.02.39 1.41 0l6.59-6.59c.39-.39.39-1.02 0-1.41l-6.58-6.6c-.39-.39-1.02-.39-1.41 0 -.39.39-.39 1.02 0 1.41L16.17 11H5c-.55 0-1 .45-1 1s.45 1 1 1Z' fill='currentColor'/%3E%3C/svg%3E");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
  }
  .c-footer-btn-tel {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: min(5px, 5 / var(--w) * 100vw);
    padding-left: min(36px, 36 / var(--w) * 100vw);
    color: var(--primary);
  }
  .c-footer-btn-tel span {
    font-size: min(36px, 36 / var(--w) * 100vw);
    line-height: 1;
    letter-spacing: 0.06em;
    font-weight: bold;
  }
  .c-footer-btn-tel::after {
    content: "";
    display: block;
    position: absolute;
    top: min(6px, 6 / var(--w) * 100vw);
    bottom: 0;
    left: 0;
    width: min(32px, 32 / var(--w) * 100vw);
    height: min(32px, 32 / var(--w) * 100vw);
    background: var(--primary);
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z' fill='currentColor'/%3E%3C/svg%3E");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
  }
  ul.c-footer-links {
    display: flex;
    flex-direction: column;
    gap: min(15px, 15 / var(--w) * 100vw);
  }
  ul.c-footer-links li {
    font-size: min(16px, 16 / var(--w) * 100vw);
    line-height: 1;
    font-weight: bold;
    border-left: min(2px, 2 / var(--w) * 100vw) solid #FC8670;
    padding-left: min(10px, 10 / var(--w) * 100vw);
  }
  .c-title-section.is-center {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
    justify-content: center;
  }
  .c-title-section ._en {
    font-size: min(22px, 22 / var(--w) * 100vw);
    line-height: 1;
    letter-spacing: 0.15em;
    font-weight: bold;
    color: #fc8670;
    display: flex;
    gap: min(10px, 10 / var(--w) * 100vw);
    align-items: center;
  }
  .c-title-section ._en::before {
    content: "";
    width: min(23px, 23 / var(--w) * 100vw);
    height: min(30px, 30 / var(--w) * 100vw);
    background-image: url("../images/common/deco1.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .c-title-section h2 {
    font-size: min(28px, 28 / var(--w) * 100vw);
    line-height: 1.5;
    letter-spacing: 0.15em;
    font-weight: bold;
    color: var(--primary);
    margin: 0;
    margin-top: min(15px, 15 / var(--w) * 100vw);
  }
  a.c-btn-more {
    position: relative;
    display: inline-block;
    text-align: center;
    width: min(360px, 360 / var(--w) * 100vw);
    padding: min(20px, 20 / var(--w) * 100vw);
    border-radius: min(50px, 50 / var(--w) * 100vw);
    background: #FF9076;
    color: #fff;
    font-size: min(26px, 26 / var(--w) * 100vw);
    line-height: 1;
    letter-spacing: 0.1em;
    font-weight: bold;
    text-decoration: none;
  }
  a.c-btn-more::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: min(20px, 20 / var(--w) * 100vw);
    bottom: 0;
    margin: auto 0;
    width: min(34px, 34 / var(--w) * 100vw);
    height: min(34px, 34 / var(--w) * 100vw);
    background: #fff;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 13h11.17l-4.88 4.88c-.39.39-.39 1.03 0 1.42 .39.39 1.02.39 1.41 0l6.59-6.59c.39-.39.39-1.02 0-1.41l-6.58-6.6c-.39-.39-1.02-.39-1.41 0 -.39.39-.39 1.02 0 1.41L16.17 11H5c-.55 0-1 .45-1 1s.45 1 1 1Z' fill='currentColor'/%3E%3C/svg%3E");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
  }
  .c-btn-tel {
    position: relative;
    height: min(69px, 69 / var(--w) * 100vw);
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FF7C33;
    color: #fff;
    border-radius: min(100px, 100 / var(--w) * 100vw);
    font-size: min(22px, 22 / var(--w) * 100vw);
    line-height: 1;
    letter-spacing: 0.1em;
    font-weight: bold;
    padding: 0 min(60px, 60 / var(--w) * 100vw) 0;
    cursor: pointer;
    transition-duration: 0.2s;
  }
  .c-btn-tel b {
    font-size: min(26px, 26 / var(--w) * 100vw);
  }
  .c-btn-tel:hover {
    opacity: 0.8;
  }
  .c-btn-tel::before {
    content: "";
    width: min(40px, 40 / var(--w) * 100vw);
    height: min(40px, 40 / var(--w) * 100vw);
    margin-right: min(10px, 10 / var(--w) * 100vw);
    background: #fff;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z' fill='currentColor'/%3E%3C/svg%3E");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
  }
  .c-btn-tel::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: min(15px, 15 / var(--w) * 100vw);
    bottom: 0;
    width: min(30px, 30 / var(--w) * 100vw);
    height: min(30px, 30 / var(--w) * 100vw);
    margin: auto 0;
    background: #fff;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 13h11.17l-4.88 4.88c-.39.39-.39 1.03 0 1.42 .39.39 1.02.39 1.41 0l6.59-6.59c.39-.39.39-1.02 0-1.41l-6.58-6.6c-.39-.39-1.02-.39-1.41 0 -.39.39-.39 1.02 0 1.41L16.17 11H5c-.55 0-1 .45-1 1s.45 1 1 1Z' fill='currentColor'/%3E%3C/svg%3E");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
  }
  .c-btn-contact {
    position: relative;
    height: min(69px, 69 / var(--w) * 100vw);
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primary);
    color: #fff;
    border-radius: min(100px, 100 / var(--w) * 100vw);
    font-size: min(22px, 22 / var(--w) * 100vw);
    line-height: 1;
    letter-spacing: 0.05em;
    font-weight: bold;
    padding: 0 0 0;
    cursor: pointer;
    transition-duration: 0.2s;
  }
  .c-btn-contact b {
    font-size: min(26px, 26 / var(--w) * 100vw);
  }
  .c-btn-contact:hover {
    opacity: 0.8;
  }
  .c-btn-contact::before {
    content: "";
    width: min(32px, 32 / var(--w) * 100vw);
    height: min(32px, 32 / var(--w) * 100vw);
    margin-right: min(10px, 10 / var(--w) * 100vw);
    background: #fff;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m22 7-8.991 5.727a2 2 0 0 1-2.009 0L2 7 M2 4h20v16H2z' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
  }
  .c-btn-contact::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: min(15px, 15 / var(--w) * 100vw);
    bottom: 0;
    width: min(30px, 30 / var(--w) * 100vw);
    height: min(30px, 30 / var(--w) * 100vw);
    margin: auto 0;
    background: #fff;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 13h11.17l-4.88 4.88c-.39.39-.39 1.03 0 1.42 .39.39 1.02.39 1.41 0l6.59-6.59c.39-.39.39-1.02 0-1.41l-6.58-6.6c-.39-.39-1.02-.39-1.41 0 -.39.39-.39 1.02 0 1.41L16.17 11H5c-.55 0-1 .45-1 1s.45 1 1 1Z' fill='currentColor'/%3E%3C/svg%3E");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
  }
  .p-index-bg {
    background-image: url("../images/index/main/bg.webp?");
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
  }
  .p-index-main {
    position: relative;
    width: calc(1280 / var(--w) * 100vw);
    height: calc(900 / var(--w) * 100vw);
  }
  .p-index-main ._main {
    position: absolute;
    top: calc(145 / var(--w) * 100vw);
    left: calc(624 / var(--w) * 100vw);
    width: calc(656 / var(--w) * 100vw);
  }
  .p-index-main ._copy {
    position: absolute;
    top: calc(255 / var(--w) * 100vw);
    left: calc(241 / var(--w) * 100vw);
    width: calc(175 / var(--w) * 100vw);
  }
  .p-index-main ._bird {
    position: absolute;
    top: calc(436 / var(--w) * 100vw);
    left: calc(64 / var(--w) * 100vw);
    width: calc(109 / var(--w) * 100vw);
  }
  .p-index-main ._btns {
    position: absolute;
    top: calc(718 / var(--w) * 100vw);
    left: calc(736 / var(--w) * 100vw);
    width: calc(480 / var(--w) * 100vw);
    display: flex;
    flex-direction: column;
    gap: calc(20 / var(--w) * 100vw);
  }
  .p-index-main ._logo {
    position: absolute;
    top: calc(718 / var(--w) * 100vw);
    left: calc(65 / var(--w) * 100vw);
    width: calc(543 / var(--w) * 100vw);
    display: flex;
    flex-direction: column;
    gap: calc(30 / var(--w) * 100vw);
    align-items: center;
    justify-content: center;
  }
  .p-index-main ._logo ._label {
    font-size: calc(20 / var(--w) * 100vw);
    line-height: 1;
    letter-spacing: 0.15em;
    font-weight: bold;
    background: #FF9076;
    color: #fff;
    padding: calc(7 / var(--w) * 100vw) calc(30 / var(--w) * 100vw) calc(9 / var(--w) * 100vw) calc(30 / var(--w) * 100vw);
  }
  .p-index-main ._logo ._label b {
    font-size: calc(24 / var(--w) * 100vw);
    font-weight: bold;
  }
  .p-index-scroll {
    position: absolute;
    right: calc(20 / var(--w) * 100vw);
    bottom: calc(-40 / var(--w) * 100vw);
    z-index: 10;
    width: calc(10 / var(--w) * 100vw);
    height: calc(140 / var(--w) * 100vw);
    background-image: url("../images/index/scroll.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  /* -------------------------------------------------- */
  .p-index-about {
    margin-top: min(320px, 320 / var(--w) * 100vw);
    padding: min(50px, 50 / var(--w) * 100vw) 0;
  }
  .p-index-about ._cols {
    position: relative;
    display: flex;
    gap: min(65px, 65 / var(--w) * 100vw);
    align-items: center;
  }
  .p-index-about ._cols ._image {
    width: min(544px, 544 / var(--w) * 100vw);
  }
  .p-index-about ._cols ._texts {
    flex: 1;
  }
  /* -------------------------------------------------- */
  .p-index-service {
    margin-top: min(85px, 85 / var(--w) * 100vw);
    background: #FFECE5;
    padding: min(350px, 350 / var(--w) * 100vw) 0 min(100px, 100 / var(--w) * 100vw) 0;
    background-image: url("../images/index/service/bg.webp?");
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
  }
  .p-index-service ._list {
    margin-top: min(90px, 90 / var(--w) * 100vw);
  }
  .p-index-service-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: min(65px, 65 / var(--w) * 100vw);
  }
  .p-index-service-card {
    position: relative;
    background: #fff;
    padding: min(80px, 80 / var(--w) * 100vw) min(40px, 40 / var(--w) * 100vw) min(50px, 50 / var(--w) * 100vw) min(40px, 40 / var(--w) * 100vw);
    display: flex;
    flex-direction: column;
    gap: min(20px, 20 / var(--w) * 100vw);
    border-radius: min(220px, 220 / var(--w) * 100vw) min(220px, 220 / var(--w) * 100vw) min(20px, 20 / var(--w) * 100vw) min(20px, 20 / var(--w) * 100vw);
  }
  .p-index-service-card ._card-title {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .p-index-service-card ._card-title h3 {
    margin: 0;
    display: inline-block;
    border-bottom: min(4px, 4 / var(--w) * 100vw) solid #FF9076;
    padding-bottom: min(5px, 5 / var(--w) * 100vw);
    font-size: min(32px, 32 / var(--w) * 100vw);
    line-height: 1.31;
    letter-spacing: 0.15em;
    font-weight: bold;
    color: var(--primary);
  }
  .p-index-service-card ._card-body {
    display: flex;
    flex-direction: column;
    gap: min(20px, 20 / var(--w) * 100vw);
    padding: min(20px, 20 / var(--w) * 100vw);
    border-radius: min(10px, 10 / var(--w) * 100vw);
  }
  .p-index-service-card ._card-image {
    width: min(390px, 390 / var(--w) * 100vw);
  }
  .p-index-service-card ._card-btns {
    display: flex;
    gap: min(10px, 10 / var(--w) * 100vw);
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    bottom: max(-20px, -20 / var(--w) * 100vw);
    left: 0;
  }
  /* -------------------------------------------------- */
  .p-index-area {
    background: #FFECE5;
    padding: min(220px, 220 / var(--w) * 100vw) 0 min(100px, 100 / var(--w) * 100vw) 0;
    background-image: url("../images/index/area/bg.webp?");
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
  }
  .p-index-area ._map {
    margin-top: min(70px, 70 / var(--w) * 100vw);
    padding: min(50px, 50 / var(--w) * 100vw);
    background: #fff;
    border-radius: min(40px, 40 / var(--w) * 100vw);
    text-align: center;
  }
  .p-index-area ._map-title {
    margin-top: min(70px, 70 / var(--w) * 100vw);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .p-index-area ._map-title h3 {
    margin: 0;
    display: inline-block;
    border-bottom: min(4px, 4 / var(--w) * 100vw) solid #FF9076;
    padding-bottom: min(5px, 5 / var(--w) * 100vw);
    font-size: min(28px, 28 / var(--w) * 100vw);
    line-height: 1.31;
    letter-spacing: 0.15em;
    font-weight: bold;
    color: var(--primary);
  }
  .p-index-area ._map-title ._place {
    font-size: min(20px, 20 / var(--w) * 100vw);
  }
  /* -------------------------------------------------- */
  .p-index-message {
    padding: min(340px, 340 / var(--w) * 100vw) 0 min(50px, 50 / var(--w) * 100vw) 0;
    background-image: url("../images/index/message/bg.webp?");
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
  }
  .p-index-message ._deco1 {
    position: absolute;
    top: min(40px, 40 / var(--w) * 100vw);
    right: max(-110px, -110 / var(--w) * 100vw);
    width: min(147px, 147 / var(--w) * 100vw);
  }
  .p-index-message ._title {
    padding-left: min(30px, 30 / var(--w) * 100vw);
  }
  .p-index-message ._box {
    margin-top: min(70px, 70 / var(--w) * 100vw);
    padding: min(60px, 60 / var(--w) * 100vw);
    border-radius: min(40px, 40 / var(--w) * 100vw);
    background: #FFECE5;
  }
  .p-index-message ._box-cols {
    display: flex;
    gap: min(65px, 65 / var(--w) * 100vw);
  }
  .p-index-message ._box-cols-image {
    width: min(240px, 240 / var(--w) * 100vw);
    text-align: center;
  }
  .p-index-message ._box-cols-image ._name {
    font-size: min(24px, 24 / var(--w) * 100vw);
    line-height: 1.75;
    letter-spacing: 0.2em;
    font-weight: bold;
  }
  .p-index-message ._box-cols-texts {
    flex: 1;
  }
  .p-index-message ._box-cols-texts *:nth-child(1) {
    margin-top: 0;
  }
  .p-index-message ._box-in {
    margin-top: min(50px, 50 / var(--w) * 100vw);
    padding: min(50px, 50 / var(--w) * 100vw) min(40px, 40 / var(--w) * 100vw);
    border-radius: min(40px, 40 / var(--w) * 100vw);
    background: #fff;
  }
  .p-index-message ._prof-cols {
    display: flex;
    gap: min(65px, 65 / var(--w) * 100vw);
  }
  .p-index-message ._prof-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: min(10px, 10 / var(--w) * 100vw);
    color: var(--primary);
  }
  .p-index-message ._prof-col h4 {
    border-left: min(2px, 2 / var(--w) * 100vw) solid #FC8670;
    padding-left: min(10px, 10 / var(--w) * 100vw);
    font-size: min(14px, 14 / var(--w) * 100vw);
    margin: 0;
  }
  .p-index-message ._prof-col ul {
    margin: 0;
    margin-bottom: min(10px, 10 / var(--w) * 100vw);
    padding: 0;
    padding-left: min(20px, 20 / var(--w) * 100vw);
  }
  .p-index-message ._prof-col li {
    font-size: min(14px, 14 / var(--w) * 100vw);
  }
  .p-index-message ._prof-col p {
    font-size: min(14px, 14 / var(--w) * 100vw);
    margin: 0;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --w: var(--w-sp) ;
  }
  .u-pc {
    display: none;
  }
  .l-wrapper {
    overflow: clip;
  }
  .l-header-wrap {
    height: 0;
  }
  .l-header {
    transition: all 0.2s ease;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: calc(66 / var(--w) * 100vw);
    z-index: 100;
  }
  .l-header h1, .l-header h2, .l-header h3, .l-header h4, .l-header h5, .l-header h6 {
    margin: 0;
    padding: 0;
  }
  .l-header p {
    margin: 0;
  }
  .l-header ol, .l-header ul, .l-header li {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .l-header a {
    text-decoration: none;
    color: inherit;
  }
  .l-header ._header-site {
    position: absolute;
    top: calc(10 / var(--w) * 100vw);
    left: calc(10 / var(--w) * 100vw);
    display: flex;
    gap: calc(20 / var(--w) * 100vw);
  }
  .l-header ._site-name {
    opacity: 0;
  }
  .l-header ._header-right {
    display: none;
  }
  .l-header ._btns {
    display: flex;
    gap: calc(35 / var(--w) * 100vw);
  }
  .l-header ._header-modal {
    position: absolute;
    top: 0;
    right: 0;
  }
  .c-head-logo {
    display: block;
    width: calc(110 / var(--w) * 100vw);
  }
  .c-head-name {
    padding-top: calc(10 / var(--w) * 100vw);
    font-size: calc(8 / var(--w) * 100vw);
    line-height: 1.4;
    letter-spacing: 0.15em;
    color: #a0a0a0;
  }
  .c-modal-menu-btn {
    position: relative;
    width: calc(66 / var(--w) * 100vw);
    height: calc(66 / var(--w) * 100vw);
    background-color: #FF9076;
    border-radius: 0;
    cursor: pointer;
    transition: opacity 0.2s;
    z-index: 10;
  }
  .c-modal-menu-btn:hover {
    opacity: 0.8;
  }
  .c-modal-menu-btn span {
    position: absolute;
    background: #ffffff;
    left: calc((66 / var(--w) * 100vw - 22 / var(--w) * 100vw) / 2);
    width: calc(22 / var(--w) * 100vw);
    height: calc(1 / var(--w) * 100vw);
    transition: all 0.3s;
    top: calc((66 / var(--w) * 100vw - 1 / var(--w) * 100vw) / 2);
  }
  .c-modal-menu-btn span:nth-child(1) {
    transform: translateY(calc(-8 / var(--w) * 100vw));
  }
  .c-modal-menu-btn span:nth-child(3) {
    transform: translateY(calc(8 / var(--w) * 100vw));
  }
  body.js-gmenu-active .c-modal-menu-btn span:nth-child(1) {
    transform: translateY(0) rotate(-45deg);
  }
  body.js-gmenu-active .c-modal-menu-btn span:nth-child(2) {
    opacity: 0;
    transform: scale(0.5);
  }
  body.js-gmenu-active .c-modal-menu-btn span:nth-child(3) {
    transform: translateY(0) rotate(45deg);
  }
  body.is-scroll-start .l-header {
    background: #fff;
    box-shadow: calc(2 / var(--w) * 100vw) calc(2 / var(--w) * 100vw) calc(4 / var(--w) * 100vw) rgba(0, 0, 0, 0.1);
  }
  body.is-scroll-start .l-header ._site-name {
    opacity: 1;
  }
  /* -------------------------------------------------- */
  .l-modal-menu {
    position: fixed;
    top: calc(66 / var(--w) * 100vw);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background: white;
    visibility: hidden;
    opacity: 0;
    transition-duration: 0.2s;
    background-image: url("../images/common/sp/modal-bg.webp?");
    background-size: 100% auto;
    background-position: bottom center;
    background-repeat: no-repeat;
  }
  .l-modal-menu h1, .l-modal-menu h2, .l-modal-menu h3, .l-modal-menu h4, .l-modal-menu h5, .l-modal-menu h6 {
    margin: 0;
    padding: 0;
  }
  .l-modal-menu p {
    margin: 0;
  }
  .l-modal-menu ol, .l-modal-menu ul, .l-modal-menu li {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .l-modal-menu a {
    text-decoration: none;
    color: inherit;
  }
  .l-modal-menu ._modal-inner {
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: calc(20 / var(--w) * 100vw);
  }
  body.js-gmenu-active .l-modal-menu {
    visibility: visible;
    opacity: 1;
    z-index: 100;
  }
  .l-modal-menu ._menus {
    padding-bottom: calc(200 / var(--w) * 100vw);
  }
  .l-modal-menu ._btns {
    display: flex;
    flex-direction: column;
    gap: calc(10 / var(--w) * 100vw);
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    bottom: calc(20 / var(--w) * 100vw);
    left: 0;
  }
  .c-modal-gmenu {
    display: flex;
    flex-direction: column;
    gap: calc(25 / var(--w) * 100vw);
    text-align: center;
  }
  .c-modal-gmenu ._item {
    display: block;
  }
  .c-modal-gmenu ._item span {
    display: inline-block;
    padding: calc(5 / var(--w) * 100vw) 0 calc(10 / var(--w) * 100vw) 0;
    position: relative;
    display: block;
    font-size: calc(18 / var(--w) * 100vw);
    line-height: 1;
    font-weight: bold;
    color: var(--primary);
  }
  /* -------------------------------------------------- */
  .l-footer-pre {
    position: relative;
    height: 115vw;
    background-image: url("../images/common/footer-bg.webp");
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
  }
  .l-footer {
    position: relative;
    margin-top: calc(-70 / var(--w) * 100vw);
    color: var(--primary);
    border-bottom: calc(4 / var(--w) * 100vw) solid #FFA698;
    border-radius: calc(20 / var(--w) * 100vw) calc(20 / var(--w) * 100vw) 0 0;
    padding: calc(20 / var(--w) * 100vw) calc(20 / var(--w) * 100vw) 0 calc(20 / var(--w) * 100vw);
    background-color: #fff;
  }
  .l-footer h1, .l-footer h2, .l-footer h3, .l-footer h4, .l-footer h5, .l-footer h6 {
    margin: 0;
    padding: 0;
  }
  .l-footer p {
    margin: 0;
  }
  .l-footer ol, .l-footer ul, .l-footer li {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .l-footer a {
    text-decoration: none;
    color: inherit;
  }
  .l-footer p {
    font-size: calc(11 / var(--w) * 100vw);
    font-weight: bold;
  }
  .l-footer ._cols {
    display: flex;
    flex-direction: column-reverse;
  }
  .l-footer ._col-left {
    display: flex;
    flex-direction: column;
    gap: calc(30 / var(--w) * 100vw);
    align-items: center;
    justify-content: center;
    padding: calc(40 / var(--w) * 100vw);
    border-top: calc(1 / var(--w) * 100vw) solid #EFECE6;
    text-align: center;
  }
  .l-footer ._col-center {
    display: flex;
    flex-direction: column;
    gap: calc(20 / var(--w) * 100vw);
    align-items: center;
    justify-content: center;
    border-top: calc(1 / var(--w) * 100vw) solid #EFECE6;
    padding: calc(40 / var(--w) * 100vw);
  }
  .l-footer ._col-right {
    display: flex;
    flex-direction: column;
    gap: calc(10 / var(--w) * 100vw);
    padding: calc(40 / var(--w) * 100vw);
    padding-left: calc(120 / var(--w) * 100vw);
  }
  .c-footer-logo {
    width: calc(210 / var(--w) * 100vw);
    display: block;
  }
  .c-footer-btn-contact {
    position: relative;
    display: inline-block;
    height: calc(42 / var(--w) * 100vw);
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FF7C33;
    color: #fff;
    border-radius: calc(100 / var(--w) * 100vw);
    font-size: calc(15 / var(--w) * 100vw);
    line-height: 1;
    letter-spacing: 0em;
    font-weight: bold;
    padding: 0 calc(40 / var(--w) * 100vw) 0 calc(55 / var(--w) * 100vw);
    cursor: pointer;
    transition-duration: 0.2s;
  }
  .c-footer-btn-contact:hover {
    opacity: 0.8;
  }
  .c-footer-btn-contact::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(24 / var(--w) * 100vw);
    width: calc(24 / var(--w) * 100vw);
    height: calc(24 / var(--w) * 100vw);
    margin: auto 0;
    background: #fff;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m22 7-8.991 5.727a2 2 0 0 1-2.009 0L2 7 M2 4h20v16H2z' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
  }
  .c-footer-btn-contact::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: calc(15 / var(--w) * 100vw);
    bottom: 0;
    width: calc(22 / var(--w) * 100vw);
    height: calc(22 / var(--w) * 100vw);
    margin: auto 0;
    background: #fff;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 13h11.17l-4.88 4.88c-.39.39-.39 1.03 0 1.42 .39.39 1.02.39 1.41 0l6.59-6.59c.39-.39.39-1.02 0-1.41l-6.58-6.6c-.39-.39-1.02-.39-1.41 0 -.39.39-.39 1.02 0 1.41L16.17 11H5c-.55 0-1 .45-1 1s.45 1 1 1Z' fill='currentColor'/%3E%3C/svg%3E");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
  }
  .c-footer-btn-tel {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: calc(5 / var(--w) * 100vw);
    padding-left: calc(36 / var(--w) * 100vw);
    color: var(--primary);
  }
  .c-footer-btn-tel span {
    font-size: calc(32 / var(--w) * 100vw);
    line-height: 1;
    letter-spacing: 0.06em;
    font-weight: bold;
  }
  .c-footer-btn-tel::after {
    content: "";
    display: block;
    position: absolute;
    top: calc(2 / var(--w) * 100vw);
    bottom: 0;
    left: 0;
    width: calc(32 / var(--w) * 100vw);
    height: calc(32 / var(--w) * 100vw);
    background: var(--primary);
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z' fill='currentColor'/%3E%3C/svg%3E");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
  }
  ul.c-footer-links {
    display: flex;
    flex-direction: column;
    gap: calc(20 / var(--w) * 100vw);
  }
  ul.c-footer-links li {
    font-size: calc(16 / var(--w) * 100vw);
    line-height: 1;
    font-weight: bold;
    border-left: calc(2 / var(--w) * 100vw) solid #FC8670;
    padding-left: calc(10 / var(--w) * 100vw);
  }
  /* -------------------------------------------------- */
  .c-title-section ._en {
    font-size: calc(16 / var(--w) * 100vw);
    line-height: 1;
    letter-spacing: 0.15em;
    font-weight: bold;
    color: #fc8670;
    display: flex;
    gap: calc(10 / var(--w) * 100vw);
    align-items: center;
  }
  .c-title-section ._en::before {
    content: "";
    width: calc(12 / var(--w) * 100vw);
    height: calc(15 / var(--w) * 100vw);
    background-image: url("../images/common/deco1.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .c-title-section h2 {
    font-size: calc(22 / var(--w) * 100vw);
    line-height: 1.5;
    letter-spacing: 0.15em;
    font-weight: bold;
    color: var(--primary);
    margin: 0;
    margin-top: calc(15 / var(--w) * 100vw);
  }
  a.c-btn-more {
    position: relative;
    display: inline-block;
    text-align: center;
    width: calc(230 / var(--w) * 100vw);
    padding: calc(12 / var(--w) * 100vw);
    border-radius: calc(50 / var(--w) * 100vw);
    background: #FF9076;
    color: #fff;
    font-size: calc(18 / var(--w) * 100vw);
    line-height: 1;
    letter-spacing: 0.1em;
    font-weight: bold;
    text-decoration: none;
  }
  a.c-btn-more::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: calc(10 / var(--w) * 100vw);
    bottom: 0;
    margin: auto 0;
    width: calc(24 / var(--w) * 100vw);
    height: calc(24 / var(--w) * 100vw);
    background: #fff;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 13h11.17l-4.88 4.88c-.39.39-.39 1.03 0 1.42 .39.39 1.02.39 1.41 0l6.59-6.59c.39-.39.39-1.02 0-1.41l-6.58-6.6c-.39-.39-1.02-.39-1.41 0 -.39.39-.39 1.02 0 1.41L16.17 11H5c-.55 0-1 .45-1 1s.45 1 1 1Z' fill='currentColor'/%3E%3C/svg%3E");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
  }
  .c-btn-tel {
    position: relative;
    height: calc(42 / var(--w) * 100vw);
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FF7C33;
    color: #fff;
    border-radius: calc(100 / var(--w) * 100vw);
    width: calc(320 / var(--w) * 100vw);
    font-size: calc(14 / var(--w) * 100vw);
    line-height: 1;
    letter-spacing: 0.1em;
    font-weight: bold;
    padding: 0 calc(60 / var(--w) * 100vw) 0 calc(30 / var(--w) * 100vw);
  }
  .c-btn-tel b {
    font-size: calc(18 / var(--w) * 100vw);
  }
  .c-btn-tel::before {
    content: "";
    width: calc(25 / var(--w) * 100vw);
    height: calc(25 / var(--w) * 100vw);
    margin-right: calc(10 / var(--w) * 100vw);
    background: #fff;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z' fill='currentColor'/%3E%3C/svg%3E");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
  }
  .c-btn-tel::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: calc(15 / var(--w) * 100vw);
    bottom: 0;
    width: calc(20 / var(--w) * 100vw);
    height: calc(20 / var(--w) * 100vw);
    margin: auto 0;
    background: #fff;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 13h11.17l-4.88 4.88c-.39.39-.39 1.03 0 1.42 .39.39 1.02.39 1.41 0l6.59-6.59c.39-.39.39-1.02 0-1.41l-6.58-6.6c-.39-.39-1.02-.39-1.41 0 -.39.39-.39 1.02 0 1.41L16.17 11H5c-.55 0-1 .45-1 1s.45 1 1 1Z' fill='currentColor'/%3E%3C/svg%3E");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
  }
  .c-btn-contact {
    position: relative;
    height: calc(42 / var(--w) * 100vw);
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primary);
    color: #fff;
    border-radius: calc(100 / var(--w) * 100vw);
    width: calc(320 / var(--w) * 100vw);
    font-size: calc(14 / var(--w) * 100vw);
    line-height: 1;
    letter-spacing: 0.05em;
    font-weight: bold;
    padding: 0 calc(20 / var(--w) * 100vw) 0 0;
    cursor: pointer;
    transition-duration: 0.2s;
  }
  .c-btn-contact b {
    font-size: calc(18 / var(--w) * 100vw);
  }
  .c-btn-contact:hover {
    opacity: 0.8;
  }
  .c-btn-contact::before {
    content: "";
    width: calc(22 / var(--w) * 100vw);
    height: calc(22 / var(--w) * 100vw);
    margin-right: calc(10 / var(--w) * 100vw);
    background: #fff;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m22 7-8.991 5.727a2 2 0 0 1-2.009 0L2 7 M2 4h20v16H2z' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
  }
  .c-btn-contact::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: calc(15 / var(--w) * 100vw);
    bottom: 0;
    width: calc(20 / var(--w) * 100vw);
    height: calc(20 / var(--w) * 100vw);
    margin: auto 0;
    background: #fff;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 13h11.17l-4.88 4.88c-.39.39-.39 1.03 0 1.42 .39.39 1.02.39 1.41 0l6.59-6.59c.39-.39.39-1.02 0-1.41l-6.58-6.6c-.39-.39-1.02-.39-1.41 0 -.39.39-.39 1.02 0 1.41L16.17 11H5c-.55 0-1 .45-1 1s.45 1 1 1Z' fill='currentColor'/%3E%3C/svg%3E");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
  }
  .p-index-bg {
    background-image: url("../images/index/main/sp/bg.webp?");
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
  }
  .p-index-main {
    position: relative;
    height: calc(760 / var(--w) * 100vw);
  }
  .p-index-main ._copy {
    position: absolute;
    top: 26.73vw;
    left: 18.33vw;
    width: 23.72vw;
  }
  .p-index-main ._bird {
    position: absolute;
    top: 61.21vw;
    left: 4.36vw;
    width: 13.08vw;
  }
  .p-index-main ._main {
    position: absolute;
    top: 64.55vw;
    left: 26.92vw;
    width: 73.08vw;
  }
  .p-index-main ._btns {
    position: absolute;
    top: 179.55vw;
    left: 8.21vw;
    width: 83.59vw;
    display: flex;
    flex-direction: column;
    gap: calc(20 / var(--w) * 100vw);
  }
  .p-index-main ._logo {
    position: absolute;
    top: 140.57vw;
    left: 4.36vw;
    width: 91.41vw;
    display: flex;
    flex-direction: column;
    gap: calc(25 / var(--w) * 100vw);
    align-items: center;
    justify-content: center;
  }
  .p-index-main ._label {
    font-size: calc(14 / var(--w) * 100vw);
    line-height: 1;
    letter-spacing: 0.15em;
    font-weight: bold;
    background: #FF9076;
    color: #fff;
    padding: calc(5 / var(--w) * 100vw) calc(20 / var(--w) * 100vw) calc(6 / var(--w) * 100vw) calc(20 / var(--w) * 100vw);
  }
  .p-index-main ._label b {
    font-size: calc(16 / var(--w) * 100vw);
    font-weight: bold;
  }
  .p-index-scroll {
    position: absolute;
    top: 80vh;
    right: calc(10 / var(--w) * 100vw);
    z-index: 10;
    width: calc(10 / var(--w) * 100vw);
    height: calc(140 / var(--w) * 100vw);
    background-image: url("../images/index/scroll.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  /* -------------------------------------------------- */
  .p-index-about {
    margin-top: calc(120 / var(--w) * 100vw);
    padding: calc(50 / var(--w) * 100vw) calc(20 / var(--w) * 100vw);
  }
  .p-index-about ._cols {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: calc(20 / var(--w) * 100vw);
  }
  .p-index-about ._cols ._image {
    width: calc(300 / var(--w) * 100vw);
    margin: 0 auto;
  }
  /* -------------------------------------------------- */
  .p-index-service {
    background: #FFECE5;
    padding: calc(150 / var(--w) * 100vw) calc(20 / var(--w) * 100vw) calc(70 / var(--w) * 100vw) calc(20 / var(--w) * 100vw);
    background-image: url("../images/index/service/bg.webp?");
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
  }
  .p-index-service ._list {
    margin-top: calc(50 / var(--w) * 100vw);
  }
  .p-index-service-cards {
    display: flex;
    flex-direction: column;
    gap: calc(60 / var(--w) * 100vw);
  }
  .p-index-service-card {
    position: relative;
    background: #fff;
    padding: calc(60 / var(--w) * 100vw) calc(30 / var(--w) * 100vw) calc(30 / var(--w) * 100vw) calc(30 / var(--w) * 100vw);
    display: flex;
    flex-direction: column;
    gap: calc(20 / var(--w) * 100vw);
    border-radius: calc(140 / var(--w) * 100vw) calc(140 / var(--w) * 100vw) calc(20 / var(--w) * 100vw) calc(20 / var(--w) * 100vw);
  }
  .p-index-service-card ._card-title {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .p-index-service-card ._card-title h3 {
    margin: 0;
    display: inline-block;
    border-bottom: calc(2 / var(--w) * 100vw) solid #FF9076;
    padding-bottom: calc(5 / var(--w) * 100vw);
    font-size: calc(22 / var(--w) * 100vw);
    line-height: 1.31;
    letter-spacing: 0.15em;
    font-weight: bold;
    color: var(--primary);
  }
  .p-index-service-card ._card-body {
    display: flex;
    flex-direction: column;
    gap: calc(20 / var(--w) * 100vw);
    border-radius: calc(10 / var(--w) * 100vw);
  }
  .p-index-service-card ._card-btns {
    display: flex;
    gap: calc(10 / var(--w) * 100vw);
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    bottom: calc(-20 / var(--w) * 100vw);
    left: 0;
  }
  /* -------------------------------------------------- */
  .p-index-area {
    background: #FFECE5;
    padding: calc(80 / var(--w) * 100vw) calc(20 / var(--w) * 100vw) calc(50 / var(--w) * 100vw) calc(20 / var(--w) * 100vw);
    background-image: url("../images/index/area/bg.webp?");
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
  }
  .p-index-area ._map {
    margin-top: calc(40 / var(--w) * 100vw);
    padding: calc(20 / var(--w) * 100vw);
    background: #fff;
    border-radius: calc(20 / var(--w) * 100vw);
    text-align: center;
  }
  .p-index-area ._map-title {
    margin-top: calc(20 / var(--w) * 100vw);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .p-index-area ._map-title h3 {
    margin: 0;
    display: inline-block;
    border-bottom: calc(4 / var(--w) * 100vw) solid #FF9076;
    padding-bottom: calc(5 / var(--w) * 100vw);
    font-size: calc(20 / var(--w) * 100vw);
    line-height: 1.31;
    letter-spacing: 0.15em;
    font-weight: bold;
    color: var(--primary);
  }
  .p-index-area ._map-title ._place {
    font-size: calc(14 / var(--w) * 100vw);
    text-align: left;
  }
  /* -------------------------------------------------- */
  .p-index-message {
    position: relative;
    padding: calc(120 / var(--w) * 100vw) calc(20 / var(--w) * 100vw) calc(50 / var(--w) * 100vw) calc(20 / var(--w) * 100vw);
    background-image: url("../images/index/message/bg.webp?");
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
  }
  .p-index-message ._deco1 {
    position: absolute;
    top: calc(160 / var(--w) * 100vw);
    right: calc(10 / var(--w) * 100vw);
    width: calc(100 / var(--w) * 100vw);
  }
  .p-index-message ._box {
    margin-top: calc(50 / var(--w) * 100vw);
    padding: calc(20 / var(--w) * 100vw);
    border-radius: calc(20 / var(--w) * 100vw);
    background: #FFECE5;
  }
  .p-index-message ._box-cols {
    display: flex;
    flex-direction: column;
    gap: calc(10 / var(--w) * 100vw);
    align-items: center;
    justify-content: center;
  }
  .p-index-message ._box-cols-image {
    width: calc(150 / var(--w) * 100vw);
    text-align: center;
    padding-top: calc(20 / var(--w) * 100vw);
  }
  .p-index-message ._box-cols-image ._name {
    font-size: calc(16 / var(--w) * 100vw);
    line-height: 1.75;
    letter-spacing: 0.2em;
    font-weight: bold;
  }
  .p-index-message ._box-cols-texts {
    flex: 1;
  }
  .p-index-message ._box-cols-texts *:nth-child(1) {
    margin-top: 0;
  }
  .p-index-message ._box-in {
    margin-top: calc(40 / var(--w) * 100vw);
    padding: calc(20 / var(--w) * 100vw) calc(20 / var(--w) * 100vw);
    border-radius: calc(10 / var(--w) * 100vw);
    background: #fff;
  }
  .p-index-message ._prof-cols {
    display: flex;
    flex-direction: column;
    gap: calc(20 / var(--w) * 100vw);
  }
  .p-index-message ._prof-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: calc(10 / var(--w) * 100vw);
    color: var(--primary);
  }
  .p-index-message ._prof-col h4 {
    border-left: calc(2 / var(--w) * 100vw) solid #FC8670;
    padding-left: calc(10 / var(--w) * 100vw);
    font-size: calc(14 / var(--w) * 100vw);
    margin: 0;
  }
  .p-index-message ._prof-col ul {
    margin: 0;
    margin-bottom: calc(10 / var(--w) * 100vw);
    padding: 0;
    padding-left: calc(20 / var(--w) * 100vw);
  }
  .p-index-message ._prof-col li {
    font-size: calc(14 / var(--w) * 100vw);
  }
  .p-index-message ._prof-col p {
    font-size: calc(14 / var(--w) * 100vw);
    margin: 0;
  }
}
_body {
  position: relative;
}
_body:after {
  content: "";
  display: block;
  z-index: 100000;
  position: absolute;
  inset: 0 0 0 0;
  background-position: center top;
  background-repeat: no-repeat;
  background-image: url(../../../_dummy/20260205-yuu-clinic/sp.png);
  background-size: 390px auto;
  opacity: 0.4;
  height: 20000px;
}
_body:hover:after {
  visibility: hidden;
}



/*クリニック概要*/
/* =========================================
   page-clinic (YUU緩和ケアクリニック) 専用CSS
   ※プレーンテキスト出力
   ========================================= */

/* 余白・幅（既存の .l-inner がある前提） */
.p-clinic {
  width: 100%;
}

.p-clinic__header {
  padding: 56px 0 28px;
}

.p-clinic__title {
  margin: 0 0 12px;
  font-size: clamp(24px, 3.2vw, 34px);
  line-height: 1.25;
  letter-spacing: 0.02em;
}

.p-clinic__lead {
  margin: 0 0 20px;
  line-height: 1.8;
  opacity: 0.9;
}

/* 目次 */
.p-clinic__nav {
  margin-top: 18px;
}

.p-clinic__navList {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.p-clinic__navList a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,0.12);
  line-height: 1.3;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.p-clinic__navList a:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  border-color: rgba(0,0,0,0.18);
}

/* セクション */
.p-clinic__section {
  padding: 44px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.p-clinic__h2 {
  margin: 0 0 18px;
  font-size: clamp(20px, 2.6vw, 26px);
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.p-clinic__h3 {
  margin: 18px 0 10px;
  font-size: 16px;
  line-height: 1.5;
}

.p-clinic__text {
  margin: 0 0 14px;
  line-height: 1.9;
}

/* 概要テーブル */
.p-clinic__tableWrap {
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.10);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  background: #fff;
}

.p-clinic__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px; /* スマホで横スクロールになっても崩れない */
}

.p-clinic__table th,
.p-clinic__table td {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  vertical-align: top;
}

.p-clinic__table tr:last-child th,
.p-clinic__table tr:last-child td {
  border-bottom: none;
}

.p-clinic__table th {
  width: 220px;
  text-align: left;
  background: rgba(0,0,0,0.03);
  font-weight: 700;
}

.p-clinic__table td a {
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.28);
}

.p-clinic__note {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.95em;
  opacity: 0.9;
}

/* アコーディオン（details/summary） */
.p-clinic__accordion {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.p-clinic__details {
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  overflow: hidden;
}

.p-clinic__summary {
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 700;
  line-height: 1.4;
  list-style: none;
  position: relative;
  user-select: none;
}

.p-clinic__summary::-webkit-details-marker {
  display: none;
}

.p-clinic__summary::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(0,0,0,0.55);
  border-bottom: 2px solid rgba(0,0,0,0.55);
  transform: translateY(-60%) rotate(45deg);
  transition: transform .2s ease;
}

.p-clinic__details[open] .p-clinic__summary::after {
  transform: translateY(-40%) rotate(-135deg);
}

.p-clinic__detailsBody {
  padding: 0 18px 16px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.p-clinic__detailsBody .p-clinic__text {
  margin-top: 14px;
}

/* 事業所リスト */
.p-clinic__lists {
  display: grid;
  gap: 14px;
  margin-top: 12px;
}

.p-clinic__listBlock {
  padding: 14px 14px;
  border-radius: 12px;
  background: rgba(0,0,0,0.03);
}

.p-clinic__listTitle {
  margin: 0 0 8px;
  font-weight: 700;
}

.p-clinic__list {
  margin: 0;
  padding-left: 1.2em;
  line-height: 1.9;
}

.p-clinic__list--disc {
  padding-left: 1.2em;
}

/* アクセス */
.p-clinic__accessBlock {
  margin-top: 12px;
  padding: 16px 16px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.10);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  background: #fff;
}

/* フッター導線 */
.p-clinic__footer {
  padding: 34px 0 60px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.p-clinic__backTop {
  display: inline-flex;
  align-items: center;
  padding: 12px 14px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,0.12);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.p-clinic__backTop:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  border-color: rgba(0,0,0,0.18);
}

/* レスポンシブ */
@media (max-width: 768px) {
  .p-clinic__header {
    padding: 44px 0 20px;
  }

  .p-clinic__section {
    padding: 34px 0;
  }

  .p-clinic__navList a {
    padding: 10px 12px;
  }

  .p-clinic__table {
    min-width: 560px;
  }

  .p-clinic__summary {
    padding: 14px 14px;
  }

  .p-clinic__detailsBody {
    padding: 0 14px 14px;
  }
}

.zerospace{

	margin:0;
}

p{
	font-size:20px;
	line-height:1.8em;
}

.p-index-main a{
	text-decoration:none;
}



/* =========================================================
  Palliative Care Section (安心感・女性医師向けトーン)
  影響範囲は .p-palliative 内に閉じています
========================================================= */

.p-palliative {
  --text: #222;
  --muted: #555;

  --brand: #7a6fd6;          /* ラベンダー */
  --brand-soft: rgba(122, 111, 214, 0.12);

  --pink: #f8bac6;           /* やさしいピンク */
  --pink-soft: rgba(248, 186, 198, 0.18);

  --bg: #ffffff;
  --bg-soft: rgba(0, 0, 0, 0.03);
  --line: rgba(0, 0, 0, 0.08);

  --radius: 18px;
  --shadow: 0 14px 30px rgba(0, 0, 0, 0.08);

  color: var(--text);
  line-height: 1.9;
  letter-spacing: 0.02em;
}

.p-palliative * {
  box-sizing: border-box;
}

.p-palliative__header {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(800px 300px at 10% 0%, var(--pink-soft), transparent 60%),
    radial-gradient(900px 340px at 90% 0%, var(--brand-soft), transparent 60%),
    var(--bg);
}

.p-palliative__kicker {
  display: inline-block;
  margin: 0 0 10px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.p-palliative__title {
  margin: 0 0 10px;
  font-size: 26px;
  line-height: 1.35;
}

.p-palliative__lead {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 15px;
}

.p-palliative__hero-illust,
.p-palliative__sub-illust {
  margin: 14px 0 0;
  border-radius: calc(var(--radius) - 6px);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}

.p-palliative__hero-illust img,
.p-palliative__sub-illust img {
  width: 100%;
  height: auto;
  display: block;
}

.p-palliative__caption {
  margin: 0;
  padding: 10px 12px;
  font-size: 13px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.85);
  border-top: 1px solid var(--line);
}

.p-palliative__grid {
  margin-top: 18px;
  display: grid;
  gap: 18px;
}

.p-palliative__panel {
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg);
  box-shadow: var(--shadow);
}

.p-palliative__panel--soft {
  background:
    linear-gradient(180deg, rgba(248, 186, 198, 0.10), transparent 55%),
    linear-gradient(180deg, rgba(122, 111, 214, 0.08), transparent 55%),
    var(--bg);
}

.p-palliative__panel-title {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.4;
  padding-left: 14px;
  position: relative;
}

.p-palliative__panel-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 4px;
  height: 1.15em;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--pink), var(--brand));
}

.p-palliative__text {
  margin: 0 0 12px;
  color: var(--text);
}

.p-palliative__callout {
  margin: 12px 0 0;
  padding: 12px 14px;
  border-radius: calc(var(--radius) - 6px);
  border: 1px solid rgba(122, 111, 214, 0.22);
  background: rgba(122, 111, 214, 0.08);
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
}

.p-palliative__callout-icon {
  line-height: 1;
  margin-top: 2px;
}

.p-palliative__callout-text {
  color: var(--text);
}

.p-palliative__cards {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.p-palliative__card {
  border-radius: calc(var(--radius) - 6px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  padding: 14px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
}

.p-palliative__card-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background:
    radial-gradient(16px 16px at 30% 30%, rgba(248, 186, 198, 0.35), transparent 70%),
    radial-gradient(18px 18px at 70% 30%, rgba(122, 111, 214, 0.25), transparent 70%),
    rgba(0, 0, 0, 0.02);
  font-size: 18px;
}

.p-palliative__card-title {
  margin: 0 0 6px;
  font-size: 22px;
  line-height: 1.45;
}

.p-palliative__card-text {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
}

.p-palliative__cta {
  border-radius: var(--radius);
  border: 1px solid rgba(248, 186, 198, 0.35);
  background:
    radial-gradient(900px 360px at 20% 10%, rgba(248, 186, 198, 0.18), transparent 60%),
    radial-gradient(900px 360px at 90% 20%, rgba(122, 111, 214, 0.14), transparent 60%),
    rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
}

.p-palliative__cta-body {
  padding: 22px;
}

.p-palliative__cta-title {
  margin: 0 0 10px;
  font-size: 18px;
}

.p-palliative__cta-text {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
}

.p-palliative__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.p-palliative__btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.p-palliative__btn:focus-visible {
  outline: 3px solid rgba(122, 111, 214, 0.28);
  outline-offset: 2px;
}

.p-palliative__btn--primary {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(90deg, var(--brand), #9a8ef0);
  box-shadow: 0 10px 22px rgba(122, 111, 214, 0.22);
}

.p-palliative__btn--ghost {
  color: var(--brand);
  background: rgba(255, 255, 255, 0.7);
}

.p-palliative__btn:hover {
  transform: translateY(-1px);
}

.p-palliative__cta-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
}

/* -------------------------
  Responsive
-------------------------- */
@media (max-width: 760px) {
  .p-palliative__title {
    font-size: 22px;
  }

  .p-palliative__header,
  .p-palliative__panel,
  .p-palliative__cta-body {
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .p-palliative__cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .p-palliative__btn {
    width: 100%;
  }
}


/* =========================================================
  Service Page Section (診療内容)
  .p-palliative とトーンを合わせた安心デザイン
========================================================= */

.p-service {
  --text: #222;
  --muted: #555;

  --brand: #7a6fd6;          /* ラベンダー */
  --brand-soft: rgba(122, 111, 214, 0.12);

  --pink: #f8bac6;           /* やさしいピンク */
  --pink-soft: rgba(248, 186, 198, 0.18);

  --bg: #fff;
  --line: rgba(0, 0, 0, 0.08);

  --radius: 18px;
  --shadow: 0 14px 30px rgba(0, 0, 0, 0.08);

  color: var(--text);
  line-height: 1.9;
  letter-spacing: 0.02em;

  margin-top: 26px;
}

.p-service * {
  box-sizing: border-box;
}

.p-service__header {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(800px 300px at 10% 0%, var(--pink-soft), transparent 60%),
    radial-gradient(900px 340px at 90% 0%, var(--brand-soft), transparent 60%),
    var(--bg);
}

.p-service__kicker {
  display: inline-block;
  margin: 0 0 10px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.p-service__title {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.35;
}

.p-service__lead {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
}

.p-service__grid {
  margin-top: 18px;
  display: grid;
  gap: 18px;
}

.p-service__panel {
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg);
  box-shadow: var(--shadow);
}

.p-service__panel--soft {
  background:
    linear-gradient(180deg, rgba(248, 186, 198, 0.10), transparent 55%),
    linear-gradient(180deg, rgba(122, 111, 214, 0.08), transparent 55%),
    var(--bg);
}

.p-service__panel--price {
  border-color: rgba(122, 111, 214, 0.18);
}

.p-service__panel--steps {
  border-color: rgba(248, 186, 198, 0.30);
}

.p-service__panel-title {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.4;
  padding-left: 14px;
  position: relative;
}

.p-service__panel-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 4px;
  height: 1.15em;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--pink), var(--brand));
}

/* chips */
.p-service__chips {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.p-service__chip {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background:
    radial-gradient(18px 18px at 30% 30%, rgba(248, 186, 198, 0.30), transparent 70%),
    radial-gradient(18px 18px at 70% 30%, rgba(122, 111, 214, 0.20), transparent 70%),
    rgba(0, 0, 0, 0.02);
  font-size: 20px;
  color: var(--text);
}

/* illust */
.p-service__illust {
  margin: 14px 0 0;
  border-radius: calc(var(--radius) - 6px);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}

.p-service__illust img {
  width: 100%;
  height: auto;
  display: block;
}

.p-service__caption {
  margin: 0;
  padding: 10px 12px;
  font-size: 20px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.85);
  border-top: 1px solid var(--line);
}

/* timeline (24/365) */
.p-service__timeline {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

.p-service__tl-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  padding: 14px;
  border-radius: calc(var(--radius) - 6px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
}

.p-service__tl-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(122, 111, 214, 0.08);
  font-size: 18px;
}

.p-service__tl-title {
  margin: 0 0 4px;
  font-weight: 700;
}

.p-service__tl-text {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
}

.p-service__note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 20px;
}

/* list */
.p-service__list {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
	font-size:20px;
}

.p-service__list-item {
  position: relative;
  padding-left: 22px;
}

.p-service__list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--brand);
}

/* area */
.p-service__area {
  margin-top: 14px;
  padding: 14px;
  border-radius: calc(var(--radius) - 6px);
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.02);
}

.p-service__area-title {
  margin: 0 0 6px;
  font-size: 20px;
}

.p-service__area-text {
  margin: 0;
  color: var(--muted);
}

.p-service__area-sub {
  font-size: 20px;
}

/* price */
.p-service__pricebox {
  border-radius: calc(var(--radius) - 6px);
  border: 1px solid rgba(122, 111, 214, 0.18);
  background: rgba(122, 111, 214, 0.06);
  padding: 14px;
}

.p-service__price-lead {
  margin: 0 0 10px;
  font-weight: 700;
}

.p-service__price-row {
  border-radius: 14px;
  border: 1px solid rgba(248, 186, 198, 0.30);
  background: rgba(255, 255, 255, 0.85);
  padding: 12px;
}

.p-service__price-label {
  margin: 0 0 6px;
  font-weight: 700;
}

.p-service__price-value {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
}

.p-service__price-notes {
  margin: 12px 0 0;
  padding-left: 1.2em;
  color: var(--muted);
  font-size: 20px;
}

/* steps */
.p-service__steps {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.p-service__step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) - 6px);
  background: rgba(255, 255, 255, 0.86);
}

.p-service__step-num {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #333;
  font-weight: 800;
  background: linear-gradient(90deg, var(--brand), #9a8ef0);
}

.p-service__step-title {
  margin: 0 0 4px;
  font-weight: 800;
}

.p-service__step-text {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
}

.p-service__tel {
  color: var(--brand);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

/* CTA */
.p-service__cta {
  border-radius: var(--radius);
  border: 1px solid rgba(248, 186, 198, 0.35);
  background:
    radial-gradient(900px 360px at 20% 10%, rgba(248, 186, 198, 0.18), transparent 60%),
    radial-gradient(900px 360px at 90% 20%, rgba(122, 111, 214, 0.14), transparent 60%),
    rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
}

.p-service__cta-body {
  padding: 22px;
}

.p-service__cta-title {
  margin: 0 0 8px;
  font-size: 18px;
}

.p-service__cta-text {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 18px;
}

.p-service__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.p-service__btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.p-service__btn:focus-visible {
  outline: 3px solid rgba(122, 111, 214, 0.28);
  outline-offset: 2px;
}

.p-service__btn--primary {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(90deg, var(--brand), #9a8ef0);
  box-shadow: 0 10px 22px rgba(122, 111, 214, 0.22);
}

.p-service__btn--ghost {
  color: var(--brand);
  background: rgba(255, 255, 255, 0.7);
}

.p-service__btn:hover {
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 760px) {
  .p-service__header,
  .p-service__panel,
  .p-service__cta-body {
    padding: 16px;
  }

  .p-service__title {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .p-service__cta-actions {
    flex-direction: column;
  }

  .p-service__btn {
    width: 100%;
  }
}


/* =========================================================
  FAQ Section (安心感・女性医師トーン)
  JS不要: details/summary でアコーディオン
========================================================= */

.p-faq {
  --text: #222;
  --muted: #555;

  --brand: #7a6fd6;          /* ラベンダー */
  --brand-soft: rgba(122, 111, 214, 0.12);

  --pink: #f8bac6;           /* やさしいピンク */
  --pink-soft: rgba(248, 186, 198, 0.18);

  --bg: #fff;
  --line: rgba(0, 0, 0, 0.08);

  --radius: 18px;
  --shadow: 0 14px 30px rgba(0, 0, 0, 0.08);

  color: var(--text);
  line-height: 1.9;
  letter-spacing: 0.02em;

  margin-top: 26px;
}

.p-faq * {
  box-sizing: border-box;
}

.p-faq__header {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(800px 300px at 10% 0%, var(--pink-soft), transparent 60%),
    radial-gradient(900px 340px at 90% 0%, var(--brand-soft), transparent 60%),
    var(--bg);
}

.p-faq__kicker {
  display: inline-block;
  margin: 0 0 10px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
  font-size: 20px;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.p-faq__title {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.35;
}

.p-faq__lead {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
}

.p-faq__groups {
  margin-top: 18px;
  display: grid;
  gap: 18px;
}

.p-faq__group {
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg);
  box-shadow: var(--shadow);
}

.p-faq__group-title {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.45;
  padding-left: 14px;
  position: relative;
}

.p-faq__group-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 4px;
  height: 1.15em;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--pink), var(--brand));
}

/* item */
.p-faq__item {
  border-radius: calc(var(--radius) - 6px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  overflow: hidden;
  margin-top: 10px;
}

.p-faq__item[open] {
  border-color: rgba(122, 111, 214, 0.22);
  box-shadow: 0 10px 22px rgba(122, 111, 214, 0.10);
}

/* summary default marker off */
.p-faq__question {
  list-style: none;
  cursor: pointer;
  padding: 14px 14px;
  display: grid;
  grid-template-columns: 26px 1fr 18px;
  gap: 10px;
  align-items: start;
  background:
    radial-gradient(18px 18px at 30% 30%, rgba(248, 186, 198, 0.22), transparent 70%),
    radial-gradient(18px 18px at 70% 30%, rgba(122, 111, 214, 0.16), transparent 70%),
    rgba(0, 0, 0, 0.02);
}

.p-faq__question::-webkit-details-marker {
  display: none;
}

.p-faq__q-label {
  width: 26px;
  height: 26px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(90deg, var(--brand), #9a8ef0);
}

.p-faq__q-text {
  font-weight: 800;
  line-height: 1.55;
}

.p-faq__chev {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  position: relative;
}

.p-faq__chev::before,
.p-faq__chev::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 2px;
  right: 2px;
  height: 2px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.p-faq__chev::after {
  transform: rotate(90deg);
  opacity: 1;
}

.p-faq__item[open] .p-faq__chev::after {
  opacity: 0;
  transform: rotate(90deg) scale(0.8);
}

/* answer */
.p-faq__answer {
  padding: 0 14px 14px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
}

.p-faq__answer p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 20px;
}

.p-faq__answer strong {
  color: var(--text);
}

/* footer CTA */
.p-faq__footer {
  margin-top: 18px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(248, 186, 198, 0.35);
  background:
    radial-gradient(900px 360px at 20% 10%, rgba(248, 186, 198, 0.18), transparent 60%),
    radial-gradient(900px 360px at 90% 20%, rgba(122, 111, 214, 0.14), transparent 60%),
    rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.p-faq__btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.p-faq__btn:focus-visible {
  outline: 3px solid rgba(122, 111, 214, 0.28);
  outline-offset: 2px;
}

.p-faq__btn--primary {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(90deg, var(--brand), #9a8ef0);
  box-shadow: 0 10px 22px rgba(122, 111, 214, 0.22);
}

.p-faq__btn--ghost {
  color: var(--brand);
  background: rgba(255, 255, 255, 0.7);
}

.p-faq__btn:hover {
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 760px) {
  .p-faq__header,
  .p-faq__group,
  .p-faq__footer {
    padding: 16px;
  }

  .p-faq__title {
    font-size: 20px;
  }

  .p-faq__question {
    grid-template-columns: 26px 1fr 18px;
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .p-faq__footer {
    flex-direction: column;
  }

  .p-faq__btn {
    width: 100%;
  }
}


/* =========================
  Contact simple (div部分)
========================= */
.p-contactSimple{
  padding: 48px 16px 56px;
}

.p-contactSimple__inner{
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

/* pill button */
.p-contactSimple__pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(720px, 92%);
  height: 96px;
  border-radius: 999px;
  background: #F7E57A; /* 画像に近い淡いイエロー */
  color: #1D4E7A;      /* 濃いブルー */
  text-decoration: none;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: .06em;
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
}

/* phone */
.p-contactSimple__tel{
  margin: 26px 0 80px;
  font-size: 56px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #1D4E7A;
}

/* text area */
.p-contactSimple__text{
  margin: 26px auto 0;
  width: min(980px, 92%);
  text-align: left;
  color: #1D4E7A;
  font-size: 22px;
  line-height: 2;
  letter-spacing: .02em;
}

.p-contactSimple__text p{
  margin: 0 0 16px;
}

.p-contactSimple__note{
  margin-top: 12px;
  color: #E33;
  font-weight: 700;
}

/* responsive */
@media (max-width: 768px){
  .p-contactSimple__pill{
    height: 72px;
    font-size: 20px;
  }
  .p-contactSimple__tel{
    font-size: 34px;
    margin: 18px 0 56px;
  }
  .p-contactSimple__text{
    font-size: 16px;
    line-height: 1.9;
  }
}


/************************************
** お問い合わせフォームの入力
************************************/
table.inquiry {
  width: 100%;
}
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
select,
textarea,
.field {
  display: block;
  margin-bottom: 0;
  padding: 0 12px;
  width: 100%;
  height: 45px;
  border: 0;
  border-radius: 3px;
  background-color: #eff1f5;
  box-shadow: none;
  color: #5c6b80;
  vertical-align: middle;
  font-size: 1em;
  line-height: 45px;
  transition: background-color 0.24s ease-in-out;
}
textarea {
  overflow: auto;
  padding: 0.5em;
  min-height: 120px;
  max-width: 100%;
  text-align: left !important;
  line-height: 1.5em;
}
@media (max-width: 500px) {
  .inquiry td,
  .inquiry th {
    display: block !important;
    -webkit-box-sizing: border-box !important;
    -moz-box-sizing: border-box !important;
    box-sizing: border-box !important;
    width: 100% !important;
    border-top: none !important;
  }
  .inquiry tr:first-child th {
    border-top: 1px solid #d7d7d7 !important;
  }
  .inquiry .any,
  .inquiry .haveto {
    font-size: 10px;
  }
}
.inquiry th {
  padding-right: 5px;
  width: 30%;
  border: solid 1px #d7d7d7;
  background: #f7f7f7;
  color: #444;
  text-align: left;
  font-size: 14px;
}
.inquiry td {
  border: solid 1px #d7d7d7;
  font-size: 13px;
}
.entry-content .inquiry tr,
.entry-content table {
  border: solid 1px #d7d7d7;
}
.haveto {
  position: relative;
  bottom: 1px;
  margin-right: 5px;
  padding: 5px;
  border-radius: 2px;
  background: #ff9393;
  color: #fff;
  font-size: 7px;
}
.any {
  position: relative;
  bottom: 1px;
  margin-right: 5px;
  padding: 5px;
  border-radius: 2px;
  background: #93c9ff;
  color: #fff;
  font-size: 7px;
}
.verticallist .wpcf7-list-item {
  display: block;
}
#formbtn {
  display: block;
  margin: 25px auto 0;
  padding: 15px;
  width: 350px;
  border-radius: 2px;
  background: #ffaa56;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
}
#formbtn:hover {
  border: 2px solid #ffaa56;
  background: #fff;
  color: #ffaa56;
}
