@charset "UTF-8";
@font-face {
  font-family: bebas;
  src: url("../fonts/bebas.ttf") format("truetype");
}

@font-face {
  font-family: antonio;
  src: url("../fonts/antonio-Regular.ttf") format("truetype");
}

@font-face {
  font-family: antonio;
  src: url("../fonts/antonio-Bold.ttf") format("truetype");
  font-weight: bold;
}

/*******
front
*****************************/
#front #splash {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #fff;
  text-align: center;
}

#front #splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#front #splash_logo img {
  width: 420px;
}

@media screen and (max-width: 768px) {
  #front #splash_logo img {
    width: 250px;
  }
}

#front .fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#front #front-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100vh;
}

#front #front-menu h1 {
  width: 420px;
  margin-right: 30px;
}

@media screen and (max-width: 768px) {
  #front #front-menu h1 {
    margin-right: 0;
  }
}

@media screen and (max-width: 768px) {
  #front #front-menu h1 {
    width: 250px;
  }
}

#front #front-menu ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
}

@media screen and (max-width: 768px) {
  #front #front-menu ul {
    margin-top: 60px;
  }
}

#front #front-menu ul li a {
  font-family: 'bebas';
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  #front #front-menu ul li a {
    font-size: 16px;
  }
}

#front #front-menu ul li a:hover {
  color: #E8E8E8;
}

#front #front-menu ul li + li {
  margin-left: 25px;
}

/*******
header
*****************************/
.Hd {
  width: 100%;
  padding: 30px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 12;
}

@media screen and (max-width: 768px) {
  .Hd {
    padding: 15px;
  }
}

.Hd figure {
  width: 160px;
}

@media screen and (max-width: 768px) {
  .Hd figure {
    width: 130px;
  }
}

@media screen and (max-width: 450px) {
  .Hd figure {
    width: 70px;
  }
}

.Hd .nav-box {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.Hd .nav-box li:first-of-type {
  width: 35px;
  margin-right: 70px;
}

@media screen and (max-width: 768px) {
  .Hd .nav-box li:first-of-type {
    margin-right: 30px;
  }
}

@media screen and (max-width: 450px) {
  .Hd .nav-box li:first-of-type {
    width: 30px;
    margin-right: 15px;
  }
}

.Hd .nav-box li#online {
  display: none;
}

.Hd .nav-box li#HAM {
  position: relative;
  width: 50px;
  height: 35px;
}

@media screen and (max-width: 450px) {
  .Hd .nav-box li#HAM {
    width: 30px;
    height: 30px;
  }
}

.Hd .nav-box li#HAM span {
  position: absolute;
  content: '';
  height: 4px;
  background: #000;
  display: inline-block;
  transition: all .5s;
  box-sizing: border-box;
  right: 0;
}

@media screen and (max-width: 450px) {
  .Hd .nav-box li#HAM span {
    height: 2px;
  }
}

.Hd .nav-box li#HAM span:first-of-type {
  width: 50px;
  top: 0;
}

@media screen and (max-width: 450px) {
  .Hd .nav-box li#HAM span:first-of-type {
    width: 20px;
  }
}

.Hd .nav-box li#HAM span:nth-of-type(2) {
  width: 40px;
  top: 11px;
}

@media screen and (max-width: 450px) {
  .Hd .nav-box li#HAM span:nth-of-type(2) {
    width: 25px;
    top: 8px;
  }
}

.Hd .nav-box li#HAM span:nth-of-type(3) {
  width: 30px;
  top: 22px;
}

@media screen and (max-width: 450px) {
  .Hd .nav-box li#HAM span:nth-of-type(3) {
    width: 30px;
    top: 17px;
  }
}

.Hd .nav-box li#HAM.active span:first-of-type {
  width: 30px;
}

@media screen and (max-width: 450px) {
  .Hd .nav-box li#HAM.active span:first-of-type {
    width: 30px;
  }
}

.Hd .nav-box li#HAM.active span:nth-of-type(3) {
  width: 50px;
}

@media screen and (max-width: 450px) {
  .Hd .nav-box li#HAM.active span:nth-of-type(3) {
    width: 20px;
  }
}

.Hd .nav-box li:hover {
  cursor: pointer;
}

/*******
navi
*****************************/
#navi {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 11;
  padding-top: 60px;
  padding-left: 200px;
  display: none;
}

@media screen and (max-width: 768px) {
  #navi {
    padding-left: 80px;
  }
}

@media screen and (max-width: 450px) {
  #navi {
    padding-left: 15px;
  }
}

#navi::before {
  position: absolute;
  content: '';
  background: url(../img/common/feeble02.png) no-repeat;
  background-size: contain;
  width: 45%;
  height: 300px;
  left: 200px;
  bottom: 0;
}

@media screen and (max-width: 768px) {
  #navi::before {
    height: 180px;
    left: 80px;
    bottom: 100px;
  }
}

@media screen and (max-width: 450px) {
  #navi::before {
    bottom: 0;
    left: 15px;
  }
}

#navi .nav-ttl {
  font-size: 28px;
  font-family: 'antonio';
  font-weight: bold;
  position: relative;
  padding-left: 160px;
}

@media screen and (max-width: 768px) {
  #navi .nav-ttl {
    font-size: 20px;
  }
}

@media screen and (max-width: 450px) {
  #navi .nav-ttl {
    font-size: 16px;
    padding-left: 80px;
  }
}

#navi .nav-ttl::before {
  width: 140px;
  height: 2px;
  position: absolute;
  content: '';
  background: #000;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 450px) {
  #navi .nav-ttl::before {
    font-size: 16px;
    width: 60px;
  }
}

#navi .navBox {
  padding-top: 25px;
}

#navi .navBox-list {
  z-index: 10;
}

#navi .navBox-list li a {
  font-size: 52px;
  font-family: 'antonio';
  font-weight: bold;
  letter-spacing: 5.5px;
}

@media screen and (max-width: 768px) {
  #navi .navBox-list li a {
    font-size: 22px;
  }
}

@media screen and (max-width: 450px) {
  #navi .navBox-list li a {
    font-size: 18px;
  }
}

#navi .navBox-list li + li {
  margin-top: 15px;
}

#navi .navBox-list li:hover a {
  color: #E8E8E8;
}

#navi .navBox .insta {
  padding-top: 50px;
}

#navi .navBox .insta a {
  position: relative;
  font-size: 18px;
  font-family: 'antonio';
  font-weight: bold;
  letter-spacing: 5px;
  padding-left: 45px;
}

@media screen and (max-width: 768px) {
  #navi .navBox .insta a {
    font-size: 16px;
  }
}

@media screen and (max-width: 450px) {
  #navi .navBox .insta a {
    font-size: 14px;
  }
}

