@charset "UTF-8";
:root {
  --ff-jp: "BIZ UDGothic", sans-serif;
  --ff-en: "Fredoka", sans-serif;
  --ff-num: "Quicksand", sans-serif;
  --white-color: #ffffff;
  --orange-color: #F39953;
  --yellow-color: #FFD151;
  --light-yellow-color: #FFFCF3;
  --red-color: #FF2D2D;
  --green-color: #6CBB5A;
  --blue-color: #024EA3;
  --light-blue-color: #9EE5FD;
  --btn-blue-color: #1EB9EE;
  --bg-blue-color: #E0F7FF;
  --bg-beige-color: #F3E7CA;
  --bg-sand-color: #EDE6D6;
  --bg-sea-color: #46B0E0;
  --main-color: #012E60;
  --footer-color: #013774;
  --copyright-color: #011F40;
  --text-color: #3B3B3B;
  --under-dot-color: #F6EE63;
  --line-color: #06C755;
  --shadow-color: #00000040;
}

html {
  font-size: 100%;
  font-family: var(--ff-jp);
  color: var(--text-color);
  letter-spacing: 0.04em;
}
@media (max-width: 500px) {
  html {
    font-size: 87.5%;
  }
}

body.is-fixed {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

main {
  overflow-x: hidden;
  line-height: 1.8;
}

a {
  text-decoration: none;
  color: var(--text-color);
}

img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}

li {
  list-style: none;
}

address {
  font-style: normal;
}

h2 {
  font-size: 2.5rem;
  color: var(--main-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1em;
  gap: 16px;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  h2 {
    font-size: 2rem;
    gap: 12px;
  }
}
@media (max-width: 500px) {
  h2 {
    font-size: 1.72rem;
    gap: 10px;
    margin-bottom: 40px;
  }
}
h2 span {
  font-size: 1.25rem;
  font-family: var(--ff-en);
  color: var(--blue-color);
}
@media (max-width: 768px) {
  h2 span {
    font-size: 1rem;
  }
}
@media (max-width: 500px) {
  h2 span {
    font-size: 0.857rem;
  }
}

h3 {
  font-size: clamp(1.75rem, 28px + 4 * (100vw - 768px) / 512, 2rem);
  color: var(--white-color);
}
@media (max-width: 650px) {
  h3 {
    margin-left: 38px;
  }
}
@media (max-width: 500px) {
  h3 {
    font-size: 1.4rem;
  }
}

h4 {
  font-size: 1.125rem;
  font-weight: bold;
}

h5 {
  font-size: 1.125rem;
  font-weight: normal;
  color: var(--white-color);
}

.num,
.day {
  font-family: var(--ff-num);
}

.nav-pc {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 500px) {
  .nav-pc {
    display: none;
  }
}
.nav-sp {
  display: none;
}
@media (max-width: 500px) {
  .nav-sp {
    display: block;
  }
}
.nav-sp .inner {
  display: flex;
  align-items: flex-start;
}

.wrapper {
  max-width: 1220px;
  margin-inline: auto;
  padding-inline: 4%;
}

.title {
  position: relative;
  z-index: 1;
}
.title .starfish {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
.title .starfish li {
  width: 20px;
}
@media (max-width: 500px) {
  .title .starfish li {
    width: 10px;
  }
}
.title .starfish li:nth-child(2), .title .starfish li:nth-child(4) {
  transform: translateY(-10px);
}
@media (max-width: 500px) {
  .title .starfish li:nth-child(2), .title .starfish li:nth-child(4) {
    transform: translateY(-5px);
  }
}

.under-dot {
  border-bottom: 5px dotted var(--under-dot-color);
  font-weight: bold;
}

.btn {
  padding: initial;
  border: initial;
  line-height: initial;
}
.btn a {
  display: inline-block;
  border-radius: 50px;
  padding: 12.5px 80px 12.5px 25px;
  color: var(--white-color);
  font-weight: bold;
  position: relative;
  opacity: 1;
  transition: all 0.5s ease;
}
@media (max-width: 500px) {
  .btn a {
    padding: 12.5px 70px 12.5px 25px;
  }
}
.btn a .circle {
  display: inline-block;
  width: 34px;
  height: 34px;
  background-color: var(--white-color);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  transition: all 0.5s ease;
}
.btn a .arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 1px;
  border-radius: 5px;
}
.btn a .arrow::before {
  content: "→";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.btn a:hover {
  opacity: 0.7;
}
.btn a:hover .circle {
  right: 5px;
}

.fadein {
  opacity: 0;
  transform: translateY(10px);
  transition: all 1s ease;
}

.wave-top .pc, .wave-bottom .pc {
  display: block;
}
@media (max-width: 768px) {
  .wave-top .pc, .wave-bottom .pc {
    display: none;
  }
}
@media (max-width: 500px) {
  .wave-top .pc, .wave-bottom .pc {
    display: none;
  }
}
.wave-top .tb, .wave-bottom .tb {
  display: none;
}
@media (max-width: 768px) {
  .wave-top .tb, .wave-bottom .tb {
    display: block;
  }
}
@media (max-width: 500px) {
  .wave-top .tb, .wave-bottom .tb {
    display: none;
  }
}
.wave-top .sp, .wave-bottom .sp {
  display: none;
}
@media (max-width: 768px) {
  .wave-top .sp, .wave-bottom .sp {
    display: none;
  }
}
@media (max-width: 500px) {
  .wave-top .sp, .wave-bottom .sp {
    display: block;
  }
}

.weekdays,
.weekend {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.125rem;
}
@media (max-width: 500px) {
  .weekdays,
.weekend {
    font-size: 1rem;
  }
}
.weekdays img,
.weekend img {
  vertical-align: initial;
}
.weekdays tr,
.weekend tr {
  height: 38px;
  padding-block: 5px;
}
.weekdays tr:first-child,
.weekend tr:first-child {
  background-color: var(--blue-color);
  color: var(--white-color);
}
.weekdays tr:first-child th:first-child,
.weekend tr:first-child th:first-child {
  border-radius: 20px 0 0 0;
}
.weekdays tr:first-child th:last-child,
.weekend tr:first-child th:last-child {
  border-radius: 0 20px 0 0;
}
.weekdays tr:last-child th:first-child,
.weekend tr:last-child th:first-child {
  border-radius: 0 0 0 20px;
}
.weekdays tr:last-child td:last-child,
.weekend tr:last-child td:last-child {
  border-radius: 0 0 20px 0;
}
.weekdays tr:not(:first-child),
.weekend tr:not(:first-child) {
  background-color: var(--white-color);
}
.weekdays tr:not(:first-child) th,
.weekend tr:not(:first-child) th {
  color: var(--blue-color);
  padding-left: 7px;
  font-family: var(--ff-num);
  font-weight: 600;
}
.weekdays tr th,
.weekdays tr td,
.weekend tr th,
.weekend tr td {
  padding-block: 7px;
}
.weekdays tr td,
.weekend tr td {
  text-align: center;
}
.weekdays .hours-icon,
.weekend .hours-icon {
  width: 19px;
  margin-inline: auto;
}
@media (max-width: 500px) {
  .weekdays .hours-icon,
.weekend .hours-icon {
    width: 14px;
  }
}

.weekdays tr:not(:nth-child(3)) th {
  line-height: 1.3;
}
.weekdays th:first-child {
  width: 30%;
}
.weekdays th:not(:first-child) {
  width: 14%;
}

.weekend {
  margin-block: 20px;
}
@media (max-width: 500px) {
  .weekend tr:first-child th {
    font-size: 0.9rem;
  }
}
.weekend tr:nth-child(2) th {
  line-height: 1.3;
}
.weekend th:first-child {
  width: 30%;
}
.weekend th:not(:first-child) {
  width: 23.3333333333%;
  text-wrap: nowrap;
}

.last-reception {
  font-weight: bold;
}

.hours-icon {
  display: inline-block;
  width: 16px;
}
@media (max-width: 500px) {
  .hours-icon {
    width: 14px;
  }
}
.hours-text-top {
  font-weight: bold;
}

.icon-explanation {
  display: flex;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1em;
}
@media (max-width: 500px) {
  .icon-explanation {
    font-size: 1rem;
  }
}
.icon-explanation:not(:first-of-type) {
  margin-top: 10px;
}
.icon-explanation:last-of-type {
  margin-bottom: 20px;
}
.icon-explanation dt {
  width: 60px;
  text-align: right;
  color: var(--green-color);
}

.sand-bg {
  background-color: var(--bg-sand-color);
  position: relative;
}
.sand-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/sand2.jpg);
  background-size: contain;
  background-repeat: repeat;
  opacity: 0.4;
  z-index: 1;
}

.medical-grid {
  display: grid;
  gap: 40px 0;
  grid-template-columns: repeat(16, 1fr);
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .medical-grid {
    grid-template-columns: repeat(11, 1fr);
  }
}
@media (max-width: 650px) {
  .medical-grid {
    grid-template-columns: repeat(7, 1fr);
  }
}
.medical-grid .item {
  text-align: center;
  transition: all 0.5s cubic-bezier(0.17, 0.67, 0.57, 1.39);
}
.medical-grid .item:nth-child(1) {
  grid-column: 1/span 4;
}
@media (max-width: 768px) {
  .medical-grid .item:nth-child(1) {
    grid-column: 1/span 3;
  }
}
@media (max-width: 650px) {
  .medical-grid .item:nth-child(1) {
    grid-column: 1/span 3;
  }
}
.medical-grid .item:nth-child(2) {
  grid-column: 7/span 4;
}
@media (max-width: 768px) {
  .medical-grid .item:nth-child(2) {
    grid-column: 5/span 3;
  }
}
@media (max-width: 650px) {
  .medical-grid .item:nth-child(2) {
    grid-column: 5/span 7;
  }
}
.medical-grid .item:nth-child(3) {
  grid-column: 13/span 4;
}
@media (max-width: 768px) {
  .medical-grid .item:nth-child(3) {
    grid-column: 9/span 3;
  }
}
@media (max-width: 650px) {
  .medical-grid .item:nth-child(3) {
    grid-column: 1/span 3;
  }
}
.medical-grid .item:nth-child(4) {
  grid-column: 4/span 4;
}
@media (max-width: 768px) {
  .medical-grid .item:nth-child(4) {
    grid-column: 3/span 3;
  }
}
@media (max-width: 650px) {
  .medical-grid .item:nth-child(4) {
    grid-column: 5/span 7;
  }
}
.medical-grid .item:nth-child(5) {
  grid-column: 10/span 4;
}
@media (max-width: 768px) {
  .medical-grid .item:nth-child(5) {
    grid-column: 7/span 3;
  }
}
@media (max-width: 650px) {
  .medical-grid .item:nth-child(5) {
    grid-column: 3/span 3;
  }
}
.medical-grid .item .icon {
  background-color: var(--white-color);
  border-radius: 50%;
  aspect-ratio: 1/1;
  width: 100%;
  position: relative;
  transition: transform 0.6s cubic-bezier(0.17, 0.67, 0.57, 1.39);
  transform-style: preserve-3d;
}
.medical-grid .item .icon span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 50%;
}
.medical-grid .item p {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: bold;
  border-radius: 20px;
  line-height: 1;
  padding: 10px;
  margin-top: 10px;
  text-wrap: nowrap;
  width: 100%;
}
@media (max-width: 650px) {
  .medical-grid .item p {
    font-size: 1.14rem;
  }
}
.medical-grid .item:hover .icon {
  transform: scale(1.1);
}

.pages {
  margin-top: 140px;
}
@media (max-width: 768px) {
  .pages {
    margin-top: 72px;
  }
}
.pages .top {
  height: 40vh;
  display: flex;
  align-items: center;
  position: relative;
}
@media (max-width: 500px) {
  .pages .top {
    height: 30vh;
  }
}
.pages .top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/hamakkoko_first-MV.jpg);
  background-size: cover;
  background-position: center;
  filter: blur(3px);
  z-index: -1;
}
.pages .wrapper {
  max-width: 1220px;
}
.pages .lower-title {
  font-size: 2rem;
  color: var(--main-color);
  margin-bottom: initial;
  margin-left: auto;
  align-items: flex-start;
  gap: 10px;
  min-width: 40%;
  background-color: var(--white-color);
  border-radius: 20px 0 0 20px;
  padding: 20px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1em;
}
@media (max-width: 500px) {
  .pages .lower-title {
    font-size: 1.285rem;
    padding: 10px 30px 10px;
    width: 260px;
  }
}
.pages .lower-title .en {
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1;
  font-family: var(--ff-en);
}
@media (max-width: 500px) {
  .pages .lower-title .en {
    font-size: 0.714rem;
  }
}
.pages .lower-title .parent {
  font-size: 1.25rem;
  color: var(--main-color);
}
.pages .lower-title .sec-wrapper {
  font-size: 2rem;
  font-family: var(--ff-jp);
  font-weight: bold;
  color: var(--main-color);
  margin-bottom: initial;
  align-items: flex-start;
  gap: 5px;
}
.pages .lower-title .sec-wrapper .en {
  font-size: 0.875rem;
}
.pages .lower-title .sec-wrapper .parent {
  font-size: 1.25rem;
  color: var(--main-color);
}
@media (max-width: 500px) {
  .pages .lower-title .sec-wrapper .parent {
    font-size: 1rem;
  }
}
@media (max-width: 500px) {
  .pages.medical-ch h1 {
    padding: 10px 20px;
    max-width: 290px;
    min-width: 260px;
    width: initial;
    text-wrap: nowrap;
  }
}
@media (max-width: 500px) {
  .pages.medical-ch h1 .sec-wrapper {
    font-size: 1.5rem;
  }
}
.pages .title {
  margin-top: 40px;
}
@media (max-width: 500px) {
  .pages .title {
    margin-top: 20px;
  }
}
.pages h3 {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--text-color);
  text-align: center;
}
@media (max-width: 650px) {
  .pages h3 {
    margin-left: initial;
  }
}
@media (max-width: 500px) {
  .pages h3 {
    font-size: 1.714rem;
  }
}
.pages-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 500px) {
  .pages-title {
    gap: 10px;
  }
}
.pages-title .shellfish {
  width: 44.71px;
  flex-shrink: 0;
}
@media (max-width: 500px) {
  .pages-title .shellfish {
    width: 32.41px;
  }
}
.pages h4 {
  font-size: 1.5rem;
  font-weight: bold;
}
@media (max-width: 650px) {
  .pages h4 {
    font-size: clamp(1.4rem, 22.4px + 5.6 * (100vw - 500px) / 150, 1.75rem);
  }
}
@media (max-width: 500px) {
  .pages h4 {
    font-size: 1.428rem;
  }
}
.pages .breadcrumbs {
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  padding-left: 40px;
  height: 40px;
}
@media (max-width: 500px) {
  .pages .breadcrumbs {
    padding-left: 20px;
  }
}
.pages .breadcrumbs .breadcrumb {
  color: var(--main-color);
}
.pages .breadcrumbs .current {
  color: var(--light-blue-color);
  pointer-events: none;
}
.pages .home {
  width: 9px;
  margin-right: 10px;
}
.pages .home a {
  display: inline-block;
  height: 100%;
  line-height: 1;
}
.pages .list {
  flex: 1;
}
.pages nav {
  padding-block: 20px;
  background-color: var(--light-blue-color);
}
.pages nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 500px) {
  .pages nav ul {
    gap: 10px;
    font-size: 0.92rem;
  }
}
.pages nav ul li {
  color: var(--main-color);
  border: 1px solid var(--main-color);
  border-radius: 20px;
  background-color: var(--white-color);
}
.pages nav ul li.active {
  background-color: var(--main-color);
}
.pages nav ul li.active a {
  color: var(--white-color);
}
.pages nav ul li.active a::after {
  border-bottom: 1px solid var(--white-color);
  border-right: 1px solid var(--white-color);
}
.pages nav ul li a {
  display: inline-block;
  width: 100%;
  height: 100%;
  padding: 5px 20px;
  transition: all 0.5s ease;
  color: var(--main-color);
}
@media (max-width: 500px) {
  .pages nav ul li a {
    padding: 5px 10px;
  }
}
.pages nav ul li a::after {
  display: inline-block;
  content: "";
  width: 8px;
  height: 8px;
  border-bottom: 1px solid var(--main-color);
  border-right: 1px solid var(--main-color);
  transform: translateY(-4px) rotate(45deg);
  margin-left: 10px;
  transition: all 0.5s ease;
}
.pages nav ul li a:hover {
  opacity: 0.5;
}
.pages nav ul li a:hover::after {
  transform: translateY(0) rotate(45deg);
}
.pages section {
  padding-top: 180px;
  margin-top: -40px;
}
@media (max-width: 768px) {
  .pages section {
    padding-top: 100px;
    margin-top: initial;
  }
}
@media (max-width: 500px) {
  .pages section {
    padding-top: 72px;
    margin-top: -12px;
  }
}
.pages section:nth-of-type(1) {
  padding-top: initial;
  margin-top: initial;
}
.pages section:nth-of-type(2) {
  padding-top: 140px;
  margin-top: -60px;
}
@media (max-width: 768px) {
  .pages section:nth-of-type(2) {
    padding-top: 80px;
    margin-top: initial;
  }
}
@media (max-width: 500px) {
  .pages section:nth-of-type(2) {
    padding-top: 72px;
    margin-top: -32px;
  }
}
.pages section:nth-last-of-type(2) {
  padding-bottom: 140px;
}
@media (max-width: 500px) {
  .pages section:nth-last-of-type(2) {
    padding-bottom: 60px;
  }
}
.pages #access {
  margin-top: initial;
}
.pages .medical-outer {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  padding-inline: 40px;
}
@media (max-width: 650px) {
  .pages .medical-outer {
    gap: 40px;
  }
}
@media (max-width: 500px) {
  .pages .medical-outer {
    flex-direction: column-reverse;
    align-items: center;
    gap: 20px;
    padding-inline: initial;
  }
}
.pages .medical-outer .content {
  flex: 1;
}
@media (max-width: 500px) {
  .pages .medical-outer .content {
    padding-inline: 20px;
  }
}
.pages .medical-outer .pct {
  width: 200px;
}
@media (max-width: 650px) {
  .pages .medical-outer .pct {
    width: clamp(120px, 120px + 80 * (100vw - 500px) / 150, 200px);
  }
}
@media (max-width: 500px) {
  .pages .medical-outer .pct {
    width: 220px;
  }
}
.pages .medical-outer .pct img {
  height: 200px;
  border-radius: 50%;
}
@media (max-width: 650px) {
  .pages .medical-outer .pct img {
    height: clamp(120px, 120px + 80 * (100vw - 500px) / 150, 200px);
  }
}
@media (max-width: 500px) {
  .pages .medical-outer .pct img {
    height: 220px;
  }
}
.pages .medical-wrapper {
  background-color: var(--light-yellow-color);
  padding: 40px;
  border-radius: 20px;
}
@media (max-width: 500px) {
  .pages .medical-wrapper {
    padding: 20px;
  }
}
.pages .medical-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
}
@media (max-width: 500px) {
  .pages .medical-inner {
    gap: 10px 20px;
  }
}
.pages .medical-inner li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: bold;
}
.pages .medical-inner .check {
  width: 20px;
  line-height: 1.4;
  flex-shrink: 0;
}

.numbers {
  display: flex;
  gap: 5px;
}
.numbers .page-numbers {
  border: 1px solid var(--main-color);
  border-radius: 50%;
  display: inline-block;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  transition: all 0.5s;
}
.numbers .page-numbers.prev, .numbers .page-numbers.next {
  display: none;
}
.numbers .page-numbers.dots {
  border: none;
}
.numbers .page-numbers.current {
  background-color: var(--light-blue-color);
}
.numbers .page-numbers:hover {
  background-color: var(--light-blue-color);
}

.pagination-news {
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.prev,
.next {
  border-bottom: 1px solid var(--text-color);
  transition: all 0.5s;
}
.prev:hover,
.next:hover {
  border-bottom: 1px solid var(--light-blue-color);
  opacity: 0.8;
}

.calendar-wrapper {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 20px + 20 * (100vw - 768px) / 512, 40px);
  max-width: initial !important;
}
.calendar-wrapper .month-wrapper {
  width: 50%;
}
@media (max-width: 768px) {
  .calendar-wrapper .month-wrapper {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .calendar-wrapper .month-wrapper:nth-child(2) {
    display: none;
  }
}
.calendar-wrapper .month-title {
  font-weight: normal !important;
  text-align: left !important;
  font-size: 1.5rem !important;
  grid-template-columns: 60px 1fr !important;
}
@media (max-width: 768px) {
  .calendar-wrapper .month-title {
    margin-left: initial;
  }
}
.calendar-wrapper .month-title .month {
  font-size: 3.125rem !important;
  font-family: var(--ff-num) !important;
}
@media (max-width: 500px) {
  .calendar-wrapper .month-title .month {
    font-size: 2.28rem !important;
  }
}
.calendar-wrapper .month-title .full {
  font-family: var(--ff-en);
}
.calendar-wrapper .month-title .year {
  font-family: var(--ff-num) !important;
}
.calendar .body {
  font-family: var(--ff-num);
}

.br-ltb {
  display: none;
}
@media (max-width: 1000px) {
  .br-ltb {
    display: block;
    height: 0;
  }
}
.br-tb {
  display: none;
}
@media (max-width: 768px) {
  .br-tb {
    display: block;
    height: 0;
  }
}
.br-lsp {
  display: none;
}
@media (max-width: 650px) {
  .br-lsp {
    display: block;
    height: 0;
  }
}
.br-sp {
  display: none;
}
@media (max-width: 500px) {
  .br-sp {
    display: block;
    height: 0;
  }
}
.br-ssp {
  display: none;
}
@media (max-width: 415px) {
  .br-ssp {
    display: block;
    height: 0;
  }
}

@media (max-width: 650px) {
  .pc {
    display: none;
  }
}

.lsp {
  display: none;
}
@media (max-width: 650px) {
  .lsp {
    display: block;
  }
}

.sp {
  display: none;
}
@media (max-width: 500px) {
  .sp {
    display: block;
  }
}

.text-link {
  border-bottom: 1px solid #a8a6a6;
  transition: all 0.5s;
}
.text-link:hover {
  opacity: 0.5;
}

#page_top {
  display: none;
}

.inline-text {
  padding-inline: 40px;
}
@media (max-width: 500px) {
  .inline-text {
    padding-inline: 20px;
  }
}

