@charset "UTF-8";
@media (min-width: 768px) {
  body {
    min-width: 1100px;
  }
}
/*---------------------------
wrap
----------------------------*/
#wrap {
  width: 100%;
}
@media screen and (max-width: 767px) {
  #wrap {
    overflow: hidden;
  }
}

/*---------------------------
header
----------------------------*/
.is-fixed {
  position: fixed !important;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background-color: black;
}
.is-fixed .inner .logo h1 {
  font-size: 0.6rem;
}
.is-fixed .inner .logo h1 img {
  margin-right: 0.1rem;
  transform: scale(0.9);
}
.is-fixed .inner .menu nav ul li a {
  font-size: 0.7rem;
}

/*---------------------------
nav
-----------------------------*/
nav {
  transition: 0.5s;
  -webkit-transition: 0.5s;
}
@media screen and (max-width: 767px) {
  nav {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 100;
  }
}
nav.view {
  left: 0;
  background-color: #111;
}
nav > ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  nav > ul {
    display: block;
  }
}
nav > ul li {
  list-style: none;
  display: block;
  padding: 0px;
  margin: 0px;
  letter-spacing: normal;
  width: 110px;
}
@media screen and (max-width: 767px) {
  nav > ul li {
    width: 100% !important;
  }
}
nav > ul li:nth-of-type(1) {
  width: 90px;
}
nav > ul li:nth-of-type(4) {
  width: 148px;
}
nav > ul li:nth-of-type(6) {
  width: 120px;
}
nav > ul li a {
  text-decoration: none;
  font-size: 0.8rem;
  font-family: "Libre Baskerville", serif;
  padding: 1.8rem 0.5rem;
  text-align: center;
  display: block;
  color: #fff !important;
  position: relative;
  letter-spacing: 1px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  nav > ul li a {
    border-bottom: 1px solid #333;
    text-align: left;
    padding: 1.5rem 1.5rem;
  }
  nav > ul li a::before {
    content: "-　";
  }
}
@media screen and (max-width: 767px) {
  nav > ul li a.current {
    background-color: #333;
  }
}
nav > ul li a.current::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fff;
  bottom: 15px;
  left: 0;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}
@media screen and (max-width: 767px) {
  nav > ul li a.current::before {
    display: none;
  }
}
nav > ul li a:hover {
  background: rgba(0, 0, 0, 0.6);
  font-size: 0.8rem;
}
@media screen and (max-width: 767px) {
  nav > ul li a:hover {
    border-radius: 0px;
  }
}
nav > ul li a:hover.current::before {
  transform: translateY(15px);
}
nav > ul li a span {
  animation-iteration-count: infinite;
}
nav > ul li a span:nth-of-type(2) {
  display: none;
}
nav > ul li a:hover span:nth-of-type(1) {
  display: none;
}
nav > ul li a:hover span:nth-of-type(2) {
  display: block;
  animation-name: expansion;
}
@keyframes expansion {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  nav > ul li:nth-of-type(1) a {
    padding: 1.9rem 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  nav > ul li:last-child {
    display: none;
  }
}
nav > ul li:last-child a {
  background: rgb(190, 0, 26);
  background: linear-gradient(90deg, rgb(190, 0, 26) 36%, rgb(136, 1, 19) 100%);
  transition: 0.5s;
  -webkit-transition: 0.5s;
}
@media screen and (max-width: 767px) {
  nav > ul li:last-child a::before {
    display: none;
  }
}
nav > ul li:last-child a:hover {
  background: linear-gradient(90deg, rgb(136, 1, 19) 36%, rgb(136, 1, 19) 100%);
}

/*---------------------------
footer
---------------------------*/
footer {
  margin-top: 1rem;
}
footer .img {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 767px) {
  footer .img {
    grid-template-columns: repeat(3, 1fr);
  }
}
footer .img img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  footer .img figure:nth-of-type(4) {
    display: none;
  }
}
footer ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  list-style: none;
}
footer ul li a {
  color: #fff !important;
  padding: 0 1.5rem;
  padding-left: 2rem;
  text-decoration: none;
}
footer ul li a:hover {
  text-decoration: underline;
}
footer ul.sitemap {
  background-color: #111111;
  padding: 3rem 0;
}
footer ul.sitemap li a {
  background-image: url(../img/common/icon_arrow_right.webp);
  background-repeat: no-repeat;
  background-position: center left;
  color: #555;
}
@media screen and (max-width: 767px) {
  footer ul.sitemap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0 10px;
    justify-items: flex-start;
    align-items: flex-start;
    padding: 2rem 5%;
  }
  footer ul.sitemap li {
    width: 100%;
    text-align: left;
  }
  footer ul.sitemap li a {
    font-size: 0.6rem;
  }
}
footer .inner {
  padding: 3rem 0;
}
@media screen and (max-width: 767px) {
  footer .inner {
    padding: 1.5rem 0;
  }
}
footer .inner .sns {
  padding-top: 4rem;
  display: none;
}
@media screen and (max-width: 767px) {
  footer .inner .sns {
    padding-top: 2rem;
  }
}
footer .inner .sns ul {
  justify-content: center;
}
footer .inner .sns ul li {
  width: 30px;
  height: 30px;
  margin: 0 10px;
}
footer .inner .sns ul li a {
  display: block;
  padding: 0 1rem;
  text-indent: 100px;
  white-space: nowrap;
  overflow: hidden;
  display: block;
}
footer .inner .sns ul li:nth-of-type(1) {
  background-image: url(../img/common/sns_icon_line.webp);
}
footer .inner .sns ul li:nth-of-type(2) {
  background-image: url(../img/common/sns_icon_x.webp);
}
footer .inner .sns ul li:nth-of-type(3) {
  background-image: url(../img/common/sns_icon_instagram.webp);
}
footer .inner .cr {
  padding-top: 2rem;
}
@media screen and (max-width: 767px) {
  footer .inner .cr {
    padding-top: 0;
  }
}
footer .inner .cr p {
  font-size: 0.8rem;
}
@media screen and (max-width: 767px) {
  footer .inner .cr p {
    font-size: 0.6rem;
  }
}
footer .inner .cr img {
  margin-bottom: 1rem;
  max-width: 200px;
  height: auto;
}
@media screen and (max-width: 767px) {
  footer .inner .cr img {
    max-width: 30%;
    margin-bottom: 0.5rem;
  }
}

