@charset "utf-8";
/* font */
.font__style__01 {
  font-size: 2.625rem;
  font-weight: 500;
  color: var(--color-main);
  letter-spacing: 0.095em;
  line-height: 1;
}
.font__style__02 {
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.4;
}
.font__style__03 {
  font-size: 0.875rem;
  font-weight: 500;
}
.font__style__04 {
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4;
  color: #3d3d3d;
}
.font__style__05 {
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--color-main);
  line-height: 1.4;
  letter-spacing: 0.111em;
}
.font__style__06 {
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.4;
}
/*.font__style__07 {
  font-size: 1.375rem;
  font-weight: 300;
  line-height: 1.4;
}*/
.font__style__07 {
  font-size: 0.8125rem;
  font-weight: 200;
}
.font__style__08 {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
}
.font__style__09 {
  font-size: 1rem;
  font-weight: 400;
}
@media screen and (max-width:1100px) {
  .font__style__01 {
    font-size: 1.5rem;
    letter-spacing: 0.083em;
    line-height: 1.4;
  }
  .font__style__02 {
    font-size: 1.125rem;
  }
  .font__style__04 {
    font-size: 1.125rem;
  }
  .font__style__07 {
    font-size: 1.125rem;
  }
  .font__style__05 {
    font-size: 0.875rem;
    letter-spacing: 0.071em;
  }
  .font__style__08 {
    font-size: 1rem;
  }
  .font__style__06 {
    font-size: 0.9375rem;
  }
  .font__style__09 {
    font-size: 0.875rem;
  }
  .font__style__03 {
    font-size: 0.8125rem;
  }
  .font__style__07 {
    font-size: 0.75rem;
  }
}
/* グローバルナビ */
.nav-toolbar {
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.nav-menu {
  display: flex;
  align-items: center;
  border-left: 1px solid #b2b2b2;
}
.header__item__tel__contact {
  margin-left: auto;
}
@media (min-width: 1101px) {
  .nav-menu a, .submenu-label {
    display: inline-flex;
    align-items: center;
    font-size: clamp(0.875rem, 1.7vw, 1.25rem);
    padding: 0 clamp(0.9375rem, 1.4vw, 2.1875rem);
    position: relative;
    text-decoration: none;
    transition: color .4s ease;
    border-right: 1px solid #b2b2b2;
    letter-spacing: 0.125em;
  }
}
.nav-menu a:last-child, .submenu-label:last-child {
  border-right: none;
}
.nav-menu > a:hover::after, .nav-menu > a.active::after, .nav-menu > a[aria-current="page"]::after, .nav-submenu:hover .submenu-label::after {
  transform: scaleX(1);
}
.nav-submenu {
  position: relative;
}
.submenu {
  background: hsl(0 0% 100%);
  box-shadow: 0 0.25rem 0.5rem hsl(0 0% 0% / .12);
  min-width: 11.25rem;
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.5rem);
  transition:
    opacity .35s ease, transform .35s ease, visibility .35s;
  z-index: 1000;
  padding: 1.0625rem 0;
}
.nav-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.submenu a {
  display: block;
  padding: .5rem 2rem;
  font-size: 1rem;
  border: none;
  white-space: nowrap;
}
.submenu a:hover {
  background: hsl(0 0% 94%);
}
.hamburger {
  display: none;
  background: none;
  border: none;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}