.wave-wrapper {
  position: absolute;
  top: -70px;
  width: 100%;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 500px) {
  .wave-wrapper {
    top: -40px;
  }
}
.wave-wrap {
  position: absolute;
  bottom: 47px;
  left: 0;
  width: 100%;
  height: 60px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .wave-wrap {
    height: 30px;
    bottom: 75px;
  }
}
@media (max-width: 500px) {
  .wave-wrap {
    height: 20px;
    bottom: 85px;
  }
}
.wave-track {
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 100%;
  -webkit-animation: wave-move 25s linear infinite;
          animation: wave-move 25s linear infinite;
}
.wave-track img {
  height: 100%;
  width: auto;
  flex-shrink: 0;
}
@-webkit-keyframes wave-move {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes wave-move {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

#toc_container {
  display: none;
}

.header {
  background-color: var(--white-color);
  border-bottom: 3px solid var(--light-blue-color);
  padding-inline: 3%;
  height: 140px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
}
@media (max-width: 768px) {
  .header {
    height: 72px;
    padding-inline: 2%;
  }
}
.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
@media (max-width: 768px) {
  .header-top {
    height: 100%;
  }
}
.header-logo {
  position: relative;
}
.header-logo p {
  position: absolute;
  top: 7px;
  right: 0;
  color: var(--blue-color);
  font-size: clamp(0.525rem, 8.4px + 2.8 * (100vw - 768px) / 512, 0.7rem);
  line-height: 1.2;
}
@media (max-width: 500px) {
  .header-logo p {
    display: none;
  }
}
.header-logo .logo {
  width: clamp(280px, 280px + 97 * (100vw - 768px) / 512, 377px);
}
@media (max-width: 500px) {
  .header-logo .logo {
    width: 220px;
  }
}
.header-contact {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .header-contact {
    display: none;
  }
}
.header-contact span {
  display: inline-block;
}
.header-contact li a {
  display: flex;
  align-items: center;
}
.header-contact .tel {
  margin-right: 17px;
  padding-bottom: 6px;
  border-bottom: 5px dotted var(--light-blue-color);
}
.header-contact .tel a {
  gap: 6px;
  color: var(--blue-color);
  font-size: clamp(1.5rem, 24px + 5.984 * (100vw - 768px) / 512, 1.874rem);
  font-weight: bold;
  font-family: var(--ff-num);
  line-height: 1em;
}
.header-contact .tel .icon {
  width: 28px;
}
.header-contact .interview,
.header-contact .line {
  width: 80px;
  height: 60px;
  border-radius: 20px;
  padding: clamp(5px, 5px + 5 * (100vw - 768px) / 512, 10px);
}
.header-contact .interview a,
.header-contact .line a {
  flex-direction: column;
  color: var(--white-color);
  font-size: 0.875rem;
  font-weight: bold;
  gap: 5px;
}
.header-contact .interview {
  background-color: var(--orange-color);
  margin-right: 10px;
}
.header-contact .interview .icon {
  width: 16px;
}
.header-contact .line {
  background-color: var(--line-color);
}
.header-contact .line .icon {
  width: 20px;
}
.header-bottom {
  position: relative;
}
@media (max-width: 768px) {
  .header-bottom {
    display: none;
  }
}
.header-bottom .nav-pc {
  justify-content: center;
}
.header-bottom .nav-pc p {
  font-size: 0.875rem;
}
.header-bottom .nav-pc .has-child {
  position: relative;
}
.header-bottom .nav-pc .has-child:hover > ul {
  visibility: visible;
  opacity: 1;
}
.header-bottom .nav-pc .has-child ul {
  display: initial;
  position: absolute;
  left: 0;
  top: 110%;
  z-index: 4;
  width: 180px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}
.header-bottom .nav-pc .has-child ul li {
  padding-inline: 10px;
  background: rgba(255, 255, 255, 0.662745098);
}
.header-bottom .nav-pc .has-child ul li:not(:first-of-type) {
  border-top: 1px solid var(--light-blue-color);
}
.header-bottom .nav-pc .has-child ul li:hover {
  background: rgba(255, 255, 255, 0.8980392157);
}
.header-bottom .nav-pc .has-child ul li:hover > ul {
  visibility: visible;
  opacity: 1;
}
.header-bottom .nav-pc .has-child ul li a {
  align-items: flex-start;
  line-height: 2;
}
.header-bottom ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 20px + 20 * (100vw - 768px) / 512, 40px);
}
.header-bottom a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  transition: all 0.5s;
}
.header-bottom a:hover {
  opacity: 0.5;
}
.header-bottom a .icon img {
  height: 28px;
}
.header-bottom .fish {
  position: absolute;
  top: 50%;
  right: clamp(-20px, -20px + 50 * (100vw - 768px) / 512, 30px);
  transform: translateY(-50%);
  width: clamp(50px, 50px + 20 * (100vw - 768px) / 512, 70px);
  z-index: -1;
}
.header-right {
  display: none;
}
@media (max-width: 768px) {
  .header-right {
    display: block;
    position: relative;
    z-index: 1;
  }
}
.header-right .inner {
  display: flex;
  justify-content: center;
  gap: 5px;
}
.header-right .tel-sp {
  width: 55px;
  height: 55px;
  background-color: var(--blue-color);
  border-radius: 20px;
  cursor: pointer;
}
.header-right .tel-sp a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.header-right .tel-sp a span {
  display: inline-block;
  width: 24px;
}
.header-right .toggle {
  width: 55px;
  height: 55px;
  background-color: var(--blue-color);
  border-radius: 20px;
  position: relative;
  cursor: pointer;
}
.header-right .toggle span {
  display: inline-block;
  width: 30px;
  height: 2px;
  border-radius: 5px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  transition: all 0.5s;
}
.header-right .toggle span:nth-child(1) {
  top: 30%;
  transform: translateX(-50%);
}
.header-right .toggle span:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}
.header-right .toggle span:nth-child(3) {
  bottom: 30%;
  transform: translateX(-50%);
}
.header .nav-sp {
  display: none;
}
@media (max-width: 768px) {
  .header .nav-sp {
    display: block;
    opacity: 0;
    visibility: hidden;
  }
}
.header .nav-sp .inner {
  margin-top: 25px;
  justify-content: center;
}
.header .nav-sp .list-wrapper {
  text-wrap: nowrap;
}
.header .nav-sp a {
  color: var(--main-color);
  transition: all 0.5s;
}
.header .nav-sp a:hover {
  opacity: 0.5;
}
.header .nav-sp h5 {
  font-weight: bold;
}
.header .nav-sp .main-list li:not(:first-of-type) {
  margin-top: 20px;
}
.header .nav-sp .main-list a {
  font-weight: bold;
}
.header .nav-sp .main-list.top {
  margin-bottom: 20px;
}
.header .nav-sp .main-list.pp {
  margin-top: 20px;
}
.header .nav-sp .lower-list {
  margin-left: 16px;
}
.header .nav-sp .lower-list li {
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 5px;
  text-wrap: nowrap;
  margin-top: 20px;
}
.header .nav-sp .lower-list li::before {
  content: "-";
  color: var(--main-color);
}
.header .nav-logo {
  margin-top: 30px;
  margin-inline: auto;
  width: 200px;
}
.header .mask {
  visibility: hidden;
  opacity: 0;
  background-color: var(--light-blue-color);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.6s;
}
.header.open .toggle span:nth-child(1) {
  top: 50%;
  transform: translateX(-50%) rotate(30deg);
}
.header.open .toggle span:nth-child(2) {
  opacity: 0;
}
.header.open .toggle span:nth-child(3) {
  bottom: initial;
  top: 50%;
  transform: translateX(-50%) rotate(-30deg);
}
.header.open .nav-sp {
  visibility: visible;
  position: relative;
  opacity: 1;
  z-index: 1;
}
.header.open .mask {
  visibility: visible;
  opacity: 1;
}

footer {
  position: relative;
  background-color: var(--footer-color);
}
@media (max-width: 768px) {
  footer {
    padding-bottom: 53px;
  }
}
footer .to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 20;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  border: 2px solid var(--white-color);
  background-color: var(--light-blue-color);
  cursor: pointer;
  transition: transform 0.5s ease;
}
@media (max-width: 768px) {
  footer .to-top {
    width: 65px;
    height: 65px;
    bottom: 70px;
  }
}
@media (max-width: 500px) {
  footer .to-top {
    width: 40px;
    height: 40px;
    right: 26px;
  }
}
footer .to-top::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -25%) rotate(45deg);
  width: 30px;
  height: 30px;
  border-top: 2px solid var(--white-color);
  border-left: 2px solid var(--white-color);
}
@media (max-width: 500px) {
  footer .to-top::before {
    width: 15px;
    height: 15px;
  }
}
footer .to-top:hover {
  transform: scale(1.2);
}
footer .to-top.active {
  transform: scale(1.2);
}
footer .outer {
  padding-block: 100px;
  display: flex;
  justify-content: center;
  padding-inline: 3%;
  gap: 40px;
  max-width: 1200px;
  margin-inline: auto;
}
@media (max-width: 1000px) {
  footer .outer {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
}
@media (max-width: 500px) {
  footer .outer {
    padding-block: 40px 200px;
  }
}
footer .outer .logo {
  width: 300px;
  position: relative;
  z-index: 1;
}
@media (max-width: 500px) {
  footer .outer .logo {
    width: 204px;
  }
}
footer .outer .nav-pc {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 768px) {
  footer .outer .nav-pc {
    gap: clamp(10px, 10px + 30 * (100vw - 650px) / 118, 40px);
  }
}
@media (max-width: 650px) {
  footer .outer .nav-pc {
    display: none;
  }
}
footer .outer .nav-sp {
  display: none;
}
@media (max-width: 650px) {
  footer .outer .nav-sp {
    display: block;
  }
}
footer .outer .nav-sp .inner {
  display: flex;
  align-items: flex-start;
}
footer .outer a {
  color: var(--white-color);
  display: inline-block;
  height: 100%;
  transition: all 0.5s;
}
footer .outer a:hover {
  opacity: 0.5;
}
footer .outer h5 {
  margin-bottom: 20px;
}
footer .outer .disc {
  display: flex;
  align-items: center;
  gap: 5px;
  text-wrap: nowrap;
}
footer .outer .disc::before {
  display: inline-block;
  content: "";
  width: 18px;
  height: 18px;
  background-color: var(--white-color);
  border-radius: 50%;
}
@media (max-width: 500px) {
  footer .outer .disc::before {
    width: 14px;
    height: 14px;
  }
}
footer .outer .main-list li:not(:first-child) {
  margin-top: 20px;
}
footer .outer .main-list.top {
  margin-bottom: 20px;
}
footer .outer .main-list.pp {
  margin-top: 20px;
}
footer .outer .lower-list {
  margin-left: 16px;
}
footer .outer .lower-list li {
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 5px;
  text-wrap: nowrap;
}
footer .outer .lower-list li:not(:first-child) {
  margin-top: 20px;
}
footer .outer .lower-list li::before {
  content: "-";
  color: var(--white-color);
}
footer .copyright {
  text-align: center;
  background-color: var(--copyright-color);
  height: 50px;
}
footer .copyright small {
  line-height: 50px;
  color: var(--white-color);
}
footer .illustration .submarine,
footer .illustration .coral {
  position: absolute;
}
footer .illustration .submarine {
  width: clamp(192px, 192px + 70 * (100vw - 650px) / 630, 262px);
  bottom: 140px;
  right: 10%;
  transform: translateY(0);
  -webkit-animation: submarine 5s infinite linear;
          animation: submarine 5s infinite linear;
}
@media (max-width: 650px) {
  footer .illustration .submarine {
    width: 128px;
  }
}
@-webkit-keyframes submarine {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes submarine {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
footer .illustration .coral {
  bottom: 50px;
  left: 10px;
}
@media (max-width: 768px) {
  footer .illustration .coral {
    bottom: 103px;
  }
}
footer .illustration .coral ul {
  display: flex;
  align-items: flex-end;
}
footer .illustration .coral-big {
  width: clamp(91px, 91px + 50 * (100vw - 500px) / 782, 141px);
}
@media (max-width: 500px) {
  footer .illustration .coral-big {
    width: 54px;
  }
}
footer .illustration .coral-small {
  width: clamp(61.54px, 61.54px + 10 * (100vw - 500px) / 782, 71.54px);
}
@media (max-width: 500px) {
  footer .illustration .coral-small {
    width: 27px;
  }
}
footer .link-wrapper {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
@media (max-width: 768px) {
  footer .link-wrapper {
    display: block;
  }
}
footer .link-sp {
  display: flex;
}
footer .link-sp li {
  width: 33.3333333333%;
  height: 53px;
}
footer .link-sp li a {
  font-size: 0.857rem;
  font-weight: bold;
  color: #fff;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 500px) {
  footer .link-sp li a {
    gap: 10px;
  }
}
footer .link-sp .interview {
  background-color: var(--orange-color);
}
footer .link-sp .interview .icon {
  width: 16px;
}
footer .link-sp .line {
  background-color: var(--line-color);
}
footer .link-sp .line .icon {
  width: 25px;
}
footer .link-sp .access {
  background-color: var(--btn-blue-color);
}
footer .link-sp .access .icon {
  width: 17px;
}

.mv {
  margin-top: 140px;
  height: calc(100vh - 140px);
  background-color: var(--light-blue-color);
  position: relative;
  overflow: hidden;
  z-index: 0;
}
@media (max-width: 768px) {
  .mv {
    margin-top: 72px;
    height: calc(100vh - 72px);
  }
}
.mv::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../img/hamakkoko_top-MV.jpg);
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  width: 90%;
  height: 95%;
  z-index: -1;
}
@media (max-width: 500px) {
  .mv::before {
    top: 0;
    left: initial;
    right: 0;
    transform: initial;
    border-radius: 70% 0 0 50%;
    height: 100%;
  }
}
.mv::after {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%) scale(1.1);
  background-color: var(--white-color);
  opacity: 0.2;
  border-radius: 50%;
  width: 90%;
  height: 95%;
  z-index: -3;
}
@media (max-width: 500px) {
  .mv::after {
    left: initial;
    right: 0;
    transform: scale(1.2);
    border-radius: 70% 0 0 50%;
    height: 100%;
  }
}
.mv .lead {
  writing-mode: vertical-rl;
  font-size: 1.875rem;
  font-weight: bold;
  color: var(--text-color);
  text-shadow: 0 4px 4px #FFFCF3;
  height: 100%;
  padding-inline: 100px;
  position: absolute;
  right: 20%;
  top: -20px;
  letter-spacing: 3px;
}
@media (max-width: 768px) {
  .mv .lead {
    right: 10%;
    top: -70px;
  }
}
@media (max-width: 500px) {
  .mv .lead {
    font-size: clamp(1.29rem, 18.06px + 8.19 * (100vw - 360px) / 140, 1.875rem);
    right: 3%;
  }
}
.mv .lead p:last-child {
  text-align: end;
}
@media (max-width: 500px) {
  .mv .lead p:last-child {
    text-align: initial;
    margin-top: 115px;
  }
}
.mv .text {
  text-align: center;
  display: flex;
  gap: 40px;
  position: absolute;
  left: 5%;
  bottom: 20%;
}
@media (max-width: 500px) {
  .mv .text {
    bottom: 73px;
  }
}
.mv .text li {
  position: relative;
  font-weight: 500;
}
@media (max-width: 500px) {
  .mv .text li {
    font-size: 0.857rem;
    font-weight: bold;
  }
}
.mv .text li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  background-color: var(--white-color);
  opacity: 0.8;
  border-radius: 50%;
  filter: blur(4px);
  z-index: 0;
}
@media (max-width: 500px) {
  .mv .text li::before {
    width: 93px;
    height: 93px;
  }
}
.mv .text li p {
  position: relative;
  z-index: 1;
}
.mv .illustration li {
  position: absolute;
}
.mv .illustration .fish1 {
  width: 84px;
  transform: scaleX(-1);
  top: 15px;
  left: 30px;
  -webkit-animation: fish 10s infinite linear;
          animation: fish 10s infinite linear;
}
@media (max-width: 768px) {
  .mv .illustration .fish1 {
    left: 0;
  }
}
@media (max-width: 500px) {
  .mv .illustration .fish1 {
    width: 69px;
  }
}
.mv .illustration .fish2 {
  width: 90px;
  transform: scaleX(-1);
  top: 74px;
  left: 81px;
  -webkit-animation: fish 5s infinite linear;
          animation: fish 5s infinite linear;
}
@media (max-width: 768px) {
  .mv .illustration .fish2 {
    width: 80px;
    left: 63px;
    top: 75px;
  }
}
@media (max-width: 500px) {
  .mv .illustration .fish2 {
    width: 65px;
    top: 60px;
  }
}
@-webkit-keyframes fish {
  0% {
    transform: translateY(0) scaleX(-1);
  }
  25% {
    transform: translateY(-5px) scaleX(-1);
  }
  50% {
    transform: translateY(-10px) scaleX(-1);
  }
  75% {
    transform: translateY(-5px) scaleX(-1);
  }
  100% {
    transform: translateY(0) scaleX(-1);
  }
}
@keyframes fish {
  0% {
    transform: translateY(0) scaleX(-1);
  }
  25% {
    transform: translateY(-5px) scaleX(-1);
  }
  50% {
    transform: translateY(-10px) scaleX(-1);
  }
  75% {
    transform: translateY(-5px) scaleX(-1);
  }
  100% {
    transform: translateY(0) scaleX(-1);
  }
}
.mv .illustration .turtle {
  width: 151px;
  transform: scaleX(-1) rotate(-5deg);
  top: 140px;
  left: -151px;
  -webkit-animation: turtle 25s infinite linear;
          animation: turtle 25s infinite linear;
}
@media (max-width: 768px) {
  .mv .illustration .turtle {
    width: 121px;
    -webkit-animation: turtle-sp 15s infinite linear;
            animation: turtle-sp 15s infinite linear;
    top: 110px;
    left: 0;
  }
}
@media (max-width: 500px) {
  .mv .illustration .turtle {
    width: 79px;
  }
}
@-webkit-keyframes turtle {
  0% {
    transform: translateX(0) scaleX(-1) rotate(-5deg);
  }
  30% {
    transform: translateX(200px) scaleX(-1) rotate(-5deg);
  }
  60% {
    transform: translateX(400px) translateY(-110px) scaleX(-1) rotate(-10deg);
  }
  90% {
    transform: translateX(600px) translateY(-220px) scaleX(-1) rotate(-10deg);
  }
  100% {
    transform: translateX(600px) translateY(-220px) scaleX(-1) rotate(-10deg);
  }
}
@keyframes turtle {
  0% {
    transform: translateX(0) scaleX(-1) rotate(-5deg);
  }
  30% {
    transform: translateX(200px) scaleX(-1) rotate(-5deg);
  }
  60% {
    transform: translateX(400px) translateY(-110px) scaleX(-1) rotate(-10deg);
  }
  90% {
    transform: translateX(600px) translateY(-220px) scaleX(-1) rotate(-10deg);
  }
  100% {
    transform: translateX(600px) translateY(-220px) scaleX(-1) rotate(-10deg);
  }
}
@-webkit-keyframes turtle-sp {
  0% {
    transform: translateX(0) rotate(5deg) scaleX(-1);
  }
  10% {
    transform: translateX(20px) rotate(2deg) scaleX(-1);
  }
  20% {
    transform: translateX(40px) rotate(5deg) scaleX(-1);
  }
  30% {
    transform: translateX(60px) rotate(2deg) scaleX(-1);
  }
  40% {
    transform: translateX(80px) rotate(5deg) scaleX(-1);
  }
  49% {
    transform: translateX(100px) rotate(2deg) scaleX(-1);
  }
  50% {
    transform: translateX(100px) rotate(2deg);
  }
  60% {
    transform: translateX(80px) rotate(5deg);
  }
  70% {
    transform: translateX(60px) rotate(2deg);
  }
  80% {
    transform: translateX(40px) rotate(5deg);
  }
  90% {
    transform: translateX(20px) rotate(2deg);
  }
  99% {
    transform: translateX(0) rotate(5deg);
  }
  100% {
    transform: translateX(0) rotate(5deg) scaleX(-1);
  }
}
@keyframes turtle-sp {
  0% {
    transform: translateX(0) rotate(5deg) scaleX(-1);
  }
  10% {
    transform: translateX(20px) rotate(2deg) scaleX(-1);
  }
  20% {
    transform: translateX(40px) rotate(5deg) scaleX(-1);
  }
  30% {
    transform: translateX(60px) rotate(2deg) scaleX(-1);
  }
  40% {
    transform: translateX(80px) rotate(5deg) scaleX(-1);
  }
  49% {
    transform: translateX(100px) rotate(2deg) scaleX(-1);
  }
  50% {
    transform: translateX(100px) rotate(2deg);
  }
  60% {
    transform: translateX(80px) rotate(5deg);
  }
  70% {
    transform: translateX(60px) rotate(2deg);
  }
  80% {
    transform: translateX(40px) rotate(5deg);
  }
  90% {
    transform: translateX(20px) rotate(2deg);
  }
  99% {
    transform: translateX(0) rotate(5deg);
  }
  100% {
    transform: translateX(0) rotate(5deg) scaleX(-1);
  }
}
.mv .illustration .coral {
  width: 154px;
  bottom: 36px;
  left: 6px;
  z-index: -1;
}
@media (max-width: 768px) {
  .mv .illustration .coral {
    width: 100px;
    bottom: 53px;
  }
}
@media (max-width: 500px) {
  .mv .illustration .coral {
    width: 88px;
    bottom: 53px;
  }
}
.mv .illustration .seahorse {
  width: 22px;
  bottom: 28px;
  left: 148px;
  z-index: -1;
  -webkit-animation: seahorse 15s infinite linear;
          animation: seahorse 15s infinite linear;
}
@media (max-width: 768px) {
  .mv .illustration .seahorse {
    left: 108px;
    bottom: 58px;
  }
}
@media (max-width: 500px) {
  .mv .illustration .seahorse {
    left: 100px;
    bottom: 55px;
    width: 18px;
  }
}
@-webkit-keyframes seahorse {
  0% {
    transform: rotate(-5deg);
  }
  10% {
    transform: rotate(5deg);
  }
  20% {
    transform: rotate(-5deg);
  }
  30% {
    transform: rotate(5deg);
  }
  40% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(5deg);
  }
  60% {
    transform: rotate(-5deg);
  }
  70% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  90% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(-5deg);
  }
}
@keyframes seahorse {
  0% {
    transform: rotate(-5deg);
  }
  10% {
    transform: rotate(5deg);
  }
  20% {
    transform: rotate(-5deg);
  }
  30% {
    transform: rotate(5deg);
  }
  40% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(5deg);
  }
  60% {
    transform: rotate(-5deg);
  }
  70% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  90% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(-5deg);
  }
}
.mv .illustration .clownfish1 {
  width: 40px;
  bottom: 78px;
  left: 192px;
  z-index: -1;
  -webkit-animation: clownfish 20s infinite linear;
          animation: clownfish 20s infinite linear;
}
@media (max-width: 768px) {
  .mv .illustration .clownfish1 {
    left: 140px;
    bottom: 108px;
  }
}
@media (max-width: 500px) {
  .mv .illustration .clownfish1 {
    width: 36px;
    bottom: 84px;
  }
}
.mv .illustration .clownfish2 {
  width: 40px;
  bottom: 58px;
  left: 211px;
  z-index: -1;
  -webkit-animation: clownfish 20s infinite linear;
          animation: clownfish 20s infinite linear;
}
@media (max-width: 768px) {
  .mv .illustration .clownfish2 {
    left: 157px;
    bottom: 88px;
  }
}
@media (max-width: 500px) {
  .mv .illustration .clownfish2 {
    width: 36px;
    bottom: 60px;
    left: 157px;
  }
}
@-webkit-keyframes clownfish {
  0% {
    transform: translateY(5px);
  }
  10% {
    transform: translateY(-5px);
  }
  20% {
    transform: translateY(5px);
  }
  30% {
    transform: translateY(-5px);
  }
  40% {
    transform: translateY(5px);
  }
  50% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(5px);
  }
  70% {
    transform: translateY(-5px);
  }
  80% {
    transform: translateY(5px);
  }
  90% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(5px);
  }
}
@keyframes clownfish {
  0% {
    transform: translateY(5px);
  }
  10% {
    transform: translateY(-5px);
  }
  20% {
    transform: translateY(5px);
  }
  30% {
    transform: translateY(-5px);
  }
  40% {
    transform: translateY(5px);
  }
  50% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(5px);
  }
  70% {
    transform: translateY(-5px);
  }
  80% {
    transform: translateY(5px);
  }
  90% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(5px);
  }
}
.mv .illustration .crab {
  width: 50px;
  bottom: clamp(19px, 19px + 40 * (100vw - 768px) / 512, 59px);
  left: 297px;
  -webkit-animation: crab 20s infinite linear;
          animation: crab 20s infinite linear;
}
@media (max-width: 768px) {
  .mv .illustration .crab {
    left: 200px;
    bottom: 58px;
  }
}
@media (max-width: 500px) {
  .mv .illustration .crab {
    display: none;
  }
}
@-webkit-keyframes crab {
  0% {
    transform: translateX(0) rotate(-5deg);
  }
  10% {
    transform: translateX(20px) rotate(5deg);
  }
  20% {
    transform: translateX(40px) rotate(-5deg);
  }
  30% {
    transform: translateX(60px) rotate(5deg);
  }
  40% {
    transform: translateX(80px) rotate(-5deg);
  }
  50% {
    transform: translateX(100px) rotate(5deg);
  }
  60% {
    transform: translateX(80px) rotate(-5deg);
  }
  70% {
    transform: translateX(60px) rotate(5deg);
  }
  80% {
    transform: translateX(40px) rotate(-5deg);
  }
  90% {
    transform: translateX(20px) rotate(5deg);
  }
  100% {
    transform: translateX(0) rotate(-5deg);
  }
}
@keyframes crab {
  0% {
    transform: translateX(0) rotate(-5deg);
  }
  10% {
    transform: translateX(20px) rotate(5deg);
  }
  20% {
    transform: translateX(40px) rotate(-5deg);
  }
  30% {
    transform: translateX(60px) rotate(5deg);
  }
  40% {
    transform: translateX(80px) rotate(-5deg);
  }
  50% {
    transform: translateX(100px) rotate(5deg);
  }
  60% {
    transform: translateX(80px) rotate(-5deg);
  }
  70% {
    transform: translateX(60px) rotate(5deg);
  }
  80% {
    transform: translateX(40px) rotate(-5deg);
  }
  90% {
    transform: translateX(20px) rotate(5deg);
  }
  100% {
    transform: translateX(0) rotate(-5deg);
  }
}
.mv .illustration .angelfish1 {
  width: 63px;
  top: clamp(20px, 20px + 90 * (100vw - 768px) / 512, 110px);
  right: 90px;
  -webkit-animation: angelfish 17s infinite linear;
          animation: angelfish 17s infinite linear;
}
@media (max-width: 768px) {
  .mv .illustration .angelfish1 {
    display: none;
  }
}
.mv .illustration .angelfish2 {
  width: 62px;
  top: clamp(70px, 70px + 90 * (100vw - 768px) / 512, 160px);
  right: 25px;
  -webkit-animation: angelfish 25s infinite linear;
          animation: angelfish 25s infinite linear;
  -webkit-animation-delay: -2s;
          animation-delay: -2s;
}
@media (max-width: 768px) {
  .mv .illustration .angelfish2 {
    display: none;
  }
}
@-webkit-keyframes angelfish {
  0% {
    transform: rotate(-5deg);
  }
  10% {
    transform: rotate(5deg);
  }
  20% {
    transform: rotate(-5deg);
  }
  30% {
    transform: rotate(5deg);
  }
  40% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(5deg);
  }
  60% {
    transform: rotate(-5deg);
  }
  70% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  90% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(-5deg);
  }
}
@keyframes angelfish {
  0% {
    transform: rotate(-5deg);
  }
  10% {
    transform: rotate(5deg);
  }
  20% {
    transform: rotate(-5deg);
  }
  30% {
    transform: rotate(5deg);
  }
  40% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(5deg);
  }
  60% {
    transform: rotate(-5deg);
  }
  70% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  90% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(-5deg);
  }
}
.mv .illustration .fish3 {
  width: 94px;
  transform: scaleX(-1) rotate(9deg);
  bottom: 265px;
  right: 0;
  z-index: -2;
}
@media (max-width: 500px) {
  .mv .illustration .fish3 {
    display: none;
  }
}
.mv .illustration .whale {
  width: clamp(267px, 267px + 76 * (100vw - 768px) / 512, 343px);
  bottom: clamp(32px, 32px + 47 * (100vw - 768px) / 512, 79px);
  right: -50px;
  transform: translateX(0) rotate(0deg);
  -webkit-animation: whale 5s infinite linear;
          animation: whale 5s infinite linear;
}
@media (max-width: 768px) {
  .mv .illustration .whale {
    width: 178px;
    bottom: 56px;
  }
}
@-webkit-keyframes whale {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-5px) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(0deg);
  }
  75% {
    transform: translateY(-5px) rotate(0deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}
@keyframes whale {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-5px) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(0deg);
  }
  75% {
    transform: translateY(-5px) rotate(0deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}
.mv .illustration .archerfish1 {
  width: 29px;
  bottom: 96px;
  right: 267px;
  opacity: 0;
  -webkit-animation: archerfish 20s infinite linear;
          animation: archerfish 20s infinite linear;
}
@media (max-width: 768px) {
  .mv .illustration .archerfish1 {
    display: none;
  }
}
.mv .illustration .archerfish2 {
  width: 29px;
  bottom: 60px;
  right: 251px;
  opacity: 0;
  -webkit-animation: archerfish 20s infinite linear;
          animation: archerfish 20s infinite linear;
}
@media (max-width: 768px) {
  .mv .illustration .archerfish2 {
    display: none;
  }
}
.mv .illustration .archerfish3 {
  width: 29px;
  bottom: 63px;
  right: 304px;
  opacity: 0;
  -webkit-animation: archerfish 20s infinite linear;
          animation: archerfish 20s infinite linear;
}
@media (max-width: 768px) {
  .mv .illustration .archerfish3 {
    display: none;
  }
}
@-webkit-keyframes archerfish {
  0% {
    transform: translate(0) rotate(-5deg);
    opacity: 0;
  }
  10% {
    transform: translate(-40px) rotate(5deg);
    opacity: 1;
  }
  20% {
    transform: translate(-80px) rotate(-5deg);
  }
  30% {
    transform: translate(-120px) rotate(5deg);
  }
  40% {
    transform: translate(-160px) rotate(-5deg);
  }
  49% {
    transform: translate(-200px) rotate(5deg);
    opacity: 0;
  }
  50% {
    transform: translate(-200px) rotate(5deg) scaleX(-1);
    opacity: 0;
  }
  51% {
    transform: translate(-200px) rotate(5deg) scaleX(-1);
    opacity: 0;
  }
  60% {
    transform: translate(-160px) rotate(-5deg) scaleX(-1);
    opacity: 1;
  }
  70% {
    transform: translate(-120px) rotate(5deg) scaleX(-1);
  }
  80% {
    transform: translate(-80px) rotate(-5deg) scaleX(-1);
  }
  90% {
    transform: translate(-40px) rotate(5deg) scaleX(-1);
  }
  100% {
    transform: translate(0) rotate(-5deg) scaleX(-1);
    opacity: 0;
  }
}
@keyframes archerfish {
  0% {
    transform: translate(0) rotate(-5deg);
    opacity: 0;
  }
  10% {
    transform: translate(-40px) rotate(5deg);
    opacity: 1;
  }
  20% {
    transform: translate(-80px) rotate(-5deg);
  }
  30% {
    transform: translate(-120px) rotate(5deg);
  }
  40% {
    transform: translate(-160px) rotate(-5deg);
  }
  49% {
    transform: translate(-200px) rotate(5deg);
    opacity: 0;
  }
  50% {
    transform: translate(-200px) rotate(5deg) scaleX(-1);
    opacity: 0;
  }
  51% {
    transform: translate(-200px) rotate(5deg) scaleX(-1);
    opacity: 0;
  }
  60% {
    transform: translate(-160px) rotate(-5deg) scaleX(-1);
    opacity: 1;
  }
  70% {
    transform: translate(-120px) rotate(5deg) scaleX(-1);
  }
  80% {
    transform: translate(-80px) rotate(-5deg) scaleX(-1);
  }
  90% {
    transform: translate(-40px) rotate(5deg) scaleX(-1);
  }
  100% {
    transform: translate(0) rotate(-5deg) scaleX(-1);
    opacity: 0;
  }
}
.mv .air li {
  position: absolute;
  background-color: var(--white-color);
  border-radius: 50%;
  opacity: 0.9;
  filter: blur(4px);
  z-index: -2;
}
.mv .air li:nth-child(1) {
  top: 30px;
  left: -30px;
  width: 102px;
  height: 86px;
}
.mv .air li:nth-child(2) {
  top: 130px;
  left: 60px;
  width: 39px;
  height: 33px;
}
.mv .air li:nth-child(3) {
  top: 40%;
  left: 10px;
  width: 27px;
  height: 27px;
}
.mv .air li:nth-child(4) {
  top: 55%;
  left: 30px;
  width: 39px;
  height: 33px;
}
.mv .air li:nth-child(5) {
  top: 60%;
  left: 80px;
  width: 10px;
  height: 10px;
}
.mv .air li:nth-child(6) {
  top: 62%;
  left: 50px;
  width: 20px;
  height: 20px;
}
.mv .air li:nth-child(7) {
  top: 30px;
  right: 30px;
  width: 39px;
  height: 33px;
}
.mv .air li:nth-child(8) {
  top: 50px;
  right: 86px;
  width: 10px;
  height: 10px;
}
.mv .air li:nth-child(9) {
  top: 75px;
  right: 60px;
  width: 20px;
  height: 20px;
}
.mv .air li:nth-child(10) {
  top: 35%;
  right: 20px;
  width: 27px;
  height: 27px;
}
.mv .air li:nth-child(11) {
  top: 87%;
  right: 27%;
  width: 20px;
  height: 20px;
}
.mv .air li:nth-child(12) {
  top: 90%;
  right: 25%;
  width: 10px;
  height: 10px;
}
.mv .scroll-down {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
@media (max-width: 768px) {
  .mv .scroll-down {
    bottom: 53px;
  }
}
@media (max-width: 500px) {
  .mv .scroll-down {
    display: none;
  }
}
.mv .scroll-down p {
  color: var(--white-color);
}
.mv .scroll-line {
  width: 1px;
  height: 53px;
  background-color: var(--white-color);
  position: relative;
}
.mv .scroll-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--white-color);
  border-radius: 50%;
  width: 14px;
  height: 14px;
  -webkit-animation: scroll 1.5s infinite ease-in-out;
          animation: scroll 1.5s infinite ease-in-out;
}
@-webkit-keyframes scroll {
  0% {
    top: 0;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    top: 90%;
    opacity: 0;
  }
}
@keyframes scroll {
  0% {
    top: 0;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    top: 90%;
    opacity: 0;
  }
}
.mv .eachTextAnime1 span,
.mv .eachTextAnime2 span {
  opacity: 0;
  transform: translateY(15px);
  display: inline-block;
}
.mv .eachTextAnime1.appeartext1 span {
  -webkit-animation: text_anime_on_1 0.5s forwards;
          animation: text_anime_on_1 0.5s forwards;
  -webkit-animation-delay: calc(var(--i) * 0.04s);
          animation-delay: calc(var(--i) * 0.04s);
}
@-webkit-keyframes text_anime_on_1 {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes text_anime_on_1 {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.mv .eachTextAnime2.appeartext2 span {
  -webkit-animation: text_anime_on_2 0.5s forwards;
          animation: text_anime_on_2 0.5s forwards;
  -webkit-animation-delay: calc(var(--i) * 0.04s + 0.5s);
          animation-delay: calc(var(--i) * 0.04s + 0.5s);
}
@-webkit-keyframes text_anime_on_2 {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes text_anime_on_2 {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#news {
  padding-block: 80px 140px;
  position: relative;
}
@media (max-width: 500px) {
  #news {
    padding-block: 40px 60px;
  }
}
#news .wave-top {
  position: absolute;
  top: -100px;
}
@media (max-width: 500px) {
  #news .wave-top {
    height: 40px;
    top: -40px;
  }
}
#news .wave-bottom {
  position: absolute;
  bottom: -42px;
}
#news .wrapper {
  display: flex;
  align-items: flex-start;
  gap: 50px;
}
@media (max-width: 768px) {
  #news .wrapper {
    gap: 20px;
  }
}
@media (max-width: 650px) {
  #news .wrapper {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
#news .left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 31px;
}
#news .left .title {
  width: 215px;
  position: relative;
}
@media (max-width: 768px) {
  #news .left .title {
    width: 165px;
  }
}
@media (max-width: 500px) {
  #news .left .title {
    width: 140px;
  }
}
#news .left .title h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  margin-bottom: initial;
}
@media (max-width: 500px) {
  #news .left .title h2 {
    font-size: 1.72rem;
  }
}
#news .btn a {
  background-color: var(--blue-color);
}
#news .btn a .arrow {
  color: var(--blue-color);
}
#news .inner {
  flex: 1;
  position: relative;
}
#news .right {
  border: 3px solid var(--light-blue-color);
  border-radius: 20px;
  background-color: var(--bg-blue-color);
  padding: 60px 40px;
}
@media (max-width: 768px) {
  #news .right {
    padding: 40px 20px;
  }
}
#news .right li:not(:first-child) {
  margin-top: 40px;
}
@media (max-width: 500px) {
  #news .right li:not(:first-child) {
    margin-top: 20px;
  }
}
#news .right li a {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  line-height: 1.7;
}
@media (max-width: 500px) {
  #news .right li a {
    align-items: flex-end;
  }
}
#news .right li .text-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}
@media (max-width: 1000px) {
  #news .right li .text-wrapper .content {
    width: 100%;
  }
}
#news .right li .classification {
  color: var(--white-color);
  display: inline-block;
  width: 105px;
  border-radius: 20px;
  text-align: center;
  flex-shrink: 0;
}
#news .right li .classification.news-cl {
  background-color: #6CBB5A;
}
#news .right li .classification.important-cl {
  background-color: #F39953;
}
#news .right li .circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--light-blue-color);
  position: relative;
  flex-shrink: 0;
}
#news .right li .circle .arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#news .right li .circle .arrow::before {
  content: "→";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white-color);
}
#news .sea-otter {
  position: absolute;
  bottom: -50px;
  right: -17px;
  transform: translateY(0) rotate(30deg);
  width: 75px;
  -webkit-animation: sea-otter 10s infinite linear;
          animation: sea-otter 10s infinite linear;
}
@media (max-width: 1000px) {
  #news .sea-otter {
    right: -8px;
  }
}
@media (max-width: 1000px) {
  #news .sea-otter {
    bottom: -100px;
  }
}
@media (max-width: 650px) {
  #news .sea-otter {
    bottom: initial;
    width: 50px;
    top: -100px;
    right: 97px;
  }
}
@media (max-width: 500px) {
  #news .sea-otter {
    width: 36px;
    top: -80px;
    right: 57px;
  }
}
@-webkit-keyframes sea-otter {
  0% {
    transform: translateY(0) rotate(30deg);
  }
  25% {
    transform: translateY(-10px) rotate(30deg);
  }
  50% {
    transform: translateY(-20px) rotate(30deg);
  }
  75% {
    transform: translateY(-10px) rotate(30deg);
  }
  100% {
    transform: translateY(0) rotate(30deg);
  }
}
@keyframes sea-otter {
  0% {
    transform: translateY(0) rotate(30deg);
  }
  25% {
    transform: translateY(-10px) rotate(30deg);
  }
  50% {
    transform: translateY(-20px) rotate(30deg);
  }
  75% {
    transform: translateY(-10px) rotate(30deg);
  }
  100% {
    transform: translateY(0) rotate(30deg);
  }
}
#news .bubble li {
  position: absolute;
  border: 2px solid var(--light-blue-color);
  border-radius: 50%;
  z-index: -1;
}
#news .bubble li:nth-child(1) {
  width: 75px;
  height: 75px;
  top: 1%;
  left: 5%;
}
#news .bubble li:nth-child(2) {
  width: 44px;
  height: 44px;
  top: 11%;
  left: 8%;
}
#news .bubble li:nth-child(3) {
  width: 19px;
  height: 19px;
  top: 0%;
  left: 15%;
}
#news .bubble li:nth-child(4) {
  width: 44px;
  height: 44px;
  top: 55%;
  left: 2%;
}
#news .bubble li:nth-child(5) {
  width: 75px;
  height: 75px;
  top: 63%;
  left: 4%;
}
#news .bubble li:nth-child(6) {
  width: 19px;
  height: 19px;
  top: 57%;
  left: 11%;
}
#news .bubble li:nth-child(7) {
  width: 19px;
  height: 19px;
  top: 80%;
  left: 11%;
}
#news .bubble li:nth-child(8) {
  width: 44px;
  height: 44px;
  top: 0%;
  right: 3%;
}
#news .bubble li:nth-child(9) {
  width: 19px;
  height: 19px;
  top: 14%;
  right: 4%;
}
#news .bubble li:nth-child(10) {
  width: 37px;
  height: 37px;
  top: 19%;
  right: 7%;
}
#news .bubble li:nth-child(11) {
  width: 37px;
  height: 37px;
  top: 42%;
  right: 1%;
}
#news .bubble li:nth-child(12) {
  width: 75px;
  height: 75px;
  top: 73%;
  right: 4%;
}
#news .bubble li:nth-child(13) {
  width: 44px;
  height: 44px;
  top: 82%;
  right: 3%;
}
#news .bubble li:nth-child(14) {
  width: 19px;
  height: 19px;
  top: 93%;
  right: 11%;
}

