@charset "UTF-8";
@media screen and (min-width: 1366px) {
  .sp_obj {
    display: none !important;
  }
}
@media screen and (max-width: 599px) {
  .pc_obj {
    display: none !important;
  }
}
html {
  font-size: 62.5%;
}

body {
  color: #313131;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  overflow-x: hidden;
  line-height: 1.8;
}

.no-scroll {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  -o-object-fit: cover;
  object-fit: cover;
}

.container {
  margin: 0 auto;
  max-width: 1920px;
}

.wrapper {
  margin: 0 auto;
  max-width: 1600px;
  padding-right: 20px;
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  .wrapper {
    padding-right: 4vw;
    padding-left: 4vw;
  }
}

.inner {
  max-width: 920px;
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  .inner {
    padding-right: 4vw;
    padding-left: 4vw;
  }
}

.fade-in {
  -webkit-animation-name: fade-in-anime;
          animation-name: fade-in-anime;
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
  -webkit-animation-direction: normal;
          animation-direction: normal;
}

@-webkit-keyframes fade-in-anime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade-in-anime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fade-in-trigger {
  opacity: 0;
}

.fade-in-scroll {
  -webkit-animation-name: fade-in-anime;
          animation-name: fade-in-anime;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
  opacity: 0;
}

@keyframes fade-in-anime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.dropdown-indicator {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.rotated {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.header__submenu {
  display: none;
  background-color: #FFF;
  -webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  overflow: hidden;
}
@media (min-width: 769px) {
  .header__submenu {
    display: none;
    position: absolute;
    width: 130%;
    left: -45px;
    top: 100%;
    background-color: #FFF;
    -webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
}
@media (max-width: 768px) {
  .header__submenu {
    margin: -20px auto 20px;
    -webkit-box-shadow: none;
            box-shadow: none;
    width: 95%;
    font-size: 1.5rem;
    background-color: unset;
  }
}
.header__submenu.is-open {
  -webkit-animation: slideDown 0.5s ease forwards;
          animation: slideDown 0.5s ease forwards;
  display: block;
}
.header__submenu li {
  border-bottom: solid 1px #584634;
}
.header__submenu li a {
  display: block;
  padding: 10px;
  color: #584634;
}
.header__submenu li a:hover {
  background-color: #584634;
  color: #FFF;
}

@media (max-width: 768px) {
  .header__item--link + .header__submenu {
    display: none;
  }
  .header__item--link + .header__submenu .header__item--link.is-open + .header__submenu {
    display: block;
    -webkit-animation: slideDown 0.5s ease forwards;
            animation: slideDown 0.5s ease forwards;
  }
}
.header__item:hover .header__submenu {
  display: block;
  visibility: visible;
}
@media (max-width: 768px) {
  .header__item:hover .header__submenu {
    position: static;
    visibility: visible;
  }
}

.header__burger {
  display: none;
  cursor: pointer;
}

@media screen and (max-width: 599px) {
  .header__burger {
    display: block;
    position: relative;
    z-index: 3000;
  }
  .header__nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100%;
    background-color: #fff;
    -webkit-transition: left 0.3s;
    transition: left 0.3s;
    z-index: 2000;
  }
  .header__nav.is-active {
    left: 0;
  }
}
@media screen and (max-width: 599px) and (max-width: 768px) {
  .header__nav.is-active {
    display: block;
    z-index: 2000;
  }
}
@media screen and (max-width: 599px) and (max-width: 768px) {
  .header__nav {
    display: none;
  }
}
.header__bar {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #333;
  margin: 3px 0;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}

.header__burger.open .header__bar-top {
  -webkit-transform: rotate(45deg) translate(5px, 5px);
          transform: rotate(45deg) translate(5px, 5px);
}

.header__burger.open .header__bar {
  margin: 5px 0;
}

.header__item--link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header__item--link .dropdown-indicator {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.header__item--link ul li {
  width: 100% !important;
}
@media screen and (max-width: 599px) {
  .header__item--link ul li {
    padding: 0px !important;
  }
}
.header__item:hover .dropdown-indicator {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.header__logo_box {
  margin-left: 67px;
}
@media (max-width: 768px) and (min-width: 600px) {
  .header__logo_box {
    margin-left: 0px;
  }
}
@media screen and (max-width: 599px) {
  .header__logo_box {
    margin-left: 0px;
  }
}

.menu {
  font-size: 0.5em;
}

@media (max-width: 600px) {
  .tab_obj {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pc_obj {
    display: none !important;
  }
}
@media only screen and (min-width: 1024px) {
  .sp_obj2 {
    display: none !important;
  }
}
@media only screen and (max-width: 599px) {
  .sp_obj2 {
    display: none !important;
  }
}
@media only screen and (min-width: 599px) {
  .sp_obj {
    display: none !important;
  }
}
.t_head {
  font-size: 0.7em;
}

.u_h1 {
  font-size: 0.8em !important;
  position: absolute !important;
  top: -1px !important;
  right: 16px;
}

.header__nav {
  display: none;
}

.header {
  margin: 0 auto;
}

.header__top-contents {
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 1vw;
}
@media (max-width: 1020px) and (min-width: 768px) {
  .header__top-contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    padding: 0 !important;
  }
}
@media screen and (max-width: 768px) {
  .header__top-contents {
    padding: 0;
    position: fixed;
    background-color: #fff;
    z-index: 10000;
  }
}

.header__top-logo {
  width: 24%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .header__top-logo {
    width: 63%;
  }
}
.header__logo-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1024px) {
  .header__logo-link {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .header__logo-link {
    padding-left: 2vw;
  }
}
.header__logo-link--img {
  width: 64px;
  margin-top: 15px;
}
@media screen and (max-width: 599px) {
  .header__logo-link--img {
    width: 40px;
    margin-top: 8px;
    margin-bottom: 8px;
  }
}
.header__logo-link--title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: bold;
  margin-left: 8px;
  color: #584634;
}
@media screen and (min-width: 1366px) {
  .header__logo-link--title {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }
}
@media screen and (max-width: 1024px) {
  .header__logo-link--title {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    border-bottom: none;
  }
}
@media screen and (max-width: 768px) {
  .header__logo-link--title {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 599px) {
  .header__logo-link--title {
    font-size: 13px;
    padding-top: 0px;
    line-height: 1.4;
  }
}
@media screen and (max-width: 374px) {
  .header__logo-link--title {
    margin-left: 4px;
    font-size: 1.5rem;
  }
}
.header__logo-link--title_after {
  display: inline-block;
  padding-left: 0;
}
@media screen and (max-width: 1024px) {
  .header__logo-link--title_after {
    display: block;
    padding-left: 0;
  }
}
.header__logo-link--title_access {
  display: none;
}
@media screen and (max-width: 1024px) {
  .header__logo-link--title_access {
    display: inline-block;
    background-color: #BB956F;
    font-size: 1.4rem;
    color: #fff;
    letter-spacing: 0.04em;
    font-weight: normal;
    line-height: 2.5rem;
    margin: 10px 1.3rem 0rem 0rem;
    text-align: right;
    padding: 0 0.5rem;
    border-radius: 0.5rem;
    vertical-align: middle;
  }
}
@media screen and (max-width: 768px) {
  .header__logo-link--title_access {
    margin: 0.5rem 1rem 0.5rem 0.5rem;
  }
}

.header__cta-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .header__cta-box {
    display: none;
  }
}

.header__web-link,
.header__tel-link {
  font-family: "Inter", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 12px 8px;
  color: #fff;
  width: 158px;
  border-radius: 7px;
  font-size: 21px;
  letter-spacing: 0.04em;
  font-weight: bold;
}
.header__web-link--img,
.header__tel-link--img {
  width: 25px;
  margin: 0 4px 3px 0;
}

.header__web-link {
  background-color: #80C954;
}

.header__tel-link {
  background-color: #F29E51;
}

.header__burger {
  width: 46px;
  height: 46px;
  display: none;
}
@media screen and (max-width: 768px) {
  .header__burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0px;
    margin-right: 15px;
  }
}

.header__bar {
  display: block;
  height: 2px;
  max-width: 85px;
  width: 70%;
  background-color: #000000;
  color: #fff;
}
.header__bar-top {
  bottom: 10px;
}
.header__bar-bottom {
  top: 10px;
}

.header__burger.open .header__bar-top {
  -webkit-transform: translate(0, 16px) rotate(45deg);
          transform: translate(0, 16px) rotate(45deg);
  background-color: black;
}

.header__burger.open .header__bar-mid {
  opacity: 0;
}

.header__burger.open .header__bar-bottom {
  -webkit-transform: translate(0, -20px) rotate(-45deg);
          transform: translate(0, -20px) rotate(-45deg);
  margin-top: 17px;
}

.header__nav {
  width: 78%;
  color: #584634;
  display: block;
  margin-top: 17px;
}
@media screen and (max-width: 768px) {
  .header__nav {
    display: none;
    position: fixed;
    right: 0;
    height: 100%;
    z-index: 100;
    width: 50%;
    background-color: #FFF5EB;
    margin-top: 0px;
  }
}
@media screen and (max-width: 599px) {
  .header__nav {
    width: 100%;
  }
}

.header__list {
  max-width: 1280px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .header__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: calc(100% - 197px);
    padding: 0 4vw;
  }
}
@media screen and (max-width: 599px) {
  .header__list {
    padding: 0px 8vw 0px;
  }
}

.header__list2 {
  max-width: 1280px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  padding: 0 2vw;
}
@media screen and (max-width: 768px) {
  .header__list2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: calc(100% - 88px);
    padding: 0 4vw;
  }
}
@media screen and (max-width: 599px) {
  .header__list2 {
    padding: 48px 8vw 0px;
  }
}

