@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@100;200;300;400;500;600;700&display=swap");
/****** Elad Shechter's RESET *******/
/*** box sizing border-box for all elements ***/
*,
*::before,
*::after {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

button {
  background-color: transparent;
  color: inherit;
  border-width: 0;
  padding: 0;
  cursor: pointer;
}

figure {
  margin: 0;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
  margin: 0;
}

ul, ol, dl, dd {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

p {
  margin: 0;
}

cite {
  font-style: normal;
}

fieldset {
  border-width: 0;
  padding: 0;
  margin: 0;
}

/* ------------------------------------
// base
------------------------------------ */
html {
  font-size: 62.5%;
}
body {
  color: #444444;
  background: #ecf0f6;
  font-family: "IBM Plex Sans JP", sans-serif;
  letter-spacing: 0.05em;
  font-size: clamp(1.6rem, 1.3vw, 1.8rem);
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}
@media (width < 375px) {
  body {
    zoom: progress(100lvw, 0px, 375px);
    -webkit-text-size-adjust: initial;
  }
}

@media screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}
a:link {
  color: #444444;
  text-decoration: none;
}
a:visited {
  color: #444444;
  text-decoration: none;
}
a:hover {
  color: #444444;
  text-decoration: none;
}
a:active {
  color: #444444;
  text-decoration: none;
}

a {
  transition: 0.3s;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

@media (min-width: 1023px) {
  a[href^="tel:"] {
    cursor: default;
    pointer-events: none;
  }
}
input:focus::-webkit-input-placeholder {
  color: transparent;
}

input:focus::-moz-placeholder {
  color: transparent;
}

input:focus::-ms-input-placeholder {
  color: transparent;
}

input:focus::placeholder {
  color: transparent;
}

/* // screen
----------------------------------- */
.sp {
  display: none !important;
}

.tb {
  display: none !important;
}

.md {
  display: none !important;
}

.pc {
  display: block !important;
}

.pconly {
  display: block !important;
}

@media screen and (max-width: 1024px) {
  .sp {
    display: none !important;
  }
  .md {
    display: none !important;
  }
  .tb {
    display: block !important;
  }
  .pc {
    display: block !important;
  }
  .pconly {
    display: none !important;
  }
}
@media screen and (max-width: 1200px) {
  .sp {
    display: none !important;
  }
  .md {
    display: block !important;
  }
  .tb {
    display: block !important;
  }
  .pc {
    display: block !important;
  }
  .pconly {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .sp {
    display: block !important;
  }
  .tb {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
  .pconly {
    display: none !important;
  }
}
/* ------------------------------------
// header
------------------------------------ */
.js-timeOpen #ov {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(68, 68, 68, 0.6);
  z-index: 7;
}

#header {
  position: fixed;
  top: 0;
  z-index: 6;
  width: 100vw;
}
@media screen and (max-width: 768px) {
  .js-timeOpen #header {
    background: #fff;
  }
}
#header {
  /* header/gnav */
}
#header header {
  background: rgba(255, 255, 255, 0.8);
  margin: 0 auto;
  padding: 2rem 2rem;
  display: grid;
  grid-template-columns: clamp(300px, 27.8vw, 40rem) 1fr max-content;
  gap: 0 clamp(0.5rem, 1vw, 1.4rem);
  position: relative;
  grid-template-areas: "logo sp  address" "logo sp  btn_contact";
}
#header header:after {
  content: "";
  width: 100vw;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -6px;
  display: block;
  background: rgba(255, 255, 255, 0.8);
}
#header header .address {
  grid-area: address;
  font-size: 1.4rem;
  text-align: right;
  margin-bottom: clamp(0.5rem, 1vw, 1.4rem);
}
#header header .address a {
  color: #2a5e8d;
  font-size: clamp(1.2rem, 1vw, 1.4rem);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.5rem;
}
#header header .address a::before {
  content: "";
  width: 1.4rem;
  aspect-ratio: 14/21;
  display: block;
  background: url(/lib/img/cmn/header_address.webp) no-repeat center/contain;
}
#header header .logo {
  grid-area: logo;
  align-self: center;
  width: 400px;
}
#header header .btn_menu {
  display: none;
}
#header header nav {
  position: absolute;
  left: 0;
  width: 100%;
  top: calc(100% + 2rem);
  transition: 0.5s;
}
#header header nav.hide {
  opacity: 0;
  visibility: hidden;
}
#header header .btn_contact_header {
  grid-area: btn_contact;
  display: grid;
  grid-template-columns: 5rem max-content;
  gap: 0 clamp(0.5rem, 1vw, 1.4rem);
}
@media screen and (max-width: 1024px) {
  #header header .logo {
    width: clamp(215px, 39.1vw, 40rem);
  }
}
@media screen and (max-width: 768px) {
  #header header {
    padding: 1.5rem 1rem 0.5rem;
    grid-template-columns: clamp(215px, 27.8vw, 40rem) 1fr max-content;
    grid-template-areas: "logo sp btn_menu";
  }
  #header header .address {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    margin-bottom: 0;
    border-radius: 5px;
  }
  #header header .address a {
    font-size: clamp(1rem, 0.8vw, 1.2rem);
    display: flex;
  }
  #header header .address a::before {
    width: 1rem;
  }
  #header header .btn_menu {
    display: block;
    grid-area: btn_menu;
    font-size: 9px;
    background: #428ba0;
    align-self: self-end;
    padding: 0.75rem 1.5rem 0.5rem;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
  }
  #header header .btn_menu .line {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-bottom: 0.5rem;
  }
  #header header .btn_menu .line span {
    width: 3px;
    aspect-ratio: 1;
    background: #fff;
    border-radius: 50vh;
  }
  #header header .btn_menu p {
    line-height: 1;
  }
  #header header .btn_contact_header {
    display: none;
  }
  #header header nav {
    display: none;
  }
}