#clinic-hours {
  position: relative;
  padding-block: 100px 140px;
}
@media (max-width: 500px) {
  #clinic-hours {
    padding-block: 20px 60px;
  }
}
#clinic-hours::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(#8ADAF3, #C2F0FF);
  background-size: cover;
  transform: scaleY(-1);
  z-index: -1;
}
#clinic-hours::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--light-blue-color);
  z-index: -2;
}
#clinic-hours .wave-bottom {
  bottom: 0;
  position: absolute;
}
#clinic-hours .text {
  font-size: 0.93rem;
}
#clinic-hours .btn {
  text-align: center;
  margin-top: 40px;
  display: block;
}
@media (max-width: 500px) {
  #clinic-hours .btn {
    margin-top: 20px;
  }
}
#clinic-hours .btn a {
  background-color: var(--btn-blue-color);
}
#clinic-hours .btn a .arrow {
  color: var(--btn-blue-color);
}
#clinic-hours .dec li {
  position: absolute;
  z-index: -1;
}
#clinic-hours .dec .bubble {
  background-color: var(--white-color);
  border-radius: 50%;
  filter: blur(4px);
}
#clinic-hours .dec .bubble:nth-of-type(1) {
  width: 39px;
  height: 33px;
  top: 5%;
  left: 10%;
}
@media (max-width: 650px) {
  #clinic-hours .dec .bubble:nth-of-type(1) {
    width: 29px;
    height: 23px;
    left: 17%;
  }
}
@media (max-width: 500px) {
  #clinic-hours .dec .bubble:nth-of-type(1) {
    width: 19px;
    height: 13px;
    top: 3%;
  }
}
#clinic-hours .dec .bubble:nth-of-type(2) {
  width: 20px;
  height: 20px;
  top: 10%;
  left: 13%;
}
@media (max-width: 650px) {
  #clinic-hours .dec .bubble:nth-of-type(2) {
    width: 15px;
    height: 15px;
    top: 9%;
    left: 20%;
  }
}
@media (max-width: 500px) {
  #clinic-hours .dec .bubble:nth-of-type(2) {
    width: 7px;
    height: 7px;
    top: 6%;
    left: 22%;
  }
}
#clinic-hours .dec .bubble:nth-of-type(3) {
  width: 48px;
  height: 41px;
  top: clamp(133px, 133px + 230 * (100vw - 1280px) / 160, 363px);
  left: 43px;
}
@media (max-width: 650px) {
  #clinic-hours .dec .bubble:nth-of-type(3) {
    width: 38px;
    height: 31px;
  }
}
@media (max-width: 500px) {
  #clinic-hours .dec .bubble:nth-of-type(3) {
    width: 24px;
    top: 65px;
    left: 24px;
  }
}
#clinic-hours .dec .bubble:nth-of-type(4) {
  width: 20px;
  height: 20px;
  top: clamp(286px, 286px + 230 * (100vw - 1280px) / 160, 516px);
  left: 129px;
}
@media (max-width: 768px) {
  #clinic-hours .dec .bubble:nth-of-type(4) {
    top: 276px;
    left: 179px;
  }
}
@media (max-width: 500px) {
  #clinic-hours .dec .bubble:nth-of-type(4) {
    width: 7px;
    height: 7px;
    top: 134px;
    left: 100px;
  }
}
#clinic-hours .dec .bubble:nth-of-type(5) {
  width: 48px;
  height: 41px;
  top: 7%;
  right: 3%;
}
@media (max-width: 500px) {
  #clinic-hours .dec .bubble:nth-of-type(5) {
    width: 24px;
    height: 20px;
    top: 4%;
    ruby-align: 7%;
  }
}
#clinic-hours .dec .bubble:nth-of-type(6) {
  width: 20px;
  height: 20px;
  top: clamp(206px, 206px + 100 * (100vw - 1280px) / 160, 306px);
  right: 114px;
}
@media (max-width: 500px) {
  #clinic-hours .dec .bubble:nth-of-type(6) {
    width: 10px;
    height: 10px;
    top: 94px;
    right: 60px;
  }
}
#clinic-hours .dec .bubble:nth-of-type(7) {
  width: 39px;
  height: 33px;
  bottom: clamp(270px, 270px + 140 * (100vw - 1280px) / 160, 410px);
  right: clamp(54px, 54px + 60 * (100vw - 1000px) / 280, 114px);
}
@media (max-width: 768px) {
  #clinic-hours .dec .bubble:nth-of-type(7) {
    width: 30px;
    height: 27px;
    bottom: 300px;
  }
}
@media (max-width: 500px) {
  #clinic-hours .dec .bubble:nth-of-type(7) {
    width: 24px;
    height: 21px;
    bottom: 320px;
  }
}
#clinic-hours .dec .bubble:nth-of-type(8) {
  width: 10px;
  height: 10px;
  bottom: clamp(270px, 270px + 140 * (100vw - 1280px) / 160, 410px);
  right: clamp(26px, 26px + 60 * (100vw - 1000px) / 280, 86px);
}
@media (max-width: 768px) {
  #clinic-hours .dec .bubble:nth-of-type(8) {
    bottom: 297px;
  }
}
@media (max-width: 500px) {
  #clinic-hours .dec .bubble:nth-of-type(8) {
    width: 7px;
    height: 7px;
    bottom: 310px;
  }
}
#clinic-hours .dec .bubble:nth-of-type(9) {
  width: 20px;
  height: 20px;
  bottom: clamp(232px, 232px + 140 * (100vw - 1280px) / 160, 372px);
  right: clamp(40px, 40px + 60 * (100vw - 1000px) / 280, 100px);
}
@media (max-width: 768px) {
  #clinic-hours .dec .bubble:nth-of-type(9) {
    width: 15px;
    height: 15px;
    bottom: 277px;
  }
}
@media (max-width: 500px) {
  #clinic-hours .dec .bubble:nth-of-type(9) {
    width: 10px;
    height: 10px;
    bottom: 300px;
    right: 47px;
  }
}
#clinic-hours .dec .air {
  border: 2px solid var(--white-color);
  border-radius: 50%;
  aspect-ratio: 1/1;
}
#clinic-hours .dec .air:nth-of-type(10) {
  width: 44px;
  top: clamp(102px, 102px + 230 * (100vw - 1280px) / 160, 332px);
  left: 43px;
}
@media (max-width: 650px) {
  #clinic-hours .dec .air:nth-of-type(10) {
    width: 34px;
    top: 114px;
    left: 27px;
  }
}
@media (max-width: 500px) {
  #clinic-hours .dec .air:nth-of-type(10) {
    width: 24px;
    top: 54px;
    left: 27px;
  }
}
#clinic-hours .dec .air:nth-of-type(11) {
  width: 75px;
  top: clamp(163px, 163px + 230 * (100vw - 1280px) / 160, 393px);
  left: 86px;
}
@media (max-width: 650px) {
  #clinic-hours .dec .air:nth-of-type(11) {
    width: 65px;
    left: 96px;
  }
}
@media (max-width: 500px) {
  #clinic-hours .dec .air:nth-of-type(11) {
    width: 30px;
    top: 94px;
    left: 68px;
  }
}
#clinic-hours .dec .air:nth-of-type(12) {
  width: 44px;
  top: clamp(207px, 207px + 230 * (100vw - 1280px) / 160, 437px);
  left: 72px;
}
@media (max-width: 650px) {
  #clinic-hours .dec .air:nth-of-type(12) {
    width: 34px;
    left: 84px;
  }
}
@media (max-width: 500px) {
  #clinic-hours .dec .air:nth-of-type(12) {
    width: 22px;
    top: 111px;
    left: 59px;
  }
}
#clinic-hours .dec .air:nth-of-type(13) {
  width: 37px;
  top: clamp(245px, 245px + 140 * (100vw - 1280px) / 160, 385px);
  right: 43px;
}
@media (max-width: 500px) {
  #clinic-hours .dec .air:nth-of-type(13) {
    width: 18px;
    top: 110px;
    right: 36px;
  }
}
#clinic-hours .dec .fish {
  width: clamp(123px, 123px + 42 * (100vw - 1000px) / 280, 165px);
  transform: scaleX(-1);
  bottom: 18%;
  right: 10%;
}
@media (max-width: 1000px) {
  #clinic-hours .dec .fish {
    bottom: 26%;
  }
}
@media (max-width: 768px) {
  #clinic-hours .dec .fish {
    width: 100px;
    bottom: 31%;
  }
}
@media (max-width: 650px) {
  #clinic-hours .dec .fish {
    width: 80px;
  }
}
@media (max-width: 500px) {
  #clinic-hours .dec .fish {
    width: 60px;
    bottom: 32%;
    right: 15%;
  }
}

#calender {
  position: relative;
  padding-block: 100px 140px;
}
@media (max-width: 500px) {
  #calender {
    padding-block: 20px 50px;
  }
}
#calender::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/calender-bg2.jpg);
  opacity: 1;
  background-size: cover;
  z-index: -3;
  filter: blur(4px);
}
#calender::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-beige-color);
  opacity: 0.7;
  z-index: -2;
}
#calender .wave-top {
  position: absolute;
  top: -3px;
  z-index: -1;
}
#calender .calender {
  display: flex;
  align-items: flex-start;
  gap: 66px;
}
#calender .calender li {
  width: 50%;
}
@media (max-width: 500px) {
  #calender .calender li {
    width: 100%;
  }
}
@media (max-width: 500px) {
  #calender .calender li:first-of-type {
    display: none;
  }
}
#calender .text {
  margin-top: 20px;
}

