@charset "UTF-8";

body.active {
  overflow: hidden;
}

/* font */
.f-jp {
  font-family: "sawarabi-gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.f-en {
  font-family: rig-sans, sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 1px;
}

/* イメージサイズ */
img {
  width: 100%;
}

/*--SP--*/
@media only screen and (max-width: 767px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }  
}

/*--PC--*/
@media only screen and (min-width: 768px) {
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
}  


/* =====loading===== */
/* loading setting */
#loading {
  transition: all 2s;
  background-color: #F9F9F9;
  z-index: 999;
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; 
}

.loaded {
  opacity: 0;
  visibility: hidden;
}

/* loading image */
#image-container {
  position: absolute;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  overflow: hidden;
}

#image-container .image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}

@media only screen and (min-width: 768px) {
  #image-container .image {
    width: 860px;
    height: 860px;
  }
}

#image-container .image.active {
  opacity: 1;
}

#image-container .image.fade-out {
  opacity: 0;
  transition: opacity 0.65s ease-out;
}

/* loading logo */
#logo-container {
  position: absolute;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  overflow: hidden;
}

.logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 40%;
  opacity: 0;
}

@media only screen and (min-width: 768px) {
  .logo {
    width: 20%;
  }
}

.logo.fade-in {
  opacity: 1;
  transition: opacity 1s ease-out;
}


/* =====menu===== */
/* SP */
@media only screen and (max-width: 767px) {
  /* hamburger */
  .hamburger {
    width: 43px;
    height: 31px;
    position: fixed;
    top: 47px;
    left: 35px;
    z-index: 99;
    cursor: pointer;
    display: block;
  }
  
  .hamburger span {
    content: '';
    display: block;
    width: 43px;
    height: 1px;
    background-color: #C4C4C4;
    margin-bottom: 14px;
    transition: transform 0.3s;
  }
  
  .hamburger.active span:nth-of-type(1) {
    transform: translateY(15px) rotate(45deg);
  }
  
  .hamburger.active span:nth-of-type(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-of-type(3) {
    transform: translateY(-15px) rotate(-45deg);
  }
  
  /* menu-container */
  .menu-container {
    transition: all 1s;
    position: fixed;
    inset: 0;
    z-index: 9;
    background-color: #ffffff;
    width: 100vw;
    height: 100vh;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  
  .menu-container::-webkit-scrollbar {
    display: none;  
  }
  
  .menu-container.active {
    opacity: 1;
    visibility: visible;
  }
  
  .menu-container .menu-logo {
    width: 80px;
    margin: 105px auto 24px;
  }
  
  .menu-container p, 
  .menu-container li, 
  .menu-container a {
    font-size: 16px;
    line-height: 20px;
    color: #707070;
  }
  
  .menu-container p {
    margin-bottom: 78px;
  }
  
  .menu-container p:last-child {
    display: none;
  }

  .menu-container .menu-list > li:first-child {
    margin-bottom: 78px;
  }
  
  .menu-container .menu-list > li:nth-child(n+2) {
    margin-bottom: 47px;
  }
    
  .menu-container .menu-list a {
    position: relative;
  }
  
  .menu-container .menu-list a::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: #707070;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform .3s;
  }
  
  .menu-container .menu-list a:hover::after {
    transform: scale(1, 1);
  }
  
  .menu-container .archive {
    margin-top: 27px;
  }
  
  .menu-container .archive li {
    margin-bottom: 0;
  }
  
  .menu-container .social {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }  
}

/* PC */
@media only screen and (min-width: 768px) {
  .menu {
    width: 50%;
    height: 100vh;
    position: sticky;
    top: 0px;
    left: 0px;
  }
  
  /* hamburger */
  .hamburger {
    display: none;
  }
    
  /* menu-container */
  .menu-container {
    width: 350px;
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    text-align: left;
  }
    
  .menu-container .menu-logo {
    width: 100px;
    margin: 0 0 24px;
  }
  
  .menu-container p {
    margin-bottom: 78px;
    font-size: 10px;
    line-height: 20px;
    color: #707070;
  }
  
  .menu-container p:last-child {
    margin-bottom: 0px;
  }

  .menu-container .menu-list > li {
    margin-bottom: 27px;
    font-size: 16px;
    line-height: 20px;
    color: #707070;
  }
  
  .menu-container .menu-list > li:last-child {
    margin-bottom: 47px;
  }
  
  .menu-container .menu-list a {
    position: relative;
  }
  
  .menu-container .menu-list a::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: #707070;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform .3s;
  }
  
  .menu-container .menu-list a:hover::after {
    transform: scale(1, 1);
  }
  
  .menu-container .archive {
    width: 300px;
    margin-top: 17px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  
  .menu-container .archive li {
    width: 50%;
    margin-bottom: 0;
  }
  
  .menu-container .archive li a {
    font-size: 10px;
    line-height: 20px;
    color: #707070;
  }

  .menu-container .social {
    margin-top: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
  }

  .menu-container .social i {
    font-size: 13px;
  }  
}


/* =====content===== */
@media only screen and (min-width: 768px) {
  #wrapper {
    width: 100%;
    margin: 0 auto;
    background: #F9F9F9;
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }

  .menu {
    width: 500px;
    order: 2;
  }

  .content {
    width: 500px;
    background: #ffffff;
    order: 1;
  }
}  

