/*
Theme Name: Britto-jp Original Theme
Description: Britto-jp Original Theme
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: Britto-jp Original Theme

@charset "utf-8";

/*********************************************
全体共通
*********************************************/
html {
  font-size: 18px;
}

body {
  font-family: "Futura PT", "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
  text-align: justify;
  font-feature-settings: "palt";
  margin: 0;
  padding: 0;
  color: #000;
  width: 100%;
  background-color: #FFD900;
  overflow-x: hidden !important;
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
}

img {
  width: 100%;
  height: auto;
  line-height: 0;
}

a {
  color: inherit !important;
  pointer-events: painted !important;
  -webkit-tap-highlight-color: transparent;
  opacity: 1;
}

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

.pc-only {
  display: block !important;
}

.anchor-target {
  scroll-margin-top: 240px !important;
}

.container {
  padding: 100px 60px 0;
  overflow: hidden;
}

@media (max-width: 1200px) {
  .container {
    padding: 100px 4vw 0;
  }
}
@media (max-width: 768px) {
  .pc-only {
    display: none !important;
  }

  .sp-only {
    display: block !important;
  }


  body { 
    font-size: 3.5vw;
    line-height: 1.7em;
  }
  .container {
    padding: 70px 4vw 0;
  }

  .anchor-target {
    scroll-margin-top: 110px !important;
  }
}

/*********************************************
セクションタイトル
*********************************************/
.sec-title {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 40px;
}

.sec-title_main {
  font-size: 80px;
  line-height: 1;
  margin-bottom: 12px;
}

.sec-title_main_thin {
  font-weight: 300;
}

.sec-title_sub {
  font-size: 16px;
  font-weight: 500;
}

.sec-desc {
  text-align: center;
  margin-bottom: 64px;
}

.sec-subtitle {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 1;
}

.sec-subtitle_main {
  font-size: 60px;
  margin-bottom: 2px;
}

.sec-subtitle_sub {
  font-size: 16px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .sec-title {
    margin-bottom: 38px;
  }
  .sec-title_main {
    font-size: 12vw;
  }
  .sec-title_sub {
    font-size: 3vw;
  }
  .sec-subtitle {
    margin-bottom: 10vw;
  }
  .sec-subtitle_main {
    font-size: 9.5vw;
    line-height: 1.5;
  }
  .sec-subtitle_sub {
    font-size: 3vw;
  }
  .sec-desc {
    margin-bottom: 12vw;
  }
}


/*********************************************
共通アニメーション
*********************************************/
/* フェードイン */
.fadeIn {
  opacity: 0;
  transition: 1s;
}

.fadeIn.is-show {
  opacity: 1;
}

/* 下からフェードイン */
.fadeIn_up {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 1s ease, transform .6s ease;
}

.fadeIn_up.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* hover アニメーション*/
.c-link-yellow {
  transition: color 0.3s ease-in-out;
}
.c-link-yellow:hover {
  color: #FFD900 !important;
  transition: color 0.3s ease-in-out;
}

.c-link-opacity {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
.c-link-opacity:hover {
  opacity: 0.65;
  transition: opacity 0.3s ease-in-out;
}
/*********************************************
ボタン
*********************************************/
.c-btn {
  background-color: #000;
  border-radius: 100px;
  width: 262px;
  height: 74px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  box-sizing: border-box;
  border: 1.5px solid transparent;
  transition: background-color 0.3s ease-in-out, border 0.3s ease-in-out;
}

.c-btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-evenly;
  font-size: 24px;
  font-weight: 300;
  width: 80%;
  white-space: nowrap;
}

.c-btn-link-arrow {
  width: 20px;
  height: 20px;
}

/* hover */
.c-btn:hover {
  background-color: #FFD900;
  color: #000;
  border: 1.5px solid #000;
  transition: background-color 0.3s ease-in-out, border 0.3s ease-in-out;
}

.c-btn:hover .c-btn-link-fw {
  font-weight: 400;
}

.c-btn:hover .c-btn-link-arrow path {
  stroke: #000;
}

@media (max-width: 768px) {
  .c-btn {
    width: 200px;
    height: 60px;
  }
  .c-btn-link {
    font-size: 20px;
  }
}
/*********************************************
ヘッダー
*********************************************/
.header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  background-color: #000;
  filter: drop-shadow(0 10px 30px rgba(255,255,255,0.35));
}

.header-inner .content-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  margin: 0 auto;
  padding: 0px 24px;
  height: 80px;
}

/* ロゴ */
.header-inner .header-logo {
  flex-shrink: 0;
}

.header-inner .header-logo .img img {
  height: 35px;
  width: auto;
  display: block;
}

/* ナビゲーションメニュー */
.header-inner .header-menu {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  margin-right: 28px;
}

.header-inner .header-menu ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 32px;
  color: #fff;
}