#medical {
  position: relative;
  padding-block: 100px;
}
@media (max-width: 500px) {
  #medical {
    padding-block: 20px 0;
  }
}
#medical .wave-top {
  position: absolute;
  top: -100px;
}
@media (max-width: 500px) {
  #medical .wave-top {
    height: 40px;
    top: -40px;
  }
}
#medical .medical-grid .item .icon {
  transition: all 0.3s;
}
#medical .medical-grid .item p {
  background-color: var(--light-blue-color);
  line-height: 1.3;
}
@media (max-width: 500px) {
  #medical .medical-grid .item p {
    text-wrap: nowrap;
  }
}
#medical .medical-grid .item:hover .icon {
  border: 3px solid var(--light-blue-color);
}
#medical .illustration li {
  position: absolute;
  filter: drop-shadow(0 4px 4px var(--shadow-color));
  z-index: 1;
}
#medical .illustration .hermit-crab1 {
  width: 61px;
  top: 10%;
  left: 5%;
  transform: translateX(0) rotate(-5deg) scaleX(-1);
  -webkit-animation: hermitcrabA 20s infinite linear;
          animation: hermitcrabA 20s infinite linear;
}
@media (max-width: 768px) {
  #medical .illustration .hermit-crab1 {
    width: 50px;
  }
}
@media (max-width: 500px) {
  #medical .illustration .hermit-crab1 {
    width: 26px;
    top: 110px;
  }
}
@-webkit-keyframes hermitcrabA {
  0% {
    transform: translateX(0) rotate(-5deg) scaleX(-1);
  }
  10% {
    transform: translateX(20px) rotate(5deg) scaleX(-1);
  }
  20% {
    transform: translateX(40px) rotate(-5deg) scaleX(-1);
  }
  30% {
    transform: translateX(60px) rotate(5deg) scaleX(-1);
  }
  40% {
    transform: translateX(80px) rotate(-5deg) scaleX(-1);
  }
  49% {
    transform: translateX(100px) rotate(5deg) scaleX(-1);
  }
  50% {
    transform: translateX(100px) rotate(5deg);
  }
  60% {
    transform: translateX(80px) rotate(-5deg);
  }
  70% {
    transform: translateX(60px) rotate(5deg);
  }
  80% {
    transform: translateX(40px) rotate(-5deg);
  }
  90% {
    transform: translateX(20px) rotate(5deg);
  }
  99% {
    transform: translateX(0) rotate(-5deg);
  }
  100% {
    transform: translateX(0) rotate(-5deg) scaleX(-1);
  }
}
@keyframes hermitcrabA {
  0% {
    transform: translateX(0) rotate(-5deg) scaleX(-1);
  }
  10% {
    transform: translateX(20px) rotate(5deg) scaleX(-1);
  }
  20% {
    transform: translateX(40px) rotate(-5deg) scaleX(-1);
  }
  30% {
    transform: translateX(60px) rotate(5deg) scaleX(-1);
  }
  40% {
    transform: translateX(80px) rotate(-5deg) scaleX(-1);
  }
  49% {
    transform: translateX(100px) rotate(5deg) scaleX(-1);
  }
  50% {
    transform: translateX(100px) rotate(5deg);
  }
  60% {
    transform: translateX(80px) rotate(-5deg);
  }
  70% {
    transform: translateX(60px) rotate(5deg);
  }
  80% {
    transform: translateX(40px) rotate(-5deg);
  }
  90% {
    transform: translateX(20px) rotate(5deg);
  }
  99% {
    transform: translateX(0) rotate(-5deg);
  }
  100% {
    transform: translateX(0) rotate(-5deg) scaleX(-1);
  }
}
#medical .illustration .hermit-crab2 {
  width: 74px;
  top: 60%;
  right: 5%;
  transform: translateX(0) rotate(-5deg);
  -webkit-animation: hermitcrabB 20s infinite linear;
          animation: hermitcrabB 20s infinite linear;
  -webkit-animation-delay: -2s;
          animation-delay: -2s;
}
@media (max-width: 768px) {
  #medical .illustration .hermit-crab2 {
    width: 50px;
    top: 69%;
  }
}
@media (max-width: 500px) {
  #medical .illustration .hermit-crab2 {
    width: 26px;
    top: initial;
    bottom: 65px;
  }
}
@-webkit-keyframes hermitcrabB {
  0% {
    transform: translateX(0) rotate(-5deg) scaleX(-1);
  }
  10% {
    transform: translateX(-10px) rotate(5deg) scaleX(-1);
  }
  20% {
    transform: translateX(-20px) rotate(-5deg) scaleX(-1);
  }
  30% {
    transform: translateX(-30px) rotate(5deg) scaleX(-1);
  }
  40% {
    transform: translateX(-40px) rotate(-5deg) scaleX(-1);
  }
  49% {
    transform: translateX(-50px) rotate(5deg) scaleX(-1);
  }
  50% {
    transform: translateX(-50px) rotate(5deg);
  }
  60% {
    transform: translateX(-40px) rotate(-5deg);
  }
  70% {
    transform: translateX(-30px) rotate(5deg);
  }
  80% {
    transform: translateX(-20px) rotate(-5deg);
  }
  90% {
    transform: translateX(-10x) rotate(5deg);
  }
  99% {
    transform: translateX(0) rotate(-5deg);
  }
  100% {
    transform: translateX(0) rotate(-5deg);
  }
}
@keyframes hermitcrabB {
  0% {
    transform: translateX(0) rotate(-5deg) scaleX(-1);
  }
  10% {
    transform: translateX(-10px) rotate(5deg) scaleX(-1);
  }
  20% {
    transform: translateX(-20px) rotate(-5deg) scaleX(-1);
  }
  30% {
    transform: translateX(-30px) rotate(5deg) scaleX(-1);
  }
  40% {
    transform: translateX(-40px) rotate(-5deg) scaleX(-1);
  }
  49% {
    transform: translateX(-50px) rotate(5deg) scaleX(-1);
  }
  50% {
    transform: translateX(-50px) rotate(5deg);
  }
  60% {
    transform: translateX(-40px) rotate(-5deg);
  }
  70% {
    transform: translateX(-30px) rotate(5deg);
  }
  80% {
    transform: translateX(-20px) rotate(-5deg);
  }
  90% {
    transform: translateX(-10x) rotate(5deg);
  }
  99% {
    transform: translateX(0) rotate(-5deg);
  }
  100% {
    transform: translateX(0) rotate(-5deg);
  }
}
#medical .illustration .shellfish1 {
  width: 35px;
  top: 45%;
  left: 30%;
  transform: rotate(23deg);
}
@media (max-width: 768px) {
  #medical .illustration .shellfish1 {
    width: 20px;
    left: 40%;
  }
}
@media (max-width: 500px) {
  #medical .illustration .shellfish1 {
    width: 16px;
    top: 33%;
    left: 43%;
  }
}
#medical .illustration .shellfish2 {
  width: 38px;
  top: 80%;
  left: 10%;
}
@media (max-width: 500px) {
  #medical .illustration .shellfish2 {
    width: 17px;
    top: 64%;
    left: 53%;
  }
}
#medical .illustration .shellfish3 {
  width: 38px;
  top: 20%;
  right: 10%;
}
@media (max-width: 650px) {
  #medical .illustration .shellfish3 {
    top: 14%;
  }
}
@media (max-width: 500px) {
  #medical .illustration .shellfish3 {
    width: 18px;
    top: 75%;
    right: 90%;
  }
}
#medical .illustration .shellfish4 {
  width: 40px;
  top: 78%;
  right: 10%;
  transform: rotate(42deg);
}
@media (max-width: 768px) {
  #medical .illustration .shellfish4 {
    width: 30px;
    top: 88%;
    right: 3%;
  }
}
@media (max-width: 500px) {
  #medical .illustration .shellfish4 {
    width: 15px;
    top: initial;
    bottom: -30px;
  }
}
#medical .illustration .sand-castle {
  width: 120px;
  top: 65%;
  right: 12%;
}
@media (max-width: 768px) {
  #medical .illustration .sand-castle {
    width: 90px;
    top: 75%;
    right: 6%;
  }
}
@media (max-width: 500px) {
  #medical .illustration .sand-castle {
    width: 58px;
    top: initial;
    bottom: 0;
    left: initial;
    right: 33px;
  }
}

#professional {
  position: relative;
  background-color: var(--bg-sand-color);
  padding-bottom: 140px;
}
@media (max-width: 500px) {
  #professional {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}
@media (max-width: 650px) {
  #professional .medical-grid .item:last-child {
    grid-column: 3/span 3;
  }
}
#professional .medical-grid .item:nth-of-type(2) p {
  text-wrap: nowrap;
  width: 100%;
  padding: 10px;
}
@media (max-width: 768px) {
  #professional .medical-grid .item:nth-of-type(2) p {
    padding: 10px 5px;
  }
}
#professional .medical-grid .item .icon {
  transition: all 0.3s;
}
#professional .medical-grid .item p {
  color: var(--white-color);
  background-color: var(--blue-color);
}
#professional .medical-grid .item:hover .icon {
  border: 3px solid var(--blue-color);
}
#professional .illustration li {
  position: absolute;
  filter: drop-shadow(0 4px 4px var(--shadow-color));
  z-index: 1;
}
#professional .illustration .turtle {
  width: 151px;
  top: 10%;
  left: 5%;
  transform: translateX(0) rotate(5deg) scaleX(-1);
  -webkit-animation: turtle-pr 20s infinite linear;
          animation: turtle-pr 20s infinite linear;
}
@media (max-width: 768px) {
  #professional .illustration .turtle {
    width: 111px;
    top: 13%;
  }
}
@media (max-width: 500px) {
  #professional .illustration .turtle {
    display: none;
  }
}
@-webkit-keyframes turtle-pr {
  0% {
    transform: translateX(0) rotate(5deg) scaleX(-1);
  }
  10% {
    transform: translateX(20px) rotate(2deg) scaleX(-1);
  }
  20% {
    transform: translateX(40px) rotate(5deg) scaleX(-1);
  }
  30% {
    transform: translateX(60px) rotate(2deg) scaleX(-1);
  }
  40% {
    transform: translateX(80px) rotate(5deg) scaleX(-1);
  }
  49% {
    transform: translateX(100px) rotate(2deg) scaleX(-1);
  }
  50% {
    transform: translateX(100px) rotate(2deg);
  }
  60% {
    transform: translateX(80px) rotate(5deg);
  }
  70% {
    transform: translateX(60px) rotate(2deg);
  }
  80% {
    transform: translateX(40px) rotate(5deg);
  }
  90% {
    transform: translateX(20px) rotate(2deg);
  }
  99% {
    transform: translateX(0) rotate(5deg);
  }
  100% {
    transform: translateX(0) rotate(5deg) scaleX(-1);
  }
}
@keyframes turtle-pr {
  0% {
    transform: translateX(0) rotate(5deg) scaleX(-1);
  }
  10% {
    transform: translateX(20px) rotate(2deg) scaleX(-1);
  }
  20% {
    transform: translateX(40px) rotate(5deg) scaleX(-1);
  }
  30% {
    transform: translateX(60px) rotate(2deg) scaleX(-1);
  }
  40% {
    transform: translateX(80px) rotate(5deg) scaleX(-1);
  }
  49% {
    transform: translateX(100px) rotate(2deg) scaleX(-1);
  }
  50% {
    transform: translateX(100px) rotate(2deg);
  }
  60% {
    transform: translateX(80px) rotate(5deg);
  }
  70% {
    transform: translateX(60px) rotate(2deg);
  }
  80% {
    transform: translateX(40px) rotate(5deg);
  }
  90% {
    transform: translateX(20px) rotate(2deg);
  }
  99% {
    transform: translateX(0) rotate(5deg);
  }
  100% {
    transform: translateX(0) rotate(5deg) scaleX(-1);
  }
}
#professional .illustration .crab {
  width: 63px;
  top: 28%;
  right: 5%;
  transform: translateX(0) rotate(-5deg);
  -webkit-animation: crab-pr 20s infinite linear;
          animation: crab-pr 20s infinite linear;
  -webkit-animation-delay: -2s;
          animation-delay: -2s;
}
@media (max-width: 650px) {
  #professional .illustration .crab {
    width: 45px;
    top: 16px;
  }
}
@media (max-width: 500px) {
  #professional .illustration .crab {
    width: 33px;
    top: 55%;
  }
}
@-webkit-keyframes crab-pr {
  0% {
    transform: translateX(0) rotate(-5deg);
  }
  10% {
    transform: translateX(-20px) rotate(5deg);
  }
  20% {
    transform: translateX(-40px) rotate(-5deg);
  }
  30% {
    transform: translateX(-60px) rotate(5deg);
  }
  40% {
    transform: translateX(-80px) rotate(-5deg);
  }
  50% {
    transform: translateX(-100px) rotate(5deg);
  }
  60% {
    transform: translateX(-80px) rotate(-5deg);
  }
  70% {
    transform: translateX(-60px) rotate(5deg);
  }
  80% {
    transform: translateX(-40px) rotate(-5deg);
  }
  90% {
    transform: translateX(-20px) rotate(5deg);
  }
  100% {
    transform: translateX(0) rotate(-5deg);
  }
}
@keyframes crab-pr {
  0% {
    transform: translateX(0) rotate(-5deg);
  }
  10% {
    transform: translateX(-20px) rotate(5deg);
  }
  20% {
    transform: translateX(-40px) rotate(-5deg);
  }
  30% {
    transform: translateX(-60px) rotate(5deg);
  }
  40% {
    transform: translateX(-80px) rotate(-5deg);
  }
  50% {
    transform: translateX(-100px) rotate(5deg);
  }
  60% {
    transform: translateX(-80px) rotate(-5deg);
  }
  70% {
    transform: translateX(-60px) rotate(5deg);
  }
  80% {
    transform: translateX(-40px) rotate(-5deg);
  }
  90% {
    transform: translateX(-20px) rotate(5deg);
  }
  100% {
    transform: translateX(0) rotate(-5deg);
  }
}
#professional .illustration .shellfish1 {
  width: 41px;
  top: 60%;
  left: 5%;
  transform: rotate(-36deg);
}
@media (max-width: 650px) {
  #professional .illustration .shellfish1 {
    width: 27px;
  }
}
@media (max-width: 500px) {
  #professional .illustration .shellfish1 {
    width: 15px;
    top: 55%;
  }
}
#professional .illustration .shellfish2 {
  width: 35px;
  top: 30%;
  left: 37%;
  transform: rotate(23deg);
}
@media (max-width: 650px) {
  #professional .illustration .shellfish2 {
    left: 45%;
  }
}
@media (max-width: 500px) {
  #professional .illustration .shellfish2 {
    width: 16px;
    top: 22%;
  }
}
#professional .illustration .shellfish3 {
  width: 38px;
  top: 65%;
  right: 30%;
}
@media (max-width: 650px) {
  #professional .illustration .shellfish3 {
    right: 15%;
  }
}
@media (max-width: 500px) {
  #professional .illustration .shellfish3 {
    width: 17px;
    top: 80%;
    right: initial;
    left: 25%;
  }
}

#features {
  position: relative;
  background-color: var(--bg-sea-color);
  padding-block: 100px 140px;
}
@media (max-width: 500px) {
  #features {
    padding-block: 20px 60px;
  }
}
#features .wave-wrapper {
  position: absolute;
  top: -100px;
  width: 100%;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 500px) {
  #features .wave-wrapper {
    top: -40px;
  }
}
@media (max-width: 500px) {
  #features .wave-top {
    height: 40px;
  }
}
#features .wave-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  overflow: hidden;
}
@media (max-width: 768px) {
  #features .wave-wrap {
    height: 30px;
  }
}
@media (max-width: 500px) {
  #features .wave-wrap {
    height: 20px;
  }
}
#features .wave-wrap img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: auto;
  -webkit-animation: wave-move 20s linear infinite;
          animation: wave-move 20s linear infinite;
}
@keyframes wave-move {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
#features .features-list {
  position: relative;
  z-index: 1;
}
#features .features-list .item {
  display: flex;
  align-items: center;
  gap: clamp(20px, 20px + 80 * (100vw - 768px) / 512, 100px);
  line-height: 1;
}
@media (max-width: 650px) {
  #features .features-list .item {
    flex-direction: column;
  }
}
@media (max-width: 650px) and (max-width: 500px) {
  #features .features-list .item {
    gap: 20px;
  }
}
#features .features-list .item:not(:first-child) {
  margin-top: 60px;
}
#features .features-list .item .pct {
  position: relative;
}
#features .features-list .item .pct-sub {
  position: absolute;
}
#features .features-list .item:nth-child(1), #features .features-list .item:nth-child(3) {
  margin-left: auto;
  padding-left: 4%;
}
@media (max-width: 500px) {
  #features .features-list .item:nth-child(1), #features .features-list .item:nth-child(3) {
    padding-left: 20px;
  }
}
@media (max-width: 500px) {
  #features .features-list .item:nth-child(1) .text, #features .features-list .item:nth-child(3) .text {
    padding-right: 20px;
  }
}
#features .features-list .item:nth-child(1) .pct-main img, #features .features-list .item:nth-child(3) .pct-main img {
  border-radius: 200px 0 0 0;
}
#features .features-list .item:nth-child(1) .pct-sub {
  bottom: -17px;
  left: -21px;
}
@media (max-width: 500px) {
  #features .features-list .item:nth-child(1) .pct-sub {
    left: initial;
    right: 20px;
  }
}
#features .features-list .item:nth-child(1) .pct-sub li {
  width: 83px;
}
@media (max-width: 500px) {
  #features .features-list .item:nth-child(1) .pct-sub li {
    width: 56px;
  }
}
#features .features-list .item:nth-child(1) .pct .fish {
  position: absolute;
  top: -85px;
  right: 5px;
  width: 103px;
  -webkit-animation: threefish 2s infinite ease-in;
          animation: threefish 2s infinite ease-in;
}
@media (max-width: 650px) {
  #features .features-list .item:nth-child(1) .pct .fish {
    width: 83px;
    top: -19px;
  }
}
@media (max-width: 500px) {
  #features .features-list .item:nth-child(1) .pct .fish {
    width: 52px;
  }
}
@-webkit-keyframes threefish {
  0% {
    transform: translateX(0);
  }
  10% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes threefish {
  0% {
    transform: translateX(0);
  }
  10% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0);
  }
}
#features .features-list .item:nth-child(2) {
  margin-right: auto;
  padding-right: 4%;
}
@media (max-width: 650px) {
  #features .features-list .item:nth-child(2) {
    padding-right: 20px;
    flex-direction: column-reverse;
  }
}
@media (max-width: 650px) {
  #features .features-list .item:nth-child(2) .text {
    padding-left: 20px;
  }
}
#features .features-list .item:nth-child(2) .pct-main img {
  border-radius: 0 200px 0 0;
}
#features .features-list .item:nth-child(2) .pct-sub {
  width: 73px;
  bottom: -21px;
  left: 2px;
}
@media (max-width: 500px) {
  #features .features-list .item:nth-child(2) .pct-sub {
    width: 44px;
    bottom: -10px;
  }
}
#features .features-list .item:nth-child(3) .pct-sub {
  bottom: -38px;
  right: 13px;
}
@media (max-width: 500px) {
  #features .features-list .item:nth-child(3) .pct-sub {
    bottom: -15px;
  }
}
#features .features-list .item:nth-child(3) .pct-sub li:nth-child(1) {
  width: 75px;
}
@media (max-width: 768px) {
  #features .features-list .item:nth-child(3) .pct-sub li:nth-child(1) {
    width: 58px;
  }
}
@media (max-width: 500px) {
  #features .features-list .item:nth-child(3) .pct-sub li:nth-child(1) {
    width: 47px;
  }
}
#features .features-list .item:nth-child(3) .pct-sub li:nth-child(2) {
  width: 97px;
}
@media (max-width: 768px) {
  #features .features-list .item:nth-child(3) .pct-sub li:nth-child(2) {
    width: 77px;
  }
}
@media (max-width: 500px) {
  #features .features-list .item:nth-child(3) .pct-sub li:nth-child(2) {
    width: 61px;
  }
}
#features .features-list .item .text,
#features .features-list .item .pct {
  width: 50%;
}
@media (max-width: 650px) {
  #features .features-list .item .text,
#features .features-list .item .pct {
    width: 100%;
  }
}
#features .features-list .item .fadein-num {
  font-size: clamp(3.5rem, 56px + 8 * (100vw - 768px) / 512, 4rem);
  font-weight: bold;
  color: var(--blue-color);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 1.5s ease;
}
@media (max-width: 500px) {
  #features .features-list .item .fadein-num {
    font-size: 2.8rem;
    margin-bottom: 10px;
  }
}
#features .features-list .item h3 {
  position: relative;
  line-height: 1.5;
}
#features .features-list .item h3::before, #features .features-list .item h3::after {
  content: "";
  position: absolute;
  background-color: var(--white-color);
  border-radius: 50%;
  filter: blur(4px);
}
#features .features-list .item h3::before {
  width: 39px;
  height: 33px;
  top: -15px;
  left: -60px;
}
@media (max-width: 500px) {
  #features .features-list .item h3::before {
    width: 19.5px;
    height: 16.5px;
    left: -41px;
  }
}
#features .features-list .item h3::after {
  width: 20px;
  height: 20px;
  top: 15px;
  left: -22px;
}
@media (max-width: 500px) {
  #features .features-list .item h3::after {
    width: 10px;
    height: 10px;
    top: 10px;
    left: -15px;
  }
}
#features .features-list .item .content {
  font-size: clamp(1rem, 16px + 4 * (100vw - 768px) / 512, 1.25rem);
  color: var(--white-color);
  line-height: 1.5;
  margin-top: 20px;
}
@media (max-width: 500px) {
  #features .features-list .item .content {
    font-size: 1rem;
  }
}
#features .features-list .item .content .under-dot {
  border-bottom: 2px dotted var(--under-dot-color);
}
#features .features-list .item ul {
  display: flex;
}
#features .features-list .item .map {
  width: 199px;
  margin-top: 20px;
}
#features .features-list .fish1,
#features .features-list .fish2 {
  position: absolute;
  width: 311px;
  z-index: -1;
}
@media (max-width: 768px) {
  #features .features-list .fish1,
#features .features-list .fish2 {
    width: 171px;
  }
}
@media (max-width: 500px) {
  #features .features-list .fish1,
#features .features-list .fish2 {
    width: 135px;
  }
}
#features .features-list .fish1 {
  top: 25%;
  left: 50%;
  transform: translateX(-50%) rotate(-23deg);
}
@media (max-width: 768px) {
  #features .features-list .fish1 {
    top: 30%;
  }
}
@media (max-width: 500px) {
  #features .features-list .fish1 {
    top: 30%;
    left: 65%;
  }
}
#features .features-list .fish2 {
  bottom: 25%;
  left: 50%;
  transform: translateX(-50%) rotate(23deg) scaleX(-1);
}
@media (max-width: 768px) {
  #features .features-list .fish2 {
    bottom: 27%;
  }
}
@media (max-width: 650px) {
  #features .features-list .fish2 {
    bottom: 32%;
  }
}
@media (max-width: 500px) {
  #features .features-list .fish2 {
    bottom: 33%;
    left: 40%;
  }
}
#features .illustration li {
  position: absolute;
  z-index: 2;
}
#features .illustration .dolphin {
  top: 50px;
  left: 0;
  width: clamp(212px, 212px + 50 * (100vw - 768px) / 512, 262px);
  transform: translateX(0) scaleX(-1);
  -webkit-animation: dolphin 10s infinite linear;
          animation: dolphin 10s infinite linear;
}
@media (max-width: 768px) {
  #features .illustration .dolphin {
    top: 110px;
    width: clamp(162px, 162px + 50 * (100vw - 500px) / 268, 212px);
  }
}
@media (max-width: 500px) {
  #features .illustration .dolphin {
    width: 117px;
    top: 80px;
  }
}
@-webkit-keyframes dolphin {
  0% {
    transform: translateX(0) scaleX(-1);
  }
  40% {
    transform: translateX(40px) scaleX(-1);
  }
  50% {
    transform: translateX(50px) scaleX(-1);
  }
  60% {
    transform: translateX(40px);
  }
  90% {
    transform: translateX(10px);
  }
  0% {
    transform: translateX(0) scaleX(-1);
  }
}
@keyframes dolphin {
  0% {
    transform: translateX(0) scaleX(-1);
  }
  40% {
    transform: translateX(40px) scaleX(-1);
  }
  50% {
    transform: translateX(50px) scaleX(-1);
  }
  60% {
    transform: translateX(40px);
  }
  90% {
    transform: translateX(10px);
  }
  0% {
    transform: translateX(0) scaleX(-1);
  }
}
#features .illustration .jellyfish {
  bottom: clamp(10px, 10px + 120 * (100vw - 1000px) / 280, 130px);
  left: 20px;
  width: 74px;
  transform: rotate(11deg);
  -webkit-animation: jellyfish 7s infinite ease-in-out;
          animation: jellyfish 7s infinite ease-in-out;
}
@media (max-width: 500px) {
  #features .illustration .jellyfish {
    width: 34px;
    bottom: 19%;
    left: 70%;
    -webkit-animation: jellyfish-sp 7s infinite ease-in-out;
            animation: jellyfish-sp 7s infinite ease-in-out;
  }
}
@-webkit-keyframes jellyfish {
  0% {
    transform: translate(0, 0) rotate(11deg);
  }
  50% {
    transform: translate(10px, -20px) rotate(11deg);
  }
  100% {
    transform: translate(0, 0) rotate(11deg);
  }
}
@keyframes jellyfish {
  0% {
    transform: translate(0, 0) rotate(11deg);
  }
  50% {
    transform: translate(10px, -20px) rotate(11deg);
  }
  100% {
    transform: translate(0, 0) rotate(11deg);
  }
}
@-webkit-keyframes jellyfish-sp {
  0% {
    transform: translate(0, 0) rotate(-11deg);
  }
  50% {
    transform: translate(-10px, -20px) rotate(-11deg);
  }
  100% {
    transform: translate(0, 0) rotate(-11deg);
  }
}
@keyframes jellyfish-sp {
  0% {
    transform: translate(0, 0) rotate(-11deg);
  }
  50% {
    transform: translate(-10px, -20px) rotate(-11deg);
  }
  100% {
    transform: translate(0, 0) rotate(-11deg);
  }
}
#features .illustration .hermit-crab {
  bottom: 29%;
  right: 180px;
  width: 74px;
  transform: translateX(0) rotate(-5deg);
  -webkit-animation: hermitcrabB 20s infinite linear;
          animation: hermitcrabB 20s infinite linear;
}
@media (max-width: 768px) {
  #features .illustration .hermit-crab {
    width: 54px;
  }
}
@media (max-width: 650px) {
  #features .illustration .hermit-crab {
    bottom: 32%;
    right: 40px;
    width: 43px;
  }
}
@media (max-width: 500px) {
  #features .illustration .hermit-crab {
    width: 28px;
    right: 35px;
    bottom: 33%;
  }
}