#navi .navBox .insta a::before {
  position: absolute;
  content: '';
  background: url(../img/common/icon-insta.png) no-repeat;
  background-size: contain;
  width: 30px;
  height: 30px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  #navi .navBox .insta a::before {
    width: 25px;
    height: 25px;
  }
}

/*******
page-navi
*****************************/
.pageNav {
  margin-top: 120px;
}

.pageNav .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pageNav .page-numbers li span,
.pageNav .page-numbers li a {
  font-family: 'antonio';
  font-size: 25px;
}

.pageNav .page-numbers li span {
  color: #999;
}

.pageNav .page-numbers li + li {
  margin-left: 15px;
}

.pageNav .wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pageNav .wp-pagenavi .pages {
  display: none;
}

.pageNav .wp-pagenavi span,
.pageNav .wp-pagenavi a {
  font-family: 'antonio';
  font-size: 25px;
}

.pageNav .wp-pagenavi span.current {
  margin-left: 15px;
  color: #999;
}

.pageNav .wp-pagenavi a {
  width: inherit;
  margin-left: 15px;
}

.pageNav .wp-pagenavi a.nextpostslink, .pageNav .wp-pagenavi a.previouspostslink {
  display: none;
}

.single-pagenav {
  margin-top: 150px;
}

.single-pagenav .pagenav_cnt {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.single-pagenav .pagenav_cnt a {
  width: inherit;
}

.single-pagenav .pagenav_cnt a:hover {
  color: #E8E8E8;
}

.single-pagenav .pagenav_cnt a span {
  font-size: 18px;
  font-family: 'antonio';
  font-weight: bold;
}

/*******
title
*****************************/
h2.ttl {
  font-family: 'bebas';
  font-size: 32px;
  margin-bottom: 60px;
  text-align: left;
}

@media screen and (max-width: 768px) {
  h2.ttl {
    font-size: 22px;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 450px) {
  h2.ttl {
    font-size: 20px;
    margin-bottom: 30px;
  }
}

h3.ttl {
  font-family: 'bebas';
  font-size: 32px;
  margin-bottom: 60px;
  text-align: left;
}

@media screen and (max-width: 768px) {
  h3.ttl {
    font-size: 22px;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 450px) {
  h3.ttl {
    font-size: 18px;
    margin-bottom: 30px;
  }
}

/*******
btn
*****************************/
.btn-more {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .btn-more {
    width: 120px;
    height: 120px;
  }
}

@media screen and (max-width: 450px) {
  .btn-more {
    width: 90px;
    height: 90px;
  }
}

.btn-more a {
  display: inline-block;
  width: 100%;
  height: 100%;
  position: relative;
}

.btn-more a::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px #000 dashed;
  animation: 10s linear infinite rotation1;
}

@keyframes rotation1 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

.btn-more a::after {
  position: absolute;
  content: 'MORE';
  font-family: bebas;
  font-size: 18px;
  transform: translateX(-50%) translateY(-50%);
  left: 50%;
  top: 50%;
  transition: .3s;
}

@media screen and (max-width: 768px) {
  .btn-more a::after {
    font-size: 14px;
  }
}

@media screen and (max-width: 450px) {
  .btn-more a::after {
    font-size: 12px;
  }
}

.btn-more a:hover::after {
  font-size: 22px;
}

.btn-more02 {
  background: #000;
  text-align: center;
  width: 255px;
}

.btn-more02 a {
  display: inline-block;
  width: 100%;
  color: #fff;
  font-size: 23px;
  font-family: 'bebas';
  padding: 15px 0;
  transition: ease .2s;
  z-index: 3;
  position: relative;
}

@media screen and (max-width: 450px) {
  .btn-more02 a {
    font-size: 14px;
    text-align: center;
  }
}

.btn-more02 a::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #E8E8E8;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}

.btn-more02 a:hover {
  color: #000;
}

.btn-more02 a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

/*******
アニメーション
*****************************/
@keyframes flash {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.fadein-top {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  transform: translateY(80px);
}

.fadein-top.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/*******
mv
*****************************/
#mv {
  width: 100%;
  margin: 0 auto;
  background: url(../img/common/bg.png) no-repeat center;
  background-size: cover;
  overflow: hidden;
}

#mv_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  position: relative;
}

#mv_wrapper .cursor {
  position: absolute;
  top: 300px;
  left: 300px;
  width: 200px;
  height: 200px;
  background: url(../img/common/light.png) no-repeat center;
  background-size: contain;
  transition: 0.2s;
  transition-timing-function: ease-out;
  pointer-events: none;
  z-index: 10;
}

@media screen and (max-width: 450px) {
  #mv_wrapper .cursor {
    display: none;
  }
}

#mv_wrapper figure {
  width: 550px;
  margin: 0 auto;
}

@media screen and (max-width: 450px) {
  #mv_wrapper figure {
    width: 300px;
  }
}

@keyframes light {
  from {
    transform: scale(0.6, 0.6);
  }
  to {
    transform: scale(1, 1);
  }
}

@media screen and (max-width: 450px) {
  #mv {
    position: relative;
  }
  #mv::before {
    position: absolute;
    content: '';
    animation: flash 1s linear infinite;
    width: 180px;
    height: 180px;
    background: url(../img/common/light.png) no-repeat center;
    background-size: contain;
    left: 15px;
    top: 55%;
    transform: translateY(-50%);
  }
}

/*******
sv
*****************************/
.suv {
  padding-top: 250px;
}

@media screen and (max-width: 768px) {
  .suv {
    padding-top: 180px;
  }
}

.suv h2 {
  font-size: 92px;
  font-family: 'antonio';
  padding-bottom: 130px;
  letter-spacing: 7px;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .suv h2 {
    font-size: 28px;
    padding-bottom: 80px;
  }
}

@media screen and (max-width: 450px) {
  .suv h2 {
    font-size: 20px;
    padding-bottom: 40px;
  }
}

.suv .breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: 35px;
}

@media screen and (max-width: 768px) {
  .suv .breadcrumbs {
    padding-top: 25px;
  }
}

.suv .breadcrumbs li a {
  font-size: 15px;
  font-family: 'antonio';
  letter-spacing: 2px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .suv .breadcrumbs li a {
    font-size: 12px;
  }
}

.suv .breadcrumbs li + li {
  margin-left: 15px;
}

/*******
footer
*****************************/
#reserve {
  background: #fff;
}

@media screen and (max-width: 768px) {
  #reserve {
    padding: 90px 15px;
  }
}

@media screen and (max-width: 450px) {
  #reserve {
    padding: 60px 15px;
  }
}

#reserve div {
  width: 100%;
  position: relative;
  border: solid 1px #000;
}

#reserve div .ttl {
  position: absolute;
  content: '';
  text-align: center;
  background: #fff;
  left: 50%;
  top: -25px;
  transform: translateX(-50%);
  padding: 0 15px;
}

