@charset "UTF-8";
/* 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;
}

@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;
  }
  80% {
    opacity: 1;
    z-index: 200;
  }
  99% {
    opacity: 0.02;
    z-index: 200;
  }
  100% {
    z-index: -1;
    opacity: 0;
  }
}
@keyframes fadeOut_fastMask {
  0% {
    opacity: 1;
    z-index: 200;
  }
  99% {
    opacity: 0.02;
    z-index: 200;
  }
  100% {
    z-index: -1;
    opacity: 0;
  }
}
@keyframes fadeInMask {
  0% {
    opacity: 1;
    z-index: 200;
  }
  10% {
    opacity: 1;
    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%);
  }
}
@keyframes zoomPhoto {
  to {
    transform: scale(110%);
  }
}
@keyframes hoverBg {
  to {
    background-color: rgba(101, 100, 100, 0.2);
  }
}
@keyframes visualMask {
  to {
    background-color: rgba(255, 255, 255, 0);
  }
}
/* */
@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;
  }
}

#mask {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #ffffff;
  z-index: 200;
}
#mask:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 300;
  background-color: #ffffff;
}
#mask.action {
  animation: fadeOutMask 5s ease-in-out forwards;
}
#mask.action:after {
  animation: fadeInMask 1s ease-in-out forwards;
}
#mask.action > div {
  width: 70%;
  max-width: 420px;
}
#mask.action > div:before {
  content: "";
  display: block;
  aspect-ratio: var(--trainAspect);
  background: url("../img/common/poppo.gif") no-repeat center/cover;
}
#mask.action > div:after {
  content: "";
  display: block;
  width: 61.9047619048%;
  aspect-ratio: 260/48;
  background: url("../img/common/loading_text.webp") no-repeat center/cover;
  margin: 2.75rem auto 0;
}
#mask.action_fast {
  animation: fadeOut_fastMask 1s ease-in-out forwards;
}
#mask.action_fast:after {
  display: none;
}

body {
  color: var(--textColor);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  position: relative;
  background-size: 71.3888888889% auto;
  background-position: top right;
  background-repeat: no-repeat;
}
body:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 71.3888888889%;
  max-width: 1028px;
  aspect-ratio: 1/1;
  z-index: 1;
  background: url("../img/common/bg_header.webp") no-repeat center/contain;
}
body:not(.home):before {
  background: url("../img/common/bg_header_lower.webp") no-repeat center/contain;
  aspect-ratio: 100/58;
}

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

.en {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

a {
  transition: opacity 0.3s ease-in-out;
  text-decoration: none;
  color: var(--textColor);
}

a:hover {
  opacity: 0.8;
}

p {
  line-height: 2;
  letter-spacing: 0.05em;
}

html {
  font-size: 16px;
}
@media screen and (max-width: 1150px) {
  html {
    font-size: 15px;
  }
}
@media screen and (max-width: 749px) {
  html {
    font-size: 14px;
  }
}
html.open {
  overflow: hidden;
}
html.open body {
  overflow: hidden;
}
html.open body header div.inner #sp_menu {
  background-image: url("../img/common/sp_menu_close.webp");
}
html.open body header div.inner nav {
  display: block;
}

.btn {
  display: inline-block;
  padding: 1em 2rem 1em 4.3125rem;
  font-size: 1.125rem;
  color: #ffffff;
  background: var(--red);
  border-radius: 4em;
  position: relative;
  white-space: nowrap;
}
@media screen and (max-width: 749px) {
  .btn {
    padding: 1em 2rem 1em 3rem;
  }
}
.btn:before {
  content: "";
  position: absolute;
  top: 0.9em;
  left: 2em;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.75rem;
  background: url("../img/common/arrow_white.webp") no-repeat center/cover;
}
@media screen and (max-width: 749px) {
  .btn:before {
    left: 1em;
  }
}
.btn.white {
  background: #ffffff;
  color: var(--red);
}
.btn.white:before {
  background-image: url("../img/common/arrow_red.webp");
}
.btn.yellow {
  background-color: var(--yellow);
  color: var(--glay);
  padding: 0 0 0 1.4em;
  font-weight: 500;
  font-size: 1.5rem;
}
.btn.yellow:before {
  top: calc(50% - 0.45em);
  left: 0;
  background-image: url("../img/common/arrow_red.webp");
}

.yellow {
  background: var(--yellow);
}

.separate:before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 1440/50;
  background: url("../img/common/separate.webp") repeat-x center/contain;
  transform: translateY(-98%);
  max-height: 50px;
}
.separate:after {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 1440/50;
  background: url("../img/common/separate.webp") repeat-x center/contain;
  transform: translateY(98%) rotate(180deg);
  max-height: 50px;
}

body main section:last-child::after {
  display: none;
}

body {
  position: relative;
}

.title_box h2 {
  font-size: 3rem;
  font-weight: 500;
}
@media screen and (max-width: 749px) {
  .title_box h2 {
    font-size: 35px;
  }
}
.title_box span {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.25rem;
  color: var(--red);
  margin-top: 1em;
  display: block;
}

header {
  display: block;
  padding: 1.875rem 0 0.625rem;
  position: relative;
  z-index: 200;
}
header h1 {
  max-width: 21.625rem;
  width: 40%;
  margin-top: 1.25rem;
}
@media screen and (max-width: 1150px) {
  header h1 {
    margin-top: 0.8125rem;
    max-width: 15.375rem;
    width: 60.4651162791%;
  }
}
header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1296px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
header .inner > span {
  position: absolute;
  top: -0.625rem;
  left: 0;
  font-size: 0.875rem;
}
@media screen and (min-width: 1149px) {
  header .inner nav ul {
    display: flex;
    gap: clamp(15px, 1.8vw, 40px);
  }
}
@media screen and (min-width: 1149px) and (max-width: 1150px) {
  header .inner nav ul {
    gap: 15px;
  }
}
@media screen and (min-width: 1149px) {
  header .inner nav ul li {
    font-weight: 500;
    font-size: 1.25rem;
  }
  header .inner nav ul li.pc {
    display: none;
  }
}
@media screen and (max-width: 1150px) {
  header .inner nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    z-index: 300;
    animation: fadeIn 0.3s ease-in-out forwards;
    overflow: auto;
  }
  header .inner nav ul {
    width: 90%;
    max-width: 280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5625rem;
  }
  header .inner nav ul:before {
    content: "";
    display: block;
    width: 100%;
    aspect-ratio: 346/100;
    background: url("../img/common/logo.webp") no-repeat center/cover;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }
}
@media screen and (max-width: 1150px) and (max-width: 749px) {
  header .inner nav ul:before {
    max-width: 240px;
    margin-left: 0;
  }
}
@media screen and (max-width: 1150px) {
  header .inner nav ul:after {
    content: "";
    display: block;
    width: 70%;
    margin: 3.125rem auto 0;
    aspect-ratio: var(--trainAspect);
    background: url("../img/common/poppo.gif") no-repeat center/cover;
  }
  header .inner nav ul li {
    padding-left: 20px;
  }
  header .inner nav ul li a {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
    font-size: 1.25rem;
  }
  header .inner nav ul li a:before {
    content: "";
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    background: url("../img/common/arrow_red.webp") no-repeat center/cover;
  }
}
header #sp_menu {
  position: fixed;
  z-index: 500;
  top: 30px;
  right: 5%;
  width: 1em;
  height: 1em;
  background: url("../img/common/sp_menu.webp") no-repeat center/cover;
}
@media screen and (min-width: 1149px) {
  header #sp_menu {
    font-size: 70px;
  }
}
@media screen and (max-width: 1150px) {
  header #sp_menu {
    font-size: 60px;
  }
}
@media screen and (max-width: 749px) {
  header #sp_menu {
    font-size: 50px;
  }
}
@media screen and (min-width: 1149px) {
  header #sp_menu {
    display: none;
  }
}

main {
  position: relative;
  z-index: 1;
}

#map iframe {
  width: 100%;
  height: auto;
}