.header__item {
  position: relative;
  text-align: center;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  letter-spacing: 0px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}
@media screen and (max-width: 768px) {
  .header__item {
    max-width: 100%;
    border-right: none;
    text-align: left !important;
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
}
.header__item--link {
  width: 100%;
  display: inline-block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .header__item--link {
    font-size: 2rem;
    padding: 4px 0 4px 0;
    line-height: 1.7;
  }
}
.header__item--link:hover {
  color: #EDBC7C;
}
.header__item_sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .header__item_sp {
    display: block;
  }
}
.header__item_pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .header__item_pc {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .header__item:nth-of-type(2) {
    border-left: none;
  }
}

@media screen and (max-width: 768px) {
  .header__item:last-of-type {
    border-right: none;
  }
}

.side-cta-box2 {
  margin: 0 !important;
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: fixed;
  right: 0;
  top: 39vh;
  z-index: 50;
  gap: 11px;
  padding: 0;
  -webkit-box-align: unset;
      -ms-flex-align: unset;
          align-items: unset;
}
.side-cta-box2 li:before {
  content: none;
}
@media screen and (max-width: 599px) {
  .side-cta-box2 {
    top: 91%;
    width: 100%;
    text-align: center;
  }
}
.side-cta-box2__item--urawa {
  display: inline-block;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 67px;
  height: 326px;
  background-color: #ffc14e;
  border-top-left-radius: 13px;
  border-bottom-left-radius: 13px;
  padding: 20px 11px 11px 0px;
  color: white;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 1.2em;
  font-weight: bold;
}
@media screen and (max-width: 599px) {
  .side-cta-box2__item--urawa {
    height: 65px;
    padding: 8px 11px 12px 0px;
    width: 100%;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
  }
}
.side-cta-box2__item--urawa_img {
  position: relative;
  right: 0px;
  width: 40px;
  margin-bottom: 10px;
}
@media screen and (max-width: 599px) {
  .side-cta-box2__item--urawa_img {
    top: 4px;
    margin-bottom: 0px;
    right: 16px;
  }
}

.horiz {
  -webkit-writing-mode: horizontal-tb;
      -ms-writing-mode: lr-tb;
          writing-mode: horizontal-tb;
  font-size: 1.4em;
}
@media screen and (max-width: 599px) {
  .horiz {
    font-size: 1.4em;
  }
}
@media screen and (max-width: 599px) {
  .horiz ul {
    margin: 0;
  }
}

.side-cta-box {
  display: none;
}
@media screen and (max-width: 599px) {
  .side-cta-box {
    display: block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: fixed;
    right: 0;
    bottom: 10vh;
    z-index: 10;
    gap: 11px;
  }
}
.side-cta-box__item--tel {
  display: inline-block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 82px;
  height: 71px;
  background-color: #584634;
  border-top-left-radius: 13px;
  border-bottom-left-radius: 13px;
}
.side-cta-box__item--tel_img {
  width: 34px;
}
.side-cta-box__item--web {
  display: inline-block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 82px;
  height: 71px;
  background-color: #F9B044;
  border-top-left-radius: 13px;
  border-bottom-left-radius: 13px;
}
.side-cta-box__item--web_img {
  width: 34px;
}

.dropdown__lists {
  display: none;
  /*デフォルトでは非表示の状態にしておく*/
  width: 100%;
  position: absolute;
  top: 60px;
  left: 0;
}

.gnavi__list:hover .dropdown__lists {
  display: block;
  /*Gナビメニューにホバーしたら表示*/
}

.dropdown__list {
  background-color: #004d80;
  height: 60px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
}

.dropdown__list:not(:first-child)::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #3492d1;
  position: absolute;
  top: 0;
  left: 0;
}

.dropdown__list:hover {
  background-color: #003558;
}

.dropdown__list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  text-decoration: none;
  position: relative;
}

.dropdown__list a::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  position: absolute;
  right: 15px;
  top: calc(50% - 5px);
}

.dropdown-indicator {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  display: inline-block;
}

.header__item:hover .dropdown-indicator {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

@media (max-width: 768px) {
  .header__item--link.is-open + .header__submenu {
    display: block;
  }
}
@-webkit-keyframes slideDown {
  0% {
    max-height: 0;
    visibility: hidden;
  }
  100% {
    max-height: 500px;
    visibility: visible;
  }
}
@keyframes slideDown {
  0% {
    max-height: 0;
    visibility: hidden;
  }
  100% {
    max-height: 500px;
    visibility: visible;
  }
}
.header__item--link.is-open + .header__submenu {
  display: block;
  -webkit-animation: slideDown 0.5s ease forwards;
          animation: slideDown 0.5s ease forwards;
  overflow: hidden;
}

.header__submenu.is-active {
  max-height: 500px;
}

.header__submenu {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.5s ease;
  transition: max-height 0.5s ease;
}

/*==ナビゲーション全体の設定*/
#g-nav {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  color: #584634;
  text-align: center;
  margin: 0 auto;
}

/*ナビゲーションを横並びに*/
#g-nav ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/*2階層目以降は横並びにしない*/
#g-nav ul ul {
  display: block;
}

/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
#g-nav ul li {
  position: relative;
  width: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 5px 15px 5px;
  border-right: 1px solid #584634;
}
#g-nav ul li:first-child {
  border-left: 1px solid #584634;
}
@media screen and (max-width: 1024px) {
  #g-nav ul li:first-child {
    border: none;
  }
}
@media screen and (max-width: 1024px) {
  #g-nav ul li {
    border: none;
  }
}

/*ナビゲーションのリンク設定*/
#g-nav ul li a {
  display: block;
  text-decoration: none;
  color: #584634;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#g-nav ul li a:hover {
  color: #EDBC7C;
}

/*==矢印の設定*/
/*2階層目を持つliの矢印の設定*/
#g-nav ul li.has-child::before {
  content: "";
  position: absolute;
  right: 10px;
  top: 18px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #584634;
  border-right: 2px solid #584634;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

/*3階層目を持つliの矢印の設定*/
#g-nav ul ul li.has-child::before {
  content: "";
  position: absolute;
  left: 127px;
  top: 13px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/*== 2・3階層目の共通設定 */
/*下の階層を持っているulの指定*/
#g-nav li.has-child ul {
  /*絶対配置で位置を指定*/
  position: absolute;
  left: -12px;
  top: 39px;
  z-index: 4;
  /*形状を指定*/
  background: #fff;
  width: 242px;
  /*はじめは非表示*/
  visibility: hidden;
  opacity: 0;
  /*アニメーション設定*/
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/*hoverしたら表示*/
#g-nav li.has-child:hover > ul,
#g-nav li.has-child ul li:hover > ul,
#g-nav li.has-child:active > ul,
#g-nav li.has-child ul li:active > ul {
  visibility: visible;
  opacity: 1;
}

/*ナビゲーションaタグの形状*/
#g-nav li.has-child ul li a {
  color: #584634;
  border-bottom: solid 1px rgb(183, 183, 183);
  border-right: none;
  border-left: none;
}
@media screen and (min-width: 1025px) {
  #g-nav li.has-child ul li a {
    padding: 20px;
  }
}

#g-nav li.has-child ul li {
  border-right: none;
  border-left: none;
}

#g-nav li.has-child ul li:last-child > a {
  border-bottom: none;
}

#g-nav li.has-child ul li a:hover,
#g-nav li.has-child ul li a:active {
  background: #EDBC7C;
}

/*==3階層目*/
/*3階層目の位置*/
#g-nav li.has-child ul ul {
  top: 0;
  left: 182px;
  background: #66ADF5;
}

#g-nav li.has-child ul ul li a:hover,
#g-nav li.has-child ul ul li a:active {
  background: #448ED3;
}

