@charset "UTF-8";
/* CSS Document - 当サイトTOPデザインに準拠 */
:root {
  --base-font: "Noto Sans JP", sans-serif;
  --sub-font: "Zen Kaku Gothic New", sans-serif;
  --en-font: "Cormorant SC", serif;
  --en-font2: "Cormorant Infant", serif;
  --base-color: #002435;
  --gold: #809EB3;
  --gold2: #325063;
  --white: #fff;
  --light-brown: #F4F6F7;
  --brown2: #F7F5EF;
  --brown-text: #3C2D1E;
  --green: #0d6f45;
  --light-green: #d3e9e1;
}

/* TOPと共通: mixin の :root（--base-color, --gold, --gold2, --light-brown, --brown2, --brown-text, --sub-font, --en-font）を使用 */
/* 下層のみ: ルート 62.5% → 1rem = 10px（本文 1.6rem → 16px）。header.php で html に .is-sub を付与 */
html.is-sub {
  font-size: 62.5%;
}

#sub {
  font-size: 15px;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.pankuzu {
  margin-top: 0;
  padding: 2rem 0 0;
  position: relative;
}
@media all and (min-width: 898px) and (max-width: 1365px) {
  .pankuzu {
    padding-top: 3rem;
  }
}
@media all and (max-width: 896px) {
  .pankuzu {
    padding-top: 1rem;
  }
}
.pankuzu ul {
  max-width: 1100px;
  margin: 0 auto;
}
@media all and (min-width: 898px) and (max-width: 1365px) {
  .pankuzu ul {
    width: 100%;
    padding: 0 5rem;
  }
}
@media all and (max-width: 896px) {
  .pankuzu ul {
    width: 100%;
    padding: 0 3rem;
  }
}
.pankuzu ul li {
  font-size: 1.2rem;
  display: inline-block;
  letter-spacing: 2.5px;
}
@media all and (max-width: 896px) {
  .pankuzu ul li {
    font-size: 1rem;
  }
}
.pankuzu ul li a {
  color: var(--base-color);
}
.pankuzu ul li:not(:last-of-type):after {
  content: "＞";
  margin-left: 0.5em;
}

/*pankuzu*/
.comAnchorBox ul {
  margin: 0 auto;
  max-width: 1100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.comAnchorBox ul li {
  width: 48%;
  margin-bottom: 1rem;
}
.comAnchorBox ul li a {
  border-bottom: 1px solid;
  display: block;
  width: 100%;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  padding: 12px 20px 12px 0;
  position: relative;
}
.comAnchorBox ul li a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 10px;
  height: 10px;
  border-top: 1px solid var(--base-color);
  border-right: 1px solid var(--base-color);
  transform: translateY(-50%) rotate(45deg);
}
@media all and (max-width: 896px) {
  .comAnchorBox ul {
    display: block;
    width: auto;
  }
  .comAnchorBox ul li {
    width: 100%;
    margin-bottom: 1rem;
  }
  .comAnchorBox ul li:last-child {
    margin-bottom: 0;
  }
  .comAnchorBox ul li a {
    background-position: right 2px center;
    font-size: 1.2rem;
    padding: 9px 20px 8px 0;
  }
}

/*comAnchorBox*/
.page-ttl {
  margin-top: 120px;
  width: 100%;
  background-color: #809eb3;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../images/common/u-top_bg.jpg);
  background-image: -webkit-image-set(url(../images/common/u-top_bg.jpg.webp) type("image/webp"), url(../images/common/u-top_bg.jpg) type("image/jpeg"));
  background-image: image-set(url(../images/common/u-top_bg.jpg.webp) type("image/webp"), url(../images/common/u-top_bg.jpg) type("image/jpeg"));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 50px 5%;
  height: 400px;
  min-height: 400px;
}

.page-ttl-main {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 68px;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
  color: #002435;
}

.page-ttl-sub {
  display: block;
  font-size: 24px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  color: #535353;
}