.header-inner .header-menu ul li a {
  font-weight: 500;
  font-size: 20px;
  color: #ffffff;
}

/* ヘッダー OFFICIAL SHOP ボタン */
.c-btn.header-c-btn-shop {
  background-color: #FFD900;
  color: #000;
  max-width: 220px;
  width: 220px;
  height: 50px;
}

.c-btn.header-c-btn-shop .c-btn-link {
  font-size: 20px;
  font-weight: 500;
}

.c-btn.header-c-btn-shop .c-btn-link svg {
  width: 20px!important;
  height: 20px!important;
}

/* ヘッダー OFFICIAL SHOP ボタン hover */
.c-btn.header-c-btn-shop:hover {
  background-color: #000;
  color: #fff;
  border: 1.5px solid #fff;
}
.c-btn.header-c-btn-shop:hover .c-btn-link svg path {
  fill: #fff;
}

@media (max-width: 1500px) {
  #header {
    padding: 0;
  }
  .header-inner.pc-only {
    display: none !important;
  }
  .header-inner.sp-only {
    display: block !important;
  }
  .header-sp-ctrl{
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 20px;
  }

  /* ハンバーガーアイコン */
  .header-sp-menuBtn{
    appearance: none;
    border: 0;
    background: transparent;
    padding: 0;
    width: 34px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
  }

  .header-sp-menuIcon{
    position: relative;
    width: 34px;
    height: 20px;
    display: block;
  }

  .header-sp-menuIcon span{
    position: absolute;
    left: 0;
    height: 2px;
    background: currentColor;
    transition:
      top .5s ease,
      width .5s ease,
      transform .5s ease;
    transform-origin: center;
  }

  /* --- 閉じている状態 --- */
  .header-sp-menuIcon span:nth-child(1){
    top: 4px;
    width: 34px;
    transform: rotate(0deg);
  }

  .header-sp-menuIcon span:nth-child(2){
    top: 14px;
    width: 34px;
    transform: rotate(0deg);
  }

  /* --- 開いている状態（×） --- */
  .header-sp-menuBtn.is-active .header-sp-menuIcon span:nth-child(1){
    top: 9px;
    width: 34px; 
    transform: rotate(45deg);
  }

  .header-sp-menuBtn.is-active .header-sp-menuIcon span:nth-child(2){
    top: 9px;
    width: 34px;
    transform: rotate(-45deg);
  }

  html.is-menu-open,
  html.is-menu-open body {
    overflow: hidden;
  }

  /* ハンバーガーメニューの中身 */
  #header.is-menu-open{
    position: fixed;
    color: #fff;
    z-index: 10000;
  }

  #header.is-menu-open .c-btn.header-c-btn-shop{
    display: none;
  }

  #header.is-menu-open .header-inner {
    filter: unset;
  }
  
  /* SPメニュー：閉 */
  .sp-menu{
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity .9s ease,
      visibility 0s linear .9s; /* opacity終了後にvisibilityを切る */
  }
  .sp-menu.sp-only {
    display: block !important;
  }

  /* SPメニュー：開 */
  .sp-menu.is-open{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition:
      opacity .9s ease,
      visibility 0s linear 0s;
  }

  .sp-menu-inner{
    height: 100%;
    padding: 90px 30px 60px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    color: #fff;
    overflow-x: scroll;
    width: min(1100px, 100%);
    margin: 0 auto;
  }

  .sp-menu-nav{
    margin-top: 94px;
    margin-bottom: 64px;
  }

  .sp-menu-list{
    display: grid;
    grid-template-columns: 1fr 1.17fr 1fr;
    gap: 2em 0;
    justify-content: center;
  }
  
  .sp-menu-item {
    width: fit-content;
  }

  .sp-menu-link{
    display: inline-flex;
    align-items: baseline;
    gap: 12px;
    color: inherit;
    text-decoration: none;
  }

  .sp-menu-main{
    font-size: 24px;
    font-weight: 600;
  }
  .sp-menu-item-gallery-li .sp-menu-main{
    font-size: 20px;
    font-weight: 500;
  }
  .sp-menu-sub{
    font-size: 10px;
  }

  .sp-menu-item-gallery .sp-menu-head{
    display: inline-flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 10px;
  }

  .sp-menu-item-gallery-ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-left: 7px;
  }

  /* SPメニュー内ボタン 共通 */
  .sp-menu-btn-wrap {
    display: flex;
    align-items: center;
  }
  .sp-menu-btn-wrap .c-btn {
    color: #000;
    width: 252px;
    height: 70px;
  }
  .sp-menu-btn-wrap .c-btn-link {
    font-size: 22px;
    font-weight: 500;
    width: 74%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* SPメニュー内ボタン shop */
  .sp-menu-c-btn-shop {
    background: #FFD900;
  }
  .sp-menu-c-btn-shop svg {
    width: 24px !important;
    height: 24px !important;
  }

  /* SPメニュー内ボタン shop hover */
  .sp-menu-c-btn-shop:hover {
    background: #000;
    color: #fff;
    border: 1.5px solid #fff;
  }
  .sp-menu-c-btn-shop:hover svg path {
    fill: #fff;
  }

  /* SPメニュー内ボタン contact */
  .sp-menu-c-btn-contact {
    background: #fff;
    margin-left: 18px;
  }

  .sp-menu-c-btn-contact svg {
    width: 24px !important;
    height: 24px !important;
  }

  /* SPメニュー内ボタン contact hover */
  .sp-menu-c-btn-contact:hover {
    background: #000;
    color: #fff;
    border: 1.5px solid #fff;
  }
  .sp-menu-c-btn-contact:hover svg path {
    fill: #fff !important;
  }

  .sp-menu-logo-sns{
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.6);
    padding: 0 6px;
    padding-top: 40px;
    margin: 0 -4px;
    margin-top: 70px;
  }

  .sp-menu-sns {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
  }

  .sp-menu-logo{
    width: 190px;
    display: block;
  }
  .sp-menu-sns_icon svg{
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 1000px) {
  .sp-menu-list{
    display: flex;
    flex-direction: column;
    gap: 34px;
    width: fit-content;
  }

  .sp-menu-inner{
    width: 100%;
    padding: 22px 25vw 60px;
  }

  .sp-menu-btn-wrap {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }
  .sp-menu-c-btn-contact {
    margin-left: 0;
    margin-top: 12px;
  }
}