/*==768px以下の形状*/
@media screen and (max-width: 1024px) {
  #g-nav {
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position: fixed;
    z-index: -1;
    opacity: 0;
    /*はじめは透過0*/
    /*ナビの位置と形状*/
    top: 85px;
    width: 100%;
    background-color: #FFF5EB;
    /*動き*/
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  /*矢印の位置と向き*/
}
@media screen and (max-width: 1024px) and (max-width: 1020px) and (min-width: 768px) {
  #g-nav {
    top: 81px;
  }
}
@media screen and (max-width: 1024px) {
  #g-nav.panelactive {
    opacity: 1;
    z-index: 999;
    height: 100vh;
    overflow-y: scroll;
  }
  #g-nav ul {
    display: none;
    /*ナビゲーション天地中央揃え*/
    z-index: 999;
    top: 6%;
    overflow-y: scroll;
  }
  #g-nav ul li {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) and (max-width: 1024px) {
  #g-nav ul li {
    padding: 20px 0px 0px !important;
  }
}
@media screen and (max-width: 1024px) {
  #g-nav.panelactive ul {
    display: block;
  }
  #g-nav li.has-child ul,
  #g-nav li.has-child ul ul {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    visibility: visible;
    /*JSで制御するため一旦表示*/
    opacity: 1;
    /*JSで制御するため一旦表示*/
    display: none;
    /*JSのslidetoggleで表示させるため非表示に*/
    -webkit-transition: none;
    transition: none;
    /*JSで制御するためCSSのアニメーションを切る*/
  }
  #g-nav ul li a {
    border-bottom: 1px solid #6D5D4D;
  }
}
@media screen and (max-width: 1024px) and (max-width: 1024px) {
  #g-nav ul li a {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  #g-nav ul li.has-child::before {
    left: 120px;
    top: 28px;
  }
  #g-nav ul ul li.has-child::before {
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
    left: 0px;
  }
  #g-nav ul li.has-child.active::before {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .dp {
    padding-bottom: 20px;
    border-bottom: 1px solid #6D5D4D;
  }
}
/*========= ボタンのためのCSS ===============*/
@media screen and (min-width: 1025px) {
  .openbtn1 {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .openbtn1 {
    position: fixed;
    z-index: 9999;
    /*ボタンを最前面に*/
    top: 5px;
    right: 3px;
    cursor: pointer;
    width: 50px;
    height: 50px;
  }
  .openbtn1 p {
    position: relative;
    top: 35px;
    font-size: 1.2rem;
    left: 10px;
  }
  /*×に変化*/
}
@media screen and (max-width: 1024px) and (max-width: 599px) {
  .openbtn1 {
    width: 40px;
    height: 40px;
  }
  .openbtn1 p {
    top: 35px;
    font-size: 1rem;
    left: 5px;
  }
}
@media screen and (max-width: 1024px) {
  .openbtn1 span {
    display: inline-block;
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #666;
    width: 45%;
  }
}
@media screen and (max-width: 1024px) and (max-width: 599px) {
  .openbtn1 span {
    left: 7px;
    width: 60%;
  }
}
@media screen and (max-width: 1024px) {
  .openbtn1 span:nth-of-type(1) {
    top: 15px;
  }
  .openbtn1 span:nth-of-type(2) {
    top: 23px;
  }
  .openbtn1 span:nth-of-type(3) {
    top: 31px;
  }
  .openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    -webkit-transform: translateY(6px) rotate(-45deg);
            transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  .openbtn1.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn1.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    -webkit-transform: translateY(-6px) rotate(45deg);
            transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
}
.sub-menu {
  padding: 0px !important;
  border: none;
}

.small_a {
  font-size: 10px;
  position: relative;
  top: -3px;
}

.schedule {
  margin: 0 auto 37px auto;
  max-width: calc(780px + 22vw);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .schedule {
    max-width: auto;
  }
}

.branch-schedule {
  margin-top: 64px;
}

.schedule__inner {
  margin: 0 2vw;
}

.schedule__inner_branch {
  margin-top: 83px;
}

.schedule__title {
  margin: 0 auto 21px auto;
  max-width: 120px;
  text-align: center;
  width: 100%;
  font-size: 2rem;
  font-weight: 500;
  background-color: #CAAB8B;
  color: #fff;
  border-radius: 18px;
  line-height: 36px;
  letter-spacing: 0.09em;
}

.doc {
  width: 80%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .doc {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0;
  }
}
@media screen and (max-width: 599px) {
  .doc {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0;
  }
}
.doc .w2,
.doc .w3,
.doc .w4 {
  width: auto;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .doc .w2,
  .doc .w3,
  .doc .w4 {
    width: 100%;
    white-space: normal;
  }
}
@media screen and (max-width: 599px) {
  .doc .w2,
  .doc .w3,
  .doc .w4 {
    width: 100%;
    white-space: normal;
  }
}
.doc .w2.w2-aoki {
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .doc .w2.w2-aoki {
    width: 100%;
    white-space: nowrap;
  }
}
@media screen and (max-width: 599px) {
  .doc .w2.w2-aoki {
    width: 100%;
    white-space: nowrap;
  }
}

.schedule__table {
  width: 80%;
  border-collapse: separate;
  overflow: hidden;
  border-spacing: 0;
  margin: 0 auto 8px auto;
  text-align: center;
  border-radius: 8px;
  border: 5px solid #CAAB8B;
  color: #9D7751;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .schedule__table {
    font-size: 1.6rem;
    border: 3px solid #CAAB8B;
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .schedule__table {
    font-size: 1.3rem;
    width: 100%;
  }
}

.schedule__table2 {
  width: 100%;
  border-collapse: separate;
  overflow: hidden;
  border-spacing: 0;
  margin: 0 auto 8px auto;
  text-align: center;
  border-radius: 8px;
  border: 5px solid #CAAB8B;
  color: #9D7751;
  font-size: 2rem;
  table-layout: fixed;
}
@media screen and (max-width: 768px) {
  .schedule__table2 {
    font-size: 1.6rem;
    border: 3px solid #CAAB8B;
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .schedule__table2 {
    font-size: 1.3rem;
    width: 100%;
  }
}

.schedule__table2 {
  width: 100%;
  border-collapse: separate;
  overflow: hidden;
  border-spacing: 0;
  margin: 0 auto 8px auto;
  text-align: center;
  border-radius: 8px;
  border: 5px solid #CAAB8B;
  color: #9D7751;
  font-size: 2.7rem;
  table-layout: fixed;
}
@media screen and (max-width: 768px) {
  .schedule__table2 {
    font-size: 2rem;
    border: 3px solid #CAAB8B;
  }
}
@media screen and (max-width: 599px) {
  .schedule__table2 {
    font-size: 1.4rem;
  }
}

.schedule__table3 {
  width: 80%;
  border-collapse: separate;
  overflow: hidden;
  border-spacing: 0;
  margin: 0 auto 8px auto;
  text-align: center;
  border-radius: 8px;
  border: 5px solid #CAAB8B;
  color: #9D7751;
  font-size: 2rem;
  table-layout: fixed;
}
@media screen and (max-width: 768px) {
  .schedule__table3 {
    font-size: 1.6rem;
    border: 3px solid #CAAB8B;
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .schedule__table3 {
    font-size: 1.3rem;
    width: 100%;
  }
}

.schedule__thead--th,
.schedule__td {
  border-right: 5px solid #CAAB8B;
  border-bottom: 5px solid #CAAB8B;
  vertical-align: middle;
  border-top: none;
  border-left: none;
  width: 12.4%;
  padding: 10px 0;
  text-align: center;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .schedule__thead--th,
  .schedule__td {
    border-right: 3px solid #CAAB8B;
    border-bottom: 3px solid #CAAB8B;
  }
}
@media screen and (max-width: 599px) {
  .schedule__thead--th,
  .schedule__td {
    padding: 13px 0 13px 2px;
    width: 12%;
  }
}
.schedule__thead--th:last-child,
.schedule__td:last-child {
  border-right: none;
}

.schedule__thead--th2,
.schedule__td2 {
  border-right: 5px solid #CAAB8B;
  border-bottom: 5px solid #CAAB8B;
  vertical-align: middle;
  border-top: none;
  border-left: none;
  width: 12.4%;
  padding: 10px 0;
  text-align: center;
  font-weight: normal;
  line-height: 1.6em;
}
@media screen and (max-width: 768px) {
  .schedule__thead--th2,
  .schedule__td2 {
    border-right: 3px solid #CAAB8B;
    border-bottom: 3px solid #CAAB8B;
  }
}
@media screen and (max-width: 599px) {
  .schedule__thead--th2,
  .schedule__td2 {
    padding: 13px 0 13px 2px;
    width: 5%;
  }
}
.schedule__thead--th2:last-child,
.schedule__td2:last-child {
  border-right: none;
}

.schedule__thead--th3,
.schedule__td3 {
  border-right: 5px solid #CAAB8B;
  border-bottom: 5px solid #CAAB8B;
  vertical-align: middle;
  border-top: none;
  border-left: none;
  width: 12%;
  padding: 10px 0;
  text-align: center;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .schedule__thead--th3,
  .schedule__td3 {
    border-right: 3px solid #CAAB8B;
    border-bottom: 3px solid #CAAB8B;
  }
}
@media screen and (max-width: 599px) {
  .schedule__thead--th3,
  .schedule__td3 {
    padding: 13px 0 13px 2px;
    width: 10%;
  }
}
.schedule__thead--th3:last-child,
.schedule__td3:last-child {
  border-right: none;
}

.schedule__td_first {
  width: 26.15%;
  padding-top: 27px;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 599px) {
  .schedule__td_first {
    padding-top: 10px;
    padding-bottom: 10px;
    width: 28%;
  }
}

.schedule__td_first_a {
  width: 26.15%;
  letter-spacing: 0.06em;
  vertical-align: middle;
}
@media screen and (max-width: 599px) {
  .schedule__td_first_a {
    vertical-align: middle;
    width: 28%;
  }
}

.schedule__td_first-1 {
  border-bottom: 5px solid #CAAB8B;
}
@media screen and (max-width: 768px) {
  .schedule__td_first-1 {
    border-bottom: 3px solid #CAAB8B;
  }
}

.schedule__tr_second .schedule__td:nth-of-type(n + 2) {
  border-bottom: none;
}

.sd {
  border-bottom: none !important;
}

.schedule__td {
  background: #fff;
}

.schedule__thead--blank,
.schedule__td_first,
.schedule__td_first_a {
  border-right: 5px solid #CAAB8B;
}
@media screen and (max-width: 768px) {
  .schedule__thead--blank,
  .schedule__td_first,
  .schedule__td_first_a {
    border-right: 3px solid #CAAB8B;
  }
}

.schedule__thead--blank {
  border-bottom: 5px solid #CAAB8B;
  background-color: #CAAB8B;
  width: 20%;
}
@media screen and (max-width: 768px) {
  .schedule__thead--blank {
    border-bottom: 3px solid #CAAB8B;
  }
}

.schedule__thead--blank2 {
  border-bottom: 5px solid #CAAB8B;
  background-color: #CAAB8B;
  width: 15%;
}
@media screen and (max-width: 768px) {
  .schedule__thead--blank2 {
    border-bottom: 3px solid #CAAB8B;
  }
}

.schedule__thead--blank3 {
  border-bottom: 5px solid #CAAB8B;
  background-color: #CAAB8B;
  width: 20%;
}
@media screen and (max-width: 768px) {
  .schedule__thead--blank3 {
    border-bottom: 3px solid #CAAB8B;
    width: 12%;
  }
}

.schedule__thead--th {
  background-color: #FDE6CF;
}
@media screen and (max-width: 768px) {
  .schedule__thead--th {
    background-color: #FAF0E6;
  }
}

.schedule__thead--th3 {
  background-color: #FDE6CF;
}
@media screen and (max-width: 768px) {
  .schedule__thead--th3 {
    background-color: #FAF0E6;
  }
}

.schedule__td_rest {
  color: #E17100;
}

.banner__inner {
  max-width: 500px;
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  .banner__inner {
    padding-right: 2vw;
    padding-left: 2vw;
  }
}
.banner__inner .banner__list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0px;
  padding-top: 10px;
  margin-bottom: 30px;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.banner__inner .banner__item {
  max-width: 410px;
}
@media screen and (max-width: 599px) {
  .banner__inner .banner__item {
    max-width: 160px;
  }
}
.banner__inner .banner__item:first-child {
  padding-bottom: 10px;
}
.banner__inner .banner_text {
  text-align: center;
  margin-top: 30px;
}
.banner__inner .banner_text a {
  font-size: 1.9rem;
  font-weight: bold;
  text-decoration: underline;
}

.text_link {
  text-decoration: underline;
  color: #ff881d;
}

.expertise_list {
  margin-left: -0.5em;
}
.expertise_list .expertise_item {
  color: white;
  margin: 10px 0 0;
  line-height: 1.1em;
  letter-spacing: 0.1em;
}
.expertise_list .expertise_item:before {
  content: "";
  background-color: white;
  background-size: 15px;
  background-repeat: no-repeat;
  display: inline-block;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  margin: 0 10px;
  position: relative;
  top: 3px;
}

.licence_list {
  margin-left: -0.5em;
}
.licence_list .licence_item {
  color: white;
  margin: 10px 0 0;
  line-height: 1.1em;
  letter-spacing: 0.1em;
}
.licence_list .licence_item:before {
  content: "";
  background-color: white;
  background-size: 15px;
  background-repeat: no-repeat;
  display: inline-block;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  margin: 0 10px;
  position: relative;
  top: 3px;
}

body {
  overflow-x: hidden;
}

.nosp {
  display: initial;
}

.nopc {
  display: none;
}

.ss {
  display: none;
}

.img_insta {
  width: 2%;
  margin-right: 5px;
}
@media screen and (max-width: 599px) {
  .img_insta {
    width: 7%;
    margin-right: 5px;
  }
}

.fv_top {
  background-image: url(../../../img/branch/pc/reception_east-omiya.jpg);
  background-size: auto 864px;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  vertical-align: middle;
  text-align: center;
  height: 442px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 0;
  gap: 64px;
}

.fv_top_urawa {
  background-image: url(../../../img/branch/pc/reception_east-omiya.jpg);
  background-size: auto 864px;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  vertical-align: middle;
  text-align: center;
  height: 674px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 0;
  gap: 64px;
}
@media only screen and (max-width: 1040px) {
  .fv_top_urawa {
    height: 707px;
  }
}
.fv_top_urawa:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: inherit;
  -webkit-filter: brightness(80%);
          filter: brightness(80%);
  /* 最背面へ */
  z-index: -1;
}

.fv_top_urawa2 {
  background-image: url(../../../img/branch/pc/reception_urawa.png);
  background-size: auto 864px;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  vertical-align: middle;
  text-align: center;
  height: 688px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 0;
  gap: 64px;
}
@media screen and (max-width: 599px) {
  .fv_top_urawa2 {
    height: 796px;
    background-image: url(../../../img/branch/pc/reception_urawa_sp.png);
  }
}
.fv_top_urawa2:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: inherit;
  -webkit-filter: brightness(80%);
          filter: brightness(80%);
  /* 最背面へ */
  z-index: -1;
}

.fv_top_ikebukuro {
  background-image: url(../../../img/front-page/pc/clinic_ikebukuro.webp);
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  vertical-align: middle;
  text-align: center;
  height: 688px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 0;
  gap: 64px;
}
@media screen and (max-width: 599px) {
  .fv_top_ikebukuro {
    height: 796px;
  }
}
.fv_top_ikebukuro:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: inherit;
  -webkit-filter: brightness(80%);
          filter: brightness(80%);
  z-index: -1;
}

