/* health-checkup.css — styles only for /health-checkup/ */

.dockbox {
  --dock-scale: clamp(140px, 30vw, 220px); /* ← 共通サイズ */
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "kihon gazo"
    "option option";
  gap: 0 1rem;
  margin-bottom: 2em;
}

.kihon-dock {
  grid-area: kihon;
  justify-self: end;
  display: flex;
  align-items: center;
}
.gazo-dock {
  grid-area: gazo;
  justify-self: start;
  display: flex;
  align-items: center;
}
.option {
  position: relative;
  grid-area: option;
  justify-content: center;
  display: flex;
  align-items: center;
  padding-top: 7rem;
  width: 50%;
  margin: 0 auto;
}
.kihon-dock img,
.gazo-dock img,
.option img {
  max-width: 211px;
  width: 100%;
  height: auto;
}

.option::before {
  content: "\f067";
  font-family: "Font Awesome 6 Free";
  font-weight: 900; /* solid */
  color: #193151;
  font-size: 6rem;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.dockbox p .title {
  background: #193151;
  color: #fff;
  border-radius: 10px;
  padding: 0.2em 0 0.4em;
  min-width: 8em;
  line-height: 1.2;
  text-align: center;
  display: flex;
  min-height: 3em;
  justify-content: center;
  align-items: center;
}

.kihon-dock .title {
}
.gazo-dock .title {
}
.dockbox .option .title {
  background: #92bb13;
}
.dockstyle-title {
  background: #193151;
  color: #fff;
  text-align: center;
  font-size: clamp(1.8rem, 1.2vw + 1rem, 2.1rem);
  font-weight: 700;
  border-radius: 10px;
  padding: 0.5em;
  margin-bottom: 0.5em;
}
.dockstyle-box {
  display: flex;
  gap: 3rem;
  background: #fefdf9;
  padding: clamp(1rem, 2.4vw, 2rem);
  margin-bottom: 2rem;
}
.dockstyle-pic {
  flex: 0 0 249px;
}
.dockstyle-pic img {
  width: 100%;
  max-width: 249px;
  height: auto;
}
.dockstyle-list {
  width: 100%;
}
.dockstyle-list > li {
  font-size: 2.1rem;
  color: #23426d;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.dockstyle-list > li::before {
  content: "◆";
}
.dockstyle-list > li:last-of-type {
  margin-bottom: 0;
}
.dockstyle-list > li .icon {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  margin-left: auto;
}
.dockstyle-list > li .icon img {
  width: 53px;
  height: auto;
}
.dockstyle-list > li .icon .plus {
  font-size: 1.4rem;
  font-weight: 800;
}

.concierge {
  max-width: 608px;
  width: 100%;
  margin: 0 auto 0;
}
.concierge h3 {
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.3;
  margin-bottom: 0.5em;
}
.concierge .contact {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}
.concierge .contact .label {

}
.concierge .contact .label img {
  max-width: clamp(150px, 44vw, 226px);
  width: 100%;
  height: auto;
}
.concierge .contact .tel {
  background: #193151;
  color: #fff;
  padding: 0;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: 3px;
  max-width: 10em;
  display: inline-block;
  text-align: center;
  width: 100%;
}
.concierge .contact .t {
  color: #fff;
}
.concierge .contact .t a {
  color: #fff;
}
.concierge .staff {
  display: flex;
  justify-content: space-between;
  margin: 1em 0 clamp(2em, 6.7vw, 4em);
  gap: 1rem;
  align-items: flex-end;
}
.concierge .staff > span {
  flex: 0 1 auto;
}
.concierge .staff > span img {
  max-width: 187px;
  width: 100%;
  height: auto;
}

.osusume-box {
  background: #f9f7f1;
  border-top: 1px solid transparent;
  margin-bottom: 3em;
}
.osusume-title {
  text-align: center;
  margin-top: -30px;
}
.osusume-title > span {
  position: relative;
  display: inline-block;
  color: #022161;
  border: 4px solid #4c9b98;
  font-size: clamp(1.9rem, 1.7vw + 1rem, 2.2rem);
  text-align: center;
  font-weight: 800;
  padding: 0.5em 1.5em;
  background: #fff;
  margin-bottom: 1rem;
}
.osusume-title > span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -30px;
  transform: translateX(-50%);
  width: 32px;
  height: 30px;
  background: url("/wp/wp-content/themes/moto2025-child-kit-plus/assets/hc-osusume-arrow-bottom.png") no-repeat center / contain;
}