@media (max-width: 768px) {
  .sp-menu-inner {
    padding: 22px 30px 60px;
  }
  .header-inner .content-wrap {
    padding: 0 12px;
  }
  .header-inner .header-logo .img img {
    height: auto;
    width: 50vw;
  }
  .header-sp-ctrl{
    gap: 2.5vw;
  }
  .c-btn.header-c-btn-shop {
    width: 30vw;
    height: min(54px, 10vw);
  }
  .c-btn.header-c-btn-shop .c-btn-link {
    font-size: 3vw;
    width: 90%;
  }
  .c-btn.header-c-btn-shop .c-btn-link svg {
    width: 3.5vw !important;
    height: 3.5vw !important;
  }

}

/*********************************************
トップページ
*********************************************/
#home.container {
  padding-top: 0;
}
/******** fv ********/
.sec_hone-fv{
  position: relative;
  min-height: calc(100svh - 80px);
  display: block;
  margin: 0 -60px;
}
/* パターン */
.sec_hone-fv .home-fv-pattern {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 50vw;
  height: calc(100svh - 80px - 50px);
  overflow: hidden;
}

.home-fv-pattern img {
    object-fit: cover;
    object-position: bottom;
    width: 100%;
    height: 100%;
    display: block;
}

/* ホープベアアウトライン */
.hopebear-outline { 
  position: absolute;
  z-index: 0;
  top: 24svh;
  left: -3vh;
  width: 100vw;
}

/* ベア */
.britto-bear {
  position: absolute;
  z-index: 2;
  right: 200px;
  bottom: 224px;
  width: 250px;
}

.fuwafuwa01 {
  animation: fuwafuwa01 3s infinite cubic-bezier(.45,.05,.55,.95);
}

@keyframes fuwafuwa01 {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(15px); }
  100% { transform: translateY(0); }
}

/* ハート */
.britto-red-heart {
  position: absolute;
  z-index: 2;
  right: 100px;
  bottom: 410px;
  width: 120px;
}

.fuwafuwa02 {
  animation: fuwafuwa02 3.5s infinite cubic-bezier(.45,.05,.55,.95);
}

@keyframes fuwafuwa02 {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(15px); }
  100% { transform: translateY(0); }
}

/* コピー */
.home-fv-copy {
  display: flex;
  align-items: center;
  z-index: 3;
  color: #fff;
  filter: drop-shadow(30px 30px 50px rgba(0, 0, 0, 0.4));
  position: absolute;
  left: 64px;
  bottom: 62px;
}
.home-fv-head {
  font-size: 8.5vw;
  line-height: 1.15;
}
.home-fv-sub {
  font-size: 2.7vw;
  line-height: 1.2;
  padding-left: 30px;
  padding-top: 30px;
}
/* スライド */
.home-fv-slider {
  transform: rotate(-20deg);
  transform-origin: center;
  filter: drop-shadow(30px 30px 50px rgba(0, 0, 0, 0.2));
  position: relative;
  z-index: 1;
}
.home-fv-slider .slick-list {
  overflow: visible;
}
.home-fv-slide {
  transform: rotate(20deg);
  width: calc(100vw / 2.7);
  margin: 0 60px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  box-sizing: border-box;
}
.home-fv-card {
  width: 100%;
  height: 100%;
}
.home-fv-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* fv NEWS */
.home-fv-news {
  width: min(550px,47vw);
  height: 150px;
  background: #fff;
  box-sizing: border-box;
  border-bottom-left-radius: 100px;
  border-start-start-radius: 100px;
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 44px;
  padding: 30px;
  padding-left: 80px;
}

