@charset "utf-8";

.mv {
  width: 100%;
}
.slider{
  overflow:hidden;
}
.slide img{
  width:100%;
  height:auto;
  display:block;
}
.concept_wrap {
    padding-top: 5.38%;
    position: relative;
    background-image: url(../images/top-about_bg1.png),url(../images/top-about_bg2.png),url("../images/top-collection_bg1.png"), url("../images/top-collection_bg2.png");
    background-repeat: no-repeat;
    background-position: left top 23.07%,right top,left bottom 18.46%,right bottom 7.69%;
    background-size: 57.69% auto,36.15% auto,32.3% auto,62.3% auto;
    padding-bottom: 18.46%;
}

.france_flag {
    width: 96px;
    position: absolute;
    left: 6.15%;
}
.inner {
  width: min(100% - 19.23%, 1200px);
  margin-inline: auto;
}

.history {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.section_body.irregular {
	width: 36.15%;
	margin-top: 30.76%;
    padding-top: 56px;
    padding-right: 56px;
    padding-left: 40px;
    padding-bottom: 24px;
	position:relative;
}
.section_body.irregular::after{
  content:"PARIS, FRANCE";
  position:absolute;
  bottom:40px;
  right:-60px;
  writing-mode:vertical-rl;
  font-size:1.3rem;
  letter-spacing:.1em;
  font-weight:400;
  white-space:nowrap;
}
.section_body.irregular::before{
  content:"";
  position:absolute;
  top:16px;
  left:-16px;
  right:16px;
  bottom:-16px;
  border:1.2px solid #c02a2c;
}
.top_history_img {
    margin-bottom: 24px;
}

.section_body.irregular p {
    margin-bottom: 16px;
    letter-spacing: 0.05em;

}
.history .section_body_flex .vertical-rl {
    writing-mode: vertical-rl;
    font-size: 1.3rem;
    letter-spacing: .1em;
    margin-top: 50%;
    margin-right: -80px;
}
.collection {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.collection .section_body {
    margin-top: 13.07%;
}

.collection .section_body.irregular2 {
    width: 40%;
    margin-top: 0px;
    padding-right: 48px;
    padding-left: 88px;
    padding-top: 56px;
}
.collection .section_body.irregular2::before{
  content:"";
  position:absolute;
  top:16px;
  left:16px;
  right:-16px;
  bottom:-16px;
  border:1.2px solid #c02a2c;
}
.top_louis_img {
    margin-bottom: 24px;
		position:relative;
}

.top_louis_img::before{
  content:"LOUIS ALEXANDRE GRANGÉ";
  position:absolute;
  top:0px;
  left:-48px;
  writing-mode:vertical-rl;
  transform:rotate(180deg);
  font-size:18px;
  letter-spacing:.1em;
  font-weight:400;
  white-space:nowrap;
}






/* =========================
   商品一覧
========================= */

.products {
	padding-top: 6.15%;
    padding-bottom: 8.46%;
}
.products_head {
/*    margin-bottom: 6.15%;*/
}



.product-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-top: 5.38%;
}


/* カード */

.product-card{
  position:relative;
  aspect-ratio:1 / 1;
  overflow:visible;
  border:none;
  padding:0;
  background:none;
  cursor:pointer;
}
.product-card::after{
  content:"";
  position:absolute;
  inset:0;
  border:2px solid #c02a2c;
  opacity:0;
  transition:0.4s;
  pointer-events:none;
  z-index:5;
}
.product-card:hover::after{
  opacity:1;
}
.product-card_img-wrap{
  position:relative;
  display:block;
  width:100%;
  height:100%;
  overflow:hidden;
  aspect-ratio:1 / 1;
}

.product-card_img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
/*  transition:transform 0.4s ease;*/
}

.product-card:hover .product-card_img{
/*  transform:scale(1.05);*/
}

.product-card_new{
  position:absolute;
  top:8px;
  right:-10px;
  width:72px;
  z-index:10;
  pointer-events:none;
}
.product-card_new img{
  display:block;
  width:100%;
  height:auto;
}




