@charset "utf-8";@charset "utf-8";
.image {
	margin-right: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
}

.image img {
	display: block;
	width: 100%;
	height: auto;
}


#Area {
	font-family: 'Yu Gothic Medium','游ゴシック Medium','Franklin Gothic Medium','Osaka','Roboto', sans-serif;
	/*font-family: 'Shippori Mincho B1', serif;*/
	text-align: center;
	color:#333333;
	width: 100%;
	margin: 0 auto;
	display: block;
	overflow: hidden;
	font-size: 15px;
	
}

.backcolor {
	background: #f4f4e7;
}

/*スマホの時だけ改行*/
.br-sp {
    display: none;
}

@media (max-width: 600px) {
    .br-sp {
        display: block;
    }
}

/* 余白*/
.spece {
 margin-bottom:3%;
}	

.spece2 {
    padding-top: 10%;
    text-align: center;
}	

.spece_bottom {
 padding-bottom:15%;
}	


/*===================================
区切り線
===================================*/

.border_1 {
	border-top: 1px solid #d1cbc2;
	width: 80%;
	margin: 10% auto 9% auto;
}



/*===================================

===================================*/

.toptext {
	width: 50%;
	margin: 10% auto;
	line-height: 1.8;

	}

/*===================================
container_01   エミパリの説明
===================================*/

.container_01 {
	background: #e9d7dd;
	padding: 10% 0;
}

.container_01_detail {
	width: 50%;
	margin: 3% auto 5%;
	line-height: 1.8;
	text-align: left;
}

.photo-box img {
	width: 45%;	
	margin: 0 auto;
	margin-bottom: 5%;
}

.container_01 span {
	color: #5277AB;
	font-weight: 700;
	font-size: 17px;
}

.tilt-right {
  transform: rotate(3deg); 
  transition: transform 0.3s ease; 
}


.photo-box {
  position: relative;
  display: inline-block;
}

.photo-box::before {
  content: "";
  position: absolute;
  top: 20%;       
  left: 12%;
  width: 76%;
  height: 80%;
  border: 2px solid #eb317d; 
  z-index: 0;          /* 画像より下に */
}

.photo-box img {
  display: block;
  position: relative;
  z-index: 1; /* 枠の上に画像を重ねる */
}



/*===================================
container_02   コラボアイテムの説明
===================================*/

.container_02 {
	padding: 10% 0 0%;
}

.container_02_item_all_img {
  display: grid;
  grid-template-columns: 48.5% 48.5%;
  gap: 2% 3%;
  grid-auto-flow: row;
  grid-template-areas:
    "item_01 item_02"
    "item_03 item_04";
  width: 60%;
  margin: 0 auto;
	padding-bottom: 10%;
}

.item_01 { grid-area: item_01; }
.item_02 { grid-area: item_02; }
.item_03 { grid-area: item_03; }
.item_04 { grid-area: item_04; }



.container_02_item_all{
  text-align: center;         
  position: relative;
}

.item_all_title {
	width: 50%;
    margin: 0 auto;
}

/*===================================
container_02   アイコン設置する場合
===================================*/
.item_all_title {
    font-weight: 700;
    font-size: 30px;
    line-height: 1.3;
    color: #5277ab;
    margin: 0 auto -1%;
    z-index: 1;
}

/* タイトル右のアイコン（ズレずに寄り添う） */
.title-icon{
  display: inline-block;     
  width: 60px;
  margin-left: 0.6em;         
  vertical-align: top;        
  transform: rotate(24deg) translateY(4px); 
  z-index: 0;                 
  pointer-events: none;       
}



/* ===============================
   COLLABORATION ITEMS｜枠ごと拡大
   =============================== */

.container_02_item_all_img > div,
.container_02_item_all_img > a {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
  will-change: transform;
}


.container_02_item_all_img img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  transition: filter 0.4s ease;
}

/* --- hover時（PC）--- */
@media (hover:hover) and (pointer:fine) {
  .container_02_item_all_img > div:hover,
  .container_02_item_all_img > a:hover {
    transform: scale(1.03);              
    box-shadow: 0 12px 28px rgba(0,0,0,.15);
  }
  .container_02_item_all_img > div:hover img,
  .container_02_item_all_img > a:hover img {
    filter: brightness(1.05);
  }
}


