@charset "UTF-8";
/*
基本的にメディアクエリはこれでスマホ後付けの形で対応
@media screen and (max-width: 767px) {}
*/
.sp-menu {
  position: fixed !important;
  z-index: 1000;
}

@media screen and (max-width: 767px) {
  .gloval-nav-wrap .global-nav {
    position: fixed !important;
    height: auto;
    inset: 60px 0 0 0;
  }
  .gloval-nav-wrap::before {
    content: "";
    width: 100%;
    height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    opacity: 0;
    transition: opacity 0.3s;
  }
  .gloval-nav-wrap.fixed::before {
    opacity: 1;
  }
}

.column-archive-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 40px;
}
@media screen and (max-width: 767px) {
  .column-archive-list {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.column-archive-list .item {
  padding: 0 !important;
  border: none !important;
}
@media screen and (max-width: 767px) {
  .column-archive-list .item {
    padding: 30px 0 0 !important;
  }
}
.column-archive-list .item a {
  display: grid;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .column-archive-list .item a {
    grid-template-columns: 70px 1fr;
  }
}
.column-archive-list .item a .img-area {
  width: auto !important;
}
.column-archive-list .item a .img-area img {
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .column-archive-list .item a .img-area img {
    aspect-ratio: auto;
  }
}
.column-archive-list .item a .txt-area {
  width: auto !important;
  padding: 0 !important;
}
@media screen and (max-width: 767px) {
  .column-archive-list .item p {
    font-size: 14px !important;
    line-height: 1.4;
  }
  .column-archive-list .item p.label {
    font-size: 14px !important;
  }
  .column-archive-list .item p.ttl {
    font-size: 18px !important;
  }
}

.js-morelist .item {
  overflow: hidden;
}
.js-morelist .item:nth-child(n+4) {
  max-height: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: max-height 0.45s ease, opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
  padding-top: 0 !important;
}

.js-morelist.is-open .item:nth-child(n+4) {
  max-height: 2000px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  padding-top: 60px !important;
}
@media screen and (max-width: 767px) {
  .js-morelist.is-open .item:nth-child(n+4) {
    padding-top: 30px !important;
  }
}

.js-morebtn {
  background-image: none !important;
}

#global-nav-sp2 {
  display: none;
}

@media screen and (max-width: 767px) {
  .footer-btn-totop-01 {
    display: none;
  }
  #global-nav-sp2 {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: #eeefef;
    width: 100%;
    z-index: 999;
    box-shadow: 5px 0px 10px rgba(0, 0, 0, 0.3);
  }
  #global-nav-sp2 .gotop a {
    text-align: center;
    display: block;
    background: #a3a3a3;
    color: #fff;
    padding: 6px 0;
    font-size: 15px;
  }
  #global-nav-sp2 ul {
    display: grid;
    justify-content: space-between;
    grid-template-columns: repeat(3, 1fr);
  }
  #global-nav-sp2 li {
    text-align: center;
    padding: 15px 0;
    padding-left: 0;
    text-indent: 0;
    list-style-type: none;
    font-size: 15px;
  }
  #global-nav-sp2 li:nth-of-type(2) {
    background: #f5ab53;
    color: #fff;
  }
}
#inquiry-form a {
  color: #eb6767;
  text-decoration: underline;
}
#inquiry-form dl.form-list {
  display: grid;
  gap: 30px;
  margin: 0 0 60px;
}
@media screen and (max-width: 767px) {
  #inquiry-form dl.form-list {
    gap: 5px;
  }
}
#inquiry-form dl.form-list > div {
  display: grid;
  grid-template-columns: 250px 1fr;
}
@media screen and (max-width: 767px) {
  #inquiry-form dl.form-list > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}
#inquiry-form dl.form-list dt {
  padding: 10px 0 0;
  color: #707f89;
  font-weight: bold;
  font-size: 18px;
}
#inquiry-form dl.form-list dt .req {
  color: #ea0000;
}
#inquiry-form dl.form-list dd:has(.wpcf7-not-valid-tip) input,
#inquiry-form dl.form-list dd:has(.wpcf7-not-valid-tip) select,
#inquiry-form dl.form-list dd:has(.wpcf7-not-valid-tip) textarea {
  background: #ffeaea;
}
#inquiry-form dl.form-list .other {
  display: flex;
  margin-top: 10px;
  align-items: center;
  gap: 10px;
  justify-content: end;
}
#inquiry-form dl.form-list .other span {
  white-space: nowrap;
  font-size: 90%;
}
@media screen and (max-width: 767px) {
  #inquiry-form dl.form-list__confirm {
    gap: 15px;
  }
}
#inquiry-form dl.form-list__confirm dd {
  padding-top: 11px;
}
#inquiry-form dl.form-list__confirm .other {
  display: block;
  margin-top: 0;
}
#inquiry-form dl.form-list input,
#inquiry-form dl.form-list select,
#inquiry-form dl.form-list textarea {
  border: 1px solid #cdd6dd;
  padding: 0 20px;
  line-height: 1;
  font-size: 16px;
  width: 100%;
  height: 50px;
}
#inquiry-form dl.form-list textarea {
  height: 200px;
  padding: 12px 20px;
  line-height: 1.3;
}
#inquiry-form h4 {
  margin: 0 0 10px;
  font-size: 20px;
}
#inquiry-form ul.form-caution {
  margin: 0 0 40px 23px;
}
#inquiry-form ul.form-caution li {
  text-indent: 0;
  padding: 0;
  list-style-position: outside;
}
@media screen and (max-width: 767px) {
  #inquiry-form ul.form-caution li {
    font-size: 16px;
  }
}
#inquiry-form .wpcf7-spinner {
  display: block;
  margin: 10px auto 0;
}

.popup-medical-wrap .btn-bgcolor-01 {
  position: relative;
}
.popup-medical-wrap .btn-bgcolor-01 > span {
  height: 3em;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.popup-medical-wrap .is-direct {
  display: none;
}
.is-medical-page .popup-medical-wrap .is-direct {
  display: block;
  font-size: 50%;
  font-weight: normal;
}

.medical-alert-text .frame {
  color: #ea0000;
  border: 2px solid currentColor;
  padding: 1em;
  font-weight: bold;
}/*# sourceMappingURL=add2026.css.map */