#contact_fixed {
  position: fixed;
  right: 0;
  top: 35%;
  overflow: hidden;
  width: fit-content;
  display: grid;
  grid-template-columns: 62px auto;
  box-shadow: 0 4px 20px -10px #666464;
  transform: translateX(calc(100% - 60px));
  transition: 0.3s;
  z-index: 10;
}
#contact_fixed h2 {
  grid-column: 1/2;
  writing-mode: vertical-rl;
  text-align: center;
  display: grid;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 400;
  background: #2a5e8d;
  letter-spacing: 0.4em;
  text-indent: 0.4em;
  padding: 40px 0 60px;
  border-radius: 10px 0 0 10px;
  color: #f8faeb;
  color: #fff;
  cursor: pointer;
  position: relative;
}
#contact_fixed h2::before {
  content: "";
  width: 20px;
  aspect-ratio: 1;
  background: url(/lib/img/cmn/icon_timetable.webp) no-repeat 0 0/contain;
  position: absolute;
  top: 26px;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s;
}
#contact_fixed h2::after {
  content: "";
  width: 10px;
  aspect-ratio: 20/32;
  background: url(/lib/img/cmn/icon_arrow_02.webp) no-repeat 0 0/contain;
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%) scale(-1, 1);
  transition: 0.3s;
}
#contact_fixed .slidecontents {
  padding: 1.5rem 1.5rem 15px 1.5rem;
  background: #fff;
}
#contact_fixed .slidecontents .btn_contact {
  width: fit-content;
  margin: 0 auto;
}
#contact_fixed.open {
  transform: translateX(0);
}
#contact_fixed.open h2::after {
  transform: translateX(-50%) scale(1, -1);
}
@media screen and (max-width: 768px) {
  #contact_fixed {
    display: none;
  }
}

