@charset "UTF-8";
@media (max-width: 767px) {
  .sp_none {
    display: none;
  }
}

@media (min-width: 768px) {
  .pc_none {
    display: none;
  }
}

/* ----------------------------------------------
common
------------------------------------------------- */
body {
  color: #000000;
  font-size: 16px;
  background-color: #FBF2E3;
  line-height: 2;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}
body.m_fixed {
  padding-top: 90px;
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

a {
  color: #bd272d;
  font-weight: bold;
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}

strong {
  color: #000000;
  font-weight: bold;
}

img {
  max-width: 100%;
  height: auto;
}

.t-center {
  text-align: center;
}

.t-right {
  text-align: right;
}

.t-left {
  text-align: left;
}

.bold {
  font-weight: bold;
}

.red {
  color: #f00;
}

.opacity a {
  transition: all 0.5s ease-out;
}

.opacity a:hover {
  opacity: 0.6;
}

.big {
  font-size: 18px;
  line-height: 1.8;
}

/* ----------------------------------------------
side
------------------------------------------------- */
#side {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 4;
  transform: translateY(-50%);
}
#side li + li {
  margin-top: 20px;
}
#side a {
  transition: all 0.5s ease-out;
}
#side a:hover {
  opacity: 0.6;
}
@media (max-width: 1399px) {
  #side {
    width: 7.1428571429vw;
  }
}
@media (max-width: 767px) {
  #side {
    display: none;
  }
}

/* ----------------------------------------------
header
------------------------------------------------- */
#header {
  position: relative;
  z-index: 3;
}
#header.m_fixed {
  position: fixed;
  margin-top: 0;
  width: 100%;
  background-color: #FBF2E3;
  top: 0;
}
html.ccm-toolbar-visible #header.m_fixed {
  top: 48px;
}

#header.m_fixed .top {
  width: 100%;
  height: 90px;
}
#header.m_fixed .logo a img {
  width: 200px;
  max-width: unset;
}
#header .top {
  position: relative;
  width: 100%;
  height: 90px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 50px;
  text-align: center;
  display: flex;
  align-items: center;
}
#header .logo {
  position: absolute;
  left: 0;
  top: 0;
}
#header .logo img {
  transition: all 0.5s ease-out;
  min-width: 160px;
  width: 309px;
}
#header .links a {
  text-decoration: none;
  transition: all 0.5s ease-out;
}
#header .links a:hover {
  opacity: 0.6;
}
#header .ccm-search-block-form .ccm-search-block-text {
  outline: none;
}
#header .ccm-search-block-form .ccm-search-block-submit {
  transition: all 0.5s ease-out;
  cursor: pointer;
}
#header .ccm-search-block-form .ccm-search-block-submit:hover {
  opacity: 0.6;
}
@media (max-width: 1199px) {
  #header .logo {
    width: 220px;
  }
}
@media (max-width: 767px) {
  #header .top {
    height: 60px;
    padding-right: 60px;
  }
  #header .logo {
    width: unset;
  }
  #header .logo img {
    max-height: 120px;
    min-width: 0px;
    width: auto;
  }
}

