@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;
}

ご挨拶ページ背景 .page-category {
  background-image: url(../../img/news/category.png);
}
@media screen and (min-width: 1366px) {
  ご挨拶ページ背景 .page-category {
    background-size: 1920px auto;
  }
}
@media screen and (max-width: 768px) {
  ご挨拶ページ背景 .page-category {
    background-position: 30% 50%;
  }
}

.page__category_fv {
  background-image: url(../../../img/news/category.png);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  height: 50vh;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 420px;
  z-index: 0;
}
@media screen and (min-width: 1366px) {
  .page__category_fv {
    background-size: 1920px auto;
  }
}
@media screen and (max-width: 768px) {
  .page__category_fv {
    background-position: 30% 50%;
  }
}

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

.page_top {
  font-family: "Shippori Mincho", serif;
  margin: 0 auto;
  color: white;
  text-shadow: 1px 1px 4px black;
  font-size: 4.5rem;
}

.news-kv {
  background-color: #846C53;
  color: #fff;
  padding: 40px 2vw;
  margin: 0 auto;
}

.news-kv__inner {
  max-width: 1366px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

.news-kv__time {
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  font-weight: bold;
  display: inline-block;
}

.news-kv__title {
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 142%;
}

.news-kv__tags-list {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  max-width: 330px;
  width: 100%;
  margin: 0 auto;
}

.news-kv__tags-item {
  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: 6px 10px;
  background-color: #FFA24D;
  border-radius: 3px;
  font-size: 1.4rem;
  cursor: default;
}

.news-contents {
  background-color: #FFFAF4;
  padding: 36px 2vw 51px;
}

.news-contents__area {
  max-width: 1100px;
  width: 100%;
  background-color: #fff;
  margin: 0 auto 25px auto;
  padding: 40px 2vw 24px 2vw;
  line-height: 215%;
}
.news-contents__area .archive_category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 20%;
  min-height: 300px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .news-contents__area .archive_category {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    background-color: #ededed;
  }
}
.news-contents__area .archive_category .archive_title {
  background-color: #ededed;
  font-size: 1.8rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .news-contents__area .archive_category .archive_title {
    text-align: left;
    margin-left: 15px;
    font-weight: bold;
    margin-top: 15px;
  }
}
.news-contents__area .archive_category .archive_title .archive_category_title {
  background-color: #ededed;
  font-size: 1.8rem;
  text-align: center;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .news-contents__area .archive_category .archive_title .archive_category_title {
    text-align: left;
    font-weight: bold;
    margin-top: 15px;
  }
}
@media screen and (max-width: 768px) {
  .news-contents__area .archive_category .category-box {
    width: 50%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-left: 17px;
  }
}
.news-contents__area .archive_category .category-area {
  margin: 10px auto 45px;
  margin-left: 21%;
}
@media screen and (max-width: 768px) {
  .news-contents__area .archive_category .category-area {
    text-align: left;
    margin-left: 0;
  }
}
.news-contents__area .archive_category .category-area .month {
  line-height: 2.5;
  font-size: 1.8rem;
}
.news-contents__area .archive_category .category-area .month:before {
  content: "\f138";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .news-contents__area .archive_category .category-area .month {
    line-height: 2.4;
    font-size: 1.8rem;
    text-align: left;
    margin-left: 15px;
  }
}
.news-contents__area .archive_category .category-area ul {
  margin-top: 5px;
}
.news-contents__area .archive_category .category-area > li.cat-item {
  font-size: 1.8rem;
  color: #FFA24D;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .news-contents__area .archive_category .category-area > li.cat-item {
    margin-left: 15px;
    margin-bottom: 20px;
  }
}
.news-contents__area .archive_category .category-area > li.cat-item:before {
  content: "\f138";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
  margin-bottom: 10px;
}
.news-contents__area .archive_category .category-area > li.cat-item ul.children li.cat-item {
  font-size: 1.8rem;
  color: #584634;
  margin-left: 10px;
}
.news-contents__area .archive_category .category-area > li.cat-item ul.children li.cat-item:before {
  content: "\f138";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}
.news-contents__area .category-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .news-contents__area .category-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.news-contents__area .category-list .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 70%;
  margin-right: 70px;
}
@media screen and (max-width: 768px) {
  .news-contents__area .category-list .left {
    width: 95%;
    margin: 0 auto;
    margin-bottom: 45px;
  }
}
.news-contents__area .category-list .category-main {
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  background-color: #ededed;
  min-height: 300px;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .news-contents__area .category-list .category-main {
    width: 100%;
  }
}

.link {
  text-decoration: underline;
  margin-bottom: 45px;
  text-align: right;
  display: block;
  font-size: 1.6rem;
}

.post-time {
  color: #FFA24D;
  margin-right: 15px;
  font-size: 1.5rem;
  margin-top: 7px;
}

.top-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .top-date {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  .post_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.post-info {
  display: inline-block;
  border-radius: 15px;
  padding: 4px 0px;
  font-size: 1.5rem;
  color: #fff;
  margin-right: 10px;
  background-color: #FFA24D;
  width: 80px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .post-info {
    width: 70px;
    margin-right: 15px;
    padding: 0;
  }
}

.post-info.closed {
  background-color: #9CC262;
}

.news-contents__pagenation {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  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;
  font-size: 1.4rem;
}

.news-contents__pagenation-left,
.news-contents__pagenation-center,
.news-contents__pagenation-right {
  max-width: 50%;
  width: 100%;
}

.news-contents__pagenation-left {
  text-align: left;
  color: #fff;
}

.news-contents__pagenation-center {
  text-align: center;
}

.news-contents__pagenation-right {
  text-align: right;
  color: #fff;
}

.news-contents__right-link,
.news-contents__left-link {
  line-height: 35px;
}

.news-contents__left-link--prev,
.news-contents__right-link--next {
  background-color: #846C53;
  font-weight: bold;
  display: inline-block;
  padding: 6px 8px;
}

.news-contents__left-link--prev {
  border-top-left-radius: 7px;
  border-bottom-left-radius: 7px;
}

.news-contents__right-link--next {
  border-top-right-radius: 7px;
  border-bottom-right-radius: 7px;
}

.news-contents__left-link--title,
.news-contents__right-link--title {
  display: inline-block;
  background-color: #D9CDBF;
  padding: 6px 8px;
}
@media screen and (max-width: 768px) {
  .news-contents__left-link--title,
  .news-contents__right-link--title {
    display: none;
  }
}

.news-contents__left-link--title {
  border-top-right-radius: 7px;
  border-bottom-right-radius: 7px;
  margin-left: -6px;
}

.news-contents__right-link--title {
  border-top-left-radius: 7px;
  border-bottom-left-radius: 7px;
  margin-right: -6px;
}

.pageinate {
  text-align: center;
  font-size: 2rem;
  display: block;
  margin: 0 auto;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .pageinate {
    margin-bottom: 0px;
  }
}

.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;
  }
}
/*style.cssはsassにてコンパイルされていますので、sassでの編集をお願いいたします*/