/* menu*/
#drawerMenu {
  display: none;
}
@media screen and (max-width: 768px) {
  #drawerMenu {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background: #eceff6;
    overflow-y: auto;
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s 0s, visibility 0s 0.3s, transform 0s 0.3s;
  }
  .js-menuOpen #drawerMenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition: opacity 0.3s 0s, visibility 0s 0s, transform 0s 0s;
  }
  #drawerMenu header {
    position: sticky;
    align-self: self-start;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 3;
  }
  #drawerMenu header .btn_menu {
    display: block;
    grid-area: btn_menu;
    font-size: 9px;
    background: #428ba0;
    padding: 0.75rem 1.5rem 0.5rem;
    border-radius: 10px;
    color: #fff;
  }
  #drawerMenu header .btn_menu .line {
    width: 2.5rem;
    position: relative;
    padding: 2px 0;
  }
  #drawerMenu header .btn_menu .line span {
    transition: 0.3s;
    width: 100%;
    height: 1px;
    background: #fff;
    position: absolute;
    left: 10%;
  }
  .js-menuOpen #drawerMenu header .btn_menu .line span:nth-of-type(1) {
    top: 50%;
    transform: rotate(165deg);
  }
  .js-menuOpen #drawerMenu header .btn_menu .line span:nth-of-type(2) {
    opacity: 0;
  }
  .js-menuOpen #drawerMenu header .btn_menu .line span:nth-of-type(3) {
    bottom: auto;
    top: 50%;
    transform: rotate(-165deg);
  }
  #drawerMenu nav {
    padding: 20px 0;
  }
  #drawerMenu nav ul {
    background: #fff;
  }
  #drawerMenu nav ul li {
    border-bottom: 1px solid #eceff6;
  }
  #drawerMenu nav ul li a {
    display: block;
    padding: 1.5rem 3rem;
    color: #0a2e5a;
    position: relative;
  }
  #drawerMenu nav ul li a::after {
    content: "";
    width: 7px;
    aspect-ratio: 7/12;
    mask: url(/lib/img/cmn/icon_arrow_02.webp) no-repeat 0 0/contain;
    background: #428ba0;
    position: absolute;
    bottom: calc(50% - 5px);
    right: 2rem;
    transform: translateX(-50%);
    transition: 0.3s;
  }
  #drawerMenu .fulladdress {
    color: #0a2e5a;
    padding: 2rem 0;
    margin: 0 2rem;
    text-align: center;
    border-top: 1px solid #b1babe;
    border-bottom: 1px solid #b1babe;
  }
  #drawerMenu #drawer_copy {
    background: #333b40;
    padding: 2rem;
    color: #fff;
    font-weight: 400;
  }
  #drawerMenu #drawer_copy .logo_jp {
    display: none;
  }
  #drawerMenu #drawer_copy .instagram {
    margin-bottom: 2rem;
  }
  #drawerMenu #drawer_copy .instagram a {
    display: flex;
    justify-content: center;
    color: #fff;
    gap: 1rem;
  }
  #drawerMenu #drawer_copy .instagram a span {
    display: block;
    width: 2rem;
    aspect-ratio: 1;
    background: url(/lib/img/cmn/footer_instagram.webp) no-repeat center/contain;
  }
  #drawerMenu #drawer_copy .copyright a {
    text-align: center;
    color: #fff;
  }
}

/* ------------------------------------
// main
------------------------------------ */
.mv {
  position: relative;
}
.mv hgroup {
  position: absolute;
  display: grid;
  width: 100%;
  left: 0;
  bottom: 18%;
  grid-template-columns: 1fr max-content 1fr;
  grid-template-areas: "lLine en rLine" "lLine pagename rLine";
  gap: 0 clamp(2rem, 5.6vw, 8rem);
}
.mv hgroup::before, .mv hgroup::after {
  content: "";
  align-self: center;
  height: 1px;
  width: 100%;
  display: block;
  background: #428ba0;
}
.mv hgroup::before {
  grid-area: lLine;
}
.mv hgroup::after {
  grid-area: rLine;
}
.mv hgroup .en {
  grid-area: en;
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1;
  font-size: clamp(3.2rem, 3.5vw, 5rem);
  color: #2a5e8d;
  font-weight: 100;
  line-height: 1.2;
}
.mv hgroup .en:first-letter {
  font-weight: 400;
  color: #0a2e5a;
}
.mv hgroup h1 {
  grid-area: pagename;
  font-family: "Noto Serif JP", serif;
  color: #2a5e8d;
  font-weight: 500;
  text-align: center;
}

main {
  padding: clamp(5rem, 6.9vw, 10rem) 0;
  position: relative;
  z-index: 0;
  width: 100%;
  overflow: hidden;
}
main #contents {
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  main {
    padding: clamp(2.5rem, 3.5vw, 5rem) 0;
  }
}

/* ------------------------------------
// parts
------------------------------------ */
:root strong.red {
  color: #b45757;
}
:root .underconstruction {
  text-align: center;
  padding-bottom: clamp(5rem, 6.9vw, 10rem);
}