#greeting {
  padding-top: 80px;
  position: relative;
}
@media (max-width: 500px) {
  #greeting {
    padding-top: 20px;
  }
}
@media (max-width: 500px) {
  #greeting .wrapper {
    padding-inline: 3%;
  }
}
#greeting .inner {
  display: flex;
  align-items: flex-start;
  gap: 51px;
}
@media (max-width: 768px) {
  #greeting .inner {
    gap: clamp(40px, 40px + 11 * (100vw - 650px) / 268, 51px);
  }
}
@media (max-width: 650px) {
  #greeting .inner {
    flex-direction: column;
    gap: 20px;
  }
}
#greeting .left {
  width: clamp(312px, 312px + 40 * (100vw - 768px) / 512, 352px);
}
@media (max-width: 768px) {
  #greeting .left {
    width: clamp(2.5rem, 257px + 55 * (100vw - 650px) / 118, 312px);
  }
}
@media (max-width: 650px) {
  #greeting .left {
    width: 100%;
  }
}
#greeting .left .portrait {
  width: 70%;
  margin-inline: auto;
}
#greeting .left .portrait img {
  border-radius: 20px;
}
#greeting .left .lead {
  font-size: clamp(1.3rem, 20.8px + 3.2 * (100vw - 768px) / 512, 1.5rem);
  font-weight: bold;
  text-align: center;
  margin-block: 40px 20px;
}
@media (max-width: 768px) {
  #greeting .left .lead {
    font-size: 1.5rem;
  }
}
@media (max-width: 500px) {
  #greeting .left .lead {
    font-size: 1.5rem;
    margin-block: 20px;
  }
}
@media (max-width: 650px) {
  #greeting .left .lead .br-tb {
    display: none;
  }
}
#greeting .left .name {
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
}
#greeting .content {
  flex: 1;
  margin-bottom: 40px;
}
@media (max-width: 500px) {
  #greeting .content {
    letter-spacing: 0.04rem;
    padding-inline: 20px;
  }
}
#greeting .content p {
  line-height: 1.5;
}
@media (max-width: 500px) {
  #greeting .content p {
    line-height: 1.8;
  }
}
#greeting .content p:not(:first-child) {
  margin-top: 1em;
}
#greeting .btn {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 650px) {
  #greeting .btn {
    justify-content: center;
  }
}
#greeting .btn a {
  background-color: var(--blue-color);
}
#greeting .btn a .arrow {
  color: var(--blue-color);
}
#greeting .swiper {
  margin-top: 100px;
}
#greeting .swiper-wrapper {
  transition-timing-function: linear;
}
#greeting .swiper-slide {
  width: calc((100% - 80px) / 5);
  /* PC：5枚分 */
}
@media (max-width: 768px) {
  #greeting .swiper-slide {
    width: calc((100% - 40px) / 3);
    /* タブレット：3枚 */
  }
}
@media (max-width: 500px) {
  #greeting .swiper-slide {
    width: 60%;
    /* スマホ：1枚（見切れ表示でOK）*/
  }
}
#greeting .swiper-slide img {
  border-radius: 20px;
}
@media (max-width: 500px) {
  #greeting .swiper-slide img {
    height: 200px;
  }
}
#greeting .dec li {
  position: absolute;
  z-index: -1;
}
#greeting .dec .logo-blue {
  width: 330px;
  bottom: 50px;
  left: 0;
}
@media (max-width: 650px) {
  #greeting .dec .logo-blue {
    width: clamp(258px, 258px + 72 * (100vw - 500px) / 150, 330px);
  }
}
@media (max-width: 500px) {
  #greeting .dec .logo-blue {
    width: 258px;
    bottom: 210px;
  }
}
#greeting .dec .bubble {
  border: 20px solid var(--blue-color);
  border-radius: 50%;
  opacity: 0.2;
  aspect-ratio: 1/1;
}
#greeting .dec .bubble:nth-of-type(2) {
  width: 339px;
  top: 50px;
  left: -100px;
}
@media (max-width: 500px) {
  #greeting .dec .bubble:nth-of-type(2) {
    left: -206px;
  }
}
#greeting .dec .bubble:nth-of-type(3) {
  width: 429px;
  top: 0;
  right: -80px;
}
@media (max-width: 500px) {
  #greeting .dec .bubble:nth-of-type(3) {
    display: none;
  }
}
#greeting .dec .bubble:nth-of-type(4) {
  width: 262px;
  top: 300px;
  right: -80px;
}
@media (max-width: 500px) {
  #greeting .dec .bubble:nth-of-type(4) {
    width: 316px;
    top: 53%;
    right: initial;
    left: -106px;
  }
}
#greeting .dec .bubble:nth-of-type(5) {
  width: 200px;
  bottom: 18%;
  left: 38%;
}
@media (max-width: 500px) {
  #greeting .dec .bubble:nth-of-type(5) {
    border: 14px solid var(--blue-color);
    left: initial;
    bottom: initial;
    top: 720px;
    right: -70px;
  }
}
#greeting .dec .bubble:nth-of-type(6) {
  width: 133px;
  bottom: 26%;
  left: 34%;
}
@media (max-width: 500px) {
  #greeting .dec .bubble:nth-of-type(6) {
    border: 14px solid var(--blue-color);
    left: initial;
    bottom: initial;
    top: 690px;
    right: 70px;
  }
}

#column {
  padding-block: 140px;
  position: relative;
}
@media (max-width: 500px) {
  #column {
    padding-block: 80px 60px;
  }
}
#column .column-list {
  display: flex;
  gap: clamp(20px, 20px + 30 * (100vw - 768px) / 512, 50px);
  margin-bottom: 80px;
}
@media (max-width: 650px) {
  #column .column-list {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
  }
}
#column .column-list li {
  width: 33.3333333333%;
}
@media (max-width: 650px) {
  #column .column-list li {
    width: 100%;
  }
}
#column .column-list li a {
  transition: all 0.5s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
#column .column-list li a:hover {
  opacity: 0.5;
}
#column .column-list li .thumbnail img {
  border-radius: 20px 20px 0 0;
  height: 210px;
}
@media (max-width: 650px) {
  #column .column-list li .thumbnail img {
    height: 300px;
  }
}
#column .column-list li .inner {
  background-color: var(--white-color);
  border-radius: 0 0 20px 20px;
  padding: 9px 11px 15px;
  line-height: 1;
  flex: 1;
  position: relative;
  z-index: 0;
}
#column .column-list li .inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--light-blue-color);
  opacity: 0.5;
  border-radius: 0 0 20px 20px;
  z-index: -1;
}
#column .column-list li .label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(0.75rem, 12px + 2 * (100vw - 768px) / 512, 0.875rem);
  margin-bottom: 10px;
}
@media (max-width: 650px) {
  #column .column-list li {
    font-size: 0, 875rem;
  }
}
#column .column-list li .category {
  color: var(--blue-color);
  background-color: var(--white-color);
  border-radius: 20px;
  padding: 5px 10px;
}
#column .column-list li .date {
  font-family: var(--ff-num);
}
#column .column-list li h4 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  line-height: 1.3;
}
#column .column-list li h4 .circle {
  display: inline-block;
  width: 34px;
  height: 34px;
  background-color: var(--white-color);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
#column .column-list li h4 .arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#column .column-list li h4 .arrow::before {
  content: "→";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--blue-color);
}
#column .btn {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 650px) {
  #column .btn {
    justify-content: center;
  }
}
#column .btn a {
  background-color: var(--blue-color);
}
#column .btn a .arrow {
  color: var(--blue-color);
}
#column .dec li {
  position: absolute;
  z-index: -1;
}
#column .dec .bubble {
  border: 20px solid var(--blue-color);
  border-radius: 50%;
  opacity: 0.2;
  aspect-ratio: 1/1;
}
#column .dec .bubble:nth-of-type(1) {
  width: 592px;
  top: -150px;
  right: -200px;
}
@media (max-width: 500px) {
  #column .dec .bubble:nth-of-type(1) {
    width: 316px;
    top: 40px;
  }
}
#column .dec .bubble:nth-of-type(2) {
  width: 231px;
  top: 50%;
  left: 50px;
}
@media (max-width: 500px) {
  #column .dec .bubble:nth-of-type(2) {
    top: 80%;
    left: -90px;
  }
}

#access {
  padding-block: 80px 140px;
}
@media (max-width: 500px) {
  #access {
    padding-block: 20px 80px;
  }
}
#access .wrapper {
  position: relative;
  z-index: 2;
}
#access .outer {
  display: flex;
  gap: 40px;
}
@media (max-width: 768px) {
  #access .outer {
    flex-direction: column;
    gap: 20px;
  }
}
#access .outer .text {
  width: 50%;
}
@media (max-width: 768px) {
  #access .outer .text {
    width: 100%;
  }
}
#access .outer .text .logo {
  max-width: 377px;
  margin-inline: auto;
}
@media (max-width: 500px) {
  #access .outer .text .logo {
    max-width: initial;
    width: 100%;
  }
}
#access .outer .text address {
  border: 2px solid var(--blue-color);
  border-radius: 20px;
  background-color: var(--white-color);
  padding: 20px;
  margin-block: 40px;
  font-style: normal;
}
@media (max-width: 500px) {
  #access .outer .text address {
    margin-block: 20px;
  }
}
#access .outer .text address dl {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
#access .outer .text address dl dt {
  width: 25%;
}
#access .outer .text address dl dd {
  width: calc(75% - 10px);
}
#access .outer .text address dl dd .light-blue {
  font-size: 1.25rem;
  font-weight: bold;
  font-family: var(--ff-num);
  color: var(--btn-blue-color);
}
#access .outer .text .btn {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
#access .outer .text .first-btn a {
  background-color: var(--btn-blue-color);
}
#access .outer .text .first-btn a .arrow {
  color: var(--btn-blue-color);
}
#access .outer .text .contact-btn a {
  background-color: var(--blue-color);
}
#access .outer .text .contact-btn a .arrow {
  color: var(--blue-color);
}
#access .outer .text .weekdays,
#access .outer .text .weekend {
  font-size: clamp(0.875rem, 14px + 4 * (100vw - 768px) / 512, 1.125rem);
}
@media (max-width: 768px) {
  #access .outer .text .weekdays,
#access .outer .text .weekend {
    font-size: 1.125rem;
  }
}
#access .outer .text .weekend {
  margin-block: 10px 20px;
}
#access .outer .map {
  width: 50%;
}
@media (max-width: 768px) {
  #access .outer .map {
    width: 100%;
    height: 280px;
  }
}
#access .outer .map a {
  transition: all 0.5s;
}
#access .outer .map a:hover {
  opacity: 0.7;
}
#access .outer .map img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
#access .icon-explanation:last-of-type {
  margin-bottom: initial;
}

.pages.first .top::before {
  background-image: url(../img/hamakkoko_first-MV.jpg);
}
.pages.first #belongings .belongings-wrapper {
  background-color: var(--light-yellow-color);
  border-radius: 20px;
  padding: 40px;
}
@media (max-width: 500px) {
  .pages.first #belongings .belongings-wrapper {
    padding: 20px;
  }
}
.pages.first #belongings .belongings-wrapper ul {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 14px 40px;
  margin-bottom: 20px;
}
@media (max-width: 500px) {
  .pages.first #belongings .belongings-wrapper ul {
    gap: 14px;
  }
}
.pages.first #belongings .belongings-wrapper li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pages.first #belongings .belongings-wrapper li .check {
  width: 20px;
  line-height: 1;
}
.pages.first #belongings .belongings-wrapper li p {
  font-weight: bold;
}
.pages.first #belongings .belongings-wrapper .red {
  color: var(--red-color);
  line-height: 1.8;
}
.pages.first #examination .step-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 40px 60px 80px 10px;
  position: relative;
}
@media (max-width: 500px) {
  .pages.first #examination .step-item {
    padding: 20px 20px 48px 10px;
    gap: 10px;
  }
}
.pages.first #examination .step-item:nth-child(2n+1) {
  position: relative;
}
.pages.first #examination .step-item:nth-child(2n+1)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--light-blue-color);
  opacity: 0.5;
  z-index: -1;
}
.pages.first #examination .step-item:nth-child(2n) {
  position: relative;
}
.pages.first #examination .step-item:nth-child(2n)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--light-yellow-color);
  z-index: -1;
}
.pages.first #examination .step-item:first-child::before {
  border-radius: 20px 20px 0 0;
}
.pages.first #examination .step-item:first-child .border-line {
  top: 40px;
}
.pages.first #examination .step-item:last-child::before {
  border-radius: 0 0 20px 20px;
}
.pages.first #examination .step-item .num {
  text-align: center;
  font-size: 0.875rem;
  font-weight: bold;
  color: var(--white-color);
  background-color: var(--blue-color);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.pages.first #examination .step-item .num span {
  font-size: 1.125rem;
}
.pages.first #examination .step-item .content {
  flex: 1;
}
.pages.first #examination .step-item .content .label {
  font-size: 1.125rem;
  font-weight: bold;
}
.pages.first #examination .step-item .content .text {
  margin-top: 20px;
}
.pages.first #examination .step-item .content .text .gmo {
  width: 270px;
  margin-bottom: 10px;
}
@media (max-width: 500px) {
  .pages.first #examination .step-item .content .text .gmo {
    width: 200px;
  }
}
.pages.first #examination .step-item .content .text .symview {
  width: 123px;
  margin-bottom: 10px;
}
.pages.first #examination .step-item .content .text li::before {
  content: "・";
}
.pages.first #examination .step-item .content dl {
  margin-top: 40px;
}
.pages.first #examination .step-item .content dl dt {
  font-size: 1.125rem;
  font-weight: bold;
  border-bottom: 2px solid var(--blue-color);
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.pages.first #examination .step-item .content dl dd ul {
  margin-top: 40px;
  display: flex;
  gap: 40px;
}
@media (max-width: 500px) {
  .pages.first #examination .step-item .content dl dd ul {
    gap: 20px;
  }
}
.pages.first #examination .step-item .content dl dd ul li {
  width: 168px;
}
@media (max-width: 500px) {
  .pages.first #examination .step-item .content dl dd ul li {
    width: 50%;
  }
}
.pages.first #examination .step-item .content dl dd .btn.line {
  margin-block: 20px 40px;
}
.pages.first #examination .step-item .content dl dd .btn.line a {
  background-color: var(--line-color);
}
.pages.first #examination .step-item .content dl dd .btn.line a .arrow {
  color: var(--line-color);
}
.pages.first #examination .step-item .content dl dd .btn.browser {
  margin-top: 40px;
}
.pages.first #examination .step-item .content dl dd .btn.browser a {
  background-color: var(--blue-color);
}
.pages.first #examination .step-item .content dl dd .btn.browser a .arrow {
  color: var(--blue-color);
}
.pages.first #examination .step-item .border-line {
  position: absolute;
  left: 35px;
  top: 0;
  width: 2px;
  /* ← 太さはここで調整 */
  height: 0;
  background: repeating-linear-gradient(to bottom, var(--blue-color) 0, var(--blue-color) 4px, transparent 4px, transparent 8px);
  z-index: 0;
}
.pages.first #examination .settlement {
  border: 2px solid var(--blue-color);
  border-radius: 20px;
  padding: 40px 40px 80px;
  margin-top: 40px;
}
@media (max-width: 500px) {
  .pages.first #examination .settlement {
    padding: 20px 20px 45px;
  }
}
.pages.first #examination .settlement dt {
  font-weight: bold;
  color: var(--white-color);
  background-color: var(--blue-color);
  border-radius: 20px;
  line-height: 1;
  padding: 10px 20px;
  margin-bottom: 20px;
  display: inline-block;
}
.pages.first #examination .settlement dd ul {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-top: 20px;
}
@media (max-width: 500px) {
  .pages.first #examination .settlement dd ul {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
}
.pages.first #examination .settlement dd ul li:first-child {
  width: 159px;
}
.pages.first #examination .settlement dd ul li:last-child {
  width: 232px;
}
.pages.first #contact p {
  max-width: 760px;
  margin-inline: auto;
}
.pages.first #contact .btn {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.pages.first #contact .btn a {
  background-color: var(--blue-color);
}
.pages.first #contact .btn a .arrow {
  color: var(--blue-color);
}

.pages.medical .top::before {
  background-image: url(../img/hamakkoko_medical.jpg);
}
.pages #hours {
  padding-bottom: 100px;
  background-color: var(--white-color);
}
@media (max-width: 500px) {
  .pages #hours {
    padding-bottom: 50px;
  }
}
.pages #hours table {
  border-collapse: separate;
  border-spacing: 0;
}
.pages #hours table tr:not(:first-child) th {
  border-left: 1px solid var(--blue-color);
}
.pages #hours table tr:not(:first-child) td:last-child {
  border-right: 1px solid var(--blue-color);
}
.pages #hours table tr:last-child th,
.pages #hours table tr:last-child td {
  border-bottom: 1px solid var(--blue-color);
}
.pages #hours .btn {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.pages #hours .btn a {
  background-color: var(--blue-color);
}
.pages #hours .btn a .arrow {
  color: var(--blue-color);
}
.pages #general {
  background-color: var(--light-yellow-color);
  padding-top: 140px;
  margin-top: -60px;
  position: relative;
  z-index: -1;
}
@media (max-width: 768px) {
  .pages #general {
    padding-top: 80px;
    margin-top: initial;
  }
}
@media (max-width: 500px) {
  .pages #general {
    padding-top: 110px;
    margin-top: -70px;
  }
}
.pages #general .medical-grid .item p {
  background-color: var(--light-blue-color);
}
.pages #specialty {
  background-color: var(--light-yellow-color);
  padding-bottom: 100px;
  position: relative;
  z-index: -2;
}
@media (max-width: 650px) {
  .pages #specialty .medical-grid .item:last-child {
    grid-column: 3/span 3;
  }
}
.pages #specialty .medical-grid .item p {
  color: var(--white-color);
  background-color: var(--blue-color);
}
.pages #price .btn {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.pages #price .btn a {
  background-color: var(--blue-color);
}
.pages #price .btn a .arrow {
  color: var(--blue-color);
}

.pages.faq .top::before {
  background-image: url(../img/hamakkoko_faq.jpg);
}
.pages #faq dt {
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 20px;
}
.pages #faq dt::before {
  content: "Q";
  color: var(--white-color);
  font-size: 1.25rem;
  font-weight: 500;
  background-color: var(--blue-color);
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  line-height: 35px;
  width: 35px;
  height: 35px;
}
.pages #faq dd {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border-top: 2px solid var(--blue-color);
  margin-top: 20px;
  padding-top: 20px;
}
.pages #faq dd::before {
  content: "A";
  color: var(--white-color);
  font-size: 1.25rem;
  font-weight: 500;
  background-color: var(--orange-color);
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  line-height: 35px;
  width: 35px;
  height: 35px;
}
.pages #faq dd:not(:last-of-type) {
  margin-bottom: 80px;
}
.pages #faq .text {
  flex: 1;
}

.pages.access .top::before {
  background-image: url(../img/hamakkoko_access.jpg);
}
.pages #access-lo {
  text-align: center;
}
.pages #access-lo .text-top {
  font-size: 1.15rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.pages #access-lo address ul {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  text-align: left;
}
@media (max-width: 500px) {
  .pages #access-lo address ul {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}
.pages #access-lo address ul li:nth-child(2) {
  text-wrap: nowrap;
}
.pages #access-lo address ul li:nth-child(3) {
  text-wrap: wrap;
}
@media (max-width: 500px) {
  .pages #access-lo address ul li:nth-child(3) {
    text-align: center;
  }
}
.pages #access-lo address .icon {
  width: 17px;
  line-height: 1.4;
  flex-shrink: 0;
}
.pages #access-lo .map {
  width: 100vw;
  margin-top: 40px;
}
.pages #access-lo .map iframe {
  width: 100%;
  height: 50vh;
  vertical-align: bottom;
}
.pages #access-lo .exterior {
  margin-block: 80px 40px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
}
@media (max-width: 500px) {
  .pages #access-lo .exterior {
    gap: 20px 0;
  }
}
@media (max-width: 1000px) {
  .pages #access-lo .exterior {
    grid-template-columns: repeat(11, 1fr);
  }
}
@media (max-width: 650px) {
  .pages #access-lo .exterior {
    grid-template-columns: repeat(14, 1fr);
  }
}
@media (max-width: 500px) {
  .pages #access-lo .exterior {
    grid-template-columns: repeat(11, 1fr);
  }
}
.pages #access-lo .exterior-item:nth-child(1) {
  grid-column: 1/span 2;
}
@media (max-width: 1000px) {
  .pages #access-lo .exterior-item:nth-child(1) {
    grid-column: 1/span 3;
  }
}
@media (max-width: 650px) {
  .pages #access-lo .exterior-item:nth-child(1) {
    grid-column: 1/span 4;
  }
}
@media (max-width: 500px) {
  .pages #access-lo .exterior-item:nth-child(1) {
    grid-column: 1/span 5;
  }
}
.pages #access-lo .exterior-item:nth-child(2) {
  grid-column: 4/span 2;
}
@media (max-width: 1000px) {
  .pages #access-lo .exterior-item:nth-child(2) {
    grid-column: 5/span 3;
  }
}
@media (max-width: 650px) {
  .pages #access-lo .exterior-item:nth-child(2) {
    grid-column: 6/span 4;
  }
}
@media (max-width: 500px) {
  .pages #access-lo .exterior-item:nth-child(2) {
    grid-column: 7/span 5;
  }
}
.pages #access-lo .exterior-item:nth-child(3) {
  grid-column: 7/span 2;
}
@media (max-width: 1000px) {
  .pages #access-lo .exterior-item:nth-child(3) {
    grid-column: 9/span 3;
  }
}
@media (max-width: 650px) {
  .pages #access-lo .exterior-item:nth-child(3) {
    grid-column: 11/span 4;
  }
}
@media (max-width: 500px) {
  .pages #access-lo .exterior-item:nth-child(3) {
    grid-column: 4/span 5;
  }
}
.pages #access-lo .movie {
  max-width: 576px;
}
.pages #access-lo .movie video {
  width: 100%;
}
.pages #access-lo .movie-text {
  font-size: 1.15rem;
  margin-top: 20px;
}
@media (max-width: 500px) {
  .pages #access-lo .movie-text {
    margin-top: initial;
  }
}
.pages .access-bg {
  position: relative;
  padding-block: 80px 140px;
}
@media (max-width: 500px) {
  .pages .access-bg {
    padding-block: 40px 60px;
  }
}
.pages .access-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--light-blue-color);
  opacity: 0.5;
  z-index: -1;
}
.pages #car {
  padding-inline: 80px;
  padding-top: 140px;
  margin-top: -140px;
}
@media (max-width: 768px) {
  .pages #car {
    padding-top: 72px;
    margin-top: -72px;
  }
}
@media (max-width: 768px) and (max-width: 500px) {
  .pages #car {
    margin-bottom: initial;
    padding-inline: 40px;
  }
}
.pages #car .wrapper {
  background-color: var(--white-color);
  border-radius: 20px;
  padding: 40px 40px 80px;
}
@media (max-width: 500px) {
  .pages #car .wrapper {
    padding: 20px 20px 40px;
  }
}
.pages #car .outer {
  display: flex;
  gap: 65px;
}
@media (max-width: 768px) {
  .pages #car .outer {
    gap: clamp(40px, 40px + 25 * (100vw - 650px) / 118, 65px);
  }
}
@media (max-width: 650px) {
  .pages #car .outer {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
}
.pages #car .outer ul {
  flex: 1;
}
.pages #car .outer ul li {
  display: flex;
  align-items: flex-start;
}
.pages #car .outer ul li::before {
  content: "・";
}
.pages #car .outer ul li:not(:first-of-type) {
  margin-top: 20px;
}
.pages #car .outer .parking {
  width: 40%;
}
@media (max-width: 500px) {
  .pages #car .outer .parking {
    width: 100%;
  }
}
.pages #car .outer .parking-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  font-weight: bold;
}
.pages #car .outer .parking-text .icon {
  width: 17px;
  line-height: 1;
}
.pages #public-transport {
  padding-top: 140px;
  margin-top: -140px;
  padding-inline: 80px;
}
@media (max-width: 768px) {
  .pages #public-transport {
    padding-top: 72px;
    margin-top: -72px;
  }
}
@media (max-width: 500px) {
  .pages #public-transport {
    padding-inline: 40px;
  }
}
.pages #public-transport .wrapper {
  background-color: var(--white-color);
  border-radius: 20px;
  padding: 40px 40px 80px;
}
@media (max-width: 500px) {
  .pages #public-transport .wrapper {
    padding: 20px 10px 40px;
  }
}
.pages #public-transport .step-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
  position: relative;
}
@media (max-width: 768px) {
  .pages #public-transport .step-item {
    gap: clamp(20px, 20px + 20 * (100vw - 650px) / 118, 40px);
  }
}
.pages #public-transport .step-item:not(:first-of-type) {
  padding-top: 40px;
}
.pages #public-transport .step-item .num {
  text-align: center;
  font-size: 0.875rem;
  font-weight: bold;
  color: var(--white-color);
  background-color: var(--blue-color);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.pages #public-transport .step-item .num span {
  font-size: 1.125rem;
}
.pages #public-transport .step-item .content {
  flex: 1;
}
.pages #public-transport .step-item .content .label {
  font-size: 1.25rem;
  font-weight: bold;
}
.pages #public-transport .step-item .content .text {
  margin-top: 20px;
}
.pages #public-transport .step-item .border-line {
  position: absolute;
  left: 25px;
  top: 0;
  width: 2px;
  /* ← 太さはここで調整 */
  height: 0;
  background: repeating-linear-gradient(to bottom, var(--blue-color) 0, var(--blue-color) 4px, transparent 4px, transparent 8px);
  z-index: 0;
}
.pages #public-transport .step-wrapper {
  display: flex;
  gap: 30px;
  flex: 1;
}
@media (max-width: 768px) {
  .pages #public-transport .step-wrapper {
    gap: clamp(10px, 10px + 20 * (100vw - 650px) / 118, 30px);
  }
}
@media (max-width: 650px) {
  .pages #public-transport .step-wrapper {
    gap: 10px;
  }
}
.pages #public-transport .step-pct {
  width: 200px;
}
@media (max-width: 650px) {
  .pages #public-transport .step-pct {
    display: none;
  }
}
.pages #public-transport .step-pct-sp {
  display: none;
}
@media (max-width: 650px) {
  .pages #public-transport .step-pct-sp {
    display: block;
    width: 80%;
    margin-inline: auto;
    margin-top: 10px;
  }
}