/* 基本トークン（縮みを同期） */
.dock-list {
  --pad: clamp(12px, 2vw, 15px);
}

/* 2カラム → 860pxで1カラム */
.dock-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 3rem 0 0;
  padding: 0 clamp(1rem, 2.3vw, 2rem) 2rem;
}
.dock-group {
  display: grid;
  grid-template-rows: auto 1fr;  /* タイトル高さは自動、本文は余白を食う＝同高 */
}
.dock-group dt > span {
  background: #022161;
  color: #fff;
  border: 1px solid #022161;
  border-bottom: 0 none;
  font-size: 1.9rem;
  padding: 0.2em 1.5em;
  display: inline-block;
  font-weight: 700;
  min-width: 10.5em;
  text-align: center;
}
.dock-group.seikatsu dt > span {
  background: #fff;
  color: #022161;
}
.dock-group dd {
  margin: 0;
  padding: var(--pad) calc(var(--pad) * 1.2);
  border: 1px solid #022161;
  background: #fff;
}
.dock-group.dock-a dd {
  border-right: 0 none;
}
.dock-group ul {
}
.dock-group li {
  position: relative;
  padding-left: 1.2em;
  font-size: 1.6rem;
}
.dock-group.seikatsu li {
  margin-bottom: 0.5em;
}
.dock-group li::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
}
@media (max-width: 860px) {
/*  .dock-list { grid-template-columns: 1fr; } */
}

.price-wrap {
  margin: 0 clamp(1rem, 2.3vw, 2rem) 2rem;
}
.price-list {
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
}
.price-list > li {
  position: relative;
  background: #022161;
  border-radius: 10px;
  padding: 2rem;
  flex: 1 1 50%;
  min-height: 330px;
}
.price-list > li a {
  display: block;
/*  pointer-events: none;*/
}
.price-list > li a::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 2px solid #fff;
  border-radius: 8px;
  opacity: 1;
  pointer-events: none; 
}
.price-title {
  display: block;
  color: #fff;
  font-size: 2.3rem;
  line-height: 1.2;
  text-align: center;
  border-bottom: 2px dotted #fff;
  padding-bottom: 0.5em;
  margin-bottom: 0.6em;
}
.price-title .line {
  text-underline-offset: 5px;
  text-decoration-line: underline;
  text-decoration-color: #ffd400;
  text-decoration-style: solid;
  text-decoration-thickness: 2px;
}
.price-title .course {
  display: inline-block;
  text-decoration: inherit;
  text-decoration-color: #ffd400;
}
.price-title .price {
  font-size: 4rem;
  font-weight: 700;
}
.price-title .osusume {
  font-size: 2.5rem;
}
.price-desc {
  display: block;
  color: #fff;
  padding: 0 1rem 10rem;
  text-align: center;
  word-break: unset;
  font-size: 1.6rem;
}
.kochira-btn {
  display: block;
  background: #fff;
  color: #022161;
  text-align: center;
  font-size: clamp(1.6rem, 1.3vw + 1rem, 2.1rem);
  position: absolute;
  bottom: 2rem;
  margin: 0 auto;
  width: 85%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px;
  padding: 0.5em;
}
.kochira-btn .fa-circle-chevron-right {
  color: #022161;
  padding-left: 0.5em;
}