/* kv */
.content .kv {
  margin-bottom: 60px;
  text-align: center;
}

.content .kv h1 {
  width: 30.7%;
  margin: 47px auto 18px;
}

.content .kv h2 {
  margin-bottom: 34px;
  font-size: 10px;
  line-height: 13px;
  color: #707070;
}

@media only screen and (min-width: 768px) {
  .content .kv h1 {
    display: none;
  }
  
  .content .kv h2 {
    display: none;
  }
}  

.content .kv .kv-img {
  width: 62.8%;
  margin: 0 auto 33px;
}

.content .kv p {
  width: 62.8%;
  margin: 0 auto 34px;
  font-size: 8px;
  line-height: 10px;
  color: #D0D0D0;
}

@media only screen and (min-width: 768px) {
  .content .kv p {
    width: 100%;
  }
}  

/* sec01 */
.content .sec01 {
  margin-bottom: 120px;
  position: relative;
  z-index: 1;
}

.content .sec01 .img01 {
  width: 28.8%;
  position: relative;
  z-index: 3;
}

.content .sec01 .img02 {
  width: 100%;
  position: relative;
  z-index: 2;
  margin-top: -15%;
}

.content .sec01 .img03 {
  width: 70%;
  position: relative;
  z-index: 3;
  margin-top: -28%;
  margin-left: auto;
}

/* sec02 */
.content .sec02 {
  margin-bottom: 120px;
  position: relative;
  z-index: 1;
}

.content .sec02 .img01 {
  width: 70%;
  position: relative;
  margin-left: 7.9%;
  z-index: 3;
}

.content .sec02 .img02 {
  width: 44.8%;
  position: relative;
  z-index: 2;
  margin-top: -26%;
  margin-left: auto;
  margin-right: 5.1%;
}

/* sec03 */
.content .sec03 {
  margin-bottom: 217px;
  position: relative;
  z-index: 1;
}

.content .sec03 .img01 {
  width: 77.6%;
  position: relative;
  margin-left: auto;
  z-index: 3;
  text-align: right;
}

.content .sec03 .img02 {
  width: 77.6%;
  position: relative;
  z-index: 2;
  margin-top: -40%;
}

.content .sec03 .img03 {
  width: 51.1%;
  position: relative;
  z-index: 3;
  margin-top: -38%;
  margin-left: auto;
  margin-right: 9.7%;
}

.content .sec03 .open {
  margin-right: 18px;
}

/* sec04 */
.content .sec04 {
  margin-bottom: 126px;
  position: relative;
  z-index: 1;
}

.content .sec04 .img01 {
  width: 100%;
  position: relative;
  z-index: 2;
}

.content .sec04 .img02 {
  width: 62.5%;
  position: relative;
  z-index: 3;
  margin-top: -165%;
  margin-left: 7.6%;
}

.content .sec04 .img02 a {
  display: flex;
}

.content .sec04 .img03 {
  width: 25.5%;
  position: relative;
  z-index: 4;
  margin-top: -6%;
  margin-left: 18.8%;
}

.content .sec04 .img04 {
  width: 48.1%;
  position: relative;
  z-index: 4;
  margin-top: -22%;
  margin-left: auto;
}

.content .sec04 .img05 {
  width: 25.5%;
  position: relative;
  z-index: 4;
  margin-top: -4%;
}

.content .sec04 .img06 {
  width: 38.1%;
  position: relative;
  z-index: 4;
  margin-top: -24%;
  margin-left: 32.7%;
}