footer {
  padding-top: 8rem;
  background-color: #faf0d2;
}
@media screen and (max-width: 749px) {
  footer {
    padding-top: 40px;
  }
}
footer .inner {
  width: 90%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 21.625rem 1fr;
  grid-template-rows: auto auto;
  column-gap: clamp(30px, 6vw, 80px);
  grid-template-areas: "logo info" "btn info";
}
@media screen and (max-width: 1150px) {
  footer .inner {
    padding-bottom: 80px;
    grid-template-columns: 17.875rem 1fr;
  }
}
@media screen and (max-width: 749px) {
  footer .inner {
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
  }
}
footer .inner .info_box {
  grid-area: logo;
}
footer .inner .info_box .logo {
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 749px) {
  footer .inner .info_box .logo {
    width: 276px;
  }
}
footer .inner .info_box address {
  margin: 2.5rem 0 0;
}
@media screen and (max-width: 749px) {
  footer .inner .info_box address {
    text-align: center;
    margin-bottom: 40px;
  }
}
footer .inner .info_box address a.tel {
  display: flex;
  line-height: 1;
  align-items: baseline;
  margin-bottom: 1.125rem;
}
@media screen and (max-width: 749px) {
  footer .inner .info_box address a.tel {
    justify-content: center;
  }
}
footer .inner .info_box address a.tel i {
  font-size: 1.4rem;
}
footer .inner .info_box address a.tel span {
  font-size: 2rem;
}
footer .inner .info_box address p {
  font-size: 1.125rem;
  letter-spacing: normal;
}
footer .inner .info_box address p i:before {
  display: inline-block;
  content: "";
  width: 0.6875rem;
  height: 1rem;
  background: url("../img/common/icon4.webp") no-repeat center/cover;
  transform: translateY(0.125rem);
}
footer .inner .info_box address p a {
  text-decoration: underline;
}
footer .inner #timeTable {
  grid-area: info;
}
@media screen and (max-width: 749px) {
  footer .inner #timeTable i {
    font-size: 10px !important;
  }
}
footer .inner .page_top {
  grid-area: btn;
  width: 13.25rem;
  aspect-ratio: 212/176;
  margin-bottom: 0;
  margin-top: 4.25rem;
  margin-left: 4.1875rem;
}
@media screen and (max-width: 749px) {
  footer .inner .page_top {
    margin-top: 40px;
  }
}
footer .inner .page_top a {
  display: block;
  width: 100%;
  height: 100%;
  background: url("../img/common/gotop.webp") no-repeat center/cover;
  overflow: hidden;
  text-indent: -999em;
}

#timeTable > div {
  background-color: #ffffff;
  box-sizing: border-box;
  padding: clamp(20px, 6vw, 48px);
  border-radius: 1rem;
}
@media screen and (max-width: 749px) {
  #timeTable > div {
    padding: 10px;
  }
}
#timeTable table {
  width: 100%;
  display: block;
  overflow: hidden;
  box-sizing: border-box;
}
#timeTable table tr {
  box-sizing: border-box;
}
#timeTable table th, #timeTable table td {
  box-sizing: border-box;
  width: 11.1842105263%;
  display: block;
}
#timeTable table th span, #timeTable table td span {
  font-size: 1.125rem;
}
@media screen and (max-width: 749px) {
  #timeTable table th span, #timeTable table td span {
    font-size: 14.5px;
  }
}
#timeTable table th span i, #timeTable table td span i {
  display: block;
  margin-top: 0.4em;
  font-size: 14px;
}
@media screen and (max-width: 749px) {
  #timeTable table th span i, #timeTable table td span i {
    font-size: 12px;
    white-space: nowrap;
  }
}
#timeTable table thead {
  display: block;
}
#timeTable table thead tr {
  display: flex;
  border-bottom: 1px solid #e0e0e0;
}
#timeTable table thead th {
  padding: 0 0 0.875rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
#timeTable table thead th span {
  text-align: center;
  line-height: 1;
}
#timeTable table thead th:first-child {
  width: 29.6052631579%;
}
#timeTable table tbody {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
#timeTable table tbody tr {
  width: 100%;
  display: flex;
  border-bottom: 1px solid #e0e0e0;
  padding: 1.1875rem 0;
}
#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;
  color: var(--red);
}
#timeTable table tbody tr td span.bar {
  color: #333333;
}
#timeTable table tbody tr td i {
  display: block;
  text-align: center;
  font-size: 12px;
  color: #333333;
}
#timeTable table tbody tr td:first-child {
  width: 29.6052631579%;
}
#timeTable table tbody tr td:first-child span {
  color: var(--glay);
  letter-spacing: -1px;
}
#timeTable ul {
  margin-top: 1.5625rem;
}
#timeTable ul li {
  line-height: 1.6;
  position: relative;
  padding-left: 1.2em;
}
#timeTable ul li:before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--red);
}
#timeTable ul li + li {
  margin-top: 0.6em;
}

section.visual_box .inner {
  width: 90%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
section.visual_box .inner:before {
  display: block;
  content: "";
  width: 50%;
  max-width: 26.25rem;
  aspect-ratio: var(--trainAspect);
  background: url("../img/common/poppo.gif") no-repeat center/cover;
  z-index: 10;
  margin: 0 auto;
}

#floating_banner {
  position: fixed;
  width: 5.25rem;
  display: flex;
  flex-direction: column;
  right: 0;
  top: 3.125rem;
  z-index: 100;
}
@media screen and (max-width: 1150px) {
  #floating_banner {
    flex-direction: row;
    bottom: 0;
    left: 0;
    top: auto;
    width: 100%;
  }
}
@media screen and (min-width: 1149px) {
  #floating_banner li {
    height: 16.625rem;
  }
}
@media screen and (max-width: 1150px) {
  #floating_banner li {
    flex: 1 1 33.33%;
  }
}
#floating_banner li a {
  display: flex;
}
@media screen and (min-width: 1149px) {
  #floating_banner li a {
    flex-direction: column;
    height: 100%;
    gap: 0.625rem;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 1150px) {
  #floating_banner li a {
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 16px 0;
  }
}
#floating_banner li a span {
  font-size: 1.5rem;
  font-weight: 500;
  color: #ffffff;
}
@media screen and (min-width: 1149px) {
  #floating_banner li a span {
    writing-mode: vertical-lr;
  }
}
@media screen and (max-width: 1150px) {
  #floating_banner li a span {
    font-size: 16px;
    line-height: 1;
  }
}
@media screen and (min-width: 1149px) {
  #floating_banner li a:before {
    height: 2.5rem;
    width: 3.75rem;
  }
}
@media screen and (max-width: 1150px) {
  #floating_banner li a:before {
    height: 27px;
  }
}
#floating_banner li a.reserve {
  background: var(--red);
}
@media screen and (min-width: 1149px) {
  #floating_banner li a.reserve {
    border-radius: 1rem 0 0 0;
  }
}
#floating_banner li a.reserve:before {
  content: "";
  background: url("../img/common/icon1.webp") no-repeat center/cover;
}
@media screen and (max-width: 1150px) {
  #floating_banner li a.reserve:before {
    aspect-ratio: 64/52;
    background: url("../img/common/icon1_sp.webp") no-repeat center/cover;
  }
}
#floating_banner li a.web {
  background: var(--brown);
}
#floating_banner li a.web:before {
  content: "";
  background: url("../img/common/icon2.webp") no-repeat center/cover;
}
@media screen and (max-width: 1150px) {
  #floating_banner li a.web:before {
    aspect-ratio: 55/52;
    background: url("../img/common/icon2_sp.webp") no-repeat center/cover;
  }
}
#floating_banner li a.visit {
  background: var(--green);
}
@media screen and (min-width: 1149px) {
  #floating_banner li a.visit {
    border-radius: 0 0 0 1rem;
  }
}
#floating_banner li a.visit:before {
  content: "";
  background: url("../img/common/icon3.webp") no-repeat center/cover;
}
@media screen and (max-width: 1150px) {
  #floating_banner li a.visit:before {
    aspect-ratio: 39/52;
    background: url("../img/common/icon3_sp.webp") no-repeat center/cover;
  }
}

body.home .slide_box .inner {
  width: 90%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}