#reserve div p {
  padding-top: 60px;
  text-align: center;
}

@media screen and (max-width: 450px) {
  #reserve div p {
    font-size: 13px;
  }
}

#reserve div p span {
  color: #9F1547;
  font-weight: bold;
}

#reserve div ul {
  margin: 0 auto;
  padding: 50px 0 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  #reserve div ul {
    flex-direction: column;
  }
}

@media screen and (max-width: 450px) {
  #reserve div ul {
    padding: 30px 0 50px;
  }
}

#reserve div ul li {
  width: 380px;
  border: solid 1px #000;
}

@media screen and (max-width: 450px) {
  #reserve div ul li {
    width: 85%;
  }
}

#reserve div ul li a {
  display: inline-block;
  width: 100%;
  padding: 15px 0;
  text-align: center;
  font-family: 'bebas';
  font-size: 23px;
  letter-spacing: 7px;
}

@media screen and (max-width: 450px) {
  #reserve div ul li a {
    font-size: 15px;
  }
}

#reserve div ul li a span {
  font-size: 18px;
}

@media screen and (max-width: 450px) {
  #reserve div ul li a span {
    font-size: 13px;
  }
}

#reserve div ul li + li {
  margin-left: 60px;
}

@media screen and (max-width: 768px) {
  #reserve div ul li + li {
    margin-left: 0;
    margin-top: 35px;
  }
}

#reserve div ul li:first-of-type a {
  background: #000;
  color: #fff;
}

#imgArea {
  width: 100%;
  padding-bottom: 0;
}

#reserveBtn {
  position: fixed;
  right: 0;
  top: 72%;
  z-index: 10;
}

@media screen and (max-width: 450px) {
  #reserveBtn {
    width: 100%;
    top: auto;
    bottom: 0;
  }
}

#reserveBtn p {
  padding: 23px 40px 23px 30px;
  border-radius: 50px 0 0 50px;
  background: #000;
  position: relative;
}

@media screen and (max-width: 450px) {
  #reserveBtn p {
    border-radius: 0;
    padding: 15px 0;
    text-align: center;
  }
}

#reserveBtn p::before {
  position: absolute;
  content: '';
  background: url(../img/common/reserv-icon-w.png) center no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

@media screen and (max-width: 450px) {
  #reserveBtn p::before {
    right: 37%;
    transform: translateY(-50%) translateX(100%);
  }
}

#reserveBtn p a {
  color: #fff;
  font-family: 'bebas';
  font-size: 18px;
}

@media screen and (max-width: 450px) {
  #reserveBtn p a {
    letter-spacing: 2px;
    font-size: 15px;
  }
}

#pagetop {
  position: fixed;
  right: 20px;
  bottom: 25px;
  z-index: 10;
}

@media screen and (max-width: 450px) {
  #pagetop {
    display: none;
  }
}

#pagetop a {
  width: 30px;
}

#footer {
  background: #E8E8E8;
  padding-top: 80px;
}

@media screen and (max-width: 450px) {
  #footer {
    padding-top: 30px;
  }
}

#footer figure {
  width: 160px;
}

@media screen and (max-width: 768px) {
  #footer figure {
    width: 120px;
  }
}

@media screen and (max-width: 450px) {
  #footer figure {
    width: 60px;
  }
}

#footer .ft-menu {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 0 40px;
  margin: 0 auto;
  padding: 80px 0 50px;
}

@media screen and (max-width: 768px) {
  #footer .ft-menu {
    grid-template-columns: 1fr 1fr;
    grid-gap: 40px 20px;
  }
}

@media screen and (max-width: 450px) {
  #footer .ft-menu {
    grid-template-columns: 1fr;
    padding: 50px 0;
  }
}

#footer .ft-menu li:not(.menu) dl dt {
  font-family: 'bebas';
  font-size: 18px;
  margin-bottom: 25px;
}

#footer .ft-menu li:not(.menu) dl dd {
  font-size: 15px;
}

@media screen and (max-width: 450px) {
  #footer .ft-menu li:not(.menu) dl dd {
    font-size: 12px;
  }
}

#footer .ft-menu li:not(.menu) dl dd + dd {
  margin-top: 25px;
}

#footer .ft-menu li:not(.menu) dl dd span {
  font-size: 13px;
}

#footer .ft-menu li:not(.menu) dl dd.insta {
  position: relative;
  padding-left: 35px;
}

#footer .ft-menu li:not(.menu) dl dd.insta::before {
  position: absolute;
  content: '';
  width: 25px;
  height: 25px;
  background: url(../img/common/icon-insta.png) no-repeat;
  background-size: contain;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

#footer .ft-menu li:not(.menu) dl dd.insta a {
  font-size: 15px;
  font-family: 'antonio';
}

#footer .ft-menu li:not(.menu) dl + dl {
  margin-top: 60px;
}

@media screen and (max-width: 450px) {
  #footer .ft-menu li:not(.menu):first-of-type {
    grid-row: 3/4;
  }
}

@media screen and (max-width: 450px) {
  #footer .ft-menu li:not(.menu):nth-of-type(2) {
    grid-row: 4/5;
  }
}

@media screen and (max-width: 450px) {
  #footer .ft-menu li:not(.menu):last-of-type {
    grid-row: 1/3;
  }
}

#footer .ft-menu .menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 40px 0;
}

@media screen and (max-width: 450px) {
  #footer .ft-menu .menu {
    grid-gap: 15px 0;
  }
}

#footer .ft-menu .menu dl dt a {
  font-family: 'bebas';
  font-size: 18px;
}

@media screen and (max-width: 450px) {
  #footer .ft-menu .menu dl dt a {
    font-size: 15px;
  }
}

#footer .ft-menu .menu dl:last-of-type {
  grid-column: 1/3;
}

#footer .ft-menu .menu dl:last-of-type dd {
  padding-top: 25px;
}

@media screen and (max-width: 450px) {
  #footer .ft-menu .menu dl:last-of-type dd {
    padding-top: 0;
  }
}

#footer .ft-menu .menu dl:last-of-type dd p {
  font-size: 15px;
  padding-top: 25px;
}

@media screen and (max-width: 450px) {
  #footer .ft-menu .menu dl:last-of-type dd p {
    font-size: 13px;
  }
}

#footer .ft-menu .menu dl:last-of-type dd p.ft-btn {
  width: 100%;
}

@media screen and (max-width: 450px) {
  #footer .ft-menu .menu dl:last-of-type dd p.ft-btn {
    width: 90%;
  }
}

#footer .ft-menu .menu dl:last-of-type dd p.ft-btn a {
  display: inline-block;
  width: 100%;
  padding: 20px 0;
  font-size: 23px;
  color: #fff;
  background: #000;
  text-align: center;
  font-family: 'bebas';
  letter-spacing: 7px;
}