.content .sec04 .open {
  margin-top: 13%;
  margin-left: 16px;
}

/* sec05 */
.content .sec05 {
  margin-bottom: 124px;
  position: relative;
  z-index: 1;
}

.content .sec05 .img01 {
  width: 48.1%;
  position: relative;
  z-index: 2;
}

.content .sec05 .img02 {
  width: 76.2%;
  position: relative;
  z-index: 3;
  margin-top: -23%;
  margin-left: auto;
}

.content .sec05 .img03 {
  width: 36%;
  position: relative;
  z-index: 4;
  margin-top: -88%;
  margin-left: 6%;
}

.content .sec05 .img04 {
  width: 48.1%;
  position: relative;
  z-index: 2;
  margin-top: 23%;
  margin-left: auto;
  margin-right: 7.2%;
}

/* sec06 */
.content .sec06 {
  margin-bottom: 124px;
  position: relative;
  z-index: 1;
}

.content .sec06 .img01 {
  width: 68.1%;
  position: relative;
  z-index: 2;
  margin-left: auto;
}

.content .sec06 .img01 a {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.content .sec06 .img01 a img {
  order: 2;
}

.content .sec06 .img02 {
  width: 100%;
  position: relative;
  z-index: 2;
  margin-top: 4%;
}

.content .sec06 .open {
  margin-right: 19px;
}

/* sec07 */
.content .sec07 {
  margin-bottom: 105px;
  position: relative;
  z-index: 1;
}

.content .sec07 .img01 {
  width: 91.6%;
  position: relative;
  z-index: 2;
  margin: 0 auto;
}

.content .sec07 .img02 {
  width: 48.3%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 3;
}

/* sec08 */
.content .sec08 {
  margin-bottom: 105px;
  position: relative;
  z-index: 1;
}

.content .sec08 .img01 {
  width: 67.6%;
  position: relative;
  z-index: 3;
  margin-left: 6.5%;
}

.content .sec08 .img02 {
  width: 61.8%;
  position: relative;
  z-index: 2;
  margin-top: -28%;
  margin-left: auto;
  margin-right: 6.9%;
}

/* sec09 */
.content .sec09 {
  margin-bottom: 98px;
  position: relative;
  z-index: 1;
}

.content .sec09 .img01 {
  width: 78.8%;
  position: relative;
  z-index: 2;
  margin-left: auto;
}

.content .sec09 .img02 {
  width: 54.4%;
  position: relative;
  z-index: 3;
  margin-top: -95%;
}

.content .sec09 .group-container {
  width: 75.5%;
  position: relative;
  z-index: 3;
  margin-top: 5%;
  margin-left: 12.3%;
}

.content .sec09 .group01 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 17px;
}

/* sec10 */
.content .sec10 {
  position: relative;
  z-index: 1;
}

.content .sec10 .img01 {
  width: 91.6%;
  position: sticky;
  top: 20px;
  z-index: 2;
  margin: 0 auto 88px;
}

@media only screen and (min-width: 768px) {
  .content .sec10 .img01 {
    position: relative;
    top: 0px;
    margin: 0 auto 88px;
  }
}  

/* information */
.content .sec10 .info-wrapper {
  padding-top: 50vh;
  position: relative;
  z-index: 3;
}

.content .sec10 #information {
  width: 100%;
  padding: 85px 50px 45px;
  background-color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

@media only screen and (min-width: 768px) {
  .content .sec10 .info-wrapper {
    padding-top: 0px;
  }
  
  .content .sec10 #information {
    padding: 85px 85px 45px;
  }
}  

/* concept */
.content .sec10 #concept {
  width: 100%;
}

.content .sec10 #concept h3 {
  font-size: 16px;
  line-height: 20px;
  color: #707070;
}

.content .sec10 #concept p {
  margin-top: 17px;
  font-size: 11px;
  line-height: 20px;
  color: #707070;
}

/* shops */
.content .sec10 #shops {
  width: 100%;
  margin-top: 80px;
}

.content .sec10 #shops h3 {
  font-size: 16px;
  line-height: 20px;
  color: #707070;
}

.content .sec10 #shops p:nth-of-type(1) {
  margin-top: 17px;
  font-size: 11px;
  line-height: 20px;
  color: #707070;
}

.content .sec10 #shops p:nth-of-type(2) {
  margin-top: 17px;
  font-size: 12px;
  line-height: 15px;
  color: #707070;
  text-decoration: underline;
  text-underline-offset: 5px;
}