@media screen and (max-width: 749px) {
  body.home .slide_box .inner {
    flex-direction: column;
  }
}
body.home .slide_box .inner:after {
  content: "";
  display: block;
  width: 42.9783950617%;
  aspect-ratio: 557/660;
  background: url("../img/home/title_img.webp") no-repeat center/cover;
  order: 1;
  margin-top: calc(clamp(20px, 3vw, 60px) / 2);
}
@media screen and (max-width: 749px) {
  body.home .slide_box .inner:after {
    background: url("../img/home/title_img_sp.webp") no-repeat center/cover;
    aspect-ratio: 292/100;
    width: 292px;
    margin: 40px auto 0;
    order: 2;
  }
}
body.home .slide_box .inner:before {
  content: "";
  width: 32.4074074074%;
  aspect-ratio: 420/210;
  background: url("../img/common/poppo.gif") no-repeat center/cover;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-28%);
}
@media screen and (max-width: 749px) {
  body.home .slide_box .inner:before {
    z-index: 10;
    bottom: 120px;
    width: 210px;
    transform: translateX(-50%);
  }
}
body.home .slide_box .inner .slider {
  order: 2;
  width: 49.3827160494%;
}
@media screen and (max-width: 749px) {
  body.home .slide_box .inner .slider {
    order: 1;
    width: 100%;
  }
}
body.home .slide_box .inner .swiper-pagination {
  display: flex;
  gap: 10px;
  margin-top: 1.5em;
  justify-content: right;
  align-items: center;
}
@media screen and (max-width: 749px) {
  body.home .slide_box .inner .swiper-pagination {
    display: none;
  }
}
body.home .slide_box .inner .swiper-pagination span {
  display: block;
  width: 1em;
  height: 1em;
  border-radius: 0.5em;
  background-color: #adadad;
}
body.home .slide_box .inner .swiper-pagination span.swiper-pagination-bullet-active {
  background-color: var(--red);
}
body.home .slide_box .inner .swiper-wrapper {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 63/42;
}
@media screen and (min-width: 750px) {
  body.home .slide_box .inner .swiper-wrapper {
    margin-top: 1.25rem;
  }
}
@media screen and (max-width: 749px) {
  body.home .slide_box .inner .swiper-wrapper {
    aspect-ratio: 387/258;
  }
}
body.home .slide_box .inner .swiper-wrapper .slide1 {
  background: url("../img/home/slide1.webp") no-repeat center/cover;
  border-radius: 1rem;
}
body.home .slide_box .inner .swiper-wrapper .slide2 {
  background: url("../img/home/slide2.webp") no-repeat center/cover;
  border-radius: 1rem;
}
body.home .slide_box .inner .swiper-wrapper .slide3 {
  background: url("../img/home/slide3.webp") no-repeat center/cover;
  border-radius: 1rem;
}
body.home .slide_box .inner .swiper-wrapper .slide4 {
  background: url("../img/home/slide4.webp") no-repeat center/cover;
  border-radius: 1rem;
}
body.home .slide_box .inner .swiper-wrapper .slide5 {
  background: url("../img/home/slide5.webp") no-repeat center/cover;
  border-radius: 1rem;
}
body.home .slide_box .inner .swiper-wrapper .slide6 {
  background: url("../img/home/slide6.webp") no-repeat center/cover;
  border-radius: 1rem;
}
body.home .slide_box .inner .swiper-wrapper .swiper-slide > div {
  opacity: 0;
  height: 100%;
}
body.home .slide_box .inner .swiper-wrapper .swiper-slide.swiper-slide-prev > div {
  animation: fadeOut 2s ease-in forwards;
}
body.home .slide_box .inner .swiper-wrapper .swiper-slide.swiper-slide-active > div {
  animation: fadeIn 2s ease-in forwards;
}
body.home .read_box {
  margin-top: 3.75rem;
  margin-bottom: 12.5rem;
}
@media screen and (max-width: 749px) {
  body.home .read_box {
    margin-top: 15px;
    margin-bottom: 60px;
  }
}
body.home .read_box .inner {
  width: 90%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
body.home .read_box .inner p {
  text-align: center;
  font-size: 1.25rem;
  font-weight: bold;
}
@media screen and (max-width: 749px) {
  body.home .read_box .inner p {
    text-align: left;
    font-size: 16px;
    line-height: 1.7;
  }
}
body.home .read_box .inner .btn_box {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.75rem;
}
@media screen and (max-width: 749px) {
  body.home .read_box .inner .btn_box {
    margin-top: 30px;
    gap: 16px;
  }
}
body.home section.news_box {
  margin: 11.875rem 0 9.9375rem 0;
  background: var(--yellow);
}
@media screen and (max-width: 749px) {
  body.home section.news_box {
    margin: 60px 0 60px;
  }
}
body.home section.news_box .inner {
  width: 90%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  box-sizing: border-box;
  border-radius: 2.5rem;
  margin-top: 8rem;
  margin-bottom: 8rem;
  background-color: #F8F4E6;
  padding: 5rem;
}
@media screen and (max-width: 749px) {
  body.home section.news_box .inner {
    margin-top: 60px;
    padding: 40px 20px;
  }
}
body.home section.news_box .inner:before {
  content: "";
  display: block;
  width: 8.8125rem;
  aspect-ratio: 141/320;
  background: url("../img/home/pict1.webp") no-repeat center/cover;
  position: absolute;
  top: -18.125rem;
  left: 0;
}
@media screen and (max-width: 749px) {
  body.home section.news_box .inner:before {
    width: clamp(70px, 15vw, 120px);
    top: -50px;
    transform: translateY(-50%);
  }
}
body.home section.news_box .inner:after {
  content: "";
  display: block;
  width: 8.6875rem;
  aspect-ratio: 139/190;
  background: url("../img/home/pict2.webp") no-repeat center/cover;
  position: absolute;
  bottom: -13.75rem;
  right: 0;
  z-index: 10;
}
@media screen and (max-width: 749px) {
  body.home section.news_box .inner:after {
    width: clamp(70px, 15vw, 120px);
    bottom: -100px;
    transform: translateY(50%);
  }
}
body.home section.news_box .inner .title_box {
  text-align: center;
}
body.home section.news_box .inner .list {
  margin-top: 3rem;
}
body.home section.news_box .inner .list li {
  margin-top: -1px;
  border-top: 1px solid #E0E0E0;
  border-bottom: 1px solid #E0E0E0;
  padding: 2.1875rem 1.25rem;
}
@media screen and (max-width: 749px) {
  body.home section.news_box .inner .list li {
    padding: 20px 1.25rem;
  }
}
body.home section.news_box .inner .list li a {
  display: block;
}
body.home section.news_box .inner .list li a h3 {
  display: flex;
  font-size: 1.25rem;
}
@media screen and (max-width: 749px) {
  body.home section.news_box .inner .list li a h3 {
    font-size: 16px;
    display: block;
    position: relative;
    padding-right: 20px;
  }
}
body.home section.news_box .inner .list li a h3 time {
  margin-right: 1.875rem;
}
@media screen and (max-width: 749px) {
  body.home section.news_box .inner .list li a h3 time {
    display: block;
    margin-bottom: 10px;
    line-height: 1.5;
  }
}
body.home section.news_box .inner .list li a h3 span {
  padding-right: 1.875rem;
}
@media screen and (max-width: 749px) {
  body.home section.news_box .inner .list li a h3 span {
    padding-left: 0;
    display: block;
    line-height: 1.5;
  }
}
body.home section.news_box .inner .list li a h3:after {
  content: "";
  width: 1em;
  height: 1em;
  border-radius: 0.5em;
  font-size: 1.25rem;
  margin: auto 0 auto auto;
  background: url("../img/common/arrow_red.webp") no-repeat center/cover;
}
@media screen and (max-width: 749px) {
  body.home section.news_box .inner .list li a h3:after {
    position: absolute;
    top: calc(50% - 0.2em);
    right: 0;
  }
}
body.home section.news_box .inner .btn_box {
  margin-top: 4rem;
  text-align: center;
}
body.home section.feature_box {
  margin: 11.875rem 0 9.9375rem 0;
}
@media screen and (max-width: 749px) {
  body.home section.feature_box {
    margin: 60px 0 60px;
  }
}
body.home section.feature_box .inner {
  width: 90%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 15rem 1fr;
  grid-template-rows: auto auto;
  column-gap: clamp(30px, 6vw, 80px);
  grid-template-areas: "title news" "btn news";
}
@media screen and (max-width: 749px) {
  body.home section.feature_box .inner {
    display: flex;
    flex-direction: column;
  }
}
body.home section.feature_box .inner .title_box {
  grid-area: title;
}
@media screen and (max-width: 749px) {
  body.home section.feature_box .inner .title_box {
    text-align: center;
    margin-bottom: 55px;
  }
}
body.home section.feature_box .inner .title_box:before {
  content: "";
  display: block;
  width: 10.625rem;
  aspect-ratio: 170/190;
  background: url("../img/home/pict3.webp") no-repeat center/cover;
  margin-bottom: 3rem;
}
@media screen and (max-width: 749px) {
  body.home section.feature_box .inner .title_box:before {
    margin: 0 auto 35px;
    width: clamp(85px, 15vw, 120px);
  }
}
body.home section.feature_box .inner .btn_box {
  margin-top: 4rem;
  grid-area: btn;
}
@media screen and (max-width: 749px) {
  body.home section.feature_box .inner .btn_box {
    text-align: center;
  }
}
body.home section.feature_box .inner .list {
  grid-area: news;
}
body.home section.feature_box .inner .list li {
  padding: 3.375rem 1.5rem;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  margin: -1px 0;
}
body.home section.feature_box .inner .list li h3 {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  font-size: 1.5rem;
  margin-bottom: 1.875rem;
  line-height: 1.6;
}
body.home section.feature_box .inner .list li h3 span {
  color: var(--red);
  font-weight: bold;
}
body.home section.feature_box .inner .list li + p {
  margin-top: 2em;
}
body.home .services_box {
  background-color: var(--yellow);
}
body.home .services_box .inner {
  width: 90%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding: 8rem 0;
  position: relative;
}
@media screen and (max-width: 749px) {
  body.home .services_box .inner {
    padding: 20px 0;
  }
}
body.home .services_box .inner .title_box {
  text-align: center;
}
body.home .services_box .inner p {
  margin-top: 3rem;
  text-align: center;
  font-size: 1.25rem;
}
@media screen and (max-width: 749px) {
  body.home .services_box .inner p {
    text-align: left;
  }
}
body.home .services_box .inner ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  column-gap: 8rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 5rem;
}
@media screen and (max-width: 749px) {
  body.home .services_box .inner ul {
    gap: 2.5rem;
    margin-top: 30px;
  }
}
body.home .services_box .inner ul li {
  width: 10rem;
  text-align: center;
}
@media screen and (max-width: 749px) {
  body.home .services_box .inner ul li {
    width: auto;
    flex-basis: 38%;
  }
}
body.home .services_box .inner ul li img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 749px) {
  body.home .services_box .inner ul li img {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
body.home .services_box .inner ul li.wrap {
  overflow: hidden;
  width: 0;
  flex-basis: 100%;
  height: 5rem;
}
@media screen and (max-width: 749px) {
  body.home .services_box .inner ul li.wrap {
    display: none;
  }
}
body.home section.access_box {
  padding: 7.8125rem 0 10rem;
}
@media screen and (max-width: 749px) {
  body.home section.access_box {
    padding: 40px 0;
  }
}
body.home section.access_box .inner {
  width: 90%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
body.home section.access_box .inner .title_box {
  text-align: center;
}
body.home section.access_box .inner .title_box:before {
  content: "";
  display: block;
  width: 11.875rem;
  aspect-ratio: 190/140;
  background: url("../img/home/pict4.webp") no-repeat center/cover;
  margin: 0 auto 2.75rem;
}
@media screen and (max-width: 749px) {
  body.home section.access_box .inner .title_box:before {
    width: clamp(95px, 15vw, 120px);
    margin: 0 auto 35px;
  }
}
body.home section.access_box .inner p {
  margin-top: 3rem;
  text-align: center;
  font-size: 1.25rem;
}
@media screen and (max-width: 749px) {
  body.home section.access_box .inner p {
    text-align: left;
    font-size: 16px;
  }
}
body.home section.access_box .inner #map {
  margin-top: 5rem;
  height: 35rem;
  border-radius: 2.5rem;
  overflow: hidden;
}
@media screen and (max-width: 749px) {
  body.home section.access_box .inner #map {
    border-radius: 20px;
    height: auto;
    aspect-ratio: 344/258;
  }
}
body.home section.access_box .inner #map iframe {
  width: 100%;
  height: 100%;
}
body.home section.access_box .inner .btn_box {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

body.about section:not(.read_box) .inner .title_box h2 {
  color: var(--red);
  font-size: 2.25rem;
}
@media screen and (max-width: 749px) {
  body.about section:not(.read_box) .inner .title_box h2 {
    line-height: 1.4;
  }
}
body.about section:not(.read_box) .inner .title_box span {
  color: var(--textColor);
  font-weight: bold;
  font-size: 1.125rem;
}
body.about .read_box {
  margin-top: 6rem;
  margin-bottom: 12.5rem;
}
@media screen and (max-width: 749px) {
  body.about .read_box {
    margin-top: 30px;
    margin-bottom: 60px;
  }
}
body.about .read_box .inner {
  width: 90%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
body.about .read_box .inner .title_box {
  text-align: center;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 749px) {
  body.about .read_box .inner .title_box {
    margin-bottom: 30px;
  }
}
body.about .read_box .inner p {
  text-align: center;
  font-size: 1.25rem;
}
@media screen and (max-width: 749px) {
  body.about .read_box .inner p {
    text-align: left;
    font-size: 16px;
    font-weight: bold;
  }
}
body.about .read_box .inner ul {
  display: flex;
  width: 90%;
  max-width: 610px;
  margin-left: auto;
  margin-right: auto;
  justify-content: space-between;
  margin-top: 5rem;
}
@media screen and (max-width: 1150px) {
  body.about .read_box .inner ul {
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.5rem;
  }
}
@media screen and (max-width: 749px) {
  body.about .read_box .inner ul {
    gap: 2.5rem;
    margin-top: 0px;
  }
}
body.about .read_box .inner ul > li {
  width: 24.5901639344%;
}
@media screen and (max-width: 1150px) {
  body.about .read_box .inner ul > li {
    width: auto;
    flex-basis: 25%;
  }
}
@media screen and (max-width: 749px) {
  body.about .read_box .inner ul > li {
    width: auto;
    flex-basis: 38%;
  }
  body.about .read_box .inner ul > li:last-child {
    margin: 0 auto;
  }
}
body.about .read_box .inner ul > li a {
  display: block;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
}
body.about .read_box .inner ul > li a img {
  margin-bottom: 1.5rem;
  display: block;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
body.about .read_box .inner ul > li a > span {
  display: flex;
  align-items: center;
  justify-content: center;
}
body.about .read_box .inner ul > li a > span:before {
  content: "";
  width: 1em;
  height: 1em;
  border-radius: 0.5em;
  background: url("../img/common/arrow_red.webp") no-repeat center/cover;
  margin-right: 0.3125rem;
  display: block;
  transform: translateY(2px);
}
body.about .read_box .inner ul > li a > span span {
  white-space: nowrap;
}
body.about .promise_box {
  background-color: var(--yellow);
}
body.about .promise_box .inner {
  width: 90%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding: 8.125rem 0;
  position: relative;
}
@media screen and (max-width: 749px) {
  body.about .promise_box .inner {
    padding: 40px 0;
  }
}
body.about .promise_box .inner .title_box {
  text-align: center;
}
body.about .promise_box .inner .title_box:before {
  content: "";
  display: block;
  width: 12.5rem;
  aspect-ratio: 200/80;
  background: url("../img/about/pict1.webp") no-repeat center/cover;
  margin: 0 auto 1.75rem;
}
@media screen and (max-width: 749px) {
  body.about .promise_box .inner .title_box:before {
    width: clamp(100px, 15vw, 140px);
  }
}
body.about .promise_box .inner ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 3.125rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 5rem;
}
@media screen and (max-width: 749px) {
  body.about .promise_box .inner ul {
    gap: 3.125rem;
    margin-top: 30px;
  }
}
body.about .promise_box .inner ul li {
  flex-basis: calc(33% - 3.125rem);
  background: #f8f4e6;
  box-sizing: border-box;
  padding: 2.5rem;
  border-radius: 1rem;
}
@media screen and (max-width: 749px) {
  body.about .promise_box .inner ul li {
    flex-basis: 100%;
  }
}
body.about .promise_box .inner ul li h3 {
  color: var(--red);
  margin-bottom: 1.25rem;
  font-weight: 500;
  font-size: 1.5rem;
}
body.about .promise_box .inner ul li p {
  letter-spacing: normal;
}
body.about .promise_box .inner ul li.wrap {
  overflow: hidden;
  width: 0;
  flex-basis: 100%;
  height: 3.125rem;
  padding: 0;
  visibility: hidden;
}
@media screen and (max-width: 749px) {
  body.about .promise_box .inner ul li.wrap {
    display: none;
  }
}
body.about .greeting_box .inner {
  width: 90%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding: 4.375rem 0 6.25rem;
}
@media screen and (max-width: 749px) {
  body.about .greeting_box .inner {
    padding: 20px 0 40px;
  }
}
body.about .greeting_box .inner .title_box {
  text-align: center;
  margin-bottom: 4.375rem;
}
body.about .greeting_box .inner .title_box + p {
  font-size: 1.25rem;
  line-height: 2.5;
}
@media screen and (max-width: 749px) {
  body.about .greeting_box .inner .title_box + p {
    font-size: 16px;
  }
}
body.about .greeting_box .inner .title_box:before {
  content: "";
  display: block;
  width: 10.625rem;
  aspect-ratio: 170/190;
  background: url("../img/home/pict3.webp") no-repeat center/cover;
  margin-bottom: 1.25rem;
  margin-left: auto;
  margin-right: auto;
}
body.about .greeting_box .inner .offsign {
  text-align: right;
  font-weight: 500;
  font-size: 1.25rem;
  margin-top: 0.625rem;
}
body.about .greeting_box .inner .list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--px80to30);
  margin-top: 4.6875rem;
}
@media screen and (max-width: 749px) {
  body.about .greeting_box .inner .list {
    grid-template-columns: 1fr;
  }
}
body.about .greeting_box .inner .list li {
  background-color: #f8f4e6;
  padding: var(--px60to30);
  border-radius: 1rem;
}
body.about .greeting_box .inner .list li h3 {
  font-size: 1.75rem;
  font-weight: 500;
  text-align: center;
}
body.about .greeting_box .inner .list li h3 span {
  display: block;
  font-weight: 500;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}