.fv_top::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: inherit;
  -webkit-filter: brightness(80%);
          filter: brightness(80%);
  /* 最背面へ */
  z-index: -1;
}

.clinic_name {
  margin: 0 auto;
  color: white;
  text-shadow: 0 0 3px black;
  top: -168px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .clinic_name {
    top: -94px;
    position: relative;
  }
}

.clinic_name2 {
  margin: 0 auto;
  color: white;
  text-shadow: 0 0 3px black;
}

h1.clinic_name {
  font-size: 31px;
}
@media screen and (max-width: 768px) {
  h1.clinic_name {
    top: -19px;
    position: relative;
  }
}

h1.clinic_name2 {
  font-size: 31px;
}
@media screen and (max-width: 768px) {
  h1.clinic_name2 {
    top: 44px;
    position: relative;
  }
}

h2.clinic_name {
  font-size: 45px;
}

h2.clinic_name2 {
  font-size: 45px;
}
@media screen and (max-width: 768px) {
  h2.clinic_name2 {
    top: -19px;
    position: relative;
  }
}

.clinic_name__space {
  display: inline-block;
  width: 1em;
  height: 1em;
}
@media screen and (max-width: 768px) {
  .clinic_name__space {
    display: none;
  }
}

.doctor_fv::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: inherit;
  -webkit-filter: brightness(80%);
          filter: brightness(80%);
  /* 最背面へ */
  z-index: -1;
}

.fv_middle {
  position: relative;
  background-color: #846C53;
  padding: 0 0 119px;
  -webkit-clip-path: polygon(0% 97%, 0% 0%, 100% 0%, 100% 100%);
          clip-path: polygon(0% 97%, 0% 0%, 100% 0%, 100% 100%);
  top: -208px;
}

.fv_middle2 {
  position: relative;
  background-color: #846C53;
  padding: 0 0 119px;
  -webkit-clip-path: polygon(0% 97%, 0% 0%, 100% 0%, 100% 100%);
          clip-path: polygon(0% 97%, 0% 0%, 100% 0%, 100% 100%);
  top: -68px;
}

.expertise {
  margin: 30px 0 0;
  color: #846C53;
  padding: 5px 20px;
  text-align: left;
  background-color: white;
  display: inline-block;
}

.portrait {
  position: absolute;
  width: 430px;
  bottom: 10px;
  right: 50%;
  z-index: 1;
}

.administrator1 {
  margin: 30px 0 0;
  color: #846C53;
  padding: 5px 20px;
  text-align: left;
  background-color: white;
  display: inline-block;
}

.administrator3 {
  margin: 14px 0 0;
  color: #846C53;
  padding: 5px 20px;
  text-align: left;
  background-color: white;
  display: inline-block;
}

