@charset "UTF-8";
@keyframes hoverMenu {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOutMask {
  0% {
    opacity: 1;
    z-index: 200;
  }
  99% {
    opacity: 0.02;
    z-index: 200;
  }
  100% {
    z-index: -1;
    opacity: 0;
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(1rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(1rem);
  }
}
@keyframes textUp {
  0% {
    opacity: 0;
    transform: translateY(60%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
@keyframes zoomLink {
  to {
    transform: scale(105%);
  }
}
.lang_en {
  font-family: "Urbanist", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

/* */
@media screen and (min-width: 750px) {
  .pc_only {
    display: block;
  }
}
@media screen and (max-width: 749px) {
  .pc_only {
    display: none;
  }
}

@media screen and (min-width: 750px) {
  .sp_only {
    display: none;
  }
}
@media screen and (max-width: 749px) {
  .sp_only {
    display: block;
  }
}

/* http://meyerweb.com/eric/tools/css/reset/ 
 * v2.0 | 20110126
 * License: none (public domain)
 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

img {
  vertical-align: top;
}

#mask {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #ffffff;
  z-index: 200;
}
#mask.action {
  animation: fadeOutMask 1s ease-in-out forwards;
}

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

p {
  line-height: 2;
}

h2, h3, h4 {
  letter-spacing: 0.05em;
}

html {
  font-size: 16px;
}
@media screen and (max-width: 1100px) {
  html {
    font-size: 14px;
  }
}
@media screen and (max-width: 749px) {
  html {
    font-size: 14px;
  }
}
html.open {
  overflow: hidden;
}
html.open body {
  overflow: hidden;
}
html.open header#top div.inner .logo_box #sp_menu {
  background: url("../img/common/sp_menu_close.webp") no-repeat center/cover;
}
html.open header#top #menu {
  display: block;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", "Yu Gothic", "Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
  position: relative;
  width: 100%;
  color: #000000;
  background: #ffffff;
}

a {
  text-decoration: none;
}

.en {
  letter-spacing: 0.05em;
  font-family: "Tenor Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}

@media screen and (min-width: 750px) {
  header {
    width: clamp(300px, 22vw, 400px);
    position: fixed;
    top: 2.8125rem;
    left: 2.8125rem;
    width: 25rem;
    z-index: 10;
  }
}
@media screen and (max-width: 749px) {
  header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
  }
  header > .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    width: 90%;
    padding-top: 20px;
    margin-left: auto;
    margin-right: auto;
  }
}
header .logo_box h1 {
  z-index: 3;
  width: 100%;
  position: relative;
  overflow: hidden;
}
header .logo_box h1 a {
  display: block;
  text-indent: -9999em;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  background: url("../img/common/logo.webp") no-repeat center/cover;
  aspect-ratio: 400/80;
}
@media screen and (max-width: 749px) {
  header .logo_box {
    width: clamp(250px, 40vw, 400px);
  }
}
@media screen and (min-width: 750px) {
  header #menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    width: 21.6875rem;
    background-color: var(--blue);
    animation: fadeIn 0.5s ease-in-out forwards;
    opacity: 0;
  }
  header #menu .blind {
    position: fixed;
    inset: 0 21.6875rem 0 0;
    z-index: 4;
    opacity: 0;
    background: rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.5s ease-in-out forwards;
  }
  header #menu .inner a {
    color: #ffffff;
    font-size: clamp(12px, 1.8vw, 20px);
  }
  header #menu .inner a span {
    display: block;
    margin-top: 0.625rem;
    font-size: 0.8em;
  }
  header #menu .inner {
    padding: 3.125rem 2.8125rem 2.8125rem;
  }
  header #menu .inner .upper {
    gap: 1.875rem;
    display: flex;
    margin-bottom: clamp(30px, 3.5vw, 88px);
  }
  header #menu .inner .upper #sp_menu_close {
    background: url("../img/common/sp_menu_close.webp") no-repeat center/cover;
    width: 3.125rem;
    aspect-ratio: 1/1;
    box-sizing: border-box;
    border: 1px solid #ffffff;
    border-radius: 0.1875rem;
  }
  header #menu .inner .upper #sp_menu_close:hover {
    opacity: 0.8;
    cursor: pointer;
  }
  header #menu .inner .upper .link {
    display: flex;
    width: 11.0625rem;
    height: 3.125rem;
    box-sizing: border-box;
    border: 1px solid #ffffff;
    border-radius: 0.1875rem;
  }
  header #menu .inner .upper .link span {
    margin: auto;
    color: #ffffff;
  }
  header #menu .inner ul li + li {
    margin-top: clamp(20px, 2.5vw, 40px);
  }
  header #menu .document {
    color: #ffffff;
    display: block;
    margin-top: clamp(20px, 2.5vw, 40px);
  }
  header #menu .document a {
    font-size: 1rem;
    text-decoration: underline;
  }
  header #menu .timeTable {
    display: none;
  }
  header #menu address {
    margin-top: clamp(30px, 3.5vw, 90px);
    color: #ffffff;
    line-height: 1.5em;
    font-size: clamp(12px, 1.5vw, 16px);
  }
  header #menu span.tel {
    font-size: clamp(12px, 1.5vw, 16px);
    display: block;
    margin-top: 2em;
  }
  header #menu span.tel a {
    display: flex;
    font-size: 1em;
    gap: 0.625rem;
  }
  header #menu span.tel a span {
    margin-bottom: 0;
    margin-top: auto;
  }
  header #menu span.tel a em {
    font-size: 2em;
  }
}
@media screen and (max-width: 749px) {
  header #menu {
    display: none;
    margin-top: 35px;
    box-sizing: border-box;
    height: 80vh;
    overflow: auto;
  }
  header #menu .upper {
    display: none;
  }
  header #menu .inner {
    padding-bottom: 80px;
  }
  header #menu .inner > ul li a {
    display: block;
    text-align: center;
    font-size: 16px;
    color: #ffffff;
  }
  header #menu .inner > ul li a span {
    display: block;
    margin-top: 10px;
    font-size: 12.8px;
  }
  header #menu .inner > ul li + li {
    margin-top: 30px;
  }
  header #menu .inner address {
    color: #ffffff;
    text-align: center;
    display: block;
    line-height: 1.5;
    font-size: 12.8px;
    margin-top: 42px;
    margin-bottom: 14px;
  }
  header #menu .inner .document {
    color: #ffffff;
    display: block;
    margin-top: 30px;
    text-align: center;
  }
  header #menu .inner .document a {
    font-size: 16px;
    color: #ffffff;
    text-decoration: underline;
  }
  header #menu .inner .timeTable {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  header #menu .inner span.tel {
    display: block;
    margin-top: 22.6px;
  }
  header #menu .inner span.tel a {
    display: flex;
    justify-content: center;
    font-size: 12.8px;
    gap: 0.625rem;
    color: #ffffff;
  }
  header #menu .inner span.tel a span {
    margin-bottom: 0;
    margin-top: auto;
  }
  header #menu .inner span.tel a em {
    font-size: 2em;
  }
}

html body #pc_menu,
html body #sp_menu {
  background: url("../img/common/sp_menu.webp") no-repeat center/cover;
  width: 3.125rem;
  aspect-ratio: 1/1;
  box-sizing: border-box;
  border: 1px solid #ffffff;
  border-radius: 0.1875rem;
}
html body #pc_menu:hover,
html body #sp_menu:hover {
  opacity: 0.8;
  cursor: pointer;
}
@media screen and (min-width: 750px) {
  html body #sp_menu {
    display: none;
  }
}
@media screen and (max-width: 749px) {
  html body #menu_box {
    display: none;
  }
}
html body #menu_box .link {
  display: flex;
  width: 11.0625rem;
  height: 3.125rem;
  box-sizing: border-box;
  border: 1px solid #ffffff;
  border-radius: 0.1875rem;
}
html body #menu_box .link span {
  margin: auto;
  color: #ffffff;
}
html body #menu_box .insta {
  width: 3.125rem;
  aspect-ratio: 1/1;
  box-sizing: border-box;
  border-radius: 0.1875rem;
}
@media screen and (min-width: 750px) {
  html body:not(.home) #pc_menu {
    background: url("../img/common/sp_menu2.webp") #ffffff no-repeat center/cover;
  }
}
@media screen and (max-width: 749px) {
  html body:not(.home) #sp_menu {
    background: url("../img/common/sp_menu2.webp") no-repeat center/cover;
  }
}
@media screen and (max-width: 749px) {
  html.open body #sp_menu {
    border-color: #ffffff;
    background-color: var(--blue);
    background: url("../img/common/sp_menu_close.webp") no-repeat center/cover;
  }
}

body:not(.home) header .logo_box h1 {
  opacity: 0;
  animation: fadeIn 0.5s ease-in-out forwards;
}
body:not(.home) header .logo_box h1.fade {
  animation: fadeOut 0.5s ease-in-out forwards;
  pointer-events: none;
}
body:not(.home) #pc_menu,
body:not(.home) #sp_menu {
  border-color: #00516C;
  background-color: #ffffff;
  height: 3.125rem;
}
@media screen and (min-width: 750px) {
  body:not(.home) #menu_box {
    position: sticky;
    top: 0;
    right: 2.8125rem;
    z-index: 100;
    padding-top: 3.125rem;
    box-sizing: border-box;
    height: 100vh;
  }
  body:not(.home) #menu_box > div {
    position: relative;
    height: 100%;
    width: 1px;
  }
  body:not(.home) #menu_box > div > div.upper {
    gap: 1.875rem;
    display: flex;
    width: max-content;
    position: absolute;
    top: 0;
    right: 0;
  }
}
body:not(.home) #menu_box .link {
  border-color: #00516C;
  background-color: #ffffff;
}
body:not(.home) #menu_box .link span {
  color: #00516C;
}
body:not(.home) #menu_box .insta {
  border: none;
}
@media screen and (min-width: 750px) {
  body:not(.home) #menu_box #scroll {
    position: absolute;
    bottom: 3.125rem;
    right: 0;
    display: flex;
    gap: 1.25rem;
    width: max-content;
    height: max-content;
  }
  body:not(.home) #menu_box #scroll:after {
    content: "";
    display: block;
    width: 6.25rem;
    height: 1px;
    background-color: var(--blue);
    margin: auto 0;
  }
  body:not(.home) #menu_box #scroll:before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 2px;
    background: var(--blue);
    position: absolute;
    top: calc(50% - 2px);
    left: calc(4.5em + 1.25rem);
    animation: slideMove 2.5s linear infinite;
  }
  @keyframes slideMove {
    to {
      transform: translateX(6.25rem);
    }
  }
}
@media screen and (max-width: 749px) {
  body:not(.home) #menu_box #scroll {
    display: none;
  }
}
@media screen and (min-width: 750px) {
  body:not(.home) #scrollArea {
    overflow: hidden;
    width: 100%;
    height: 100vh;
  }
}
@media screen and (max-width: 749px) {
  body:not(.home) #scrollArea {
    padding-top: 120px;
  }
}
@media screen and (min-width: 750px) {
  body:not(.home) #wrap {
    width: max-content;
    display: flex;
  }
}
@media screen and (min-width: 750px) {
  body:not(.home) main {
    position: relative;
    display: flex;
    width: max-content;
    flex-direction: row;
    height: 100vh;
    box-sizing: border-box;
  }
  body:not(.home) main > div {
    height: 100%;
  }
  body:not(.home) main .head {
    box-sizing: border-box;
    padding: clamp(140px, 10vw, 170px) 0 5.625rem 2.8125rem;
    white-space: nowrap;
  }
  body:not(.home) main .head .title {
    display: flex;
    flex-direction: column;
    justify-content: end;
    height: 100%;
    border-right: 1px solid var(--blue);
    padding-right: 8rem;
  }
  body:not(.home) main .head .title h2 {
    font-size: 2rem;
    color: var(--blue);
    margin-bottom: 1.25rem;
  }
  body:not(.home) main .head .title span {
    color: var(--blue);
  }
  body:not(.home) main .box1 {
    box-sizing: border-box;
    padding: clamp(140px, 10vw, 170px) 8rem 5.625rem 8rem;
  }
  body:not(.home) main .box1.end {
    padding-right: 0;
  }
}
@media screen and (max-width: 749px) {
  body:not(.home) main .head {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
  }
  body:not(.home) main .head .title {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--blue);
  }
  body:not(.home) main .head .title h2 {
    font-size: 20px;
    color: var(--blue);
  }
  body:not(.home) main .head .title span {
    display: block;
    color: var(--blue);
    font-size: 14px;
    margin-top: 1em;
  }
  body:not(.home) main .box1 {
    padding: 0 10%;
    margin-top: 50px;
  }
}
@media screen and (min-width: 750px) {
  body:not(.home) footer {
    display: inline-block;
    min-width: 800px;
  }
}

@media screen and (min-width: 750px) {
  html.open #menu_box .upper {
    animation: fadeOut 0.5s ease-in-out forwards;
    pointer-events: none;
  }
  html.open #menu_box #scroll {
    display: none !important;
  }
  html.open .logo_box,
  html.open main,
  html.open footer {
    filter: blur(5px);
  }
}
@media screen and (max-width: 749px) {
  html.open header {
    background-color: var(--textColor);
    height: 100vh;
  }
  html.open header .logo_box h1 a {
    background: url("../img/common/logo_top.webp") no-repeat center/cover;
  }
}

body.home header .logo_box h1 a {
  background: url("../img/common/logo_top.webp") no-repeat center/cover;
}
@media screen and (min-width: 750px) {
  body.home #menu_box {
    position: fixed;
    top: 2.8125rem;
    right: 2.8125rem;
    z-index: 100;
    display: flex;
    gap: 1.875rem;
  }
  body.home footer {
    position: fixed;
    bottom: 2.8125rem;
    left: 2.8125rem;
    width: 32.5rem;
    z-index: 5;
  }
  body.home footer #timeTable table thead tr {
    background-color: rgba(255, 255, 255, 0.8);
  }
}

.title_box {
  padding-left: 1.5rem;
  position: relative;
}
.title_box:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  height: 4.25rem;
  width: 5px;
  background-color: var(--orange);
  border-radius: 1px;
}
.title_box h2 {
  font-size: 1.5rem;
  line-height: 1.5;
  margin-bottom: 0.625rem;
}
.title_box span {
  display: block;
  color: var(--blue);
  line-height: 1.5;
}

.timeTable ul {
  margin-top: 0.5rem;
}
.timeTable ul li {
  color: #ffffff;
  line-height: 1.6;
}
.timeTable table {
  width: 100%;
  display: block;
}
.timeTable table th, .timeTable table td {
  box-sizing: border-box;
  flex-basis: 10.2040816327%;
  display: block;
}
@media screen and (max-width: 749px) {
  .timeTable table th, .timeTable table td {
    flex-basis: 10.6666666667%;
  }
}
.timeTable table thead {
  display: block;
}
.timeTable table thead tr {
  display: flex;
  background: #ffffff;
  box-sizing: border-box;
}
.timeTable table thead th {
  padding: 1rem 0;
  text-align: center;
}
.timeTable table thead th span {
  display: block;
  text-align: center;
  color: var(--textColor);
  font-weight: bold;
  font-size: 1rem;
  line-height: 1;
}
.timeTable table thead th:first-child {
  flex-basis: 33.4183673469%;
}
@media screen and (max-width: 749px) {
  .timeTable table thead th:first-child {
    flex-basis: 38.5185185185%;
  }
}
@media screen and (max-width: 749px) {
  .timeTable table thead th:last-child {
    flex-basis: 9.7777777778%;
  }
}
.timeTable table tbody {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.timeTable table tbody tr {
  width: 100%;
  display: flex;
  box-sizing: border-box;
  border-bottom: 1px solid #ffffff;
}
.timeTable table tbody tr td {
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}
.timeTable table tbody tr td span {
  text-align: center;
  line-height: 1;
  display: block;
  padding: 1em 0;
  color: #ffffff;
}
.timeTable table tbody tr td:first-child {
  flex-basis: 33.4183673469%;
}
@media screen and (max-width: 749px) {
  .timeTable table tbody tr td:first-child {
    flex-basis: 38.5185185185%;
  }
}
@media screen and (max-width: 749px) {
  .timeTable table tbody tr td:last-child {
    flex-basis: 9.7777777778%;
  }
}
.timeTable p {
  font-size: 1rem;
  margin-top: 2rem;
  line-height: 1;
}

@media screen and (max-width: 749px) {
  body.home footer .timeTable {
    display: none;
  }
}

@media screen and (min-width: 750px) {
  body:not(.home) footer {
    margin-left: 8rem;
    background-color: var(--blue);
    display: grid;
    grid-template-columns: auto auto;
  }
  body:not(.home) footer:after {
    content: "";
    display: block;
    height: 100vh;
    aspect-ratio: 400/900;
    background: url("../img/common/bg_footer.webp") no-repeat center/cover;
  }
  body:not(.home) footer .inner {
    padding: 8rem 8rem 0;
    display: flex;
    flex-direction: column;
    width: max-content;
  }
  body:not(.home) footer .inner .logo {
    width: 25rem;
    margin: 0 auto clamp(15px, 3vw, 32px);
  }
  body:not(.home) footer .inner address {
    display: block;
    text-align: center;
    color: #ffffff;
    margin-bottom: calc(clamp(30px, 6vw, 64px) / 2);
  }
  body:not(.home) footer .inner address a {
    color: #ffffff;
    text-decoration: underline;
  }
  body:not(.home) footer .inner a.insta {
    display: block;
    width: 3.125rem;
    aspect-ratio: 1/1;
    margin: 0 auto calc(clamp(30px, 6vw, 64px) / 2);
  }
  body:not(.home) footer .inner > nav {
    margin: auto 0 clamp(30px, 10vw, 64px);
  }
  body:not(.home) footer .inner > nav ul {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
  }
  body:not(.home) footer .inner > nav ul li a {
    text-align: center;
    color: #ffffff;
    display: block;
    font-size: 16px;
  }
  body:not(.home) footer .inner > nav ul li a span {
    display: block;
    font-size: 14px;
    margin-top: 10px;
  }
  body:not(.home) footer .inner .info_box {
    display: flex;
    margin-top: clamp(15px, 3vw, 32px);
    column-gap: clamp(15px, 3vw, 32px);
  }
  body:not(.home) footer .inner .info_box span.tel {
    font-size: clamp(12px, 1.5vw, 16px);
    display: block;
    margin-top: auto;
    margin-bottom: 0;
  }
  body:not(.home) footer .inner .info_box span.tel a {
    display: flex;
    font-size: 1em;
    gap: 0.625rem;
    color: #ffffff;
  }
  body:not(.home) footer .inner .info_box span.tel a span {
    margin-bottom: 0;
    margin-top: auto;
  }
  body:not(.home) footer .inner .info_box span.tel a em {
    font-size: 2em;
  }
  body:not(.home) footer .inner .info_box .link {
    display: flex;
    width: 11.0625rem;
    height: 3.125rem;
    box-sizing: border-box;
    border: 1px solid #ffffff;
    border-radius: 0.1875rem;
  }
  body:not(.home) footer .inner .info_box .link span {
    margin: auto;
    color: #ffffff;
  }
  body:not(.home) footer .inner .timeTable {
    width: clamp(590px, 60vw, 758px);
  }
  body:not(.home) footer .inner .copyright {
    text-align: center;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 3.125rem;
  }
}
@media screen and (max-width: 749px) {
  body:not(.home) footer {
    background-color: var(--blue);
    margin-top: 50px;
    padding-top: 50px;
    padding-bottom: 80px;
  }
  body:not(.home) footer .logo {
    width: clamp(250px, 40vw, 340px);
    margin: 0 auto 20px;
  }
  body:not(.home) footer .inner {
    width: 90%;
    margin: 0 auto;
  }
  body:not(.home) footer address {
    display: block;
    color: #ffffff;
    line-height: 2;
    text-align: center;
    margin-bottom: 10px;
  }
  body:not(.home) footer address a {
    color: #ffffff;
    text-decoration: underline;
  }
  body:not(.home) footer a.insta {
    display: block;
    width: 3.125rem;
    aspect-ratio: 1/1;
    margin: 0 auto 10px;
  }
  body:not(.home) footer .info_box .link {
    display: none;
  }
  body:not(.home) footer .info_box span.tel {
    display: block;
    margin-top: 22.6px;
  }
  body:not(.home) footer .info_box span.tel a {
    display: flex;
    font-size: 12.8px;
    gap: 0.625rem;
    color: #ffffff;
  }
  body:not(.home) footer .info_box span.tel a span {
    margin-bottom: 0;
    margin-top: auto;
  }
  body:not(.home) footer .info_box span.tel a em {
    font-size: 2em;
  }
  body:not(.home) footer nav {
    padding: 50px 0;
    border-top: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
    margin-top: 50px;
  }
  body:not(.home) footer nav ul li {
    text-align: center;
  }
  body:not(.home) footer nav ul li a {
    color: #ffffff;
    font-size: 16px;
  }
  body:not(.home) footer nav ul li a span {
    display: block;
    font-size: 14px;
    margin-top: 10px;
  }
  body:not(.home) footer nav ul li + li {
    margin-top: 30px;
  }
  body:not(.home) footer .copyright {
    text-align: center;
    color: #ffffff;
    margin-top: 20px;
    font-size: 12px;
  }
}

@media screen and (min-width: 750px) {
  #floating_banner {
    display: none;
  }
}
@media screen and (max-width: 749px) {
  #floating_banner {
    position: fixed;
    bottom: -1px;
    left: 0;
    width: 100%;
    display: grid;
    z-index: 300;
    grid-template-columns: auto 60px 60px;
  }
  #floating_banner .link {
    display: flex;
    background-color: var(--blue);
    border-right: 1px solid #ffffff;
  }
  #floating_banner .link span {
    margin: auto;
    color: #ffffff;
    font-size: 16px;
  }
  #floating_banner .insta {
    background-color: var(--blue);
  }
  #floating_banner .insta img {
    display: block;
    transform: scale(88%);
  }
  #floating_banner .gotop {
    display: block;
    box-sizing: border-box;
    width: 100%;
    aspect-ratio: 1/1;
    background: url("../img/common/gotop_sp.webp") no-repeat center/cover #ffffff;
  }
}

html.open #floating_banner {
  border-top: 1px solid #ffffff;
}

body:not(.home) #floating_banner {
  border-top: 1px solid #ffffff;
}

#bread_list ul {
  background: #ffffff;
  padding: 4rem 4rem 2.8125rem;
  border-radius: 3.125rem 3.125rem 0 0;
  box-sizing: border-box;
  display: flex;
  width: 90%;
  max-width: 1216px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 749px) {
  #bread_list ul {
    padding: 4rem 1.5rem 2.8125rem;
  }
}
#bread_list ul li {
  color: #d1a59d;
}
#bread_list ul li a {
  color: #838383;
}
#bread_list ul li + li:before {
  content: ">";
  display: inline-block;
  color: #838383;
  transform: translateY(-0.2em);
  margin: 0 0.5em;
}

.page_title {
  position: relative;
  text-align: center;
  padding-bottom: 0.9375rem;
  margin-bottom: 2.8125rem;
}
.page_title h2 {
  color: #e1c4bf;
  font-size: 1.5rem;
}
.page_title h2::first-letter {
  color: #b6d4d6;
}
.page_title span {
  color: #867d73;
  font-size: 3.375rem;
  line-height: 1;
}
.page_title:before, .page_title:after {
  content: "";
  width: 1.875rem;
  height: 0.5rem;
  position: absolute;
  bottom: 0;
}
.page_title:before {
  left: calc(50% - 1.875rem);
  background: #86b8ba;
  border-radius: 0.25rem 0 0 0.25rem;
}
.page_title:after {
  right: calc(50% - 1.875rem);
  background: #dab7b1;
  border-radius: 0 0.25rem 0.25rem 0;
}

.page_title + .img_box img {
  width: 100%;
  height: auto;
}

body.home .slider {
  position: relative;
  z-index: 5;
  width: 100%;
  height: 100vh;
}
body.home .slider:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 81, 103, 0.3);
  background-blend-mode: multiply;
  z-index: 10;
}
body.home .slider .swiper-wrapper {
  position: relative;
  z-index: 4;
  overflow: hidden;
}
body.home .slider .swiper-wrapper .slide1 {
  height: 100%;
  background: url("../img/home/slide1.webp") no-repeat center/cover;
}
body.home .slider .swiper-wrapper .slide2 {
  height: 100%;
  background: url("../img/home/slide2.webp") no-repeat center/cover;
}
body.home .slider .swiper-wrapper .slide3 {
  height: 100%;
  background: url("../img/home/slide3.webp") no-repeat center/cover;
}
@media screen and (max-width: 749px) {
  body.home .slider .swiper-wrapper .slide1 {
    background-position: 80% 50%;
  }
  body.home .slider .swiper-wrapper .slide2 {
    background-position: 40% 50%;
  }
  body.home .slider .swiper-wrapper .slide3 {
    background-position: 35% 50%;
  }
}
body.home .slider .swiper-wrapper .swiper-slide > div {
  opacity: 0;
  width: 100vw;
  height: 100%;
}
body.home .slider .swiper-wrapper .swiper-slide.swiper-slide-prev > div {
  animation: fadeOut 2s ease-in forwards;
}
body.home .slider .swiper-wrapper .swiper-slide.swiper-slide-active > div {
  animation: fadeIn 2s ease-in forwards;
}

@media screen and (min-width: 750px) {
  body.about section.greeting .grid_box {
    display: grid;
    grid-template-columns: 28.125rem 21.25rem;
    gap: 3.5625rem;
  }
  body.about section.greeting .grid_box .text_box h3 {
    color: var(--blue);
    font-size: 1.25rem;
    margin-top: -0.625rem;
    margin-bottom: 1.25rem;
    font-weight: bold;
    line-height: 2;
  }
  body.about section.greeting .grid_box .img_box {
    text-align: center;
  }
  body.about section.greeting .grid_box .img_box img {
    display: block;
    border-radius: 3px;
  }
  body.about section.greeting .grid_box .img_box em {
    display: block;
    margin-top: 2rem;
    margin-bottom: 0.625rem;
  }
  body.about section.greeting .grid_box .img_box h3 {
    font-size: 1.5rem;
    margin-bottom: 0.625rem;
  }
  body.about section.greeting .grid_box .img_box span {
    display: block;
    text-align: center;
    color: var(--blue);
  }
}
@media screen and (max-width: 749px) {
  body.about section.greeting .grid_box .text_box h3 {
    font-size: 16px;
    line-height: 2;
    font-weight: bold;
    color: var(--blue);
    margin-bottom: 10px;
  }
  body.about section.greeting .grid_box .text_box p {
    font-size: 14px;
  }
  body.about section.greeting .grid_box .img_box {
    margin-top: 40px;
    text-align: center;
  }
  body.about section.greeting .grid_box .img_box img {
    border-radius: 3px;
    display: block;
  }
  body.about section.greeting .grid_box .img_box em {
    display: block;
    margin-top: 28px;
    margin-bottom: 16px;
  }
  body.about section.greeting .grid_box .img_box h3 {
    font-size: 21px;
    margin-bottom: 10px;
  }
  body.about section.greeting .grid_box .img_box span {
    font-size: 14px;
    color: var(--blue);
  }
}
body.about section.career {
  background: url("../img/about/career_bg.webp") no-repeat bottom right/cover;
}
@media screen and (max-width: 749px) {
  body.about section.career {
    padding-top: 50px;
    padding-bottom: 50px;
    background-size: contain;
    background-color: #E5EEF0;
  }
}
@media screen and (min-width: 750px) {
  body.about section.career .grid_box {
    display: grid;
    grid-template-columns: auto auto;
    gap: 3.5625rem;
    white-space: nowrap;
  }
  body.about section.career .grid_box h2 {
    font-size: 1.25rem;
  }
  body.about section.career .grid_box span {
    display: block;
    margin-top: 0.875rem;
    margin-bottom: 2rem;
    color: var(--blue);
  }
  body.about section.career .grid_box ul {
    display: grid;
    grid-template-columns: auto;
    row-gap: 0.9375rem;
  }
  body.about section.career .grid_box dl {
    margin-top: 0.9375rem;
    display: grid;
    grid-template-columns: auto auto;
    column-gap: 1rem;
    row-gap: 0.9375rem;
  }
}
@media screen and (max-width: 749px) {
  body.about section.career .grid_box {
    display: grid;
    grid-row: auto;
    gap: 50px;
  }
  body.about section.career .grid_box h2 {
    font-size: 17.5px;
  }
  body.about section.career .grid_box ul {
    display: grid;
    grid-template-columns: auto;
    font-size: 14px;
    gap: 18px;
  }
  body.about section.career .grid_box dl {
    margin-top: 22px;
    display: grid;
    grid-template-columns: auto auto;
    column-gap: 1rem;
    row-gap: 18px;
  }
  body.about section.career .grid_box span {
    font-size: 12.5px;
    display: block;
    margin-top: 10px;
    margin-bottom: 28px;
    color: var(--blue);
  }
}
@media screen and (max-width: 749px) {
  body.about section.gallery {
    padding: 0 5%;
  }
}
body.about section.gallery .grid_box .slider_area .slide .swiper-wrapper .type1 div {
  background: url("../img/about/slide1.webp") no-repeat center/cover;
}
body.about section.gallery .grid_box .slider_area .slide .swiper-wrapper .type2 div {
  background: url("../img/about/slide2.webp") no-repeat center/cover;
}
body.about section.gallery .grid_box .slider_area .slide .swiper-wrapper .type3 div {
  background: url("../img/about/slide3.webp") no-repeat center/cover;
}
body.about section.gallery .grid_box .slider_area .slide .swiper-wrapper .type4 div {
  background: url("../img/about/slide4.webp") no-repeat center/cover;
}
body.about section.gallery .grid_box .slider_area .slide .swiper-wrapper .type5 div {
  background: url("../img/about/slide5.webp") no-repeat center/cover;
}
body.about section.gallery .grid_box .slider_area .slide .swiper-wrapper .type6 div {
  background: url("../img/about/slide6.webp") no-repeat center/cover;
}
body.about section.gallery .grid_box .slider_area .slide .swiper-wrapper .type7 div {
  background: url("../img/about/slide7.webp") no-repeat center/cover;
}
body.about section.gallery .grid_box .slider_area .slide .swiper-wrapper .type8 div {
  background: url("../img/about/slide8.webp") no-repeat center/cover;
}
body.about section.gallery .grid_box .slider_area .slide .swiper-wrapper .type9 div {
  background: url("../img/about/slide9.webp") no-repeat center/cover;
}
body.about section.gallery .grid_box .swiper-pagination-bullet:not(.swiper-pagination-bullet-active):hover {
  opacity: 0.8;
  cursor: pointer;
}
@media screen and (min-width: 750px) {
  body.about section.gallery .grid_box {
    display: grid;
    grid-template-columns: auto auto;
    gap: 3.5625rem;
    white-space: nowrap;
  }
  body.about section.gallery .grid_box .slide {
    display: grid;
    grid-template-columns: auto auto;
    gap: 1.25rem;
    white-space: nowrap;
  }
  body.about section.gallery .grid_box .slide .swiper-wrapper {
    height: 80vh;
    max-height: 40rem;
    aspect-ratio: 90/64;
  }
  body.about section.gallery .grid_box .slide .swiper-wrapper .swiper-slide > div {
    width: 100%;
    aspect-ratio: 9/6;
    border-radius: 3px;
  }
  body.about section.gallery .grid_box .slide .swiper-wrapper .swiper-slide span {
    display: block;
    text-align: center;
    margin-top: 0.625rem;
  }
  body.about section.gallery .grid_box .slide .layout .swiper-pagination {
    display: grid;
    grid-template-columns: auto;
    gap: 10px;
  }
  body.about section.gallery .grid_box .slide .layout .swiper-pagination span {
    display: block;
    width: 5px;
    height: 1.25rem;
    background-color: #B2CBD3;
    border-radius: 1px;
  }
  body.about section.gallery .grid_box .slide .layout .swiper-pagination span.swiper-pagination-bullet-active {
    background-color: var(--blue);
  }
}
@media screen and (max-width: 749px) {
  body.about section.gallery .grid_box {
    margin-top: 20px;
  }
  body.about section.gallery .grid_box .slide {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  body.about section.gallery .grid_box .slide .swiper-wrapper {
    order: 2;
    width: 100%;
    aspect-ratio: 90/68;
  }
  body.about section.gallery .grid_box .slide .swiper-wrapper .swiper-slide > div {
    width: 100%;
    aspect-ratio: 9/6;
    border-radius: 3px;
  }
  body.about section.gallery .grid_box .slide .swiper-wrapper .swiper-slide span {
    display: block;
    text-align: center;
    margin-top: 0.625rem;
  }
  body.about section.gallery .grid_box .slide .layout {
    order: 1;
  }
  body.about section.gallery .grid_box .slide .layout .swiper-pagination {
    display: flex;
    gap: 10px;
    width: 100%;
    justify-content: center;
  }
  body.about section.gallery .grid_box .slide .layout .swiper-pagination span {
    display: block;
    width: 20px;
    height: 5px;
    background-color: #B2CBD3;
    border-radius: 1px;
  }
  body.about section.gallery .grid_box .slide .layout .swiper-pagination span.swiper-pagination-bullet-active {
    background-color: var(--blue);
  }
}

@media screen and (max-width: 749px) {
  body.treatment footer {
    margin-top: 0;
  }
}
body.treatment .bottom_img {
  padding: 0 !important;
}
@media screen and (min-width: 750px) {
  body.treatment .bottom_img {
    display: grid;
    grid-template-columns: auto auto auto auto;
  }
}
body.treatment .bottom_img:after {
  content: "";
  display: block;
  height: 100vh;
  aspect-ratio: 400/900;
  background: url("../img/treatment/img1.webp") no-repeat center/cover;
}
@media screen and (max-width: 749px) {
  body.treatment .bottom_img:after {
    height: auto;
    width: 100%;
    aspect-ratio: 375/250;
    background: url("../img/treatment/img1_sp.webp") no-repeat center/cover;
  }
}
@media screen and (min-width: 750px) {
  body.treatment .bottom_img .inner {
    padding: clamp(140px, 10vw, 170px) 8rem 5.625rem 8rem;
  }
}
@media screen and (max-width: 749px) {
  body.treatment section.anker .inner {
    width: 90%;
    margin: 0 auto 50px;
  }
}
body.treatment section.anker .inner ul {
  display: grid;
  grid-template-columns: auto;
  gap: 1.25rem;
}
@media screen and (max-width: 749px) {
  body.treatment section.anker .inner ul {
    grid-template-columns: 1fr 1fr;
    row-gap: 16px;
    column-gap: 5%;
  }
}
body.treatment section.anker .inner ul li {
  border-bottom: 1px solid var(--blue);
  width: 12.5rem;
}
@media screen and (max-width: 749px) {
  body.treatment section.anker .inner ul li {
    width: 100%;
  }
}
body.treatment section.anker .inner ul li a {
  color: var(--blue);
  display: block;
  position: relative;
}
body.treatment section.anker .inner ul li a:hover {
  opacity: 0.8;
}
body.treatment section.anker .inner ul li a::after {
  content: "";
  width: 0.875rem;
  aspect-ratio: 1/1;
  position: absolute;
  background: url("../img/common/icon_arrow.webp") no-repeat center/cover;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 749px) {
  body.treatment section.anker .inner ul li a::after {
    transform: rotate(90deg);
  }
}
body.treatment section.anker .inner ul li a em {
  font-size: 1.25rem;
}
@media screen and (max-width: 749px) {
  body.treatment section.anker .inner ul li a em {
    font-size: 16px;
  }
}
body.treatment section.anker .inner ul li a span {
  display: block;
  font-size: 0.875rem;
  white-space: nowrap;
  margin: 0.875rem 0;
  line-height: 1;
}
@media screen and (max-width: 749px) {
  body.treatment section.anker .inner ul li a span {
    font-size: 10;
  }
}
body.treatment section.treatment#box1:after {
  background: url("../img/treatment/img2.webp") no-repeat center/cover;
}
@media screen and (max-width: 749px) {
  body.treatment section.treatment#box1:after {
    background: url("../img/treatment/img2_sp.webp") no-repeat center/cover;
  }
}
body.treatment section.treatment#box2:after {
  background: url("../img/treatment/img3.webp") no-repeat center/cover;
}
@media screen and (max-width: 749px) {
  body.treatment section.treatment#box2:after {
    background: url("../img/treatment/img3_sp.webp") no-repeat center/cover;
  }
}
body.treatment section.treatment#box3:after {
  display: none;
}
@media screen and (max-width: 749px) {
  body.treatment section.treatment:after {
    margin-top: 80px;
  }
}
@media screen and (min-width: 750px) {
  body.treatment section.treatment > div {
    padding: clamp(140px, 10vw, 170px) 4rem 0rem 4rem;
  }
}
@media screen and (max-width: 749px) {
  body.treatment section.treatment > div {
    padding: 0 10%;
  }
}
body.treatment section.treatment .read {
  box-sizing: border-box;
  max-width: 746px;
}
@media screen and (max-width: 749px) {
  body.treatment section.treatment .read {
    margin-top: 20px;
  }
}
body.treatment section.treatment .read p {
  margin-top: 2.5rem;
}
@media screen and (max-width: 749px) {
  body.treatment section.treatment .read p {
    margin-top: 20px;
  }
}
body.treatment section.treatment .symptoms {
  background-color: var(--lightBlue);
}
@media screen and (max-width: 749px) {
  body.treatment section.treatment .symptoms {
    padding-top: 40px;
    padding-bottom: 40px;
    margin: 40px 0;
  }
}
body.treatment section.treatment .symptoms h3 {
  font-size: 1rem;
  font-weight: bold;
  color: var(--blue);
  padding-bottom: 1rem;
  line-height: 1;
  border-bottom: 1px solid var(--blue);
}
body.treatment section.treatment .symptoms ul {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: auto;
  gap: 1rem;
}
body.treatment section.treatment .symptoms ul li {
  padding-left: 1.2em;
  position: relative;
}
body.treatment section.treatment .symptoms ul li:before {
  content: "";
  width: 1rem;
  aspect-ratio: 1/1;
  position: absolute;
  background: url("../img/common/icon_circle.webp") no-repeat center/cover;
  top: 0;
  left: 0;
}
body.treatment section.treatment .disease h3 {
  color: #ffffff;
  background-color: var(--blue);
  font-weight: bold;
  line-height: 1;
  padding: 0.5em 1em;
  margin-bottom: 2rem;
}
body.treatment section.treatment .disease .grid_box {
  display: grid;
  column-gap: 4rem;
  overflow: hidden;
  grid-template-columns: repeat(3, auto);
}
@media screen and (max-width: 749px) {
  body.treatment section.treatment .disease .grid_box {
    display: block;
  }
}
body.treatment section.treatment .disease .grid_box > div {
  width: 25rem;
  position: relative;
}
@media screen and (max-width: 749px) {
  body.treatment section.treatment .disease .grid_box > div {
    width: 100%;
  }
}
@media screen and (min-width: 750px) {
  body.treatment section.treatment .disease .grid_box > div:after {
    content: "";
    width: 1px;
    background-color: var(--blue);
    position: absolute;
    top: 0;
    bottom: 0;
    right: -2rem;
  }
}
body.treatment section.treatment .disease .grid_box > div h4 {
  font-weight: bold;
  color: var(--blue);
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 749px) {
  body.treatment section.treatment .disease .grid_box > div + div {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--blue);
  }
}
body.treatment section.gallery {
  background-color: var(--lightBlue);
}
@media screen and (min-width: 750px) {
  body.treatment section.gallery {
    position: relative;
  }
  body.treatment section.gallery:after {
    content: "";
    position: absolute;
    top: 0;
    right: -8rem;
    bottom: 0;
    width: 8rem;
    background-color: var(--lightBlue);
  }
}
@media screen and (max-width: 749px) {
  body.treatment section.gallery {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
body.treatment section.gallery .equipment_box {
  margin-top: 3rem;
  width: 47rem;
}
@media screen and (max-width: 749px) {
  body.treatment section.gallery .equipment_box {
    width: 100%;
    position: relative;
  }
}
body.treatment section.gallery .equipment_box .swiper-slide {
  display: grid;
  column-gap: 2rem;
  grid-template-columns: 25rem 18.75rem;
}
@media screen and (max-width: 749px) {
  body.treatment section.gallery .equipment_box .swiper-slide {
    grid-template-columns: auto;
    row-gap: 82px;
  }
}
body.treatment section.gallery .equipment_box .swiper-slide > div {
  background-color: var(--blue);
  aspect-ratio: 420/280;
}
body.treatment section.gallery .equipment_box .swiper-slide p em {
  display: block;
  font-weight: bold;
}
@media screen and (min-width: 750px) {
  body.treatment section.gallery .equipment_box .swiper-slide p em {
    margin-top: -0.5rem;
  }
}
body.treatment section.gallery .equipment_box .menu {
  display: grid;
  column-gap: 2rem;
  grid-template-columns: 25rem 18.75rem;
}
@media screen and (max-width: 749px) {
  body.treatment section.gallery .equipment_box .menu {
    grid-template-columns: 1fr;
    position: absolute;
    top: 53vw;
    left: 0;
    width: 100%;
    z-index: 10;
  }
}
body.treatment section.gallery .equipment_box .menu .layout {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}
body.treatment section.gallery .equipment_box .menu .layout .swiper-pagination {
  display: flex;
  gap: 10px;
  justify-content: center;
}
body.treatment section.gallery .equipment_box .menu .layout .swiper-pagination span {
  display: block;
  width: 20px;
  height: 5px;
  background-color: #B2CBD3;
  border-radius: 1px;
}
body.treatment section.gallery .equipment_box .menu .layout .swiper-pagination span.swiper-pagination-bullet-active {
  background-color: var(--blue);
}
body.treatment section.gallery .equipment_box .menu .layout div[class^=swiper-button] {
  width: 1.875rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: url("../img/common/slide_arrow.webp") no-repeat center/cover;
}
body.treatment section.gallery .equipment_box .menu .layout div.swiper-button-next {
  transform: rotate(180deg);
}
body.treatment section.gallery .equipment_box .menu:after {
  content: "";
  display: block;
}
@media screen and (max-width: 749px) {
  body.treatment section.gallery .equipment_box .menu:after {
    display: none;
  }
}

@media screen and (max-width: 749px) {
  body.home_care footer {
    margin-top: 0;
  }
}
@media screen and (min-width: 750px) {
  body.home_care section.head {
    margin-right: 8rem;
  }
}
body.home_care .top_img {
  padding: 0 !important;
}
@media screen and (min-width: 750px) {
  body.home_care .top_img {
    display: grid;
    grid-template-columns: auto auto auto auto auto;
  }
}
body.home_care .top_img:before {
  content: "";
  display: block;
  height: 100vh;
  aspect-ratio: 400/900;
  background: url("../img/home_care/img1.webp") no-repeat center/cover;
}
@media screen and (max-width: 749px) {
  body.home_care .top_img:before {
    height: auto;
    width: 100%;
    aspect-ratio: 375/250;
    background: url("../img/home_care/img1_sp.webp") no-repeat center/cover;
  }
}
@media screen and (min-width: 750px) {
  body.home_care .top_img .inner {
    padding: clamp(140px, 10vw, 170px) 8rem 5.625rem 8rem;
  }
}
@media screen and (max-width: 749px) {
  body.home_care section.treatment:before {
    margin-top: 80px;
  }
}
@media screen and (min-width: 750px) {
  body.home_care section.treatment > div {
    padding: clamp(140px, 10vw, 170px) 4rem 0rem 4rem;
  }
}
@media screen and (max-width: 749px) {
  body.home_care section.treatment > div {
    padding: 0 10%;
  }
}
body.home_care section.treatment .read {
  box-sizing: border-box;
  max-width: 746px;
}
@media screen and (max-width: 749px) {
  body.home_care section.treatment .read {
    margin-top: 20px;
  }
}
body.home_care section.treatment .read p {
  margin-top: 2.5rem;
}
@media screen and (max-width: 749px) {
  body.home_care section.treatment .read p {
    margin-top: 20px;
  }
}
body.home_care section.treatment .target {
  background-color: var(--lightBlue);
}
@media screen and (max-width: 749px) {
  body.home_care section.treatment .target {
    padding-top: 40px;
    padding-bottom: 40px;
    margin: 40px 0;
  }
}
body.home_care section.treatment .target h3 {
  font-size: 1rem;
  font-weight: bold;
  color: var(--blue);
  padding-bottom: 1rem;
  line-height: 1;
  border-bottom: 1px solid var(--blue);
}
body.home_care section.treatment .target p {
  max-width: 25rem;
  margin-top: 1.5rem;
}
body.home_care section.treatment .target ul {
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: auto;
  gap: 1rem;
}
body.home_care section.treatment .target ul li {
  padding-left: 1.2em;
  position: relative;
}
body.home_care section.treatment .target ul li:before {
  content: "";
  width: 1rem;
  aspect-ratio: 1/1;
  position: absolute;
  background: url("../img/common/icon_circle.webp") no-repeat center/cover;
  top: 0;
  left: 0;
}
body.home_care section.treatment .disease h3 {
  color: #ffffff;
  background-color: var(--blue);
  font-weight: bold;
  line-height: 1;
  padding: 0.5em 1em;
  margin-bottom: 2rem;
}
body.home_care section.treatment .disease .grid_box {
  display: grid;
  column-gap: 4rem;
  overflow: hidden;
  grid-template-columns: repeat(3, auto);
}
@media screen and (max-width: 749px) {
  body.home_care section.treatment .disease .grid_box {
    display: block;
  }
}
body.home_care section.treatment .disease .grid_box > div {
  width: 25rem;
  position: relative;
}
@media screen and (max-width: 749px) {
  body.home_care section.treatment .disease .grid_box > div {
    width: 100%;
  }
}
@media screen and (min-width: 750px) {
  body.home_care section.treatment .disease .grid_box > div:after {
    content: "";
    width: 1px;
    background-color: var(--blue);
    position: absolute;
    top: 0;
    bottom: 0;
    right: -2rem;
  }
}
body.home_care section.treatment .disease .grid_box > div h4 {
  font-weight: bold;
  color: var(--blue);
  margin-bottom: 0.5rem;
}
body.home_care section.treatment .disease .grid_box > div ul {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: auto;
}
body.home_care section.treatment .disease .grid_box > div ul li {
  padding-left: 1.2em;
  position: relative;
  line-height: 2;
}
body.home_care section.treatment .disease .grid_box > div ul li:before {
  content: "";
  width: 1rem;
  aspect-ratio: 1/1;
  position: absolute;
  background: url("../img/common/icon_circle.webp") no-repeat center/cover;
  top: 0.5rem;
  left: 0;
}
@media screen and (max-width: 749px) {
  body.home_care section.treatment .disease .grid_box > div + div {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--blue);
  }
}
body.home_care section.area {
  background-color: var(--lightBlue);
}
@media screen and (min-width: 750px) {
  body.home_care section.area {
    position: relative;
  }
  body.home_care section.area:after {
    content: "";
    position: absolute;
    top: 0;
    right: -8rem;
    bottom: 0;
    width: 8rem;
    background-color: var(--lightBlue);
  }
}
@media screen and (max-width: 749px) {
  body.home_care section.area {
    margin-top: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media screen and (min-width: 750px) {
  body.home_care section.area .box1 {
    padding-right: 0;
    max-width: 25rem;
    box-sizing: content-box;
  }
}
@media screen and (max-width: 749px) {
  body.home_care section.area .box1 {
    margin-top: 0;
  }
}
body.home_care section.area .box1 h2, body.home_care section.area .box1 h3 {
  font-size: 1rem;
  font-weight: bold;
  color: var(--blue);
  padding-bottom: 1rem;
  line-height: 1;
  border-bottom: 1px solid var(--blue);
}
body.home_care section.area .box1 h2 {
  margin-bottom: 1.5rem;
}
body.home_care section.area .box1 > div {
  background: #ffffff;
  padding: 1.25rem 1.25rem 1rem;
  margin: 1rem 0;
  text-align: center;
}
body.home_care section.area .box1 > div p {
  margin-top: 0.75rem;
}
body.home_care section.area .box1 > div p strong {
  color: var(--blue);
  font-weight: bold;
}
body.home_care section.area .box1 dl {
  display: grid;
  grid-template-columns: 8.75rem auto;
}
@media screen and (max-width: 749px) {
  body.home_care section.area .box1 dl {
    display: block;
    margin-top: 20px;
  }
}
body.home_care section.area .box1 dl dt span {
  background: var(--blue);
  color: #ffffff;
  display: block;
  line-height: 2;
  text-align: center;
}
body.home_care section.area .box1 dl dd {
  padding: 0 1rem;
}
@media screen and (max-width: 749px) {
  body.home_care section.area .box1 dl dd {
    padding: 1rem 0 0;
  }
}
body.home_care section.area .box1 dl dd span {
  line-height: 2;
  display: block;
  padding-left: 1em;
  position: relative;
  margin-top: 0.5rem;
}
body.home_care section.area .box1 dl dd span:before {
  content: "※";
  font-family: "Yu Gothic";
  top: 0;
  left: 0;
  position: absolute;
}
body.home_care section.area .box1 dl + p {
  margin-top: 1rem;
}

@media screen and (max-width: 749px) {
  body.access footer {
    margin-top: 40px;
  }
}
@media screen and (min-width: 750px) {
  body.access section.access_box .box1 {
    padding-right: 0;
  }
}
@media screen and (max-width: 749px) {
  body.access section.access_box .box1 {
    padding: 0 5%;
  }
}
body.access section.access_box .grid_box {
  display: grid;
  grid-template-columns: 25rem 25rem;
  gap: 4rem;
}
@media screen and (max-width: 749px) {
  body.access section.access_box .grid_box {
    gap: 20px;
    grid-template-columns: auto;
  }
}
body.access section.access_box .grid_box h2 {
  font-size: 1rem;
  font-weight: bold;
  color: var(--blue);
  padding-bottom: 1rem;
  line-height: 1;
  border-bottom: 1px solid var(--blue);
}
body.access section.access_box .grid_box p {
  margin-top: 1.5rem;
}
body.access section.access_box .grid_box p a {
  color: #000000;
  text-decoration: underline;
}
body.access section.access_box .grid_box p.kome {
  padding-left: 1em;
  position: relative;
}
body.access section.access_box .grid_box p.kome:before {
  content: "■";
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 749px) {
  body.news footer {
    margin-top: 40px;
  }
}
@media screen and (min-width: 750px) {
  body.news section.news_box .box1 {
    padding-right: 0;
  }
}
@media screen and (max-width: 749px) {
  body.news section.news_box .box1 {
    padding: 0 5%;
  }
}
@media screen and (min-width: 750px) {
  body.news section.news_box .flex_box {
    display: flex;
    gap: 4rem;
  }
  body.news section.news_box .flex_box article {
    width: 25rem;
  }
}
body.news section.news_box .flex_box article {
  display: flex;
  flex-direction: column-reverse;
  padding-top: 1.75rem;
  border-top: 1px solid #C1C1C1;
}
@media screen and (max-width: 749px) {
  body.news section.news_box .flex_box article:first-child {
    border-top: none;
    padding-top: 0;
  }
}
body.news section.news_box .flex_box article .body {
  display: none;
}
@media screen and (max-width: 749px) {
  body.news section.news_box .flex_box article + article {
    margin-top: 50px;
  }
}
body.news section.news_box .flex_box article .content {
  margin-top: 0;
  margin-bottom: auto;
}
body.news section.news_box .flex_box time {
  color: var(--blue);
  margin-bottom: 0.625rem;
  display: block;
}
body.news section.news_box .flex_box h2 {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--blue);
  line-height: 2;
  margin-bottom: auto;
}
@media screen and (max-width: 749px) {
  body.news section.news_box .flex_box h2 {
    font-size: 16px;
  }
}
body.news section.news_box .flex_box p {
  margin-top: 1.5rem;
}
body.news section.news_box .flex_box p.kome {
  padding-left: 1em;
  position: relative;
}
body.news section.news_box .flex_box p.kome:before {
  content: "■";
  position: absolute;
  top: 0;
  left: 0;
}
body.news section.news_box .flex_box .btn {
  display: block;
  margin-top: 1.375rem;
  cursor: pointer;
}
body.news section.news_box .flex_box .btn:hover {
  opacity: 0.8;
}
body.news section.news_box .flex_box .btn > span {
  display: block;
  width: 7rem;
  position: relative;
  line-height: 1;
  color: var(--blue);
  border-bottom: 1px solid var(--blue);
  padding-bottom: 1em;
  margin-right: 0;
  margin-left: auto;
}
body.news section.news_box .flex_box .btn > span:after {
  content: "";
  width: 1rem;
  aspect-ratio: 1/1;
  position: absolute;
  top: 0;
  right: 0;
  background: url("../img/common/icon_cross.webp") no-repeat center/cover;
}

html #modal_warp {
  display: none;
}

html.modal {
  overflow: hidden;
}
html.modal body {
  overflow: hidden;
}
html.modal #modal_warp {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 200;
}
html.modal #modal_warp .bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 81, 108, 0.9);
}
html.modal #modal_warp #modal_inner {
  position: absolute;
  background: #ffffff;
  box-sizing: border-box;
}
@media screen and (min-width: 750px) {
  html.modal #modal_warp #modal_inner {
    padding: clamp(40px, 10vw, 90px);
    inset: 5.625rem;
  }
}
@media screen and (max-width: 749px) {
  html.modal #modal_warp #modal_inner {
    top: 50px;
    bottom: 110px;
    left: 5%;
    right: 5%;
    padding: 60px 13px 60px 20px;
  }
}
html.modal #modal_warp #modal_inner .btn_box {
  position: relative;
}
html.modal #modal_warp #modal_inner .btn_box #close {
  display: block;
  width: 7.75rem;
  box-sizing: border-box;
  border: 1px solid var(--blue);
  border-radius: 0.1875rem;
  position: absolute;
  bottom: 2rem;
  right: -3.5rem;
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: space-between;
  color: var(--blue);
  cursor: pointer;
}
@media screen and (max-width: 749px) {
  html.modal #modal_warp #modal_inner .btn_box #close {
    width: 108px;
    bottom: 18px;
    right: 0;
  }
}
html.modal #modal_warp #modal_inner .btn_box #close:hover {
  opacity: 0.8;
}
html.modal #modal_warp #modal_inner .btn_box #close:after {
  content: "";
  width: 1rem;
  aspect-ratio: 1/1;
  display: block;
  background: url("../img/common/icon_close.webp") no-repeat center/cover;
}
html.modal #modal_warp #modal_inner .content {
  height: 100%;
  overflow: auto;
  padding-right: 0.75rem;
}
html.modal #modal_warp #modal_inner .content h2 {
  font-size: 1.25rem;
  line-height: 2;
  font-weight: bold;
  color: var(--blue);
}
@media screen and (max-width: 749px) {
  html.modal #modal_warp #modal_inner .content h2 {
    font-size: 16px;
  }
}
html.modal #modal_warp #modal_inner .content time {
  color: var(--blue);
  margin-bottom: 0.625rem;
  display: block;
}
html.modal #modal_warp #modal_inner .content p {
  margin-top: 2rem;
}
html.modal #modal_warp #modal_inner .content ul {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: auto;
  gap: 1rem;
}
html.modal #modal_warp #modal_inner .content ul li {
  padding-left: 1.2em;
  position: relative;
  line-height: 1.8;
}
html.modal #modal_warp #modal_inner .content ul li:before {
  content: "";
  width: 1rem;
  aspect-ratio: 1/1;
  position: absolute;
  background: url("../img/common/icon_circle.webp") no-repeat center/cover;
  top: 0.3125rem;
  left: 0;
}

:root {
  --baseWitdh:1216px;
  --blue: #00516C;
  --orange:#EF9F82;
  --lightBlue:#E5EEF0;
  --glay:#B2B2B2;
  --green:#cadd8e;
  --textColor:#00516C;
  --px32to20:clamp(20px,3vw,32px);
  --fs20to10:clamp(10px,1.8vw,20px);
  --px32to10:clamp(10px,1.5vw,32px);
  --px48to20:clamp(20px,2vw,48px);
  --px60to20:clamp(20px,3vw,60px);
  --px64to20:clamp(20px,3vw,64px);
  --px50to20:clamp(20px,3vw,50px);
}

@media screen and (min-width: 750px) {
  #menu_box a.link {
    display: none !important;
  }
}

@media screen and (min-width: 750px) {
  #menu a.link {
    visibility: hidden !important;
  }
}

@media screen and (max-width: 749px) {
  #floating_banner {
    border-top: none !important;
  }
  #floating_banner a.link {
    visibility: hidden;
  }
}

footer a.link {
  display: none !important;
}

@media screen and (max-width: 749px) {
  .treatment #box3 .disease {
    padding-bottom: 40px;
  }
}

/*
.tenor-sans-regular {
  font-family: "Tenor Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}

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