@media screen and (max-width: 450px) {
  #footer .ft-menu .menu dl:last-of-type dd p.ft-btn a {
    font-size: 15px;
  }
}

#footer .copyBox {
  padding: 40px 0;
  border-top: solid 1px #000;
}

@media screen and (max-width: 450px) {
  #footer .copyBox {
    padding: 20px 0 80px;
  }
}

#footer .copyBox p {
  text-align: center;
}

#footer .copyBox p small {
  font-size: 15px;
}

@media screen and (max-width: 450px) {
  #footer .copyBox p small {
    font-size: 11px;
  }
}

/*******
style
*****************************/
@font-face {
  font-family: bebas;
  src: url("../fonts/bebas.ttf") format("truetype");
}

@font-face {
  font-family: antonio;
  src: url("../fonts/antonio-Regular.ttf") format("truetype");
}

@font-face {
  font-family: antonio;
  src: url("../fonts/antonio-Bold.ttf") format("truetype");
  font-weight: bold;
}

/*******
top
*****************************/
#top .area-cnt .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

#top .area-cnt .wrapper figure {
  width: 53%;
  z-index: 1;
}

@media screen and (max-width: 450px) {
  #top .area-cnt .wrapper figure {
    width: 95%;
  }
}

#top .area-cnt .wrapper-textBox {
  width: 44%;
}

@media screen and (max-width: 450px) {
  #top .area-cnt .wrapper-textBox {
    width: 100%;
  }
}

#top .area-cnt .wrapper-textBox p {
  font-size: 16px;
}

@media screen and (max-width: 1024px) {
  #top .area-cnt .wrapper-textBox p {
    font-size: 15px;
  }
}

@media screen and (max-width: 768px) {
  #top .area-cnt .wrapper-textBox p {
    font-size: 14px;
  }
}

#top #concept {
  position: relative;
  overflow: hidden;
}

#top #concept::before {
  position: absolute;
  content: '';
  width: 500px;
  height: 260px;
  background: url(../img/common/feeble02.png) no-repeat center;
  background-size: contain;
  bottom: 10px;
  left: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 450px) {
  #top #concept::before {
    width: 170px;
    height: 100px;
    bottom: 240px;
    left: 50%;
  }
}

@media screen and (max-width: 450px) {
  #top #concept .wrapper {
    flex-direction: column-reverse;
  }
}

#top #concept .wrapper-textBox {
  padding-right: calc(calc(100% - 1300px)/2);
}

@media screen and (max-width: 1024px) {
  #top #concept .wrapper-textBox {
    padding-right: 15px;
  }
}

@media screen and (max-width: 450px) {
  #top #concept .wrapper-textBox {
    padding: 0 15px 40px;
  }
}

#top #concept .wrapper-textBox div {
  font-size: 16px;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  #top #concept .wrapper-textBox div {
    font-size: 14px;
  }
}

#top #concept .wrapper-textBox div h1 {
  line-height: 2;
  text-align: left;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  #top #concept .wrapper-textBox div h1 {
    font-size: 14px;
  }
}

#top #information {
  position: relative;
}

@media screen and (max-width: 450px) {
  #top #information .wrapper {
    flex-direction: column;
  }
}

#top #information .wrapper-textBox {
  padding-left: calc(calc(100% - 1300px)/2);
}

@media screen and (max-width: 1024px) {
  #top #information .wrapper-textBox {
    padding-left: 15px;
  }
}

@media screen and (max-width: 450px) {
  #top #information .wrapper-textBox {
    padding: 0 15px 40px;
  }
}

#top #information .wrapper-textBox dl dt {
  font-family: 'antonio';
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 18px;
}

@media screen and (max-width: 450px) {
  #top #information .wrapper-textBox dl dt {
    font-size: 16px;
  }
}

#top #information .wrapper-textBox dl dd {
  font-size: 14px;
}

@media screen and (max-width: 450px) {
  #top #information .wrapper-textBox dl dd {
    font-size: 13px;
  }
}

#top #information .wrapper-textBox dl + dl {
  margin-top: 35px;
}

@media screen and (max-width: 768px) {
  #top #information .wrapper-textBox dl + dl {
    margin-top: 25px;
  }
}

@media screen and (max-width: 450px) {
  #top #information .wrapper-textBox dl + dl {
    margin-top: 20px;
  }
}

#top #information .btn-more {
  position: absolute;
  content: '';
  bottom: -100px;
  left: 48%;
  transform: translateY(-50%) translateX(-50%);
}

@media screen and (max-width: 1024px) {
  #top #information .btn-more {
    left: 55%;
  }
}

@media screen and (max-width: 450px) {
  #top #information .btn-more {
    left: auto;
    bottom: 190px;
    right: 15px;
    transform: inherit;
  }
}

#top #menu {
  margin-top: 150px;
  padding-top: 90px;
  padding-bottom: 90px;
  position: relative;
}

@media screen and (max-width: 1024px) {
  #top #menu {
    padding: 90px 15px;
    margin-top: 60px;
  }
}

@media screen and (max-width: 450px) {
  #top #menu {
    padding: 60px 15px;
  }
}

#top #menu .ttl {
  text-align: center;
}

@media screen and (max-width: 768px) {
  #top #menu .ttl {
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 450px) {
  #top #menu .ttl {
    margin-bottom: 40px;
  }
}

#top #menu .ani-line {
  display: inline-block;
  width: 0;
  height: 2px;
  background: #000;
  transition: all .7s;
  opacity: 0;
  position: absolute;
  content: '';
}

@media screen and (max-width: 450px) {
  #top #menu .ani-line {
    height: 1px;
  }
}

#top #menu .ani-line.line01 {
  left: 0;
  top: 0;
}

#top #menu .ani-line.line02 {
  right: 0;
  top: 20px;
}

@media screen and (max-width: 450px) {
  #top #menu .ani-line.line02 {
    top: 10px;
  }
}

#top #menu .ani-line.line03 {
  right: 0;
  bottom: 20px;
}

@media screen and (max-width: 450px) {
  #top #menu .ani-line.line03 {
    bottom: 10px;
  }
}

#top #menu .ani-line.line04 {
  left: 0;
  bottom: 0;
}

#top #menu .ani-line.active {
  width: 97%;
  opacity: 1;
}

@media screen and (max-width: 450px) {
  #top #menu .ani-line.active {
    width: 85%;
  }
}

#top #menu .menu-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 70px;
}

@media screen and (max-width: 1024px) {
  #top #menu .menu-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 768px) {
  #top #menu .menu-list {
    grid-gap: 50px 50px;
  }
}

@media screen and (max-width: 450px) {
  #top #menu .menu-list {
    grid-template-columns: 1fr;
    grid-gap: 30px 0;
  }
}

#top #menu .menu-list li p {
  font-family: 'antonio';
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

@media screen and (max-width: 768px) {
  #top #menu .menu-list li p {
    font-size: 16px;
  }
}

