@charset "UTF-8";
/* 読み込みfont
Montserrat Alternates

font-family: "montserrat", sans-serif;
font-weight: 600;
font-style: normal;
*/
/*** Main ***/
html {
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 767px) {
  html.large {
    font-size: 3.5vw;
  }
  html,
  html.small {
    font-size: inherit;
  }
}
body {
  background-color: #fff;
  color: #000000;
  font-weight: 500;
  font-style: normal;
  position: relative;
  margin: 0;
  padding: 0;
  line-height: 2;
  font-size: clamp(0.875rem, 0.6801321138rem + 0.406504065vw, 1rem);
}
body.noscroll {
  overflow: hidden;
}

ul,
ol {
  list-style: none;
}

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

a {
  color: #000;
  transition: opacity 0.5s ease-in-out;
}

a:hover {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

p {
  margin-block-start: 0;
  margin-block-end: 0;
  font-size: clamp(0.875rem, 0.6801321138rem + 0.406504065vw, 1rem);
}

main {
  width: 100vw;
  position: relative;
}

.contents {
  margin: 0 auto;
  width: 100%;
  max-width: 1280px;
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
}
.contents.singleBox {
  position: relative;
}
@media screen and (max-width: 1100px) {
  .contents {
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
  }
}

@media screen and (min-width: 1280px), print {
  .pc {
    display: block;
  }
}
@media screen and (max-width: 1100px) {
  .pc {
    display: none;
  }
}
@media screen and (max-width: 767px), print {
  .pc {
    display: none;
  }
}

@media screen and (min-width: 1280px), print {
  .tablet {
    display: none;
  }
}
@media screen and (max-width: 1100px) {
  .tablet {
    display: block;
  }
}
@media screen and (max-width: 767px), print {
  .tablet {
    display: block;
  }
}

@media screen and (min-width: 1280px), print {
  .sm {
    display: none;
  }
}
@media screen and (max-width: 1100px) {
  .sm {
    display: none;
  }
}
@media screen and (max-width: 767px), print {
  .sm {
    display: block;
  }
}

@media screen and (min-width: 1280px), print {
  .pc-tab {
    display: block;
  }
}
@media screen and (max-width: 1100px) {
  .pc-tab {
    display: block;
  }
}
@media screen and (max-width: 767px), print {
  .pc-tab {
    display: none;
  }
}

@media screen and (min-width: 1280px), print {
  .sm-tab {
    display: none;
  }
}
@media screen and (max-width: 1100px) {
  .sm-tab {
    display: block;
  }
}
@media screen and (max-width: 767px), print {
  .sm-tab {
    display: block;
  }
}

/*** 汎用 ***/
img.icon {
  margin-right: 10px;
}

.marginTop {
  margin-top: 50px;
}
.marginTop.more {
  margin-top: 80px;
}

.btnMore {
  margin-top: 20px;
  margin-bottom: 20px;
  width: auto;
  display: inline-block;
  position: relative;
}
.btnMore a {
  font-size: clamp(0.875rem, 0.6801321138rem + 0.406504065vw, 1rem);
  min-width: 250px;
  min-height: 55px;
  color: #fff;
  background-color: #264666;
  line-height: 1;
  text-decoration: none;
  border-radius: 50px;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.5s ease all;
}
.btnMore a:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  background-image: url(../img/icon_arrow_line.svg);
  width: 14px;
  height: 8px;
  transition: 0.5s ease;
}
.btnMore a:hover {
  opacity: inherit;
  background-color: #2DAFDE;
}
.btnMore a:hover:after {
  right: 0.8rem;
}

.btnTxt {
  font-size: clamp(0.875rem, 0.6801321138rem + 0.406504065vw, 1rem);
  min-width: 250px;
  min-height: 55px;
  background-color: #fff;
  color: #000000;
  line-height: 1;
  text-decoration: none;
  border-radius: 50px;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.5s ease all;
}
.btnTxt:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  background-image: url(../img/icon_arrow_line_b.svg);
  width: 14px;
  height: 8px;
  transition: 0.5s ease;
}