/* =========================
   モーダル
========================= */

.modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.8);
  display:flex;
  justify-content:center;
  align-items:center;
  padding:20px;
  z-index:9999;
  opacity:0;
  visibility:hidden;
}


/* 開いた状態 */

.modal.active{
  opacity:1;
  visibility:visible;
}


/* 中身 */

.modal-content{
  position:relative;
  width:min(600px, 100%);
  max-height:70vh;
  overflow-y:auto;
  background:#fff;
  padding:56px;
/*
  opacity:0;
  transition:
    transform 0.8s cubic-bezier(.22,.61,.36,1),
    opacity 0.8s cubic-bezier(.22,.61,.36,1);
*/
}
/*
.modal.active .modal-content{
  transform:translateY(0);
  opacity:1;
}
*/
.modal-image{
    position: relative;
    margin-bottom: 16px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}
.modal-main-image {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 16px;
}
.modal-image_new{
  position:absolute;
  top:8px;
  right:-12px;
  width:88px;
  z-index:10;
  pointer-events:none;
}
.modal-image_new img{
  display:block;

  width:100%;
  height:auto;
}
.modal-text h3{
    margin-bottom: 8px;
    font-size: 24px;
    font-weight: 400;
    border-bottom: 1px solid #c02a2c;
}


.modal-text p{
    line-height: 1.8;
}
.modal-text .artist {
    margin-bottom: 8px;
    font-size: 18px;
}



/* 閉じる */

.modal-close{
  position:absolute;
  top:15px;
  right:15px;
  width:40px;
  height:40px;
  border:none;
  border-radius:50%;
  background:#000;
  color:#fff;
  font-size:20px;
  cursor:pointer;
	z-index: 1001;
}

.modal-prev,
.modal-next{
  position:absolute;
  top:50%;

  width:48px;
  height:48px;

  border:1px solid #c02a2c;
  border-radius:50%;

  background:#fff;

  cursor:pointer;

  z-index:10;

  padding:0;

  transition:0.3s;
}

.modal-prev{
  left:20px;
  transform:translateY(-50%);
}

.modal-next{
  right:20px;
  transform:translateY(-50%);
}


.modal-prev::before,
.modal-next::before{
  content:"";
  position:absolute;

  top:50%;
  left:50%;

  width:10px;
  height:10px;

  border-top:1px solid #c02a2c;
  border-right:1px solid #c02a2c;
}

.modal-prev:hover,
.modal-next:hover{
  background:#c02a2c;
}

.modal-prev:hover::before,
.modal-next:hover::before{
  border-color:#fff;
}

.modal-prev::before{
  transform:translate(-35%, -50%) rotate(-135deg);
}

.modal-next::before{
  transform:translate(-65%, -50%) rotate(45deg);
}

.foucher_official {
    padding-top: 6.15%;
    padding-bottom: 8.46%;
}
.official_catch {
    text-align: center;
    margin-top: 40px;
}
.official_body {
    display: flex;
    margin-top: 48px;
    gap: 48px;
    padding-top: 32px;
    padding-right: 24px;
    padding-left: 24px;
    padding-bottom: 32px;
    border: 1.2px solid #c02a2c;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.official_img {
    width: 248px;
}
.official_txt {
    width: 304px;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.official_logo {
    position: relative;
    width: 144px;
    margin: 0 auto 24px;
    padding-bottom: 24px;
}
.official_logo img{
    display:block;
    width:100%;
    height:auto;
}



.official_logo::after{
  content:"";
  position:absolute;

  left:50%;
  bottom:0px;

  width:96px;
  height:1px;

  background:#c02a2c;

  transform:translateX(-50%);
}


/*
.official_logo::before,
.official_logo::after{
    content:"";
    position:absolute;
    top:50%;
    width:96px;
    height:1px;
    background:#c02a2c;
	transform:translateY(-50%);
}
.official_logo::before{
    right:100%;

    margin-right:24px;
}
.official_logo::after{
    left:100%;

    margin-left:24px;
}
*/
.official_txt p {
    margin-bottom: 16px;
}