#top #menu .menu-list li p span {
  font-size: 12px;
}

#top #menu .menu-list li dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 768px) {
  #top #menu .menu-list li dl {
    font-size: 14px;
  }
}

#top #menu .menu-list li dl + dl {
  margin-top: 15px;
}

#top #menu .menu-list li dl.none {
  display: none;
}

#top #menu .menu-list li dl dd {
  text-align: right;
}

#top #menu .menu-list li dl dd:nth-of-type(2) {
  padding-top: 15px;
  grid-column: 1/3;
}

#top #menu .btnBox {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-top: 30px;
}

@media screen and (max-width: 768px) {
  #top #staff {
    padding: 90px 15px;
  }
}

@media screen and (max-width: 1024px) {
  #top #staff {
    padding: 60px 15px;
  }
}

#top #staff .ttl {
  text-align: center;
}

@media screen and (max-width: 768px) {
  #top #staff .ttl {
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 450px) {
  #top #staff .ttl {
    margin-bottom: 40px;
  }
}

#top #staff .menu-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0 100px;
  padding: 0 100px;
}

@media screen and (max-width: 1024px) {
  #top #staff .menu-list {
    padding: 0;
    grid-gap: 0 40px;
  }
}

@media screen and (max-width: 768px) {
  #top #staff .menu-list {
    grid-template-columns: 1fr;
    grid-gap: 40px 0;
    width: 80%;
    margin: 0 auto;
  }
}

#top #staff .menu-list li dl {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-gap: 0 20px;
}

@media screen and (max-width: 768px) {
  #top #staff .menu-list li dl {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 450px) {
  #top #staff .menu-list li dl {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 450px) {
  #top #staff .menu-list li dl dt {
    position: relative;
  }
}

#top #staff .menu-list li dl dt img:nth-of-type(n+2) {
  display: none;
}

#top #staff .menu-list li dl dt .job-sp {
  display: none;
}

@media screen and (max-width: 450px) {
  #top #staff .menu-list li dl dt .job-sp {
    display: block;
    position: absolute;
    content: '';
    font-size: 13px;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-rl;
    font-family: 'antonio';
    right: -25px;
    top: 0;
  }
}

#top #staff .menu-list li dl dd {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  position: relative;
}

@media screen and (max-width: 450px) {
  #top #staff .menu-list li dl dd {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 0 10px;
    align-items: center;
    margin-top: 20px;
  }
}

#top #staff .menu-list li dl dd p {
  font-size: 15px;
  font-weight: 500;
}

@media screen and (max-width: 450px) {
  #top #staff .menu-list li dl dd p {
    font-size: 13px;
    text-align: right;
  }
}

#top #staff .menu-list li dl dd p.job-pc {
  font-size: 18px;
  font-family: 'antonio';
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
}

@media screen and (max-width: 1024px) {
  #top #staff .menu-list li dl dd p.job-pc {
    font-size: 13px;
  }
}

@media screen and (max-width: 768px) {
  #top #staff .menu-list li dl dd p.job-pc {
    font-size: 15px;
  }
}

@media screen and (max-width: 450px) {
  #top #staff .menu-list li dl dd p.job-pc {
    display: none;
  }
}

#top #staff .menu-list li dl dd p.en {
  font-size: 42px;
  font-family: 'antonio';
  font-weight: bold;
  margin-bottom: 15px;
  letter-spacing: 3.5px;
}

@media screen and (max-width: 1024px) {
  #top #staff .menu-list li dl dd p.en {
    font-size: 22px;
  }
}

@media screen and (max-width: 768px) {
  #top #staff .menu-list li dl dd p.en {
    font-size: 32px;
  }
}

@media screen and (max-width: 450px) {
  #top #staff .menu-list li dl dd p.en {
    font-size: 20px;
    text-align: left;
  }
}

#top #staff .menu-list li dl dd p.btn-more02 {
  width: 100%;
  margin-top: 30px;
}

@media screen and (max-width: 450px) {
  #top #staff .menu-list li dl dd p.btn-more02 {
    grid-column: 1/3;
  }
}

@media screen and (max-width: 450px) {
  #top #staff .menu-list li dl dd p.btn-more02 {
    margin-top: 10px;
  }
}

#top #news {
  position: relative;
}

@media screen and (max-width: 768px) {
  #top #news {
    padding: 90px 15px;
  }
}

@media screen and (max-width: 450px) {
  #top #news {
    padding: 60px 15px;
  }
}

#top #news::before {
  position: absolute;
  content: '';
  background: url(../img/top/icon-scissorsR.png) no-repeat;
  background-size: contain;
  width: 45px;
  height: 35px;
  bottom: 0;
  right: 0;
}

@media screen and (max-width: 450px) {
  #top #news::before {
    width: 25px;
    height: 20px;
    right: 15px;
  }
}

#top #news .ani-line-btm {
  display: inline-block;
  width: 0;
  height: 2px;
  background: #000;
  transition: all .7s;
  opacity: 0;
  position: absolute;
  content: '';
  right: 65px;
  bottom: 15px;
  z-index: -2;
}

@media screen and (max-width: 450px) {
  #top #news .ani-line-btm {
    height: 1px;
    right: 35px;
  }
}

@media screen and (max-width: 450px) {
  #top #news .ani-line-btm {
    bottom: 10px;
    right: 50px;
  }
}

#top #news .ani-line-btm.active {
  width: 97%;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  #top #news .ani-line-btm.active {
    width: 90%;
  }
}

@media screen and (max-width: 450px) {
  #top #news .ani-line-btm.active {
    width: 80%;
  }
}

#top #news .ttl {
  text-align: center;
  position: relative;
}

#top #news .ttl::before {
  position: absolute;
  content: '';
  background: url(../img/top/icon-scissorsL.png) no-repeat;
  background-size: contain;
  width: 45px;
  height: 35px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 450px) {
  #top #news .ttl::before {
    width: 25px;
    height: 20px;
  }
}

#top #news .ttl::after {
  position: absolute;
  content: '';
  width: 150px;
  height: 100%;
  background: #fff;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: -1;
}

@media screen and (max-width: 450px) {
  #top #news .ttl::after {
    width: 100px;
  }
}

#top #news .ttl .ani-line {
  display: inline-block;
  width: 0;
  height: 2px;
  background: #000;
  transition: all .7s;
  opacity: 0;
  position: absolute;
  content: '';
  left: 65px;
  top: 50%;
  transform: translateY(-50%);
  z-index: -2;
}

@media screen and (max-width: 450px) {
  #top #news .ttl .ani-line {
    height: 1px;
    left: 35px;
  }
}

#top #news .ttl .ani-line.active {
  width: 97%;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  #top #news .ttl .ani-line.active {
    width: 90%;
  }
}