.flexBox {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
.flexBox .txt {
  width: calc(100% - 340px);
  margin: 0;
}
.flexBox .img {
  width: 300px;
  margin-left: 40px;
}
.flexBox .img img {
  width: 100%;
}
.flexBox .img.left {
  margin-right: 40px;
  margin-left: 0;
}
.flexBox .half {
  width: 50%;
}
@media screen and (max-width: 767px), print {
  .flexBox {
    flex-wrap: wrap;
    flex-direction: column;
  }
  .flexBox .txt {
    width: 100%;
  }
  .flexBox .img {
    margin: 0 auto;
    text-align: center;
  }
}
@media screen and (max-width: 767px), print {
  .flexBox .img {
    width: auto;
  }
}

.txtCenter {
  text-align: center;
  margin: 0 auto;
}

a.phoneLink {
  pointer-events: none;
  cursor: default;
}
@media screen and (max-width: 1100px) {
  a.phoneLink {
    pointer-events: auto;
    cursor: pointer;
  }
}

/*** Header ***/
header {
  width: 100vw;
  height: 150px;
  position: relative;
  z-index: 100;
}
header .btn {
  display: none;
}
header .headerInner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  padding: 0 15px;
}
header .headerInner .headerRight {
  width: calc(100vw - 340px);
  height: 100px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
header .headerInner .logo {
  width: auto;
  max-height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .headerInner .logo img {
  height: 100%;
  max-height: 60px;
  width: auto;
}
header .headerInner .logo .sublogo {
  background-color: #264666;
  color: #fff;
  border-radius: 20px;
  font-size: clamp(0.625rem, 0.4301321138rem + 0.406504065vw, 0.75rem);
  line-height: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  padding-top: 5px;
  padding-bottom: 5px;
  margin: 0;
  margin-bottom: 5px;
}
header .headerInner a {
  text-decoration: none;
}
header .subNav {
  height: 80px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  box-sizing: border-box;
  /* 検索機能を持つリスト項目のためのスタイル */
  /* 検索フォームエリアのスタイル */
}
header .subNav ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: clamp(0.75rem, 0.3602642276rem + 0.8130081301vw, 1rem);
  line-height: 1;
}
header .subNav ul li {
  padding-left: 0.5rem;
}
header .subNav ul li img {
  margin-right: 0.2rem;
}
header .subNav ul li.webBtn a {
  background-color: #E2506B;
  border-radius: 30px;
  height: 60px;
  padding: 0 1.5rem;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  font-size: clamp(0.75rem, 0.5551321138rem + 0.406504065vw, 0.875rem);
  transition: 0.5s;
  line-height: 1.3;
  cursor: pointer;
}
header .subNav ul li.webBtn:hover a {
  opacity: 1;
  background-color: #264666;
}
header .subNav .search-menu-item {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
header .subNav .search-form-area {
  display: none;
  width: 250px;
}
header .subNav .search-form-area form {
  display: flex;
  gap: 5px; /* 要素間の隙間 */
}
header .subNav .search-form-area input[type=search] {
  flex-grow: 1;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}
header .subNav .search-form-area button[type=submit] {
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-size: 14px;
}
header .subNav .search-form-area button[type=submit]:hover {
  color: #DFF6FF;
}
header .subNav dl {
  height: 80px;
  background-color: #264666;
  color: #fff;
  margin-left: 10px;
  border-radius: 0 0 15px 15px;
  padding: 5px 10px;
  box-sizing: border-box;
  line-height: 1.2;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
header .subNav dl dt {
  font-size: clamp(0.6875rem, 0.4926321138rem + 0.406504065vw, 0.8125rem);
  font-weight: 200;
}
header .subNav dl dd strong {
  font-size: clamp(1rem, 0.4153963415rem + 1.2195121951vw, 1.375rem);
  font-weight: 700;
}
header .subNav dl dd p {
  font-size: clamp(0.5rem, 0.2076981707rem + 0.6097560976vw, 0.6875rem);
  font-weight: 200;
}
header .subNav dl dd a {
  color: #fff;
}
header .mainNav {
  height: 50px;
  width: 100%;
  padding: 0 15px;
  box-sizing: border-box;
}
header .mainNav .nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  font-size: clamp(1rem, 0.8051321138rem + 0.406504065vw, 1.125rem);
  height: 50px;
}
header .mainNav .nav li {
  height: 50px;
  display: flex;
  align-items: center;
  transition: all 0.5s ease-in;
}
header .mainNav .nav li:hover {
  cursor: pointer;
}
header .mainNav .nav li a {
  color: #000000;
  text-decoration: none;
}
header .mainNav .nav li:first-child {
  margin-left: 0;
}
header .mainNav .nav li.sub {
  margin-left: 0;
}
header .mainNav .nav li.sub span {
  display: flex;
  align-items: center;
}
header .mainNav .nav li.sub span::before {
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background-color: #333;
  margin-left: -1.5em;
  margin-right: 1.5em;
}
header .mainNav .nav li.webBtn a {
  background-color: #E2506B;
  border-radius: 30px;
  height: 60px;
  padding: 1rem;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
header .mainNav .nav li.webBtn a .icon {
  width: 24px;
}
header .mainNav .nav li.webBtn:hover a {
  opacity: 0.5;
}
header .mainNav .nav .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50vw);
  z-index: 100;
  width: 100vw;
  padding: 20px;
  background: #6ECFF2;
  background-color: #fff;
  box-shadow: 0px 4px 7px -2px rgba(0, 0, 0, 0.45);
  line-height: 1.6;
  padding-top: 20px;
  transition: display 0.5s;
}
header .mainNav .nav .dropdown:before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  background: transparent;
}
header .mainNav .nav li:hover .dropdown,
header .mainNav .nav .dropdown:hover {
  display: block;
}
header .mainNav .nav .dropdown:before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
}
header .mainNav .nav .dropdownInner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
}
header .mainNav .nav .dropdownTitle {
  flex: 1;
  min-width: 100px;
  border-right: 1px solid #ddd;
  padding-right: 40px;
  text-align: right;
  font-weight: 700;
  font-size: clamp(1rem, 0.6102642276rem + 0.8130081301vw, 1.25rem);
  color: #264666;
}
header .mainNav .nav .dropdownTitle a {
  display: block;
}
header .mainNav .nav .dropdownLinks {
  flex: 5;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px 15px;
}
header .mainNav .nav .dropdownLinks li {
  margin-left: 10px !important;
  margin-right: 1rem;
  height: inherit;
}
header .mainNav .nav .dropdownLinks li:before {
  content: "";
  display: inline-block;
  position: relative;
  top: 0;
  left: -10px;
  background: url(../../assets/img/common/ico-arr.png) no-repeat left center;
  width: 15px;
  height: 15px;
}
header .mainNav .nav .dropdownLinks li.break {
  flex: 0 0 100%;
  height: 0;
  padding: 0;
  margin: 10px 0;
  border-bottom: 1px solid #ccc;
  position: relative;
  text-align: center;
  margin-left: 0 !important;
}
header .mainNav .nav .dropdownLinks li.break:before {
  content: none;
}
header .slideMenu {
  position: fixed;
  z-index: 5;
  top: 0px;
  left: 0;
  color: #fff;
  background: rgb(237, 237, 237);
  background-color: #fff;
  width: 100%;
  display: none;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  height: 100%;
}
header .slideMenu.active {
  display: block;
  opacity: 100;
}
@media screen and (max-width: 1260px) {
  header {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
  header .headerInner {
    padding: 0;
  }
  header .headerInner .headerRight {
    width: calc(100% - 230px);
  }
  header .headerInner .logo {
    width: 220px;
  }
  header .headerInner .logo img {
    width: 100%;
  }
  header .mainNav .nav {
    font-size: 1rem;
    flex-wrap: nowrap;
  }
  header .mainNav .nav > li {
    flex-shrink: 0;
    flex-basis: auto;
    white-space: nowrap;
  }
  header .mainNav .nav > li.sub {
    font-size: 0.9rem;
  }
  header .subNav ul {
    font-size: 0.85rem;
  }
}
@media screen and (max-width: 1060px) {
  header {
    height: 100px;
  }
  header .btn {
    display: block;
  }
  header .headerInner {
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  header .headerInner .headerRight {
    width: 74px;
    height: 100px;
    margin-left: 1rem;
  }
  header .mainNav,
  header .subNav {
    display: none;
  }
  header .slideMenu {
    width: 100%;
    height: 100vh;
    margin-top: 100px;
    padding-bottom: 100px;
  }
  header .slideMenu ul.slideMain {
    background-color: #F4F2EB;
  }
  header .slideMenu ul.slideMain a {
    text-decoration: none;
    width: 100%;
    display: block;
    padding: 1rem;
    line-height: 1.6;
    position: relative;
    cursor: pointer;
  }
  header .slideMenu ul.slideMain li {
    cursor: pointer;
    border-bottom: 1px solid #B7B5B4;
    position: relative;
    z-index: 1;
    font-size: 1rem;
  }
  header .slideMenu ul.slideMain li.children {
    position: relative;
    font-size: 1.3rem;
  }
  header .slideMenu ul.slideMain li.children:after {
    content: "+";
    display: inline-block;
    position: absolute;
    right: 16px;
    top: 0.8rem;
    font-size: 2rem;
    color: #264666;
    line-height: 1;
  }
  header .slideMenu ul.slideMain li.children.open {
    border-bottom: none;
  }
  header .slideMenu ul.slideMain li.children.open:after {
    content: "-";
    right: 18px;
    top: 0.4rem;
    font-size: 2.5rem;
    color: #264666;
  }
  header .slideMenu ul.slideMain li.children.open ul.dropdownLinks {
    display: block;
  }
  header .slideMenu ul.slideMain li.children a {
    display: block;
    width: auto;
  }
  header .slideMenu ul.slideMain li.children ul.dropdownLinks {
    display: none;
    background-color: #fff;
    padding: 0 1rem;
  }
  header .slideMenu ul.slideMain li.children ul.dropdownLinks li:last-of-type {
    border: none;
  }
  header .slideMenu ul.slideMain li.children ul.dropdownLinks li.break {
    height: 1rem;
    background-color: #B7B5B4;
  }
  header .slideMenu ul.slideMain li.sub {
    font-size: 1.1rem;
  }
  header .slideMenu ul.slideMain li.flexinner {
    display: flex;
    justify-content: center;
    align-items: stretch;
    border-top: 1px solid #B7B5B4;
    background-color: #DFF6FF;
  }
  header .slideMenu ul.slideMain li.flexinner a {
    width: 50%;
    box-sizing: border-box;
    text-align: center;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  header .slideMenu ul.slideMain li.flexinner a:first-child {
    border-right: 1px solid #2DAFDE;
  }
  header .slideMenu ul.slideMain li.txt {
    background-color: #264666;
    font-size: 1.3rem;
    font-weight: 700;
  }
  header .slideMenu ul.slideMain li.txt a {
    color: #fff;
    text-align: center;
  }
  header .slideMenu ul.slideMain li.txt a span {
    font-size: 1rem;
    padding-right: 1rem;
  }
  header .slideMenu ul.slideMain li.search-menu-item {
    padding-left: 1rem;
    padding-right: 1rem;
    background-color: #DFF6FF;
  }
  header .slideMenu ul.slideMain li.search-menu-item .search-form-sm {
    display: block;
    padding: 1rem 0;
  }
  header .slideMenu ul.slideMain li.search-menu-item .search-form-sm form {
    display: flex;
    gap: 5px;
    align-items: center;
  }
  header .slideMenu ul.slideMain li.search-menu-item .search-form-sm input[type=search] {
    flex-grow: 1; /* 入力フィールドを可能な限り広げる */
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 20px;
    line-height: 1;
    background-color: #fff;
  }
  header .slideMenu ul.slideMain li.search-menu-item .search-form-sm button[type=submit] {
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0; /* デフォルトのパディングをリセット */
    display: flex; /* アイコンの位置調整のため */
    align-items: center;
    justify-content: center;
  }
  header .slideMenu ul.slideMain li.search-menu-item .search-form-sm button[type=submit] img {
    width: 24px; /* 検索アイコンのサイズ調整 */
    height: 24px;
  }
  header .btn,
  header .btn span {
    transition: all 0.4s;
    box-sizing: border-box;
  }
  header .btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 74px;
    height: 74px;
    z-index: 6;
    background-color: #264666;
  }
  header .btn span {
    position: absolute;
    right: 12px;
    margin: auto;
    width: 50px;
    height: 3px;
    border-radius: 4px;
    background-color: #fff;
    z-index: 10;
  }
  header .btn span:nth-of-type(1) {
    top: 25%;
  }
  header .btn span:nth-of-type(2) {
    top: 40%;
  }
  header .btn span:nth-of-type(3) {
    top: 55%;
  }
  header .btn span:nth-of-type(4) {
    bottom: 25%;
    color: #fff;
    font-size: 12px;
    text-align: center;
    border: none;
    background-color: inherit;
    line-height: 1;
  }
  header .btn.on {
    position: fixed;
  }
  header .btn.on span:nth-of-type(1) {
    top: 40%;
    transform: rotate(45deg);
  }
  header .btn.on span:nth-of-type(2) {
    opacity: 0;
  }
  header .btn.on span:nth-of-type(3) {
    top: 40%;
    transform: rotate(-45deg);
  }
}

/*** Footer ***/
footer {
  background-image: url(../img/footer_img.png);
  background-size: cover;
  background-position: bottom 50px center;
  background-repeat: no-repeat;
  border: none;
  padding: 0;
}
footer .footerBox {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding-bottom: 100px;
}
footer .footerBox .address {
  width: 380px;
  margin-right: 40px;
}
footer .footerBox .address p {
  font-size: clamp(0.875rem, 0.875rem + 0vw, 0.875rem);
  line-height: 1.6;
}
footer .footerBox .address p.strong {
  line-height: 1.3;
  margin-bottom: 5px;
}
footer .footerBox .address img.icon {
  margin-left: 10px;
  margin-right: 0;
}
footer .footerBox .address .footerLogo {
  margin-bottom: 2rem;
}
footer .footerBox .address .footerLogo img {
  max-width: 360px;
  height: auto;
}
footer .footerBox .address .btnMore {
  display: block;
}
footer .footerBox .address .btnMore a {
  width: 100%;
  background-color: #E2506B;
  position: relative;
  transition: background-color 0.5s;
  cursor: pointer;
}
footer .footerBox .address .btnMore a:after {
  background-image: url(../img/icon_reserve.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 25px;
  height: 26px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2rem;
}
footer .footerBox .address .btnMore a:hover {
  background-color: #264666;
}
footer .footerBox .aboutTel {
  width: 400px;
  background-color: #fff;
  border-radius: 15px;
  position: relative;
}
footer .footerBox .aboutTel:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #2DAFDE;
  width: 100%;
  height: 10px;
  border-radius: 15px 15px 0 0;
}
footer .footerBox .aboutTel .inner {
  padding: 2rem 2rem 1rem;
  text-align: center;
  font-weight: 600;
}
footer .footerBox .aboutTel .inner .tel {
  font-weight: 900;
  font-size: clamp(1.875rem, 1.2903963415rem + 1.2195121951vw, 2.25rem);
  line-height: 1.4;
}
footer .footerBox .aboutTel .inner .tel img {
  width: 30px;
  height: 30px;
}
footer .footerBox .aboutTel dl {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-left: 1rem;
  margin-right: 1rem;
  padding: 1.5rem 0 1rem;
  border-top: 2px solid #E4E4E4;
}
footer .footerBox .aboutTel dl dt {
  background-color: #264666;
  margin-left: 1rem;
  width: 70px;
  font-size: clamp(0.5rem, 0.2076981707rem + 0.6097560976vw, 0.6875rem);
  border-radius: 8px;
  text-align: center;
  color: #fff;
  box-sizing: border-box;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .footerBox .aboutTel dl dd {
  font-size: clamp(0.625rem, 0.4301321138rem + 0.406504065vw, 0.75rem);
  width: calc(100% - 100px);
}
footer .footerNav {
  display: flex;
  width: calc(100% - 820px);
}
footer .footerNav ul {
  width: 50%;
}
footer .footerNav ul a {
  text-decoration: none;
  width: 100%;
  display: block;
  position: relative;
  cursor: pointer;
}
footer .footerNav ul li {
  width: 100%;
  margin-bottom: 0.5rem;
  font-weight: 700;
  font-size: clamp(1rem, 0.8051321138rem + 0.406504065vw, 1.125rem);
  position: relative;
  padding-left: 30px;
  box-sizing: border-box;
}
footer .footerNav ul li:after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 8px;
  top: 16px;
  background: url(../img/icon_arrow.svg) no-repeat;
  width: 7px;
  height: 8px;
  z-index: 1;
}
footer .footerNav ul li:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 10px;
  width: 20px;
  height: 20px;
  background-color: #2DAFDE;
  border-radius: 50%;
}
footer .footerNav ul li.sub {
  padding-left: 1rem;
  margin: 0;
  font-size: clamp(0.75rem, 0.5551321138rem + 0.406504065vw, 0.875rem);
  font-weight: 400;
}
footer .footerNav ul li.sub:before {
  content: none;
}
footer .footerNav ul li.sub:after {
  content: ">";
  background: none;
  left: 0;
  top: 0;
  color: #2DAFDE;
}
footer .fiexdLinkBox {
  display: none;
}
@media screen and (max-width: 1300px) {
  footer {
    padding: 1rem 0 0;
  }
  footer .footerBox {
    flex-wrap: wrap;
    justify-content: center;
  }
  footer .footerBox .footerNav {
    width: 400px;
  }
  footer .footerBox .footerNav ul {
    height: auto;
  }
  footer .footerNav ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: wrap;
    height: 530px;
  }
  footer .footerNav ul a {
    text-decoration: none;
    width: 100%;
    display: block;
    position: relative;
    cursor: pointer;
  }
  footer .footerNav ul li {
    width: auto;
    min-width: 250px;
  }
}
@media screen and (max-width: 1100px) {
  footer {
    background-position: bottom 0 center;
  }
  footer .footerBox {
    flex-direction: column;
  }
  footer .footerBox.contents {
    padding: 50px;
  }
  footer .footerBox .address {
    width: calc(100% - 40px);
    margin: 0 auto 80px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  footer .footerBox .address .footerLogo {
    margin-right: 2rem;
  }
  footer .footerBox .address .btnMore {
    display: none;
  }
  footer .footerBox .aboutTel {
    display: none;
  }
  footer .footerNav {
    display: none;
  }
  footer .fiexdLinkBox {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 80px;
    box-sizing: border-box;
    z-index: 10;
  }
  footer .fiexdLinkBox.absolute {
    position: absolute;
  }
  footer .fiexdLinkBox a {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #fff;
    line-height: 1.4;
    cursor: pointer;
  }
  footer .fiexdLinkBox a img {
    height: 25px;
  }
  footer .fiexdLinkBox a .txtL {
    font-size: 1.5rem;
    font-weight: 700;
  }
  footer .fiexdLinkBox .webLink {
    background-color: #E2506B;
    flex-direction: row;
    font-size: 1.2rem;
  }
  footer .fiexdLinkBox .webLink span {
    text-align: center;
    font-weight: 700;
  }
  footer .fiexdLinkBox .phoneLink {
    background-color: #2DAFDE;
    flex-direction: column;
  }
}
@media screen and (max-width: 767px), print {
  footer .footerBox .address {
    flex-direction: column;
    margin: 0 auto 80px;
  }
  footer .footerBox .address .footerLogo {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  footer .footerBox .address .footerLogo img {
    max-width: 100%;
  }
}
@media screen and (max-width: 500px) {
  footer .fiexdLinkBox a .txtL {
    font-size: 5vw;
  }
  footer .fiexdLinkBox .webLink {
    font-size: 4vw;
  }
}

.copyright {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #264666;
  color: #fff;
  font-size: clamp(0.75rem, 0.5551321138rem + 0.406504065vw, 0.875rem);
  text-align: center;
}
@media screen and (max-width: 1100px) {
  .copyright {
    height: 50px;
  }
}

.pagetop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.pagetop.active {
  opacity: 1;
  visibility: visible;
}

#bnav {
  margin-bottom: 50px;
}
@media screen and (max-width: 1100px) {
  #bnav {
    margin-bottom: 0;
  }
}

