/*------------------------
  Common
------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

* > *:last-child {
  margin-bottom: 0;
}

html {
  overflow-x: hidden;
  overflow-y: scroll;
  font-size: 62.5%;
  visibility: hidden;
}

html.wf-active,
html.loading-delay {
  visibility: visible;
}

body {
  color: #282828;
  font: 1.5rem/1 "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: unset;
}

body a {
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  text-decoration: none;
  outline: none;
  color: #282828;
}

body a:hover {
  color: #282828;
  text-decoration: none;
  outline: none;
}

img {
  border: 0;
  outline: none;
  max-width: 100%;
  height: auto;
}

img.aligncenter {
  display: block;
  margin: 0 auto;
}

img.objectfit {
  object-fit: cover;
  font-family: "object-fit: contain;";
  object-position: center center;
  width: 100%;
  height: 100%;
}

@media all and (-ms-high-contrast: none) {
  img.objectfit {
    object-fit: none;
    width: 100%;
    height: auto;
  }
}
p {
  line-height: 2;
}

ul,
ol,
dl {
  line-height: 1.8;
}

ul,
ol {
  list-style: none;
}

.textright {
  text-align: right;
}

strong,
.fontbold {
  font-weight: 700;
}

.red-char {
  color: #b61e28;
}

.pc-none,
.for-laptop,
.mobile,
.for-se {
  display: none !important;
}

@media screen and (max-width: 999px) {
  .for-laptop {
    display: block !important;
  }

  .laptop-none {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pc-none {
    display: block !important;
  }

  .sp-none {
    display: none !important;
  }

  p {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 640px) {
  .mobile {
    display: block !important;
  }

  .wp-block-image .alignleft,
  .wp-block-image .alignright {
    float: none;
    max-width: 90%;
    margin: 20px auto;
  }
}
@media screen and (max-width: 374px) {
  .se-none {
    display: none !important;
  }

  .for-se {
    display: block !important;
  }
}
/*------------------------
  Layout
------------------------*/
main {
  display: block;
  overflow: hidden;
}

.container {
  padding: 10.5% 0 12.5%;
}
.container.top {
  padding-top: 0;
}
.container.bottom {
  padding-bottom: 0;
}

.wrapper {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 5.33vw;
  position: relative;
}
.wrapper.narrow {
  max-width: 930px;
}

.row {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.row.reverse {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.row.middle {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.row.bottom {
  -webkit-align-items: flex-end;
  align-items: flex-end;
}

.row.center {
  justify-content: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
}

.row.between {
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.row.endright {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.column-full {
  width: 100%;
}

.column-2 {
  width: 50%;
}

.column-3 {
  width: 33.33333%;
}

.column-4 {
  width: 25%;
}

.column-5 {
  width: 20%;
}

@media screen and (max-width: 768px) {
  .container {
    padding: 16% 0;
  }

  .row.reverse {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .column-2 {
    width: 100%;
  }
  .column-3 {
    width: 50%;
  }

  .column-4,
  .column-5 {
    width: 50%;
  }
}
/*------------------------
  Header
------------------------*/
#site-header {
  position: fixed;
  z-index: 10000;
  width: 100%;
  height: 90px;
  top: 0;
  left: 0;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  background-color: #fff;
}
#site-header.scrolled {
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}
#site-header .header-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  width: 100%;
  height: inherit;
}
#site-header #site-title {
  padding: 0 0 0 5vw;
}
#site-header #site-title a {
  display: block;
  width: 120px;
}

@media screen and (max-width: 768px) {
  #site-header {
    height: 80px;
  }
  #site-header #site-title {
    padding: 0 0 0 5.33vw;
  }
  #site-header #site-title a {
    width: 100px;
  }
  #site-header.active {
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
  }
}

/*------------------------
  Navigation PC
------------------------*/
#gnav.gnav {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
#gnav.gnav ul.menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-right: 35px;
}
#gnav.gnav ul.menu li a {
  display: block;
  text-align: center;
  padding: 0 15px;
  font-size: 1.5rem;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: #8a8a8a;
}
#gnav.gnav ul.menu li a:hover {
  color: #282828;
}

@media screen and (max-width: 999px) {
  #gnav.gnav ul.menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-right: 25px;
  }
  #gnav.gnav ul.menu li a {
    padding: 0 10px;
  }
}
@media screen and (max-width: 768px) {
  #gnav.gnav,
  #gnav.gnav.fixed {
    display: none;
  }
}
/*------------------------
  Toggle Nav
------------------------*/
.header-menu {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  width: 63px;
  height: 63px;
  padding: 20px 11px;
  visibility: hidden;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  justify-content: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
}
.header-menu.active {
  position: fixed;
}
.header-menu .line {
  background: #282828;
  width: 100%;
  height: 2px;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  position: relative;
  z-index: 1000;
}
.header-menu.active .line {
  width: 80%;
}
.header-menu.active .line.top {
  transform: rotate(-45deg);
  margin-top: 10px;
}
.header-menu.active .line.bottom {
  transform: rotate(45deg);
  transform-origin: 50% 50%;
  margin-top: -13px;
}

.open {
  display: none;
  padding: 54px 5.33333vw 30px;
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100vh;
  background: #fff;
  overflow-y: scroll;
  top: 0;
  left: 0;
}
.open .gnav ul.menu {
  max-width: 110px;
  margin: 0 auto;
}
.open .gnav ul.menu a {
  display: block;
  padding: 15px 0;
  font-size: 2rem;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}