body.about .greeting_box .inner .list li p {
  margin-top: 2.5rem;
}
body.about .greeting_box .inner .list li p:before {
  content: "略歴";
  color: var(--red);
  display: block;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: normal;
  margin-bottom: 0.625rem;
}
body.about .facility_box .inner {
  width: 90%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding: 8rem 0;
}
@media screen and (max-width: 749px) {
  body.about .facility_box .inner {
    padding: 40px 0;
  }
}
body.about .facility_box .inner img {
  border-radius: 1rem;
}
body.about .facility_box .inner .title_box p {
  margin-top: 2.5rem;
  font-size: 1.25rem;
}
@media screen and (max-width: 749px) {
  body.about .facility_box .inner .title_box p {
    font-size: 16px;
  }
}
body.about .facility_box .inner .grid_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 47px);
  margin-top: 3.75rem;
}
@media screen and (max-width: 749px) {
  body.about .facility_box .inner .grid_box {
    grid-template-columns: repeat(2, 1fr);
  }
}
body.about .facility_box .inner .grid_box div p {
  margin-top: 0.625rem;
}

body.services section:not(.read_box) .inner .title_box h2 {
  color: var(--red);
  font-size: 2.25rem;
}
@media screen and (max-width: 749px) {
  body.services section:not(.read_box) .inner .title_box h2 {
    line-height: 1;
  }
}
body.services section:not(.read_box) .inner .title_box span {
  color: var(--textColor);
  font-weight: bold;
  font-size: 1.125rem;
}
@media screen and (max-width: 749px) {
  body.services section:not(.read_box) .inner .title_box span {
    line-height: 1;
  }
}
body.services .read_box {
  margin-top: 6rem;
  margin-bottom: 12.5rem;
}
@media screen and (max-width: 749px) {
  body.services .read_box {
    margin-top: 30px;
    margin-bottom: 60px;
  }
}
body.services .read_box .inner {
  width: 90%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
body.services .read_box .inner .title_box {
  text-align: center;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 749px) {
  body.services .read_box .inner .title_box {
    margin-bottom: 30px;
  }
}
body.services .read_box .inner p {
  text-align: center;
  font-size: 1.25rem;
  font-weight: bold;
}
@media screen and (max-width: 749px) {
  body.services .read_box .inner p {
    display: none;
  }
}
body.services .read_box .inner ul {
  display: flex;
  width: 90%;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  justify-content: space-between;
  margin-top: 5rem;
}
@media screen and (max-width: 1150px) {
  body.services .read_box .inner ul {
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.5rem;
  }
}
@media screen and (max-width: 749px) {
  body.services .read_box .inner ul {
    width: 100%;
    gap: 2.5rem;
    margin-top: 0;
  }
}
body.services .read_box .inner ul > li {
  width: 16.3043478261%;
}
@media screen and (max-width: 1150px) {
  body.services .read_box .inner ul > li {
    width: auto;
    flex-basis: 25%;
  }
}
@media screen and (max-width: 749px) {
  body.services .read_box .inner ul > li {
    width: auto;
    flex-basis: 38%;
  }
  body.services .read_box .inner ul > li:last-child {
    margin: 0 auto;
  }
}
body.services .read_box .inner ul > li a {
  display: block;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
}
body.services .read_box .inner ul > li a img {
  margin-bottom: 1.5rem;
  display: block;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
body.services .read_box .inner ul > li a > span {
  display: flex;
  align-items: center;
  justify-content: center;
}
body.services .read_box .inner ul > li a > span:before {
  content: "";
  width: 1em;
  height: 1em;
  border-radius: 0.5em;
  background: url("../img/common/arrow_red.webp") no-repeat center/cover;
  margin-right: 0.3125rem;
  display: block;
  transform: translateY(2px);
}
body.services .read_box .inner ul > li a > span span {
  white-space: nowrap;
}
body.services .services_box {
  background: url("../img/services/bg.webp") no-repeat bottom/100% var(--yellow);
}
body.services .services_box .inner {
  width: 90%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding-top: 8.125rem;
}
@media screen and (min-width: 1149px) {
  body.services .services_box .inner {
    padding-bottom: 420px;
  }
}
@media screen and (max-width: 1150px) {
  body.services .services_box .inner {
    padding-bottom: 300px;
  }
}
@media screen and (max-width: 749px) {
  body.services .services_box .inner {
    padding-bottom: 180px;
  }
}
@media screen and (max-width: 749px) {
  body.services .services_box .inner {
    padding-top: 50px;
  }
}
body.services .services_box .inner:before {
  content: "";
  display: block;
  width: 8.8125rem;
  aspect-ratio: 141/320;
  background: url("../img/services/pict1.webp") no-repeat center/cover;
  position: absolute;
  top: -12.5rem;
  right: 0;
}
@media screen and (max-width: 749px) {
  body.services .services_box .inner:before {
    width: clamp(70px, 15vw, 120px);
    top: 0;
    transform: translateY(-50%);
  }
}
body.services .services_box .inner article {
  background: #f8f4e6;
  border-radius: 1rem;
  padding: var(--px80to30);
}
body.services .services_box .inner article + article {
  margin-top: 3.75rem;
}
body.services .services_box .inner article .head_box {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}
body.services .services_box .inner article .head_box .img_box {
  width: 6.25rem;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 749px) {
  body.services .services_box .inner article .head_box .img_box {
    width: 70px;
  }
}
body.services .services_box .inner article p a {
  text-decoration: underline;
}
body.services .services_box .inner article p a:after {
  content: "\f08e";
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 400;
}
body.services .services_box .inner article .min_title {
  margin-top: 3.125rem;
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 500;
}
body.services .services_box .inner article .list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 1.25rem;
  margin-top: 2rem;
}
@media screen and (max-width: 1150px) {
  body.services .services_box .inner article .list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 749px) {
  body.services .services_box .inner article .list {
    grid-template-columns: repeat(1, 1fr);
  }
}
body.services .services_box .inner article .list.type3 {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 1150px) {
  body.services .services_box .inner article .list.type3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 749px) {
  body.services .services_box .inner article .list.type3 {
    grid-template-columns: 1fr;
  }
}
body.services .services_box .inner article .list li {
  letter-spacing: 0.05em;
  padding: 1.5rem 0 1.5rem 2rem;
  position: relative;
  border-top: 1px solid #E0E0E0;
  border-bottom: 1px solid #E0E0E0;
  margin: -1px 0 0 0;
}
body.services .services_box .inner article .list li:before {
  content: "";
  position: absolute;
  top: 1.5rem;
  left: 0.5rem;
  width: 1rem;
  height: 1rem;
  box-sizing: border-box;
  border: 2px solid var(--red);
  border-radius: 50%;
}

body.vaccine main a[target=_blank] {
  text-decoration: underline;
}
body.vaccine main a[target=_blank]:after {
  content: "\f08e";
  font-family: "FontAwesome";
  font-style: normal;
  font-weight: 900;
  font-synthesis: none;
}
body.vaccine section:not(.read_box) .inner .title_box h2 {
  color: var(--red);
  font-size: 2.25rem;
}
@media screen and (max-width: 749px) {
  body.vaccine section:not(.read_box) .inner .title_box h2 {
    line-height: 1;
  }
}
body.vaccine section:not(.read_box) .inner .title_box span {
  color: var(--textColor);
  font-weight: bold;
  font-size: 1.125rem;
}
@media screen and (max-width: 749px) {
  body.vaccine section:not(.read_box) .inner .title_box span {
    line-height: 1;
  }
}
body.vaccine .read_box {
  margin-top: 6rem;
  margin-bottom: 12.5rem;
}
@media screen and (max-width: 749px) {
  body.vaccine .read_box {
    margin-top: 30px;
    margin-bottom: 60px;
  }
}
body.vaccine .read_box .inner {
  width: 90%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
body.vaccine .read_box .inner .title_box {
  text-align: center;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 749px) {
  body.vaccine .read_box .inner .title_box {
    margin-bottom: 30px;
  }
}
body.vaccine .read_box .inner p {
  text-align: center;
  font-size: 1.25rem;
  font-weight: bold;
}
@media screen and (max-width: 749px) {
  body.vaccine .read_box .inner p {
    text-align: left;
    font-size: 16px;
  }
}
body.vaccine .inoculated_box .inner {
  width: 90%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding: 8.125rem 0;
  position: relative;
}
@media screen and (max-width: 749px) {
  body.vaccine .inoculated_box .inner {
    padding: 40px 0;
  }
}
body.vaccine .inoculated_box .inner .title_box {
  text-align: center;
}
@media screen and (max-width: 749px) {
  body.vaccine .inoculated_box .inner .title_box h2 {
    line-height: 1.5 !important;
  }
}
body.vaccine .inoculated_box .inner .title_box:before {
  content: "";
  display: block;
  width: 11.25rem;
  aspect-ratio: 180/120;
  background: url("../img/vaccine/pict1.webp") no-repeat center/cover;
  margin: 0 auto 1.75rem;
}
@media screen and (max-width: 749px) {
  body.vaccine .inoculated_box .inner .title_box:before {
    width: clamp(100px, 15vw, 140px);
  }
}
body.vaccine .inoculated_box .inner .title_box + p {
  margin-top: 5rem;
  font-size: 1.25rem;
  line-height: 2.5;
  text-align: center;
}
@media screen and (max-width: 749px) {
  body.vaccine .inoculated_box .inner .title_box + p {
    margin-top: 30px;
    line-height: 2;
    font-size: 16px;
    text-align: left;
  }
  body.vaccine .inoculated_box .inner .title_box + p br {
    display: none;
  }
}
body.vaccine .inoculated_box .inner .panel {
  background: #F8F4E6;
  border-radius: 1rem;
  padding: var(--px80to30);
  margin-top: 3.75rem;
}
body.vaccine .inoculated_box .inner .panel .min_title {
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 2rem;
}
body.vaccine .inoculated_box .inner .panel dl {
  display: grid;
  grid-template-columns: 18.75rem 1fr;
  border-top: 1px solid #E0E0E0;
  border-bottom: 1px solid #E0E0E0;
  margin: -1px 0 0 0;
  line-height: 2;
}
@media screen and (max-width: 749px) {
  body.vaccine .inoculated_box .inner .panel dl {
    display: block;
  }
}
body.vaccine .inoculated_box .inner .panel dl dt {
  position: relative;
  padding: 1.125rem 0 1.125rem 2rem;
}
@media screen and (max-width: 749px) {
  body.vaccine .inoculated_box .inner .panel dl dt {
    padding-bottom: 0;
  }
}
body.vaccine .inoculated_box .inner .panel dl dt:before {
  content: "";
  position: absolute;
  top: 1.75rem;
  left: 0.5rem;
  width: 1rem;
  height: 1rem;
  box-sizing: border-box;
  border: 2px solid var(--red);
  border-radius: 50%;
}
body.vaccine .inoculated_box .inner .panel dl dd {
  padding: 1.125rem 0 1.125rem 0;
}
@media screen and (max-width: 749px) {
  body.vaccine .inoculated_box .inner .panel dl dd {
    padding: 0px 0 20px 30px;
  }
}
body.vaccine .inoculated_box .inner .list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 1.25rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 1150px) {
  body.vaccine .inoculated_box .inner .list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 749px) {
  body.vaccine .inoculated_box .inner .list {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 30px;
  }
}
body.vaccine .inoculated_box .inner .list li {
  letter-spacing: 0.05em;
  padding: 1.5rem 0 1.5rem 2rem;
  position: relative;
  border-top: 1px solid #E0E0E0;
  border-bottom: 1px solid #E0E0E0;
  margin: -1px 0 0 0;
}
@media screen and (max-width: 749px) {
  body.vaccine .inoculated_box .inner .list li {
    padding: 1.125rem 0 1.125rem 2rem;
    line-height: 1.5;
  }
}
body.vaccine .inoculated_box .inner .list li:before {
  content: "";
  position: absolute;
  top: 1.5rem;
  left: 0.5rem;
  width: 1rem;
  height: 1rem;
  box-sizing: border-box;
  border: 2px solid var(--red);
  border-radius: 50%;
}
body.vaccine .ask_box .inner {
  width: 90%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding: 12.5rem 0;
}
@media screen and (max-width: 749px) {
  body.vaccine .ask_box .inner {
    padding: 50px 0 40px;
  }
}
@media screen and (max-width: 749px) {
  body.vaccine .ask_box .inner .title_box h2 {
    line-height: 1.5 !important;
  }
}
body.vaccine .ask_box .inner .flex_box {
  display: flex;
  align-items: center;
  margin-top: 5rem;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 749px) {
  body.vaccine .ask_box .inner .flex_box {
    flex-direction: column;
    flex-wrap: nowrap;
    margin-top: 30px;
  }
}
body.vaccine .ask_box .inner .flex_box:after {
  content: "";
  display: block;
  width: 8.6875rem;
  aspect-ratio: 139/190;
  background: url("../img/home/pict2.webp") no-repeat center/cover;
}
@media screen and (max-width: 749px) {
  body.vaccine .ask_box .inner .flex_box:after {
    margin-top: 30px;
    width: clamp(70px, 15vw, 120px);
  }
}
body.vaccine .ask_box .inner .flex_box .text_box {
  flex-basis: calc(100% - 13.75rem);
}
body.vaccine .ask_box .inner .flex_box .text_box p {
  font-size: 1.25rem;
  line-height: 2.5;
}
@media screen and (max-width: 749px) {
  body.vaccine .ask_box .inner .flex_box .text_box p {
    line-height: 2;
    font-size: 16px;
  }
}
body.vaccine .ask_box .inner .flex_box .text_box p + p {
  margin-top: 1.875rem;
}
body.vaccine .ask_box .inner .flex_box .text_box ul {
  margin-top: 3.75rem;
}
body.vaccine .ask_box .inner .flex_box .text_box ul li {
  line-height: 2;
  position: relative;
  padding-left: 1.2em;
}
body.vaccine .ask_box .inner .flex_box .text_box ul li:before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--red);
}
body.vaccine .ask_box .inner .flex_box .text_box ul li + li {
  margin-top: 0.6em;
}
body.vaccine .bring_box .inner {
  width: 90%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding: 8rem 0;
}
@media screen and (max-width: 749px) {
  body.vaccine .bring_box .inner {
    padding: 40px 0;
  }
}
body.vaccine .bring_box .inner:after {
  content: "";
  display: block;
  width: 20.375rem;
  aspect-ratio: 326/150;
  background: url("../img/vaccine/pict2.webp") no-repeat center/cover;
  margin: 5rem auto 0;
}
@media screen and (max-width: 749px) {
  body.vaccine .bring_box .inner:after {
    width: clamp(150px, 15vw, 180px);
  }
}
body.vaccine .bring_box .inner .title_box {
  text-align: center;
}
body.vaccine .bring_box .inner .title_box + p {
  text-align: center;
  font-size: 1.25rem;
  line-height: 2.5;
  margin-top: 4.375rem;
}
@media screen and (max-width: 749px) {
  body.vaccine .bring_box .inner .title_box + p {
    line-height: 2;
    font-size: 16px;
    text-align: left;
    margin-top: 30px;
  }
  body.vaccine .bring_box .inner .title_box + p br {
    display: none;
  }
}
body.vaccine .bring_box .inner ul {
  width: 70.7142857143%;
  margin: 5rem auto 0;
  gap: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 749px) {
  body.vaccine .bring_box .inner ul {
    margin-top: 30px;
    width: 100%;
  }
}
body.vaccine .bring_box .inner ul li {
  background: #ffffff;
  flex-basis: calc(50% - 0.75rem);
  display: grid;
  grid-template-columns: 1rem auto;
  gap: 0.625rem;
  padding: 1.25rem 2rem;
  box-sizing: border-box;
  border-radius: 3.75rem;
}
@media screen and (max-width: 749px) {
  body.vaccine .bring_box .inner ul li {
    flex-basis: 100%;
  }
}
body.vaccine .bring_box .inner ul li:before {
  content: "";
  margin: auto 0;
  display: block;
  width: 1rem;
  aspect-ratio: 1/1;
  background: url("../img/common/check.webp") no-repeat center/cover;
}

