@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;
  line-height: 2;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

a {
  color: #ff0000;
  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;
  position: absolute;
  z-index: 6;
  width: 100%;
}
#header.open #gnav {
  background-color: unset;
  display: flex;
}
#header.m_fixed {
  position: fixed;
  margin-top: 0;
  width: 100%;
  background-color: #000000;
  top: 0;
  transition: all 0.5s ease-out;
}
#header.m_fixed .top {
  width: 100%;
  height: 96px;
}
#header.m_fixed .logo {
  z-index: 3;
}
#header.m_fixed .logo a:nth-child(1) {
  display: none;
}
#header.m_fixed .logo a:nth-child(2) {
  display: block;
}
#header .top {
  position: relative;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  text-align: center;
}
#header .logo {
  z-index: 5;
  padding-left: 25px;
  padding-top: 20px;
  width: 145px;
}
#header .logo a:nth-child(1) {
  display: block;
}
#header .logo a:nth-child(2) {
  display: none;
}
#header .logo img {
  min-width: 160px;
}
#header .inner {
  display: none;
  background-color: #000000;
  width: 100%;
  height: 100vh;
  z-index: 6;
  position: fixed;
  left: 0;
  top: 0;
}
#header .inner .contents {
  display: flex;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
}
#header .nav-logo a {
  transition: all 0.5s ease-out;
}
#header .nav-logo a:hover {
  opacity: 0.6;
}
#header .links {
  margin-top: 40px;
}
#header .links ul {
  display: flex;
  gap: 20px;
}
#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: 767px) {
  #header .top {
    height: 60px;
    padding-right: 60px;
  }
  #header .logo {
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 0;
  }
  #header .logo img {
    max-height: 50px;
    min-width: 0px;
    width: auto;
  }
  #header .left {
    margin-right: auto;
    margin-top: auto;
  }
  #header .inner .contents {
    flex-direction: column;
  }
  #header .nav-logo {
    width: 170px;
  }
  #header .nav-logo a {
    transition: all 0.5s ease-out;
  }
  #header .nav-logo a:hover {
    opacity: 0.6;
  }
  #header .links {
    margin-top: 30px;
  }
  #header .links ul {
    display: flex;
    gap: 20px;
  }
  #header .links li {
    width: 30px;
  }
  #header .links a {
    text-decoration: none;
    transition: all 0.5s ease-out;
  }
  #header .links a:hover {
    opacity: 0.6;
  }
}

.left {
  flex-shrink: 0;
  margin-left: auto;
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#gnav {
  width: 100%;
  height: 100%;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}
#gnav > ul {
  margin-top: auto;
  margin-bottom: auto;
  height: -moz-fit-content;
  height: fit-content;
}
#gnav > ul > li {
  position: relative;
  transition: all 0.5s ease-out;
}
#gnav > ul > li::after {
  content: "";
  display: block;
  position: absolute;
  height: 2px;
  background-color: #000;
  bottom: 0px;
  left: calc((100% - 50px) / 2);
  z-index: 0;
  width: 0;
  transition: all 0.5s ease-out;
}
#gnav > ul > li:hover::after {
  width: 50px;
}
#gnav > ul > li:hover > ul {
  visibility: visible;
  opacity: 1;
}
s #gnav > ul > li.current {
  border-top: solid 5px #e99100;
}
#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: #333;
  line-height: 1.6;
  font-family: "acumin-variable", sans-serif;
  font-variation-settings: "slnt" 0, "wdth" 100, "wght" 500;
  font-size: 30px;
}
#gnav > ul > li > a:hover {
  opacity: 0.6;
}
#gnav > ul > li ul {
  position: absolute;
  top: 100%;
  visibility: hidden;
  width: 100%;
  opacity: 0;
  transition: all 0.5s ease-out;
  z-index: 1;
}
#gnav > ul > li ul li a {
  transition: all 0.5s ease-out;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
@media (max-width: 767px) {
  #gnav {
    height: unset;
    margin-bottom: auto;
  }
  #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 {
    visibility: visible;
    opacity: 1;
    position: relative;
    padding: 0;
  }
  #gnav > ul > li ul li {
    border-bottom: 0px;
    border-top: 1px solid #000;
  }
}

