@charset "UTF-8";

#header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: grid;
  place-items: flex-end center;
  width: 100%;
  height: 19rem;
  background: #fff;
  border-bottom: 1px solid #333;
}
@media screen and (max-width: 48em) {
  #header {
    height: 7.5rem;
  }
}

.header-text {
  width: 100%;
  font-size: 1.4rem;
  letter-spacing: 0;
  color: #FFF;
  background-color: #57372C;
  text-align: center;
  align-self: flex-start;
}
@media screen and (max-width: 48em) {
  .header-text {
    font-size: 1.0rem;
  }
}

.header-text-inner {
  max-width: 124rem;
  width: 100%;
  margin: 0 auto;
  padding: 0.5rem 0;
}

.header .container {
  width: 100%;
}
@media screen and (max-width: 69.375em) {
  .header .container {
    height: 100%;
  }
}

.header_contents {
  /*padding: 0 4rem;*/
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 69.375em) {
  .header_contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: space-between;
      -ms-flex-pack: space-between;
          justify-content: space-between;
  }
}

.header_logo {
  position: relative;
  z-index: 11;
  margin: 0 auto;
  width: 34rem;
}
@media screen and (max-width: 69.375em) {
  .header_logo {
    margin: 0;
    margin-left: 0.5rem;
    max-width: 20rem;
  }
}
@media screen and (max-width: 48em) {
  .header_logo {
    width: 57%;
    max-width: 12.2rem;
    margin-left: 0;
  }
}

.headerMenuContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-between;
      -ms-flex-pack: space-between;
          justify-content: space-between;
}
@media screen and (max-width: 69.375em) {
  .headerMenuContainer {
    flex-grow: 1;
    -webkit-box-pack: flex-end;
        -ms-flex-pack: flex-end;
            justify-content: flex-end;
  }
}

.gnavContainer {
  padding: 0 2rem;
}
@media screen and (max-width:69.375em) {
  .gnavContainer {
    display: contents;
    max-width: none;
  }
}

.gnavContainer .gnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