body.access section:not(.read_box) .inner .title_box h2 {
  color: var(--red);
  font-size: 2.25rem;
}
@media screen and (max-width: 749px) {
  body.access section:not(.read_box) .inner .title_box h2 {
    line-height: 1;
  }
}
body.access section:not(.read_box) .inner .title_box span {
  color: var(--textColor);
  font-weight: bold;
  font-size: 1.125rem;
}
@media screen and (max-width: 749px) {
  body.access section:not(.read_box) .inner .title_box span {
    line-height: 1;
  }
}
body.access .read_box {
  margin-top: 6rem;
  margin-bottom: 12.5rem;
}
@media screen and (max-width: 749px) {
  body.access .read_box {
    margin-top: 30px;
    margin-bottom: 60px;
  }
}
body.access .read_box .inner {
  width: 90%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
body.access .read_box .inner .title_box {
  text-align: center;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 749px) {
  body.access .read_box .inner .title_box {
    margin-bottom: 30px;
  }
}
body.access .read_box .inner p {
  text-align: center;
  font-size: 1.25rem;
  font-weight: bold;
}
@media screen and (max-width: 749px) {
  body.access .read_box .inner p {
    text-align: left;
    font-size: 16px;
  }
}
body.access .read_box .inner #map {
  margin-top: 3.25rem;
  height: 35rem;
  border-radius: 1rem;
  overflow: hidden;
}
@media screen and (max-width: 749px) {
  body.access .read_box .inner #map {
    height: auto;
    aspect-ratio: 344/258;
  }
}
body.access .read_box .inner #map iframe {
  width: 100%;
  height: 100%;
}
body.access .route_box .inner {
  width: 90%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding: 8rem 0;
}
@media screen and (max-width: 749px) {
  body.access .route_box .inner {
    padding: 40px 0;
  }
}
body.access .route_box .inner .title_box {
  text-align: center;
}
body.access .route_box .inner .title_box:before {
  content: "";
  display: block;
  width: 11.875rem;
  aspect-ratio: 190/140;
  background: url("../img/home/pict4.webp") no-repeat center/cover;
  margin: 0 auto 2.75rem;
}
@media screen and (max-width: 749px) {
  body.access .route_box .inner .title_box:before {
    width: clamp(95px, 15vw, 120px);
    margin: 0 auto 35px;
  }
}
body.access .route_box .inner .grid_box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 4.5rem;
}
@media screen and (max-width: 749px) {
  body.access .route_box .inner .grid_box {
    grid-template-columns: 1fr;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
  }
}
body.access .route_box .inner .grid_box > div {
  text-align: center;
}
body.access .route_box .inner .grid_box > div h3 {
  position: relative;
}
body.access .route_box .inner .grid_box > div h3 span {
  color: var(--red);
  font-size: 1.5rem;
  font-weight: 500;
}
body.access .route_box .inner .grid_box > div p {
  margin-top: 1.875rem;
}
@media screen and (min-width: 750px) {
  body.access .route_box .inner .grid_box > div + div {
    border-left: 1px solid #ffffff;
  }
}
@media screen and (max-width: 749px) {
  body.access .route_box .inner .grid_box > div + div {
    border-top: 1px solid #ffffff;
    margin-top: 30px;
    padding-top: 30px;
  }
}
body.access .parking_box .inner {
  width: 90%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding: 10rem 0;
}
@media screen and (max-width: 749px) {
  body.access .parking_box .inner {
    padding: 40px 0;
  }
}
body.access .parking_box .inner .title_box {
  text-align: center;
}
body.access .parking_box .inner .img_box {
  margin: 5rem auto 0;
  width: 94.6428571429%;
}
@media screen and (max-width: 749px) {
  body.access .parking_box .inner .img_box {
    margin-top: 30px;
  }
}
body.access .parking_box .inner p {
  font-size: 1.25rem;
  margin-top: 2.5rem;
  line-height: 2.5;
  text-align: center;
}
@media screen and (max-width: 749px) {
  body.access .parking_box .inner p {
    text-align: left;
    font-size: 16px;
  }
  body.access .parking_box .inner p br {
    display: none;
  }
}