#gnav {
  margin-left: auto;
}
#gnav > ul {
  display: flex;
  justify-content: end;
  width: 100%;
  margin: 0 auto;
  gap: 10px 25px;
}
#gnav > ul > li {
  position: relative;
  transition: all 0.5s ease-out;
}
#gnav > ul > li > a {
  transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-decoration: none;
  color: #603813;
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1.6;
  font-family: "bokutoh-ruika", sans-serif;
  font-weight: 100;
}
#gnav > ul > li > a:hover {
  opacity: 0.6;
}
#gnav > ul > li ul {
  position: absolute;
  top: 100%;
  left: 0;
  width: 200px;
  padding-top: 20px;
  background: transparent;
  z-index: 1;
  max-height: 0;
  overflow: hidden;
  display: block;
  transition: all 0.5s ease-out;
}
#gnav > ul > li ul li {
  display: flex;
  align-items: center;
  width: 100%;
  height: 50px;
  transition: all 0.4s ease-out;
}
#gnav > ul > li ul li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  transition: all 0.5s ease-out;
  background-color: #bd272d;
  color: #fff;
  padding: 0 17px;
  font-size: 16px;
  border-radius: 35px;
  text-decoration: none;
  display: flex;
  align-items: center;
}
#gnav > ul > li ul li a:hover {
  opacity: 0.6;
}
#gnav > ul > li ul li a::before {
  background-image: url(../images/pulldown-flow.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  content: ">";
  width: 8px;
  margin-right: 10px;
}
#gnav > ul > li ul li:not(:last-child) {
  margin-bottom: 2px;
}
#gnav > ul > li:hover > ul {
  max-height: 300px;
  opacity: 1;
  visibility: visible;
}
@media (max-width: 1199px) {
  #gnav {
    padding-left: 230px;
  }
  #gnav > ul {
    flex-wrap: wrap;
  }
  #gnav > ul > li > a {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  #gnav > ul {
    flex-direction: column;
  }
  #gnav > ul > li {
    flex-grow: 0;
  }
  #gnav > ul > li::after {
    display: none;
  }
  #gnav > ul > li > a {
    color: #fff;
  }
  #gnav > ul > li ul {
    display: block;
    opacity: 1;
    position: relative;
    padding: 0;
    max-height: unset;
    width: 100%;
  }
  #gnav > ul > li ul li {
    border-bottom: 0px;
    border-top: 1px solid #000;
    height: 40px;
  }
  #gnav > ul > li ul li a {
    background-color: unset;
    border-bottom: 1px solid #ffffff;
    border-radius: unset;
    padding-left: unset;
    padding-top: 5px;
  }
  #gnav > ul > li ul li a::before {
    display: none;
  }
}

/* ----------------------------------------------
pagetop
------------------------------------------------- */
#pagetop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 3;
  width: 50px;
  height: 50px;
  transition: all 0.5s ease-out;
}
#pagetop:hover {
  opacity: 0.6;
}
@media (max-width: 767px) {
  #pagetop {
    bottom: 55px;
    right: 10px;
    width: 40px;
    height: 40px;
  }
}

/*マウスオーバー時画像切り替え

#pagetop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 3;
  a {
    position: relative;
    display: block;
    width: 40px;
    height: 17px;
    img {
      @include transition();
      position: absolute;
      top: 0;
      &:last-child {
        opacity: 0;
      }
    }
    &:hover img:first-child {
      opacity: 0;
    }
    &:hover img:last-child {
      opacity: 1;
    }
  }
  @include sp {
   //display: none !important;
   bottom: 55px;
    right: 10px;
    width: 40px;
      height: 40px;
    a {

    }
  }
}

*/
#pagetop {
  position: absolute;
  top: -30px;
  right: 90px;
  z-index: 3;
  width: 60px;
  height: 60px;
  transition: all 0.5s ease-out;
}
#pagetop:hover {
  opacity: 0.6;
}
@media (max-width: 1500px) {
  #pagetop {
    right: 20px;
  }
}
@media (max-width: 767px) {
  #pagetop {
    top: -20px;
    right: 10px;
    width: 40px;
    height: 40px;
  }
}