.home-fv-news-meta {
  display: flex;
  margin-bottom: 6px;
}

.home-fv-news-meta .badge {
  background: #FFF645;
}

.home-fv-news-date {
  padding-left: 10px;
}

.home-fv-news-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;   /* 表示行数 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
  font-weight: 600;
}

@media (max-width: 1500px){
  /* コピー */
  .home-fv-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .home-fv-sub {
    padding-left: 0;
    padding-top: 0.7em;
  }
  .home-fv-sub .pc-only {
    display: none !important;
  }
}
@media (max-width: 1200px){
  .sec_hone-fv{
    margin: 0 -4vw;
  }
}

@media (max-width: 1000px){
  /* パターン */
  .sec_hone-fv .home-fv-pattern {
    width: 74vw;
    height: 46svh;
  }
  /* ホープベアアウトライン */
  .hopebear-outline {
    top: 4svh;
    left: -1vw;
  }
  /* ベア */
  .britto-bear {
    right: unset;
    left: 0;
    bottom: unset;
    top: 0;
    width: clamp(158px,40vw,220px);
  }
  /* ハート */
  .britto-red-heart {
    right: 1.7vw;
    bottom: calc(4svh + 150px + 26vw);
    width: clamp(60px,16vw,100px);
  }
  /* スライド */
  .home-fv-slider {
    top: calc(100svh / 10);
  }
  .home-fv-slide {
    margin: 0 4.6vw;
    width: calc(100svh / 2.5);
  }
  /* コピー */
  .home-fv-copy {
    left: 4vw;
    bottom: calc(150px + 4svh);
    padding-bottom: 4vw;
  }
  .home-fv-head {
    font-size: 18.5vw;
  }
  .home-fv-sub {
    font-size: 5.5vw;
  }
  /* fv NEWS */
  .home-fv-news {
    width: 87vw;
    padding: 3vw;
    padding-left: 12vw;
    bottom: 4svh;
  }
  .home-fv-news-meta {
    display: flex;
    margin-bottom: 0.15em;
  }
}
@media (max-width: 768px){
  .home-fv-copy {
    bottom: calc(22vw + 4svh);
  }
  .britto-red-heart {
    bottom: calc(4svh + 47vw);
  }
  .home-fv-news {
    height: 22vw;
  }
}
/******** special thanks! ********/
.sec_hone-thanks{
  background: #fff;
  margin: 0 -60px;
  padding-top: clamp(80px,21vw,168px);
  padding-bottom: 128px;
}

.home-thanks-inner{
  width: min(1300px, calc(100% - 60px));
  margin: 0 auto;
}
.hone-thanks-subtitle {
  text-align: center;
  font-size: 40px;
  line-height: 1.4;
  font-weight: 500;
  margin-bottom: 36px;
}
.home-thanks-wrap{
  display: grid;
  justify-content: center;
  gap: 56px;
  grid-template-columns: 1.1fr 1fr;
}

.home-thanks-media {
  aspect-ratio: 16 / 9;

}
.home-thanks-media iframe{
  aspect-ratio: 16 / 9;
  width: 100%;
  display: block;
}

/* SP */
@media (max-width: 1300px){
  .home-thanks-media {
    max-width: 570px;
  }
}
@media (max-width: 1200px){
  .sec_hone-thanks {
    margin: 0 -4vw;
  }
  .home-thanks-wrap {
    grid-template-columns: 1fr;
  }
  .home-thanks-media {
    max-width: 100%;
  }
}
@media (max-width: 768px){
  .hone-thanks-subtitle {
    font-size: 5.7vw;
    margin-bottom: 5vw;
  }
  .home-thanks-wrap {
    gap: 8vw;
  }
}
/******** ニュース ********/
.sec_hone-news {
  padding-top: 148px;
  padding-bottom: 130px;
}
.sec_hone-news .sec-title {
  margin-bottom: 46px;
}
.sec_hone-news .home-news-inner{
  width: min(1050px, calc(100% - 60px));
  margin: 0 auto;
}
.sec_hone-news .badge {
  background: #fff;
}
.sec_hone-news .news-list_inner {
  margin-bottom: 36px;
}
.home-news-btn {
  justify-self: end;
}

@media (max-width: 1200px){
  .sec_hone-news .home-news-inner {
    width: 100%;
  }
}
@media (max-width: 768px){
  .sec_hone-news .sec-title {
    margin-bottom: 6vw;
  }
}