h4.admin_position {
  color: white;
  font-size: 20px;
  text-align: left;
  padding-left: 41px;
  margin: 16px 0 0;
  font-weight: 100;
}

span.admin_name {
  font-weight: 700;
}

.feature {
  margin-left: 55%;
}

.feature2 {
  margin-left: 42%;
}
@media only screen and (max-width: 1040px) {
  .feature2 {
    margin-left: 0;
  }
}

h3.licence {
  margin: 30px 0 0;
  color: #846C53;
  padding: 5px 20px;
  text-align: left;
  background-color: white;
  display: inline-block;
}

.footer__sns_item::before {
  content: none;
}

.fv_beneath {
  position: relative;
}

.fv_beneath2 {
  position: relative;
}
@media screen and (max-width: 768px) {
  .fv_beneath2 {
    margin-bottom: -335px;
  }
}

.fv_name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 150px;
  background-color: #FFA24D;
  position: absolute;
  width: 51%;
  -webkit-clip-path: polygon(0% 100%, 0% 0%, 100% 50%, 100% 50%);
          clip-path: polygon(0% 100%, 0% 0%, 100% 50%, 100% 50%);
  /* background: linear-gradient(-363deg, white 85px, #FFA24D 0); */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  bottom: -1px;
  z-index: 6;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 191px;
}

.fv_name2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 150px;
  background-color: #FFA24D;
  position: absolute;
  width: 51%;
  -webkit-clip-path: polygon(0% 100%, 0% 0%, 100% 50%, 100% 50%);
          clip-path: polygon(0% 100%, 0% 0%, 100% 50%, 100% 50%);
  /* background: linear-gradient(-363deg, white 85px, #FFA24D 0); */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  bottom: -1px;
  z-index: 6;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 417px;
}

.fv_bottom {
  position: absolute;
  content: "";
  background-color: white;
  height: 75px;
  width: 100%;
  -webkit-clip-path: polygon(0% 100%, 50% 0%, 100% 100%, 100% 100%);
          clip-path: polygon(0% 100%, 50% 0%, 100% 100%, 100% 100%);
  bottom: 0px;
  z-index: 5;
  bottom: -54px;
}

.administrator2 {
  color: white;
  font-size: 18px;
  line-height: 2;
  /* padding: 0 20% 0 0; */
}