.header_contents .gnavBtn {
  display: none;
}
@media screen and (max-width: 69.375em) {
  .header_contents .gnavBtn {
    position: relative;
    z-index: 11;
    display: block;
    width: 5rem;
    height: 5rem;
    cursor: pointer;
    border-radius: 50%;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
}
@media screen and (max-width: 48em) {
  .header_contents .gnavBtn {
    width: 4rem;
    height: 4rem;
    margin-left: 0.5rem;
  }
}
@media (hover: hover) {
  .header_contents .gnavBtn:hover {
    opacity: 0.5;
  }
}
.header_contents .gnavBtn:focus-visible {
  opacity: 0.5;
}
.header_contents .gnavBtn_line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 55%;
  height: 2px;
  background: #333;
  border-radius: 99px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.header_contents .gnavBtn_line::before, .header_contents .gnavBtn_line::after {
  position: absolute;
  top: 1rem;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background: #333;
  border-radius: 99px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (max-width: 48em) {
  .header_contents .gnavBtn_line::before, .header_contents .gnavBtn_line::after {
    top: 0.6rem;
  }
}
.header_contents .gnavBtn_line::after {
  top: -1rem;
}
@media screen and (max-width: 48em) {
  .header_contents .gnavBtn_line::after {
    top: -0.6rem;
  }
}
.gnavContainer.-opened .gnavBtn_line {
  background: transparent;
}
.gnavContainer.-opened .gnavBtn_line::before, .gnavContainer.-opened .gnavBtn_line::after {
  top: 0;
  background: #fbf8ef;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.gnavContainer.-opened .gnavBtn_line::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.gnavContainer .gnavTtl {
  display: none;
  font-size: 4.0rem;
  font-weight: bold;
  line-height: 1;
  text-align: left;
  padding-bottom: .5em;
  border-bottom: solid 2px #333;
  width: 90%;
  margin: auto;
}
@media screen and (max-width: 69.375em) {
  .gnavContainer .gnavTtl {
    display: block;
  }
}
@media screen and (max-width: 24em) {
  .gnavContainer .gnavTtl {
    font-size: 2.0rem;
  }
}

.overlay {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.6) !important;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  transition: opacity .5s;
}
.overlay.active {
  width: 100%;
  height: 100vh;
  opacity: 1;
}

.overlay .close-btn {
  position: fixed;
  color: #FFF;
  display: inline-block;
  z-index: 999;
  top: 2rem;
  left: -88%;
  line-height: 1;
  transition: opacity 1s;
  height: 3rem;
  width: 3rem;
  margin-left: 0.5em;
  transition: all 500ms 0s;
}
.overlay.active .close-btn {
  left: 88%;
}

.overlay .close-btn::before,
.overlay .close-btn::after {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 2px;
  height: 100%;
  content: "";
  background: #FFF;
  -webkit-transition: -webkit-transform 0.3s;
  background: #FFF;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.overlay .close-btn::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media screen and (max-width:69.375em) {
  .gnavContainer,
  .gnavContainer::after {
    width: 88%;
    left: -88%;
    top: 0;
    transition: all 500ms 0s;
  }
  .gnavContainer {
    display: flex;
    flex-wrap: wrap;
    position: absolute;
    z-index: 99;
    height: 100vh;
    overflow-y: scroll;
    overflow-x: hidden;
    padding: 3rem 0;
    background: #FFF;
  }
  .gnavContainer.-opened {
    left: 0;
  }
}


.gnavContainer.-opened .gnav {
  display: block;
}
@media screen and (max-width: 69.375em) {
  .gnavContainer .gnav {
    display: block;
    width: 100%;
    height: auto;
    background: #FFF;
  }
}
.gnavContainer .gnavList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem clamp(0.8rem, 1.3020833333vw, 3rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 69.375em) {
  .gnavContainer .gnavList {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    max-width: 90%;
    margin: 0 auto;
    overflow: hidden;
  }
}
.gnavContainer .gnavList > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
@media screen and (max-width: 69.375em) {
  .gnavContainer .gnavList > li {
    border-bottom: 2px solid #333;
  }
}

@media screen and (max-width: 69.375em) {
  .gnavContainer .gnavList .hasChild {
    position: relative;
  }
  .gnavContainer .gnavList .hasChild {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: space-between;
      -ms-flex-pack: space-between;
          justify-content: space-between;
    flex-wrap: wrap;
  }
  .gnavContainer .gnavList .hasChild > a {
    display: block;
    position: relative;
  }
}

.gnavContainer .gnavList li.hasChild > a {
  position: relative;
}
.gnavContainer .gnavList li.hasChild > a::after {
  content: '';
  width: 0.5em;
  height: 0.5em;
  border-top: solid 2px #5abebb;
  border-right: solid 2px #5abebb;
  position: absolute;
  top: 100%; left: 0; right: 0;
  margin: auto;
  transform: rotate(135deg);
}
@media screen and (max-width: 69.375em) {
  .gnavContainer .gnavList li.hasChild > a {
    width: calc(100% - 1em);
  }
  .gnavContainer .gnavList li.hasChild > a::after {
    content: none;
  }
}

.gnavContainer .gnavList li.hasChild .accordion-btn {
  display: none;
}
@media screen and (max-width: 69.375em) {
  .gnavContainer .gnavList li.hasChild .accordion-btn {
    display: block;
    position: relative;
    height: 1em;
    width: 1em;
  }
}
@media screen and (max-width: 69.375em) {
  .gnavContainer .gnavList li.hasChild .accordion-btn::before {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    right: 0; left: auto;
    margin: auto;
    width: 15px;
    height: 2px;
    border:none;
    background-color: #333333;
    transition: .2s;
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
  }
  .gnavContainer .gnavList li.hasChild .accordion-btn::after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    margin: auto;
    width: 15px;
    height: 2px;
    background-color: #333333;
    transition: .3s;
  }
  .gnavContainer .gnavList li.hasChild .accordion-btn.current::before {
    transform: rotate(0);
  }
}