@media screen and (max-width: 450px) {
  #top #news .ttl .ani-line.active {
    width: 85%;
  }
}

#top #news ul {
  padding: 0 100px 70px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 0 100px;
  margin-bottom: 35px;
}

@media screen and (max-width: 1024px) {
  #top #news ul {
    padding: 0;
    grid-gap: 0 40px;
  }
}

@media screen and (max-width: 768px) {
  #top #news ul {
    grid-template-columns: 1fr 1fr;
    grid-gap: 25px 25px;
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 450px) {
  #top #news ul {
    grid-template-columns: 1fr;
  }
}

#top #news ul li figure {
  width: 100%;
  height: 200px;
  border: solid 1px #707070;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  #top #news ul li figure {
    height: 270px;
  }
}

#top #news ul li figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#top #news ul li .textBox {
  position: relative;
  padding-bottom: 120px;
  margin-top: 20px;
}

#top #news ul li .textBox .date {
  font-family: 'antonio';
  font-weight: bold;
  font-size: 15px;
}

@media screen and (max-width: 768px) {
  #top #news ul li .textBox .date {
    font-size: 13px;
  }
}

#top #news ul li .textBox p {
  font-size: 15px;
}

@media screen and (max-width: 768px) {
  #top #news ul li .textBox p {
    font-size: 14px;
  }
}

#top #news ul li .textBox p.item-ttl {
  padding: 20px 0;
  font-size: 18px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  #top #news ul li .textBox p.item-ttl {
    font-size: 16px;
  }
}

#top #news ul li .textBox .btn-more {
  position: absolute;
  content: '';
  width: 95px;
  height: 95px;
  right: 0;
  bottom: 0;
}

#top #news ul li .textBox .btn-more a::after {
  font-size: 11px;
  content: 'LOOK';
}

#top #news .btn-more02 {
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  #top #gallery {
    padding: 90px 15px;
  }
}

@media screen and (max-width: 450px) {
  #top #gallery {
    padding: 60px 15px;
  }
}

#top #gallery .ttl {
  text-align: center;
}

#top #gallery .instaArea {
  position: relative;
}

@media screen and (max-width: 450px) {
  #top #gallery .instaArea #sbi_images {
    padding: 10px !important;
  }
}

#top #gallery .instaArea .btn-more {
  position: absolute;
  right: calc(25%/3.5);
  bottom: 130px;
}

@media screen and (max-width: 768px) {
  #top #gallery .instaArea .btn-more {
    right: calc(25%/1.5);
    bottom: 180px;
  }
}

@media screen and (max-width: 450px) {
  #top #gallery .instaArea .btn-more {
    right: 25px;
    bottom: 70px;
  }
}

@font-face {
  font-family: bebas;
  src: url("../fonts/bebas.ttf") format("truetype");
}

@font-face {
  font-family: antonio;
  src: url("../fonts/antonio-Regular.ttf") format("truetype");
}

@font-face {
  font-family: antonio;
  src: url("../fonts/antonio-Bold.ttf") format("truetype");
  font-weight: bold;
}

#information .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

#information .wrapper figure {
  width: 53%;
  z-index: 1;
}

@media screen and (max-width: 450px) {
  #information .wrapper figure {
    width: 95%;
  }
}

#information .wrapper-textBox {
  width: 44%;
}

#information .wrapper-textBox p {
  font-size: 16px;
}

@media screen and (max-width: 1024px) {
  #information .wrapper-textBox p {
    font-size: 15px;
  }
}

@media screen and (max-width: 768px) {
  #information .wrapper-textBox p {
    font-size: 14px;
  }
}

#information .concept .wrapper {
  align-items: center;
}

@media screen and (max-width: 450px) {
  #information .concept .wrapper {
    flex-direction: column-reverse;
  }
}

#information .concept .wrapper-textBox {
  padding-right: calc(calc(100% - 1300px)/2);
}

@media screen and (max-width: 1024px) {
  #information .concept .wrapper-textBox {
    padding-right: 15px;
  }
}

@media screen and (max-width: 450px) {
  #information .concept .wrapper-textBox {
    width: 100%;
    padding: 0 15px 40px;
  }
}

#information .concept .wrapper-textBox p {
  font-size: 18px;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  #information .concept .wrapper-textBox p {
    font-size: 14px;
  }
}

@media screen and (max-width: 450px) {
  #information .salon .wrapper {
    flex-direction: column;
  }
}

#information .salon .wrapper-textBox {
  padding-left: calc(calc(100% - 1300px)/2);
}

@media screen and (max-width: 1024px) {
  #information .salon .wrapper-textBox {
    padding-left: 15px;
  }
}

@media screen and (max-width: 450px) {
  #information .salon .wrapper-textBox {
    padding: 0 15px 40px;
    width: 100%;
  }
}

#information .salon .wrapper-textBox dl dt {
  font-family: 'antonio';
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 18px;
}

@media screen and (max-width: 450px) {
  #information .salon .wrapper-textBox dl dt {
    font-size: 16px;
  }
}

#information .salon .wrapper-textBox dl dd {
  font-size: 14px;
}

@media screen and (max-width: 450px) {
  #information .salon .wrapper-textBox dl dd {
    font-size: 13px;
  }
}

#information .salon .wrapper-textBox dl + dl {
  margin-top: 35px;
}

@media screen and (max-width: 768px) {
  #information .salon .wrapper-textBox dl + dl {
    margin-top: 25px;
  }
}

@media screen and (max-width: 450px) {
  #information .salon .wrapper-textBox dl + dl {
    margin-top: 20px;
  }
}

#information .salon .wrapper-textBox-list + .wrapper-textBox-list {
  margin-top: 100px;
}

#information .salon .map {
  margin-top: 120px;
}

#information .salon .map-wrap {
  width: 100%;
  height: 0;
  padding-bottom: 26.25%;
  overflow: hidden;
  position: relative;
}

@media screen and (max-width: 450px) {
  #information .salon .map-wrap {
    padding-bottom: 66.25%;
  }
}

#information .salon .map-wrap iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

@font-face {
  font-family: bebas;
  src: url("../fonts/bebas.ttf") format("truetype");
}

@font-face {
  font-family: antonio;
  src: url("../fonts/antonio-Regular.ttf") format("truetype");
}

@font-face {
  font-family: antonio;
  src: url("../fonts/antonio-Bold.ttf") format("truetype");
  font-weight: bold;
}

@media screen and (max-width: 1024px) {
  #menu section {
    padding: 90px 15px;
  }
}

@media screen and (max-width: 450px) {
  #menu section {
    padding: 60px 15px;
  }
}

#menu .menuList h3 {
  text-align: left;
  border-bottom: solid 2px #000;
  font-size: 32px;
  font-family: 'bebas';
  margin-bottom: 70px;
  padding-bottom: 8px;
}