.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 0.125rem;
  background: var(--color-main);
  transition: .3s;
}
.hamburger span:nth-child(1) {
  top: 0.125rem;
}
.hamburger span:nth-child(2) {
  top: 0.6875rem;
}
.hamburger span:nth-child(3) {
  bottom: 0.125rem;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(0.5625rem) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-0.5625rem) rotate(-45deg);
}
@media (max-width:1100px) {
  .nav-toolbar {
    justify-content: flex-end;
    height: auto;
  }
  .hamburger {
    display: block;
  }
  .nav-menu {
    background: hsl(0 0% 100% / .96);
    border-top: 1px solid hsl(203 53% 7% / .04);
    position: fixed;
    top: 5rem;
    left: 0;
    width: 100%;
    height: calc(100vh - 5rem);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    box-sizing: border-box;
    transform: translateX(-100%);
    transition: transform .35s ease;
  }
  .nav-menu.show {
    transform: translateX(0);
    overflow-y: scroll;
  }
  .submenu-label {
    width: 100%;
    padding: 0.625rem 0;
  }
  .nav-menu > a::after, .submenu-label::after {
    display: none;
  }
  .submenu {
    position: static;
    border: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: block;
    padding: 0.625rem 0 0.625rem 0.75rem;
    background: transparent;
  }
  .submenu a {
    padding: 0;
    font-size: 0.875rem;
  }
  .nav-menu.show a.active {
    background: url("../images/common/arrow_blue_r_ss.svg") no-repeat left center;
    padding-left: 0.9375rem;
  }
}
/* =========================================
header
========================================= */
.header {
  position: relative;
  z-index: 100;
  background: #fff;
  padding-top: 1.5625rem;
}
.header__items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.75rem, 2vw, 2rem);
}
.header__item__logo {
  width: min(13.75rem, 32vw);
}
.header__item__logo img {
  width: 100%;
}
.header__item__txt {
  font-size: clamp(0.75rem, 1.2vw, 1.125rem);
  line-height: 1.4;
}
@media screen and (min-width: 1101px) {
  .header__item__tel__contact > div {
    display: flex;
    align-items: center;
    grid-column-gap: 0.9375rem;
  }
  .header__item__tel {
    font-size: clamp(1.625rem, 1.125rem + .3vw, 1.625rem);
    font-weight: 500;
    color: var(--color-main);
    transition:
      opacity .3s ease, color .3s ease;
    white-space: nowrap;
  }
  .header__item__mail a {
    display: inline-block;
    border-radius: 999px;
    color: #fff;
    font-size: var(--font-16);
    font-weight: 500;
    transition:
      transform .35s ease, opacity .35s ease;
    background: url("../images/common/icon_mail_wht.svg") no-repeat left 1.75rem center #3982c4;
    background-size: 1.0625rem auto;
    padding: 0.5rem 1.375rem 0.5rem 3.125rem;
    white-space: nowrap;
  }
  .header__item__mail a:hover {
    opacity: .9;
    transform: translateY(-0.125rem);
  }
  .header__item__tel__contact span {
    border-radius: 999px;
    color: #fff;
    font-size: var(--font-14);
    font-weight: 400;
    transition: transform .35s ease, opacity .35s ease;
    background: url("../images/common/icon_phone_wht.svg") no-repeat left 1.25rem center #3982c4;
    background-size: 0.4375rem auto;
    padding: 0.3125rem 1.25rem 0.3125rem 2.1875rem;
    display: inline-block;
    white-space: nowrap;
  }
}
@media screen and (max-width: 1100px) {
  .header {
    padding: 0.9375rem 5%;
    display: flex;
    justify-content: space-between;
    grid-column-gap: 0.9375rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 5rem;
  }
  main {
    margin-top: 5rem;
  }
  .header__item__txt {
    display: none;
  }
  .header__item__tel__contact, .header__item__mail {
    width: 75px;
  }
  .header__item__logo {
    width: 150px;
  }
  .header__items {
    justify-content: inherit;
  }
  .header__item__tel__contact {
    margin-left: auto;
    display: none;
  }
}
/* =========================================
access
========================================= */
.content02__items {
  display: flex;
  width: 100%;
}
.content02__item__map {
  width: 60%;
}
.content02__item__txt {
  width: 40%;
  background: #eaf5ff;
  padding: 4.375rem 4% 4.375rem 10vw;
}
.content02__item {
  padding-top: 0.75rem;
  padding-left: 1.0625rem;
}
.content02__item__txt .font__style__08 {
  margin-top: 1.875rem;
}
@media screen and (max-width:1100px) {
  .content02__items {
    flex-wrap: wrap;
  }
  .content02__item__map {
    width: 100%;
    height: 12.5rem;
  }
  .content02__item__txt {
    width: 100%;
    padding: 3.125rem 7%;
  }
}
/* =========================================
footer
========================================= */
.pagetop a {
  display: inline-flex;
  background: var(--color-main);
  color: #fff;
  font-size: 10px;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  position: fixed;
  z-index: 1000;
  right: 15px;
  bottom: 15px;
}
footer {
  background: #f4f4f4;
  padding-block:
    clamp(5rem, 10vw, 6.25rem);
  padding-inline: 5%;
}
.footer__items {
  display: flex;
  width: 100%;
  grid-column-gap: 2%;
  justify-content: space-between;
}
.footer__item__txt figure {
  margin-bottom: 1.875rem;
}
.footer__items .reception-hours__box th {
  padding: 0.9375rem 0 0 0;
  font-size: 1.25rem;
}
footer .reception-hours__box .ttl__style__a {
  margin-bottom: 0;
}
.footer__items .reception-hours__box table {
  padding-left: 0.9375rem;
}
.link + .link {
  margin-top: 2.5rem;
}
.link nav li {
  list-style: none;
  background: url(../images/common/arrow_blue_r_s.svg) no-repeat left 0.5rem center;
  background-size: 0.1875rem auto;
  padding-left: 1.25rem;
  font-size: 1rem;
  margin-left: 0.5rem;
  margin-bottom: 0.1875rem;
}
address {
  font-size: 0.875rem;
  color: #858585
}
.footer_sitemap {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}
.footer_sitemap > .footer__item__link{
	width: 20%;
}
.reception-hours__box.fot__box {
  display: flex;
  column-gap: 6%;
  min-width: 690px;
}
@media screen and (max-width:1100px) {
  .pagetop a {
    width: 35px;
    height: 35px;
  }
  footer {
    padding: 3.125rem 7%;
  }
  .footer__items {
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    margin-bottom: 1.875rem;
  }
  footer .footer__item__link, footer .reception-hours__box {
    display: none;
  }
  address {
    text-align: center;
  }
  .footer_sitemap, .reception-hours__box.fot__box {
    display: none;
  }
}
/* =========================================
mv
========================================= */
.mv__wrap {
  position: relative;
  min-height: 47.5rem;
  /*background: url(../images/top/mv.jpg) center / cover no-repeat;*/
  padding: 0 3% 4% 0;
  display: flex;
  justify-content: flex-end;
  align-items: end;
  overflow: hidden;
}
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.reception-hours__box {
  border-radius: 1.5rem;
  background:
    hsl(0 0% 100% / .92);
  backdrop-filter: blur(0.625rem);
  box-shadow:
    0 1.25rem 3.125rem hsl(210 40% 20% / .12);
  display: inline-block;
  padding: 2.5rem;
  position: relative;
  z-index: 2;
}
.reception-hours__box table {}
.reception-hours__box th, .reception-hours__box td {
  line-height: 1.4
}
.reception-hours__box th {
  padding: 0 0.625rem;
}
.time {
  font-weight: 500;
  color: var(--color-main);
  font-size: var(--font-28);
}
.ttl__style__a {
  position: relative;
  padding-left: 0.9375rem;
  line-height: 1.4;
  margin-bottom: 0.625rem;
}
.ttl__style__a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.25rem;
  height: 100%;
  border-radius: 62.4375rem;
  background: var(--color-main);
}
table + .font__style__02 {
  margin-top: 1.875rem;
}
.blue__tab {
  font-size: var(--font-14);
  background: var(--color-main);
  display: inline-block;
  border-radius: 0.3125rem;
  color: #fff;
  padding: 0.125rem 0.375rem;
}
/* =========================================
banner
========================================= */
.bnr01__wrap {
  padding:
    clamp(2.5rem, 6vw, 4.5rem) clamp(1rem, 4vw, 2rem);
  text-align: center
}
.bnr01__wrap img {
  margin-inline: auto;
}
/* =========================================
top01・06
========================================= */
.top01__wrap {
  background: url("../images/top/bk01.jpg") no-repeat right center;
  background-size: cover;
  padding-block:
    clamp(5rem, 10vw, 6.25rem);
}
.top01__wrap .container {
  padding-right: 38%;
}

.top06__wrap {
  background: url("../images/top/bk06.jpg") no-repeat right center;
  background-size: cover;
  padding-block:
    clamp(5rem, 10vw, 6.25rem);
}
.top06__wrap .container {
  padding-right: 38%;
}

@media screen and (min-width: 1101px) {
  .top01__wrap .container {
    padding-right: 36.25rem;
  }
  .top06__wrap .container {
    padding-right: 36.25rem;
  }
}
.txt__pink {
  color: #f390a5
}
.font__style__01 + .font__style__05 {
  margin-bottom: 3.125rem;
  margin-top: 1.875rem;
}
.wht__box {
  margin-top: 1.875rem;
  padding:
    clamp(1.25rem, 3vw, 2rem);
  padding-right: 3.75rem;
  border-radius: 1.25rem;
  box-shadow:
    0 0.625rem 1.875rem hsl(210 40% 20% / .06);
  transition:
    transform .35s ease, box-shadow .35s ease;
  display: block;
  background: url("../images/common/arrow_blue_r_m.svg") no-repeat center right 1.5625rem #fff;
  background-size: 0.625rem auto;
}
.wht__box:hover {
  transform: translateY(-0.25rem);
  box-shadow:
    0 1.125rem 2.5rem hsl(210 40% 20% / .1);
}
.wht__box .font__style__04 {
  margin-bottom: 0.9375rem;
  letter-spacing: 0.136em;
}