/* --- focus時（Tab操作でも拡大）--- */
.container_02_item_all_img > div:focus-visible {
  transform: scale(1.05);
  box-shadow: 0 12px 28px rgba(0,0,0,.15);
}
.container_02_item_all_img > div:focus-visible img {
  filter: brightness(1.05);
}

/* --- 動作軽減設定対応 --- */
@media (prefers-reduced-motion: reduce) {
  .container_02_item_all_img > div,
  .container_02_item_all_img img {
    transition: none;
  }
}



/* --- 点線の枠エフェクト --- */
.container_02_item_all_img > div::after,
.container_02_item_all_img > a::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  border: 4px dashed rgba(0, 0, 0, 0); 
  pointer-events: none;
  transition: border-color 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

/* hover時に点線を表示 */
@media (hover:hover) and (pointer:fine) {
  .container_02_item_all_img > div:hover::after,
  .container_02_item_all_img > a:hover::after {
    border-color: #ef4a8c;
    opacity: 1;
  }
}

 focus時（キーボード操作対応） 
.container_02_item_all_img > div:focus-visible::after {
  border-color: #ef4a8c;
  opacity: 1;
}

.container_02_item_all_img > a {
  display: block;
}


/*===================================
スマホで無効にする場合
===================================*/

/*
@media (hover:none) {
  .container_02_item_all_img > div:hover {
    transform: none;
    box-shadow: none;
  }
}
*/


/*===================================
各ブランドの詳細
===================================*/

.container_02_item_detail {
	 background: #fefefe;
	 padding: 10% 0;
}

.container_02_title {
	width: 50%;
	margin: 0 auto
}


.container_02_detail {
	width: 50%;
	margin: 3% auto 5%;
	line-height: 1.8;
	text-align: center;
}

.container_02_item_detail img
{
	width: 50%;
	margin: 0 auto;
}


/*===================================
各ブランドの画像切り替え指示
===================================*/
.detail-slider {
  position: relative;
	width: 50%;
	max-width: 1000px;
	margin: 2% auto 4%;
	overflow: hidden;
}

/* 全スライド非表示 */
.detail-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.detail-slide img {
  width: 100%;
  height: auto;
  display: block;
}

/* 表示しているスライド */
.detail-slide.is-active {
  opacity: 1;
  position: relative;
}


/*===================================
各ブランドのアイテム詳細記載
===================================*/

.detail-info {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.detail-info__brand {
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 7px;
}

.detail-info__name {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.detail-info__price {
  font-size: 1.3rem;
  margin-bottom: 17px;
  color: #333;
}

/* BUYボタン */
.detail-info__btn {
    display: inline-block;
    padding: 9px 30px;
    border: 1px solid #000;
    border-radius: 4px;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    text-decoration: none;
    color: #000;
    transition: all 0.2s ease;
}

.detail-info__btn:hover {
  background: #000;
  color: #fff;
}




/*===================================
コーディネートの詳細
===================================*/

.container_02_item_cordinate {
  background-image: url("/photo/page/20251030/back_4.png");
  background-repeat: no-repeat; /* 繰り返しなし */
  background-position: center center; /* 中央寄せ */
  background-size: cover; /* 要素全体にフィット */
}

.container_02_item_cordinate {
        padding: 3% 0 10%;
    }

.cordinate_title  {
	    width: 50%;	
	}


.cordinate_img {
	width: 50%;
	margin: 0 auto;
}

.cordinate_img {
	 padding: 7% 0 3%;
}

.container_02_detail {
	width: 50%;
	margin: 3% auto 5%;
	line-height: 1.8;
	text-align: center;
}


.item-price-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2% 5%;
    max-width: 450px;
    margin: 0 auto;
    /* font-family: "Helvetica Neue", "Noto Sans JP", sans-serif; */
    /* font-size: 14px; */
    color: #333;
    width: 80%;
	margin-bottom: 7%;
}

.item-price {
  display: flex;
  justify-content: space-between; /* 左右に整列 */
  border-bottom: 1px solid #333;
  padding-bottom: 4px;
}

.item-name {
  /*font-weight: 500;*/
  letter-spacing: 0.05em;
}

.container_02_item_cordinate_inner {
    background: rgba(255, 255, 255, 0.6);
    padding: 5% 0%;
    margin-top: 5%;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(6px);
    width: 50%;
    margin: 0 auto;
}


/* cordinateボタン */
.cordinate-info__btn {
    display: inline-block;
    padding: 9px 30px;
    border: 1px solid #000;
    border-radius: 4px;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    text-decoration: none;
    color: #000;
    transition: all 0.2s ease;
}

.cordinate-info__btn:hover {
  background: #000;
  color: #fff;
}



/*===================================
ノベルティ関連
===================================*/

.container_03 {
	background: #e9d7dd;
	padding: 10% 0;
}

.container_03 img {
    width: 50%;
    margin: 0 auto;
}

.container_03_detail {
    width: 50%;
    margin: 3% auto 5%;
    line-height: 1.8;
    text-align: center;
}


/*===================================
ボタン系
===================================*/

/*黒細ライン＆ホバーグレー*/
a.btn_01 {
display: flex;
    justify-content: center;
    align-items: center;
    background: #bf2661;
    border: 1px solid #bf2661;
    box-sizing: border-box;
    width: 450px;
    height: 55px;
    padding: 0 6% 0 6%;
    color: #fff;
    font-size: 16px;
    text-align: left;
    text-decoration: none;
    position: relative;
    transition-duration: 0.2s;
     margin: 10% auto 4% auto;
}

a.btn_01:hover {
  background: #e8d7dd;
  color: #bf2661;
}

a.btn_01:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 8px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  top: 50%;
  left: 6%;
  margin-top: -7px;
}