.pages.clinic_hours .top::before {
  background-image: url(../img/hamakkoko_medical-contents.jpg);
}
.pages #clinic_hours {
  padding-block: 0 140px;
  margin-top: initial;
  background-color: var(--white-color);
}
.pages #clinic_hours table {
  border-collapse: separate;
  border-spacing: 0;
}
.pages #clinic_hours table tr:not(:first-child) {
  height: 50px;
  color: var(--blue-color);
}
@media (max-width: 500px) {
  .pages #clinic_hours table tr:not(:first-child) {
    height: 30px;
  }
}
.pages #clinic_hours table tr:not(:first-child) th {
  border-left: 1px solid var(--blue-color);
}
.pages #clinic_hours table tr:not(:first-child) td:last-child {
  border-right: 1px solid var(--blue-color);
}
.pages #clinic_hours table tr:last-child th,
.pages #clinic_hours table tr:last-child td {
  border-bottom: 1px solid var(--blue-color);
}
.pages #clinic_hours .weekdays {
  margin-top: 80px;
}
@media (max-width: 500px) {
  .pages #clinic_hours .weekdays {
    margin-top: 40px;
  }
}
.pages #clinic_hours .weekdays tr:nth-of-type(3) td, .pages #clinic_hours .weekdays tr:nth-of-type(5) td {
  border-bottom: 1px solid var(--blue-color);
}
.pages #clinic_hours .weekdays tr:nth-of-type(3) td:last-child, .pages #clinic_hours .weekdays tr:nth-of-type(5) td:last-child {
  border-right: none;
}
.pages #clinic_hours .weekdays tr:nth-of-type(2) th:nth-of-type(1), .pages #clinic_hours .weekdays tr:nth-of-type(4) th:nth-of-type(1) {
  border-bottom: 1px solid var(--blue-color);
}
.pages #clinic_hours .weekdays tr:nth-of-type(2) td:nth-of-type(3), .pages #clinic_hours .weekdays tr:nth-of-type(2) td:nth-of-type(5), .pages #clinic_hours .weekdays tr:nth-of-type(4) td:nth-of-type(3), .pages #clinic_hours .weekdays tr:nth-of-type(4) td:nth-of-type(5) {
  border-bottom: 1px solid var(--blue-color);
}
.pages #clinic_hours .weekdays tr:nth-of-type(4) th {
  border-radius: 0 0 0 20px;
}
.pages #clinic_hours .weekdays tr:nth-of-type(4) td:last-of-type {
  border-radius: 0 0 20px 0;
}
.pages #clinic_hours .weekdays tr:last-of-type td {
  border-radius: initial;
}
.pages #clinic_hours .weekend tr:nth-of-type(2) th {
  border-bottom: 1px solid var(--blue-color);
  border-radius: 0 0 0 20px;
}
.pages #clinic_hours .weekend tr:nth-of-type(2) td:nth-of-type(1), .pages #clinic_hours .weekend tr:nth-of-type(2) td:nth-of-type(2) {
  border-bottom: 1px solid var(--blue-color);
}
.pages #clinic_hours .weekend tr:nth-of-type(2) td span, .pages #clinic_hours .weekend tr:nth-of-type(2) td:nth-of-type(2) {
  color: var(--text-color);
}
.pages #clinic_hours .text li {
  display: flex;
  align-items: flex-start;
}
.pages #clinic_hours .text li::before {
  content: "・";
}
.pages #clinic_hours .text li:not(:first-child) {
  margin-top: 10px;
}
.pages #clinic_hours .btn {
  text-align: center;
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.pages #clinic_hours .btn a {
  background-color: var(--btn-blue-color);
}
.pages #clinic_hours .btn a .arrow {
  color: var(--btn-blue-color);
}
.pages #calender-lo {
  position: relative;
  padding-top: 80px;
  position: relative;
  z-index: -1;
}
.pages #calender-lo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--light-blue-color);
  opacity: 0.5;
  z-index: -1;
}
.pages #calender-lo .title {
  margin-top: initial;
}
.pages #calender-lo .calendar-wrapper {
  margin-top: 80px;
}
@media (max-width: 500px) {
  .pages #calender-lo .calendar-wrapper {
    margin-top: 40px;
  }
}

.pages.pediatric_clinic .top::before {
  background-image: url(../img/hamakkoko_medical-contents.jpg);
}
.pages #sick {
  padding-top: 180px;
}
.pages #sick .lead {
  margin-bottom: 20px;
}

.pages.health_check .top::before {
  background-image: url(../img/hamakkoko_medical-contents.jpg);
}
.pages.health_check section .text {
  margin-top: 20px;
}
.pages.health_check #subject .medical-inner {
  gap: 20px 18px;
}
@media (max-width: 1000px) {
  .pages.health_check #subject .medical-inner {
    flex-direction: column;
    gap: 10px;
  }
}
.pages.health_check #subject .text {
  color: var(--red-color);
}
.pages.health_check #belongings .text {
  color: var(--red-color);
}
.pages.health_check #hours {
  padding-bottom: initial;
}
.pages.health_check #paid .medical-inner {
  flex-direction: column;
}

.pages.regular_check .top::before {
  background-image: url(../img/hamakkoko_medical-contents.jpg);
}
.pages.regular_check .mr-list {
  margin-top: 20px;
}
.pages.regular_check .mr-list li {
  display: flex;
  align-items: flex-start;
}
.pages.regular_check .mr-list li::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-color: var(--light-blue-color);
  border-radius: 50%;
  margin-right: 5px;
  margin-top: 7px;
  flex-shrink: 0;
}
.pages.regular_check .mr-list li:not(:first-of-type) {
  margin-top: 10px;
}
.pages.regular_check .medical-dl dt {
  font-weight: bold;
  font-size: 1.125rem;
  border-bottom: 2px solid var(--blue-color);
  padding-bottom: 10px;
}
.pages.regular_check .medical-dl dd {
  margin-top: 20px;
}
.pages.regular_check .medical-dl dd:not(:last-of-type) {
  margin-bottom: 40px;
}
.pages.regular_check .medical-dl dd .under-dot {
  font-weight: bold;
}
.pages.regular_check .medical-dl dd .list-title {
  font-weight: bold;
  margin-top: 20px;
}

.pages.vaccination .top::before {
  background-image: url(../img/hamakkoko_medical-contents.jpg);
}
.pages.vaccination .btn {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  width: 382px;
  margin-inline: auto;
}
@media (max-width: 500px) {
  .pages.vaccination .btn {
    width: initial;
  }
}
.pages.vaccination .btn a {
  background-color: var(--blue-color);
  display: inline-block;
  width: 100%;
}
.pages.vaccination .btn a .arrow {
  color: var(--blue-color);
}
@media (max-width: 500px) {
  .pages.vaccination .btn-va a {
    text-wrap: nowrap;
  }
}
.pages.vaccination .btn-sec {
  margin-top: 20px;
}
@media (max-width: 500px) {
  .pages.vaccination .btn-sec {
    margin-top: 10px;
  }
}
.pages.vaccination section .text {
  margin-top: 20px;
}
.pages.vaccination #belongings .text {
  color: var(--red-color);
}
.pages.vaccination #attention {
  padding-bottom: 140px;
}
@media (max-width: 500px) {
  .pages.vaccination #attention {
    padding-bottom: 60px;
  }
}
.pages.vaccination #inoculated {
  padding-top: 140px;
  margin-top: -60px;
}
@media (max-width: 768px) {
  .pages.vaccination #inoculated {
    padding-top: 80px;
    margin-top: initial;
  }
}
@media (max-width: 500px) {
  .pages.vaccination #inoculated {
    padding-top: 110px;
    margin-top: -70px;
  }
}
.pages.vaccination #price table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
}
.pages.vaccination #price table tr:first-child th {
  border-top: 1px solid var(--text-color);
  border-right: 1px solid var(--text-color);
}
.pages.vaccination #price table tr:first-child th:first-child {
  border-radius: 5px 0 0 0;
  border-left: 1px solid var(--text-color);
}
.pages.vaccination #price table tr:first-child th:last-child {
  border-radius: 0 5px 0 0;
}
.pages.vaccination #price table tr:last-child td {
  border-bottom: 1px solid var(--text-color);
}
.pages.vaccination #price table tr:last-child td:first-child {
  border-radius: 0 0 0 5px;
}
.pages.vaccination #price table tr:last-child td:last-child {
  border-radius: 0 0 5px 0;
}
.pages.vaccination #price table tr:not(:first-child) td:last-child {
  text-wrap: nowrap;
}
.pages.vaccination #price table td,
.pages.vaccination #price table th {
  padding: 10px 20px;
}
@media (max-width: 650px) {
  .pages.vaccination #price table td,
.pages.vaccination #price table th {
    padding: 10px 5px;
  }
}
.pages.vaccination #price table th {
  font-weight: bold;
}
.pages.vaccination #price table td {
  border-top: 1px solid var(--text-color);
  border-right: 1px solid var(--text-color);
}
.pages.vaccination #price table td:first-of-type {
  border-left: 1px solid var(--text-color);
  text-wrap: nowrap;
}
.pages.vaccination #price table td:last-of-type {
  text-align: right;
}
.pages.vaccination #price ul {
  margin-block: 20px;
}
.pages.vaccination #price ul li::before {
  content: "・";
}
.pages.vaccination #price .references {
  display: flex;
  color: var(--blue-color);
  align-items: flex-start;
}
.pages.vaccination #price .references dt {
  flex-shrink: 0;
}
.pages.vaccination #price .references .text-link {
  color: var(--blue-color);
  border-bottom: 1px solid var(--blue-color);
}

.pages.online .top::before {
  background-image: url(../img/hamakkoko_medical-contents.jpg);
}
.pages.online .btn {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.pages.online .btn a {
  background-color: var(--blue-color);
}
.pages.online .btn a .arrow {
  color: var(--blue-color);
}
.pages.online #online-top {
  padding-top: initial;
  margin-top: initial;
}
.pages.online #online-top p {
  margin-block: 80px 20px;
}
@media (max-width: 500px) {
  .pages.online #online-top p {
    margin-block: 40px 20px;
  }
}
.pages.online #online-top a {
  display: inline-block;
  height: 100%;
}
@media (max-width: 500px) {
  .pages.online #clinics-features .pages-title {
    gap: clamp(2px, 2px + 18 * (100vw - 360px) / 140, 20px);
  }
}
.pages.online #clinics-features ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 500px) {
  .pages.online #clinics-features ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
.pages.online #menu li:not(:first-of-type) {
  margin-top: 40px;
}
.pages.online #menu li dl {
  display: flex;
}
.pages.online #menu li dl dt {
  flex-shrink: 0;
}
.pages.online #menu li dl dt::before {
  content: "・";
}
.pages.online #menu h5 {
  color: var(--text-color);
  font-size: 1.25rem;
  font-weight: bold;
  border-bottom: 2px solid var(--blue-color);
  padding-bottom: 10px;
}
.pages.online #menu h5 span {
  font-weight: normal;
  font-size: 1.125rem;
  margin-left: 20px;
}
.pages.online #menu p {
  margin-top: 20px;
}
.pages.online #flow ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 500px) {
  .pages.online #flow ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
.pages.online #flow li p {
  text-align: center;
  font-size: 1.25rem;
  font-weight: bold;
  margin-top: 10px;
}
@media (max-width: 500px) {
  .pages.online #flow li p {
    font-size: 1rem;
    margin-top: 5px;
  }
}
.pages.online .online-ordered {
  position: relative;
}
.pages.online .online-ordered::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  border-left: 2px dashed var(--blue-color);
  z-index: -1;
}
.pages.online .online-ordered li {
  background-color: var(--light-yellow-color);
  text-align: center;
  padding: 40px;
  font-size: 1.125rem;
  color: var(--blue-color);
  border-radius: 20px;
}
@media (max-width: 500px) {
  .pages.online .online-ordered li {
    padding: 20px;
  }
}
.pages.online .online-ordered li:not(:first-of-type) {
  margin-top: 40px;
}
@media (max-width: 500px) {
  .pages.online .online-ordered li:not(:first-of-type) {
    margin-top: 20px;
  }
}
.pages.online .online-ordered li p {
  display: inline-block;
}
@media (max-width: 500px) {
  .pages.online .online-ordered li p {
    display: flex;
    justify-content: center;
    gap: 5px;
    text-align: left;
  }
}

.pages.myofascial_release .top::before {
  background-image: url(../img/hamakkoko_medical-contents.jpg);
}
.pages.myofascial_release h2 {
  width: 310px;
}
.pages.myofascial_release .medical-dl dt {
  font-weight: bold;
  font-size: 1.125rem;
  border-bottom: 2px solid var(--blue-color);
  padding-bottom: 10px;
}
.pages.myofascial_release .medical-dl dd {
  margin-top: 20px;
}
.pages.myofascial_release .medical-dl dd:not(:last-of-type) {
  margin-bottom: 40px;
}
.pages.myofascial_release .medical-dl dd .under-dot {
  font-weight: bold;
}
.pages.myofascial_release .medical-dl dd .list-title {
  font-weight: bold;
  margin-top: 20px;
}
.pages.myofascial_release .mr-list {
  margin-top: 20px;
}
.pages.myofascial_release .mr-list li {
  display: flex;
  align-items: flex-start;
}
.pages.myofascial_release .mr-list li::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-color: var(--light-blue-color);
  border-radius: 50%;
  margin-right: 5px;
  margin-top: 5px;
}
.pages.myofascial_release .mr-list li:not(:first-of-type) {
  margin-top: 10px;
}
.pages.myofascial_release #explanation .text-sub {
  margin-block: 20px;
}
.pages.myofascial_release #explanation .state {
  position: relative;
  display: flex;
  align-items: center;
  padding: 40px;
  gap: 60px;
}
@media (max-width: 1000px) {
  .pages.myofascial_release #explanation .state {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .pages.myofascial_release #explanation .state {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 500px) {
  .pages.myofascial_release #explanation .state {
    padding: 20px;
  }
}
.pages.myofascial_release #explanation .state::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--light-blue-color);
  border-radius: 20px;
  opacity: 0.5;
  z-index: -1;
}
.pages.myofascial_release #explanation .state-video {
  width: 45%;
}
@media (max-width: 768px) {
  .pages.myofascial_release #explanation .state-video {
    width: 70%;
  }
}
@media (max-width: 500px) {
  .pages.myofascial_release #explanation .state-video {
    width: 90%;
  }
}
.pages.myofascial_release #explanation .state-video video {
  width: 100%;
}
.pages.myofascial_release #explanation .state .text {
  padding-inline: 40px;
}
@media (max-width: 1000px) {
  .pages.myofascial_release #explanation .state .text {
    padding-inline: initial;
  }
}
.pages.myofascial_release #explanation .state .text h5 {
  color: var(--text-color);
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.pages.myofascial_release #es p {
  margin-top: 20px;
}
.pages.myofascial_release #tf .mr-list span {
  font-weight: bold;
}
.pages.myofascial_release #consultation .step-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 40px 60px 80px 10px;
  position: relative;
}
@media (max-width: 500px) {
  .pages.myofascial_release #consultation .step-item {
    padding: 20px 20px 48px 10px;
    gap: 10px;
  }
}
.pages.myofascial_release #consultation .step-item:nth-child(2n+1) {
  position: relative;
}
.pages.myofascial_release #consultation .step-item:nth-child(2n+1)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--light-blue-color);
  opacity: 0.5;
  z-index: -1;
}
.pages.myofascial_release #consultation .step-item:nth-child(2n) {
  position: relative;
}
.pages.myofascial_release #consultation .step-item:nth-child(2n)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--light-yellow-color);
  z-index: -1;
}
.pages.myofascial_release #consultation .step-item:first-child::before {
  border-radius: 20px 20px 0 0;
}
.pages.myofascial_release #consultation .step-item:first-child .border-line {
  top: 40px;
}
.pages.myofascial_release #consultation .step-item:last-child::before {
  border-radius: 0 0 20px 20px;
}
.pages.myofascial_release #consultation .step-item .num {
  text-align: center;
  font-size: 0.875rem;
  font-weight: bold;
  color: var(--white-color);
  background-color: var(--blue-color);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.pages.myofascial_release #consultation .step-item .num span {
  font-size: 1.125rem;
}
.pages.myofascial_release #consultation .step-item .content {
  flex: 1;
}
.pages.myofascial_release #consultation .step-item .content .label {
  font-size: 1.125rem;
  font-weight: bold;
}
.pages.myofascial_release #consultation .step-item .content .text {
  margin-top: 20px;
}
.pages.myofascial_release #consultation .step-item .content .text .gmo {
  width: 270px;
  margin-bottom: 10px;
}
@media (max-width: 500px) {
  .pages.myofascial_release #consultation .step-item .content .text .gmo {
    width: 200px;
  }
}
.pages.myofascial_release #consultation .step-item .content .text .symview {
  width: 123px;
  margin-bottom: 10px;
}
.pages.myofascial_release #consultation .step-item .content .text li::before {
  content: "・";
}
.pages.myofascial_release #consultation .step-item .content dl {
  margin-top: 40px;
}
.pages.myofascial_release #consultation .step-item .content dl dt {
  font-size: 1.125rem;
  font-weight: bold;
  border-bottom: 2px solid var(--blue-color);
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.pages.myofascial_release #consultation .step-item .content dl dd ul {
  margin-top: 40px;
  display: flex;
  gap: 40px;
}
@media (max-width: 500px) {
  .pages.myofascial_release #consultation .step-item .content dl dd ul {
    gap: 20px;
  }
}
.pages.myofascial_release #consultation .step-item .content dl dd ul li {
  width: 168px;
}
@media (max-width: 500px) {
  .pages.myofascial_release #consultation .step-item .content dl dd ul li {
    width: 50%;
  }
}
.pages.myofascial_release #consultation .step-item .content dl dd .btn.line {
  margin-block: 20px 40px;
}
.pages.myofascial_release #consultation .step-item .content dl dd .btn.line a {
  background-color: var(--line-color);
}
.pages.myofascial_release #consultation .step-item .content dl dd .btn.line a .arrow {
  color: var(--line-color);
}
.pages.myofascial_release #consultation .step-item .content dl dd .btn.browser {
  margin-top: 40px;
}
.pages.myofascial_release #consultation .step-item .content dl dd .btn.browser a {
  background-color: var(--blue-color);
}
.pages.myofascial_release #consultation .step-item .content dl dd .btn.browser a .arrow {
  color: var(--blue-color);
}
.pages.myofascial_release #consultation .step-item .border-line {
  position: absolute;
  left: 35px;
  top: 0;
  width: 2px;
  /* ← 太さはここで調整 */
  height: 0;
  background: repeating-linear-gradient(to bottom, var(--blue-color) 0, var(--blue-color) 4px, transparent 4px, transparent 8px);
  z-index: 0;
}
.pages.myofascial_release #consultation .settlement {
  border: 2px solid var(--blue-color);
  border-radius: 20px;
  padding: 40px 40px 80px;
  margin-top: 40px;
}
@media (max-width: 500px) {
  .pages.myofascial_release #consultation .settlement {
    padding: 20px 20px 45px;
  }
}
.pages.myofascial_release #consultation .settlement dt {
  font-weight: bold;
  color: var(--white-color);
  background-color: var(--blue-color);
  border-radius: 20px;
  line-height: 1;
  padding: 10px 20px;
  margin-bottom: 20px;
  display: inline-block;
}
.pages.myofascial_release #consultation .settlement dd ul {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-top: 20px;
}
@media (max-width: 500px) {
  .pages.myofascial_release #consultation .settlement dd ul {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
}
.pages.myofascial_release #consultation .settlement dd ul li:first-child {
  width: 159px;
}
.pages.myofascial_release #consultation .settlement dd ul li:last-child {
  width: 232px;
}
.pages.myofascial_release #contact-lo p {
  max-width: 760px;
  margin-inline: auto;
}
.pages.myofascial_release #contact-lo .btn {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.pages.myofascial_release #contact-lo .btn a {
  background-color: var(--blue-color);
}
.pages.myofascial_release #contact-lo .btn a .arrow {
  color: var(--blue-color);
}

.pages.psychology .top::before {
  background-image: url(../img/hamakkoko_medical-contents.jpg);
}
.pages.psychology .medical-dl dt {
  font-weight: bold;
  font-size: 1.25rem;
  border-bottom: 2px solid var(--blue-color);
  padding-bottom: 10px;
}
.pages.psychology .medical-dl dd {
  margin-top: 20px;
}
.pages.psychology .medical-dl dd:not(:last-of-type) {
  margin-bottom: 40px;
}
.pages.psychology .medical-dl dd .under-dot {
  font-weight: bold;
}
.pages.psychology .medical-dl dd .list-title {
  font-weight: bold;
  margin-top: 20px;
}
.pages.psychology .mr-list {
  margin-top: 20px;
}
.pages.psychology .mr-list li {
  display: flex;
  align-items: flex-start;
}
.pages.psychology .mr-list li::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-color: var(--light-blue-color);
  border-radius: 50%;
  margin-right: 5px;
  margin-top: 5px;
  flex-shrink: 0;
}
.pages.psychology .mr-list li:not(:first-of-type) {
  margin-top: 10px;
}
.pages.psychology .disc-list li {
  display: flex;
}
.pages.psychology .disc-list li::before {
  content: "・";
}
.pages.psychology .under-dot {
  font-weight: bold;
}
.pages.psychology #worries .text-top {
  margin-block: 20px;
}
.pages.psychology #can .mr-list li {
  font-weight: bold;
}
.pages.psychology #can .text-top {
  margin-block: 20px;
}
.pages.psychology #menu .pages-title {
  margin-bottom: 20px;
}
.pages.psychology #menu .reservation-text {
  text-align: center;
  margin-bottom: 40px;
}
.pages.psychology #menu .text-top {
  margin-block: 20px;
}
.pages.psychology #menu .detail {
  position: relative;
  padding: 80px;
  margin-block: 40px;
}
@media (max-width: 500px) {
  .pages.psychology #menu .detail {
    padding: 40px;
  }
}
.pages.psychology #menu .detail::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--light-blue-color);
  opacity: 0.5;
  z-index: -1;
}
.pages.psychology #menu .detail section {
  padding: initial;
}
.pages.psychology #menu .detail section:not(:first-of-type) {
  margin-top: 40px;
}
.pages.psychology #menu .detail .wrapper {
  background-color: var(--white-color);
  border-radius: 20px;
  padding: 40px;
}
@media (max-width: 500px) {
  .pages.psychology #menu .detail .wrapper {
    padding: 20px;
  }
}
.pages.psychology #menu .detail .wrapper h5 {
  color: var(--blue-color);
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 500px) {
  .pages.psychology #menu .detail .wrapper h5 {
    margin-bottom: 20px;
  }
}
.pages.psychology #menu .detail .wrapper .item {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .pages.psychology #menu .detail .wrapper .item {
    flex-direction: column;
  }
}
.pages.psychology #menu .detail .wrapper .item:not(:first-of-type) {
  margin-top: 10px;
}
.pages.psychology #menu .detail .wrapper .item dt {
  text-wrap: nowrap;
  font-weight: bold;
  display: flex;
}
.pages.psychology #menu .detail .wrapper .item dt::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--light-blue-color);
  margin-right: 5px;
  margin-top: 5px;
}
@media (max-width: 768px) {
  .pages.psychology #menu .detail .wrapper .item dd {
    padding-inline: 8px;
  }
}
.pages.psychology #menu .detail .wrapper li::before {
  content: "・";
}
.pages.psychology #menu .detail .indicators p {
  margin-bottom: 20px;
}
.pages.psychology #menu .detail .evaluation dl {
  margin-block: 20px;
}
.pages.psychology #menu .detail .features li,
.pages.psychology #menu .detail .purpose li {
  display: flex;
}
.pages.psychology #menu .counseling dd {
  margin-top: 20px;
}
.pages.psychology #menu .counseling li {
  display: flex;
}
.pages.psychology #menu .counseling li::before {
  content: "・";
}
.pages.psychology .step-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  position: relative;
}
@media (max-width: 500px) {
  .pages.psychology .step-item {
    gap: 10px;
  }
}
.pages.psychology .step-item:first-child::before {
  border-radius: 20px 20px 0 0;
}
.pages.psychology .step-item:first-child .border-line {
  top: 40px;
}
.pages.psychology .step-item:last-child::before {
  border-radius: 0 0 20px 20px;
}
.pages.psychology .step-item .num {
  text-align: center;
  font-size: 0.875rem;
  font-weight: bold;
  color: var(--white-color);
  background-color: var(--blue-color);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.pages.psychology .step-item .num span {
  font-size: 1.125rem;
}
.pages.psychology .step-item .content {
  flex: 1;
}
.pages.psychology .step-item .content .label {
  font-size: 1.125rem;
  font-weight: bold;
}
.pages.psychology .step-item .content .text {
  margin-top: 20px;
}
.pages.psychology .step-item .content .text .gmo {
  width: 270px;
  margin-bottom: 10px;
}
.pages.psychology .step-item .content .text .symview {
  width: 123px;
  margin-bottom: 10px;
}
.pages.psychology .step-item .content .text li::before {
  content: "・";
}
.pages.psychology .step-item .content dl {
  margin-top: 40px;
}
.pages.psychology .step-item .content dl dt {
  font-size: 1.125rem;
  font-weight: bold;
  border-bottom: 2px solid var(--blue-color);
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.pages.psychology .step-item .content dl dd ul {
  margin-top: 40px;
  display: flex;
  gap: 40px;
}
.pages.psychology .step-item .content dl dd ul li {
  width: 168px;
}
.pages.psychology .step-item .content dl dd .btn.line {
  margin-block: 20px 40px;
}
.pages.psychology .step-item .content dl dd .btn.line a {
  background-color: var(--line-color);
}
.pages.psychology .step-item .content dl dd .btn.line a .arrow {
  color: var(--line-color);
}
.pages.psychology .step-item .content dl dd .btn.browser {
  margin-top: 40px;
}
.pages.psychology .step-item .content dl dd .btn.browser a {
  background-color: var(--blue-color);
}
.pages.psychology .step-item .content dl dd .btn.browser a .arrow {
  color: var(--blue-color);
}
.pages.psychology .step-item .border-line {
  position: absolute;
  left: 35px;
  top: 0;
  width: 2px;
  height: 0;
  background: repeating-linear-gradient(to bottom, var(--blue-color) 0, var(--blue-color) 4px, transparent 4px, transparent 8px);
  z-index: 0;
}
.pages.psychology #consultation .step-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 40px 60px 80px 10px;
  position: relative;
}
@media (max-width: 500px) {
  .pages.psychology #consultation .step-item {
    padding: 20px 20px 48px 10px;
    gap: 10px;
  }
}
.pages.psychology #consultation .step-item:nth-child(2n+1) {
  position: relative;
}
.pages.psychology #consultation .step-item:nth-child(2n+1)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--light-blue-color);
  opacity: 0.5;
  z-index: -1;
}
.pages.psychology #consultation .step-item:nth-child(2n) {
  position: relative;
}
.pages.psychology #consultation .step-item:nth-child(2n)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--light-yellow-color);
  z-index: -1;
}
.pages.psychology #consultation .step-item:first-child::before {
  border-radius: 20px 20px 0 0;
}
.pages.psychology #consultation .step-item:first-child .border-line {
  top: 40px;
}
.pages.psychology #consultation .step-item:last-child::before {
  border-radius: 0 0 20px 20px;
}
.pages.psychology #consultation .step-item .num {
  text-align: center;
  font-size: 0.875rem;
  font-weight: bold;
  color: var(--white-color);
  background-color: var(--blue-color);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.pages.psychology #consultation .step-item .num span {
  font-size: 1.125rem;
}
.pages.psychology #consultation .step-item .content {
  flex: 1;
}
.pages.psychology #consultation .step-item .content .label {
  font-size: 1.125rem;
  font-weight: bold;
}
.pages.psychology #consultation .step-item .content .text {
  margin-top: 20px;
}
.pages.psychology #consultation .step-item .content .text .gmo {
  width: 270px;
  margin-bottom: 10px;
}
@media (max-width: 500px) {
  .pages.psychology #consultation .step-item .content .text .gmo {
    width: 200px;
  }
}
.pages.psychology #consultation .step-item .content .text .symview {
  width: 123px;
  margin-bottom: 10px;
}
.pages.psychology #consultation .step-item .content .text li::before {
  content: "・";
}
.pages.psychology #consultation .step-item .content dl {
  margin-top: 40px;
}
.pages.psychology #consultation .step-item .content dl dt {
  font-size: 1.125rem;
  font-weight: bold;
  border-bottom: 2px solid var(--blue-color);
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.pages.psychology #consultation .step-item .content dl dd ul {
  margin-top: 40px;
  display: flex;
  gap: 40px;
}
@media (max-width: 500px) {
  .pages.psychology #consultation .step-item .content dl dd ul {
    gap: 20px;
  }
}
.pages.psychology #consultation .step-item .content dl dd ul li {
  width: 168px;
}
@media (max-width: 500px) {
  .pages.psychology #consultation .step-item .content dl dd ul li {
    width: 50%;
  }
}
.pages.psychology #consultation .step-item .content dl dd .btn.line {
  margin-block: 20px 40px;
}
.pages.psychology #consultation .step-item .content dl dd .btn.line a {
  background-color: var(--line-color);
}
.pages.psychology #consultation .step-item .content dl dd .btn.line a .arrow {
  color: var(--line-color);
}
.pages.psychology #consultation .step-item .content dl dd .btn.browser {
  margin-top: 40px;
}
.pages.psychology #consultation .step-item .content dl dd .btn.browser a {
  background-color: var(--blue-color);
}
.pages.psychology #consultation .step-item .content dl dd .btn.browser a .arrow {
  color: var(--blue-color);
}
.pages.psychology #consultation .step-item .border-line {
  position: absolute;
  left: 35px;
  top: 0;
  width: 2px;
  /* ← 太さはここで調整 */
  height: 0;
  background: repeating-linear-gradient(to bottom, var(--blue-color) 0, var(--blue-color) 4px, transparent 4px, transparent 8px);
  z-index: 0;
}
.pages.psychology #consultation .settlement {
  border: 2px solid var(--blue-color);
  border-radius: 20px;
  padding: 40px 40px 80px;
  margin-top: 40px;
}
@media (max-width: 500px) {
  .pages.psychology #consultation .settlement {
    padding: 20px 20px 45px;
  }
}
.pages.psychology #consultation .settlement dt {
  font-weight: bold;
  color: var(--white-color);
  background-color: var(--blue-color);
  border-radius: 20px;
  line-height: 1;
  padding: 10px 20px;
  margin-bottom: 20px;
  display: inline-block;
}
.pages.psychology #consultation .settlement dd ul {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-top: 20px;
}
@media (max-width: 500px) {
  .pages.psychology #consultation .settlement dd ul {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
}
.pages.psychology #consultation .settlement dd ul li:first-child {
  width: 159px;
}
.pages.psychology #consultation .settlement dd ul li:last-child {
  width: 232px;
}
.pages.psychology #contact p {
  max-width: 760px;
  margin-inline: auto;
}
.pages.psychology #contact .btn {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.pages.psychology #contact .btn a {
  background-color: var(--blue-color);
}
.pages.psychology #contact .btn a .arrow {
  color: var(--blue-color);
}
.pages.psychology #summary table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
}
.pages.psychology #summary table tr {
  font-weight: bold;
}
.pages.psychology #summary table tr:first-child th {
  border-top: 1px solid var(--text-color);
  border-right: 1px solid var(--text-color);
}
.pages.psychology #summary table tr:first-child th:first-child {
  border-radius: 5px 0 0 0;
  border-left: 1px solid var(--text-color);
}
.pages.psychology #summary table tr:first-child th:last-child {
  border-radius: 0 5px 0 0;
}
.pages.psychology #summary table tr:last-child td {
  border-bottom: 1px solid var(--text-color);
}
.pages.psychology #summary table tr:last-child td:first-child {
  border-radius: 0 0 0 5px;
}
.pages.psychology #summary table tr:last-child td:last-child {
  border-radius: 0 0 5px 0;
}
.pages.psychology #summary table td,
.pages.psychology #summary table th {
  padding: 10px 12px;
}
@media (max-width: 500px) {
  .pages.psychology #summary table td,
.pages.psychology #summary table th {
    padding: 10px 5px;
  }
}
.pages.psychology #summary table th {
  font-weight: bold;
  color: var(--white-color);
  background-color: var(--blue-color);
}
.pages.psychology #summary table td {
  border-top: 1px solid var(--text-color);
  border-right: 1px solid var(--text-color);
}
.pages.psychology #summary table td:first-of-type {
  border-left: 1px solid var(--text-color);
  text-wrap: nowrap;
  font-weight: bold;
}
.pages.psychology #summary table td:nth-of-type(2) {
  text-align: right;
  text-wrap: nowrap;
}
.pages.psychology #summary table td span {
  font-weight: bold;
}
.pages.psychology #summary .inline-text {
  margin-top: 20px;
}
.pages.psychology #ec .bold {
  font-weight: bold;
}
.pages.psychology #please li {
  display: flex;
}
.pages.psychology #please li::before {
  content: "・";
}
.pages.psychology #please li .bold {
  font-weight: bold;
}
.pages.psychology #peace {
  padding-bottom: 140px;
  background-color: var(--white-color);
}
@media (max-width: 500px) {
  .pages.psychology #peace {
    padding-bottom: 60px;
  }
}
.pages.psychology #peace p:last-of-type {
  margin-top: 20px;
}
.pages.psychology #ac {
  background-color: var(--light-yellow-color);
  padding-top: 140px;
  padding-bottom: 80px;
  margin-top: -60px;
  position: relative;
  z-index: -1;
}
@media (max-width: 768px) {
  .pages.psychology #ac {
    padding-top: 80px;
    margin-top: initial;
  }
}
@media (max-width: 500px) {
  .pages.psychology #ac {
    padding-top: 110px;
    padding-bottom: 60px;
    margin-top: -70px;
  }
}
.pages.psychology #ac .step-item {
  padding-inline: 10px;
}
@media (max-width: 500px) {
  .pages.psychology #ac .step-item {
    padding-inline: initial;
  }
}
.pages.psychology #ac .step-item:not(:first-of-type) {
  margin-top: 40px;
}
.pages.psychology #ac .step-item .num {
  flex-shrink: 0;
}
.pages.psychology #ac .step-item dt {
  border-bottom: none;
  padding-bottom: initial;
  margin-bottom: 20px;
}
.pages.psychology #ac .step-item dd {
  margin-top: initial;
}