/*矢印なしVre*/
.wht__box__na {
  margin-top: 1.875rem;
  padding:
    clamp(1.25rem, 3vw, 2rem);
  padding-right: 3.75rem;
  border-radius: 1.25rem;
  box-shadow:
    0 0.625rem 1.875rem hsl(210 40% 20% / .06);
  transition:
    transform .35s ease, box-shadow .35s ease;
  display: block;
  background: /*url("../images/common/arrow_blue_r_m.svg") no-repeat center right 1.5625rem*/ #fff;
  background-size: 0.625rem auto;
}
.wht__box__na:hover {
  transform: translateY(-0.25rem);
  box-shadow:
    0 1.125rem 2.5rem hsl(210 40% 20% / .1);
}
.wht__box__na .font__style__04 {
  margin-bottom: 0.9375rem;
  letter-spacing: 0.136em;
}


.fuchi {
    text-stroke: 1px #FFF;
    font-weight: bold;
    text-shadow: 1px 1px 0 white, -1px 1px 0 white, 1px -1px 0 white, -1px -1px 0 white, 0 1px 0 white, 1px 0 0 white, -1px 0 0 white, 0 -1px 0 white;

}

/*
.fuchi {	
  -webkit-text-stroke: 1px #FFF;
  text-stroke: 1px #FFF;
  font-weight: bold;
  text-shadow: 0px 0px 6px #FFF;
}
*/