@media (max-width: 800px) {
  .page-ttl {
    margin-top: 0;
    padding: 30px 5%;
    height: 180px;
    min-height: 180px;
  }
  .page-ttl-main {
    font-size: 32px;
  }
  .page-ttl-sub {
    font-size: 16px;
  }
}
main {
  display: block;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
  z-index: 0;
  background-image: url(../img/index/doctor_bg.webp);
  background-repeat: repeat;
  background-position: center top;
}
@media all and (max-width: 896px) {
  main {
    background-size: 1000px auto;
    background-position: right top;
  }
}
main:before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  z-index: -1;
}
main a:hover {
  opacity: 0.5;
}
main section:not([class]) {
  display: block;
  margin: 0 auto;
  padding: 7rem 0 5rem;
  box-sizing: border-box;
  max-width: 1100px;
}
@media all and (min-width: 898px) and (max-width: 1365px) {
  main section:not([class]) {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
@media all and (max-width: 896px) {
  main section:not([class]) {
    width: 100%;
    padding: 5rem 2.5rem 0;
    margin: 0;
  }
}
main section:not([class]):not(:has(~ section:not([class]))) {
  padding-bottom: 15rem;
}
@media all and (max-width: 896px) {
  main section:not([class]):not(:has(~ section:not([class]))) {
    padding-bottom: 7.5rem;
  }
}
main section:not([class]) > *:last-child {
  margin-bottom: 0 !important;
}
main section:not([class]) > *:first-child {
  margin-top: 0 !important;
}
main section:not([class]) * {
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
}
main section:not([class]) h2 + *, main section:not([class]) h3 + *, main section:not([class]) h4 + *, main section:not([class]) h5 + *, main section:not([class]) h6 + * {
  margin-top: 0 !important;
}
main section:not([class]) h2 + img, main section:not([class]) h3 + img {
  display: block;
  width: 100%;
  margin: 4rem auto;
}
@media all and (max-width: 896px) {
  main section:not([class]) h2 + img, main section:not([class]) h3 + img {
    margin: 1.8rem 0;
  }
}
main section:not([class]) h2:not([class]) {
  font-weight: 500;
  font-size: 3.3rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.6;
  background: var(--base-color);
  color: var(--white);
  text-align: center;
  margin: 0 0 4rem;
  padding: 0.5em 1em;
}
main section:not([class]) h2:not([class]) small {
  display: block;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 0.15em;
}
@media all and (max-width: 896px) {
  main section:not([class]) h2:not([class]) small {
    font-size: 1.35rem;
  }
}
@media all and (max-width: 896px) {
  main section:not([class]) h2:not([class]) {
    font-size: 1.9rem;
    margin: 6rem 0 2.5rem;
  }
}
main section:not([class]) h3:not([class]) {
  color: var(--base-color);
  font-weight: 600;
  font-size: 2.8rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin: 8rem 0 3rem;
  letter-spacing: 0.1em;
  position: relative;
  padding-bottom: 0.5em;
  border-bottom: 1px solid var(--gold2);
}
@media all and (max-width: 896px) {
  main section:not([class]) h3:not([class]) {
    font-size: 1.9rem;
    margin: 5rem 0 2rem;
  }
}
main section:not([class]) h3:not([class]) .span-color01 {
  font-size: 1.4rem;
  margin-left: 20px;
  margin-bottom: 0.5em;
  display: inline-block;
  background-color: var(--light-brown);
  padding: 4px 5px;
  color: var(--base-color);
  vertical-align: middle;
}
@media all and (max-width: 896px) {
  main section:not([class]) h3:not([class]) .span-color01 {
    margin-left: 0;
    font-size: 1.2rem;
    margin-bottom: 0;
  }
}
main section:not([class]) h4:not([class]) {
  font-size: 2.3rem;
  font-weight: 600;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: var(--base-color);
  letter-spacing: 0.1em;
  margin: 5rem 0 3rem;
  padding: 0.5em 1em;
  background-color: var(--light-brown);
}
@media all and (max-width: 896px) {
  main section:not([class]) h4:not([class]) {
    font-size: 1.8rem;
    margin: 4rem 0 2rem;
  }
}
main section:not([class]) h5:not([class]) {
  font-size: 2.3rem;
  font-weight: 600;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: var(--gold2);
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  margin: 3rem 0 0.5em;
  line-height: 2;
}
@media all and (max-width: 896px) {
  main section:not([class]) h5:not([class]) {
    font-size: 1.7rem;
    margin: 3rem 0 1rem;
    line-height: 1.5;
  }
}
main section:not([class]) h2 .subtitle, main section:not([class]) h3 .subtitle, main section:not([class]) h4 .subtitle, main section:not([class]) h5 .subtitle, main section:not([class]) h6 .subtitle {
  font-size: 2rem;
}
@media all and (max-width: 896px) {
  main section:not([class]) h2 .subtitle, main section:not([class]) h3 .subtitle, main section:not([class]) h4 .subtitle, main section:not([class]) h5 .subtitle, main section:not([class]) h6 .subtitle {
    font-size: 1.35rem;
  }
}
main section:not([class]) small.staff-name {
  font-size: 15px;
  color: #809eb3;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-left: 15px;
  vertical-align: baseline;
}
main section:not([class]) p, main section:not([class]) dd {
  text-align: justify;
  margin-bottom: 1em;
  line-height: 2.5;
  font-size: 1.6rem;
}
@media all and (max-width: 896px) {
  main section:not([class]) p, main section:not([class]) dd {
    font-size: 1.45rem;
  }
}
main section:not([class]) p strong, main section:not([class]) dd strong {
  font-weight: 700;
  color: var(--gold2);
}
main section:not([class]) p small, main section:not([class]) dd small {
  font-size: 0.85em;
}
main section:not([class]) p + .comBtn, main section:not([class]) dd + .comBtn {
  margin: 4rem 0;
}
main section:not([class]) p > a, main section:not([class]) dd > a {
  border-bottom: 1px solid;
}
main section:not([class]) * > small {
  font-size: 0.65em;
}
main section:not([class]) .comBtn {
  margin-inline: auto;
}
@media all and (max-width: 896px) {
  main section:not([class]) .comBtn {
    max-width: 100%;
  }
}
main section:not([class]) .comBtn + .comBtn {
  margin-top: 5rem;
}
@media all and (max-width: 896px) {
  main section:not([class]) .comBtn + .comBtn {
    margin-top: 5vw;
  }
}
main section:not([class]) img + p, main section:not([class]) a + p {
  margin-top: 30px;
}
@media all and (max-width: 896px) {
  main section:not([class]) img + p, main section:not([class]) a + p {
    margin-top: 3vw;
  }
}
main section:not([class]) .imgBox {
  position: relative;
  margin-bottom: 4rem;
}
main section:not([class]) .imgBox::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(0, 0, 0, 0)), color-stop(90%, rgba(0, 0, 0, 0.8)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.8) 90%);
  filter: contrast(60%);
  content: "";
}
main section:not([class]) .imgBox img {
  width: 100%;
}
main section:not([class]) .imgBox .imgTxt {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 2.8rem 1rem;
  z-index: 1;
  color: var(--white);
  font-size: 4rem;
  line-height: 1;
  letter-spacing: 0.24rem;
}
@media all and (max-width: 896px) {
  main section:not([class]) .imgBox .imgTxt {
    padding: 1.8rem 1rem;
  }
}
main section:not([class]) .imgBox .imgTxt p {
  font-weight: 500;
  font-size: 4rem;
  text-align: center;
  margin-bottom: 1rem;
}
@media all and (max-width: 896px) {
  main section:not([class]) .imgBox .imgTxt p {
    font-size: 1.9rem;
    line-height: 1.5;
    margin-bottom: 0;
  }
}
main section:not([class]) .imgBox .imgTxt span.sml {
  font-size: 2.5rem;
}
@media all and (max-width: 896px) {
  main section:not([class]) .imgBox .imgTxt span.sml {
    font-size: 0.5rem;
  }
}
main section:not([class]) .side-img {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 50px 0;
}
@media all and (max-width: 896px) {
  main section:not([class]) .side-img {
    margin: 8vw 0;
  }
}
main section:not([class]) .side-img .content {
  width: 55%;
  margin: 0;
  padding: 0;
}
@media all and (max-width: 896px) {
  main section:not([class]) .side-img .content {
    width: 100%;
    order: 2;
  }
  main section:not([class]) .side-img .content.sonomama {
    width: 45%;
  }
}
main section:not([class]) .side-img .content > *:first-child {
  margin-top: 0;
}
main section:not([class]) .side-img .content > *:last-child {
  margin-bottom: 0;
}
main section:not([class]) .side-img .img {
  width: 40%;
}
@media all and (max-width: 896px) {
  main section:not([class]) .side-img .img {
    width: 100%;
    order: 1;
    margin-bottom: 5vw;
  }
}
main section:not([class]) .side-img .img img:nth-child(2) {
  margin-top: 30px;
}
@media all and (max-width: 896px) {
  main section:not([class]) .side-img .img img:nth-child(2) {
    display: none;
  }
}
main section:not([class]) .side-img.img-small .img {
  width: 250px;
}
@media all and (max-width: 896px) {
  main section:not([class]) .side-img.img-small .img {
    width: 100%;
  }
}
main section:not([class]) .side-img.img-small .content {
  width: calc(100% - 300px);
}
@media all and (max-width: 896px) {
  main section:not([class]) .side-img.img-small .content {
    width: 100%;
  }
}
main section:not([class]) .side-img .half {
  width: calc(50% - 20px);
  margin-bottom: 0px;
}
@media all and (max-width: 896px) {
  main section:not([class]) .side-img .half {
    width: 100%;
    margin-bottom: 4vw;
  }
}
main section:not([class]) .side-img .half:nth-child(n+3) {
  margin-top: 50px;
}
@media all and (max-width: 896px) {
  main section:not([class]) .side-img .half:nth-child(n+3) {
    margin-top: 0;
  }
}
@media all and (max-width: 896px) {
  main section:not([class]) .side-img .half:last-child {
    margin-bottom: 0;
  }
}
main section:not([class]) .side-img .half > *:first-child {
  margin-top: 0 !important;
}
main section:not([class]) .side-img .half > *:last-child {
  margin-bottom: 0 !important;
}
main section:not([class]) .side-img .half.sonomama {
  margin-bottom: 0;
}
@media all and (max-width: 896px) {
  main section:not([class]) .side-img .half.sonomama {
    width: calc(50% - 5px);
  }
}
main section:not([class]) .side-img .half.sonomama p span {
  color: var(--base-color);
}
main section:not([class]) .side-img .half.sonomama:nth-child(2) {
  text-align: right;
}
main section:not([class]) .side-img .three-column {
  margin-bottom: 0;
  width: calc(33.3333333333% - 30px);
}
@media all and (max-width: 896px) {
  main section:not([class]) .side-img .three-column {
    width: 100%;
    margin-bottom: 10vw;
  }
}
main section:not([class]) .side-img .three-column:nth-child(n+4) {
  margin-top: 30px;
}
@media all and (max-width: 896px) {
  main section:not([class]) .side-img .three-column:nth-child(n+4) {
    margin-top: 0;
  }
}
@media all and (max-width: 896px) {
  main section:not([class]) .side-img .three-column:last-child {
    margin-bottom: 0;
  }
}
main section:not([class]) .side-img .three-column > *:first-child {
  margin-top: 0 !important;
}
main section:not([class]) .side-img .three-column > *:last-child {
  margin-bottom: 0 !important;
}
main section:not([class]) .side-img .three-column img + p {
  margin-top: 15px;
  text-align: center;
}
main section:not([class]) .side-img .four-column {
  margin-bottom: 0;
  width: calc(25% - 30px);
}
@media all and (max-width: 896px) {
  main section:not([class]) .side-img .four-column {
    width: calc(50% - 10px);
    margin-bottom: 5vw;
  }
  main section:not([class]) .side-img .four-column:nth-last-child(-n+2) {
    margin-bottom: 0;
  }
}
main section:not([class]) .side-img .four-column:nth-child(n+5) {
  margin-top: 30px;
}
@media all and (max-width: 896px) {
  main section:not([class]) .side-img .four-column:nth-child(n+5) {
    margin-top: 0;
  }
}
@media all and (max-width: 896px) {
  main section:not([class]) .side-img .four-column:last-child {
    margin-bottom: 0;
  }
}
main section:not([class]) .side-img .four-column > *:first-child {
  margin-top: 0 !important;
}
main section:not([class]) .side-img .four-column > *:last-child {
  margin-bottom: 0 !important;
}
main section:not([class]) .side-img .four-column img + p {
  margin-top: 15px;
  text-align: center;
}
main section:not([class]) {
  /*.side-img*/
}
main section:not([class]) .img-with-circle {
  position: relative;
  display: block;
  margin: 4rem 0;
  container-type: inline-size;
  container-name: img-circle;
}
@media all and (max-width: 896px) {
  main section:not([class]) .img-with-circle {
    margin: 1.8rem 0;
  }
}
main section:not([class]) .img-with-circle img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
}
main section:not([class]) .circle-label {
  position: absolute;
  top: -5%;
  left: -5%;
  z-index: 2;
  width: 30%;
  height: 0;
  padding-bottom: 28%;
  box-sizing: content-box;
  overflow: hidden;
  border-radius: 50%;
  background-color: var(--brown2);
}
@media all and (max-width: 896px) {
  main section:not([class]) .circle-label {
    top: -9%;
    width: 38%;
    padding-bottom: 30%;
  }
}
main section:not([class]) .circle-label p {
  position: absolute;
  inset: 0;
  display: flex;
  font-size: 1.4rem;
  color: var(--gold2);
  line-height: 1.5;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12%;
  box-sizing: border-box;
  margin: 0;
}
@media all and (max-width: 896px) {
  main section:not([class]) .circle-label p {
    font-size: 1.2rem;
  }
}
main section:not([class]) ul:not([class]) {
  margin: 4rem 0;
}
@media all and (max-width: 896px) {
  main section:not([class]) ul:not([class]) {
    margin: 3rem 0;
  }
}
main section:not([class]) ul:not([class]) li {
  font-size: 1.6rem;
  padding-left: 3rem;
  position: relative;
  line-height: 1.8;
}
@media all and (max-width: 896px) {
  main section:not([class]) ul:not([class]) li {
    font-size: 1.3rem;
    padding-left: 2rem;
  }
  main section:not([class]) ul:not([class]) li > p {
    font-size: 1.3rem;
  }
}
main section:not([class]) ul:not([class]) li:before {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  background: var(--base-color);
  position: absolute;
  left: 0.15rem;
  top: 0.9rem;
}
@media all and (max-width: 896px) {
  main section:not([class]) ul:not([class]) li:before {
    width: 1rem;
    height: 1rem;
    top: 0.65rem;
  }
}
main section:not([class]) ul:not([class]) li + li {
  margin-top: 2rem;
}
@media all and (max-width: 896px) {
  main section:not([class]) ul:not([class]) li + li {
    margin-top: 1.6rem;
  }
}
main section:not([class]) {
  /*ul*/
}
main section:not([class]) ul.inline-list li {
  background: var(--gold);
  padding: 0.2em 0.5em;
  margin-right: 0.5em;
  margin-bottom: 1em;
  display: inline-block;
  color: var(--white);
}
@media all and (max-width: 896px) {
  main section:not([class]) ul.inline-list li {
    font-size: 1.3rem;
    margin-bottom: 0.5em;
  }
}
main section:not([class]) ul.dot-list li {
  margin-block: 0.5em;
  position: relative;
  padding-left: 1em;
}
main section:not([class]) ul.dot-list li:before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--base-color);
  position: absolute;
  left: 0;
  top: 10px;
}
@media all and (max-width: 896px) {
  main section:not([class]) ul.dot-list li:before {
    top: 10px !important;
  }
}
main section:not([class]) ol:not([class]) {
  margin: 4rem 0;
  counter-reset: number;
}
@media all and (max-width: 896px) {
  main section:not([class]) ol:not([class]) {
    margin: 3rem 0;
  }
}
main section:not([class]) ol:not([class]) li {
  font-size: 1.6rem;
  padding-left: 6.4rem;
  position: relative;
  min-height: 5rem;
  display: grid;
  align-items: center;
  line-height: 3rem;
}
@media all and (max-width: 896px) {
  main section:not([class]) ol:not([class]) li {
    font-size: 1.3rem;
    line-height: 2.6rem;
    padding-left: 4rem;
    margin-bottom: 2.5rem;
  }
  main section:not([class]) ol:not([class]) li > p {
    font-size: 1.3rem;
  }
}
@media all and (max-width: 896px) {
  main section:not([class]) ol:not([class]) li:last-child {
    margin-bottom: 0;
  }
}
main section:not([class]) ol:not([class]) li:before {
  font-weight: 500;
  font-size: 2rem;
  color: var(--white);
  letter-spacing: 0;
  counter-increment: number;
  content: counter(number);
  width: 5rem;
  height: 5rem;
  box-sizing: border-box;
  background: var(--gold2);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
}
@media all and (max-width: 896px) {
  main section:not([class]) ol:not([class]) li:before {
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
  }
}
main section:not([class]) ol:not([class]) li strong:first-of-type {
  font-weight: 600;
  font-size: 1.2em;
  margin-bottom: 10px;
  letter-spacing: 1.5px;
}
@media all and (max-width: 896px) {
  main section:not([class]) ol:not([class]) li strong:first-of-type {
    margin-bottom: 0;
  }
}
main section:not([class]) ol:not([class]) li + li {
  margin-top: 5rem;
}
@media all and (max-width: 896px) {
  main section:not([class]) ol:not([class]) li + li {
    margin-top: 2.35rem;
  }
}
main section:not([class]) {
  /*ol*/
}
main section:not([class]) ol.flow {
  counter-reset: flow;
  margin: 5rem 0;
}
@media all and (max-width: 896px) {
  main section:not([class]) ol.flow {
    margin: 4rem 0;
  }
}
main section:not([class]) ol.flow li {
  position: relative;
  line-height: 2.5 !important;
  text-align: justify;
  font-size: 1.6rem;
}
@media all and (max-width: 896px) {
  main section:not([class]) ol.flow li {
    font-size: 1.45rem;
  }
  main section:not([class]) ol.flow li > p {
    font-size: 1.45rem;
    order: 1;
    margin-top: 1.5rem;
  }
  main section:not([class]) ol.flow li:has(> strong small) {
    line-height: 1.75 !important;
  }
}
main section:not([class]) ol.flow li p strong {
  font-weight: 700;
  color: var(--gold2);
}
main section:not([class]) ol.flow li:last-child {
  margin-bottom: 0 !important;
}
main section:not([class]) ol.flow li + li {
  margin-top: 4rem;
}
@media all and (max-width: 896px) {
  main section:not([class]) ol.flow li + li {
    margin-top: 2.5rem;
  }
}
main section:not([class]) ol.flow li > strong:first-of-type {
  position: relative;
  padding-left: 4rem;
  display: block;
  margin-bottom: 1.2rem;
  font-weight: 600;
  font-size: 1.8rem;
  color: var(--base-color);
}
@media all and (max-width: 896px) {
  main section:not([class]) ol.flow li > strong:first-of-type {
    font-size: 1.6rem;
    padding-left: 3.5rem;
  }
}
main section:not([class]) ol.flow li > strong:first-of-type small {
  font-size: 1.35rem;
}
@media all and (max-width: 896px) {
  main section:not([class]) ol.flow li > strong:first-of-type small {
    font-size: 1.15rem;
  }
}
main section:not([class]) ol.flow li > strong:first-of-type:before {
  font-weight: 400;
  font-size: 1.8rem;
  color: var(--white);
  counter-increment: flow;
  content: counter(flow);
  width: 3rem;
  height: 3rem;
  box-sizing: border-box;
  background: var(--gold2);
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0;
  position: absolute;
  left: 0;
  top: 8px;
}
@media all and (max-width: 896px) {
  main section:not([class]) ol.flow li > strong:first-of-type:before {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.4rem;
    top: 0.7rem;
  }
}
main section:not([class]) ol.flow li img {
  width: 35rem;
  position: absolute;
  top: 0;
  right: 0;
}
@media all and (max-width: 896px) {
  main section:not([class]) ol.flow li img {
    width: 100%;
    position: static;
    display: block;
  }
}
main section:not([class]) ol.flow li.has-img {
  padding-right: 40rem;
  margin-bottom: 10rem;
}
@media all and (max-width: 896px) {
  main section:not([class]) ol.flow li.has-img {
    padding: 0;
    margin-bottom: 6rem;
    display: flex;
    flex-wrap: wrap;
  }
}
main section:not([class]) {
  /*ol.flow*/
}
main section:not([class]) ol.card-list {
  counter-reset: card;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin: 4rem 0;
}
@media all and (max-width: 896px) {
  main section:not([class]) ol.card-list {
    margin: 3rem 0;
    /* もしSPでカード間の隙間を狭くしたい場合はここで gap: 1.5rem; 等を指定 */
  }
}
main section:not([class]) ol.card-list > li {
  color: var(--brown-text);
  background: var(--light-brown);
  padding: 2rem 2rem 2.6rem;
  width: 35rem;
  line-height: 2.5;
}
@media all and (max-width: 896px) {
  main section:not([class]) ol.card-list > li {
    width: 100%;
    font-size: 1.3rem;
  }
}
main section:not([class]) ol.card-list > li strong:first-of-type {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold2);
  margin-bottom: 1em;
  padding-bottom: 0.6em;
  position: relative;
  text-align: center;
}
@media all and (max-width: 896px) {
  main section:not([class]) ol.card-list > li strong:first-of-type {
    font-size: 1.6rem;
  }
}
main section:not([class]) ol.card-list > li strong:first-of-type::before {
  color: var(--gold2);
  content: counter(card, decimal-leading-zero);
  counter-increment: card;
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.5em;
  text-align: center;
}
@media all and (max-width: 896px) {
  main section:not([class]) ol.card-list > li strong:first-of-type::before {
    font-size: 2.3rem;
    margin-bottom: 0.3em;
  }
}
main section:not([class]) ol.card-list > li strong:first-of-type::after {
  background: var(--gold2);
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  width: 100%;
}
main section:not([class]) ol.card-list.two-column > li {
  width: calc(50% - 1.5rem);
}
@media all and (max-width: 896px) {
  main section:not([class]) ol.card-list.two-column > li {
    width: 100%;
  }
}
main section:not([class]) table:not(.no-style) {
  width: 100%;
  margin: 4rem 0;
  border-collapse: separate;
  border-spacing: 0;
  position: relative;
  overflow: hidden;
  background: var(--white);
}
main section:not([class]) table:not(.no-style)::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--base-color);
  pointer-events: none;
}
@media all and (max-width: 896px) {
  main section:not([class]) table:not(.no-style) {
    margin: 3rem 0;
  }
}
main section:not([class]) table:not(.no-style) tr:last-child th,
main section:not([class]) table:not(.no-style) tr:last-child td {
  border-bottom: none;
}
main section:not([class]) table:not(.no-style) th, main section:not([class]) table:not(.no-style) td {
  font-size: 1.6rem;
  line-height: 2;
  padding: 1em;
  vertical-align: middle;
  border-bottom: 1px dashed var(--base-color);
}
main section:not([class]) table:not(.no-style) th {
  background: var(--light-brown);
  color: var(--base-color);
}
@media all and (max-width: 896px) {
  main section:not([class]) table:not(.no-style) th {
    font-size: 1.3rem;
    width: 30%;
  }
}
main section:not([class]) table:not(.no-style) th small {
  font-weight: 500;
  font-size: 0.8em;
}
@media all and (max-width: 896px) {
  main section:not([class]) table:not(.no-style) td {
    font-size: 1.3rem;
    width: 70%;
  }
  main section:not([class]) table:not(.no-style) td > p {
    font-size: 1.3rem;
    line-height: 1.7;
  }
}
main section:not([class]) table:not(.no-style) td > *:last-child {
  margin-bottom: 0;
}
main section:not([class]) table:not(.no-style) td a {
  display: inline-block;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
  word-wrap: break-word;
}
main section:not([class]) table:not(.no-style).price-table th {
  width: 65%;
}
main section:not([class]) table:not(.no-style).three-row th, main section:not([class]) table:not(.no-style).three-row td {
  width: 30%;
}
main section:not([class]) table:not(.no-style).three-row th {
  text-align: center;
}
@media all and (max-width: 896px) {
  main section:not([class]) table:not(.no-style).three-row th, main section:not([class]) table:not(.no-style).three-row td {
    font-size: 1.1rem;
  }
}
@media all and (max-width: 896px) {
  main section:not([class]) table:not(.no-style).sp-break {
    display: block;
    border-top: none;
  }
  main section:not([class]) table:not(.no-style).sp-break tbody, main section:not([class]) table:not(.no-style).sp-break tr, main section:not([class]) table:not(.no-style).sp-break th, main section:not([class]) table:not(.no-style).sp-break td {
    display: block;
    width: 100%;
  }
  main section:not([class]) table:not(.no-style).sp-break tr:last-child th {
    border-bottom: 1px dashed var(--base-color);
  }
  main section:not([class]) table:not(.no-style).sp-break th {
    text-align: center;
    padding: 0.5em 1em;
    border-top: 1px solid var(--base-color);
  }
  main section:not([class]) table:not(.no-style).sp-break td {
    border-bottom: none;
  }
}
main section:not([class]) {
  /*table*/
  /* 治療法比較テーブル（implant 等） */
}
main section:not([class]) > p.comparison-table-note,
main section:not([class]) > p.sp:has(+ .comparison-table-wrap) {
  display: none;
  margin: 0 0 1rem;
  font-size: 1.4rem;
  text-align: left;
  color: var(--base-color);
}
@media all and (max-width: 896px) {
  main section:not([class]) > p.comparison-table-note,
  main section:not([class]) > p.sp:has(+ .comparison-table-wrap) {
    display: block !important;
  }
}
main section:not([class]) .comparison-table-wrap {
  width: 100%;
  margin: 4rem 0;
}
@media all and (max-width: 896px) {
  main section:not([class]) .comparison-table-wrap {
    margin: 3rem 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
main section:not([class]) .comparison-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #c5d0d6;
  background: var(--white);
}
@media all and (max-width: 896px) {
  main section:not([class]) .comparison-table {
    min-width: 64rem;
  }
}
main section:not([class]) .comparison-table th,
main section:not([class]) .comparison-table td {
  font-size: 1.6rem;
  line-height: 1.6;
  padding: 2rem;
  vertical-align: middle;
  border: 1px solid #c5d0d6;
}
@media all and (max-width: 896px) {
  main section:not([class]) .comparison-table th,
  main section:not([class]) .comparison-table td {
    font-size: 1.3rem;
    padding: 1.5rem 1.2rem;
  }
}
main section:not([class]) .comparison-table thead th {
  background: var(--light-brown);
  color: var(--base-color);
  font-weight: 700;
  text-align: left;
}
main section:not([class]) .comparison-table__corner {
  width: 14%;
  min-width: 10rem;
  background: var(--light-brown);
}
main section:not([class]) .comparison-table tbody th[scope=row] {
  background: var(--brown2);
  color: var(--base-color);
  font-weight: 700;
  text-align: left;
  width: 14%;
  min-width: 10rem;
  white-space: normal;
}
main section:not([class]) .comparison-table tbody td {
  background: var(--white);
  color: var(--base-color);
  font-weight: 400;
  text-align: left;
}
main section:not([class]) details {
  margin-top: 3rem;
}
main section:not([class]) details > summary {
  position: relative;
  display: block;
  padding: 1.2rem 4rem 1.2rem 2rem;
  border: 1px solid var(--base-color);
  background-color: var(--white);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  transition: background-color 0.7s ease, color 0.7s ease;
}
main section:not([class]) details > summary:hover {
  background-color: var(--base-color);
  color: var(--white);
}
main section:not([class]) details > summary {
  /* デフォルトの三角マーカーを非表示 */
}
main section:not([class]) details > summary::-webkit-details-marker {
  display: none;
}
main section:not([class]) details > summary::after {
  content: "＋";
  position: absolute;
  right: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 700;
  font-size: 1.8rem;
  transition: transform 0.2s ease;
}
main section:not([class]) details[open] > summary::after {
  content: "－";
}
main section:not([class]) details {
  /* 中身の余白調整 */
}
main section:not([class]) details > *:not(summary) {
  margin-top: 2rem;
}
@media all and (max-width: 896px) {
  main section:not([class]) details > summary {
    padding: 1rem 3.5rem 1rem 1.6rem;
    font-size: 1.4rem;
  }
}
main section:not([class]) dl:not([class]) {
  width: 100%;
  margin: 5rem auto 4rem;
  padding: 40px 50px;
  background: #F7F5EF;
}
@media all and (max-width: 896px) {
  main section:not([class]) dl:not([class]) {
    margin: 4rem auto 3rem;
    padding: 8vw 6vw;
  }
}
main section:not([class]) dl:not([class]) > *:first-child {
  margin-top: 0;
}
main section:not([class]) dl:not([class]) > *:last-child {
  margin-bottom: 0 !important;
}
main section:not([class]) {
  /*dl*/
}
main section:not([class]) dl {
  margin-bottom: 5rem;
}
main section:not([class]) dl dt {
  font-size: 2rem;
  color: var(--gold2);
  font-weight: 600;
  padding-bottom: 2px;
  margin-bottom: 15px;
}
@media all and (max-width: 896px) {
  main section:not([class]) dl dt {
    font-size: 1.75rem;
    margin-bottom: 3vw;
  }
}
main section:not([class]) dl dt:nth-child(n+2) {
  margin-top: 50px;
}
@media all and (max-width: 896px) {
  main section:not([class]) dl dt:nth-child(n+2) {
    margin-top: 30px;
  }
}
@media all and (max-width: 896px) {
  main section:not([class]) dl .side-img {
    margin-top: 0;
  }
}
main section:not([class]) dl dd > *:last-child {
  margin-bottom: 0 !important;
}
main section:not([class]) dl dd > ul:not([class]) {
  margin-block: 2rem;
}
main section:not([class]) dl {
  /*dd*/
}
main section:not([class]) dl hr {
  display: block;
  margin: 30px 0;
  border-top: 1px solid var(--base-color);
}
main section:not([class]) dl.question dt {
  position: relative;
  padding-left: 1.7em;
  padding-bottom: 0.5em;
  text-indent: -1.7em;
  font-weight: 500;
  margin-top: 2em;
  border-bottom: 3px dotted;
}
main section:not([class]) dl.question dt:first-child {
  margin-top: 0;
}
main section:not([class]) dl.question dt:before {
  content: "Q.";
  color: var(--gold2);
  font-weight: bold;
  margin-right: 0.5em;
}
main section:not([class]) dl.question dd {
  margin-bottom: 1em;
  line-height: 2.5;
}
main section:not([class]) .hosoku {
  width: 100%;
  margin: 5rem auto 4rem;
  padding: 40px 50px;
  background: var(--light-brown);
}
@media all and (max-width: 896px) {
  main section:not([class]) .hosoku {
    margin: 4rem auto 3rem;
    padding: 8vw 6vw;
  }
}
main section:not([class]) .hosoku > *:first-child {
  margin-top: 0 !important;
}
main section:not([class]) .hosoku > *:last-child {
  margin-bottom: 0 !important;
}
main section:not([class]) .hosoku .comBtn a {
  background: var(--white);
  color: var(--base-color);
}
main section:not([class]) .hosoku h4:not([class]) {
  position: relative;
  padding-left: 3.5rem;
  padding-block: 0;
}
main section:not([class]) .hosoku h4:not([class]):before {
  content: "";
  width: 2.3rem;
  height: 2.3rem;
  background: var(--gold);
  position: absolute;
  left: 0.2rem;
  top: 0.7rem;
}
@media all and (max-width: 896px) {
  main section:not([class]) .hosoku h4:not([class]) {
    padding-left: 3rem;
  }
  main section:not([class]) .hosoku h4:not([class]):before {
    width: 1.8rem;
    height: 1.8rem;
    top: 0.5rem;
  }
}
main section:not([class]) .hosoku table:not(.no-style) th {
  background: var(--white);
}
main section:not([class]) .hosoku + .hosoku {
  margin-top: 0;
}
main section:not([class]) {
  /*hosoku*/
  /* Google マップ（SP は正方形・幅いっぱい） */
}
main section:not([class]) .map iframe {
  display: block;
  width: 100%;
  max-width: 100%;
}
@media all and (max-width: 896px) {
  main section:not([class]) .map {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
  }
  main section:not([class]) .map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
}
main section:not([class]) .visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 1px, 1px) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
main section:not([class]) .recruit-entry-wrap {
  margin-top: 4rem;
}
main section:not([class]) .recruit-entry-wrap > .entry-form-lead {
  margin: 0 0 30px;
  font-size: 15px;
  line-height: 2;
  text-align: justify;
}
main section:not([class]) .recruit-entry-wrap .contact-form .note {
  text-align: left;
}
main {
  /*section*/
}
main .article-author {
  background: var(--gold);
  padding: 6rem;
  color: var(--white);
  margin-top: 8rem;
}
@media all and (max-width: 896px) {
  main .article-author {
    padding: 4rem 2.5rem;
    margin-top: 5rem;
  }
}
main .article-author .inner {
  display: flex;
  align-items: start;
  justify-content: space-between;
}
@media all and (max-width: 896px) {
  main .article-author .inner {
    display: block;
  }
}
main .article-author .txtBox {
  width: 65%;
}
@media all and (max-width: 896px) {
  main .article-author .txtBox {
    width: 100%;
  }
}
main .article-author .txtBox .name {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.4rem;
  border-block: 1px solid;
  padding-block: 1.5rem;
  margin-bottom: 2.5rem;
  font-weight: 500;
  background: none;
  -webkit-text-fill-color: initial;
  color: var(--white);
}
@media all and (max-width: 896px) {
  main .article-author .txtBox .name {
    font-size: 1.6rem;
  }
}
main .article-author .txtBox .name .large {
  font-size: 1.45em;
  margin-left: 0.5em;
}
@media all and (max-width: 896px) {
  main .article-author .txtBox .name .large {
    display: block;
    margin-top: 0.5em;
    margin-left: 0;
  }
}
main .article-author .txtBox .comBtn {
  color: var(--base-color);
}
main .article-author .txtBox p {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 3rem;
}
@media all and (max-width: 896px) {
  main .article-author .txtBox p {
    font-size: 1.4rem;
  }
}
main .article-author .phoBox {
  width: 30%;
}
@media all and (max-width: 896px) {
  main .article-author .phoBox {
    width: 100%;
    margin-top: 3rem;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
  }
}
main .article-author .phoBox img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
}
main .comTreatment {
  margin-top: 13rem;
}
@media all and (max-width: 896px) {
  main .comTreatment {
    margin-top: 5rem;
  }
}