/******** ROMERO BRITTO ********/
.sec_home-britto{
  background-image: url("images/home-rb-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 -60px;
  padding-top: clamp(94px,23vw,150px);
  padding-bottom: 100px;
}
.sec_home-britto .sec-title {
  margin-bottom: clamp(38px,9vw,100px);
}

.home-britto-wrap{
  width: min(1760px, 100% - 60px);
  margin: 0 auto;
  display: grid;
  align-items: start;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  padding-bottom: clamp(60px,6.3vw,120px);
}

.home-britto-photo{
  aspect-ratio: 1 / 1.3;
  overflow: hidden;
  filter: drop-shadow(30px 30px 50px rgba(0, 0, 0, 0.2));
  margin-top: 1.5vw;
}

.home-britto-photo img{
    width: 100%;
    height: 100%;
    transform: scale(1.1);
    object-fit: cover;
    object-position: top;
    display: block;
}

.home-britto-lead{
  font-size: clamp(32px,3.2vw,62px);
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: clamp(20px,4%,36px);
}
.home-britto-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(700px, 86%);
  margin-bottom: clamp(28px,5.2%,38px) !important;
}
.home-britto-logo{
  margin-bottom: clamp(20px,4%,24px);
}

.home-britto-logo img{
  width: 100%;
  height: auto;
  display: block;
}
.home-britto-text{
  margin-bottom: clamp(36px,7.5%,56px);
}

/* 下段：スライダー */
.home-britto-slider{
  width: 100%;
  filter: drop-shadow(30px 30px 50px rgba(0, 0, 0, 0.2));
  padding-top: 90px;
}

.home-britto-slide{
  padding: 0 14px;
}

.home-britto-slide img {
  width: 100%;
  height: auto;
  display: block;
}

/* slickの余白や揺れを抑える */
.home-britto-slider .slick-track{
  display: flex;
  align-items: center;
}
.home-britto-slider .slick-list {
  overflow: visible;
}
.home-britto-slider .slick-slide{
  height: auto;
}

.home-britto-slide002{
  margin-top: -200px;
}
.home-britto-slide005{
  margin-top: -200px;
}
.home-britto-slide008{
  margin-top: -200px;
}

@media (max-width: 1200px) {
  .sec_home-britto {
    margin: 0 -4vw;
    padding-bottom: 0;
  }
  .home-britto-wrap {
    width: calc(100% - 8vw);
    gap: 4.5vw;
  }
}
  
@media (max-width: 1000px){
  .home-britto-wrap{
    grid-template-columns: 1fr;
    gap: 3.2vw;
    padding-bottom: 70px;
  }
  .home-britto-photo {
    width: 94%;
    margin: 0 auto;
  }
  .home-britto-lead.pc-only {
    display: none !important;
  }
  .home-britto-lead.sp-only {
    display: block !important;
    font-size: 6.5vw;
    margin-bottom: 0;
  }
  .home-britto-logo-wrap {
    margin: 0 auto;
  }
  .home-britto-logo {
    width: 94%;
    margin-top: 3vw;
    margin-bottom: 3vw;
  }
  .home-britto-text {
    margin-bottom: clamp(40px,7vw,56px);
  }
  .home-britto-slider{
    padding-bottom: 70px;
  }
  .home-britto-slide{
    padding: 0 10px;
  }
}

@media (max-width: 768px) {

}

/******** ART ********/
.sec_home-rb-popart {
  margin: 12px -60px;
}

.home-rb-popart-inner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 1200px) {
  .sec_home-rb-popart {
    margin: 1.5% -4vw;
  }
}
@media (max-width: 768px) {
  .home-rb-popart-inner {
    height: 34vh;
  }
  .home-rb-popart-inner img {
    height: 100%;
    object-position: 42% center;
  }
}

/******** gallery ********/
#sec_home-gallery{
  background-image: url("images/home-gallery-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 -60px;
  padding: 0 60px;
  padding-top: clamp(110px,29vw,160px) !important;
  padding-bottom: clamp(110px,29vw,160px) !important;
}
#sec_home-gallery .sec-title,
#sec_home-gallery .sec-desc {
  color: #fff;
}

.home-gallery-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 124px 80px;
  align-items: start;
}

.home-gallery-card:nth-child(2){
  margin-top: 180px;
}

.home-gallery-card-inner{
  background: #fff;
  padding: clamp(20px,2.2vw,40px);
  padding-bottom: clamp(54px,5vw,74px);
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.home-gallery-media{
  aspect-ratio: 1.5 / 1;
  overflow: hidden;
}
.home-gallery-media img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.home-gallery-title{
  line-height: 0.9;
  font-weight: 600;
  font-size: clamp(66px, 5.7vw, 80px);
  margin-top: -16px;
  margin-bottom: 10px;
}
.home-gallery-sub{
    font-size: clamp(18px, 2vw, 20px);
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 34px;
}
.home-gallery-address{
  margin-bottom: 46px;
}
@media (max-width: 1400px) {
  .home-gallery-grid {
    gap: 124px 3vw;
  }
}
  
@media (max-width: 1200px) {
  #sec_home-gallery{
    margin: 0 -4vw;
    padding: 0 4vw;
  }
}