.pages.head_shape .top::before {
  background-image: url(../img/hamakkoko_medical-contents.jpg);
}
.pages.head_shape .medical-dl dt {
  font-weight: bold;
  font-size: 1.125rem;
  border-bottom: 2px solid var(--blue-color);
  padding-bottom: 10px;
}
.pages.head_shape .medical-dl dd {
  margin-top: 20px;
}
.pages.head_shape .medical-dl dd:not(:last-of-type) {
  margin-bottom: 40px;
}
.pages.head_shape .medical-dl dd .under-dot {
  font-weight: bold;
}
.pages.head_shape .medical-dl dd .list-title {
  font-weight: bold;
  margin-top: 20px;
}
.pages.head_shape .mr-list {
  margin-top: 20px;
}
.pages.head_shape .mr-list li {
  display: flex;
  align-items: flex-start;
  gap: 5px;
}
.pages.head_shape .mr-list li::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-color: var(--light-blue-color);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}
.pages.head_shape .mr-list li:not(:first-of-type) {
  margin-top: 10px;
}
.pages.head_shape #cranial-deformity .medical-dl {
  margin-top: 20px;
}
.pages.head_shape #cranial-deformity .example {
  display: flex;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 500px) {
  .pages.head_shape #cranial-deformity .example {
    gap: clamp(10px, 10px + 20 * (100vw - 360px) / 140, 30px);
  }
}
.pages.head_shape #cranial-deformity .example li {
  width: 220px;
}
.pages.head_shape #cranial-deformity .example li p {
  font-size: 0.75rem;
  text-align: center;
}
.pages.head_shape #cranial-deformity h5 {
  font-size: 1rem;
  font-weight: bold;
  color: var(--text-color);
  text-align: center;
  margin-block: 40px 20px;
}
.pages.head_shape #need .mr-list {
  margin-bottom: 20px;
}
.pages.head_shape #treatment .figure {
  width: 300px;
  margin: 0 auto 40px;
}
.pages.head_shape #treatment-flow .flow:not(:first-of-type) {
  margin-top: 40px;
}
.pages.head_shape #treatment-flow .flow li {
  display: flex;
}
.pages.head_shape #treatment-flow .flow li::before {
  content: "・";
}
.pages.head_shape #treatment-flow h5 {
  color: var(--text-color);
  border-bottom: 2px solid var(--blue-color);
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-weight: bold;
}
.pages.head_shape #treatment-flow .chart {
  margin-top: 40px;
  width: 430px;
  position: relative;
  margin-inline: auto;
}
@media (max-width: 500px) {
  .pages.head_shape #treatment-flow .chart {
    width: 90%;
  }
}
.pages.head_shape #treatment-flow .chart p {
  margin-top: 20px;
  font-size: 0.875rem;
}
.pages.head_shape #features-lo .medical-outer .pct img {
  border-radius: initial;
  height: initial;
}
.pages.head_shape #features-lo .medical-outer .btn {
  display: flex;
  justify-content: center;
  margin-block: 40px;
}
.pages.head_shape #features-lo .medical-outer .btn a {
  background-color: var(--blue-color);
}
.pages.head_shape #features-lo .medical-outer .btn a .arrow {
  color: var(--blue-color);
}
.pages.head_shape #features-lo .medical-dl {
  margin-bottom: 40px;
}
.pages.head_shape #features-lo .item {
  display: flex;
}
@media (max-width: 768px) {
  .pages.head_shape #features-lo .item {
    flex-direction: column;
  }
}
.pages.head_shape #features-lo .item:not(:first-of-type) {
  margin-top: 20px;
}
.pages.head_shape #features-lo .item dt {
  border-bottom: none;
  font-size: 1rem;
  padding-bottom: initial;
  flex-shrink: 0;
}
.pages.head_shape #features-lo .item dd {
  margin-top: initial;
}
.pages.head_shape #features-lo .inner {
  max-width: 830px;
  margin-inline: auto;
}
.pages.head_shape #features-lo .scan-img {
  max-width: 580px;
  margin-inline: auto;
}
.pages.head_shape #features-lo table {
  width: 100%;
  margin-top: 40px;
  margin-inline: auto;
  border-collapse: collapse;
}
.pages.head_shape #features-lo table tr:last-child th,
.pages.head_shape #features-lo table tr:last-child td {
  border-bottom: 1px solid #c5c6d0;
}
.pages.head_shape #features-lo table tr th,
.pages.head_shape #features-lo table tr td {
  border-top: 1px solid #c5c6d0;
}
.pages.head_shape #features-lo table th {
  width: 40%;
  text-align: left;
  border-left: 1px solid #c5c6d0;
  padding-left: 5px;
}
.pages.head_shape #features-lo table td {
  width: 30%;
  background-color: #fff3df;
}
.pages.head_shape #features-lo table td:nth-of-type(1) {
  text-align: right;
  border-right: 1px dotted #c5c6d0;
  padding-right: 5px;
}
.pages.head_shape #features-lo table td:nth-of-type(2) {
  text-align: center;
  border-right: 1px solid #c5c6d0;
}
.pages.head_shape #treatment-example {
  padding-bottom: 100px;
  background-color: var(--white-color);
  position: relative;
  z-index: -1;
}
@media (max-width: 500px) {
  .pages.head_shape #treatment-example {
    padding-bottom: 60px;
  }
}
.pages.head_shape #treatment-example .asterisk {
  margin-block: 40px 20px;
  font-size: 0.875rem;
}
@media (max-width: 500px) {
  .pages.head_shape #treatment-example .asterisk {
    margin-block: 20px;
  }
}
.pages.head_shape #treatment-example .explanation {
  font-size: 0.75rem;
  text-align: center;
  margin-top: 20px;
}
.pages.head_shape #cost {
  background-color: var(--light-yellow-color);
  padding: 140px 40px;
  margin-top: -60px;
  position: relative;
  z-index: -2;
}
@media (max-width: 768px) {
  .pages.head_shape #cost {
    padding: 80px 40px;
    margin-top: initial;
  }
}
@media (max-width: 500px) {
  .pages.head_shape #cost {
    padding: 72px 20px;
    margin-top: -32px;
  }
}
.pages.head_shape #cost .wrapper {
  background-color: var(--white-color);
  border-radius: 20px;
  padding: 40px;
}
@media (max-width: 500px) {
  .pages.head_shape #cost .wrapper {
    padding: 20px;
  }
}
.pages.head_shape #cost h5,
.pages.head_shape #cost p {
  text-align: center;
}
.pages.head_shape #cost h5 {
  color: var(--blue-color);
  margin-bottom: 20px;
  font-weight: bold;
}
.pages.head_shape #cost p:last-of-type {
  margin-bottom: 20px;
}
.pages.head_shape #cost p span {
  font-size: 1.5rem;
  font-weight: bold;
}
.pages.head_shape #cost .disc::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-color: var(--light-blue-color);
  border-radius: 50%;
  margin-right: 10px;
}
.pages.head_shape #cost .first-medical {
  border-bottom: 2px solid var(--blue-color);
  padding-bottom: 40px;
}
.pages.head_shape #cost .first-medical li:not(:first-of-type) {
  margin-top: 10px;
}
.pages.head_shape #cost .basic-price {
  padding-top: 40px;
  margin-top: initial;
}
.pages.head_shape #cost .basic-price .item {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .pages.head_shape #cost .basic-price .item {
    flex-direction: column;
  }
}
.pages.head_shape #cost .basic-price .item:not(:first-of-type) {
  margin-top: 10px;
}
.pages.head_shape #cost .basic-price .item .disc {
  display: flex;
  align-items: flex-start;
}
.pages.head_shape #cost .basic-price .item .disc::before {
  margin-top: 5px;
}
@media (max-width: 768px) {
  .pages.head_shape #cost .basic-price .item dd {
    text-align: right;
  }
}
.pages.head_shape #consultation .step-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 40px 60px 80px 10px;
  position: relative;
}
@media (max-width: 500px) {
  .pages.head_shape #consultation .step-item {
    padding: 20px 20px 48px 10px;
    gap: 10px;
  }
}
.pages.head_shape #consultation .step-item:nth-child(2n+1) {
  position: relative;
}
.pages.head_shape #consultation .step-item:nth-child(2n+1)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--light-blue-color);
  opacity: 0.5;
  z-index: -1;
}
.pages.head_shape #consultation .step-item:nth-child(2n) {
  position: relative;
}
.pages.head_shape #consultation .step-item:nth-child(2n)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--light-yellow-color);
  z-index: -1;
}
.pages.head_shape #consultation .step-item:first-child::before {
  border-radius: 20px 20px 0 0;
}
.pages.head_shape #consultation .step-item:first-child .border-line {
  top: 40px;
}
.pages.head_shape #consultation .step-item:last-child::before {
  border-radius: 0 0 20px 20px;
}
.pages.head_shape #consultation .step-item .num {
  text-align: center;
  font-size: 0.875rem;
  font-weight: bold;
  color: var(--white-color);
  background-color: var(--blue-color);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.pages.head_shape #consultation .step-item .num span {
  font-size: 1.125rem;
}
.pages.head_shape #consultation .step-item .content {
  flex: 1;
}
.pages.head_shape #consultation .step-item .content .label {
  font-size: 1.125rem;
  font-weight: bold;
}
.pages.head_shape #consultation .step-item .content .text {
  margin-top: 20px;
}
.pages.head_shape #consultation .step-item .content .text .gmo {
  width: 270px;
  margin-bottom: 10px;
}
@media (max-width: 500px) {
  .pages.head_shape #consultation .step-item .content .text .gmo {
    width: 200px;
  }
}
.pages.head_shape #consultation .step-item .content .text .symview {
  width: 123px;
  margin-bottom: 10px;
}
.pages.head_shape #consultation .step-item .content .text li::before {
  content: "・";
}
.pages.head_shape #consultation .step-item .content dl {
  margin-top: 40px;
}
.pages.head_shape #consultation .step-item .content dl dt {
  font-size: 1.125rem;
  font-weight: bold;
  border-bottom: 2px solid var(--blue-color);
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.pages.head_shape #consultation .step-item .content dl dd ul {
  margin-top: 40px;
  display: flex;
  gap: 40px;
}
@media (max-width: 500px) {
  .pages.head_shape #consultation .step-item .content dl dd ul {
    gap: 20px;
  }
}
.pages.head_shape #consultation .step-item .content dl dd ul li {
  width: 168px;
}
@media (max-width: 500px) {
  .pages.head_shape #consultation .step-item .content dl dd ul li {
    width: 50%;
  }
}
.pages.head_shape #consultation .step-item .content dl dd .btn.line {
  margin-block: 20px 40px;
}
.pages.head_shape #consultation .step-item .content dl dd .btn.line a {
  background-color: var(--line-color);
}
.pages.head_shape #consultation .step-item .content dl dd .btn.line a .arrow {
  color: var(--line-color);
}
.pages.head_shape #consultation .step-item .content dl dd .btn.browser {
  margin-top: 40px;
}
.pages.head_shape #consultation .step-item .content dl dd .btn.browser a {
  background-color: var(--blue-color);
}
.pages.head_shape #consultation .step-item .content dl dd .btn.browser a .arrow {
  color: var(--blue-color);
}
.pages.head_shape #consultation .step-item .border-line {
  position: absolute;
  left: 35px;
  top: 0;
  width: 2px;
  /* ← 太さはここで調整 */
  height: 0;
  background: repeating-linear-gradient(to bottom, var(--blue-color) 0, var(--blue-color) 4px, transparent 4px, transparent 8px);
  z-index: 0;
}
.pages.head_shape #consultation .settlement {
  border: 2px solid var(--blue-color);
  border-radius: 20px;
  padding: 40px 40px 80px;
  margin-top: 40px;
}
@media (max-width: 500px) {
  .pages.head_shape #consultation .settlement {
    padding: 20px 20px 45px;
  }
}
.pages.head_shape #consultation .settlement dt {
  font-weight: bold;
  color: var(--white-color);
  background-color: var(--blue-color);
  border-radius: 20px;
  line-height: 1;
  padding: 10px 20px;
  margin-bottom: 20px;
  display: inline-block;
}
.pages.head_shape #consultation .settlement dd ul {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-top: 20px;
}
@media (max-width: 500px) {
  .pages.head_shape #consultation .settlement dd ul {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
}
.pages.head_shape #consultation .settlement dd ul li:first-child {
  width: 159px;
}
.pages.head_shape #consultation .settlement dd ul li:last-child {
  width: 232px;
}
.pages.head_shape #contact p {
  max-width: 760px;
  margin-inline: auto;
}
.pages.head_shape #contact .btn {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.pages.head_shape #contact .btn a {
  background-color: var(--blue-color);
}
.pages.head_shape #contact .btn a .arrow {
  color: var(--blue-color);
}

.pages.price_list .top::before {
  background-image: url(../img/hamakkoko_medical-contents.jpg);
}
.pages.price_list .medical-dl dt {
  font-weight: bold;
  font-size: 1.125rem;
  border-bottom: 2px solid var(--blue-color);
  padding-bottom: 10px;
}
.pages.price_list .medical-dl dd {
  margin-top: 20px;
}
.pages.price_list .medical-dl dd:not(:last-of-type) {
  margin-bottom: 40px;
}
.pages.price_list .medical-dl dd .under-dot {
  font-weight: bold;
}
.pages.price_list .medical-dl dd .list-title {
  font-weight: bold;
  margin-top: 20px;
}
.pages.price_list .style {
  display: flex;
}
.pages.price_list .style::before {
  content: "・";
}
.pages.price_list .important {
  margin-top: 20px;
  color: var(--blue-color);
}
.pages.price_list .cost-table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  margin-bottom: 20px;
}
.pages.price_list .cost-table tr:first-child th {
  border-top: 1px solid var(--text-color);
  border-right: 1px solid var(--text-color);
}
.pages.price_list .cost-table tr:first-child th:first-child {
  border-radius: 5px 0 0 0;
  border-left: 1px solid var(--text-color);
}
.pages.price_list .cost-table tr:first-child th:last-child {
  border-radius: 0 5px 0 0;
}
.pages.price_list .cost-table tr:last-child td {
  border-bottom: 1px solid var(--text-color);
}
.pages.price_list .cost-table tr:last-child td:first-child {
  border-radius: 0 0 0 5px;
}
.pages.price_list .cost-table tr:last-child td:last-child {
  border-radius: 0 0 5px 0;
}
.pages.price_list .cost-table td,
.pages.price_list .cost-table th {
  padding: 10px 20px;
}
@media (max-width: 650px) {
  .pages.price_list .cost-table td,
.pages.price_list .cost-table th {
    padding: 10px;
  }
}
@media (max-width: 500px) {
  .pages.price_list .cost-table td,
.pages.price_list .cost-table th {
    padding: 5px;
  }
}
.pages.price_list .cost-table th {
  font-weight: bold;
}
.pages.price_list .cost-table td {
  border-top: 1px solid var(--text-color);
  border-right: 1px solid var(--text-color);
}
.pages.price_list .cost-table td:first-of-type {
  border-left: 1px solid var(--text-color);
  text-wrap: nowrap;
}
.pages.price_list .cost-table td:last-of-type {
  text-align: right;
  text-wrap: nowrap;
}
.pages.price_list .pd table td:first-of-type {
  text-wrap: initial;
}

.pages.clinic .top::before {
  background-image: url(../img/hamakkoko_clinic.jpg);
}
.pages.clinic .item {
  display: flex;
}
.pages.clinic .list {
  display: flex;
}
.pages.clinic .list::before {
  content: "・";
}
.pages.clinic .medical-dl dt {
  font-weight: bold;
  font-size: 1.125rem;
  border-bottom: 2px solid var(--blue-color);
  padding-bottom: 10px;
}
.pages.clinic .medical-dl dd {
  margin-top: 20px;
}
.pages.clinic .medical-dl dd:not(:last-of-type) {
  margin-bottom: 40px;
}
.pages.clinic .medical-dl dd .under-dot {
  font-weight: bold;
}
.pages.clinic .medical-dl dd .list-title {
  font-weight: bold;
  margin-top: 20px;
}
.pages.clinic #overview .overview-list .item {
  border-bottom: 2px solid var(--blue-color);
  padding-top: 10px;
}
.pages.clinic #overview .overview-list .item:not(:first-of-type) {
  margin-top: 20px;
}
.pages.clinic #overview .overview-list .item dt {
  width: 18%;
  font-weight: bold;
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  .pages.clinic #overview .overview-list .item dt {
    width: 20%;
  }
}
@media (max-width: 650px) {
  .pages.clinic #overview .overview-list .item dt {
    width: 25%;
  }
}
@media (max-width: 500px) {
  .pages.clinic #overview .overview-list .item dt {
    width: 37%;
  }
}
.pages.clinic #overview .overview-list .item dd {
  width: 82%;
}
@media (max-width: 768px) {
  .pages.clinic #overview .overview-list .item dd {
    width: 80%;
  }
}
@media (max-width: 650px) {
  .pages.clinic #overview .overview-list .item dd {
    width: 75%;
  }
}
@media (max-width: 500px) {
  .pages.clinic #overview .overview-list .item dd {
    width: 63%;
  }
}
.pages.clinic #overview .hours {
  margin-block: 20px;
  font-size: 1.125rem;
  font-weight: bold;
}
.pages.clinic #overview table {
  border-collapse: separate;
  border-spacing: 0;
}
.pages.clinic #overview table tr:not(:first-child) th {
  border-left: 1px solid var(--blue-color);
}
.pages.clinic #overview table tr:not(:first-child) td:last-child {
  border-right: 1px solid var(--blue-color);
}
.pages.clinic #overview table tr:last-child th,
.pages.clinic #overview table tr:last-child td {
  border-bottom: 1px solid var(--blue-color);
}
.pages.clinic #overview .btn {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
@media (max-width: 650px) {
  .pages.clinic #overview .btn {
    width: 272px;
  }
}
.pages.clinic #overview .btn a {
  background-color: var(--blue-color);
}
@media (max-width: 650px) {
  .pages.clinic #overview .btn a {
    width: 100%;
  }
}
.pages.clinic #overview .btn a .arrow {
  color: var(--blue-color);
}
@media (max-width: 650px) {
  .pages.clinic #overview .btn.first {
    margin-inline: auto;
  }
}
.pages.clinic #overview .btn.first a {
  background-color: var(--btn-blue-color);
}
.pages.clinic #overview .btn.first a .arrow {
  color: var(--btn-blue-color);
}
.pages.clinic #overview .btn-wrapper {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
@media (max-width: 650px) {
  .pages.clinic #overview .btn-wrapper {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
}
.pages.clinic #overview .btn-wrapper .btn {
  margin-top: initial;
}
.pages.clinic #reception .medical-outer {
  margin-bottom: 40px;
}
.pages.clinic #reception ol li {
  list-style: decimal;
  list-style-position: outside;
  margin-left: 24px;
}
.pages.clinic #reception dd p {
  margin-top: 20px;
}