body.first-visit section:not(.read_box) .inner .title_box h2 {
  color: var(--red);
  font-size: 2.25rem;
}
@media screen and (max-width: 749px) {
  body.first-visit section:not(.read_box) .inner .title_box h2 {
    line-height: 1;
  }
}
body.first-visit section:not(.read_box) .inner .title_box span {
  color: var(--textColor);
  font-weight: bold;
  font-size: 1.125rem;
}
@media screen and (max-width: 749px) {
  body.first-visit section:not(.read_box) .inner .title_box span {
    line-height: 1;
  }
}
body.first-visit .read_box {
  margin-top: 6rem;
  margin-bottom: 12.5rem;
}
@media screen and (max-width: 749px) {
  body.first-visit .read_box {
    margin-top: 30px;
    margin-bottom: 60px;
  }
}
body.first-visit .read_box .inner {
  width: 90%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
body.first-visit .read_box .inner .title_box {
  text-align: center;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 749px) {
  body.first-visit .read_box .inner .title_box {
    margin-bottom: 30px;
  }
}
body.first-visit .read_box .inner p {
  text-align: center;
  font-size: 1.25rem;
  font-weight: bold;
}
@media screen and (max-width: 749px) {
  body.first-visit .read_box .inner p {
    font-size: 16px;
    text-align: left;
  }
  body.first-visit .read_box .inner p br {
    display: none;
  }
}
body.first-visit .reservation_box .inner {
  width: 90%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding: 8rem 0;
}
@media screen and (max-width: 749px) {
  body.first-visit .reservation_box .inner {
    padding: 40px 0;
  }
}
body.first-visit .reservation_box .inner .title_box {
  text-align: center;
  margin-bottom: 5rem;
}
@media screen and (max-width: 749px) {
  body.first-visit .reservation_box .inner .title_box {
    margin-bottom: 30px;
  }
}
body.first-visit .reservation_box .inner .title_box:before {
  content: "";
  display: block;
  width: 4.875rem;
  aspect-ratio: 78/80;
  background: url("../img/first-visit/pict1.webp") no-repeat center/cover;
  margin: 0 auto 2.75rem;
}
@media screen and (max-width: 749px) {
  body.first-visit .reservation_box .inner .title_box:before {
    width: clamp(65px, 15vw, 78px);
  }
}
body.first-visit .reservation_box .inner p {
  font-size: 1.25rem;
  line-height: 2.5;
}
@media screen and (max-width: 749px) {
  body.first-visit .reservation_box .inner p {
    font-size: 16px;
    line-height: 2;
  }
}
body.first-visit .reservation_box .inner p + p {
  margin-top: 1.875rem;
}
body.first-visit .reservation_box .inner ul {
  margin-top: 3.75rem;
}
body.first-visit .reservation_box .inner ul li {
  line-height: 2;
  position: relative;
  padding-left: 1.2em;
}
body.first-visit .reservation_box .inner ul li:before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--red);
}
body.first-visit .reservation_box .inner ul li + li {
  margin-top: 0.6em;
}
body.first-visit .reservation_box .inner .btn_box {
  text-align: center;
  margin-top: 3.75rem;
}
body.first-visit .parking_box .inner {
  width: 90%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding: 10rem 0;
}
@media screen and (max-width: 749px) {
  body.first-visit .parking_box .inner {
    padding: 40px 0;
  }
}
body.first-visit .parking_box .inner .title_box {
  text-align: center;
}
body.first-visit .parking_box .inner .img_box {
  margin: 5rem auto 0;
  width: 94.6428571429%;
}
body.first-visit .parking_box .inner p {
  font-size: 1.25rem;
  margin-top: 2.5rem;
  line-height: 2.5;
  text-align: center;
}
@media screen and (max-width: 749px) {
  body.first-visit .parking_box .inner p {
    text-align: left;
    font-size: 16px;
    line-height: 2;
  }
  body.first-visit .parking_box .inner p br {
    display: none;
  }
}
body.first-visit .online_box .inner {
  width: 90%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding: 12.5rem 0;
}
@media screen and (max-width: 749px) {
  body.first-visit .online_box .inner {
    padding: 50px 0;
  }
}
body.first-visit .online_box .inner .flex_box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 749px) {
  body.first-visit .online_box .inner .flex_box {
    flex-direction: column;
    flex-wrap: nowrap;
  }
}
body.first-visit .online_box .inner .flex_box:after {
  content: "";
  display: block;
  width: 10.625rem;
  aspect-ratio: 170/190;
  background: url("../img/home/pict3.webp") no-repeat center/cover;
}
@media screen and (max-width: 749px) {
  body.first-visit .online_box .inner .flex_box:after {
    margin-top: 3.75rem;
    width: clamp(85px, 15vw, 120px);
  }
}
body.first-visit .online_box .inner .flex_box .text_box {
  flex-basis: calc(100% - 10.625rem);
  margin-top: 3.75rem;
}
@media screen and (max-width: 749px) {
  body.first-visit .online_box .inner .flex_box .text_box {
    margin-top: 30px;
  }
}
body.first-visit .online_box .inner .flex_box .text_box p {
  font-size: 1.25rem;
  line-height: 2.5;
}
@media screen and (max-width: 749px) {
  body.first-visit .online_box .inner .flex_box .text_box p {
    font-size: 16px;
    line-height: 2;
  }
}
body.first-visit .online_box .inner .flex_box .text_box .btn_box {
  margin-top: 3.75rem;
}
@media screen and (max-width: 749px) {
  body.first-visit .online_box .inner .flex_box .text_box .btn_box {
    text-align: center;
  }
}
body.first-visit .bring_box .inner {
  width: 90%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding: 8rem 0;
}
@media screen and (max-width: 749px) {
  body.first-visit .bring_box .inner {
    padding: 40px 0;
  }
}
body.first-visit .bring_box .inner:after {
  content: "";
  display: block;
  width: 20.375rem;
  aspect-ratio: 326/150;
  background: url("../img/vaccine/pict2.webp") no-repeat center/cover;
  margin: 5rem auto 0;
}
@media screen and (max-width: 749px) {
  body.first-visit .bring_box .inner:after {
    width: clamp(150px, 15vw, 180px);
  }
}
body.first-visit .bring_box .inner .title_box {
  text-align: center;
}
body.first-visit .bring_box .inner .title_box + p {
  text-align: center;
  font-size: 1.25rem;
  line-height: 2.5;
  margin-top: 4.375rem;
}
@media screen and (max-width: 749px) {
  body.first-visit .bring_box .inner .title_box + p {
    text-align: left;
    font-size: 16px;
    line-height: 2;
  }
  body.first-visit .bring_box .inner .title_box + p br {
    display: none;
  }
}
body.first-visit .bring_box .inner ul {
  width: 70.7142857143%;
  margin: 5rem auto 0;
  gap: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 749px) {
  body.first-visit .bring_box .inner ul {
    width: 100%;
    margin-top: 30px;
  }
}
body.first-visit .bring_box .inner ul li {
  background: #ffffff;
  flex-basis: calc(50% - 0.75rem);
  display: grid;
  grid-template-columns: 1rem auto;
  gap: 0.625rem;
  padding: 1.25rem 1rem 1.25rem 2rem;
  box-sizing: border-box;
  border-radius: 3.75rem;
}
@media screen and (max-width: 749px) {
  body.first-visit .bring_box .inner ul li {
    flex-basis: 100%;
  }
}
body.first-visit .bring_box .inner ul li:before {
  content: "";
  margin: auto 0;
  display: block;
  width: 1rem;
  aspect-ratio: 1/1;
  background: url("../img/common/check.webp") no-repeat center/cover;
}
body.first-visit .line_box .inner {
  width: 90%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding: 12.5rem 0 10rem;
}
@media screen and (max-width: 749px) {
  body.first-visit .line_box .inner {
    padding: 50px 0 40px;
  }
}
body.first-visit .line_box .inner .title_box {
  text-align: center;
  margin-bottom: 5rem;
}
@media screen and (max-width: 749px) {
  body.first-visit .line_box .inner .title_box {
    margin-bottom: 30px;
  }
}
body.first-visit .line_box .inner p {
  font-size: 1.25rem;
  line-height: 2.5;
}
@media screen and (max-width: 749px) {
  body.first-visit .line_box .inner p {
    font-size: 16px;
    line-height: 2;
  }
}
body.first-visit .line_box .inner p strong {
  font-weight: 500;
}
body.first-visit .line_box .inner .btn_box {
  text-align: center;
  margin-top: 3.125rem;
}