.access {
  margin: 50px auto 0;
  color: #846C53;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}

.googlemaps {
  display: block;
  border-radius: 16px;
  text-align: center;
  margin: 54px auto 20px;
  width: 98%;
  height: 350px;
  max-width: 1000px;
}

.information_bg {
  background-image: url(../../../img/branch/pc/bg_branchinfo.png);
  background-size: cover;
  padding: 30px 0;
}

.information_box {
  display: block;
  background-color: white;
  border-radius: 20px;
  margin: 30px auto;
  width: 90%;
  padding: 71px 0;
}

.info_block {
  margin: 83px auto 0;
}

.info_block:first-child {
  margin: 0 auto;
}

.information_box > p {
  font-size: 16px;
  color: black;
  margin: 20px 0 0;
}

.subtitle {
  color: white;
  /* width: 5em; */
  background-color: #CAAB8B;
  padding: 4px 24px 4px 24px;
  display: table;
  margin: 0 auto;
  border-radius: 1em;
  text-align: center;
  font-size: 20px;
}

.parking.subtitle {
  width: 11em;
}

.details {
  margin: 20px 0 0;
  font-size: 16px;
  line-height: 1.9em;
  letter-spacing: 0.1em;
  color: black;
  text-align: center;
}

.parking__text {
  margin-bottom: 1em;
}

p.tel.details {
  -webkit-transform: scaleY(1.2);
          transform: scaleY(1.2);
  font-weight: bold;
}

.author {
  margin: 10px 0 0;
  font-size: 10px;
  padding-left: 1em;
  letter-spacing: 0.1em;
}

.papertitle {
  margin: 10px 0 0;
}

.paperitem {
  margin: 20px 0 0;
  line-height: 1.4em;
  letter-spacing: 0.1em;
}

.paperproperty {
  font-size: 10px;
  margin: 20px 0 0;
  display: inline;
}

.branch__pic {
  margin: 4px auto 96px auto;
  padding: 0 2vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 1000px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .branch__pic {
    width: 100%;
    margin: 4px auto 92px auto;
  }
}

.branch__pic_image {
  width: 45%;
  margin-bottom: 45px;
}
@media only screen and (max-width: 768px) {
  .branch__pic_image {
    width: 100%;
    margin-bottom: 32px;
  }
}

.branch_law {
  max-width: 1000px;
  margin: 0 auto;
  margin: 0 auto 50px;
  padding: 32px 2vw;
}
@media screen and (max-width: 599px) {
  .branch_law {
    margin: 36px auto 50px;
    padding: 133px 6vw 50px;
    width: 95%;
  }
}
.branch_law a {
  font-size: 1.6rem;
  font-weight: bold;
  text-decoration: underline;
  color: #ffa24e;
}
.branch_law table {
  margin: 20px auto;
  width: 100%;
}
.branch_law .tbl-r02 th {
  color: #846c53;
  border-bottom: solid 1px #CAAB8B;
  padding: 15px;
}
.branch_law .tbl-r02 td {
  border-bottom: solid 1px #CAAB8B;
  padding: 15px;
}
@media screen and (max-width: 640px) {
  .branch_law tbody {
    border-top: solid 2px #CAAB8B;
  }
  .branch_law .last td:last-child {
    width: 100%;
  }
  .branch_law .tbl-r02 {
    width: 80%;
  }
  .branch_law .tbl-r02 th {
    border-bottom: none;
    display: block;
    width: 100%;
    padding: 15px 15px 0px 15px;
  }
  .branch_law .tbl-r02 td {
    display: block;
    width: 100%;
    padding: 0px 15px 15px 15px;
  }
  .branch_law .tbl-r02 tr {
    border-bottom: solid 1px #CAAB8B;
  }
}

.branch_guide {
  max-width: 1000px;
  margin: 0 auto;
  border: solid 1px #caab8b;
  border-radius: 20px;
  margin: 0 auto 50px;
  padding: 32px 2vw;
}
@media screen and (max-width: 599px) {
  .branch_guide {
    margin: 36px auto 50px;
    padding: 33px 6vw;
    width: 95%;
  }
}
.branch_guide .branch_guide_box {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
}
.branch_guide .branch_guide_box::after {
  display: inline-block;
  content: "";
  width: 18px;
  height: 18px;
  margin: 15px 160px 0px;
  border-top: 30px solid #846c53;
  border-right: 30px solid transparent;
  border-left: 30px solid transparent;
}
@media screen and (max-width: 599px) {
  .branch_guide .branch_guide_box::after {
    margin: 8px 40% 0px;
  }
}
.branch_guide .branch_guide_box .branch_guide-image {
  width: 45%;
}
@media only screen and (max-width: 768px) {
  .branch_guide .branch_guide_box .branch_guide-image {
    width: 100%;
    margin-bottom: 10px;
  }
}
.branch_guide .branch_guide_box .branch_guide-text {
  width: 52%;
  line-height: 1.7;
}
@media only screen and (max-width: 768px) {
  .branch_guide .branch_guide_box .branch_guide-text {
    width: 100%;
    margin-bottom: 20px;
    line-height: 1.7;
  }
}
.branch_guide .branch_guide_box2 {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
}
.branch_guide .branch_guide_box2 .branch_guide-image {
  width: 45%;
}
@media only screen and (max-width: 768px) {
  .branch_guide .branch_guide_box2 .branch_guide-image {
    width: 100%;
    margin-bottom: 10px;
  }
}
.branch_guide .branch_guide_box2 .branch_guide-text {
  width: 52%;
  line-height: 1.7;
}
@media only screen and (max-width: 768px) {
  .branch_guide .branch_guide_box2 .branch_guide-text {
    width: 100%;
    margin-bottom: 20px;
    line-height: 1.7;
  }
}

@media screen and (max-width: 768px) {
  .nosp {
    display: none;
  }
  .nopc {
    display: initial;
  }
  .ss {
    display: none;
  }
  .noss {
    display: initial;
  }
  ul {
    /* width: 68%; */
    /* margin: 15px auto 0; */
  }
  /*インデント調整*/
  .licence_item {
    text-indent: -1.5em !important;
    padding-left: 1.6em !important;
    list-style: none;
    padding-left: 0px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .expertise_list {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-left: -0.5em;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .expertise_item {
    padding-left: 0em;
  }
  .information_box {
    display: block;
    background-color: white;
    border-radius: 20px;
    margin: 31px auto;
    padding: 24px 2%;
  }
  .feature {
    width: 70%;
    display: block;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 auto;
  }
  .fv_middle {
    position: relative;
    background-color: #846C53;
    padding: 0 5% 173px;
    -webkit-clip-path: polygon(0% 97%, 0% 0%, 100% 0%, 100% 100%);
            clip-path: polygon(0% 97%, 0% 0%, 100% 0%, 100% 100%);
    top: -221px;
  }
  .fv_middle2 {
    position: relative;
    background-color: #846C53;
    padding: 0 5% 375px;
    -webkit-clip-path: polygon(0% 97%, 0% 0%, 100% 0%, 100% 100%);
            clip-path: polygon(0% 97%, 0% 0%, 100% 0%, 100% 100%);
    top: 0px;
  }
  h4.admin_position {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    color: white;
    font-size: 20px;
    text-align: left;
    padding-left: 0px;
    margin: 16px 0 0;
    font-weight: 100;
  }
  .fv_name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 140px;
    background-color: #FFA24D;
    position: absolute;
    width: 100%;
    -webkit-clip-path: polygon(0% 100%, 0% 0%, 100% 100%, 100% 100%);
            clip-path: polygon(0% 100%, 0% 0%, 100% 100%, 100% 100%);
    /* background: linear-gradient(-363deg, white 85px, #FFA24D 0); */
    bottom: -1px;
    z-index: 10;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    top: 146px;
  }
  .fv_name2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 135px;
    background-color: #FFA24D;
    position: absolute;
    width: 100%;
    -webkit-clip-path: polygon(0% 100%, 0% 0%, 100% 100%, 100% 100%);
            clip-path: polygon(0% 100%, 0% 0%, 100% 100%, 100% 100%);
    /* background: linear-gradient(-363deg, white 85px, #FFA24D 0); */
    bottom: 14px;
    z-index: 10;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    top: 774px;
  }
  .fv_middle {
    position: relative;
    background-color: #846C53;
    padding: 0 5% 156px;
    -webkit-clip-path: polygon(0% 97%, 0% 0%, 100% 0%, 100% 100%);
            clip-path: polygon(0% 97%, 0% 0%, 100% 0%, 100% 100%);
  }
}
@media only screen and (max-width: 768px) and (max-width: 1024px) {
  .f2 {
    padding: 0 5% 156px !important;
  }
}
@media screen and (max-width: 768px) {
  .fv_bottom {
    position: absolute;
    content: "";
    background-color: white;
    height: 100px;
    width: 100%;
    -webkit-clip-path: polygon(0% 100%, 100% 0%, 100% 100%, 100% 100%);
            clip-path: polygon(0% 100%, 100% 0%, 100% 100%, 100% 100%);
    bottom: 0px;
    z-index: 8;
    bottom: -54px;
  }
  .portrait {
    position: absolute;
    bottom: 10px;
    right: 0;
    left: 0;
    z-index: 10;
    margin: 0 auto;
    width: 310px;
    height: 427px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
    top: 480px;
  }
  .administrator2 {
    color: white;
    font-size: 18px;
    padding: 0 0 0 6%;
    margin: 0 0 4%;
    line-height: 2;
  }
  .feature {
    width: 100%;
    margin: 0 auto;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .branch__doctor {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .googlemaps {
    display: block;
    border-radius: 16px;
    text-align: center;
    margin: 32px auto 20px;
    width: 95%;
    height: 350px;
    max-width: 1000px;
  }
}
@media screen and (max-width: 468px) {
  .ss {
    display: inherit;
  }
  .noss {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .header__logo-link--title {
    margin: 0 0 0 8px;
  }
}
@media screen and (max-width: 599px) {
  .header__logo-link--title {
    margin: 0 0 0 8px;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 0;
  }
}

.header__item::before {
  display: none;
}

.header__item {
  margin: 0;
  color: #584634;
}

footer .footer__title {
  font-size: 27px;
  color: #171717;
  line-height: 1.2;
  margin: 0 0 0 16px;
}
@media screen and (max-width: 599px) {
  footer .footer__title {
    font-size: 18.5px;
    margin: 0 0 0 8px;
  }
}
@media screen and (max-width: 374px) {
  footer .footer__title {
    font-size: 17px;
  }
}

footer .footer__title--span {
  margin: 0;
}

footer .footer__dl {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

footer .footer__dd {
  color: #171717;
  margin-bottom: 0px;
  padding-left: 10px;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

footer .footer__dd--link {
  margin-top: 10px;
}

.footer__item::before {
  display: none;
}

footer .footer__list {
  padding-left: 0;
}

footer .footer__facebook-link {
  max-width: 320px;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}

footer .footer__inner {
  max-width: 1020px;
}

footer .footer__dl {
  margin: 0;
  max-width: 430px;
}

.side-cta-box__item::before {
  display: none;
}

.side-cta-box {
  padding: 0;
  z-index: 50;
}

@media screen and (max-width: 1024px) {
  footer .footer__dl {
    margin-bottom: 24px;
  }
}
.width100 {
  width: 492px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  margin-top: -165px;
}
@media screen and (max-width: 599px) {
  .width100 {
    margin-top: -26px;
    top: -124px;
    position: relative;
    width: 95%;
  }
}

.delta {
  border-right: 300px solid transparent;
  border-top: 235.6025px solid #FFA24D;
  border-left: 300px solid transparent;
  margin-top: -220px;
  margin-bottom: 85px;
}
@media only screen and (max-width: 1040px) {
  .delta {
    border-right: 181px solid transparent;
    border-top: 235.6025px solid #FFA24D;
    border-left: 181px solid transparent;
    margin-top: 14px;
    margin-bottom: 279px;
    font-size: 1.5em;
  }
}
.delta .s_text {
  color: white;
  font-size: 2.1em;
  position: absolute;
  top: -17px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  line-height: 1.5;
}
@media only screen and (max-width: 1040px) {
  .delta .s_text {
    width: 52%;
    font-size: 1.5em;
    top: 0px;
  }
}
.delta .s_text .s_text2 {
  font-size: 2.5em;
  letter-spacing: 6px;
}
@media only screen and (max-width: 1040px) {
  .delta .s_text .s_text2 {
    font-size: 1.2em;
  }
}

.circle {
  font-size: 1.5em;
  color: white;
  height: 51px;
  text-align: center;
  background-color: #FFA24D;
  border-radius: 50px;
  margin-bottom: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 1040px) {
  .circle {
    font-size: 1.2em;
  }
}

.branch-doctor2 {
  margin: 64px auto 96px auto;
  padding: 0 2vw;
}
@media only screen and (max-width: 1040px) {
  .branch-doctor2 {
    margin: 464px auto 96px auto;
  }
}

.branch-doctor {
  margin: 4px auto 96px auto;
  padding: 0 2vw;
}
@media only screen and (max-width: 1040px) {
  .branch-doctor {
    margin: 212px auto 96px auto;
  }
}

.branch-doctor3 {
  margin: 4px auto 96px auto;
  padding: 0 2vw;
}
@media only screen and (max-width: 1040px) {
  .branch-doctor3 {
    margin: 12px auto 96px auto;
  }
}

.branch-doctor__title {
  color: #846c53;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 28px;
}

.branch-guide__title {
  color: #846c53;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 28px;
}
@media screen and (max-width: 599px) {
  .branch-guide__title {
    margin: 0px auto 23px;
    width: 90%;
  }
}

@media screen and (max-width: 599px) {
  .urawa__access {
    padding-top: 110px;
  }
}

.title_text {
  text-align: center;
  margin-bottom: 25px;
  line-height: 1.6;
}
@media screen and (max-width: 599px) {
  .title_text {
    width: 86%;
    margin: 0 auto;
    text-align: start;
  }
}
.title_text a {
  text-decoration: underline;
  color: #ff881d;
}

.title_text2 {
  text-align: center;
}
@media screen and (max-width: 599px) {
  .title_text2 {
    width: 86%;
    margin: 0 auto;
    text-align: start;
  }
}
.title_text2 a {
  text-decoration: underline;
  color: #ff881d;
}

.branch-doctor__content {
  max-width: 1000px;
  margin: 0 auto;
  border: solid 1px #caab8b;
  border-radius: 20px;
  margin: 0 auto 50px;
  padding: 32px 2vw;
}
.branch-doctor__content .top-news__link {
  display: block;
}
.branch-doctor__content .top-news__link--title {
  margin-top: 7px;
  font-size: 1.2em;
}
.branch-doctor__content .news_urawa {
  font-weight: bold;
  color: #FFA24D;
}
.branch-doctor__content .news {
  font-weight: bold;
  color: #FFA24D;
}
.branch-doctor__content .temporarily-closed {
  font-weight: bold;
  color: #FFA24D;
}
.branch-doctor__content .temporarily-closed_urawa {
  font-weight: bold;
  color: #FFA24D;
}
.branch-doctor__week-doctor {
  font-size: 14px;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.branch-doctor__week-doctor--name {
  font-size: 24px;
  letter-spacing: 0.2em;
  font-weight: bold;
  margin-bottom: 32px;
}

.branch-doctor__career {
  display: inline-block;
  font-size: 20px;
  color: #fff;
  background-color: #caab8b;
  text-align: center;
  padding: 4px 24px 4px 24px;
  border-radius: 1em;
}

.branch-doctor__career__list {
  margin: 0 0 32px 0;
  padding: 0 0 0 1em;
}

.branch-doctor__career__item {
  color: #000;
  font-size: 14px;
}

/*なぜか作られているので削除*/
.branch-doctor__career__item::before {
  display: none;
}

.branch-doctor__license {
  display: inline-block;
  font-size: 20px;
  color: #fff;
  background-color: #caab8b;
  text-align: center;
  padding: 4px 24px 4px 24px;
  border-radius: 1em;
}

.branch-doctor__license__list {
  padding: 0 0 0 1em;
}

.branch-doctor__license__item {
  color: #000;
  font-size: 14px;
}

/*なぜか作られているので削除*/
.branch-doctor__license__item::before {
  display: none;
}

.top-access {
  background-color: #846C53;
  padding: 64px 0 124px;
}
@media screen and (max-width: 599px) {
  .top-access {
    padding: 63px 0 94px;
  }
}

.top-access__title {
  text-align: center;
  font-size: 2.4rem;
  letter-spacing: 0.06em;
  margin-bottom: 66px;
  color: #fff;
}
@media screen and (max-width: 599px) {
  .top-access__title {
    margin-bottom: 33px;
  }
}

.top-access__list {
  padding: 0 2vw;
}

.top-access__item {
  background-color: #fff;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 35px 32px;
  border-radius: 28px;
}
@media screen and (max-width: 599px) {
  .top-access__item {
    padding: 30px 4vw;
  }
}

.top-access__map-area {
  width: 45%;
}
@media screen and (max-width: 768px) {
  .top-access__map-area {
    width: 80%;
  }
}
@media screen and (max-width: 599px) {
  .top-access__map-area {
    width: 100%;
  }
}
.top-access__map-area--text {
  text-align: center;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  background-color: #846C53;
  color: #fff;
  line-height: 51px;
  border-radius: 25.5px;
}
@media screen and (max-width: 1024px) {
  .top-access__map-area--text {
    font-size: 2rem;
  }
}

.top-access__g-map--iframe {
  width: 100%;
  aspect-ratio: 931/411;
  border-radius: 28px;
}
@media screen and (max-width: 768px) {
  .top-access__g-map--iframe {
    aspect-ratio: 16/9;
  }
}
@media screen and (max-width: 599px) {
  .top-access__g-map--iframe {
    aspect-ratio: 1/1;
  }
}

.top-access__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 31px;
}
@media screen and (max-width: 1024px) {
  .top-access__contents {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .top-access__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.top-access__map-detail {
  border: solid 4px #846c53;
  border-radius: 12px;
  padding: 40px 0 25px 17px;
  margin-top: 32px;
  position: relative;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .top-access__map-detail {
    width: 80%;
  }
}
@media screen and (max-width: 599px) {
  .top-access__map-detail {
    width: 100%;
    padding: 40px 2vw 25px 2vw;
  }
}
.top-access__map-detail--title {
  font-size: 2.4rem;
  color: #846C53;
  display: inline-block;
  background-color: #fff;
  padding: 0 15px;
  position: absolute;
  top: -16px;
}

.top-access__dt {
  font-size: 2rem;
  font-weight: normal;
  color: #fff;
  background-color: #CAAB8B;
  display: inline-block;
  padding: 0 21px 0 12px;
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;
  line-height: 38px;
  margin-bottom: 7px;
}

.top-access__dd {
  margin-bottom: 18px;
  padding-left: 12px;
  padding-right: 12px;
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  line-height: 1.3;
  max-width: 396px;
  text-align: justify;
  color: #000;
}

.top-access__dd--link {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.08em;
}

.reception {
  color: #000;
  font-size: 1.2em;
  margin-bottom: 0px;
  display: block;
  font-weight: bold;
}
@media only screen and (max-width: 1070px) {
  .reception {
    margin-top: 10px;
  }
}

.box_rece {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 1070px) {
  .box_rece {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 20px;
  }
}
.box_rece .box_s {
  width: 47%;
  border: 5px solid #caab8b;
  padding: 1%;
  line-height: 2.2;
  border-radius: 5px;
}
@media only screen and (max-width: 1070px) {
  .box_rece .box_s {
    width: 100%;
    margin-bottom: 20px;
    padding: 4%;
  }
}
.box_rece strong {
  font-size: 1.1em;
  border-bottom: 1px solid;
}
@media only screen and (max-width: 1070px) {
  .box_rece strong {
    font-size: 1em;
  }
}

.fv_box {
  width: 90%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 32px;
}
@media only screen and (max-width: 1070px) {
  .fv_box {
    width: 90%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.fv_box .fv_shirightne {
  width: 500px;
  margin-right: 55px;
}
.fv_box .fv_shirightne p {
  margin-top: 20px;
  color: white;
}
@media only screen and (max-width: 1070px) {
  .fv_box .fv_shirightne {
    width: 100%;
    margin-bottom: 20px;
  }
}
.fv_box .fv_shirightne .fv_sshi_h3n {
  font-size: 2.5rem;
  color: white;
}
.fv_box .fv_shileftne {
  width: 500px;
  margin-left: 55px;
}
@media only screen and (max-width: 1070px) {
  .fv_box .fv_shileftne {
    width: 100%;
    margin-left: 0px;
  }
}

.aoki {
  color: #78ADD1;
  font-size: 2.2rem;
}

.suzuki {
  color: #9DC162;
  font-size: 2.2rem;
}

.matsu {
  color: #F58673;
  font-size: 2.2rem;
}

.ikui {
  color: #DEA634;
  font-size: 2.2rem;
}

.aoki2 {
  color: #78ADD1;
  font-size: 2rem;
}

.suzuki2 {
  color: #9DC162;
  font-size: 2rem;
}

.matsu2 {
  color: #F58673;
  font-size: 2rem;
  display: contents;
}

.ikui2 {
  color: #DEA634;
  font-size: 2rem;
}

.sugimura {
  color: #9DC162;
  font-size: 2.2rem;
}

.ito {
  color: #78ADD1;
  font-size: 2.2rem;
}

.touban {
  color: #A37B4F;
  font-size: 2.2rem;
}

.sugimura2 {
  color: #9DC162;
  font-size: 2rem;
}

.ito2 {
  color: #78ADD1;
  font-size: 2rem;
}

.touban2 {
  color: #A37B4F;
  font-size: 2rem;
}

.top-news__list {
  list-style: none;
  padding: 15px 10px;
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 20px;
}
.top-news__list .top-news__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
}
.top-news__list .top-news__item .top-news__link--time {
  color: #FFA24D;
  margin-right: 10px;
  font-size: 1.4rem;
}
.top-news__list .top-news__item span {
  display: inline-block;
  border-radius: 15px;
  padding: 1px 0px;
  font-size: 1.4rem;
  color: #fff;
  margin-right: 10px;
  background-color: #FFA24D;
  width: 80px;
  text-align: center;
}
.top-news__list .top-news__item span.temporarily-closed, .top-news__list .top-news__item span.temporarily-closed_urawa {
  background-color: #9CC262;
}
.top-news__list .top-news__item .top-news__link--title {
  color: #333;
  font-size: 1.8rem;
  margin-top: 7px;
  display: block;
  letter-spacing: 0px;
}

.news_list {
  text-align: center;
  font-size: 1.8rem;
  color: #cbab8c;
  position: relative; /* 必要に応じて親要素に相対位置を指定 */
  -webkit-transition: color 0.3s ease, background-color 0.3s ease;
  transition: color 0.3s ease, background-color 0.3s ease; /* アニメーションを追加 */
  display: block;
  border: 1px solid #cbab8c;
  border-radius: 10px;
  margin-top: 30px;
}
.news_list::after {
  content: "";
  display: inline-block;
  margin-left: 5px; /* テキストとマークの間隔 */
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8.7px; /* 三角形のサイズを調整 */
  border-color: transparent transparent transparent #cbab8c; /* 矢印の色 */
  vertical-align: middle;
  position: relative;
  top: -2px;
  margin-left: 7px;
}
.news_list:hover { /* ホバー時のスタイル */
  background-color: #a28870; /* 背景色を元の色に */
  color: #fff; /* テキスト色を白に */
  border: 1px solid #fff;
}
.news_list:hover::after { /* ホバー時の矢印の色 */
  border-color: transparent transparent transparent #fff; /* 白に変更 */
}

.doc_caution {
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .doc_caution {
    width: 80%;
  }
}
@media screen and (max-width: 599px) {
  .doc_caution {
    width: 100%;
  }
}

.text {
  text-align: center;
  text-decoration: underline;
  color: #fff;
  margin-top: 20px;
  display: block;
}

.top-footer {
  margin-top: 95px;
}
@media screen and (max-width: 599px) {
  .top-footer {
    margin-top: 50px;
  }
}

@media only screen and (min-width: 1041px) {
  .sp_obj {
    display: none !important;
  }
}
.footer__top-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1000px;
  padding: 0 2vw;
  width: 100%;
  margin: 0 auto 24px auto;
}
@media screen and (max-width: 599px) {
  .footer__top-contents {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.footer__logo-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2.7rem;
  font-weight: bold;
}
@media screen and (max-width: 468px) {
  .footer__logo-box {
    font-size: 2rem;
  }
}
.footer__logo-box--img {
  width: 65px;
}
@media screen and (max-width: 468px) {
  .footer__logo-box--img {
    width: 50px;
  }
}

.footer__title {
  margin-left: 15px;
}
@media screen and (max-width: 1024px) {
  .footer__title {
    margin-left: 10px;
  }
}
.footer__title--span {
  display: inline-block;
}
@media screen and (max-width: 1024px) {
  .footer__title--span {
    display: block;
    padding-left: 0;
  }
}

.footer__sns-box {
  width: 38%;
}
@media screen and (max-width: 599px) {
  .footer__sns-box {
    width: 0;
  }
}

.footer__sns_item {
  border-radius: 8px;
  margin: 0 auto 24px auto;
}

.footer__facebook-link {
  max-width: 320px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  line-height: 47px;
  color: #3B5998;
  background-color: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}
.footer__facebook-link--fb-icon {
  width: 27px;
  margin: 0 8px 0 11px;
}
.footer__facebook-link--box {
  background-color: #fff;
  max-width: 36px;
  width: 100%;
  height: 47px;
  background-color: #3B5998;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  /*隙間の調整*/
  margin-right: -1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer__facebook-link--box_img {
  width: 12px;
}
@media screen and (max-width: 768px) {
  .footer__facebook-link {
    display: none;
  }
}

.footer-sp__facebook-link {
  display: none;
}
@media screen and (max-width: 768px) {
  .footer-sp__facebook-link {
    display: inline-block;
    max-width: 50px;
  }
}
@media screen and (max-width: 599px) {
  .footer-sp__facebook-link {
    width: 27px;
  }
}

.footer__insta-link {
  max-width: 320px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  line-height: 47px;
  color: #e73162;
  background-color: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}
.footer__insta-link--fb-icon {
  width: 27px;
  margin: 0 8px 0 11px;
}
.footer__insta-link--box {
  background-color: #fff;
  max-width: 36px;
  width: 100%;
  height: 47px;
  background-color: #e73162;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  /*隙間の調整*/
  margin-right: -1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer__insta-link--box_img {
  width: 12px;
}
@media screen and (max-width: 768px) {
  .footer__insta-link {
    display: none;
  }
}

.footer-sp__insta-link {
  display: none;
}
@media screen and (max-width: 768px) {
  .footer-sp__insta-link {
    display: inline-block;
    max-width: 50px;
  }
}
@media screen and (max-width: 599px) {
  .footer-sp__insta-link {
    width: 27px;
  }
}

.footer-bg {
  background-color: #FBF9F7;
  padding: 32px 0 80px;
}

.footer__inner {
  max-width: 920px;
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    padding-right: 2vw;
    padding-left: 2vw;
  }
}

.footer__item-title {
  display: block;
  border-bottom: solid 1px #846C53;
  font-size: 2.4rem;
  font-weight: bold;
  padding-bottom: 5px;
  margin-bottom: 10px;
  color: #846C53;
}

.footer__contents-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .footer__contents-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footer__dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  max-width: 400px;
}
@media screen and (max-width: 1024px) {
  .footer__dl {
    margin-bottom: 22px;
  }
}

.footer__dt {
  width: 30%;
  margin-bottom: 10px;
  font-weight: normal;
  color: #fff;
  background-color: #CBBDAF;
  font-size: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 36px;
  border-radius: 18px;
}
@media screen and (max-width: 599px) {
  .footer__dt {
    width: 20%;
    font-size: 1.4rem;
    border-radius: 14px;
    line-height: 28px;
    padding: 0 2px;
  }
}
.footer__dt:last-of-type {
  margin-bottom: 0;
}

.footer__dd {
  width: 70%;
  margin-bottom: 10px;
  padding-left: 18px;
  font-size: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 599px) {
  .footer__dd {
    width: 80%;
    padding-left: 8px;
  }
}
.footer__dd:last-of-type {
  margin-bottom: 0;
}

.footer__dd--link {
  font-size: 1.9rem;
  font-weight: bold;
  text-decoration: underline;
}

.footer__table {
  width: 100%;
  max-width: 540px;
  border-collapse: separate;
  overflow: hidden;
  border-spacing: 0;
  text-align: center;
  border-radius: 8px;
  border: 3px solid #CBBDAF;
  color: #9D7751;
  font-size: 1.4rem;
  margin-bottom: 8px;
  table-layout: fixed;
}
@media screen and (max-width: 768px) {
  .footer__table {
    font-size: 2rem;
    border: 3px solid #CBBDAF;
  }
}
@media screen and (max-width: 599px) {
  .footer__table {
    font-size: 1.4rem;
    width: 100%;
    min-width: 320px;
  }
}

.footer__thead--th,
.footer__td {
  border-right: 3px solid #CBBDAF;
  border-bottom: 3px solid #CBBDAF;
  vertical-align: middle;
  border-top: none;
  border-left: none;
  width: 12.4%;
  padding: 14px 0;
  text-align: center;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .footer__thead--th,
  .footer__td {
    border-right: 3px solid #CBBDAF;
    border-bottom: 3px solid #CBBDAF;
  }
}
@media screen and (max-width: 599px) {
  .footer__thead--th,
  .footer__td {
    padding: 13px 0;
    width: 10%;
  }
}
.footer__thead--th:last-child,
.footer__td:last-child {
  border-right: none;
}

.footer__thead--th2,
.footer__td2 {
  border-right: 3px solid #CBBDAF;
  border-bottom: 3px solid #CBBDAF;
  vertical-align: middle;
  border-top: none;
  border-left: none;
  width: 12.4%;
  padding: 14px 0;
  text-align: center;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .footer__thead--th2,
  .footer__td2 {
    border-right: 3px solid #CBBDAF;
    border-bottom: 3px solid #CBBDAF;
  }
}
@media screen and (max-width: 599px) {
  .footer__thead--th2,
  .footer__td2 {
    padding: 13px 0;
    width: 1%;
  }
}
.footer__thead--th2:last-child,
.footer__td2:last-child {
  border-right: none;
}

.footer__td_first {
  width: 26.15%;
  padding-top: 14px;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 599px) {
  .footer__td_first {
    padding-top: 14px;
    width: 28%;
  }
}

.footer__td_first-1 {
  border-bottom: 3px solid #CBBDAF;
}
@media screen and (max-width: 768px) {
  .footer__td_first-1 {
    border-bottom: 3px solid #CBBDAF;
  }
}

.footer__tr_second .footer__td:nth-of-type(n + 2) {
  border-bottom: none;
}

.footer__td {
  background: #fff;
}

.footer__thead--blank,
.footer__td_first {
  border-right: 3px solid #CBBDAF;
}

.footer__thead--blank {
  border-bottom: 3px solid #CBBDAF;
  background-color: #FAF0E6;
  font-weight: normal;
  letter-spacing: 0.195em;
  padding-top: 14px;
  width: 40%;
  text-align: center;
}

.footer__thead--th {
  background-color: #FAF0E6;
}

.footer__td_rest {
  color: #E17100;
}

.footer__td_star {
  font-size: 16px;
}

.footer__schedule-box {
  width: 65%;
}
@media screen and (max-width: 599px) {
  .footer__schedule-box {
    width: 100%;
  }
}

.footer__schedule-box--text {
  color: #000;
  font-size: 14px;
}

.urawa_open {
  font-size: 0.7em;
  margin-left: 10px;
}

.copy-right {
  background-color: #444444;
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
  padding: 0px 2vw;
  letter-spacing: 0.1em;
  line-height: 166%;
}
.copy-right_br-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .copy-right_br-sp {
    display: block;
  }
}
@media screen and (max-width: 599px) {
  .copy-right_br-sp {
    font-size: 1rem;
  }
}

@media screen and (max-width: 599px) {
  #fix-sp-nav {
    width: 100%;
    bottom: 0;
    z-index: 20;
    position: fixed;
  }
  #fix-sp-nav span {
    font-size: 1.4rem;
  }
  #fix-sp-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    background-color: #ffa24e;
    border-top: #584634;
  }
  #fix-sp-nav ul .cv-btn {
    background-color: #8CB7A4;
    color: #fff;
  }
  #fix-sp-nav ul li {
    width: 33%;
    text-align: center;
    line-height: 1.2;
    padding: 17px 0;
  }
  #fix-sp-nav ul li a {
    color: #ffffff;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  #fix-sp-nav ul li a i {
    font-size: 20px;
    padding-bottom: 10px;
  }
  #fix-sp-nav ul li .cv-btn {
    background-color: #8CB7A4;
    color: #fff;
  }
  #fix-sp-nav ul li .reserve-fix1 {
    background-color: #8CB7A4;
  }
  #fix-sp-nav ul li .reserve-fix2 {
    background-color: #8CB7A4;
    border-left: 1px solid #8CB7A4;
    color: #8CB7A4;
  }
  #fix-sp-nav ul li:first-child a {
    border-left: none;
  }
}