.btn_contact {
  display: grid;
  grid-template-columns: max-content max-content;
  gap: 0 clamp(0.5rem, 1vw, 1.4rem);
}
.btn_contact a,
.btn_contact span {
  text-align: center;
  pointer-events: none;
  color: #fff;
  padding: 0.5rem 2rem 0.5rem 0.5rem;
  font-size: 1.6rem;
  line-height: 1;
  border-radius: 50vh;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: 0.3s;
}
.btn_contact a:before,
.btn_contact span:before {
  content: "";
  width: 4rem;
  aspect-ratio: 1;
  display: block;
}
.btn_contact a.tel,
.btn_contact span.tel {
  background: #2a5e8d;
}
.btn_contact a.tel::before,
.btn_contact span.tel::before {
  background: url(/lib/img/cmn/icon_call.webp) no-repeat center/contain;
}
.btn_contact a.tel:hover,
.btn_contact span.tel:hover {
  background: #053b6c;
}
.btn_contact a.reserve,
.btn_contact span.reserve {
  background: #428ba0;
}
.btn_contact a.reserve::before,
.btn_contact span.reserve::before {
  background: url(/lib/img/cmn/icon_reserve.webp) no-repeat center/contain;
}
.btn_contact a.reserve:hover,
.btn_contact span.reserve:hover {
  background: #165f74;
}
@media screen and (max-width: 768px) {
  .btn_contact {
    padding: 2rem 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem 0;
  }
  .btn_contact li a {
    display: grid;
    grid-template-columns: 4rem 1fr;
    text-align: center;
  }
}

.timetable {
  background: #f8faeb;
  margin-bottom: 1.5rem;
}
.timetable table {
  width: 100%;
  border-spacing: 0;
  display: grid;
  grid-template-columns: max-content repeat(7, 1fr);
  border-bottom: 1px solid #72c199;
  gap: 0 clamp(1rem, 0.7vw, 1rem);
  margin-bottom: 1rem;
}
.timetable table tbody,
.timetable table thead {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: span 8;
}
.timetable table tbody tr,
.timetable table thead tr {
  display: inherit;
  grid-template-columns: subgrid;
  grid-column: inherit;
}
.timetable table tbody th,
.timetable table tbody td,
.timetable table thead th,
.timetable table thead td {
  font-weight: 500;
  font-size: clamp(1.2rem, 1vw, 1.5rem);
}
.timetable table thead {
  padding-right: 1em;
  border-bottom: 1px solid #72c199;
}
.timetable table thead th {
  padding: 1em 0 1em;
  white-space: nowrap;
  font-size: clamp(1.2rem, 1vw, 1.4rem);
}
.timetable table tbody tr {
  padding-right: 1em;
}
.timetable table tbody tr > * {
  padding: 1em 0 0.5em;
  line-height: 1;
}
.timetable table tbody tr + tr > * {
  padding: 0.5em 0 1em;
}
.timetable table tbody tr th {
  font-weight: 500;
  text-align: left;
  white-space: nowrap;
  align-self: center;
  padding-left: 1em;
}
.timetable table tbody tr td {
  align-self: center;
  text-align: center;
  font-weight: 800;
  color: #72c199;
}
.timetable .ng {
  color: #aba9a9;
}
.timetable .ex {
  color: #428ba0;
}
.timetable .notice {
  color: #428ba0;
}
.timetable ul {
  padding: 0 0 1.5rem 1.5rem;
}
.timetable ul li {
  font-size: clamp(1.2rem, 1vw, 1.4rem);
}
.timetable ul li + li {
  margin-top: 0.5rem;
}
@media screen and (max-width: 1024px) {
  .timetable table {
    font-size: 1.4rem;
  }
  .timetable table tbody tr > * {
    padding: 1em 0.2em;
    line-height: 1;
  }
}
@media screen and (max-width: 768px) {
  .timetable table {
    font-size: 1.4rem;
    gap: 0 clamp(0.5rem, 0.7vw, 1rem);
  }
  .timetable table thead th {
    padding: 0.5em 0.25em 0.5em;
  }
  .timetable table tbody tr > * {
    padding: 1em 0.25em;
    line-height: 1;
  }
  .timetable table tbody tr th {
    font-size: 1.3rem;
  }
  .timetable table tbody tr td .time {
    font-size: 1rem;
  }
}

