@charset "UTF-8";
/*! sanitize.css | CC0 Public Domain | github.com/jonathantneal/sanitize.css */
pre,
textarea {
  overflow: auto;
}

[hidden],
audio:not([controls]),
template {
  display: none;
}

details,
main,
summary {
  display: block;
}

input[type=number] {
  width: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

progress {
  display: inline-block;
}

small {
  font-size: 75%;
}

textarea {
  resize: vertical;
}

[unselectable] {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

*,
::after,
::before {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
  border-style: solid;
  border-width: 0;
}

* {
  font-size: inherit;
  line-height: inherit;
  margin: 0;
  padding: 0;
}

::after,
::before {
  text-decoration: inherit;
  vertical-align: inherit;
}

:root {
  -ms-overflow-style: -ms-autohiding-scrollbar;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: default;
  text-rendering: optimizeLegibility;
}

a {
  text-decoration: none;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

button,
input,
select,
textarea {
  background-color: transparent;
  color: inherit;
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
  min-height: 1.5em;
}

code,
kbd,
pre,
samp {
  font-family: monospace,monospace;
}

ol,
ul {
  list-style: none;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

::-moz-selection {
  background-color: #B3D4FC;
  text-shadow: none;
}

::selection {
  background-color: #B3D4FC;
  text-shadow: none;
}

@media screen {
  [hidden~=screen] {
    display: inherit;
  }
  [hidden~=screen]:not(:active):not(:focus):not(:target) {
    clip: rect(0 0 0 0) !important;
    position: absolute !important;
  }
}
/* ---------------------------------------*/
/* Base */
/* ---------------------------------------*/
html {
  font-size: 62.5%;
  text-align: center;
}

body {
  font-family: "Noto Serif JP", serif;
  color: #333;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.8;
  margin: 0 auto;
  padding: 0;
  background-color: #fff;
}

a:link,
a:visited {
  color: inherit;
}

a:hover,
a:active {
  opacity: 0.6;
  -webkit-transition: 400ms;
  transition: 400ms;
}

@media screen and (max-width: 767px) {
  a:hover,
  a:active {
    opacity: 1;
    -webkit-transition: none;
    transition: none;
  }
}

img {
  width: 100%;
}

em {
  font-style: normal;
  font-weight: bolder;
}

address {
  font-style: normal;
}

.content-heading {
  font-size: 1.8rem;
  font-weight: 500;
  text-align: left;
  position: relative;
  padding: 0 0 0 85px;
}

.content-heading span {
  display: block;
  font-size: 1.2rem;
  font-weight: 300;
}

.content-heading::before {
  display: block;
  content: '';
  width: 65px;
  height: 1px;
  background: #333;
  position: absolute;
  top: 15px;
  left: 0;
}

@media screen and (max-width: 767px) {
  .content-heading {
    margin: 0 0 30px;
    padding: 0 20px 0 45px;
  }
  .content-heading span {
    font-size: 1.2rem;
    font-weight: 300;
  }
  .content-heading::before {
    display: block;
    content: '';
    width: 30px;
    height: 1px;
    background: #333;
    position: absolute;
    top: 17px;
    left: 0;
  }
}

.only-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .only-sp {
    display: block;
  }
  .only-pc {
    display: none;
  }
}

.fadein {
  opacity: 0;
  -webkit-transform: translate(0, 50px);
  transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

.fadein.scrollin {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

/* --- wrapper ---*/
.wrapper {
  max-width: 940px;
  margin: 0 auto;
  padding: 0 50px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .wrapper {
    width: 100%;
    padding: 0 20px;
  }
}

.wrapper-920 {
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 50px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .wrapper-920 {
    width: 100%;
    padding: 0 20px;
  }
}

.wrapper-1200 {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 50px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .wrapper-1200 {
    width: 100%;
    padding: 0 20px;
  }
}

/* ---------------------------------------*/
/* header */
/* ---------------------------------------*/
header {
  width: 100%;
  height: 96px;
  position: fixed;
  background: #fff;
  z-index: 3;
}

@media screen and (max-width: 767px) {
  header {
    width: 100%;
    height: 75px;
    position: fixed;
  }
}

.header-brand-logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 320px;
  height: 96px;
  background: #fff;
  position: absolute;
  top: 0;
  left: 27px;
}

.header-brand-logo img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .header-brand-logo {
    width: 180px;
    height: 75px;
    top: 0;
    left: 20px;
  }
  .header-brand-logo img {
    width: 100%;
  }
}

.header-icon-tel {
  width: 132px;
  position: absolute;
  top: 10px;
  right: 210px;
}

@media screen and (max-width: 767px) {
  .header-icon-tel {
    display: none;
  }
}

/* ---------------------------------------*/
/* navigation */
/* ---------------------------------------*/
.navigation {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 96px;
  position: absolute;
  top: 0;
  right: 0;
}

@media screen and (max-width: 767px) {
  .navigation {
    height: auto;
  }
}

/* g-nav */
/* -----------------------------*/
.g-nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 50px 0 0;
}

@media screen and (max-width: 767px) {
  .g-nav-list {
    display: block;
  }
}

.g-nav-list__item {
  font-size: 1.4rem;
  line-height: 1;
  border-left: solid 1px #ccc;
  position: relative;
}

.g-nav-list__item:first-child {
  border: none;
}

.g-nav-list__item a,
.g-nav-list__item span {
  display: block;
  padding: 5px 20px;
}

@media screen and (max-width: 767px) {
  .g-nav-list__item {
    font-size: 1.6rem;
    border-left: none;
    border-top: solid 1px #ddd;
  }
  .g-nav-list__item a,
  .g-nav-list__item span {
    padding: 15px 0;
  }
}

.g-nav-time {
  display: none;
}

@media screen and (max-width: 767px) {
  .g-nav-time {
    display: block;
    font-size: 1.1rem;
  }
}

.g-nav-list-sns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto;
  padding: 0 15px;
}

@media screen and (max-width: 767px) {
  .g-nav-list-sns {
    height: 40px;
    margin: 20px 0;
  }
}

.g-nav-list-sns__item {
  width: 24px;
  height: 24px;
  position: relative;
  margin: 0 5px;
}

.g-nav-list-sns__item img {
  width: 24px;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 767px) {
  .g-nav-list-sns__item {
    width: 40px;
    margin: 0 10px;
    line-height: 0;
  }
  .g-nav-list-sns__item img {
    width: 40px;
  }
}

.g-navi-sub-list {
  width: 16.5em;
  line-height: 1;
  text-align: left;
  position: absolute;
  top: 1.5em;
  left: 0;
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.9);
}