@media screen and (max-width: 768px) {
  #menu .menuList h3 {
    font-size: 26px;
    margin-bottom: 40px;
  }
}

#menu .menuList dl {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  border-bottom: solid 1px #E8E8E8;
}

@media screen and (max-width: 450px) {
  #menu .menuList dl {
    border-bottom: solid 1px #999;
    display: block;
    padding: 10px 0 0;
  }
}

#menu .menuList dl.none {
  display: none;
}

#menu .menuList dl dt {
  text-align: left;
}

@media screen and (max-width: 450px) {
  #menu .menuList dl dt {
    padding-bottom: 10px;
  }
}

#menu .menuList dl dd {
  text-align: right;
  padding-left: 40px;
}

@media screen and (max-width: 450px) {
  #menu .menuList dl dd {
    padding: 10px 0;
    border-top: dotted 1px #E8E8E8;
    text-align: left;
  }
}

#menu .menuList span {
  display: block;
  padding-top: 40px;
  font-size: 14px;
  line-height: 1.5;
}

@media screen and (max-width: 450px) {
  #menu .menuList span {
    font-size: 13px;
    padding-top: 25px;
  }
}

#menu .menuList + .menuList {
  margin-top: 140px;
}

@media screen and (max-width: 1024px) {
  #menu .menuList + .menuList {
    margin-top: 80px;
  }
}

@media screen and (max-width: 450px) {
  #menu .menuList + .menuList {
    margin-top: 40px;
  }
}

#menu .menuBox {
  margin-top: 140px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

@media screen and (max-width: 1024px) {
  #menu .menuBox {
    display: block;
  }
}

#menu .menuBox .menuList {
  width: 45%;
}

@media screen and (max-width: 1024px) {
  #menu .menuBox .menuList {
    width: 100%;
  }
}

#menu .menuBox .menuList + .menuList {
  margin-top: 0;
}

@media screen and (max-width: 1024px) {
  #menu .menuBox .menuList + .menuList {
    margin-top: 80px;
  }
}

@font-face {
  font-family: bebas;
  src: url("../fonts/bebas.ttf") format("truetype");
}

@font-face {
  font-family: antonio;
  src: url("../fonts/antonio-Regular.ttf") format("truetype");
}

@font-face {
  font-family: antonio;
  src: url("../fonts/antonio-Bold.ttf") format("truetype");
  font-weight: bold;
}

@media screen and (max-width: 1024px) {
  #staff section {
    padding: 90px 15px;
  }
}

@media screen and (max-width: 450px) {
  #staff section {
    padding: 60px 15px;
  }
}

#staff section .staffList-item .job-sp {
  font-size: 22px;
  font-family: 'antonio';
}

#staff section .staffList-item_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  #staff section .staffList-item_box {
    align-items: flex-start;
  }
}

@media screen and (max-width: 450px) {
  #staff section .staffList-item_box {
    display: block;
  }
}

#staff section .staffList-item_box .imgBox {
  width: 50%;
}

@media screen and (max-width: 450px) {
  #staff section .staffList-item_box .imgBox {
    width: 100%;
  }
}

#staff section .staffList-item_box .imgBox figure img {
  width: 100%;
  height: 40vw;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  #staff section .staffList-item_box .imgBox figure img {
    height: 50vw;
  }
}

@media screen and (max-width: 450px) {
  #staff section .staffList-item_box .imgBox figure img {
    height: 100vw;
  }
}

#staff section .staffList-item_box .imgBox .slick-dots {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  bottom: -35px;
}

#staff section .staffList-item_box .imgBox .slick-dots li button {
  background: #E8E8E8;
  width: 10px;
  height: 10px;
}

#staff section .staffList-item_box .imgBox .slick-dots li button::before {
  display: none;
}

#staff section .staffList-item_box .imgBox .slick-dots li.slick-active button {
  background: #000;
}

#staff section .staffList-item_box .imgBox .slick-dots li:last-of-type {
  margin-right: 0;
}

#staff section .staffList-item_box .imgBox .slick-dots li:last-of-type button {
  margin-right: 0;
}

#staff section .staffList-item_box .textBox {
  width: 42%;
}

@media screen and (max-width: 768px) {
  #staff section .staffList-item_box .textBox {
    width: 47%;
  }
}

@media screen and (max-width: 450px) {
  #staff section .staffList-item_box .textBox {
    width: 100%;
    margin-top: 30px;
  }
}

#staff section .staffList-item_box .textBox p.en {
  font-size: 52px;
  font-family: 'antonio';
  font-weight: bold;
  margin-bottom: 10px;
  letter-spacing: 3.5px;
}

@media screen and (max-width: 768px) {
  #staff section .staffList-item_box .textBox p.en {
    font-size: 32px;
  }
}

@media screen and (max-width: 450px) {
  #staff section .staffList-item_box .textBox p.en {
    font-size: 22px;
  }
}

#staff section .staffList-item_box .textBox p.name {
  font-size: 15px;
}

@media screen and (max-width: 450px) {
  #staff section .staffList-item_box .textBox p.name {
    font-size: 14px;
  }
}

#staff section .staffList-item_box .textBox .profile {
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  #staff section .staffList-item_box .textBox .profile {
    margin-top: 30px;
  }
}

@media screen and (max-width: 450px) {
  #staff section .staffList-item_box .textBox .profile {
    margin-top: 40px;
  }
}

#staff section .staffList-item_box .textBox .profile p {
  font-size: 18px;
  font-family: 'antonio';
  padding-bottom: 20px;
}

@media screen and (max-width: 768px) {
  #staff section .staffList-item_box .textBox .profile p {
    font-size: 16px;
  }
}

@media screen and (max-width: 450px) {
  #staff section .staffList-item_box .textBox .profile p {
    font-size: 15px;
    padding-bottom: 10px;
  }
}

#staff section .staffList-item_box .textBox .profile dl {
  font-size: 15px;
  padding: 10px 0;
  border-bottom: solid 1px #E8E8E8;
}

@media screen and (max-width: 768px) {
  #staff section .staffList-item_box .textBox .profile dl {
    font-size: 14px;
  }
}

@media screen and (max-width: 450px) {
  #staff section .staffList-item_box .textBox .profile dl {
    font-size: 13px;
  }
}

#staff section .staffList-item_box .textBox .profile dl.career {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 450px) {
  #staff section .staffList-item_box .textBox .profile dl.career {
    display: block;
  }
  #staff section .staffList-item_box .textBox .profile dl.career dd {
    padding-top: 15px;
  }
}

#staff section .staffList-item_box .textBox .profile dl:not(.career) dd {
  padding-top: 15px;
}

#staff section .staffList-item + .staffList-item {
  margin-top: 120px;
}

#staff .imgArea-wrap {
  display: grid;
}

#staff .imgArea-wrap figure:first-of-type {
  grid-column: 1/2;
  grid-row: 1/3;
}