nav .gnav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem clamp(1rem, 2.1vw, 3rem);
  font-size: clamp(1.4rem, 1.1vw, 1.6rem);
  background: white;
  width: fit-content;
  margin: 0 auto;
  padding: 0 clamp(2rem, 2.8vw, 4rem);
  border-radius: 50vh;
}
nav .gnav li {
  position: relative;
}
nav .gnav li a {
  font-weight: 600;
  display: block;
  padding: clamp(1.2rem, 1.1vw, 1.6rem) 1rem;
  position: relative;
}
nav .gnav li a::before, nav .gnav li a::after {
  border-bottom: solid 2px #2a5e8d;
  bottom: -1px;
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  width: 0;
}
nav .gnav li a::before {
  left: 50%;
}
nav .gnav li a::after {
  right: 50%;
}
nav .gnav li a:hover, nav .gnav li a.current {
  color: #2a5e8d;
}
nav .gnav li a:hover::before, nav .gnav li a:hover::after, nav .gnav li a.current::before, nav .gnav li a.current::after {
  width: 50%;
}

/* ------------------------------------
// footer
------------------------------------ */
#footer {
  background: #fff;
  position: relative;
  z-index: 0;
  padding-top: calc(0.5 * clamp(10rem, 11.5vw, 16.5rem) + clamp(1.5rem, 2.1vw, 3rem));
}
#footer::before {
  content: "";
  width: 100%;
  display: block;
  height: 1px;
  background: #0a2e5a;
  position: absolute;
  left: 0;
  top: 1rem;
}
#footer .pagetop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  visibility: hidden;
  opacity: 0;
  transition: 0.5s;
  width: clamp(5rem, 10vw, 10rem);
  z-index: 10;
}
@media screen and (max-width: 768px) {
  #footer .pagetop {
    right: 1rem;
  }
}
#footer .pagetop.show {
  visibility: visible;
  opacity: 1;
}
#footer .logo a {
  max-width: clamp(300px, 50vw, 512px);
  margin: 0 auto clamp(3rem, 3.5vw, 5rem);
  display: block;
}
#footer .logo .mark {
  display: block;
  position: absolute;
  left: 50%;
  top: 0;
  width: clamp(10rem, 11.5vw, 16.5rem);
  transform: translate(-50%, -50%);
}
#footer .logo dl {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2.1vw, 3rem);
}
#footer .logo dl dd {
  width: 70%;
  margin: 0 auto;
}

footer {
  padding: 0 2rem 5rem;
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: clamp(2rem, 2.8vw, 4rem);
}
footer > .btn_contact {
  grid-column: 1/3;
  width: fit-content;
  margin: 0 auto;
  grid-template-columns: 1fr 1fr;
}
footer .clinicData .btn_contact {
  display: none;
}
footer .address {
  background: #eceff6;
  padding: 2.5rem 2rem;
  position: relative;
}
footer .address::before, footer .address::after {
  content: "";
  width: 100%;
  height: 5px;
  background: #fff;
  display: block;
  position: absolute;
}
footer .address::before {
  top: 2px;
  left: 0;
}
footer .address::after {
  bottom: 2px;
  left: 0;
}
footer .address p {
  color: #0a2e5a;
  text-align: center;
  border-bottom: 1px dotted;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}
footer .address ul {
  display: flex;
  justify-content: center;
  gap: 3rem;
  color: #0a2e5a;
}
footer .address ul li {
  display: flex;
  gap: 1rem;
  align-items: center;
}
footer .address ul li span {
  display: block;
  width: 2.5rem;
  aspect-ratio: 1;
}
footer .address ul li.car span {
  background: url(/lib/img/cmn/icon_parking.webp) no-repeat center/contain;
}
footer .address ul li.bike span {
  background: url(/lib/img/cmn/icon_bike.webp) no-repeat center/contain;
}
footer .timetable {
  margin-bottom: 0;
}
footer .timetable table tbody th,
footer .timetable table tbody td,
footer .timetable table thead th,
footer .timetable table thead td {
  font-weight: 500;
  font-size: clamp(1.4rem, 1.3vw, 1.8rem);
}
@media screen and (max-width: 768px) {
  footer {
    padding: 0 0 0;
    display: grid;
    grid-template-columns: 1fr;
  }
  footer .address {
    margin: 0 1rem 0 1rem;
  }
  footer > .btn_contact {
    display: none;
  }
  footer .clinicData .btn_contact {
    display: grid;
  }
  footer .clinicMap {
    padding: 1rem;
    background: #eceff6;
  }
  footer .clinicMap iframe {
    height: 300px;
  }
}