@media screen and (max-width: 767px) {
  .g-navi-sub-list {
    width: auto;
    position: relative;
    top: 0;
    left: calc(50% - 5em);
    padding: 0;
    background: none;
    margin: 0 0 20px;
  }
  .g-navi-sub-list.dropdwn_menu {
    width: calc(100% - calc(50% - 5em));
  }
}

.dropdwn_menu {
  display: none;
}
@media screen and (max-width: 767px) {
  .g-navi-sub-list.dropdwn_menu,
  .g-navi-sub-list--02.dropdwn_menu {
    display: block;
  }
}

.g-navi-sub-list__item {
  font-size: 1.3rem;
  line-height: 1;
}

.g-navi-sub-list__item a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 15px 0 15px 25px;
  position: relative;
  border-top: solid 1px #ddd;
}

.g-navi-sub-list__item a::before {
  display: block;
  content: '';
  width: 5px;
  height: 5px;
  border-top: solid 1px #666;
  border-right: solid 1px #666;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 1px);
  left: 10px;
}
.g-navi-sub-list__item a.sub-dropdown-menu::before {
  top: .5em;
  right: 0;
  left: auto;
  width: 1em;
  height: 2px;
  transition: .3s;
  background: #000;
  transform: rotate(90deg);
}
.g-navi-sub-list__item a.sub-dropdown-menu::after {
  display: block;
  content: "";
  position: absolute;
  top: .5em;
  right: 0;
  width: 1em;
  height: 2px;
  background: #000;
  transition: .3s;
  transform: rotate(0);
}
.g-navi-sub-list__item a.sub-dropdown-menu.open::before {
  transform: rotate(180deg);
}
@media screen and (max-width: 767px) {
  .g-navi-sub-list__item a.sub-dropdown-menu::before,
  .g-navi-sub-list__item a.sub-dropdown-menu::after {
    right: auto;
	left: 10em;
  }
}


.g-navi-sub-list__item:first-child a {
  border: none;
}

@media screen and (max-width: 767px) {
  .g-navi-sub-list__item {
    font-size: 1.4rem;
  }
  .g-navi-sub-list__item a {
    border: none;
    padding: 10px 0 10px 25px;
  }
}

.g-navi-sub-list--02 {
  margin: 0 0 0 1.3em;
}
.g-navi-sub-list--03 {
  margin: 0 0 0 1.3em;
}