@media (max-width: 1000px){
  .home-gallery-grid{
    grid-template-columns: 1fr;
    gap: 6vw;
  }
  .home-gallery-card:nth-child(2) {
    margin-top: 0;
  }
}
@media (max-width: 768px){
  .home-gallery-card-inner {
    padding: 4.5vw 4.5vw 10vw;
  }
  .home-gallery-title {
    font-size: 12.5vw;
    margin-top: -0.2em !important;
  }
  .home-gallery-sub {
    font-size: 3.31vw;
    margin-bottom: 1.6em;
  }
  .home-gallery-address {
    margin-bottom: 2.6em;
  }
}

/******** partner gallery ********/
#sec_home-partner-gallery{
  position: relative;
  padding-top: clamp(110px,29vw,160px) !important;
  padding-bottom: clamp(110px,29vw,160px) !important;
}
.britto-heart {
  width: 280px;
  height: auto;
  display: block;
  filter: drop-shadow(30px 30px 30px rgba(0, 0, 0, 0.1));
  position: absolute;
  right: 70px;
  top: 200px;
}
#sec_home-partner-gallery .home-gallery-card:nth-child(3){
  margin-top: -180px;
}

#sec_home-partner-gallery .home-gallery-title {
    font-size: clamp(62px, 3vw, 48px);
    line-height: 1.1;
    margin-top: -10px;
}
@media (max-width: 1500px){
  .britto-heart {
    width: 16vw;
    right: 0;
  }
}
  
@media (max-width: 1200px){
  #sec_home-partner-gallery {
    padding: 160px 0;
  }
  .home-britto-heart {
    display: none;
  }
}
@media (max-width: 1000px){
  #sec_home-partner-gallery .home-gallery-card:nth-child(3){
    margin-top: 0;
  }
}
@media (max-width: 768px){
  #sec_home-partner-gallery .home-gallery-title {
    font-size: 9vw;
    line-height: 1.2;
  }
}

/******** shop ********/
body.home .sec_shop {
  margin-top: 0;
}

/******** ABOUT ********/
.sec_home-about{
  background: #fff;
  margin: 0 -60px;
  padding-top: clamp(100px,25vw,170px);
  padding-bottom: calc(170px + 200px);
}
.home-about-wrap{
  width: min(1760px, 100% - 60px);
  margin: 0 auto;
  display: grid;
  justify-content: center;
  align-items: start;
  grid-template-columns: 1.3fr 1fr;
  gap: 96px;
}

.home-about-catch{
  font-size: clamp(63px, 6.3vw, 116px);
  font-weight: 600;
  line-height: 1;
  text-align: left;
  margin-bottom: clamp(16px, 1.5vw, 32px);
}

.home-about-lead{
  font-size: clamp(28px, 2.75vw, 50px);
  font-weight: 600;
  margin-bottom: clamp(24px, 2.3vw, 50px);
}

.home-about-text{
  margin-bottom:40px;
}

.home-about-media{
  aspect-ratio: 1 / 1;
  overflow: hidden;
  filter: drop-shadow(30px 30px 50px rgba(0, 0, 0, 0.2));
}

.home-about-media img{
  width:100%;
  height:auto;
  display:block;
}
@media (max-width: 1200px){
  .sec_home-about {
    margin: 0 -4vw;
    padding-bottom: 56vw;
  }
  .home-about-wrap {
    width: calc(100% - 8vw);
    gap: 5vw;
  }
  .home-about-text .pc-only {
    display: none !important;
  }
}

@media (max-width: 1000px){
  .home-about-wrap {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 10vw;
  }
  .home-about-media {
    width: 80vw;
  }
  .home-about-catch {
    font-size: 11.8vw;
    margin-bottom: clamp(20px, 2vw, 34px);
  }
  .home-about-lead {
    font-size: 5.25vw;
    margin-bottom: clamp(34px, 3.4vw, 60px);
  }
}

/******** CONTACT ********/
.sec_home-contact{
    padding-bottom: 116px;
}