@media screen and (max-width: 450px) {
  #staff .imgArea-wrap figure:first-of-type {
    grid-column: 1/2;
    grid-row: 1/3;
  }
}

#staff .imgArea-wrap figure:first-of-type img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#staff .imgArea-wrap figure:nth-of-type(2) {
  grid-column: 2/3;
  grid-row: 1/2;
}

@media screen and (max-width: 450px) {
  #staff .imgArea-wrap figure:nth-of-type(2) {
    grid-column: 2/3;
    grid-row: 1/2;
  }
}

#staff .imgArea-wrap figure:nth-of-type(3) {
  grid-column: 3/4;
  grid-row: 1/2;
}

@media screen and (max-width: 450px) {
  #staff .imgArea-wrap figure:nth-of-type(3) {
    grid-column: 2/3;
    grid-row: 2/3;
  }
}

#staff .imgArea-wrap figure:last-of-type {
  grid-column: 2/4;
  grid-row: 2/3;
}

@media screen and (max-width: 450px) {
  #staff .imgArea-wrap figure:last-of-type {
    grid-column: 1/3;
    grid-row: 3/4;
  }
}

@font-face {
  font-family: bebas;
  src: url("../fonts/bebas.ttf") format("truetype");
}

@font-face {
  font-family: antonio;
  src: url("../fonts/antonio-Regular.ttf") format("truetype");
}

@font-face {
  font-family: antonio;
  src: url("../fonts/antonio-Bold.ttf") format("truetype");
  font-weight: bold;
}

#news .wrapper,
#single .wrapper,
#cat .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

@media screen and (max-width: 1024px) {
  #news .wrapper,
  #single .wrapper,
  #cat .wrapper {
    padding: 90px 15px;
  }
}

@media screen and (max-width: 768px) {
  #news .wrapper,
  #single .wrapper,
  #cat .wrapper {
    flex-direction: column;
  }
}

@media screen and (max-width: 450px) {
  #news .wrapper,
  #single .wrapper,
  #cat .wrapper {
    padding: 60px 15px;
  }
}

#news .wrapper .newsArea,
#single .wrapper .newsArea,
#cat .wrapper .newsArea {
  width: 70%;
}

@media screen and (max-width: 768px) {
  #news .wrapper .newsArea,
  #single .wrapper .newsArea,
  #cat .wrapper .newsArea {
    width: 100%;
  }
}

#news .wrapper .sideNav,
#single .wrapper .sideNav,
#cat .wrapper .sideNav {
  width: 20%;
}

@media screen and (max-width: 768px) {
  #news .wrapper .sideNav,
  #single .wrapper .sideNav,
  #cat .wrapper .sideNav {
    width: 100%;
    margin-top: 80px;
  }
}

@media screen and (max-width: 450px) {
  #news .wrapper .sideNav,
  #single .wrapper .sideNav,
  #cat .wrapper .sideNav {
    margin-top: 60px;
  }
}

#news .wrapper .sideNav .catList .ttl,
#single .wrapper .sideNav .catList .ttl,
#cat .wrapper .sideNav .catList .ttl {
  font-size: 18px;
  font-family: 'antonio';
  font-weight: bold;
  padding-bottom: 5px;
  border-bottom: solid 1px #000;
}

#news .wrapper .sideNav .catList + .catList,
#single .wrapper .sideNav .catList + .catList,
#cat .wrapper .sideNav .catList + .catList {
  margin-top: 60px;
}

#news .wrapper .sideNav .catList ul,
#single .wrapper .sideNav .catList ul,
#cat .wrapper .sideNav .catList ul {
  margin-top: 25px;
}

#news .wrapper .sideNav .catList ul li,
#single .wrapper .sideNav .catList ul li,
#cat .wrapper .sideNav .catList ul li {
  padding: 10px 0;
  border-bottom: dotted 1px #ccc;
}

#news .wrapper .sideNav .catList ul li a,
#single .wrapper .sideNav .catList ul li a,
#cat .wrapper .sideNav .catList ul li a {
  font-size: 14px;
}

#news .wrapper .sideNav .catList ul li.active a,
#single .wrapper .sideNav .catList ul li.active a,
#cat .wrapper .sideNav .catList ul li.active a {
  color: #999;
  font-weight: bold;
}

#news .wrapper .newsArea ul:not(.page-numbers),
#cat .wrapper .newsArea ul:not(.page-numbers) {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 40px 50px;
}

@media screen and (max-width: 450px) {
  #news .wrapper .newsArea ul:not(.page-numbers),
  #cat .wrapper .newsArea ul:not(.page-numbers) {
    grid-template-columns: 1fr;
    grid-gap: 50px 0;
  }
}

#news .wrapper .newsArea ul:not(.page-numbers) li .dataBox,
#cat .wrapper .newsArea ul:not(.page-numbers) li .dataBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'antonio';
  font-size: 13px;
  margin-bottom: 10px;
}

#news .wrapper .newsArea ul:not(.page-numbers) li figure,
#cat .wrapper .newsArea ul:not(.page-numbers) li figure {
  margin-bottom: 15px;
  border: solid 1px #707070;
}

#news .wrapper .newsArea ul:not(.page-numbers) li figure img,
#cat .wrapper .newsArea ul:not(.page-numbers) li figure img {
  height: 250px;
  object-fit: cover;
}

#news .wrapper .newsArea ul:not(.page-numbers) li .item-ttl,
#cat .wrapper .newsArea ul:not(.page-numbers) li .item-ttl {
  font-size: 14px;
}

@media screen and (max-width: 1024px) {
  #single .wrapper {
    padding-top: 180px;
  }
}

#single .wrapper .newsArea .dataBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'antonio';
  font-size: 16px;
  margin-bottom: 25px;
}

@media screen and (max-width: 450px) {
  #single .wrapper .newsArea .dataBox {
    font-size: 13px;
  }
}

#single .wrapper .newsArea h2.single-title {
  font-size: 22px;
  text-align: left;
  padding-bottom: 10px;
  border-bottom: solid 1px #000;
  margin-bottom: 65px;
  font-weight: bold;
}

@media screen and (max-width: 450px) {
  #single .wrapper .newsArea h2.single-title {
    font-size: 16px;
    margin-bottom: 40px;
  }
}

#single .wrapper .newsArea .content {
  margin-top: 80px;
}

#single .wrapper .newsArea .content p {
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 1.8;
}

@media screen and (max-width: 1024px) {
  #single .wrapper .newsArea .content p {
    font-size: 15px;
  }
}

@media screen and (max-width: 450px) {
  #single .wrapper .newsArea .content p {
    font-size: 14px;
  }
}

#single .wrapper .newsArea .content img {
  margin: 40px auto;
}

@media screen and (max-width: 450px) {
  #single .wrapper .newsArea .content img {
    margin: 25px auto;
  }
}