@media screen and (max-width: 767px) {
  .g-navi-sub-list--02 {
    margin: 5px 0 0 1em;
  }
}

.g-navi-sub-list--02__item {
  font-size: 1.3rem;
}

.g-navi-sub-list--02__item a {
  padding: 0 0 15px 25px;
}

.g-navi-sub-list--02__item a::before {
  top: calc(50% - 10px);
}

/* --ハンバーガーメニュー-- */
@media screen and (max-width: 767px) {
  nav.globalMenuSp {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    background: #fff;
    text-align: center;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    padding: 10px 0 0;
    overflow-y: scroll;
  }
  nav.globalMenuSp.active {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}

/* --toggle-- */
.navToggle {
  display: none;
}

@media screen and (max-width: 767px) {
  .navToggle {
    display: block;
    position: relative;
    right: 0;
    top: 0;
    width: 70px;
    height: 75px;
    cursor: pointer;
    z-index: 101;
    text-align: center;
  }
  .navToggle span {
    display: block;
    position: absolute;
    left: 20px;
    width: 30px;
    border-bottom: solid 1px #333;
    -webkit-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
  }
  .navToggle span:nth-child(1) {
    top: 20px;
  }
  .navToggle span:nth-child(2) {
    top: 30px;
  }
  .navToggle span:nth-child(3) {
    top: 40px;
  }
  .navToggle span:nth-child(4) {
    border: none;
    color: #333;
    font-size: 0.8rem;
    top: 45px;
  }
}

.navToggle.active span:nth-child(1) {
  top: 30px;
  left: 20px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.navToggle.active span:nth-child(2),
.navToggle.active span:nth-child(3) {
  top: 30px;
  right: 20px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.navToggle.active span:nth-child(4) {
  opacity: 0;
  -webkit-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}

/* s-nav */
/* -----------------------------*/
.subMenuSp {
  z-index: 3;
}

@media screen and (max-width: 767px) {
  .subMenuSp {
    position: relative;
    right: 70px;
    top: 0;
  }
}

.s-nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.s-nav-list__item {
  height: 96px;
  font-size: 1.4rem;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .s-nav-list__item {
    height: 75px;
  }
}

.s-nav-japan {
  font-size: 1.4rem;
  text-align: center;
  background: #F4F1EC;
}

.s-nav-japan a {
  display: block;
  height: 100%;
  padding: 35px 40px 0;
  position: relative;
}

.s-nav-japan a::after {
  display: block;
  content: '';
  width: 8px;
  height: 8px;
  border-right: solid 1px;
  border-bottom: solid 1px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  bottom: 35px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.s-nav-japan a:hover, .s-nav-japan a:active {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .s-nav-japan a {
    width: 40px;
    padding: 25px 0 0;
  }
  .s-nav-japan a::after {
    bottom: 20px;
  }
}

.s-nav-reservation {
  font-size: 1.6rem;
  color: #fff;
  background: #AE2256;
}

.s-nav-reservation a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  padding: 0 20px;
}

@media screen and (max-width: 767px) {
  .s-nav-reservation {
    width: 85px;
    font-size: 1.4rem;
    padding: 0;
  }
}

/* ---------------------------------------*/
/*  contact */
/* ---------------------------------------*/
#contact {
  padding: 60px 0 80px;
  background: url(../img/contact_background.jpg) no-repeat;
  background-size: cover;
  background-position: center top;
  color: #fff;
}

#contact .content-heading {
  margin: 0 0 80px;
}

#contact .content-heading span {
  display: block;
  margin: 0;
}

#contact .content-heading::before {
  background: #fff;
  top: 17px;
}

#contact p {
  font-size: 1.8rem;
  font-weight: 500;
  margin: 0 0 30px;
}

@media screen and (max-width: 767px) {
  #contact {
    padding: 40px 0;
    background: url(../img/contact_background-sp.jpg) no-repeat;
    background-size: cover;
    background-position: center top;
  }
  #contact .content-heading {
    margin: 0 0 30px;
  }
  #contact p {
    font-size: 1.6rem;
    text-align: left;
    margin: 0 0 25px;
    padding: 0 20px;
  }
}

.contact-open {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 2.4rem;
  margin: 0 0 20px;
}

@media screen and (max-width: 767px) {
  .contact-open {
    display: none;
  }
}

.contact-entrance_button {
  width: 360px;
  margin: 0 auto !important;
}

@media screen and (max-width: 767px) {
  .contact-entrance_button {
    display: none;
  }
}