.sec_home-contact .sec-title_main {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.sec_home-contact .sec-title_main svg {
  width: 60px !important;
  height: 60px !important;
  margin-right: 32px;
}
.home-contact-inner{
  width:min(1300px, 100%);
  margin: 0 auto;
  display: grid;
  justify-content: center;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 140px;
}

.home-contact-media{
  aspect-ratio: 1 / 1.25;
  overflow: hidden;
  filter: drop-shadow(30px 30px 50px rgba(0, 0, 0, 0.2));
  margin-top: -200px;
}

.home-contact-media img{
  width:100%;
  height:auto;
  display:block;
}

/* ボタン */
.home-contact-btn {
    width: 346px;
    margin: 0 auto;
}

.home-contact-btn .c-btn-link {
  font-weight: 400;
  width: 90%;
}
@media (max-width: 1500px) {
  .home-contact-inner{
    gap: 4vw;
  }
}
@media (max-width: 1100px) {
  .home-contact-media {
    margin-top: -8vw;
  }
}
@media (max-width: 1000px){
  .sec_home-contact {
    padding-bottom: 30vw;
  }
  .home-contact-inner {
    grid-template-columns: 1fr;
    gap: 24vw;
  }
  .home-contact-media {
    width: 60vw;
    justify-self: end;
    margin-top: -34vw;
  }
}

@media (max-width: 768px){
  .sec_home-contact .sec-title_main svg {
    width: 9.5vw !important;
    height: 9.5vw !important;
    margin-right: 4vw;
  }
  .home-contact-btn {
    width: 280px;
    height: 70px;
  }
}
/*********************************************
SHOP（共通テンプレ）
*********************************************/
.sec_shop {
  position: relative;
  background-image: url('images/shop-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 -60px;
  margin-top: 250px;
}

.sec_shop-inner {
  width: 100vw;
  padding: 160px 0 100px;
  margin: 0 auto;
}

.sec_shop .sec-title_main {
  display: inline-block;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.sec_shop .sec-title_main svg {
  width: 50px;
  height: 50px;
  margin-right: 14px;
}

.sec_shop .sec-title_sub {
  color: #fff;
}

.shop-content {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  width: min(1600px, calc(100% - 30px));
  margin: 0 auto;
  filter: drop-shadow(50px 30px 30px rgba(0, 0, 0, 0.15));
}

.shop-img {
  margin: 0;
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.shop-img .shop-britto-logo {
  width: 90%;
  height: auto;
  position: absolute;
}
.shop-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shop-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}

.shop-card-inner {
  padding: 50px 20px 40px;
}

.shop-card-upper {
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

.shop-card-icon {
  margin-bottom: 12px;
}

.shop-card-icon svg {
  width: 50px;
  height: 50px;
}

.shop-card-title {
  font-size: 60px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 30px;
}

.shop-card-title .logo-img {
  width: 512px;
  margin: 0 auto;
  margin-bottom: 10px;
}

.shop-card-desc {
  margin-bottom: 32px;
  letter-spacing: -0.09em;
}

/* SHOP NOW ボタン */
.sec-shop-c-btn {
  background-color: #ffd900;
  color: #000;
}
.sec-shop-c-btn .c-btn-link {
  font-weight: 500;
}
.sec-shop-c-btn:hover {
  background-color: #000;
  color: #ffd900;
  border: inherit;
}

.shop-card-notice {
  border: 1px solid #e3e3e3;
  background-color: #fff;
  text-align: center;
  padding: 20px;
  width: min(650px, 100%);
  margin: 0 auto;
  box-sizing: border-box;
}
.shop-card-notice p {
  color: #f00238;
}
@media (max-width: 1400px) {
  .shop-card-notice .pc-only {
    display: none !important;
  }
}
@media (max-width: 1200px) {
  .shop-content {
    grid-template-columns: 1fr;
    width: min(1000px, calc(100% - 6vw));
  }
  .shop-img {
    aspect-ratio: 1.5 / 1;
  }
  .shop-card-title {
    font-size: clamp(33px,8.5vw,94px);
    margin-bottom: 20px;
  }
  .shop-card-title .logo-img {
    width: 85%;
    margin-bottom: 4px;
  }
  .sec_shop .sec-title_main svg {
    width: 0.75em;
    height: 0.75em;
    margin-right: 0.15em;
  }
  .shop-card-icon {
    margin-bottom: 0;
  }
  .shop-card-icon svg {
    width: 2.4em;
    height: 2.4em;
  }
  .shop-card-desc .br {
    display: none;
  }
  .shop-card-notice {
    width: min(900px, 100%);
  }
}
@media (max-width: 768px){
  .sec_shop {
    margin-top: 180px;
  }
  .sec_shop-inner .sec-title {
    margin-bottom: 40px!important;
  }
  .sec_shop-inner {
    padding-top: 120px;
  }
  .shop-card-inner {
    padding: 6vw 3vw;
  }
  .shop-card-upper {
    margin-bottom: 36px;
  }
  .shop-card-icon {
      margin-bottom: 0.5em;
  }
  .shop-card-desc .br {
    display: block;
  }
  .shop-card-notice {
    padding: 1em 0.7em;
  }
  .shop-card-notice p {
    font-size: 2.73vw;
    letter-spacing: 0;
    font-weight: 500;
    line-height: 1.5;
  }
}
/*********************************************
フッター
*********************************************/
.footer {
  background-color: #000;
  color: #fff;
}

.footer .content-wrap {
  width: min(1600px, calc(100% - 60px));
  margin: 0 auto;
  padding: 140px 0 100px;
}

.footer-main {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 200px;
}

.footer-main-inner {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

/* フッターボタン共通 */
.footer-btn-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-btn-wrap .c-btn-link {
  font-weight: 500;
}

.footer-c-btn-shop,
.c-btn.footer-c-btn-contact {
  width: 290px;
}

.footer-c-btn-shop .c-btn-link,
.footer-c-btn-contact .c-btn-link{
  width: 72%;
  display: flex;
  justify-content: space-between;
}

/* フッターボタンshop */
.c-btn.footer-c-btn-shop {
  background-color: #ffd900;
  color: #000 !important;
}

.footer-c-btn-shop .c-btn-link svg {
  width: 28px;
  height: 28px;
}

/* フッターボタンshop hover */
.c-btn.footer-c-btn-shop:hover {
  background-color: #000;
  border: 1.5px solid #fff;
  color: #fff !important;
}

.footer-c-btn-shop:hover .c-btn-link svg path {
  fill: #fff !important
}

/* フッターボタンcontact */
.footer-c-btn-contact {
  background: #fff;
  color: #000 !important;
}

.footer-c-btn-contact .c-btn-link svg{
  width: 28px !important;
  height: 28px !important;
}

/* フッターボタンcontact hover */
.footer-c-btn-contact:hover {
  background-color: #000;
  border: 1.5px solid #fff;
  color: #fff !important;
}

.footer-c-btn-contact:hover .c-btn-link svg path {
  fill: #fff !important;
}

.footer-logo-sns {
  display: flex;
  align-items: center;
  gap: 70px;
}

.footer-logo img {
  height: 44px;
  width: auto;
}

.footer-sns {
  display: flex;
  align-items: center;
  gap: 16px;
  line-height: 0;
}

.footer-sns_icon svg {
  width: 24px;
  height: 24px;
}

/* 右：ナビリスト */
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-nav_col {
  display: flex;
  gap: 22px 26px;
}

.footer-nav_group {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.footer-nav_group:nth-child(odd) {
  width: 17em;
}
.footer-nav_link {
  display: flex;
  align-items: baseline;
  gap: 12px;
  color: #fff;
}

.footer-nav_headmain {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.footer-nav_headsub {
  font-size: 12px;
}

.footer-nav_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 8px;
}

.footer-nav_item .footer-nav_headmain {
  font-size: 20px;
  font-weight: 400;
}

/* コピーライトバー */
.footer-bottom {
  background-color: #3f3f3f;
  width: 100vw;
}

.footer-bottom-inner {
  width: min(1730px, calc(100% - 60px));
  height: 56px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 12px;
}

.footer-bottom-divider {
  display: block;
  width: 1px;
  height: 16px;
  background-color: #fff;
}

@media (max-width: 1550px){
  .footer-main {
    gap: 100px;
  }
  .footer .content-wrap {
    display: flex;
    justify-content: center;
  }
  .footer-logo-sns {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
  }
}  
@media (max-width: 1300px){
  .footer-main {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 70px;
  }
  .footer .content-wrap {
    width: 100%;
    padding: 100px 0 64px;
  }
  .footer-nav {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .footer-nav_group:nth-child(odd) {
    width: 100%;
  }
  .footer-nav_col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .footer-nav_list {
    gap: 10px;
  }
  .footer-nav_group {
    gap: 10px;
  }
  .footer-nav_link {
    display: flex;
    justify-content: center;
  }
  .footer-btn-wrap {
    align-items: center;
  }
  .footer-logo-sns {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .footer-bottom-inner {
    gap: 14px;
    font-size: 10px;
    display: flex;
    justify-content: center;
  }
  @media (max-width: 768px){
    .footer-nav_headmain {
      font-size: 6vw;
    }
    .footer-nav_headsub {
      font-size: 2.5vw;
    }
    .footer-nav_item .footer-nav_headmain {
      font-size: 5.2vw;
    }
    .footer-c-btn-shop,
    .c-btn.footer-c-btn-contact {
      width: 64vw;
      height: max(14vw, 70px);
    }
    .footer-btn-wrap .c-btn-link {
      font-size: 5.5vw;
    }
    .footer-c-btn-shop .c-btn-link svg,
    .footer-c-btn-contact .c-btn-link svg {
      width: 6vw !important;
      height: 6vw !important;
    }

    .footer-logo img {
      height: auto;
      width: 70vw;
    }

  }
}
/*********************************************
index.php（404 NotFound）
*********************************************/
.error404 .note {
  text-align: center;
  width: 90vw;
  margin: 0 auto;
  margin-bottom: 10svh;
}