.ordermade-title {
  margin-bottom: clamp(0.5em, 2.1vw, 1em);
}
.ordermade-title > span {
  color: #022161;
  font-size: clamp(2.2rem, 1.7vw + 1rem, 2.6rem);
  font-weight: 700;
  line-height: 1.3;
}

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 2rem;
}
.price-table {
  --c-row-odd: #f2f4f6;
  --c-border: #e4e7ea;
  --col-gap: 3px;
  width: 100%;
  border-collapse: separate;         /* 必須 */
  border-spacing: var(--col-gap) 0;  /* 横間隔 */
  background: #fff;                  /* 空白の色 */
  border: none;
  margin: 0.6rem 0 1.2rem;
  font-size: clamp(1.4rem, 1vw + 1rem, 1.6rem);
  line-height: 1.5;
}
.price-table thead th {
  background: #0e2e52;
  color: #fff;
  text-align: center;
  padding: 0.4em 0.9em;
  white-space: nowrap;
  font-size: clamp(1.5rem, 1vw + 1rem, 1.8rem);
}
.gazo-tbl .price-table thead th {
  background: #753244;
}
.option-tbl .price-table thead th {
  border: 2px solid #6b7da1;
  color: #111;
  background: #fff;
}
.price-table th[scope="row"],
.price-table td {
  padding: 0.3em 0.9em;
  background: #fff;
}
.price-table tbody tr:nth-child(odd) th[scope="row"],
.price-table tbody tr:nth-child(odd) td {
  background: var(--c-row-odd);
}
.price-table th[scope="row"] {
  text-align: left;
}
.price-table td {
  text-align: right;
  white-space: nowrap;
}
.kihon-tbl .col-item { width: auto; }
.kihon-tbl .col-price { width: 330px; }
.gazo-tbl .col-item { width: auto; }
.gazo-tbl .col-price { width: calc(140px - var(--col-gap)); }
.gazo-tbl .col-set { width: 190px; }
.option-tbl .col-item { width: auto; }
.option-tbl .col-price { width: 330px; }

.otoku-banner {
}
.otoku-banner a {
  display: block;
  background: url(/wp/wp-content/themes/moto2025-child-kit-plus/assets/hc-otoku-banner-960.png) no-repeat 0 0;
  height: 0;
  padding-top: 15.3%;
  margin-bottom: 3em;
  text-indent: -9999px;
  background-size: contain;
}

.dockshurui-box {
  padding-bottom: 0.5em;
  margin-bottom: 2em;
}
.dockshurui-title-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 0.6em;
}
/*
.dockshurui-title {
  background: #92bb13;
  display: inline-block;
  color: #fff;
  padding: 0.3em;
  font-weight: bold;
  min-width: 8em;
  text-align: center;
  margin-right: 1em;
}
*/
.dockshurui-title {
  background: #022161;
  display: flex;
  color: #fff;
  padding: 0.3em 1em;
  font-weight: bold;
  min-width: 8em;
  margin-right: 1em;
  min-height: 3em;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  line-height: 1;
}
.mitsukaru {

}
.dwibs .dockshurui-title-wrap {
  flex-wrap: wrap;
}
.dwibs .dockshurui-title {
  font-size: clamp(1.8rem, 1.3vw + 1rem, 2.2rem);
  margin-bottom: 0.5em;
}
.dwibs .mitsukaru {
  color: #022161;
  font-size: 1.8rem;
  margin-bottom: 1em;
}
.dwibs-karada {
  display: flex;
  margin-bottom: 2em;
}
.dwibs-karada > li {
  position: relative;
  padding-top: 10%;
}
.dwibs-karada > li .icon {
  position: absolute;
  top: 0;
  left: 0;
}
.dwibs-karada > li .icon img {
}
.dwibs-karada > li .karada {
}
.dwibs-karada > li .karada img {
  max-width: 487px;
  width: 100%;
  height: auto;
}