/*** Front-page ***/
.index {
  margin-bottom: 100px;
}
.index h2 {
  font-size: clamp(1.875rem, 0.5109247967rem + 2.8455284553vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.index span.subTitle {
  display: block;
  font-size: clamp(1rem, 0.4153963415rem + 1.2195121951vw, 1.375rem);
  font-family: "montserrat", sans-serif;
  font-weight: 600;
  color: #2DAFDE;
}
@media screen and (max-width: 1100px) {
  .index {
    margin-bottom: 20px;
  }
  .index h2 {
    margin-bottom: 1.5rem;
  }
}

.topMainimg {
  width: calc(100% - 40px);
  margin: 0 auto;
  margin-bottom: 40px;
}
.topMainimg .topTopics {
  max-width: 800px;
  position: absolute;
  top: 20px;
  left: 40px;
  z-index: 51;
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: #fff;
  border-radius: 10px 10px;
  padding: 1rem;
}
.topMainimg .topTopics dt {
  flex: 1;
  min-width: 120px;
  text-align: center;
  color: #264666;
}
.topMainimg .topTopics dd {
  flex: 5;
  border-left: 1px solid #264666;
  padding-left: 1rem;
  padding-right: 40px;
  margin-left: 1rem;
  position: relative;
}
.topMainimg .topTopics dd:before {
  content: "";
  display: inline-block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #264666;
  border-radius: 50%;
  width: 25px;
  height: 25px;
}
.topMainimg .topTopics dd:after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 0.3rem;
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/icon_arrow.svg) no-repeat;
  width: 9px;
  height: 8px;
}
.topMainimg .topTopics dd a {
  color: #264666;
  text-decoration: underline;
}
.topMainimg .slideShow {
  display: flex;
  align-items: stretch;
  gap: 10px;
}
.topMainimg > .slider-main-container, .topMainimg > .bx-wrapper {
  min-height: 0;
}
.topMainimg .boxslider li a {
  display: block;
}
.topMainimg .bxslider li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}
.topMainimg .slider-main-container {
  width: 75%;
  position: relative;
  overflow: hidden;
}
.topMainimg .slider-main-container h1 {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 51;
  font-size: clamp(1.25rem, 0.2756605691rem + 2.0325203252vw, 1.875rem);
  color: #fff;
  line-height: 1.5;
  text-shadow: 0px -1px 3px rgba(0, 0, 0, 0.6);
  max-width: calc(100% - 40px);
}
.topMainimg .slider-main-container h1 em {
  font-style: normal;
  font-size: clamp(1.875rem, 1.0955284553rem + 1.6260162602vw, 2.375rem);
}
.topMainimg .slider-main-container h1 .caution {
  font-size: clamp(0.875rem, 0.4852642276rem + 0.8130081301vw, 1.125rem);
}
.topMainimg .slider-main-container .bx-wrapper,
.topMainimg .slider-main-container .bx-viewport,
.topMainimg .slider-main-container .bxslider,
.topMainimg .slider-main-container .bxslider li {
  height: 100% !important;
}
.topMainimg .bx-wrapper {
  border: none;
  box-shadow: none;
  background: transparent;
  margin-bottom: 0;
}
.topMainimg #bx-pager {
  width: 25%;
  overflow-y: auto;
}
.topMainimg #bx-pager a {
  display: block;
  margin-bottom: 10px;
  opacity: 0.5;
  transition: opacity 0.3s;
  border: 2px solid transparent;
}
.topMainimg #bx-pager a:last-child {
  margin-bottom: 0;
}
.topMainimg #bx-pager a.active {
  opacity: 1;
}
.topMainimg #bx-pager img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}
@media screen and (max-width: 1100px) {
  .topMainimg {
    margin-bottom: 0;
    display: flex;
    flex-direction: column-reverse;
  }
  .topMainimg .topTopics {
    position: static;
    max-width: 100%;
    margin-bottom: 1rem;
    left: 20px;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.35);
  }
  .topMainimg .topTopics dt {
    min-width: none;
  }
  .topMainimg .topTopics dd {
    position: relative;
    padding-left: 0.5rem;
    margin-left: 0;
  }
  .topMainimg .slideShow {
    flex-direction: column;
  }
  .topMainimg .slideShow > .slider-main-container {
    width: 100%;
    height: 400px;
  }
  .topMainimg .slideShow > .slider-main-container h1 {
    left: 10px;
    bottom: 10px;
    font-size: clamp(0.875rem, -0.4890752033rem + 2.8455284553vw, 1.75rem);
    max-width: calc(100% - 20px);
  }
  .topMainimg .slideShow > .slider-main-container h1 em {
    font-style: normal;
    font-size: clamp(1.25rem, 0.0807926829rem + 2.4390243902vw, 2rem);
  }
  .topMainimg .slideShow > .slider-main-container h1 .caution {
    font-size: clamp(0.75rem, 0.3602642276rem + 0.8130081301vw, 1rem);
  }
  .topMainimg #bx-pager {
    width: 100%;
    overflow-y: visible;
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  .topMainimg #bx-pager a {
    width: 33.3333333333%;
  }
}
@media screen and (max-width: 767px), print {
  .topMainimg .topTopics {
    flex-direction: column;
    align-items: flex-start;
  }
  .topMainimg .topTopics dt {
    min-width: inherit;
    width: 100%;
    text-align: left;
  }
  .topMainimg .topTopics dd {
    flex: 1;
    border-left: none;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    border-top: 1px solid #264666;
    padding-top: 0.5rem;
    margin-top: 0.5rem;
    width: 100%;
  }
  .topMainimg .topTopics dd:before, .topMainimg .topTopics dd:after {
    content: none;
    transform: translateY(-40%);
  }
  .topMainimg .slideShow > .slider-main-container {
    width: 100%;
    height: 250px;
  }
}