.gnavContainer .gnavList > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  /*font-size: clamp(1.4rem, 1.0416666667vw, 2rem);*/
  font-size: 1.6rem;
  font-weight: bold;
  -webkit-transition: color 0.1s;
  transition: color 0.1s;
  position: relative;
}
@media screen and (max-width: 69.375em) {
  .gnavContainer .gnavList > li > a {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%;
    min-height: auto;
    padding: 1rem 0;
    font-size: 3rem;
    font-weight: 500;
    color: #333;
    border-bottom: var(--dotted-line);
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
}
@media screen and (max-width: 48em) {
  .gnavContainer .gnavList > li > a {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 69.375em) {
  .gnavContainer .gnavList .hasChild {
    position: relative;
  }
}
@media (hover: hover) {
  .gnavContainer .gnavList .hasChild:hover .childrenArea {
    /* visibility: visible;
    opacity: 1; */
  }
}

.gnavContainer .gnavList .hasChild:focus-visible .childrenArea {
  /* visibility: visible;
  opacity: 1; */
}

.js_menuTrig {cursor: pointer;}
.gnavContainer .gnavList .childrenArea {
  position: absolute;
  top: 100%;
  left: 0;
  display: block;
  width: 100%;
  height: calc(100vh - 19rem);
  padding: 5rem 0;
  visibility: hidden;
  background: #FFF;
  border-top: solid 1px #333;
  border-bottom: solid 1px #333;
  opacity: 0;
  -webkit-transition: opacity 0.1s;
  transition: opacity 0.1s;
  overflow-y: scroll;

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


.gnavContainer .gnavList .childrenArea .container {
  max-width: 124rem;
  padding-right: 2rem;
  padding-left: 2rem;

  padding-bottom: 60px;
  position: relative;
}
@media (width > 768px){
  .gnavContainer .gnavList .childrenArea .container {}
}

@media screen and (max-width: 69.375em) {
  .gnavContainer .gnavList .childrenArea {
    position: static;
    display: none;
    padding: 3rem 1rem;
    visibility: visible;
    opacity: 1;
    height: auto;
    border-bottom: none;
    border-top: solid 2px #333;
  }
  .gnavContainer .gnavList .childrenArea .container {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 0;
  }
}
.gnavContainer .gnavList .children {
  display: grid;
  grid-template-rows: repeat(5, 1fr);
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: column;
  gap: 0.7rem;
  padding-bottom: 2.3rem;
  border-bottom: 1px solid #fbf8ef;
}
@media screen and (max-width: 69.375em) {
  .gnavContainer .gnavList .children {
    display: block;
    padding-bottom: 0;
    border: none;
  }
}
.gnavContainer .gnavList .children a {
  font-size: 1.6rem;
  font-weight: 500;
  color: #fbf8ef;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (max-width: 69.375em) {
  .gnavContainer .gnavList .children a {
    display: block;
    padding: 0.2em 0;
    font-size: 1.5rem;
    font-weight: normal;
  }
  .gnavContainer .gnavList .children a::before {
    padding-right: 0.2em;
    content: "−";
  }
}
@media (hover: hover) {
  .gnavContainer .gnavList .children a:hover {
    opacity: 0.7;
  }
}
.gnavContainer .gnavList .children a:focus-visible {
  opacity: 0.7;
}
.gnavContainer .hasChild:focus-within .childrenArea {
  /* visibility: visible;
  opacity: 1; */
}

.gnavContainer .menuList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3.4rem 2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 48em) {
  .gnavContainer .menuList {
    gap: 3rem 2rem;
  }
}
.gnavContainer .menuList > li {
  width: 18.3rem;
}
@media screen and (max-width: 48em) {
  .gnavContainer .menuList > li {
    width: calc(50% - 1rem);
  }
}
.gnavContainer .menuList a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .gnavContainer .menuList a:hover {
    opacity: 0.7;
  }
}
.gnavContainer .menuList a:focus-visible {
  opacity: 0.7;
}
.gnavContainer .menuList_pic {
  overflow: hidden;
  border-radius: 0.5rem;
  aspect-ratio: 1;
}
@media screen and (max-width: 48em) {
  .gnavContainer .menuList_pic {
    border-radius: 0.3rem;
  }
}
.gnavContainer .menuList_pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gnavContainer .menuList_name {
  margin-top: 0.6em;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
}
@media screen and (max-width: 48em) {
  .gnavContainer .menuList_name {
    margin-top: 0.7em;
    font-size: 2rem;
    line-height: 1.25;
    letter-spacing: 0.01em;
  }
}
@media screen and (max-width: 24em) {
  .gnavContainer .menuList_name {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 69.375em) {
  .gnavContainer .menuBtnArea {
    display: none;
  }
}

.gnavContainer .gnavSubList {
  display: none;
  width: 90%;
  margin: 0 auto;
  margin-top: 1rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 69.375em) {
  .gnavContainer .gnavSubList.sp {
    display: block;
  }
}
.gnavContainer .gnavSubList > li > a {
  display: inline-block;
  padding: 0.5em 0;
  font-size: 2.4rem;
  font-weight: 500;
  color: #333;
}
@media screen and (max-width: 48em) {
  .gnavContainer .gnavSubList > li > a {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 1080px) {
  .gnavContainer .gnavSubList > li > a {
    line-height: normal;
  }
}

.header_icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 69.375em) {
  .header_icons {
    margin-right: 0;
    margin-left: auto;
  }
}

.header_icon {
  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: 6rem;
  height: 6rem;
}
@media screen and (max-width: 69.375em) {
  .header_icon {
    width: 10rem;
    height: 10rem;
  }
}
@media screen and (max-width: 48em) {
  .header_icon {
    width: 4.8rem;
    height: 4.8rem;
  }
}

.header_ohkwabusiness {
  background-color: #DADF04;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.3;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (max-width: 69.375em) {
  .header_ohkwabusiness {
    font-size: 2.0rem;
  }
}
@media screen and (max-width: 48em) {
  .header_ohkwabusiness {
    font-size: 1.0rem;
  }
}

.header_tel {
  background-color: #E50012;
  text-align: center;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 69.376em) {
  .header_tel {
    display: none;
  }
}
.header_tel a::before {
  display: block;
  width: 2.7rem;
  height: 2rem;
  content: "";
  background: url("../images/icon_tel.svg") center center/contain no-repeat;
}
@media screen and (max-width: 69.375em) {
  .header_tel a::before {
    width: 5rem;
    height: 3.8rem;
  }
}
@media screen and (max-width: 48em) {
  .header_tel a::before {
    width: 2.7rem;
    height: 2rem;
  }
}

.header_mail {
  background-color: #57372C;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.header_mail a::before {
  display: block;
  width: 2.7rem;
  height: 2rem;
  content: "";
  background: url("data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%87%E3%82%B6%E3%82%A4%E3%83%B3%22%20data-name%3D%22%E3%83%87%E3%82%B6%E3%82%A4%E3%83%B3%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2041.03%2030%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.cls-1%20%7B%20fill%3A%20%23fff%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cpath%20class%3D%22cls-1%22%20d%3D%22M39.79%2C0H1.24C.55%2C0%2C0%2C.55%2C0%2C1.24v2.44l20.52%2C13.75L41.03%2C3.67V1.24c0-.68-.55-1.24-1.24-1.24Z%22%2F%3E%20%3Cpath%20class%3D%22cls-1%22%20d%3D%22M0%2C8.75v16.3c0%2C2.73%2C2.22%2C4.95%2C4.95%2C4.95h31.13c2.74%2C0%2C4.95-2.22%2C4.95-4.95V8.75l-20.52%2C13.75L0%2C8.75Z%22%2F%3E%3C%2Fsvg%3E") center center/contain no-repeat;
}
@media screen and (max-width: 69.375em) {
  .header_mail a::before {
    width: 5rem;
    height: 3.8rem;
  }
}
@media screen and (max-width: 48em) {
  .header_mail a::before {
    width: 2.7rem;
    height: 2rem;
  }
}

.header_line {
  padding: 1rem;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .header_line:hover, .header_mail:hover, .header_ohkwabusiness:hover {
    opacity: 0.7;
  }
}
.header_line:focus-visible,.header_mail:focus-visible, .header_ohkwabusiness:focus-visible {
  opacity: 0.7;
}


.fixedBnr {
  position: fixed;
  right: 2rem;
  bottom: 10rem;
  z-index: 99;
}
@media screen and (max-width: 48em) {
  .fixedBnr {
    display: none;
  }
}
.fixedBnr_bnr {
  position: relative;
}
.fixedBnr_bnr > * {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (hover: hover) and (hover: hover) {
  .fixedBnr_bnr > *:hover:hover {
    opacity: 0.7;
  }
}
@media (hover: hover) {
  .fixedBnr_bnr > *:hover:focus-visible {
    opacity: 0.7;
  }
}
@media (hover: hover) {
  .fixedBnr_bnr > *:focus-visible:hover {
    opacity: 0.7;
  }
}
.fixedBnr_bnr > *:focus-visible:focus-visible {
  opacity: 0.7;
}
.fixedBnr_bnr.fixedBnr_bnr__catalog {
  xbottom: 35rem;
}
.fixedBnr_bnr.fixedBnr_bnr__catalog .fixedBnr_btn {
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC%202%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2012%2012%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.cls-1%20%7B%20fill%3A%20FFF%3B%20stroke%3A%20%23fff%3B%20stroke-linecap%3A%20round%3B%20stroke-linejoin%3A%20round%3B%20stroke-width%3A%202px%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cg%20id%3D%22_%E3%83%98%E3%83%83%E3%83%80%E3%83%BC%22%20data-name%3D%22%E3%83%98%E3%83%83%E3%83%80%E3%83%BC%22%3E%20%3Cg%3E%20%3Cline%20class%3D%22cls-1%22%20x1%3D%221%22%20y1%3D%2211%22%20x2%3D%2211%22%20y2%3D%221%22%2F%3E%20%3Cline%20class%3D%22cls-1%22%20x1%3D%2211%22%20y1%3D%2211%22%20x2%3D%221%22%20y2%3D%221%22%2F%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E") center center/40% no-repeat;
  background-color: #eac52a;
}
.fixedBnr_bnr.fixedBnr_bnr__contact {
  xbottom: 10rem;
}
.fixedBnr_bnr.fixedBnr_bnr__contact .fixedBnr_btn {
  background-color: #333;
}
.fixedBnr_btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC%202%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2012%2012%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.cls-1%20%7B%20fill%3A%20none%3B%20stroke%3A%20%23fff%3B%20stroke-linecap%3A%20round%3B%20stroke-linejoin%3A%20round%3B%20stroke-width%3A%202px%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cg%20id%3D%22_%E3%83%98%E3%83%83%E3%83%80%E3%83%BC%22%20data-name%3D%22%E3%83%98%E3%83%83%E3%83%80%E3%83%BC%22%3E%20%3Cg%3E%20%3Cline%20class%3D%22cls-1%22%20x1%3D%221%22%20y1%3D%2211%22%20x2%3D%2211%22%20y2%3D%221%22%2F%3E%20%3Cline%20class%3D%22cls-1%22%20x1%3D%2211%22%20y1%3D%2211%22%20x2%3D%221%22%20y2%3D%221%22%2F%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E") center center/40% no-repeat;
  border-radius: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}


.bottomBnr {
  display: none;
}
@media screen and (max-width: 48em) {
  .bottomBnr {
    position: fixed;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: repeat(2, 1fr) 5rem;
    grid-row-gap: 0px;
    grid-column-gap: 0px;
    width: 100%;
  }
  .bottomBnr_bnr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.5rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height: 5rem;
    font-weight: bold;
    line-height: 1.17;
    color: #fff;
  }
  .bottomBnr_bnr::before {
    display: block;
    width: 2rem;
    height: 2rem;
    content: "";
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
  }
  .bottomBnr_bnr.bottomBnr_bnr__catalog {
    color: #eac52a;
    background-color: #333;
  }
  .bottomBnr_bnr.bottomBnr_bnr__catalog::before {
    color: #DADF04;
    background-image: url("../images/icon_catalog.svg");
  }
  .bottomBnr_bnr.bottomBnr_bnr__contact {
    color: #333;
    background-color: #5abebb;
  }
  .bottomBnr_bnr.bottomBnr_bnr__contact::before {
    background-image: url("data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%87%E3%82%B6%E3%82%A4%E3%83%B3%22%20data-name%3D%22%E3%83%87%E3%82%B6%E3%82%A4%E3%83%B3%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2041.03%2030%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.cls-1%20%7B%20fill%3A%20%23333%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cpath%20class%3D%22cls-1%22%20d%3D%22M39.79%2C0H1.24C.55%2C0%2C0%2C.55%2C0%2C1.24v2.44l20.52%2C13.75L41.03%2C3.67V1.24c0-.68-.55-1.24-1.24-1.24Z%22%2F%3E%20%3Cpath%20class%3D%22cls-1%22%20d%3D%22M0%2C8.75v16.3c0%2C2.73%2C2.22%2C4.95%2C4.95%2C4.95h31.13c2.74%2C0%2C4.95-2.22%2C4.95-4.95V8.75l-20.52%2C13.75L0%2C8.75Z%22%2F%3E%3C%2Fsvg%3E");
  }
  .bottomBnr_bnr.bottomBnr_bnr__pagetop {
    background-color: #333333;
  }
  .bottomBnr_bnr.bottomBnr_bnr__pagetop::before {
    height: 4.2rem;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC%202%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2040%2041.13%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.cls-1%20%7B%20fill%3A%20%23fff%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cg%20id%3D%22_%E3%83%98%E3%83%83%E3%83%80%E3%83%BC%22%20data-name%3D%22%E3%83%98%E3%83%83%E3%83%80%E3%83%BC%22%3E%20%3Cpath%20class%3D%22cls-1%22%20d%3D%22M22.86%2C9.92v28.34c0%2C.82-.28%2C1.5-.83%2C2.05-.55.55-1.23.83-2.05.83s-1.5-.28-2.05-.83c-.55-.55-.83-1.23-.83-2.05V9.92l-12.12%2C12.12c-.57.57-1.26.87-2.06.89-.8.02-1.49-.25-2.08-.83C.26%2C21.53-.02%2C20.83%2C0%2C20.03c.02-.81.32-1.51.89-2.09L17.9.92c.29-.28.62-.51.99-.67.37-.17.73-.25%2C1.1-.25s.73.08%2C1.09.25c.37.17.69.39.98.67l17.02%2C17.08c.61.63.92%2C1.33.92%2C2.1s-.31%2C1.43-.93%2C2c-.57.57-1.25.86-2.01.86s-1.44-.29-2.01-.86l-12.18-12.18Z%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
  }
  .bottomBnr img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}



/**************************************************************vv*/

/* Footer Rewrite Style */
.contactFooter_btns {
  flex-direction: row;
  flex-wrap: wrap;
  -webkit-box-pack: space-between;
      -ms-flex-pack: space-between;
  justify-content: space-between;
  gap: 2rem 1rem;
}

.contactFooter .telBtn {
  width: 100%;
}

.contactFooter .lineBtn {
  overflow: hidden;
  border-radius: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.9rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 10rem;
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.2;
  color: #231815;
  letter-spacing: 0.03em;
  background: #FFF;
}
.contactFooter .lineBtn.-half {
  width: calc(50% - 1rem);
}
@media screen and (max-width: 69.375em) {
  .contactFooter .lineBtn.-half {
    font-size: 2rem;
  }
}
@media screen and (max-width: 62.5em) {
  .contactFooter .lineBtn.-half {
    width: 100%;
  }
}
@media (max-width: 48em) {
  .contactFooter .lineBtn.-half {
    gap: 0.6rem;
    height: 6.1rem;
  }
}

.contactFooter .lineBtn::before {
  display: block;
  width: 4rem;
  height: 4rem;
  margin-top: 0.2rem;
  content: "";
  background: url("../images/icon_line.png") center center/contain no-repeat;
}
@media (max-width: 48em) {
  .contactFooter .lineBtn::before {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.contactFooter .formBtn.-half {
  font-size: 2.4rem;
  width: calc(50% - 1rem);
}
@media screen and (max-width: 69.375em) {
  .contactFooter .formBtn.-half {
    font-size: 2rem;
  }
}
@media screen and (max-width: 62.5em) {
  .contactFooter .formBtn.-half {
    width: 100%;
  }
}

/* Footer Rewrite Style */



/**************************************************************vv*/


/*大川家具グループフッター*/
.footer-ohkawa-group {
  background-color: #222;
}
.footer-ohkawa-group-logo {
  border-bottom: 1px solid #FFF;
  padding: 50px 0 35px;
  margin-bottom: 30px;
  text-align: center;
}
.footer-ohkawa-group-logo img {
  max-width: 300px;
  display: inline-block;
}
@media (max-width:767px) {
  .footer-ohkawa-group-logo {
    padding: 8% 0;
  }
  .footer-ohkawa-group-logo img {
    width: 50%;
  }
}

.footer-group-item {
  text-align: left;
}
.footer-group-item .footer-group-item-inner {
  display: flex;
  text-align: left;
}

.footer-group-list--main {
  display: flex;
  margin: 0 auto 60px;
  max-width: 1500px;
  width: 96%;
}
.footer-group-list--main .footer-group-item {
  border-right: solid 1px #FFF;
  flex: auto;
  padding: 10px 25px 0;
  text-align: left;
}
.footer-group-list--main .footer-group-item:last-child {
  border-right: none;
}
.footer-group-list--main .footer-group-item .footer-group-item-inner {
  flex-direction: column;
  height: 100%;
}
.footer-group-list--main .footer-group-item__logo {
  display: flex;
  align-items: flex-end;
  flex-grow: 1;
  margin-bottom: 10px;
  max-height: 170px;
}
.footer-group-list--main .footer-group-item__logo img {
  max-height: 100%;
  height: auto;
  width: auto;
}
.footer-group-list--main .footer-group-item .footer-group-item-desc {
  margin: 0;
}
.footer-group-item .footer-group-item__name {
  color: #FFF;
  font-size: 1.3vw;
  line-height: 1.3;
  margin-bottom: 5px;
  text-align: left;
}
.footer-group-item .footer-group-item__text {
  color: #FFF;
  font-size: 0.8vw;
  line-height: 1.5;
  text-align: left;
}
@media (max-width:1080px) {
  .footer-group-list--main {
    flex-wrap: wrap;
    margin-bottom: 5%;
  }
  .footer-group-list--main .footer-group-item {
    border-right: none;
    padding: 0 5%;
    margin-bottom: 5%;
    max-width: none;
    width: 50%;
  }
  .footer-group-item .footer-group-item__name {
    font-size: 22px;
  }
  .footer-group-item .footer-group-item__name.addSpanFont span{
    display:block;
  }
  .footer-group-item .footer-group-item__text {
    font-size: 14px;
  }
}


@media (max-width:640px) {
  .footer-group-list--main .footer-group-item__logo {
    height: 80px;
  }
  .footer-group-item .footer-group-item__name {
    font-size: 15px;
  }
  .footer-group-item .footer-group-item__text {
    font-size: 8px;
  }
}

.footer-group-list--sub {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 1500px;
  width: 96%;
}
.footer-group-list--sub .footer-group-item {
  padding: 0 10px 0 20px;
  margin-bottom: 40px;
  text-align: left;
  width: 33.33%;
}
.footer-group-list--sub .footer-group-item__logo {
  max-height: 110px;
  text-align: center;
}
.footer-group-list--sub .footer-group-item__logo img {
  max-height: 100%;
  height: auto;
  width: auto;
}
.footer-group-list--sub .footer-group-item .footer-group-item-desc {
  padding-left: 10px;
}
@media (max-width:1080px) {
  .footer-group-list--sub .footer-group-item {
    width: 50%;
  }
}
@media (max-width:768px) {
  .footer-group-list--sub .footer-group-item .footer-group-item-desc {
    display: none;
  }
  .footer-group-list--sub {
    flex-wrap: nowrap;
    margin-bottom: 5%;
  }
  .footer-group-list--sub .footer-group-item {
    padding: 0 2%;
    width: auto;
  }
}
/*大川家具グループフッター end */