/* ----------------------------------------------
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: #000000;
  color: #ffffff;
  padding-top: 120px;
  padding-bottom: 70px;
}
#footer .inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}
#footer .logo {
  margin-bottom: 40px;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
#footer .logo a {
  transition: all 0.5s ease-out;
}
#footer .logo a:hover {
  opacity: 0.6;
}
#footer #copyright {
  font-size: 14px;
  line-height: 1.6;
  font-family: "acumin-variable", sans-serif;
  font-variation-settings: "slnt" 0, "wdth" 100, "wght" 500;
  text-align: center;
}
#footer .links {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}
#footer .links ul {
  display: flex;
  gap: 20px;
}
#footer .links ul li a {
  transition: all 0.5s ease-out;
}
#footer .links ul li a:hover {
  opacity: 0.6;
}
#footer #fnav {
  margin-bottom: 100px;
}
#footer #fnav > ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 30px;
}
#footer #fnav > ul > li > a {
  transition: all 0.5s ease-out;
  text-decoration: none;
  color: #ffffff;
  font-family: "acumin-variable", sans-serif;
  font-variation-settings: "slnt" 0, "wdth" 100, "wght" 500;
  font-size: 16px;
}
#footer #fnav > ul > li > a:hover {
  opacity: 0.6;
}
#footer #fnav > ul > li ul li::before {
  content: "―";
  padding: 0 10px;
}
#footer #fnav > ul > li ul li a {
  transition: all 0.5s ease-out;
  text-decoration: none;
}
#footer #fnav > ul > li ul li a:hover {
  opacity: 0.6;
}
@media (max-width: 767px) {
  #footer {
    padding-top: 50px;
    padding-bottom: 30px;
  }
  #footer .logo {
    width: 200px;
  }
  #footer .links ul li {
    width: 30px;
  }
  #footer #fnav {
    margin-bottom: 60px;
  }
  #footer #fnav > ul {
    gap: 7px 25px;
  }
}

/* ----------------------------------------------
contactbnr
------------------------------------------------- */
.contactbnr {
  background-image: url(../images/contact-bg.webp);
  background-size: cover;
  background-position: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: #ffffff;
  padding-top: 100px;
  padding-bottom: 80px;
}
.contactbnr .inner {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}
.contactbnr h2 {
  font-size: 80px;
  color: #ffffff;
  line-height: 1.3;
  font-weight: bold;
  font-family: "acumin-variable", sans-serif;
  font-variation-settings: "slnt" -12, "wdth" 115, "wght" 600;
  text-align: center;
  margin-bottom: 50px;
}
.contactbnr h2 small {
  margin-bottom: 10px;
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media (max-width: 1199px) {
  .contactbnr h2 {
    font-size: 45px;
  }
  .contactbnr h2 small {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .contactbnr h2 {
    font-size: 30px;
  }
  .contactbnr h2 small {
    font-size: 16px;
  }
}
.contactbnr .text {
  font-size: 22px;
  letter-spacing: 0.1em;
  line-height: 1.9545454545;
  text-align: center;
  margin-bottom: 50px;
}
.contactbnr .text2 {
  background-color: #ff0000;
  max-width: 1000px;
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 2.15;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding: 10px;
  margin-bottom: 40px;
}
.contactbnr .btn {
  height: 40px;
  border: solid 1px #ffffff;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.contactbnr .btn:hover {
  opacity: 0.6;
}
.contactbnr .btn a {
  width: 245px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  background-image: url(../images/arrow.png);
  background-position: center right 20px;
  background-repeat: no-repeat;
  font-family: "acumin-variable", sans-serif;
  font-variation-settings: "slnt" 0, "wdth" 100, "wght" 400;
  letter-spacing: 0.3em;
}
.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;
}
@media (max-width: 767px) {
  .contactbnr {
    padding-top: 60px;
  }
  .contactbnr h2 {
    margin-bottom: 35px;
  }
  .contactbnr .text {
    font-size: 15px;
    margin-bottom: 40px;
  }
  .contactbnr .text2 {
    font-size: 14px;
  }
  .contactbnr .btn a {
    width: 220px;
  }
}/*# sourceMappingURL=style.css.map */