.konnakata-wrap {
  background: url(/wp/wp-content/themes/moto2025-child-kit-plus/assets/hc-dock-tobu.png) no-repeat 50% 0;
  margin-bottom: 0.5em;
  min-height: 90px;
  background-size: 250px;
  padding-top: 250px;
}
.konnakata-wrap.c02 {
  background-image: url(/wp/wp-content/themes/moto2025-child-kit-plus/assets/hc-dock-nyusen.png);
}
.konnakata-wrap.c03 {
  background-image: url(/wp/wp-content/themes/moto2025-child-kit-plus/assets/hc-dock-shikyu.png);
}
.konnakata-wrap.c04 {
  background-image: url(/wp-content/themes/tcmmc/img/hoshasen/icon_seikei.png?d=2507);
}
.konnakata-wrap.c05 {
  background-image: url(/wp-content/themes/tcmmc/img/hoshasen/icon_zenshin.png?d=2507);
}
.konnakata-wrap.c06 {
  background-image: url(/wp-content/themes/tcmmc/img/hoshasen/icon_kyobu.png?d=2507);
}
.konnakata-wrap.c07 {
  background-image: url(/wp/wp-content/themes/moto2025-child-kit-plus/assets/hc-dock-fukubu.png);
}
.konnakata-wrap.c08 {
  background-image: url(/wp/wp-content/themes/moto2025-child-kit-plus/assets/hc-dock-zenritsusen.png);
}
.konnakata {
  color: #92bb13;
  font-weight: bold;
  margin-bottom: 0.5em;
}
.konnakata-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em 1em;
}
.konnakata-list > li {
/*  width: calc(50% - 1em); */
  display: flex;
  align-items: center;
}
.konnakata-list > li::before {
  background: url(/wp/wp-content/themes/moto2025-child-kit-plus/assets/checkbox_on.png) no-repeat;
  content: "　";
  width: 15px;
  height: 16px;
  margin-right: 0.2em;
}

.dockryokin-list {
  margin-bottom: 0.5em;
}
.dockryokin-list > li:first-child {
  padding-top: 0.5em;
}
.dockryokin-list > li {
  color: #022161;
  border-bottom: 1px dotted #022161;
  padding-bottom: 0.3em;
  margin-bottom: 0.3em;
  font-size: 1.6rem;
}
.inner-list {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
  gap: 0 2em;
}
.inner-list > li {
  width: calc(50% - 1em);
  display: flex;
  justify-content: space-between;
  color: #022161;
  align-items: center;
}
.dockryokin-list .price {
  padding-left: 0.5em;
  font-weight: bold;
  font-size: 1.7rem;
}
.button-group {
  display: flex;
  gap: 0 2em;
}
.button-group p {
  flex: 1 1 50%;
  text-align: center;
}
.button-group p a {
  display: block;
  background: #ff4751;
  color: #fff;
  font-weight: bold;
  font-size: 1.6rem;
  padding: 0.8rem 0.8rem;
  border-radius: 10px;
}
.button-group p .fa-comment-medical {
  font-size: 2rem;
  color: #fff;
  margin-left: 5px;
}
.dockyoyaku-bottom {
}
.button-group p.dockyoyaku-bottom a {
  background: #91125F;
  background: linear-gradient(180deg, rgba(145, 18, 95, 1) 0%, rgba(174, 73, 136, 1) 100%);
}
.sestyoyaku-bottom {
}
.button-group p.setyoyaku-bottom a {
  background: #3F75B6;
  background: linear-gradient(180deg, rgba(63, 117, 182, 1) 0%, rgba(110, 134, 201, 1) 100%);
  letter-spacing: -1px;
}
.osusume-option {
  display: inline-block;
  color: #fff;
  background: #022161;
  line-height: 1;
  padding: 0.2em;
  font-size: 1.6rem;
}