.has-text-align-center a {
  color: #fff;
}

.bottom_company {
  margin-top: 2rem;
}

.bottom_sns {
  margin-top: 1rem;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
}

/*----------------------
main
------------------------*/
main {
  width: 100%;
  display: block;
}

/*---------------------------
common
-----------------------------*/
* .inner {
  max-width: 1000px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  * .inner {
    max-width: 90%;
  }
}

* {
  box-sizing: border-box;
}

.content_title {
  width: 100%;
  background-color: #111111;
  text-align: center;
}
.content_title .inner {
  padding: 60px 0px;
}
@media screen and (max-width: 640px) {
  .content_title .inner {
    /*sp*/
    padding: 30px 0px;
  }
}
.content_title .inner h1 {
  color: #fff;
  font-size: 1.6rem;
  font-family: "Libre Baskerville", serif;
  letter-spacing: 10px;
}
@media screen and (max-width: 767px) {
  .content_title .inner h1 {
    font-size: 1rem;
  }
}

.pagetop {
  width: 70px;
  height: 70px;
  background-color: #000;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  border: 1px solid #333;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .pagetop {
    width: 40px;
    height: 40px;
    bottom: 0;
    right: 0;
  }
}
.pagetop::after {
  content: "▲";
  color: #fff;
}

/*翻訳プラグインの装飾*/
#gt_float_wrapper {
  left: 10px !important;
  bottom: 10px !important;
  line-height: 1 !important;
  background-color: #333 !important;
}

@media screen and (max-width: 767px) {
  #gt_float_wrapper {
    left: 0px !important;
    bottom: 0px !important;
  }
}
#gt_float_wrapper a {
  font-size: 12px !important;
  background-color: #333 !important;
  color: #fff !important;
  line-height: 1 !important;
}

#gt_float_wrapper .gt-selected .gt-current-lang {
  font-size: 14px !important;
  background-color: #333 !important;
  color: #fff !important;
  line-height: 1 !important;
}

#gt_float_wrapper .gt_float_switcher {
  background: #333;
}

#gt_float_wrapper .gt_float_switcher .gt-selected .gt-current-lang {
  padding: 5px 10px !important;
  background-color: #333 !important;
  color: #fff !important;
}

.gt_float_switcher .gt_options a {
  padding: 5px 10px !important;
}