/* ----------------------------------------------
footer
------------------------------------------------- */
#footer {
  background-color: #bd272d;
  color: #ffffff;
  padding: 70px 0;
  overflow: hidden;
}
#footer .inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  max-width: 1380px;
  display: flex;
  position: relative;
}
#footer .contents {
  display: flex;
  width: 100%;
}
#footer .right {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  min-width: 400px;
}
#footer .logo {
  margin-bottom: 30px;
}
#footer .logo a {
  transition: all 0.5s ease-out;
}
#footer .logo a:hover {
  opacity: 0.6;
}
#footer .text {
  font-size: 18px;
  letter-spacing: 0.1em;
  font-weight: 700;
  line-height: 1.7222222222;
}
#footer .tel a {
  display: flex;
  align-items: center;
  transition: all 0.5s ease-out;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 43px;
  color: #ffffff;
  line-height: 1.3;
}
#footer .tel a:hover {
  opacity: 0.6;
}
#footer .tel a img {
  display: flex;
  align-items: center;
  margin-right: 15px;
}
#footer .contact {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.5s ease-out;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.5s ease-out;
  width: 100%;
  margin-top: 15px;
  margin-bottom: 20px;
}
#footer .contact:hover {
  opacity: 0.6;
}
#footer .contact a {
  width: 100%;
  height: 70px;
  max-width: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bd272d;
  background-color: #ffffff;
  border-radius: 100px;
  text-decoration: none;
  background-image: url(../images/arrow2.webp);
  background-position: center right 35px;
  background-repeat: no-repeat;
  font-weight: 700;
  font-weight: 18px;
  padding-right: 20px;
}
#footer #copyright {
  font-size: 12px;
  line-height: 1.6;
  position: absolute;
  bottom: 0;
  right: 0;
  font-family: "bokutoh-ruika", sans-serif;
  font-weight: 100;
}
#footer #fnav {
  display: flex;
  gap: 0 70px;
  margin-left: auto;
  flex-shrink: 0;
}
#footer #fnav > ul > li > a {
  transition: all 0.5s ease-out;
  text-decoration: none;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.1em;
  color: #fff;
}
#footer #fnav > ul > li > a:hover {
  opacity: 0.6;
}
#footer #fnav > ul > li ul li {
  line-height: 1.8;
}
#footer #fnav > ul > li ul li::before {
  content: "・";
  font-size: 18px;
  color: #fff;
}
#footer #fnav > ul > li ul li a {
  transition: all 0.5s ease-out;
  text-decoration: none;
  font-size: 18px;
  letter-spacing: 0.1em;
  color: #fff;
}
#footer #fnav > ul > li ul li a:hover {
  opacity: 0.6;
}
@media (max-width: 1199px) {
  #footer .contents {
    display: block;
  }
  #footer .right {
    margin-left: unset;
    margin-top: 40px;
  }
  #footer #fnav {
    flex-wrap: wrap;
    display: block;
  }
  #footer #fnav > ul {
    min-width: unset;
  }
}
@media (max-width: 767px) {
  #footer {
    padding-top: 60px;
    padding-bottom: 40px;
  }
  #footer .inner {
    display: block;
  }
  #footer .contents {
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  #footer .right {
    margin-top: 30px;
  }
  #footer .text {
    font-size: 15px;
  }
  #footer .logo {
    width: 150px;
    margin-left: auto;
    margin-right: auto;
  }
  #footer .tel a {
    font-size: 30px;
  }
  #footer .tel a img {
    width: 18px;
  }
  #footer .contact {
    width: 280px;
  }
  #footer .contact a {
    height: 60px;
    font-size: 14px;
    background-position: center right 30px;
    background-size: 13px;
    padding-right: 40px;
  }
  #footer .right {
    min-width: unset;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  #footer #copyright {
    position: relative;
    text-align: center;
    margin-top: 40px;
  }
  #footer #fnav {
    margin-top: 40px;
    display: flex;
    gap: 7px 25px;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  #footer #fnav > ul {
    height: -moz-fit-content;
    height: fit-content;
  }
  #footer #fnav > ul > li:not(:first-child) {
    margin-top: 7px;
  }
  #footer #fnav > ul > li > a {
    font-size: 14px;
  }
  #footer #fnav > ul > li ul li {
    line-height: 1.6;
  }
  #footer #fnav > ul > li ul li a {
    font-size: 12px;
  }
}

/* ----------------------------------------------
contactbnr
------------------------------------------------- */
.contactbnr .inner {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}
.contactbnr .tel a,
.contactbnr .contact a {
  transition: all 0.5s ease-out;
  text-decoration: none;
}
.contactbnr .tel a:hover,
.contactbnr .contact a:hover {
  opacity: 0.6;
}
/* ----------------------------------------------
map
------------------------------------------------- */
.map iframe {
  width: 100%;
  height: 500px;
  display: block;
}
@media (max-width: 767px) {
  .map iframe {
    height: 280px;
  }
}/*# sourceMappingURL=style.css.map */