/*main#sub*/
/* 採用フォームの Flatpickr が固定 UI より手前に出るようにする */
.flatpickr-calendar {
  z-index: 11000;
}

/* 採用ページのみ（main.is-recruit）：フォーム・募集要項テーブル等 */
main#sub.is-recruit {
  /* 募集要項：項目名（th）を文字幅ぴったり・1行 */
}
main#sub.is-recruit table.recruit-requirements {
  overflow: visible;
  table-layout: auto;
}
main#sub.is-recruit table.recruit-requirements th {
  box-sizing: border-box;
  width: 1%;
  min-width: max-content;
  max-width: max-content;
  white-space: nowrap;
  word-break: keep-all;
  vertical-align: top;
  padding: 1em 1.2em;
}
@media all and (max-width: 896px) {
  main#sub.is-recruit table.recruit-requirements th {
    width: 1% !important;
    min-width: max-content;
    max-width: max-content;
    padding: 1em 1.2em;
  }
}
main#sub.is-recruit table.recruit-requirements td {
  width: auto;
}
@media all and (max-width: 896px) {
  main#sub.is-recruit table.recruit-requirements td {
    width: auto !important;
  }
}
main#sub.is-recruit .recruit-entry-wrap > .entry-form-lead {
  overflow-wrap: anywhere;
  word-break: break-word;
}
main#sub.is-recruit {
  /* 採用エントリー：本番 WP theme の contact-form / contact.css に合わせた見た目 */
}
main#sub.is-recruit .recruit-entry-wrap .contact-form {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  overflow-wrap: anywhere;
}
main#sub.is-recruit .recruit-entry-wrap .contact-form form {
  box-sizing: border-box;
  max-width: 100%;
}
main#sub.is-recruit .recruit-entry-wrap .contact-form {
  border-radius: 5px;
  border: 4px solid #fff;
  background-color: var(--white);
}
main#sub.is-recruit .recruit-entry-wrap .contact-form table.recruit-entry-sheet {
  border-collapse: collapse;
  margin: 0 0 50px;
  width: 100%;
  overflow: visible;
  border: 1px solid #a0abb6;
  background: var(--white);
}
main#sub.is-recruit .recruit-entry-wrap .contact-form table.recruit-entry-sheet::before {
  display: none;
  content: none;
}
main#sub.is-recruit .recruit-entry-wrap .contact-form table.recruit-entry-sheet tr {
  display: table-row;
}
main#sub.is-recruit .recruit-entry-wrap .contact-form table.recruit-entry-sheet th,
main#sub.is-recruit .recruit-entry-wrap .contact-form table.recruit-entry-sheet td {
  vertical-align: middle;
  display: table-cell;
  font-size: 16px;
  line-height: 1.6;
  border-bottom: 1px dashed #ccc;
  border-left: none;
  border-right: none;
}
main#sub.is-recruit .recruit-entry-wrap .contact-form table.recruit-entry-sheet tr:last-child th,
main#sub.is-recruit .recruit-entry-wrap .contact-form table.recruit-entry-sheet tr:last-child td {
  border-bottom: none;
}
main#sub.is-recruit .recruit-entry-wrap .contact-form table.recruit-entry-sheet th {
  padding: 2rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  text-align: left;
  width: 1%;
  white-space: nowrap;
  background: var(--light-brown);
  color: var(--base-color);
}
main#sub.is-recruit .recruit-entry-wrap .contact-form table.recruit-entry-sheet td {
  padding: 2rem;
  width: auto;
  background: var(--white);
  color: #555;
}
main#sub.is-recruit .recruit-entry-wrap .contact-form table.recruit-entry-sheet td a {
  display: inline;
}
main#sub.is-recruit .recruit-entry-wrap .contact-form table.recruit-entry-sheet th label {
  cursor: inherit;
  font-weight: inherit;
  font-size: inherit;
  font-family: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
  display: inline;
}
main#sub.is-recruit .recruit-entry-wrap .contact-form table.recruit-entry-sheet .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
main#sub.is-recruit .recruit-entry-wrap .contact-form table.recruit-entry-sheet .select-wrap {
  position: relative;
  max-width: 100%;
}
main#sub.is-recruit .recruit-entry-wrap .contact-form table.recruit-entry-sheet .select-wrap::after {
  content: "";
  border-style: solid;
  border-width: 8px 5px 0 5px;
  border-color: #c7b994 transparent transparent transparent;
  pointer-events: none;
  position: absolute;
  right: 15px;
  top: 22px;
  z-index: 1;
}
main#sub.is-recruit .recruit-entry-wrap .contact-form table.recruit-entry-sheet .reserve-date .time .select-wrap::after {
  right: 8px;
  top: 22px;
}
main#sub.is-recruit .recruit-entry-wrap .contact-form table.recruit-entry-sheet .zipcode {
  display: block;
  max-width: 100%;
}
main#sub.is-recruit .recruit-entry-wrap .contact-form table.recruit-entry-sheet .reserve-date {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  /* PC：日付＋時間帯を1行に */
}
@media all and (min-width: 897px) {
  main#sub.is-recruit .recruit-entry-wrap .contact-form table.recruit-entry-sheet .reserve-date {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }
}
main#sub.is-recruit .recruit-entry-wrap .contact-form table.recruit-entry-sheet .reserve-date .date {
  width: 100%;
  max-width: 100%;
  margin-right: 0;
  flex-shrink: 0;
}
@media all and (min-width: 897px) {
  main#sub.is-recruit .recruit-entry-wrap .contact-form table.recruit-entry-sheet .reserve-date .date {
    width: 35%;
    margin-right: 15px;
  }
}
main#sub.is-recruit .recruit-entry-wrap .contact-form table.recruit-entry-sheet .reserve-date .date input[type=text] {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
}
main#sub.is-recruit .recruit-entry-wrap .contact-form table.recruit-entry-sheet .reserve-date .time {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  min-width: 0;
  justify-content: center;
  gap: 0;
  /* SP：開始〜終了のセレクトを幅いっぱいに均等割り付け（窮屈な細さを解消） */
}
@media all and (max-width: 896px) {
  main#sub.is-recruit .recruit-entry-wrap .contact-form table.recruit-entry-sheet .reserve-date .time {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto minmax(0, 1fr) auto;
    column-gap: 8px;
    align-items: center;
    justify-items: stretch;
  }
}
@media all and (min-width: 897px) {
  main#sub.is-recruit .recruit-entry-wrap .contact-form table.recruit-entry-sheet .reserve-date .time {
    flex: 1 1 auto;
    flex-wrap: nowrap;
    width: auto;
    justify-content: flex-start;
  }
}
main#sub.is-recruit .recruit-entry-wrap .contact-form table.recruit-entry-sheet .reserve-date .time .select-wrap {
  flex: 0 1 auto;
  min-width: 0;
  width: auto;
  max-width: calc(50% - 36px);
}
@media all and (min-width: 897px) {
  main#sub.is-recruit .recruit-entry-wrap .contact-form table.recruit-entry-sheet .reserve-date .time .select-wrap {
    flex: none;
    width: 100px;
    max-width: none;
  }
}
@media all and (max-width: 896px) {
  main#sub.is-recruit .recruit-entry-wrap .contact-form table.recruit-entry-sheet .reserve-date .time .select-wrap {
    max-width: none;
    width: 100%;
  }
}
main#sub.is-recruit .recruit-entry-wrap .contact-form table.recruit-entry-sheet .reserve-date .time .select-wrap select {
  width: 100%;
  min-width: 0;
}
main#sub.is-recruit .recruit-entry-wrap .contact-form table.recruit-entry-sheet .reserve-date .time .text01 {
  flex-shrink: 0;
  margin: 0 0 0 10px;
  font-size: 16px;
  line-height: 1;
}
@media all and (max-width: 896px) {
  main#sub.is-recruit .recruit-entry-wrap .contact-form table.recruit-entry-sheet .reserve-date .time .text01 {
    margin-left: 0;
  }
}
main#sub.is-recruit .recruit-entry-wrap .contact-form table.recruit-entry-sheet .reserve-date .time .text02 {
  flex-shrink: 0;
  margin: 0 15px;
  font-size: 16px;
  line-height: 1;
}
@media all and (max-width: 896px) {
  main#sub.is-recruit .recruit-entry-wrap .contact-form table.recruit-entry-sheet .reserve-date .time .text02 {
    margin: 0;
  }
}
main#sub.is-recruit .recruit-entry-wrap .contact-form .hissu {
  display: inline-block;
  background: #809eb3;
  border-radius: 3px;
  color: #fff;
  font-size: 10px;
  padding: 1px 8px;
  margin-left: 15px;
  vertical-align: 1px;
}
main#sub.is-recruit .recruit-entry-wrap .contact-form input[type=text],
main#sub.is-recruit .recruit-entry-wrap .contact-form input[type=email],
main#sub.is-recruit .recruit-entry-wrap .contact-form input[type=tel],
main#sub.is-recruit .recruit-entry-wrap .contact-form select,
main#sub.is-recruit .recruit-entry-wrap .contact-form textarea {
  appearance: none;
  margin: 0;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 50px;
  padding: 10px;
  border: none;
  border-radius: 3px;
  background: #fff;
  box-shadow: 0 0 10px rgba(54, 51, 43, 0.08);
  color: #333;
  font-size: 16px;
  font-family: inherit;
  box-sizing: border-box;
  transition: outline 0.2s;
}
main#sub.is-recruit .recruit-entry-wrap .contact-form input[type=text]:focus,
main#sub.is-recruit .recruit-entry-wrap .contact-form input[type=email]:focus,
main#sub.is-recruit .recruit-entry-wrap .contact-form input[type=tel]:focus,
main#sub.is-recruit .recruit-entry-wrap .contact-form select:focus,
main#sub.is-recruit .recruit-entry-wrap .contact-form textarea:focus {
  outline: 1px solid #809eb3;
}
main#sub.is-recruit .recruit-entry-wrap .contact-form textarea {
  height: 200px;
  min-height: 200px;
  resize: vertical;
}
main#sub.is-recruit .recruit-entry-wrap .contact-form {
  /* 本番 contact.css と同様（テーマと同一 data URI） */
}
main#sub.is-recruit .recruit-entry-wrap .contact-form .date.date-picker input[type=text] {
  background-repeat: no-repeat;
  background-position: left 15px center;
  background-size: 20px auto;
  padding-left: 50px;
  background-image: url("data:image/svg+xml;base64,PCEtLT94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPy0tPgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTguMS4xLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+Cgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9Il94MzJfIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDUxMiA1MTIiIHN0eWxlPSJ3aWR0aDogMjU2cHg7IGhlaWdodDogMjU2cHg7IG9wYWNpdHk6IDE7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4KCS5zdDB7ZmlsbDojODg4O30KPC9zdHlsZT4KPGc+Cgk8cGF0aCBjbGFzcz0ic3QwIiBkPSJNMTQ5LjE5MywxMDMuNTI1YzE1Ljk5NSwwLDI4Ljk2NC0xMi45NywyOC45NjQtMjguOTczVjI4Ljk2NEMxNzguMTU3LDEyLjk3LDE2NS4xODgsMCwxNDkuMTkzLDAKCQljLTE2LjAwMiwwLTI4Ljk3MywxMi45Ny0yOC45NzMsMjguOTY0djQ1LjU4OEMxMjAuMjIsOTAuNTU2LDEzMy4xOTEsMTAzLjUyNSwxNDkuMTkzLDEwMy41MjV6Ij48L3BhdGg+Cgk8cGF0aCBjbGFzcz0ic3QwIiBkPSJNMzYyLjgxNiwxMDMuNTI1YzE1Ljk5NCwwLDI4Ljk2NC0xMi45NywyOC45NjQtMjguOTczVjI4Ljk2NEMzOTEuNzgsMTIuOTcsMzc4LjgxLDAsMzYyLjgxNiwwCgkJYy0xNi4wMDMsMC0yOC45NzMsMTIuOTctMjguOTczLDI4Ljk2NHY0NS41ODhDMzMzLjg0Myw5MC41NTYsMzQ2LjgxMywxMDMuNTI1LDM2Mi44MTYsMTAzLjUyNXoiPjwvcGF0aD4KCTxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik00MzUuMTY0LDQxLjI4N2gtMTcuOTI1djMzLjI2NWMwLDMwLjAxNy0yNC40MTQsNTQuNDMyLTU0LjQyMiw1NC40MzJjLTMwLjAxOCwwLTU0LjQzMi0yNC40MTUtNTQuNDMyLTU0LjQzMgoJCVY0MS4yODdIMjAzLjYxNnYzMy4yNjVjMCwzMC4wMTctMjQuNDE1LDU0LjQzMi01NC40MjMsNTQuNDMyYy0zMC4wMTYsMC01NC40MzItMjQuNDE1LTU0LjQzMi01NC40MzJWNDEuMjg3SDc2LjgzNgoJCWMtMzguNTI4LDAtNjkuNzYzLDMxLjIzNS02OS43NjMsNjkuNzYzdjMzMS4xODdDNy4wNzMsNDgwLjc2NSwzOC4zMDksNTEyLDc2LjgzNiw1MTJoMzU4LjMyOAoJCWMzOC41MjgsMCw2OS43NjMtMzEuMjM1LDY5Ljc2My02OS43NjNWMTExLjA1QzUwNC45MjcsNzIuNTIyLDQ3My42OTIsNDEuMjg3LDQzNS4xNjQsNDEuMjg3eiBNNDcwLjk4Miw0NDIuMjM3CgkJYzAsMTkuNzQ4LTE2LjA2OSwzNS44MTgtMzUuODE4LDM1LjgxOEg3Ni44MzZjLTE5Ljc0OCwwLTM1LjgxOC0xNi4wNy0zNS44MTgtMzUuODE4VjE1NS4xMzhoNDI5Ljk2NFY0NDIuMjM3eiI+PC9wYXRoPgoJPHJlY3QgeD0iMTc1Ljg2MiIgeT0iMzg0LjAwMiIgY2xhc3M9InN0MCIgd2lkdGg9IjYyLjg1OSIgaGVpZ2h0PSI2Mi44NTkiPjwvcmVjdD4KCTxyZWN0IHg9IjE3NS44NjIiIHk9IjI4Ni41ODQiIGNsYXNzPSJzdDAiIHdpZHRoPSI2Mi44NTkiIGhlaWdodD0iNjIuODU5Ij48L3JlY3Q+Cgk8cmVjdCB4PSI3OC40NTMiIHk9IjM4NC4wMDIiIGNsYXNzPSJzdDAiIHdpZHRoPSI2Mi44NTEiIGhlaWdodD0iNjIuODU5Ij48L3JlY3Q+Cgk8cmVjdCB4PSI3OC40NTMiIHk9IjI4Ni41ODQiIGNsYXNzPSJzdDAiIHdpZHRoPSI2Mi44NTEiIGhlaWdodD0iNjIuODU5Ij48L3JlY3Q+Cgk8cmVjdCB4PSIzNzAuNjk3IiB5PSIxODkuMTc1IiBjbGFzcz0ic3QwIiB3aWR0aD0iNjIuODUxIiBoZWlnaHQ9IjYyLjg1MSI+PC9yZWN0PgoJPHJlY3QgeD0iMjczLjI4IiB5PSIxODkuMTc1IiBjbGFzcz0ic3QwIiB3aWR0aD0iNjIuODU5IiBoZWlnaHQ9IjYyLjg1MSI+PC9yZWN0PgoJPHJlY3QgeD0iMjczLjI4IiB5PSIyODYuNTg0IiBjbGFzcz0ic3QwIiB3aWR0aD0iNjIuODU5IiBoZWlnaHQ9IjYyLjg1OSI+PC9yZWN0PgoJPHJlY3QgeD0iMzcwLjY5NyIgeT0iMzg0LjAwMiIgY2xhc3M9InN0MCIgd2lkdGg9IjYyLjg1MSIgaGVpZ2h0PSI2Mi44NTkiPjwvcmVjdD4KCTxyZWN0IHg9IjM3MC42OTciIHk9IjI4Ni41ODQiIGNsYXNzPSJzdDAiIHdpZHRoPSI2Mi44NTEiIGhlaWdodD0iNjIuODU5Ij48L3JlY3Q+Cgk8cmVjdCB4PSIyNzMuMjgiIHk9IjM4NC4wMDIiIGNsYXNzPSJzdDAiIHdpZHRoPSI2Mi44NTkiIGhlaWdodD0iNjIuODU5Ij48L3JlY3Q+Cgk8cmVjdCB4PSIxNzUuODYyIiB5PSIxODkuMTc1IiBjbGFzcz0ic3QwIiB3aWR0aD0iNjIuODU5IiBoZWlnaHQ9IjYyLjg1MSI+PC9yZWN0PgoJPHJlY3QgeD0iNzguNDUzIiB5PSIxODkuMTc1IiBjbGFzcz0ic3QwIiB3aWR0aD0iNjIuODUxIiBoZWlnaHQ9IjYyLjg1MSI+PC9yZWN0Pgo8L2c+Cjwvc3ZnPgo=");
}
main#sub.is-recruit .recruit-entry-wrap .contact-form .submit-btn {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
main#sub.is-recruit .recruit-entry-wrap .contact-form .submit-btn [type=submit],
main#sub.is-recruit .recruit-entry-wrap .contact-form .submit-btn button[type=submit] {
  appearance: none;
  background: #809eb3;
  border: 1px solid #809eb3;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  border-radius: 0;
  outline: none;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  padding: 22px 40px;
  letter-spacing: 3px;
  transition: opacity 0.3s;
  width: 250px;
  max-width: 100%;
  box-sizing: border-box;
}
main#sub.is-recruit .recruit-entry-wrap .contact-form .submit-btn [type=submit]:hover,
main#sub.is-recruit .recruit-entry-wrap .contact-form .submit-btn button[type=submit]:hover {
  opacity: 0.7;
}
main#sub.is-recruit .recruit-entry-wrap .contact-form .note {
  font-size: 13px;
  color: #555;
  margin-top: 6px;
  line-height: 1.6;
}
main#sub.is-recruit {
  /* 本文のみ（.page-ttl の p / h1 には当てない） */
}
main#sub.is-recruit section:not([class]) p,
main#sub.is-recruit section:not([class]) dd,
main#sub.is-recruit section:not([class]) ul:not([class]) li,
main#sub.is-recruit section:not([class]) ol:not([class]) li {
  font-size: 15px;
  line-height: 2;
}