.dockstyle-title.kenshin {
  font-size: clamp(1.8rem, 1.8vw + 1rem, 2.6rem);
}
.kenshin-box {
  background: #fcfcf5;
  margin-bottom: 2em;
}
.kenshin-sec-title {
  color: #23426d;
  text-align: center;
  font-weight: 600;
  font-size: clamp(1.9rem, 1.5vw + 1rem, 2.3rem);
  background: #f9f9d8;
  padding: 0.5em 0.3em;
  border-bottom: 5px double #23426d;
}
.kenshin-sec-title > span {
  font-size: 1.5rem;
  display: block;
}
.kenshin-inner {
  padding: clamp(0.5em, 2.7vw, 1.5em);
}
dl.kenshin-list {
  display: flex;
  gap: 1em;
  margin-bottom: 1.0em;
}
.kenshin-list > div {
  flex: 1 0 50%;
}
.kenshin-list-left {
}
.kenshin-list-right {
}
dl.kenshin-list dt {
  background: #23426d;
  color: #fff;
  font-weight: 600;
  max-width: 11em;
  text-align: center;
  font-size: 1.8rem;
  padding: 0.4em 0.3em;
  margin-bottom: 0.5em;
}
dl.kenshin-list dd {
}
.kenshin-inner-list {
}
.kenshin-inner-list > li {
  display: flex;
  color: #23426d;
  font-size: clamp(1.7rem, 1.2vw + 1rem, 1.8rem);
  padding-left: 60px;
  align-items: center;
  min-height: 47px;
  font-weight: 700;
  position: relative;
  left: 0;
  line-height: 1;
}
.kenshin-inner-list > li::before {
  content: "　";
  background: url(/wp/wp-content/themes/moto2025-child-kit-plus/assets/hc-kenshin-list-icon-sprite.png) no-repeat 0 0;
  width: 40px;
  height: 43px;
  position: absolute;
  left: 0;
}
.kenshin-list-left .kenshin-inner-list > li:nth-of-type(2)::before {
  background-position: 0 -43px;
}
.kenshin-list-left .kenshin-inner-list > li:nth-of-type(3)::before {
  background-position: 0 -86px;
}
.kenshin-list-left .kenshin-inner-list > li:nth-of-type(4)::before {
  background-position: 0 -129px;
}
.kenshin-list-left .kenshin-inner-list > li:nth-of-type(5)::before {
  background-position: 0 -172px;
}
.kenshin-list-left .kenshin-inner-list > li:nth-of-type(6)::before {
  background-position: 0 -215px;
}
.kenshin-list-left .kenshin-inner-list > li:nth-of-type(7)::before {
  background-position: 0 -258px;
}
.kenshin-list-right .kenshin-inner-list > li:nth-of-type(1)::before {
  background-position: -40px 0;
}
.kenshin-list-right .kenshin-inner-list > li:nth-of-type(2)::before {
  background-position: -40px -43px;
}
.kenshin-list-right .kenshin-inner-list > li:nth-of-type(3)::before {
  background-position: -40px -86px;
}
.kenshin-list-right .kenshin-inner-list > li:nth-of-type(4)::before {
  background-position: -40px -129px;
}
.kenshin-inner-list > li span {
  font-weight: 700;
}
.kenshin-inner-list > li.kecchushishitsu span:first-child {
  white-space: nowrap;
}

.chuijiko {
  font-size: clamp(1.8rem, 1.1vw + 1rem, 2rem);
  margin-bottom: 0.5em;
}
.chuijiko span {
  font-size: 3rem;
  padding-right: 0.2em;
}
.chuijiko-list-top {
  margin-bottom: 0.5em;
}
.chuijiko-list-top .t a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.chuijiko-list-top > li {
  color: #23426d;
  font-size: clamp(1.7rem, 1.8vw + 1rem, 1.9rem);
  position: relative;
  padding-left: 1em;
  line-height: 1.6;
}
.chuijiko-list-top > li::before {
  content: "◆";
  color: #23426d;
  font-size: 1.9rem;
  position: absolute;
  left: 0;
}
.chuijiko-list-bottom {
  margin-bottom: clamp(1em, 4vw, 2em);
}
.chuijiko-list-bottom > li {
  position: relative;
  padding-left: 1em;
  line-height: 1.6;
}
.chuijiko-list-bottom > li::before {
  content: "◆";
  position: absolute;
  left: 0;
}
.kenshin-yoyaku {
}
.kenshin-yoyaku br {
  display: none;
}
.kenshin-yoyaku a {
  background: #23426D;
  background: linear-gradient(180deg, rgba(35, 66, 109, 1) 0%, rgba(91, 115, 146, 1) 100%);
  display: flex;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  justify-content: center;
  align-items: center;
  font-size: clamp(1.8rem, 1.5vw + 1rem, 2.2rem);
  padding: 0.6em 1em;
  border-radius: 10px;
}
.kenshin-yoyaku a .fa-comment-medical {
  color: #fff;
  margin-left: 0.25em;
  font-size: 3rem;
}