/* =========================================
top02
========================================= */
.top02__wrap {
  padding-block:
    clamp(5rem, 10vw, 6.25rem);
}
/* =========================================
top03
========================================= */
.top03__wrap {
  padding-block:
    clamp(5rem, 10vw, 6.25rem);
  background: #eaf5ff;
}
.wht__box02__items {
  width: 100%;
  justify-content: space-between;
  display: flex;
}
.wht__box02__item {
  width: 23%;
  padding:
    clamp(1.875rem, 3vw, 3.125rem) clamp(1.25rem, 4vw, 2.1875rem);
  border-radius: 1.25rem;
  box-shadow: 0 0.625rem 1.875rem hsl(210 40% 20% / .07);
  background: #fff;
}
.wht__box02__item figure {
  width: 3.75rem;
  height: 3.4375rem;
  display: flex;
  align-items: center;
  margin-bottom: 1.6875rem;
}
.wht__box02__item .font__style__07, .wht__box03__items .font__style__07, .content02__item__txt .font__style__07 {
  color: #3982c4;
  margin: 0.625rem 0;
}
.list__link li, .list__link02 li {
  list-style: none;
}
.list__link li a {
  padding: 0.9375rem 1.875rem 0.9375rem 0;
  border-bottom: 1px solid #dcdcdc;
  background: url("../images/common/arrow_blue_r_m.svg") no-repeat right 0.625rem center;
  background-size: 0.4375rem auto;
  display: block;
}
.wht__box03__items {
  display: flex;
  grid-column-gap: 5%;
  align-items: center;
  width: 100%;
  padding:
    clamp(20px, 4vw, 35px) clamp(30px, 3vw, 50px);
  border-radius: 20px;
  box-shadow: 0 10px 30px hsl(210 40% 20% / .06);
  background: #fff;
  margin-top: 65px;
}
.wht__box03__item__ttl {
  white-space: nowrap;
}
.list__link02 {
  display: flex;
  align-items: center;
  grid-column-gap: 40px;
  grid-row-gap: 20px;
  flex-wrap: wrap;
}
.list__link02 li a {
  padding-right: 20px;
  background: url("../images/common/arrow_blue_r_m.svg") no-repeat right center;
  background-size: 7px auto;
  display: block;
}
.wht__box02__item .font__style__04, .wht__box03__items .font__style__04 {
  letter-spacing: 3px;
}
/* =========================================
top04
========================================= */
.top04__wrap {
  padding-block:
    clamp(80px, 10vw, 100px);
}
.content01__items {
  display: flex;
  width: 100%;
}
.content01__item__ttl {
  width: 25%;
}
.content01__item__txt {
  width: 75%;
}
.date {
  color: var(--color-main);
  font-size: 16px;
}
.content01__news a {
  padding: 15px 30px 30px 0;
  border-bottom: 1px solid #dcdcdc;
  background: url(../images/common/arrow_blue_r_m.svg) no-repeat right 10px center;
  background-size: 7px auto;
  display: block;
  margin-bottom: 30px;
}
.content01__news p {
  margin-bottom: 0px !important;
}
.content01__news .blue__tab {
  margin-left: 0.625rem;
}
.news__link a {
  padding-right: 50px;
  background: url(../images/common/arrow_blue_circle.svg) no-repeat right;
  background-size: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
/* =========================================
top05
========================================= */
.top05__wrap {
  padding-block:
    clamp(80px, 10vw, 100px);
  background: url("../images/top/bk02.jpg") no-repeat right center;
  background-size: cover;
}
.recruit__wrap {
  width: 52%;
  max-width: 545px;
}
.txt18 {
  font-size: var(--font-18);
}
.wht__box04 {
  background: rgba(255, 255, 255, 0.80);
  margin: 35px 0;
  padding: 25px 30px;
}
.bold {
  font-weight: bold;
}
.wht__box04 .bold {
  margin-right: 15px;
}
.btn__blue a {
  display: inline-block;
  text-align: center;
  border-radius: 100px;
  background: var(--color-main);
  color: #fff;
  width: 280px;
  padding: 10px;
}
/* =========================================
fade animation
========================================= */
.fade-up {
  opacity: 0;
  transform:
    translateY(40px);
  transition:
    opacity .8s ease, transform .8s ease;
}
.fade-up.is-show {
  opacity: 1;
  transform:
    translateY(0);
}
@media screen and (min-width:1101px) {
  footer .reception-hours__box {
    min-width: 385px;
  }
}
/* =========================================
toppage responsive
========================================= */
@media screen and (max-width:1100px) {
  /* =========================================
mv
========================================= */
  .mv__wrap {
    /*background: url(../images/top/mv_sp.jpg) center / cover no-repeat;*/
    padding: 10vh 7% 30px 7%;
  }
  .reception-hours__box {
    border-radius: 20px;
    box-shadow:
      0 10px 30px hsl(210 40% 20% / .12);
    padding: 30px;
  }
  .time {
    font-size: 20px !important;
  }
  .reception-hours__box th, .reception-hours__box td {
    font-size: var(--font-14);
  }
  .reception-hours__box th {
    width: 102px;
    padding: 0 10px 0 0px;
  }
  table + .font__style__02 {
    margin-top: 20px;
  }
  .blue__tab {
    font-size: var(--font-12);
    padding: 2px 4px;
    min-width: 38px;
  }
  /* =========================================
top01
========================================= */
  .top01__wrap {
    background: url("../images/top/bk01_sp.jpg") no-repeat bottom center #f4f1e7;
    background-size: 100% auto;
    padding-block:
      50px 200px;
  }
  .top01__wrap .container {
    padding-right: 0;
  }
  .top06__wrap {
    background: url("../images/top/bk06_sp.jpg") no-repeat bottom center #f4f1e7;
    background-size: 100% auto;
    padding-block:
      50px 200px;
  }
  .top06__wrap .container {
    padding-right: 0;
  }	
  .font__style__01 + .font__style__05 {
    margin-bottom: 30px;
    margin-top: 10px;
  }
  .font__style__01 .font__style__04 {
    display: block;
  }
  .wht__box {
    margin-top: 20px;
    padding:
      clamp(20px, 3vw, 32px);
    padding-right: 35px;
    border-radius: 15px;
    box-shadow:
      0 10px 20px hsl(210 40% 20% / .06);
    background: url("../images/common/arrow_blue_r_m.svg") no-repeat center right 15px #fff;
    background-size: 10px auto;
  }
  .wht__box .font__style__04 {
    margin-bottom: 7px;
    letter-spacing: 1px;
    font-weight: 500;
    font-size: 18px;
  }
  .wht__box__na {
    margin-top: 20px;
    padding:
      clamp(20px, 3vw, 32px);
    padding-right: 35px;
    border-radius: 15px;
    box-shadow:
      0 10px 20px hsl(210 40% 20% / .06);
    *background: /*url("../images/common/arrow_blue_r_m.svg") no-repeat center right 15px */ #fff;
    background-size: 10px auto;
  }
  .wht__box__na .font__style__04 {
    margin-bottom: 7px;
    letter-spacing: 1px;
    font-weight: 500;
    font-size: 18px;
  }	
	

.fuchi {	
  -webkit-text-stroke: none;
  text-stroke: none;
  font-weight: normal;
  text-shadow: none;
}	
	
	
  /* =========================================
top02
========================================= */
  .top02__wrap {
    padding-block:
      clamp(40px, 10vw, 50px);
  }
  /* =========================================
top03
========================================= */
  .top03__wrap {
    padding-block:
      clamp(40px, 10vw, 50px);
  }
  .wht__box02__items {
    flex-wrap: wrap;
    grid-row-gap: 30px;
  }
  .wht__box02__item {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 20px hsl(210 40% 20% / .06);
  }
  .wht__box02__item figure {
    width: 40px;
    height: inherit;
    margin-bottom: 0px;
  }
  .list__link li a {
    padding: 10px 20px 10px 0;
    background: url("../images/common/arrow_blue_r_s.svg") no-repeat right 5px center;
    background-size: 5px auto;
  }
  .ttl__wrap {
    display: flex;
    grid-column-gap: 1.25rem;
    align-items: center;
  }
  .wht__box02__item .font__style__07 {
    margin: 0.3125rem 0 0 0
  }
  .wht__box03__items {
    flex-wrap: wrap;
    padding:
      clamp(1.875rem, 4vw, 2.5rem) clamp(1.875rem, 3vw, 1.875rem);
    border-radius: 1.25rem;
    box-shadow: 0 0.625rem 1.25rem hsl(210 40% 20% / .06);
    margin-top: 1.875rem;
  }
  .list__link02 {
    grid-column-gap: 1.25rem;
    grid-row-gap: 0.625rem;
    flex-wrap: wrap;
  }
  .list__link02 li a {
    padding-right: 0.9375rem;
    background: url("../images/common/arrow_blue_r_s.svg") no-repeat right center;
    background-size: 0.3125rem auto;
  }
  .wht__box02__item .font__style__04, .wht__box03__items .font__style__04 {
    letter-spacing: 0.091em;
  }
  /* =========================================
top04
========================================= */
  .top04__wrap {
    padding-block:
      clamp(2.5rem, 10vw, 3.125rem);
  }
  .content01__items {
    flex-wrap: wrap;
    grid-row-gap: 1.25rem;
  }
  .content01__item__ttl {
    width: 100%;
  }
  .content01__item__txt {
    width: 100%;
  }
  .date {
    font-size: 0.875rem;
  }
  .content01__news .blue__tab {
    font-size: 0.75rem;
  }
  .content01__news a {
    padding: 0.3125rem 1.25rem 0.9375rem 0;
    background: url("../images/common/arrow_blue_r_s.svg") no-repeat right 0.625rem center;
    background-size: 0.4375rem auto;
    margin-bottom: 0.9375rem;
  }
  .news__link a {
    padding-right: 2.1875rem;
    background: url(../images/common/arrow_blue_circle.svg) no-repeat right;
    background-size: 1.5625rem;
    height: 1.5625rem;
  }
  /* =========================================
top05
========================================= */
  .top05__wrap {
    padding-block:
      clamp(2.5rem, 10vw, 3.125rem);
    background: url("../images/top/bk02_sp.jpg") no-repeat right center;
    background-size: cover;
  }
  .recruit__wrap {
    width: 60%;
  }
  .txt18 {
    font-size: 0.9375rem;
  }
  .wht__box04 {
    margin: 0.9375rem 0 1.5625rem 0;
    padding: 0.9375rem 1.25rem;
    font-size: 0.875rem;
  }
  .wht__box04 .bold {
    display: block;
  }
  .btn__blue a {
    width: 100%;
    padding: 0.625rem 1.25rem;
  }
}
/* slick */
.slider-img {
  margin: 0 10px;
  background: #000;
  position: relative;
}
.slider-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.8;
}
.slider-img a {
  display: block;
  border: 5px solid #d4e6f7;
}
.slider-img a figure {
  position: relative;
}
.slider-img a figure::before {
  content: '';
  background: url("../images/top/arrow_blue_triangle.png") no-repeat right top;
  background-size: 40px;
  width: 40px;
  height: 40px;
  right: 0;
  top: 0;
  position: absolute;
  z-index: 1;
}
.slider-img .ttl {
  color: #fff;
  position: absolute;
  left: 30px;
  bottom: 50px;
  font-size: 1.375rem;
}
.slider-img .subttl {
  color: #fff;
  position: absolute;
  left: 30px;
  bottom: 27px;
  font-size: 0.875rem;
}
.slick-dots {
  bottom: -45px;
}
.slick-dots li button:before {
  font-size: 15px;
  color: #51aafd;
}
.slick-dots li.slick-active button:before {
  color: #3992e1;
}
@media screen and (max-width:1100px) {
  .slider-img .ttl {
    left: 25px;
    bottom: 40px;
    font-size: 1.1rem;
  }
  .slider-img .subttl {
    left: 25px;
    bottom: 20px;
    font-size: 0.7rem;
  }
  .slick-dots {
    bottom: -35px;
  }
  .slick-dots li button:before {
    font-size: 12px;
  }
  .slick-dots li {
    margin: 0 2px;
  }
}
/* パーツリスト */
.sv__ttl_sub {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-main);
}
.sv__ttl {
  font-size: 2.75rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.1136em;
}
.font__style__10 {
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.4;
  padding-top: 2.1875rem;
  margin-bottom: 3.4375rem;
  border-top: 3px solid #f1f1f1;
  position: relative;
}
.font__style__10::before {
  content: '';
  position: absolute;
  background: var(--color-main);
  top: -0.1875rem;
  left: 0;
  height: 0.1875rem;
  width: 33.33%;
}
.font__style__11 {
  font-size: 1.25rem;
  font-weight: 600;
}
.font__style__12 {
  font-size: 1rem;
  font-weight: 400;
}
.font__style__13 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0px !important
}
.font__style__14 {
  font-size: 1.5rem;
  font-weight: 500;
}
.sv__wrap {
  background: #eaf5ff;
  padding: 4.375rem 0;
  position: relative;
  width: 100%;
  height: 300px;
  z-index: 1;
}
.sv__img {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  z-index: -1;
}
@media screen and (min-width: 1101px) and (max-width: 1240px) {
  .sv__img {
    right: inherit;
    left: 50%;
  }
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  font-size: 0.9375rem;
}
.breadcrumb li {
  list-style: none;
}
.breadcrumb li::after {
  content: '>';
  color: #b1b1b1;
  margin: 0 0.9375rem;
}
.breadcrumb li:last-child::after {
  display: none;
}
.pages__items {
  display: flex;
  justify-content: space-between;
  margin-top: 5.625rem;
  grid-column-gap: 6%;
  align-items: flex-start;
}
.pages__items .wht__box02__item {
  width: 26%;
  min-width: 18.125rem;
  position: sticky;
  top: 1.25rem;
  z-index: 10;
}
.pages__items .wht__box02__item .ttl__wrap {
  margin-bottom: 20px;
}
.pages__items .list__link li a {
  padding: 0 1.875rem 8px 0;
  line-height: 1.4;
  margin-bottom: 8px;
}
.pages__item__main {
  max-width: 68%;
  z-index: 10;
  width: stretch;
}
.font__style__11.ttl__style__a {
  margin-bottom: 2.5rem;
}
.content03__items {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.875rem;
}
.content03__items > div {
  width: 48%;
}
.txt__blue {
  color: var(--color-main);
}
.font__style__11.txt__blue {
  margin-bottom: 1.875rem;
}
.pages__item__main > p {
  margin-bottom: 1.875rem;
}
.pages__item__main figure {
  text-align: center;
}
.pages__item__main figcaption {
  margin-top: 0.625rem;
  text-align: center;
}
.liststyle__disc {
  margin-left: 0.9375rem;
  margin-bottom: 1.875rem;
}
.liststyle__num {
  margin-left: 2.1875rem;
  margin-bottom: 1.875rem;
}
ul.liststyle__disc li::marker, ol.liststyle__num li::marker {
  color: var(--color-main);
  font-weight: 600;
}
.liststyle__disc li {
  margin-left: 1.25rem;
  margin-bottom: 5px;
}
.tbl__style__a {
  margin: 3.75rem 0;
  width: auto;
  min-width: 100%
}
.tbl__style__a th, .tbl__style__a td {
  padding: 1.375rem 1.25rem;
  border: 1px solid #dae5ee;
  width: auto;
}
.tbl__style__a th {
  background: #f5f7fb;
  font-weight: normal;
}
.tbl__style__a.tbl__size__s th, .tbl__style__a.tbl__size__s td {
  padding: 0.625rem;
  font-size: 0.9375rem;
}
.bluebtn__right a {
  padding-right: 2.1875rem;
  background: url("../images/common/arrow_blue_circle_small.svg") no-repeat right;
  background-size: 1.5625rem;
  min-height: 1.5625rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.gray__box {
  border-radius: 1.25rem;
  padding: 6% 6% 1.25rem 6%;
  background: #f1f1f1;
  margin-bottom: 2.5rem;
}
.gray__box > * {
  margin-bottom: 1.25rem !important;
  margin-top: 0 !important
}
.blue__box {
  border-radius: 1.25rem;
  padding: 6%;
  background: #f5f7fb;
  margin-bottom: 2.5rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 46.25rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.blue__box__img {
  width: 10.625rem;
}
.blue__box__txt {
  width: calc(100% - 6% - 10.625rem);
}
.txt__blk {
  color: var(--color-text);
}
.ttl__style__b {
  font-weight: 500;
  position: relative;
  margin-left: 1.375rem;
  margin-top: 1.25rem;
}
.ttl__style__b::before {
  content: '';
  position: absolute;
  background: var(--color-main);
  top: 0.8125rem;
  left: -1.25rem;
  height: 0.25rem;
  width: 0.6875rem;
}
.ttl__style__b + p {
  margin-left: 1.375rem;
}
.accordion__wrap {
  margin-bottom: 2.5rem;
}
.accordion {
  width: 100%;
  border-bottom: 1px solid #dcdcdc;
  margin-bottom: 0.4375rem;
}
.accordion summary {
  position: relative;
  padding: 1em 2em 1em 2.8em;
  cursor: pointer;
  background: url("../images/common/img_question.svg") no-repeat left top 0.9375rem;
  background-size: 2.0625rem;
  list-style: none;
}
.accordion summary::-webkit-details-marker {
  display: none;
}
.accordion summary::marker {
  display: none;
}
.accordion summary::before, .accordion summary::after {
  width: 1rem;
  height: 0.0625rem;
  background-color: #3982c4;
  content: '';
  position: absolute;
  right: 0.8125rem;
  top: 1.875rem;
}
.accordion summary::before {
  rotate: 90deg;
}
.accordion summary::before {
  transition: rotate .3s;
}
.accordion[open] summary::before {
  rotate: 0deg;
}
.accordion p {
  transform: translateY(-0.625rem);
  opacity: 0;
  margin: 0;
  padding: .3em 2em 1.5em 2.8em;
  color: #333333;
  transition: transform .5s, opacity .5s;
  font-size: 1rem;
  background: url("../images/common/img_answer.svg") no-repeat left top 0.6875rem;
  background-size: 2.0625rem;
}
.accordion[open] p {
  transform: none;
  opacity: 1;
}
@media screen and (max-width:1100px) {
  .sv__ttl_sub, .font__style__12, .font__style__13 {
    font-size: 0.875rem;
  }
  .font__style__11 {
    font-size: 1.15rem;
  }
  .font__style__14 {
    font-size: 1.25rem;
  }
  .sv__ttl {
    font-size: 1.50rem;
    letter-spacing: 0.0714em;
  }
  .font__style__10 {
    font-size: 1.475rem;
    padding-top: 0.9375rem;
    margin-bottom: 1.875rem;
  }
  .sv__wrap {
    height: auto;
    padding: 1.875rem 0 0;
    overflow: hidden;
    max-height: 280px;
  }
  .sv__img {
    width: 116%;
    height: auto;
    position: inherit;
    margin-top: 20px;
    margin-left: -8%;
    max-width: inherit;
  }
  .breadcrumb {
    flex-wrap: wrap;
    margin-top: 1.25rem;
    font-size: 0.75rem;
  }
  .breadcrumb li::after {
    margin: 0 0.4375rem;
  }
  .pages__items {
    flex-wrap: wrap;
    margin-top: 1.875rem;
    grid-row-gap: 3.75rem;
    flex-direction: column-reverse;
  }
  .pages__items .wht__box02__item {
    width: 100%;
    position: inherit;
    min-width: inherit;
  }
  /*.pages__items .wht__box02__item .ttl__wrap {
    display: none;
  }*/
  .pages__item__main {
    max-width: 100%;
    width: 100%;
  }
  .font__style__11.ttl__style__a {
    margin-bottom: 1.25rem;
  }
  .content03__items {
    flex-wrap: wrap;
    grid-row-gap: 2.5rem;
    margin-bottom: 1.875rem;
  }
  .content03__items > div {
    width: 100%;
  }
  .font__style__11.txt__blue {
    margin-bottom: 1.25rem;
  }
  .pages__item__main > p {
    margin-bottom: 1.25rem;
  }
  .tbl__wrap {
    overflow-x: scroll;
    padding-bottom: 1.0rem;
    margin: 2.0rem 0 1.0rem 0;
  }
  .tbl__wrap table {
    width: max-content;
    margin: 0;
  }
  .tbl__style__a {
    margin: 30px 0;
  }
  .tbl__style__a th, .tbl__style__a td {
    padding: 0.9375rem 0.625rem;
    max-width: 18.75rem;
  }
  .tbl__style__a.tbl__size__s th, .tbl__style__a.tbl__size__s td {
    padding: 6px;
  }
  .gray__box {
    border-radius: 0.9375rem;
    padding: 1.875rem 1.875rem 0.625rem 1.875rem;
  }
  .blue__box {
    border-radius: 0.9375rem;
    padding: 2.5rem 1.875rem 1.875rem 1.875rem;
    flex-wrap: wrap;
    grid-row-gap: 1.875rem;
  }
  .blue__box__img {
    width: 100%;
  }
  .blue__box__img img {
    margin: auto;
  }
  .blue__box__txt {
    width: 100%;
  }
  .ttl__style__b {
    margin-top: 0.625rem;
  }
  .ttl__style__b::before {
    height: 0.1875rem;
  }
  .accordion summary {
    padding: 1em 2.5em;
    background: url("../images/common/img_question.svg") no-repeat left top 1.125rem;
    background-size: 1.5625rem;
  }
  .accordion p {
    padding: 0 1em 1.5em 2.5em;
    background: url("../images/common/img_answer.svg") no-repeat left top 0.6875rem;
    background-size: 1.5625rem;
    font-size: 0.9rem;
    font-weight: 400;
  }
}
/* 下層ページ */
.font__style__15 {
  font-size: 20px;
  font-weight: 400
}
.tbl__style__b {
  margin-bottom: 3.75rem;
  width: auto;
  min-width: 100%
}
.tbl__style__b > tbody > tr > th, .tbl__style__b > tbody > tr > td {
  padding: 1.375rem 1.25rem 1.375rem 0;
  border-bottom: 1px solid #ccc;
  font-weight: normal;
  vertical-align: top;
  width: auto;
}
.tbl__style__b > tbody > tr > th {
  min-width: 140px;
}


.tbl__style__c {
  margin-bottom: 3.75rem;
  width: auto;
  min-width: 100%
}
.tbl__style__c > tbody > tr > th, .tbl__style__c > tbody > tr > td {
  padding: 1.375rem 1.25rem 1.375rem 0;
  font-weight: normal;
  vertical-align: top;
  width: auto;
}
.tbl__style__c > tbody > tr > th {
  min-width: 140px;
}


.tbl__layout th, .tbl__layout td {
  vertical-align: top;
  font-weight: normal;
  line-height: 1.2;
  padding: 7px 20px 7px 0;
}
.font__style__11.ttl__style__a {
  margin-top: 3.4375rem
}
.pages__item__main section {
  padding-bottom: 80px;
}
.pages__item__main p {
  margin-bottom: 25px;
}
.pages__item__main p:last-child {
  margin-bottom: 0px;
}
.btn__blue.pdf a {
  background: url("../images/common/icon_pdf.svg") no-repeat right 25px center var(--color-main);
  width: fit-content;
  padding: 10px 80px 10px 60px;
}
.pb20 {
  padding-bottom: 20px;
}
.tbl__history tr td {
  line-height: 1.4
}
@media screen and (min-width:1101px) {
  .pb20_sp {
    padding-bottom: 20px;
  }
  .tbl__history tr td {
    vertical-align: top;
  }
  .tbl__history tr td:nth-child(2) {
    width: 85px;
    color: var(--color-main);
  }
  .tbl__history tr th {
    position: relative;
    width: 200px;
    text-align: center;
    padding-right: 85px;
    vertical-align: top;
    line-height: 1.3;
    font-weight: 400;
    font-size: 28px;
  }
  .tbl__history tr th:before {
    content: " ";
    display: block;
    width: 1px;
    background: #ccc;
    height: 100%;
    position: absolute;
    top: 4px;
    right: 44px
  }
  .tbl__history tr th:after {
    content: " ";
    display: block;
    width: 12px;
    height: 12px;
    background: #3982C4;
    border-radius: 12px;
    position: absolute;
    top: 4px;
    right: 39px
  }
}
.txt__gray {
  color: #9E9E9E
}
.wht__box2 {
  margin: 60px 5%;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: 1.25rem;
  box-shadow: 0 0.625rem 1.875rem hsl(210 40% 20% / .07);
  background: #fff;
  width: 90%;
}
.th__nowrap th {
  white-space: nowrap;
}
h1 + .tbl__wrap table, h2 + .tbl__wrap table, h3 + .tbl__wrap table, h4 + .tbl__wrap table, h5 + .tbl__wrap table, h6 + .tbl__wrap table, h1 + table, h2 + table, h3 + table, h4 + table, h5 + table, h6 + table {
  margin-top: 0
}
.pink__box {
  border-radius: 1.25rem;
  padding: 30px 40px;
  background: #FFF8F9;
  margin-bottom: 3.75rem;
}
.icon__num01, .icon__num02, .icon__num03 {
  background: url("../images/kekkaku/img_01.png") no-repeat left;
  background-size: 67px;
  padding-left: 85px;
  display: flex;
  align-items: center;
  min-height: 67px;
  margin-bottom: 20px;
}
.icon__num02 {
  background: url("../images/kekkaku/img_02.png") no-repeat left;
  background-size: 67px;
}
.icon__num03 {
  background: url("../images/kekkaku/img_03.png") no-repeat left;
  background-size: 67px;
}
.content04__items {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.content04__item_txt {
  width: 42%;
}
.content04__item_img {
  width: 53%;
}
.line__left__tate {
  border-left: 2px solid #3982C4;
  margin-left: 33px;
  padding-left: 60px;
  margin-bottom: 60px;
}
.txt__red {
  color: #E20E0E
}
.liststyle__disc__normal {
  margin-left: 30px;
  margin-bottom: 30px;
}
p:has(+ ul) {
  margin-bottom: 10px !important;
}
.pink__bg {
  background: #fbb9c7
}
.tantou table {
  margin: 10px 0 !important;
  width: 100%;
  table-layout: fixed;
}
.tantou table th, .tantou table td {
  width: calc((100% - 200px) / 6);
}
.tantou table th:first-child, .tantou table td:first-child {
  width: 150px;
}
.text-trigger-only {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column-reverse;
}
summary.text-summary-only {
  display: block;
  cursor: pointer;
  margin-bottom: 20px;
}
summary.text-summary-only::-webkit-details-marker {
  display: none !important;
}
summary.text-summary-only::marker {
  display: none !important;
}
details.text-trigger-only .close-text {
  display: none;
}
details.text-trigger-only[open] .open-text {
  display: none;
}
details.text-trigger-only[open] .close-text {
  display: flex;
}
.text-summary-only {
  text-align: right;
}
.text-summary-only span {
  display: flex;
  justify-content: end;
  column-gap: 10px;
}
.text-summary-only .open-text img {
  transform: rotate(-90deg);
}
.text-summary-only .close-text img {
  transform: rotate(90deg);
}
.content05__items {
  display: flex;
  justify-content: space-around;
  width: 100%;
  margin-bottom: 30px;
}
.content05__item {
  width: 43%;
  border: 1px solid #4C81BF;
  text-align: center;
  font-weight: bold;
  padding-bottom: 20px;
}
.content05__item .ttl__blue {
  background: #4C81BF;
  color: #fff;
  padding: 5px;
  font-size: 20px;
  margin-bottom: 20px;
}
.content05__item table {
  margin: auto;
  width: 100%;
}
.content05__item table th {
  padding-left: 10%;
  width: 35%;
}
.content05__item table td {
  padding-right: 10%;
  width: 65%;
}
.content05__item table:nth-child(2) {
  border-bottom: 1px solid #4C81BF;
  margin-bottom: 20px;
}
.content05__item table:nth-child(2) tr:last-child td {
  padding-bottom: 20px;
}
.flex__center {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column-gap: 15px;
}
.tab__blue {
  background: #4C81BF;
  border-radius: 5px;
  display: inline-block;
  padding: 7px 10px;
  font-size: 18px;
  color: #fff;
  text-align: center;
}
.wht__box2 .font__style__11.ttl__style__a:first-child {
  margin: 0 0 20px 0;
}
.content05__item .text-left {
  padding: 0 30px;
  font-weight: normal;
}
.content05__item .text-left .liststyle__num {
  margin-bottom: 0;
}
.bg__yellow {
  position: relative;
}
.bg__yellow::before {
  content: '';
  position: absolute;
  width: 100vw;
  height: 100%;
  top: -60px;
  left: calc(50% - 63vw);
  background: #FFFBF5;
  z-index: -1;
}
.slick01 li {
  margin: 0 10px;
  text-align: center;
}
.slick01__wrap {
  width: 100vw;
  left: 0;
  position: absolute;
  z-index: 1;
}
.shisetsu__space {
  padding-bottom: 19vw;
}
@media all and (-ms-high-contrast:none) {
  .tbl__history tr th:before {
    height: 200px;
  } /* IE10 */
}
@media screen and (max-width:1100px) {
  .font__style__15 {
    font-size: 18px;
  }
  .tbl__style__b {
    margin-bottom: 1.75rem;
  }
  .tbl__style__b > tbody > tr > th, .tbl__style__b > tbody > tr > td {
    padding: 10px 15px 10px 0;
  }
  .tbl__style__b > tbody > tr > th {
    min-width: inherit;
    white-space: nowrap;
  }
  .tbl__style__c {
    margin-bottom: 1.75rem;
  }
  .tbl__style__c > tbody > tr > th, .tbl__style__c > tbody > tr > td {
    padding: 10px 15px 10px 0;
  }
  .tbl__style__c > tbody > tr > th {
    min-width: inherit;
    white-space: nowrap;
  }	
	
  .tbl__layout th, .tbl__layout td {
    padding-right: 15px;
  }
  .content03__items + .font__style__11 {
    margin-top: 3px
  }
  .pages__item__main section {
    padding-bottom: 40px;
  }
  .pages__item__main p {
    margin-bottom: 20px;
  }
  .btn__blue.pdf a {
    background: url(../images/common/icon_pdf.svg) no-repeat right 18px center var(--color-main);
    width: fit-content;
    padding: 10px 45px 10px 28px;
    background-size: 15px;
  }
  .tbl__history tr th, .tbl__history tr td {
    display: block;
    width: 100%;
  }
  .tbl__history tr th {
    border-bottom: 1px solid #ccc;
    line-height: 1.2;
    padding-bottom: 15px;
  }
  .tbl__history tr td:nth-child(2) {
    font-weight: 600;
    padding-top: 10px;
  }
  .tbl__history tr td:nth-child(3) {
    padding-bottom: 30px;
  }
  .tbl__history tr:last-child td:nth-child(3) {
    padding-bottom: 0px;
  }
  .content03__items.reverse {
    flex-direction: column-reverse;
  }
  .wht__box2 {
    margin: 40px 0;
    padding:
      clamp(20px, 3vw, 32px);
    border-radius: 15px;
    box-shadow:
      0 10px 20px hsl(210 40% 20% / .07);
    width: 100%;
  }
  .font__style__11.ttl__style__a {
    margin-top: 30px;
  }
  .pink__box {
    padding:
      clamp(20px, 3vw, 32px);
    border-radius: 15px;
    box-shadow:
      0 10px 20px hsl(210 40% 20% / .07);
  }
  .icon__num01, .icon__num02, .icon__num03 {
    background: url("../images/kekkaku/img_01.png") no-repeat left top;
    background-size: 35px;
    padding-left: 50px;
    min-height: 35px;
    margin-bottom: 20px;
  }
  .icon__num02 {
    background: url("../images/kekkaku/img_02.png") no-repeat left top;
    background-size: 35px;
  }
  .icon__num03 {
    background: url("../images/kekkaku/img_03.png") no-repeat left top;
    background-size: 35px;
  }
  .content04__items {
    flex-wrap: wrap;
  }
  .content04__item_txt {
    width: 100%;
  }
  .content04__item_img {
    width: 100%;
  }
  .line__left__tate {
    border-left: 2px solid #3982C4;
    margin-left: 17px;
    padding-left: 35px;
    margin-bottom: 40px;
  }
  .liststyle__disc__normal {
    margin-left: 20px;
  }
  .tantou table {
    width: 600px;
  }
  .content05__items {
    flex-wrap: wrap;
    grid-row-gap: 20px;
    width: 90%;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
  }
  .content05__item {
    width: 100%;
  }
  .content05__item .ttl__blue {
    font-size: 16px;
  }
  .content05__item .text-left {
    padding: 0 20px;
  }
  .tab__blue {
    padding: 3px 7px;
    font-size: 14px;
  }
  .tbl__wrap.tantou {
    margin: 0 0 1.0rem 0;
  }
  .bg__yellow::before {
    top: -30px;
    left: calc(50% - 50vw);
  }
  .shisetsu__space {
    padding-bottom: 50vw;
  }
}
/*  */
.slick01 .modal-trigger {
  cursor: pointer;
}
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
.modal-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}
.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 800px;
  border-radius: 1.5rem;
  background: #F5F7FB;
  backdrop-filter: blur(0.625rem);
  box-shadow: 0 1.25rem 3.125rem hsl(210 40% 20% / .12);
  display: inline-block;
  padding: 2.5rem;
}
#modal-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
#modal-image-wrap figcaption {
  text-align: center;
  margin-top: 15px;
  font-weight: bold;
}
button.modal-close {
  margin-left: auto;
  margin-bottom: 20px;
  display: block;
  padding-right: 40px;
  background: url("../images/common/icon_slick_close.png") no-repeat right top;
  background-size: 30px auto;
  min-height: 30px;
}
/* 1. 矢印ボタンをモーダル（z-index:1000）より手前に表示し、位置を固定する */
.slick01 .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  font-size: 0;
}
.slick01 .slick-prev {
  left: 20px;
}
.slick01 .slick-next {
  right: 20px;
}
.slick01 .slick-prev::before, .slick01 .slick-next::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-top: 1px solid #3982C4;
  border-left: 1px solid #3982C4;
  position: absolute;
  top: 50%;
  left: 50%;
}
.slick01 .slick-prev::before {
  transform: translate(-30%, -50%) rotate(-45deg);
}
.slick01 .slick-next::before {
  transform: translate(-70%, -50%) rotate(135deg);
}
.slick01 .slick-disabled {
  opacity: 0.3;
  cursor: default;
}
/* ――― 【追加】モーダル内の簡易矢印スタイル ――― */
.modal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1010;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  font-size: 0;
}
.modal-prev {
  left: -50px;
}
.modal-next {
  right: -50px;
}
.modal-arrow::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-top: 1px solid #3982C4;
  border-left: 1px solid #3982C4;
  position: absolute;
  top: 50%;
  left: 50%;
}
.modal-prev::before {
  transform: translate(-30%, -50%) rotate(-45deg);
}
.modal-next::before {
  transform: translate(-70%, -50%) rotate(135deg);
}
@media screen and (max-width:1100px) {
  .modal-content {
    padding: 15px;
    border-radius: 10px;
  }
  button.modal-close {
    background: url(../images/common/icon_slick_close.png) no-repeat right top;
    background-size: 22px auto;
    min-height: 22px;
    line-height: 1;
    padding-right: 30px;
    font-size: 13px;
    margin-bottom: 10px;
  }
  .slick01 .slick-arrow {
    width: 30px;
    height: 30px;
  }
  .slick01 .slick-prev {
    left: 15px;
  }
  .slick01 .slick-next {
    right: 15px;
  }
  .modal-arrow {
    width: 30px;
    height: 30px;
  }
  .modal-prev {
    left: -25px;
  }
  .modal-next {
    right: -25px;
  }
}
/* お知らせ */
.navigation {
  display: flex;
  justify-content: center;
  grid-column-gap: 8px;
}
.navigation a, .navigation span {
  padding: 5px 13px;
  text-decoration: none;
  transition: background-color .3s;
  border: 1px solid #ddd;
  font-size: 14px;
}
.navigation a {
  background-color: var(--color-main);
  color: white;
  border: 1px solid var(--color-main);
}
.navigation span {
  background-color: #ddd;
  color: #fff
}
.news__wrap {
  max-width: 630px;
  margin: 0 auto;
}
.news_info {
  display: flex;
  grid-column-gap: 8px;
  margin-bottom: 30px;
}
.news__wrap .news__link {
  margin-top: 60px;
}
@media screen and (max-width:1100px) {}
/*  */
.btn__items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 30px;
  row-gap: 20px;
}
.btn__item.icon_hp a::before, .btn__item.icon_map a::before, .btn__item.icon_kanja a::before, .btn__item.icon_hospital a::before, .btn__item.icon_bus a::before, .btn__item.icon_car a::before, .btn__item.icon_holiday a::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 8px;
  background-image: url('../images/common/icon_earth.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.btn__item.icon_map a::before {
  background-image: url('../images/common/icon_google-map.svg');
  width: 17px;
  height: 25px;
}
.btn__item.icon_kanja a::before {
  background-image: url('../images/common/icon_head.svg');
  width: 21px;
  height: 23px;
}
.btn__item.icon_hospital a::before {
  background-image: url('../images/common/icon_stethoscope.svg');
  width: 21px;
  height: 21px;
}
.btn__item.icon_bus a::before {
  background-image: url('../images/guide/access/icon_bus.svg');
  width: 45px;
  height: 27px;
}
.btn__item.icon_car a::before {
  background-image: url('../images/guide/access/icon_car.svg');
  width: 46px;
  height: 21px;
}
.btn__item.icon_holiday a::before {
  background-image: url('../images/guide/access/icon_iriguchi.svg');
  width: 33px;
  height: 32px;
}
.access__wrap {
  margin-top: 60px;
}
.mb0 {
  margin-bottom: 0 !important
}
.mt0 {
  margin-top: 0 !important
}
.yel__box {
  background: #FFFADE;
  padding: 35px 45px;
  margin-top: 50px;
}
@media screen and (max-width:1100px) {
  .btn__item {
    width: 100%;
  }
  .btn__item.icon_hp a, .btn__item.icon_map a, .btn__item.icon_kanja a, .btn__item.icon_hospital a, .btn__item.icon_bus a, .btn__item.icon_car a, .btn__item.icon_holiday a {
    display: block;
    width: 100%;
  }
  .yel__box {
    padding: 30px;
    margin-top: 30px;
  }
  iframe {
    max-height: 280px;
  }
}
/*  */
@media screen and (max-width:1100px) {}
/*  */
@media screen and (max-width:1100px) {}
/*  */
@media screen and (max-width:1100px) {}
/*  */
@media screen and (max-width:1100px) {}