@media all and (max-width: 896px) {
  main#sub.is-recruit section:not([class]) p,
  main#sub.is-recruit section:not([class]) dd,
  main#sub.is-recruit section:not([class]) ul:not([class]) li,
  main#sub.is-recruit section:not([class]) ol:not([class]) li {
    font-size: 15px;
  }
  main#sub.is-recruit .recruit-entry-wrap .contact-form {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
  }
  main#sub.is-recruit .recruit-entry-wrap .contact-form table.recruit-entry-sheet {
    margin-bottom: 30px;
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  main#sub.is-recruit .recruit-entry-wrap .contact-form table.recruit-entry-sheet thead,
  main#sub.is-recruit .recruit-entry-wrap .contact-form table.recruit-entry-sheet tbody {
    display: block;
    width: 100%;
    max-width: 100%;
  }
  main#sub.is-recruit .recruit-entry-wrap .contact-form table.recruit-entry-sheet tr {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  main#sub.is-recruit .recruit-entry-wrap .contact-form table.recruit-entry-sheet th {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    min-width: 0;
    padding: 1.5rem 1.2rem 1rem;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    white-space: normal;
    background: var(--light-brown);
    color: var(--base-color);
    border-bottom: none;
  }
  main#sub.is-recruit .recruit-entry-wrap .contact-form table.recruit-entry-sheet td {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    min-width: 0;
    padding: 0 1.2rem 1.5rem;
    background: var(--white);
    border-bottom: 1px dashed #ccc;
  }
  main#sub.is-recruit .recruit-entry-wrap .contact-form table.recruit-entry-sheet tr:last-child td {
    border-bottom: none;
  }
  main#sub.is-recruit .recruit-entry-wrap .contact-form table.recruit-entry-sheet .select-wrap {
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
  }
  main#sub.is-recruit .recruit-entry-wrap .contact-form table.recruit-entry-sheet .reserve-date .time .select-wrap::after {
    top: 20px;
    right: 8px;
  }
  main#sub.is-recruit .recruit-entry-wrap .contact-form .submit-btn [type=submit],
  main#sub.is-recruit .recruit-entry-wrap .contact-form .submit-btn button[type=submit] {
    width: 100%;
    max-width: 250px;
    padding: 15px;
  }
}
/* フロー（番号＋画像＋説明） */
.flow-style03 {
  display: grid;
  gap: 40px;
}
.flow-style03 > li {
  display: grid;
  grid-template-columns: 70px 1fr;
  grid-gap: 50px;
  align-items: start;
  position: relative;
  min-height: 150px;
}
.flow-style03 > li::before {
  content: "";
  background-color: #3c5464;
  width: 1px;
  position: absolute;
  top: 60px;
  bottom: -40px;
  left: 30px;
}
.flow-style03 > li:last-child::before {
  bottom: 0;
}
.flow-style03 .flow-num {
  font-size: 25px;
  font-weight: 500;
  color: #fff;
  background-color: var(--gold);
  width: 60px;
  height: 60px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  letter-spacing: 0;
}
.flow-style03 .wrap {
  display: flex;
  flex-direction: row-reverse;
  gap: 50px;
}
.flow-style03 .flow-img {
  width: 45%;
}
.flow-style03 .flow-desc {
  flex: 1;
  padding-top: 0;
}
.flow-style03 .flow-ttl {
  font-size: 2rem;
  color: #333;
  font-weight: 700;
  margin-bottom: 15px;
}
@media (max-width: 800px) {
  .flow-style03 {
    gap: 40px;
  }
  .flow-style03 > li {
    grid-template-columns: 50px 1fr;
    grid-gap: 15px;
  }
  .flow-style03 > li::before {
    top: 50px;
    left: 25px;
  }
  .flow-style03 .flow-num {
    width: 50px;
    height: 50px;
    font-size: 25px;
  }
  .flow-style03 .wrap {
    flex-direction: column;
    gap: 15px;
  }
  .flow-style03 .flow-img {
    width: 100%;
  }
  .flow-style03 .flow-ttl {
    margin-bottom: 10px;
  }
}

/*# sourceMappingURL=sub.css.map */