.contact-icon-list {
  display: none;
}

@media screen and (max-width: 767px) {
  .contact-icon-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.contact-icon-list__item {
  width: 23%;
}

/* ---------------------------------------*/
/* pagevisual */
/* ---------------------------------------*/
.pagevisual {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 566px;
}

@media screen and (max-width: 767px) {
  .pagevisual {
    height: 66vw;
    background-size: 100%;
    display: block;
    padding: 130px 0 0 0;
  }
}

.page-heading {
  font-size: 3.8rem;
  font-weight: 300;
  text-align: left;
  line-height: 1.4;
  color: #AE2256;
  margin: 0 0 0 180px;
}

.page-heading span {
  display: block;
  font-size: 1.8rem;
}

@media screen and (max-width: 767px) {
  .page-heading {
    font-size: 2.4rem;
    margin: 0 0 0 20px;
  }
}

/* ---------------------------------------*/
/* fixed button */
/* ---------------------------------------*/
.fixed-button {
  width: 133px;
  position: fixed;
  top: 300px;
  right: 0;
}

@media screen and (max-width: 767px) {
  .fixed-button {
    display: none;
  }
}

.fixed-button--sp, footer-banner-list, footer-banner-header {
  display: none;
  transition: all 0.5s ease-out;
  transform: translateY(clamp(75px, 21.333vw, 90px));
}

@media screen and (max-width: 767px) {
  .fixed-button--sp {
    display: block;
    padding: 5px 0 10px 0;
    background: rgba(255, 255, 255, 0.9);
    position: fixed;
    bottom: 0px;
    z-index: 2;
    color: #000;
    font-weight: 700;
  }
  .fixed-button--sp.in {
    transform: translateY(0);
  }
  .footer-banner-header {
    font-size: 16px;
    margin-bottom: 1px;
  }
  .footer-banner-list {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
  }
  .footer-banner-list li {
    width: 31.5%;
  }

}


/* ---------------------------------------*/
/* common button */
/* ---------------------------------------*/
.common-button {
  -webkit-box-shadow: 5px 10px 30px rgba(0, 0, 0, 0.2);
  box-shadow: 5px 10px 30px rgba(0, 0, 0, 0.2);
}

.common-button a {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#B49F80), to(#715E41));
  background: -webkit-linear-gradient(left, #B49F80, #715E41);
  background: linear-gradient(90deg, #B49F80, #715E41);
  padding: 25px 90px 25px 20px;
  position: relative;
}

.common-button a::after {
  display: block;
  content: '';
  width: 10px;
  height: 10px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 5px);
  right: 20px;
}

@media screen and (max-width: 767px) {
  .common-button a {
    font-size: 1.4rem;
    padding: 15px;
  }
  .common-button a::after {
    display: none;
  }
}

.common-button--02 a {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1;
  padding: 20px 150px 20px 15px;
  border: solid 1px #707070;
  position: relative;
}

.common-button--02 a::after {
  display: block;
  content: '';
  width: 8px;
  height: 8px;
  border-top: solid 1px;
  border-right: solid 1px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 4px);
  right: 20px;
}

/* ---------------------------------------*/
/* footer */
/* ---------------------------------------*/
footer {
  background: #2A2624;
  padding: 40px 0;
  color: #fff;
}

footer small {
  font-size: 1.2rem;
}

footer a {
  color: #fff;
}

.pagetop {
  width: 70px;
  position: fixed;
  z-index: 99;
  right: 30px;
  bottom: 150px;
}
@media screen and (max-width: 767px) {
  .pagetop {
    width: 45px;
    right: 15px;
    bottom: 130px;
  }
}
@media screen and (min-width: 768px) {
  a#kireireport {
    display: block;
    width: 800px;
    margin: 80px auto 0;
  }

  a#kireireport img {
    width: 480px;
    height: 240px;
    margin: 0 auto;
  }

  img.ryoukin {
    width: 40%;
    height: 40%;
  }

  img.ryoukin2 {
    width: 20%;
    height: 20%;
  }

  img.doctor {
    width: 30%;
    height: 30%;
  }

  p.left {
    text-align: lef;
  }
}
/* ---------------------------------------*/
/*  localnavi */
/* ---------------------------------------*/
.local_navi {
  background-color: #B49F80;
  padding: 20px;
}

.local_navi .wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.local_navi-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: start;
}