.open .gnav ul.common-link {
  width: 140px;
  margin: 15px auto 0;
}
.open .gnav ul.common-link li {
  width: 50%;
  height: 70px;
}
.open .gnav ul.common-link li:nth-child(1) a {
  background-size: 25px auto;
}
.open .gnav ul.common-link li:nth-child(2) a {
  background-size: 25px auto;
}

@media screen and (max-width: 768px) {
  .header-menu {
    visibility: visible;
  }
}
/*------------------------
  Common Link
------------------------*/
.common-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.common-link li a {
  display: block;
  width: 60px;
  height: 60px;
  background-repeat: no-repeat;
  background-position: center;
  text-indent: -9999px;
  color: transparent;
}
.common-link li a:hover {
  opacity: 0.8;
}
.common-link li:nth-child(1) a {
  background-image: url("../images/common/icon-instagram.svg");
}
.common-link li:nth-child(2) a {
  background-image: url("../images/common/icon-mail.svg");
}

/*------------------------
  KV
------------------------*/
#kv {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 34.58vw;
  max-height: 515px;
  margin-top: 90px;
}
#kv::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.25;
  position: absolute;
  left: 0;
  top: 0;
}
#kv #page-title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 5.5rem;
  font-weight: 500;
  color: #fff;
}

@media screen and (max-width: 768px) {
  #kv {
    height: 58vw;
    margin-top: 80px;
  }
  #kv #page-title {
    font-size: 3.4rem;
  }
}
/*------------------------
  404
------------------------*/
body.error404 {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
}
body.error404 main {
  flex: 1;
}
body.error404 .container h3 {
  font-weight: 400;
  font-size: 3.2rem;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 40px;
}
body.error404 .container p {
  font-size: 1.4rem;
  text-align: center;
}

@media screen and (max-width: 768px) {
  body.error404 .container h3 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  body.error404 .container p {
    text-align: left;
    font-size: 1.3rem;
  }
}
/*------------------------
  Footer
------------------------*/
#site-footer {
  background: #282828;
  padding: 70px 0 50px;
  color: #fff;
}
#site-footer .row {
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
#site-footer .ft-nav ul.menu {
  line-height: 1;
  margin: -10px 0;
}
#site-footer .ft-nav ul.menu li a {
  color: #8a8a8a;
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  padding: 10px 0 10px 25px;
  position: relative;
  display: inline-block;
}
#site-footer .ft-nav ul.menu li a:before {
  content: "";
  width: 0;
  height: 1px;
  background: #8a8a8a;
  position: absolute;
  left: 0;
  top: 50%;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  margin-top: -1px;
}
#site-footer .ft-nav ul.menu li a:hover {
  color: #fff;
}
#site-footer .ft-nav ul.menu li a:hover::before {
  background: #fff;
}
#site-footer .ft-nav ul.menu li a:hover::before,
#site-footer .ft-nav ul.menu li.current-menu-item a::before {
  width: 15px;
}
#site-footer .ft-info h3 {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 25px;
}
#site-footer .ft-info p {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-top: 15px;
}
#site-footer .ft-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: column;
  flex-direction: column;
}
#site-footer .ft-link ul.menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
#site-footer .ft-link .common-link {
  margin: 0 -10px;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
#site-footer .ft-link .common-link li {
  margin: 0 10px;
}
#site-footer .ft-link .common-link li a {
  width: 20px;
  height: 15px;
}
#site-footer .ft-link .common-link li:nth-child(1) a {
  background-size: 15px auto;
}
#site-footer .ft-link .common-link li:nth-child(2) a {
  background-size: 18px auto;
}
#site-footer .ft-copy {
  margin-top: 30px;
  text-align: right;
  color: #8a8a8a;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
}

@media screen and (max-width: 768px) {
  #site-footer {
    padding: 50px 0 30px;
    margin-top: 30px; /*add*/
  }
  #site-footer .ft-nav {
    display: none;
  }
  #site-footer .ft-info {
    width: 100px;
    margin: 0 auto;
  }
  #site-footer .ft-info h3 {
    text-align: center;
    margin-bottom: 25px;
  }
  #site-footer .ft-info p {
    margin-top: 10px;
  }
  #site-footer .ft-link .common-link {
    margin: 30px 0 25px;
    justify-content: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
  }
  #site-footer .ft-link .common-link li {
    margin: 0 10px;
  }
  #site-footer .ft-link .common-link li a {
    width: 50px;
    height: 25px;
  }
  #site-footer .ft-link .common-link li:nth-child(1) a {
    background-size: 25px auto;
  }
  #site-footer .ft-link .common-link li:nth-child(2) a {
    background-size: 28px auto;
  }
  #site-footer .ft-copy {
    margin-top: 0;
    text-align: center;
  }
}
/*------------------------
  Scroll to Top
------------------------*/
.page-top {
  display: none;
  position: fixed;
  bottom: 5px;
  right: 20px;
  z-index: 800;
  width: 30px;
  height: 50px;
  display: block;
  cursor: pointer;
  color: transparent;
  font-size: 0;
  background: url("../images/common/icon-scroll.svg") no-repeat center
    center/20px auto;
}

@media screen and (max-width: 768px) {
  .page-top {
    bottom: 55px;
    right: 5px;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background-size: 15px auto;
  }
}