/* profile */
.content .sec10 #profile {
  width: 100%;
  margin-top: 80px;
}

.content .sec10 #profile h3 {
  font-size: 16px;
  line-height: 20px;
  color: #707070;
}

.content .sec10 #profile .profile-photo {
  width: 65.4%;
  margin: 17px auto 0;
}

.content .sec10 #profile p {
  margin-top: 17px;
  font-size: 11px;
  line-height: 20px;
  color: #707070;
}

/* staff */
.content .sec10 #staff {
  width: 100%;
  margin-top: 96px;
}

.content .sec10 #staff .footer-logo {
  width: 24.2%;
  margin: 0 auto;
}

.content .sec10 #staff p:nth-of-type(1) {
  margin-top: 40px;
  font-size: 10px;
  line-height: 20px;
  color: #000000;
}

.content .sec10 #staff p:nth-of-type(2) {
  margin-top: 32px;
  font-size: 10px;
  line-height: 20px;
  color: #000000;
}

/* section all */
.content section .open {
  margin-top: 8px;
  font-size: 10px;
  line-height: 13px;
  color: #707070;
  text-decoration: underline;
  text-underline-offset: 5px;
}

/* slide */
.slide img {
  display: none;
}


/* =====modal===== */
/* modal */
.modal-box {
  display: none;
}

.modaal-close {
  width: 40px;
  height: 40px;
  color: #707070;
}

.modaal-close:after, 
.modaal-close:before {
  width: 1px;
  height: 40px;
  background: #707070;
  top: 50%;
  left: 50%;
}

.modaal-close:before {
  -webkit-transform: translate(-50%,-50%) rotate(-45deg);
  -ms-transform: translate(-50%,-50%) rotate(-45deg);
  transform: translate(-50%,-50%) rotate(-45deg);
}

.modaal-close:after {
  -webkit-transform: translate(-50%,-50%) rotate(45deg);
  -ms-transform: translate(-50%,-50%) rotate(45deg);
  transform: translate(-50%,-50%) rotate(45deg);
}

.modaal-close:focus, 
.modaal-close:hover {
  background: transparent;
}

.modaal-close:focus:after, 
.modaal-close:focus:before, 
.modaal-close:hover:after, 
.modaal-close:hover:before {
  background: #707070;
}

@media only screen and (min-width: 768px) {
  .modaal-wrapper {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .modaal-wrapper::-webkit-scrollbar {
    display: none;
  }
}  

.modaal-inner-wrapper {
  padding: 65px 60px 130px;
}

.modaal-container {
  background: transparent;
  box-shadow: none;
}

@media only screen and (min-width: 768px) {
  .modaal-container {
    width: 400px;
  }
}  

.modaal-content-container {
  padding: 0;
}

.modaal-content-container .credit {
  margin: 20px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modaal-content-container .name {
  font-size: 14px;
  line-height: 20px;
  color: #707070;
}

.modaal-content-container .btn a {
  padding: 3px 36px;
  background: #ffffff;
  border: 1px solid #707070;
  border-radius: 13px;
  font-size: 14px;
  line-height: 20px;
  color: #707070;
}

.modaal-content-container .btm-btn {
  width: 100%;
  position: fixed;
  bottom: 0px;
  left: 0px;
  text-align: center;
}

.modaal-content-container .modal-close {
  width: 100%;
  height: 76px;
  background: rgba(152, 152, 152, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  cursor: pointer;
}

.modaal-content-container .modal-close .icon {
  position: relative;
}

.modaal-content-container .modal-close .icon:after, 
.modaal-content-container .modal-close .icon:before {
  width: 1px;
  height: 28px;
  background: #ffffff;
  display: block;
  content: " ";
  position: absolute;
  top: 50%;
  left: 50%;
}

.modaal-content-container .modal-close .icon:before {
  -webkit-transform: translate(-50%,-50%) rotate(-45deg);
  -ms-transform: translate(-50%,-50%) rotate(-45deg);
  transform: translate(-50%,-50%) rotate(-45deg);
}

.modaal-content-container .modal-close .icon:after {
  -webkit-transform: translate(-50%,-50%) rotate(45deg);
  -ms-transform: translate(-50%,-50%) rotate(45deg);
  transform: translate(-50%,-50%) rotate(45deg);
}

.modaal-content-container .modal-close div:last-child {
  font-size: 18px;
  line-height: 20px;
  color: #ffffff;
}