body.news section:not(.read_box) .inner .title_box h2 {
  color: var(--red);
  font-size: 2.25rem;
}
@media screen and (max-width: 749px) {
  body.news section:not(.read_box) .inner .title_box h2 {
    line-height: 1;
  }
}
body.news section:not(.read_box) .inner .title_box span {
  color: var(--textColor);
  font-weight: bold;
  font-size: 1.125rem;
}
@media screen and (max-width: 749px) {
  body.news section:not(.read_box) .inner .title_box span {
    line-height: 1;
  }
}
body.news .read_box {
  margin-top: 6rem;
}
@media screen and (max-width: 749px) {
  body.news .read_box {
    margin-top: 30px;
  }
}
body.news .read_box .inner {
  width: 90%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
body.news .read_box .inner .title_box {
  text-align: center;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 749px) {
  body.news .read_box .inner .title_box {
    margin-bottom: 30px;
  }
}
body.news .news_box .inner {
  width: 90%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 7.5rem;
}
@media screen and (max-width: 749px) {
  body.news .news_box .inner {
    margin-bottom: 40px;
  }
}
body.news .news_box article {
  padding: 3.375rem 1.5rem;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  margin: -1px 0;
}
@media screen and (max-width: 749px) {
  body.news .news_box article {
    padding: 25px 20px;
  }
}
body.news .news_box article h2 {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  font-size: 1.25rem;
  margin-bottom: 1.875rem;
  line-height: 1.6;
}
body.news .news_box article h2 span {
  font-weight: 500;
}
body.news .news_box article p + p {
  margin-top: 2em;
}
body.news .news_box article ul {
  margin-top: 2em;
}
body.news .news_box article ul li {
  padding-left: 1em;
  position: relative;
  line-height: 1.6;
}
body.news .news_box article ul li:before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
body.news .news_box article ul li + li {
  margin-top: 5px;
}

:root {
  --trainAspect:420 / 210;
  --baseWitdh:1216px;
  --textColor:#333333;
  --orange:#ffbd71;
  --glay:#333333;
  --green:#169e3c;
  --red:#eb614b;
  --brown:#914621;
  --yellow:#f9d74f;
  --fs32to20:clamp(20px,3vw,32px);
  --fs20to10:clamp(10px,1.8vw,20px);
  --px80to30:clamp(30px,6vw,80px);
  --px50to20:clamp(20px,3vw,50px);
  --px60to30:clamp(30px,3.5vw,60px);
}

/*
.zen-maru-gothic-regular {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.zen-maru-gothic-medium {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.lato-regular {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

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