a.btn_01:hover:before {
  border-color: transparent transparent transparent #bf2661;
}




/*黒細ライン＆ホバーも黒*/
a.btn_02 {
display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border: 1px solid #000;
    box-sizing: border-box;
    width: 400px;
    height: 55px;
    padding: 0 6% 0 6%;
    color: #000;
    font-size: 16px;
    text-align: left;
    text-decoration: none;
    position: relative;
    transition-duration: 0.2s;
        margin: 2% auto 4% auto;
}

a.btn_02:hover {
  background: #000;
  color: #fff;
}

a.btn_02:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 8px;
  border-color: transparent transparent transparent #000;
  position: absolute;
  top: 50%;
  left: 6%;
  margin-top: -7px;
}

a.btn_02:hover:before {
  border-color: transparent transparent transparent #fff;
}




/*================================
その他の記事の記述
=================================*/


.new {
	max-width: 1000px;
	text-align: center;
	margin: 0% auto;
}

.other {
    display: grid;
    grid-template-columns: 23% 23% 23% 23%;
    /* grid-template-rows: 200px; */
    gap: 2% 2.7%;
    grid-auto-flow: row;
    grid-template-areas: "other-1 other-2 other-3 other-4";
    text-align: center;
    margin: 0 auto;
    max-width: 85%;
}

.other-1 { grid-area: other-1; }
.other-2 { grid-area: other-2; }
.other-3 { grid-area: other-3; }
.other-4 { grid-area: other-4; }


.other_title {
	 text-align: left;
    max-width: 85%;
	margin: 1% auto;
	font-size: 16px;
}

.other_details {
font-size: 14px;
text-align-last: left;	
}



/*===============================================
tablet
===============================================*/
@media (max-width: 768px) {
	#Area .imageArea ul.row-fluid {
    width: 100%;
    text-align: center;
    margin: 0 auto;
	font-size: 14px;
  }	
	
	
.toptext {
    width: 75%;
	font-size: 14px;
}	
	
	
.spece_bottom {
 padding-bottom:15%;
}	
	
	
/*===================================
container_01　エミパリの説明
===================================*/	
	
.container_01_detail {
	font-size: 14px;
}
	
	
	
	
	
/*===================================
ボタン系
===================================*/
a.btn_01 {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    width: 330px;
    height: 45px;
    padding: 0 6% 0 6%;
    font-size: 14px;
    text-align: left;
    text-decoration: none;
    position: relative;
    transition-duration: 0.2s;
    margin: 15% auto 3% auto;	
	}
	
/*================================
その他の記事の記述
=================================*/

.other {
    display: grid;
    grid-template-columns: 23% 23% 23% 23%;
    gap: 2% 2.7%;
    grid-auto-flow: row;
    grid-template-areas: "other-1 other-2 other-3 other-4";
    text-align: center;
    margin: 0 auto;
    max-width: 85%;
}

.other-1 { grid-area: other-1; }
.other-2 { grid-area: other-2; }
.other-3 { grid-area: other-3; }
.other-4 { grid-area: other-4; }

.other_title {
	 text-align: left;
    max-width: 85%;
	margin: 1% auto;
	font-size: 14px;
}

	
}