.topNotice {
  width: 1260px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  margin-bottom: 50px;
}
.topNotice dt {
  flex: 1;
  background-color: #D34848;
  border-radius: 10px 0 0 10px;
  text-align: center;
  color: #fff;
  padding: 1rem;
}
.topNotice dd {
  flex: 5;
  border-radius: 0 10px 10px 0;
  background-color: #FAE8E8;
  padding: 1rem;
}
.topNotice dd a {
  color: #D34848;
  text-decoration: underline;
}
@media screen and (max-width: 1260px) {
  .topNotice {
    width: 100%;
  }
  .topNotice dd {
    flex: 3.1;
  }
}
@media screen and (max-width: 767px), print {
  .topNotice {
    width: 100%;
    flex-direction: column;
  }
  .topNotice dt {
    width: 100%;
    flex: auto;
    border-radius: 10px 10px 0 0;
    text-align: left;
  }
  .topNotice dd {
    width: 100%;
    flex: auto;
    border-radius: 0 0 10px 10px;
  }
}

.topPatients .info {
  background-color: #DFF6FF;
  width: 100%;
  box-sizing: border-box;
  padding: 50px 0;
}
.topPatients .info ul.innerBox {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.topPatients .info ul.innerBox li {
  width: calc(50% - 15px);
  background-color: #fff;
  border-radius: 20px;
}
.topPatients .info ul.innerBox li h3 {
  border-radius: 20px 20px 0 0;
  color: #fff;
  padding: 1rem;
  text-align: center;
}
.topPatients .info ul.innerBox li .inner {
  padding: 1rem 2rem;
}
.topPatients .info ul.innerBox li.time h3 {
  background-color: #2DAFDE;
  font-size: clamp(1.5rem, 0.9153963415rem + 1.2195121951vw, 1.875rem);
  line-height: 1;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.topPatients .info ul.innerBox li.time h3 .icon {
  width: 33px;
  opacity: 0.5;
}
.topPatients .info ul.innerBox li.time dl {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.topPatients .info ul.innerBox li.time dl dt {
  width: 100px;
  background-color: #E6F0F4;
  padding: 0.5rem;
  line-height: 1;
  text-align: center;
  color: #264666;
  margin-bottom: 1rem;
  border-radius: 10px;
}
.topPatients .info ul.innerBox li.time dl dt:last-of-type {
  margin-bottom: 0;
}
.topPatients .info ul.innerBox li.time dl dd {
  width: calc(100% - 110px);
  margin-left: 10px;
  margin-bottom: 1rem;
}
.topPatients .info ul.innerBox li.time dl dd:last-of-type {
  margin-bottom: 0;
}
.topPatients .info ul.innerBox li.reserve h3 {
  background-color: #264666;
  font-size: clamp(1.5rem, 0.9153963415rem + 1.2195121951vw, 1.875rem);
  line-height: 1;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.topPatients .info ul.innerBox li.reserve h3 .icon {
  width: 30px;
  opacity: 0.5;
}
.topPatients .info ul.innerBox li.reserve .inner {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 13px;
}
.topPatients .info ul.innerBox li.reserve .inner div strong {
  font-size: clamp(1.75rem, 0.5807926829rem + 2.4390243902vw, 2.5rem);
  color: #264666;
  font-weight: 700;
}
.topPatients .info ul.innerBox li.reserve .inner div p {
  line-height: 1.6;
}
.topPatients .info ul.innerBox li.reserve .inner .btnReserve {
  width: 160px;
  background-color: #E2506B;
  border-radius: 20px;
  transition: 0.5s;
}
.topPatients .info ul.innerBox li.reserve .inner .btnReserve:hover {
  background-color: #264666;
}
.topPatients .info ul.innerBox li.reserve .inner .btnReserve:hover:after {
  right: 0.8rem;
}
.topPatients .info ul.innerBox li.reserve .inner .btnReserve a {
  display: block;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.topPatients .info ul.innerBox li.reserve .inner .btnReserve a:hover {
  opacity: inherit;
}
@media screen and (max-width: 1260px) {
  .topPatients .topNotice {
    width: 100%;
    padding: 0 1rem;
  }
  .topPatients .topNotice dd {
    flex: 4;
  }
  .topPatients .info {
    padding-bottom: 30px;
  }
  .topPatients .info ul.innerBox li.reserve .inner {
    justify-content: center;
    align-items: center;
  }
  .topPatients .info ul.innerBox li.reserve .inner .btnReserve {
    height: auto;
    padding-top: 10px;
    padding-bottom: 5px;
  }
}
@media screen and (max-width: 1100px) {
  .topPatients .info ul.innerBox {
    flex-direction: column;
  }
  .topPatients .info ul.innerBox li {
    width: 100%;
  }
  .topPatients .info ul.innerBox li.time {
    margin-bottom: 2rem;
  }
  .topPatients .info ul.innerBox li.time dl dt {
    width: 120px;
  }
  .topPatients .info ul.innerBox li.time dl dd {
    width: calc(100% - 130px);
  }
}
@media screen and (max-width: 767px), print {
  .topPatients .topNotice {
    width: 100%;
    flex-direction: column;
    padding: 0 1rem;
  }
  .topPatients .topNotice dt {
    width: 100%;
    flex: auto;
    border-radius: 10px 10px 0 0;
    text-align: left;
  }
  .topPatients .topNotice dd {
    width: 100%;
    flex: auto;
    border-radius: 0 0 10px 10px;
  }
  .topPatients .info ul.innerBox li.reserve .inner {
    align-items: center;
    flex-direction: column;
  }
  .topPatients .info ul.innerBox li.reserve .inner .btnReserve {
    padding-top: 10px;
    padding-bottom: 5px;
  }
}

.topLinkbtn {
  margin-top: 0;
  margin-bottom: 40px;
}
.topLinkbtn.noimg ul li a {
  padding-left: 1rem;
}
.topLinkbtn h2 {
  text-align: center;
}
.topLinkbtn .subTitle {
  text-align: center;
}
.topLinkbtn ul {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  flex-wrap: wrap;
  margin: 0 auto;
  gap: 15px 10px;
}
.topLinkbtn ul li {
  width: calc(25% - 7.5px);
  min-height: 100px;
}
.topLinkbtn ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 1rem;
  padding-right: 50px;
  padding-left: 50px;
  text-align: center;
  line-height: 1.4;
  border-radius: 15px;
  background-color: #F4F2EB;
  border: 1px solid #D9DACA;
  position: relative;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.topLinkbtn ul li a:before {
  content: "";
  display: inline-block;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background-color: #D9DACA;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  transition: background-color 0.3s ease;
}
.topLinkbtn ul li a:after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 1.3rem;
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/icon_arrow.svg) no-repeat;
  width: 9px;
  height: 8px;
}
.topLinkbtn ul li a:hover {
  border-color: #2DAFDE;
  color: #2DAFDE;
  opacity: 1;
}
.topLinkbtn ul li a:hover:before {
  background-color: #2DAFDE;
}
.topLinkbtn ul li a h3 {
  font-size: clamp(0.875rem, 0.4852642276rem + 0.8130081301vw, 1.125rem);
  font-weight: 700;
}
.topLinkbtn ul li a img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 1rem;
}
.topLinkbtn ul li.pdf a {
  padding-right: 60px;
}
.topLinkbtn ul li.pdf a:before {
  content: none;
}
.topLinkbtn ul li.pdf a:after {
  right: 1rem;
  mask-image: url(../img/icon_pdf.svg);
  mask-size: cover;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #D9DACA;
  transition: background-color 0.3s ease;
  width: 41px;
  height: 41px;
}
.topLinkbtn ul li.pdf a:hover::after {
  background-color: #2DAFDE;
}
.topLinkbtn ul.txtLeft li a {
  text-align: left;
  align-items: flex-start;
}
@media screen and (max-width: 1100px) {
  .topLinkbtn {
    margin-bottom: 40px;
    padding: 1rem;
  }
  .topLinkbtn.noimg ul li a {
    padding: 0 3rem 0 1rem;
  }
  .topLinkbtn ul li {
    width: calc(33% - 4.5px);
  }
  .topLinkbtn ul li a {
    padding: 1rem 3rem 0 1rem;
  }
  .topLinkbtn ul li a img {
    position: relative;
    top: -10px;
    left: 0;
    transform: none;
    height: 35px;
  }
  .topLinkbtn ul li.pdf a {
    padding-right: 60px;
  }
}
@media screen and (max-width: 767px), print {
  .topLinkbtn ul li {
    width: calc(50% - 5px);
  }
}

:root {
  --color-all: #2DAFDE;
  --color-patient: #5CB878;
  --color-medical: #285D92;
  --color-event: #E57A42;
  --color-recruit: #E88D9C;
  --color-procure: #D34848;
}

.topNews {
  background-color: #DFF6FF;
  width: 100%;
  height: auto;
  padding-bottom: 40px;
}
.topNews .titleBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topNews .inner {
  background-color: #fff;
  border-radius: 20px;
  padding: 2rem;
  /* カテゴリーごとの色分け */
  /* 各タブのスタイル */
}
.topNews .inner .tab_list {
  display: flex;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
  border-bottom: 2px solid #2DAFDE;
}
.topNews .inner .cat_patient {
  background-color: var(--color-patient);
}
.topNews .inner .cat_medical {
  background-color: var(--color-medical);
}
.topNews .inner .cat_event {
  background-color: var(--color-event);
}
.topNews .inner .cat_recruit {
  background-color: var(--color-recruit);
}
.topNews .inner .cat_procure {
  background-color: var(--color-procure);
}
.topNews .inner .tab_item[data-category=all] {
  color: var(--color-all);
}
.topNews .inner .tab_item[data-category=all]:hover, .topNews .inner .tab_item[data-category=all].active {
  background-color: #2dafde;
  color: #fff;
}
.topNews .inner .tab_item[data-category=patient] {
  color: var(--color-patient);
}
.topNews .inner .tab_item[data-category=patient]:hover, .topNews .inner .tab_item[data-category=patient].active {
  background-color: rgba(92, 184, 120, 0.2);
}
.topNews .inner .tab_item[data-category=medical] {
  color: var(--color-medical);
}
.topNews .inner .tab_item[data-category=medical]:hover, .topNews .inner .tab_item[data-category=medical].active {
  background-color: rgba(40, 93, 146, 0.2);
}
.topNews .inner .tab_item[data-category=event] {
  color: var(--color-event);
}
.topNews .inner .tab_item[data-category=event]:hover, .topNews .inner .tab_item[data-category=event].active {
  background-color: rgba(229, 122, 66, 0.2);
}
.topNews .inner .tab_item[data-category=recruit] {
  color: var(--color-recruit);
}
.topNews .inner .tab_item[data-category=recruit]:hover, .topNews .inner .tab_item[data-category=recruit].active {
  background-color: rgba(232, 141, 156, 0.2);
}
.topNews .inner .tab_item[data-category=procure] {
  color: var(--color-procure);
}
.topNews .inner .tab_item[data-category=procure]:hover, .topNews .inner .tab_item[data-category=procure].active {
  background-color: rgba(211, 72, 72, 0.2);
}
.topNews .inner .tab_item {
  flex: 1;
  text-align: center;
  padding: 10px 20px;
  border-radius: 8px 8px 0 0;
  cursor: pointer;
  transition: background-color 0.5s, color 0.5s;
}
.topNews .inner .news_list {
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}
.topNews .inner .news_list li {
  border-bottom: 1px solid #e0e0e0;
}
.topNews .inner .news_list li a {
  display: block;
  padding: 16px 8px;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.5s;
}
.topNews .inner .news_list li a:hover {
  background-color: #f9f9f9;
}
.topNews .inner dl {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
}
.topNews .inner dl dt {
  width: 100px;
  flex-shrink: 0;
  font-size: 0.9em;
  color: #777;
}
.topNews .inner dl dd {
  flex-grow: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  position: relative;
  padding-right: 20px;
}
.topNews .inner dl dd:before {
  content: "";
  display: inline-block;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background-color: #D9DACA;
  border-radius: 50%;
  width: 25px;
  height: 25px;
}
.topNews .inner dl dd:after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 1.3rem;
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/icon_arrow.svg) no-repeat;
  width: 9px;
  height: 8px;
}
.topNews .inner .cat {
  display: inline-block;
  min-width: 100px;
  padding: 4px 10px;
  font-size: 0.8em;
  color: #fff;
  border-radius: 20px;
  flex-shrink: 0;
  text-align: center;
}
@media screen and (max-width: 1100px) {
  .topNews {
    width: auto;
    padding-top: 0;
    padding-bottom: 40px;
  }
  .topNews .inner .tab_list {
    flex-wrap: wrap;
  }
  .topNews .inner .tab_list .tab_item {
    flex: none;
  }
}
@media screen and (max-width: 767px), print {
  .topNews .titleBox {
    flex-direction: column;
  }
  .topNews .titleBox h2 {
    margin-bottom: 0;
  }
  .topNews .inner .news_list {
    margin-top: 0;
  }
  .topNews .inner .news_list li a {
    display: block;
  }
  .topNews .inner .tab_list {
    padding-bottom: 1rem;
  }
  .topNews .inner .tab_item {
    border-radius: 8px 8px;
  }
  .topNews .inner .tab_item[data-category=all] {
    color: var(--color-all);
    background-color: #2dafde;
    color: #fff;
  }
  .topNews .inner .tab_item[data-category=patient] {
    color: var(--color-patient);
    background-color: rgba(92, 184, 120, 0.2);
  }
  .topNews .inner .tab_item[data-category=medical] {
    color: var(--color-medical);
    background-color: rgba(40, 93, 146, 0.2);
  }
  .topNews .inner .tab_item[data-category=event] {
    color: var(--color-event);
    background-color: rgba(229, 122, 66, 0.2);
  }
  .topNews .inner .tab_item[data-category=recruit] {
    color: var(--color-recruit);
    background-color: rgba(232, 141, 156, 0.2);
  }
  .topNews .inner .tab_item[data-category=procure] {
    color: var(--color-procure);
    background-color: rgba(211, 72, 72, 0.2);
  }
  .topNews .inner dl {
    gap: 10px;
    margin: 0;
    flex-direction: column;
    align-items: flex-start;
  }
  .topNews .inner dl dt {
    font-size: 1em;
    color: #777;
    line-height: 1;
  }
  .topNews .inner dl dd {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0;
  }
  .topNews .inner dl dd .cat {
    min-width: 80px;
  }
  .topNews .inner dl dd .title {
    padding-right: 10px;
    font-size: 16px;
  }
  .topNews .inner dl dd:before {
    right: 0;
  }
  .topNews .inner dl dd:after {
    right: 0.3rem;
  }
}