.tokutei .kenshin-inner {
  padding-top: 0.5em;
}
.tokutei-list {
}
.tokutei-list > li {
  position: relative;
  min-height: 5em;
  display: flex;
  align-items: center;
  color: #21335a;
  padding: 0 0 1em 80px;
  font-size: clamp(1.7rem, 1vw + 1rem , 1.8rem);
}
.tokutei-list > li::before {
  content: "　";
  background: url(/wp/wp-content/themes/moto2025-child-kit-plus/assets/hc-tokutei-list-icon-sprite.png) no-repeat 50% 0;
  width: 66px;
  height: 66px;
  margin-right: 1rem;
  display: inline-block;
  position: absolute;
  left: 0;
}
.tokutei-list > li:nth-of-type(2)::before {
  background-position: 0 -66px;
}
.tokutei-list > li:nth-of-type(3)::before {
  background-position: 0 -132px;
}
.tokutei-list > li:nth-of-type(4)::before {
  background-position: 0 -198px;
}
.tokutei-list > li:nth-of-type(5)::before {
  background-position: 0 -264px;
}
.tokutei-list > li:nth-of-type(6)::before {
  background-position: 0 -330px;
}
.shaho-tokutei-wrap {
  text-align: center;
}
.shaho-tokutei {
  border: 2px solid #a12e45;
  color: #a12e45;
  text-align: center;
  display: inline-block;
  font-size: clamp(1.7rem, 1.5vw + 1rem, 2.2rem);
  border-radius: 10px;
  padding: 0.5em clamp(1em, 4.9vw, 2em);
  line-height: 1.2;
}

.corp-checkup {
  background: url(/wp/wp-content/themes/moto2025-child-kit-plus/assets/hc-kigyo-pic1.png) no-repeat 0 0;
  padding-left: 140px;
}
.corp-text {
  line-height: 1.7;
}
.hc-kigyo-pic2 img {
  float: right;
  margin: 0 0 0 1em;
  width: clamp(120px, 18vw, 163px);
}
.corp-checkup .highlight {
  color: #a12e45;
  font-size: 1.9rem;
  font-weight: 700;
  margin-top: 0.5em;
}

.tantou {
  margin: 1.5em 0 2em;
  text-align: center;
}
.tantou p {
  color: #21335a;
  display: inline-flex;
  font-size: 2.4rem;
  font-weight: 700;
  border: 1px solid #21335a;
  padding: 0.2em 1em;
  align-items: center;
  gap: 1em;
}
.tantou p .t a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.tantou p > span.horikoshi {
  color: #21335a;
  font-size: 1.6rem;
}