.pages.medical_staff .top::before {
  background-image: url(../img/hamakkoko_clinic-contents.jpg);
}
.pages.medical_staff .wrapper {
  max-width: 1000px;
}
.pages.medical_staff #greeting-lo .staff:not(:first-of-type) {
  margin-top: 100px;
}
@media (max-width: 500px) {
  .pages.medical_staff #greeting-lo .staff:not(:first-of-type) {
    margin-top: 60px;
  }
}
@media (max-width: 768px) {
  .pages.medical_staff #greeting-lo .staff:nth-of-type(1) .greeting-top .br-ltb {
    display: none;
  }
}
@media (max-width: 650px) {
  .pages.medical_staff #greeting-lo .staff:nth-of-type(1) .greeting-top .br-ltb {
    display: block;
  }
}
@media (max-width: 768px) {
  .pages.medical_staff #greeting-lo .staff:nth-of-type(2) .greeting-top {
    flex-direction: column-reverse;
  }
}
@media (max-width: 768px) {
  .pages.medical_staff #greeting-lo .staff:nth-of-type(3) .greeting-top .br-ltb {
    display: none;
  }
}
@media (max-width: 650px) {
  .pages.medical_staff #greeting-lo .staff:nth-of-type(3) .greeting-top .br-ltb {
    display: block;
  }
}
.pages.medical_staff #greeting-lo .staff section {
  padding-block: initial;
  margin-top: initial;
}
.pages.medical_staff #greeting-lo .staff section.career {
  margin-top: 40px;
}
.pages.medical_staff #greeting-lo .greeting-top {
  background-color: var(--light-yellow-color);
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 40px;
  margin-bottom: 40px;
  border-radius: 20px;
}
@media (max-width: 1000px) {
  .pages.medical_staff #greeting-lo .greeting-top {
    gap: 40px;
    padding: 40px 30px;
  }
}
@media (max-width: 768px) {
  .pages.medical_staff #greeting-lo .greeting-top {
    flex-direction: column;
  }
}
@media (max-width: 500px) {
  .pages.medical_staff #greeting-lo .greeting-top {
    padding: 40px 10px;
  }
}
.pages.medical_staff #greeting-lo .greeting-top .portrait {
  width: 218px;
}
.pages.medical_staff #greeting-lo .greeting-top .portrait img {
  height: 296px;
  border-radius: 20px;
}
.pages.medical_staff #greeting-lo .greeting-top .text {
  flex: 1;
}
.pages.medical_staff #greeting-lo .greeting-top .text .lead {
  font-size: 1.5rem;
  font-weight: bold;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 3px dotted var(--blue-color);
}
.pages.medical_staff #greeting-lo .greeting-top .text .name {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.pages.medical_staff #greeting-lo .greeting-top .text .name-en {
  font-family: var(--ff-num);
  color: var(--light-blue-color);
}
.pages.medical_staff #greeting-lo .content:not(:first-of-type) {
  margin-top: 20px;
}
.pages.medical_staff #greeting-lo h5 {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--text-color);
  border-bottom: 2px solid var(--blue-color);
  padding-bottom: 10px;
  margin-bottom: 33px;
}
.pages.medical_staff #greeting-lo .career {
  margin-block: 40px;
}
.pages.medical_staff #greeting-lo .career dl {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 650px) {
  .pages.medical_staff #greeting-lo .career dl {
    flex-direction: column;
  }
}
.pages.medical_staff #greeting-lo .career dl dt,
.pages.medical_staff #greeting-lo .career dl dd {
  border-bottom: 1px solid var(--light-blue-color);
  padding-bottom: 10px;
}
.pages.medical_staff #greeting-lo .career dl dt:not(:first-of-type),
.pages.medical_staff #greeting-lo .career dl dd:not(:first-of-type) {
  margin-top: 10px;
}
.pages.medical_staff #greeting-lo .career dl dt {
  width: 30%;
}
@media (max-width: 650px) {
  .pages.medical_staff #greeting-lo .career dl dt {
    width: 100%;
    border-bottom: none;
    padding-bottom: initial;
  }
}
.pages.medical_staff #greeting-lo .career dl dd {
  width: 70%;
}
@media (max-width: 650px) {
  .pages.medical_staff #greeting-lo .career dl dd {
    width: 100%;
  }
}
@media (max-width: 650px) {
  .pages.medical_staff #greeting-lo .career dl dd:not(:first-of-type) {
    margin-top: initial;
  }
}
.pages.medical_staff #greeting-lo .qualification li::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-color: var(--light-blue-color);
  border-radius: 50%;
  margin-right: 15px;
}
@media (max-width: 500px) {
  .pages.medical_staff #greeting-lo .qualification li::before {
    margin-right: 3px;
  }
}
.pages.medical_staff #greeting-lo .qualification li:not(:first-of-type) {
  margin-top: 10px;
}
.pages.medical_staff #greeting-lo .qualification li span {
  font-weight: bold;
}
.pages.medical_staff #recruitment p {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}
.pages.medical_staff #recruitment .btn {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
@media (max-width: 500px) {
  .pages.medical_staff #recruitment .btn {
    margin-top: 20px;
  }
}
.pages.medical_staff #recruitment .btn a {
  background-color: var(--blue-color);
}
.pages.medical_staff #recruitment .btn a .arrow {
  color: var(--blue-color);
}

.pages.facility_guide .top::before {
  background-image: url(../img/hamakkoko_clinic-contents.jpg);
}
.pages.facility_guide .wrapper {
  max-width: 1000px;
}
.pages.facility_guide .medical-dl dt {
  font-weight: bold;
  font-size: 1.125rem;
  border-bottom: 2px solid var(--blue-color);
  padding-bottom: 10px;
}
.pages.facility_guide .medical-dl dd {
  margin-top: 20px;
}
.pages.facility_guide .medical-dl dd:not(:last-of-type) {
  margin-bottom: 40px;
}
.pages.facility_guide .medical-dl dd .under-dot {
  font-weight: bold;
}
.pages.facility_guide .medical-dl dd .list-title {
  font-weight: bold;
  margin-top: 20px;
}
.pages.facility_guide .mr-list {
  margin-top: 20px;
}
.pages.facility_guide .mr-list li,
.pages.facility_guide .mr-list dt {
  display: flex;
  align-items: flex-start;
}
.pages.facility_guide .mr-list li::before,
.pages.facility_guide .mr-list dt::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-color: var(--light-blue-color);
  border-radius: 50%;
  margin-right: 5px;
  margin-top: 5px;
  flex-shrink: 0;
}
.pages.facility_guide .mr-list li:not(:first-of-type),
.pages.facility_guide .mr-list dt:not(:first-of-type) {
  margin-top: 10px;
}
.pages.facility_guide .gallery {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
@media (max-width: 768px) {
  .pages.facility_guide .gallery {
    flex-direction: column;
  }
}
@media (max-width: 500px) {
  .pages.facility_guide .gallery {
    gap: 20px;
  }
}
.pages.facility_guide .gallery h5 {
  color: var(--blue-color);
  font-size: 0.875rem;
  text-align: center;
  margin-top: 20px;
}
@media (max-width: 500px) {
  .pages.facility_guide .gallery h5 {
    margin-top: 10px;
  }
}
.pages.facility_guide .gallery img {
  border-radius: 20px;
}
.pages.facility_guide .gallery-main {
  flex: 1;
}
.pages.facility_guide .gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  width: 210px;
}
@media (max-width: 768px) {
  .pages.facility_guide .gallery-thumbs {
    width: 100%;
    grid-template-columns: repeat(7, 1fr);
  }
}
@media (max-width: 650px) {
  .pages.facility_guide .gallery-thumbs {
    grid-template-columns: repeat(5, 1fr);
  }
}
.pages.facility_guide .gallery-thumbs li {
  cursor: pointer;
  transition: all 0.5s;
}
.pages.facility_guide .gallery-thumbs li:hover {
  opacity: 0.5;
}
.pages.facility_guide .gallery-thumbs li img {
  border-radius: 10px;
  height: 100%;
}
.pages.facility_guide #annex {
  padding-bottom: 90px;
  background-color: var(--white-color);
}
@media (max-width: 500px) {
  .pages.facility_guide #annex {
    padding-bottom: 60px;
  }
}
.pages.facility_guide #annex .content {
  margin-bottom: 100px;
}
@media (max-width: 500px) {
  .pages.facility_guide #annex .content {
    margin-bottom: 40px;
  }
}
.pages.facility_guide #annex .text:not(:first-of-type) {
  margin-top: 20px;
}
.pages.facility_guide #annex .mr-list {
  margin-bottom: 40px;
}
.pages.facility_guide #usage-flow {
  position: relative;
  padding: 140px 20px;
  margin-top: -60px;
}
@media (max-width: 768px) {
  .pages.facility_guide #usage-flow {
    padding-top: 80px;
    margin-top: initial;
  }
}
@media (max-width: 500px) {
  .pages.facility_guide #usage-flow {
    padding: 80px 10px;
    margin-top: -40px;
  }
}
.pages.facility_guide #usage-flow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--light-blue-color);
  opacity: 0.5;
  z-index: -1;
}
.pages.facility_guide #usage-flow .wrapper {
  background-color: var(--white-color);
  border-radius: 20px;
  padding: 40px;
}
@media (max-width: 650px) {
  .pages.facility_guide #usage-flow .wrapper {
    padding: 40px 20px;
  }
}
@media (max-width: 500px) {
  .pages.facility_guide #usage-flow .wrapper {
    padding: 20px 10px;
  }
}
.pages.facility_guide #usage-flow .note {
  font-size: 1.125rem;
  font-weight: bold;
  color: var(--blue-color);
  text-align: center;
}
@media (max-width: 650px) {
  .pages.facility_guide #usage-flow .note {
    text-align: left;
  }
}
@media (max-width: 500px) {
  .pages.facility_guide #usage-flow .note {
    font-size: 1rem;
  }
}
.pages.facility_guide #usage-flow .map {
  max-width: 400px;
  margin: 20px auto;
}
.pages.facility_guide #usage-flow .explanation {
  text-align: center;
}
.pages.facility_guide #usage-flow ul {
  margin-top: 60px;
}
.pages.facility_guide #usage-flow .step-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  position: relative;
}
@media (max-width: 650px) {
  .pages.facility_guide #usage-flow .step-item {
    gap: 20px;
  }
}
@media (max-width: 500px) {
  .pages.facility_guide #usage-flow .step-item {
    gap: 10px;
  }
}
.pages.facility_guide #usage-flow .step-item:first-child::before {
  border-radius: 20px 20px 0 0;
}
.pages.facility_guide #usage-flow .step-item:first-child .border-line {
  top: 40px;
}
.pages.facility_guide #usage-flow .step-item:last-child::before {
  border-radius: 0 0 20px 20px;
}
.pages.facility_guide #usage-flow .step-item:not(:first-of-type) {
  margin-top: 40px;
}
.pages.facility_guide #usage-flow .step-item .num {
  text-align: center;
  font-size: 0.875rem;
  font-weight: bold;
  color: var(--white-color);
  background-color: var(--blue-color);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.pages.facility_guide #usage-flow .step-item .num span {
  font-size: 1.125rem;
}
.pages.facility_guide #usage-flow .step-item .step {
  flex: 1;
  margin-top: 8px;
}
.pages.facility_guide #usage-flow .step-item .label {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 40px;
}
@media (max-width: 500px) {
  .pages.facility_guide #usage-flow .step-item .label {
    margin-bottom: 20px;
  }
}
.pages.facility_guide #usage-flow .step-item .call dt {
  color: var(--blue-color);
  font-weight: bold;
  margin-bottom: 20px;
}
.pages.facility_guide #usage-flow .step-item .call dd {
  display: flex;
}
.pages.facility_guide #usage-flow .step-item .call dd::before {
  content: "・";
}
.pages.facility_guide #usage-flow .step-item .call dd:first-of-type {
  margin-bottom: 20px;
}
.pages.facility_guide #interview-room .content {
  margin-bottom: 40px;
}
.pages.facility_guide #interview-room .item {
  display: flex;
}
@media (max-width: 500px) {
  .pages.facility_guide #interview-room .item {
    flex-direction: column;
  }
}
.pages.facility_guide #interview-room .item dt {
  border-bottom: none;
  font-size: 1rem;
  padding-bottom: initial;
  flex-shrink: 0;
}
.pages.facility_guide #interview-room .item dd {
  margin-top: initial;
}
@media (max-width: 500px) {
  .pages.facility_guide #interview-room .item dd {
    margin-left: 10px;
  }
}
.pages.facility_guide #interview-room .medical-dl dl {
  margin-bottom: 20px;
}
.pages.facility_guide #interview-room .medical-dl p {
  color: var(--blue-color);
}
.pages.facility_guide #message .content:last-of-type {
  margin-top: 20px;
}

.pages.reservation .top {
  padding-bottom: initial;
}
.pages.reservation .top::before {
  background-image: url(../img/signboard.jpg);
  background-position: 50% 34%;
}
.pages.reservation .medical-dl dt {
  font-weight: bold;
  font-size: 1.125rem;
  border-bottom: 2px solid var(--blue-color);
  padding-bottom: 10px;
}
.pages.reservation .medical-dl dd {
  margin-top: 20px;
}
.pages.reservation .medical-dl dd:not(:last-of-type) {
  margin-bottom: 40px;
}
.pages.reservation .medical-dl dd .under-dot {
  font-weight: bold;
}
.pages.reservation .medical-dl dd .list-title {
  font-weight: bold;
  margin-top: 20px;
}
.pages.reservation .mr-list {
  margin-top: 20px;
}
.pages.reservation .mr-list li {
  display: flex;
  align-items: flex-start;
}
.pages.reservation .mr-list li::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-color: var(--light-blue-color);
  border-radius: 50%;
  margin-right: 15px;
  margin-top: 9px;
  flex-shrink: 0;
}
.pages.reservation .mr-list li:not(:first-of-type) {
  margin-top: 10px;
}
.pages.reservation .btn {
  margin-top: 40px;
}
.pages.reservation .reservation-bg {
  position: relative;
  padding: 80px;
}
@media (max-width: 500px) {
  .pages.reservation .reservation-bg {
    padding: 40px 20px;
  }
}
.pages.reservation .reservation-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--light-blue-color);
  opacity: 0.5;
  z-index: -1;
}
.pages.reservation .reservation-bg .wrapper {
  background-color: var(--white-color);
  padding: 40px;
  border-radius: 20px;
}
@media (max-width: 500px) {
  .pages.reservation .reservation-bg .wrapper {
    padding: 40px 20px;
  }
}
.pages.reservation #line-reservation .qr-code {
  width: 200px;
  margin-inline: auto;
  margin-top: 40px;
}
.pages.reservation #line-reservation .btn {
  display: flex;
  justify-content: center;
}
.pages.reservation #line-reservation .btn a {
  background-color: var(--line-color);
}
.pages.reservation #line-reservation .btn a .arrow {
  color: var(--line-color);
}
.pages.reservation #web-reservation {
  padding-top: initial;
  margin-top: initial;
}
.pages.reservation #web-reservation .wrapper {
  padding: 100px 40px 40px 40px;
}
.pages.reservation #web-reservation .btn {
  display: flex;
  justify-content: center;
}
.pages.reservation #web-reservation .btn a {
  background-color: var(--blue-color);
}
.pages.reservation #web-reservation .btn a .arrow {
  color: var(--blue-color);
}

.pages.news .top::before {
  background-image: url(../img/hamakkoko_top-MV.jpg);
}
.pages.news #news-lo .item {
  border-bottom: 2px solid var(--blue-color);
  padding-bottom: 40px;
}
.pages.news #news-lo .item:not(:first-of-type) {
  padding-top: 40px;
}
.pages.news #news-lo .item-wrapper {
  display: flex;
  gap: 20px;
}
.pages.news #news-lo .item-wrapper .classification {
  color: var(--white-color);
  display: inline-block;
  width: 105px;
  border-radius: 20px;
  text-align: center;
}
.pages.news #news-lo .item-wrapper .classification.news-cl {
  background-color: #6CBB5A;
}
.pages.news #news-lo .item-wrapper .classification.important-cl {
  background-color: #F39953;
}
.pages.news #news-lo .item h4 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-block: 40px;
}
@media (max-width: 500px) {
  .pages.news #news-lo .item h4 {
    margin-block: 10px 20px;
  }
}

.pages.column .top::before {
  background-image: url(../img/hamakkoko_column.jpg);
  background-size: 265%;
  background-position: 48% 13%;
}
.pages.column .column-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(20px, 20px + 30 * (100vw - 768px) / 512, 50px);
}
@media (max-width: 500px) {
  .pages.column .column-list {
    gap: 30px;
    margin-bottom: 40px;
  }
}
.pages.column .column-list li a {
  transition: all 0.5s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.pages.column .column-list li a:hover {
  opacity: 0.5;
}
.pages.column .column-list li .thumbnail img {
  border-radius: 20px 20px 0 0;
  height: 210px;
}
@media (max-width: 650px) {
  .pages.column .column-list li .thumbnail img {
    height: 150px;
  }
}
.pages.column .column-list li .inner {
  border-radius: 0 0 20px 20px;
  padding: 9px 11px 15px;
  line-height: 1;
  flex: 1;
  position: relative;
}
.pages.column .column-list li .inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--light-blue-color);
  opacity: 0.5;
  border-radius: 0 0 20px 20px;
  z-index: -1;
}
.pages.column .column-list li .label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  margin-bottom: 10px;
}
@media (max-width: 650px) {
  .pages.column .column-list li .label {
    flex-direction: column;
    gap: 10px;
  }
}
.pages.column .column-list li .category {
  color: var(--blue-color);
  background-color: var(--white-color);
  border-radius: 20px;
  padding: 5px 10px;
}
.pages.column .column-list li .date {
  font-family: var(--ff-num);
}
.pages.column .column-list li h4 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  font-size: 1.125rem;
  line-height: 1.3;
}
@media (max-width: 650px) {
  .pages.column .column-list li h4 {
    flex-direction: column;
    height: calc(100% - 44.5px);
  }
}
@media (max-width: 500px) {
  .pages.column .column-list li h4 .content {
    flex: 1;
  }
}
.pages.column .column-list li h4 .circle {
  display: inline-block;
  width: 34px;
  height: 34px;
  background-color: var(--white-color);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
@media (max-width: 650px) {
  .pages.column .column-list li h4 .circle {
    margin-left: auto;
  }
}
.pages.column .column-list li h4 .arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pages.column .column-list li h4 .arrow::before {
  content: "→";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--blue-color);
}
.pages.column .pc-cl {
  padding-bottom: 140px;
}
@media (max-width: 500px) {
  .pages.column .pc-cl {
    display: none;
  }
}
.pages.column .sp .column-list {
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.pages.contact .top {
  padding-bottom: initial;
}
.pages.contact .top::before {
  background-image: url(../img/exterior2.jpg);
  background-position: 50% 34%;
}
.pages.contact .bg-lo {
  position: relative;
  padding-bottom: 100px;
  padding-inline: 4%;
}
@media (max-width: 500px) {
  .pages.contact .bg-lo {
    padding-bottom: 60px;
  }
}
.pages.contact .bg-lo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--light-blue-color);
  opacity: 0.5;
  z-index: -1;
}
.pages.contact .title {
  margin-top: initial;
  padding-top: 40px;
}
.pages.contact .mr-list {
  margin-block: 20px 40px;
}
.pages.contact .mr-list li {
  display: flex;
  align-items: flex-start;
}
.pages.contact .mr-list li::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-color: var(--light-blue-color);
  border-radius: 50%;
  margin-right: 15px;
  margin-top: 9px;
  flex-shrink: 0;
}
.pages.contact .mr-list li:not(:first-of-type) {
  margin-top: 10px;
}
.pages.contact .bold {
  font-weight: bold;
}
.pages.contact .wpcf7-spinner {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  margin: initial;
}
.pages.contact .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 20px;
}
.pages.contact .required {
  color: var(--red-color);
  text-align: center;
}
.pages.contact label {
  display: flex;
  flex-direction: column;
}
.pages.contact label input,
.pages.contact label textarea {
  border: 1px solid var(--blue-color);
  width: 100%;
  padding-inline: 8px;
  margin-top: 5px;
}
@media (max-width: 500px) {
  .pages.contact label input,
.pages.contact label textarea {
    font-size: 1.15rem;
  }
}
.pages.contact label textarea {
  height: 92px;
}
.pages.contact fieldset {
  border: none;
  margin-bottom: 20px;
}
.pages.contact fieldset input {
  width: initial;
}
.pages.contact .label-wrap {
  font-weight: bold;
}
.pages.contact .wpcf7-list-item {
  margin: initial;
}
.pages.contact .wpcf7-list-item label {
  flex-direction: row;
  gap: 10px;
  margin-top: 5px;
}
.pages.contact .wpcf7-list-item label input {
  margin: initial;
}
.pages.contact .item {
  margin-bottom: 20px;
}
.pages.contact .form {
  margin-top: 20px;
}
.pages.contact #contact .wrapper,
.pages.contact #reservation-form .wrapper {
  background-color: var(--white-color);
  border-radius: 20px;
  padding: 40px 40px 80px;
  margin-top: 80px;
}
@media (max-width: 500px) {
  .pages.contact #contact .wrapper,
.pages.contact #reservation-form .wrapper {
    padding: 20px 10px 40px;
    margin-top: 40px;
  }
}
.pages.contact #contact .btn,
.pages.contact #reservation-form .btn {
  margin-top: 40px;
  border-radius: 50px;
  background-color: var(--blue-color);
  font-weight: bold;
  opacity: 1;
  transition: all 0.5s ease;
  margin-inline: auto;
  position: relative;
  width: 175px;
  text-align: center;
  display: flex;
  justify-content: center;
}
.pages.contact #contact .btn input,
.pages.contact #reservation-form .btn input {
  color: var(--white-color);
  width: 100%;
  padding: 12.5px 80px 12.5px 25px;
  letter-spacing: 2px;
}
.pages.contact #contact .btn .circle,
.pages.contact #reservation-form .btn .circle {
  display: inline-block;
  width: 34px;
  height: 34px;
  background-color: var(--white-color);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  transition: all 0.5s ease;
}
.pages.contact #contact .btn .arrow,
.pages.contact #reservation-form .btn .arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pages.contact #contact .btn .arrow::before,
.pages.contact #reservation-form .btn .arrow::before {
  content: "→";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--blue-color);
}
.pages.contact #contact .btn:hover,
.pages.contact #reservation-form .btn:hover {
  opacity: 0.7;
}
.pages.contact #contact .btn:hover .circle,
.pages.contact #reservation-form .btn:hover .circle {
  right: 5px;
}
.pages.contact #contact .inner p {
  line-height: 1;
}
.pages.contact #reservation-form {
  padding-top: initial;
  margin-top: initial;
}
.pages.contact #reservation-form .wrapper {
  margin-top: initial;
}

.pages.column .top::before {
  background-image: url(../img/hamakkoko_column.jpg);
  background-size: 265%;
  background-position: 48% 13%;
}
.pages.column #single {
  background-color: var(--light-yellow-color);
  padding-inline: 4%;
  margin-top: initial;
}
.pages.column #single .wrapper {
  background-color: var(--white-color);
  padding: 40px 40px 80px;
  border-radius: 20px;
}
@media (max-width: 500px) {
  .pages.column #single .wrapper {
    padding: 20px 10px 40px;
  }
}
.pages.column #single .pages-title {
  flex-direction: column;
  text-align: center;
  margin-bottom: 80px;
}
.pages.column #single .thumbnail {
  width: 80%;
  margin-inline: auto;
  margin-bottom: 40px;
}
.pages.column #single .thumbnail img {
  height: 316px;
}
.pages.column #single .wp-block-heading {
  font-size: 1rem;
  text-align: left;
  border-bottom: 2px solid var(--blue-color);
  margin-block: 40px 20px;
  border-radius: initial;
  padding-inline: initial;
  display: block;
  line-height: 1.8;
}
.pages.column #single .wp-block-heading span {
  color: var(--text-color);
  font-size: 1rem;
  font-weight: bold;
  font-family: var(--ff-jp);
}
.pages.column #single .wp-block-list {
  margin-block: 20px;
}
.pages.column #single figure {
  margin-block: 40px;
}
.pages.column #single hr {
  border-top: none;
}
.pages .btn.single {
  display: flex;
  justify-content: center;
  padding: initial;
  margin-block: 80px;
}
@media (max-width: 650px) {
  .pages .btn.single {
    justify-content: center;
  }
}
.pages .btn.single a {
  background-color: var(--blue-color);
}
.pages .btn.single a .arrow {
  color: var(--blue-color);
}

.pages.privacy_policy .top::before {
  background-image: url(../img/hamakkoko_interior2-2.jpg);
  background-position: top;
}
.pages #privacy_policy {
  margin-bottom: 100px;
}
.pages #privacy_policy .lead {
  margin-bottom: 40px;
}
.pages #privacy_policy .pp-dt {
  font-weight: bold;
  font-size: 1.125rem;
  border-bottom: 2px solid var(--blue-color);
  padding-bottom: 10px;
}
.pages #privacy_policy .pp-dd {
  margin-top: 20px;
}
.pages #privacy_policy .pp-dd:not(:last-of-type) {
  margin-bottom: 40px;
}
.pages #privacy_policy .pp-dd li {
  display: flex;
  align-items: flex-start;
}
.pages #privacy_policy .pp-dd li::before {
  content: "・";
}
.pages #privacy_policy .pp-dd dl {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .pages #privacy_policy .pp-dd dl {
    flex-direction: column;
    align-items: flex-start;
  }
}
.pages #privacy_policy .pp-dd dl dt::before {
  content: "・";
}
.pages #privacy_policy .pp-dd dl dd {
  margin-left: 20px;
}
.pages #privacy_policy .revision-date {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 40px;
}
/*# sourceMappingURL=main.css.map */