#footer_nav {
  background: #eceff6;
  padding: 3rem 2rem 3.4rem;
  position: relative;
}
#footer_nav::after {
  content: "";
  width: 100vw;
  height: 1px;
  background: #333b40;
  display: block;
  position: absolute;
  bottom: 5px;
  left: 0;
}
#footer_nav ul {
  background: none;
}
#footer_nav ul li {
  font-size: clamp(1.4rem, 1.1vw, 1.6rem);
}
#footer_nav ul li a {
  padding: 0 1rem;
}
#footer_nav ul li a::before, #footer_nav ul li a::after {
  display: none;
}
@media screen and (max-width: 768px) {
  #footer_nav {
    padding: 1rem 1rem 3rem;
  }
  #footer_nav ul {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 0.5rem;
    padding: 0;
  }
  #footer_nav ul li:first-child {
    grid-column: 1/3;
  }
  #footer_nav ul li a {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    display: block;
    text-align: center;
    padding: 1rem 0;
  }
}

#footer_copy {
  background: #333b40;
  display: grid;
  grid-template-columns: max-content 1fr max-content;
  gap: 1rem;
  padding: 10rem 2rem 2rem;
  color: #fff;
  font-weight: 400;
}
#footer_copy .logo_jp {
  display: grid;
  align-self: center;
}
#footer_copy .logo_jp img {
  height: clamp(1.2rem, 1vw, 1.4rem);
  width: auto;
  vertical-align: bottom;
}
#footer_copy .instagram {
  align-self: center;
}
#footer_copy .instagram a {
  display: flex;
  color: #fff;
  gap: 1rem;
  font-size: clamp(1.2rem, 1vw, 1.4rem);
}
#footer_copy .instagram a span {
  display: block;
  width: 2rem;
  aspect-ratio: 1;
  background: url(/lib/img/cmn/footer_instagram.webp) no-repeat center/contain;
}
#footer_copy .copyright a {
  color: #fff;
  font-size: clamp(1.2rem, 1vw, 1.4rem);
}
@media screen and (max-width: 768px) {
  #footer_copy {
    display: block;
    padding: 2rem;
  }
  #footer_copy .logo_jp {
    display: none;
  }
  #footer_copy .instagram {
    width: fit-content;
    margin: 0 auto 3rem;
  }
}

#footer_fixed {
  display: none;
}
@media screen and (max-width: 768px) {
  #footer_fixed {
    display: block;
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
  }
  #footer_fixed .btn_contact {
    padding: 0;
    grid-template-columns: 1fr 1fr;
    width: calc(100vw - 2rem);
    gap: 0 clamp(0.5rem, 1vw, 1.4rem);
  }
  #footer_fixed .btn_contact a,
  #footer_fixed .btn_contact span {
    font-size: 1.4rem;
    padding: 0.5rem 1rem 0.5rem 0.5rem;
  }
}