.topMedical {
  margin-bottom: 80px;
  background: url(../img/top_forrmedical_bg.png) no-repeat;
  background-size: 100% 100%;
  background-position: bottom center;
  padding-top: 40px;
  padding-bottom: 40px;
}
.topMedical h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.topMedical span.subTitle {
  text-align: center;
  color: #fff;
}
.topMedical ul {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 0 20px;
}
.topMedical ul li {
  width: calc(25% - 15px);
  background-color: #fff;
  border-radius: 0 0 20px 20px;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.35);
}
.topMedical ul li a {
  display: block;
  text-align: center;
}
.topMedical ul li a h3 {
  font-size: clamp(1.125rem, 0.7352642276rem + 0.8130081301vw, 1.375rem);
  font-weight: 700;
  padding-top: 2rem;
  padding-bottom: 2rem;
  line-height: 1.4;
}
.topMedical ul li a img {
  width: 100%;
}
@media screen and (max-width: 1100px) {
  .topMedical {
    padding-bottom: 40px;
    padding-top: 40px;
    background-size: cover;
  }
  .topMedical ul {
    align-items: center;
    width: 80%;
  }
  .topMedical ul li {
    width: calc(50% - 10px);
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 767px), print {
  .topMedical {
    padding-bottom: 20px;
  }
  .topMedical ul {
    width: 100%;
    gap: 0 10px;
  }
}

.topNurse {
  background-image: url(../img/top_nurse_bg.png);
  background-repeat: no-repeat;
  background-position: top calc(50% - 100px) left 0;
  background-position: top calc(30% - 10px) left 0;
  background-size: 100% auto;
}
.topNurse .flexBox .inner {
  margin-left: 50px;
  margin-right: 50px;
  width: calc(50% - 100px);
}
.topNurse .imgLinks {
  display: flex;
  margin-top: 80px;
  margin-bottom: 40px;
}
.topNurse .imgLinks li {
  width: 50%;
  height: 400px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.topNurse .imgLinks li:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  transition: all 0.5s;
}
.topNurse .imgLinks li.recruit {
  background-image: url(../img/top_recruit_img.png);
}
.topNurse .imgLinks li.training {
  background-image: url(../img/top_training_img.png);
}
.topNurse .imgLinks li:hover:before {
  background-color: rgba(0, 0, 0, 0.1);
}
.topNurse .imgLinks li:hover a:hover {
  opacity: 1;
}
.topNurse .imgLinks li .txt {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}
.topNurse .imgLinks li .txt h3 {
  font-size: clamp(1.75rem, 1.1653963415rem + 1.2195121951vw, 2.125rem);
  text-align: center;
}
.topNurse .imgLinks li .txt h3 span {
  display: block;
  font-size: clamp(0.875rem, 0.4852642276rem + 0.8130081301vw, 1.125rem);
}
.topNurse .imgLinks li a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 1100px) {
  .topNurse .flexBox .inner {
    margin-left: 20px;
    margin-right: 20px;
    width: calc(50% - 40px);
  }
  .topNurse .imgLinks {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 767px), print {
  .topNurse {
    background-size: cover;
  }
  .topNurse .flexBox {
    padding: 0 20px;
  }
  .topNurse .flexBox .half {
    margin: 0 auto 1rem;
    text-align: center;
    width: auto;
  }
  .topNurse .flexBox .inner {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }
  .topNurse .flexBox .inner h2 {
    text-align: center;
  }
  .topNurse .imgLinks {
    flex-direction: column;
  }
  .topNurse .imgLinks li {
    width: 100%;
    height: 250px;
  }
  .topNurse .btnMore {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
}

.topBanner {
  border-top: 2px #E4E4E4 solid;
  padding: 0;
  margin-top: 50px;
  padding-top: 50px;
}
.topBanner ul {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  padding-left: 20px;
  padding-right: 20px;
  gap: 0 20px;
}
.topBanner ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 33.3333333333%;
  min-height: 100px;
  box-sizing: border-box;
  border: 1px solid #ABABAB;
  border-radius: 15px;
}
.topBanner ul li.noborder {
  border: none;
  padding: 0;
}
.topBanner ul li.noborder img {
  border-radius: 15px;
  padding: 0;
}
.topBanner ul li img {
  width: 100%;
  height: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media screen and (max-width: 1100px) {
  .topBanner {
    margin-top: 20px;
    padding-top: 20px;
  }
  .topBanner ul {
    padding-left: 20px;
    padding-right: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .topBanner ul li {
    width: 400px;
    min-height: 80px;
    margin-bottom: 1rem;
  }
  .topBanner ul li:first-child img {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* 下層　 *************/
#contents ul.flexrow {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
#contents ul.flexrow li {
  width: 33.3333333333%;
  transition: 0.5s ease;
}
#contents ul.flexrow li span {
  display: block;
  text-align: center;
}
#contents ul.flexrow li img {
  width: 100%;
}
#contents ul.flexrow li:hover {
  opacity: 0.5;
}
@media screen and (max-width: 767px), print {
  #contents ul.flexrow {
    flex-direction: column;
    gap: 30px 0;
  }
  #contents ul.flexrow li {
    width: 100%;
    text-align: center;
  }
  #contents ul.flexrow li img {
    width: auto;
    max-width: 280px;
  }
}