.local_navi-list__item a {
  display: block;
  background-color: #fff;
  color: #333;
  border-radius: 6px;
  text-align: center;
  padding: 10px 8px;
  font-size: 14px;
  text-decoration: none;
  transition: 0.2s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.local_navi-list__item a:hover {
  background-color: #f5f5f5;
  color: #000;
}

/* ✅スマホ向けに明示的に上書き */
@media (max-width: 768px) {
  .local_navi {
    margin-bottom: 20px;
  }
  .local_navi-list {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    justify-content: start; /* ←これを忘れず上書き */
  }
}

/*  @media (max-width: 480px) {
    .local_navi-list {
      grid-template-columns: 1fr;
      justify-content: start;
    }
  }*/

footer.footer-2025 {
  padding: 80px 0 0;
}
.footer-2025 .footer__inner {
  width: 1000px;
  margin: 0 auto 60px;
}
.footer-2025 .footer__inner .footer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-2025 .footer__inner .footer-header div {
  width: 335px;
}
.footer-2025 .footer-body {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.footer-2025 .footer-body .footer-body-left {
  width: 224px;
  text-align: left;
}
.footer-body-left > ul li {
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: solid 1px rgba(255, 255, 255, 0.3);
}
.footer-2025 .footer-body .footer-body-right {
  width: 740px;
  text-align: left;
  font-size: 15px;
  line-height: 1.8;
}
.footer-body-right-title {
  height: 50px;
  display: flex;
  justify-content: start;
  align-items: center;
  border-bottom: solid 1px rgba(255, 255, 255, 0.3);
  margin-bottom: 20px;
}
.footer__list-upper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  height: 15em;
}
.footer__list-upper li {
  width: 220px;
  margin-right: 40px;
}
.footer__list-upper li:nth-child(n+12) {
  margin-right: 0;
}
.footer__list-lower {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.footer__list-lower li {
  width: 220px;
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: solid 1px rgba(255, 255, 255, 0.3);
}
.footer-link {
  display: flex;
  margin: 0 auto 20px;
  width: fit-content;
}
.footer-link span {
  margin: 0 1em;
}
.copy-right {
  width: 100%;
  background: #231815;
  font-size: 12px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .pagetop {
    width: 45px;
    right: 15px;
    bottom: 130px;
  }
}
@media screen and (min-width: 768px) {
  a#kireireport {
    display: block;
    width: 800px;
    margin: 80px auto 0;
  }

  a#kireireport img {
    width: 480px;
    height: 240px;
    margin: 0 auto;
  }

  img.ryoukin {
    width: 40%;
    height: 40%;
  }

  img.ryoukin2 {
    width: 20%;
    height: 20%;
  }

  img.doctor {
    width: 30%;
    height: 30%;
  }

  p.left {
    text-align: lef;
  }
}

@media screen and (max-width: 767px) {
  .footer-2025 .footer-body .footer-body-right,
  .footer-2025 .footer__inner,
  .footer-2025 .footer-body .footer-body-left,
  .footer__list-lower li{
    width: 100%;
  }
  footer.footer-2025 {
    padding-top: 30px;
  }
  .footer-2025 .footer__inner .footer-header div {
    width: 75%;
    margin: 0 auto 20px;
  }
  .footer-header,
  footer .footer-body {
    flex-direction: column;
  }
  .footer__list-upper {
    height: 17em;
    padding-left: 20px;
  }
  .footer-body-left > ul li,
  .footer-body-right-title,
  .footer__list-lower li{
    height: 40px;
    padding-left: 20px;
  }
  .footer-2025 .footer-body .footer-body-left {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }
  .footer-body-right-title {
    margin-bottom: 0;
  }
  .footer-body__list-title {
    height: 40px;
    padding-left: 20px;
    display: flex;
    align-items: center;
    position: relative;
  }
  .footer-body__list-title.open {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
  .footer-body__list-title:after {
    content: ">";
    rotate: 90deg;
    position: absolute;
    right: .5em;
    font-size: 18px;
  }
  .footer-body__list-title.open:after {
    rotate: -90deg;
  }
  .footer__list-upper li {
    width: 50%;
    margin-right: 0;
    font-size: 14px;
  }
  .footer-2025 .footer__inner {
    margin-bottom: 0;
  }
  .footer__list-lower {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }
  .footer-link {
    margin-bottom: 0;
    flex-direction: column;
    width: 100%;
  }
  .footer-link a {
    display: flex;
    justify-content: start;
    align-items: center;
    text-align: left;
    height: 40px;
    width: 100%;
    padding-left: 20px;
  }
  .footer-link a:first-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }	  
}
.article-list-button .common-button {
 width: fit-content;
}