/* wp class
----------------------------------- */
.entry_body div.alignright,
.entry_body img.alignright,
.entry_body a.alignright {
  float: right;
  margin: 0 0 1em 1em;
}
.entry_body div.alignright.wp-caption,
.entry_body img.alignright.wp-caption,
.entry_body a.alignright.wp-caption {
  margin-right: -10px;
}
.entry_body div.alignright.wp-caption .wp-caption-text,
.entry_body img.alignright.wp-caption .wp-caption-text,
.entry_body a.alignright.wp-caption .wp-caption-text {
  margin-right: 10px;
}
.entry_body div.alignleft,
.entry_body img.alignleft,
.entry_body a.alignleft {
  float: left;
  margin: 0 1em 1em 0;
}
.entry_body div.aligncenter,
.entry_body img.aligncenter,
.entry_body a.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2em;
  padding: 1em 0 0;
}
.entry_body .wp-caption .wp-caption-text {
  font-size: 1.4rem;
  line-height: 1.5;
  margin-top: 10px;
}
.entry_body::after {
  content: "";
  clear: both;
  display: block;
}
.entry_body h1,
.entry_body h2,
.entry_body h3,
.entry_body h4,
.entry_body h5,
.entry_body h6 {
  font-weight: 700;
  margin: 2em 0 1em;
}
.entry_body h1,
.entry_body h2,
.entry_body h3 {
  font-size: 2.2rem;
}
.entry_body h4,
.entry_body h5,
.entry_body h6 {
  font-size: 2rem;
}
.entry_body p:not(.wp-caption-text) {
  margin-bottom: 2em;
}
.entry_body ul {
  margin-bottom: 2em;
}
.entry_body ul li {
  padding-left: 1em;
  position: relative;
}
.entry_body ul li::before {
  content: "・";
  position: absolute;
  left: 0;
}
.entry_body ol {
  margin-bottom: 2em;
  counter-reset: number;
}
.entry_body ol li {
  padding-left: 1.5em;
  position: relative;
}
.entry_body ol li::before {
  position: absolute;
  left: 0;
  counter-increment: number;
  content: counter(number) ".";
}
@media screen and (max-width: 768px) {
  .entry_body .aligncenter,
  .entry_body .alignright,
  .entry_body .alignleft {
    margin: 0 !important;
    float: none !important;
    padding: 0 0 2em 0 !important;
    width: 100%;
  }
  .entry_body .aligncenter img,
  .entry_body .alignright img,
  .entry_body .alignleft img {
    width: 100% !important;
  }
  .entry_body .wp-caption {
    width: auto !important;
    margin: 0 !important;
  }
  .entry_body .wp-caption .wp-caption-text {
    font-size: 1.4rem;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
}

/* box_more
----------------------------------- */
.box_more {
  --boxmore-height: 120px;
  --boxmore-bgcolor: #ECEFF6;
}
.box_more.profile {
  --boxmore-height: 240px;
  --boxmore-bgcolor: #fff;
}
.box_more.ways {
  --boxmore-height: 65px;
  --boxmore-bgcolor: #fff;
}
@media screen and (max-width: 768px) {
  .box_more.ways::before {
    background: #fff;
    height: 100%;
  }
  .box_more.ways .btn_more {
    background: #ecf0f6;
    box-shadow: none;
  }
  .box_more.ways .btn_more::before {
    display: none;
  }
  .box_more.ways.open .btn_more::before {
    display: block;
  }
}
.box_more {
  display: contents;
}
.box_more .btn_more {
  display: none;
}
@media screen and (max-width: 768px) {
  .box_more {
    display: block;
    position: relative;
    overflow: hidden;
    height: var(--boxmore-height);
  }
  .box_more::before {
    content: "";
    width: 100%;
    height: 80%;
    background: linear-gradient(to bottom, color-mix(in srgb, var(--boxmore-bgcolor) 0%, transparent) 0%, var(--boxmore-bgcolor) 59%);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: 0.3s;
  }
  .box_more .btn_more {
    width: 14rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    color: #2a5e8d;
    border-radius: 2em;
    padding: 0.8rem 0;
    position: absolute;
    left: 50%;
    bottom: 2.5rem;
    transform: translateX(-50%);
    background: #fff;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08), 0 6px 12px rgba(0, 0, 0, 0.06);
  }
  .box_more .btn_more span:nth-child(2) {
    display: none;
  }
  .box_more .btn_more::after {
    content: "";
    width: 1.8rem;
    aspect-ratio: 18/12;
    mask: url(../img/cmn/icon_eye.svg) no-repeat 0 0/contain;
    background: #728ac1;
  }
  .box_more .btn_more::before {
    content: "";
    width: 1.9rem;
    aspect-ratio: 19/12;
    mask: url(../img/cmn/icon_arrow_03.svg) no-repeat 0 0/contain;
    background: #728ac1;
    position: absolute;
    left: 50%;
    bottom: -2.5rem;
    transform: translate(-50%, 0);
  }
  .box_more.open {
    overflow: visible;
    margin-bottom: 10rem;
  }
  .box_more.open::before {
    background: none;
  }
  .box_more.open .btn_more {
    transform: translate(-50%, 200%);
    bottom: 0;
  }
  .box_more.open .btn_more span:nth-child(1) {
    display: none;
  }
  .box_more.open .btn_more span:nth-child(2) {
    display: block;
  }
  .box_more.open .btn_more::after {
    display: none;
  }
  .box_more.open .btn_more::before {
    bottom: auto;
    top: -2.5rem;
    transform: translate(-50%, 0) scale(1, -1);
  }
}