.bgGray {
  background-color: #F0F0F0;
  padding: 30px;
  margin-bottom: 3rem;
}
.bgGray dl {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  margin-top: 0.8em;
  padding-top: 0.8em;
  border-top: 1px solid #CCC;
}
.bgGray dl:first-of-type {
  border: none;
  margin: 0;
  padding: 0;
}
.bgGray dl dt {
  width: 100px;
}
.bgGray dl dd {
  width: calc(100% - 100px);
}
@media screen and (max-width: 767px), print {
  .bgGray dl {
    flex-direction: column;
  }
  .bgGray dl dt {
    width: 100%;
  }
  .bgGray dl dd {
    width: 100%;
  }
}

@media screen and (max-width: 1100px) {
  .contact-box.newstyle {
    flex-wrap: wrap;
  }
  .contact-box.newstyle .contact-box__ttl {
    width: 100%;
    padding: 1rem;
  }
  .contact-box.newstyle .contact-box__cont {
    width: 100%;
    padding: 1rem;
  }
}

/*** ポップアップ *****/
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}
.popup-overlay.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup-content {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.popup-text {
  line-height: 1.6;
  margin-bottom: 20px;
  color: #333;
}

.popup-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.popup-buttons button {
  padding: 10px 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.agree-btn {
  background-color: #264666;
  color: white;
}
.agree-btn:hover {
  background-color: #E2506B;
}

.disagree-btn {
  background-color: #6c757d;
  color: white;
}
.disagree-btn:hover {
  background-color: #5a6268;
}