/*===============================================
SMP
===============================================*/
@media (max-width: 600px) {

#Area .imageArea ul.row-fluid {
    width: 100%;
    text-align: center;
    margin: 0 auto;
	font-size: 14px;
	}
	
	
.spece_bottom {
 padding-bottom:25%;
}		
	
/*===================================
区切り線
===================================*/
	
.border_1 {
	border-top: 1px solid #d1cbc2;
	width: 80%;
	margin: 20% auto 10% auto;
}
	
	
/*===================================
container_01　エミパリの説明
===================================*/	
	
.container_01 {
    padding: 25% 0;	
}	

.container_01_detail {
    width: 75%;
    margin: 3% auto 5%;
    line-height: 1.8;
    text-align: left;
}	
		
.photo-box img {
	width: 70%;	
	margin: 0 auto;
	margin-bottom:10% 
}
	
.photo-box::before {
    content: "";
    position: absolute;
    top: 20%;
    left: 7%;
    width: 86%;
    height: 82%;
}	
	
/*===================================
container_02   コラボアイテムの説明
===================================*/

.container_02_item_all_img {
  width: 80%;
  margin: 0 auto;
}

.item_01 { grid-area: item_01; }
.item_02 { grid-area: item_02; }
.item_03 { grid-area: item_03; }
.item_04 { grid-area: item_04; }
	
.item_all_title {
    width: 70%;
    margin: 0 auto;
}
	
/*===================================
各ブランドの詳細
===================================*/	
	
.container_02_detail {
	width: 70%;
	margin: 3% auto 5%;
	line-height: 1.8;
	text-align: center;
}
	
	
.container_02_item_detail img
{
	width: 75%;
	margin: 0 auto;
}
	
	
	
/*===================================
各ブランドの画像切り替え指示
===================================*/

.detail-slide img {
  width: 75%;
  height: auto;
  display: block;
	margin: 0 auto;
}	
	
	
/*===================================
各ブランドの画像切り替え指示
===================================*/
.detail-slider {
	width: 100%;
}
	
	
	
	
/*===================================
コーディネートの詳細
===================================*/
	
.container_02_item_cordinate {
    padding: 10% 0;
	} 	
	
.cordinate_img {
    width: 75%;
    margin: 0 auto;
}	

.cordinate_title  {
	    width: 90%;	
	}
	
.item-price-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2% 5%;
    max-width: 280px;
    margin: 0 auto;
    /*font-family: "Helvetica Neue", "Noto Sans JP", sans-serif;*/
    font-size: 13px;
    color: #333;
    width: 90%;	
	margin-bottom: 8%;
}	
	
.cordinate_img {
    padding: 10% 0 5%;
}	
	
	
.container_02_item_cordinate_inner {
    background: rgba(255, 255, 255, 0.6);
    padding: 7% 0% 10%;
    margin-top: 5%;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(6px);
    width: 80%;
    margin: 0 auto;
}
	
	
/*===================================
ノベルティ関連
===================================*/

.container_03 {
	background: #e9d7dd;
	padding: 10% 0;
}

.container_03 img {
    width: 70%;
    margin: 0 auto;
}

.container_03_detail {
    width: 80%;
    margin: 3% auto 5%;
    line-height: 1.8;
    text-align: center;
}	
	
	
	

	
/*===================================
ボタン系
===================================*/	
	
a.btn_01 {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    width: 75%;
    height: 40px;
    padding: 0 6% 0 6%;
    font-size: 14px;
    text-align: left;
    text-decoration: none;
    position: relative;
    transition-duration: 0.2s;
    margin: 25% auto 3% auto;	
	}

	
/*================================
その他の記事の記述
=================================*/
	
.other {
        display: grid;
        grid-template-columns: 49% 49%;
        grid-template-rows: 50% 50%;
        gap: 3% 3%;
        grid-auto-flow: row;
        grid-template-areas:
        "other-1 other-2"
        "other-3 other-4";
        text-align: center;
        margin: 0 auto;
        max-width: 86%;
}

.other-1 { grid-area: other-1; }
.other-2 { grid-area: other-2; }
.other-3 { grid-area: other-3; }
.other-4 { grid-area: other-4; }
	
.other_title {
	 text-align: left;
    max-width: 85%;
	margin: 1% auto;
	font-size: 13px;
}
	
.other_details {
font-size: 12px;
text-align: left;	
}
	
	
	
	
}	
	