dl.torihiki-list {
  display: flex;
  gap: 1em;
  margin-bottom: 1.0em;
}
.torihiki-list > div {
  flex: 1 0 50%;
}
.torihiki-list .torihiki-left {
}
.torihiki-list .torihiki-right {
}
.torihiki-list > div dt {
}
.torihiki-list > div dt {
  background: #21335a;
  color: #fff;
  display: inline-block;
  padding: 0.4em 1.5em;
  margin-bottom: 1em;
  font-size: 1.8rem;
}
.torihiki-list > div dd ul {
}
.torihiki-list > div dd ul > li {
  color: #21335a;
  display: inline-block;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.torihiki-list > div dd ul > li::after {
  content: "　";
}
.torihiki-list > div dd ul > li:last-of-type::after {
  content: "";
}



@media (max-width: 991.98px) {


}

@media (max-width: 859.98px) {


}

@media (max-width: 767.98px) {


  .kihon-dock {
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
  }
  .gazo-dock {
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
  }
  .option {
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 5rem;
  }
  /* 共通の縮み値を全員に適用 */
  .kihon-dock img,
  .gazo-dock img,
  .option img {
    width: var(--dock-scale);
    height: auto;
  }
  .option::before {
    top: -20px;
  }

  .dockstyle-box {
    flex-wrap: wrap;
  }
  .dockstyle-pic {
    flex: 0 0 auto;
    margin: 0 auto;
  }
  .dockstyle-list > li {
    font-size: clamp(1.7rem, 1.5vw + 1rem, 2.1rem);
  }
  .dockstyle-list > li .icon img {
    width: clamp(30px, 8vw, 53px);
    height: auto;
  }

  .dwibs-karada {
    justify-content: center;
  }
  .dwibs-karada {
    flex-wrap: wrap;
  }

  .inner-list > li {
    width: 100%;
    align-items: flex-start;
  }
  .inner-list > li:nth-of-type(2) {
    padding-left:1.5em;
  }
  .button-group {
    gap: 1rem 0;
    flex-wrap: wrap;
    justify-content: center;
  }
  .button-group p {
    flex: 0 1 100%;
    text-align: center;
    max-width: 450px;
  }

  .dockshurui-title-wrap {
    flex-wrap: wrap;
  }
  .dockshurui-title {
    padding: 0.2em 1em;
    min-width: auto;
    margin-right: 0;
    font-size: 1.8rem;
    width: 100%;
    line-height: 1.1;
  }
  .mitsukaru {
    margin: 0.5em 0;
  }

  dl.kenshin-list {
    gap: 1em 0;
    flex-wrap: wrap;
  }
  .kenshin-list > div {
    flex: 1 1 100%;
  }
  dl.kenshin-list dt {
    max-width: none;
    font-size: 1.8rem;
    width: 100%;
  }
  .kenshin-inner-list > li.kecchushishitsu {
    flex-wrap: wrap;
  }
  .kenshin-inner-list > li.kecchushishitsu span:first-child {
    white-space: normal;
    width: 100%;
  }
  .kenshin-yoyaku br {
    display: inline;
  }

  .corp-checkup {
    background-position: 50% 0;
    padding-top: 140px;
    padding-left: 0;
    background-size: 74px;
  }

  dl.torihiki-list {
    flex-wrap: wrap;
  }
  .torihiki-list > div {
    flex: 1 1 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .torihiki-list > div dt {
    width: 13em;
    text-align: center;
  }
  .torihiki-list > div dd {
    text-align: center;
  }


}

@media (max-width: 689.98px) {

  .otoku-banner a {
    background-image: url(/wp/wp-content/themes/moto2025-child-kit-plus/assets/hc-otoku-banner-690.png);
    padding-top: 32.3%;
  }

}

@media (max-width: 657.98px) {

  .concierge h3 {
    font-size: clamp(2.3rem, 4.6vw + 1rem, 4rem);
  }

  .gazo-tbl .price-table {
    width: 740px;
  }
  .kihon-tbl .price-table .col-item,
  .option-tbl .price-table .col-item {
    width: 40rem;
  }
  .kihon-tbl .price-table .col-price,
  .option-tbl .price-table .col-price {
    width: auto;
  }

  .dock-list {
    grid-template-columns: 1fr;
    gap: 1em 0;
  }
  .dock-group.dock-a dd {
    border-right: 1px solid #022161;
  }

  .price-list {
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .price-desc {
    text-align: left;
  }

}

@media (max-width: 575.98px) {

  .concierge .contact {
    flex-wrap: wrap;
    gap: 0;
  }
  .concierge h3 br {
    display: none;
  }
  .concierge .contact .tel {
    font-size: clamp(3rem, 4.5vw + 1rem, 3.5rem);
    max-width: none;
    margin: 1rem 0 0;
  }

  .corp-checkup .highlight br {
    display: none;
  }

}

@media (max-width: 474.98px) {

  .otoku-banner a {
    background-image: url(/wp/wp-content/themes/moto2025-child-kit-plus/assets/hc-otoku-banner-326.png);
    padding-top: 100%; /*64.5%*/
    background-position: 50% 50%;
  }

  .kihon-tbl .price-table,
  .option-tbl .price-table {
    width: 480px;
  }

  .dwibs-karada > li .icon img {
    width: clamp(70px, 25vw, 115px);
    height: auto;
  }

  .konnakata-list > li {
    font-size: 1.6rem;
  }

  .tantou p {
    gap: 0 1em;
    flex-wrap: wrap;
    justify-content: center;
  }
  .tantou p > span {
    flex: 0 0 100%;
  }

}

@media (max-width: 374.98px) { /* 375 */

  .dockstyle-list > li .icon {
    display: none;
  }

}

