@charset "utf-8";
/*
Theme Name: UNIAMBER
Theme URL: https://uni-amber.com/
Description: PC用のスタイル
Version: 1.0
License: UNIAMBER
*/


p {
	letter-spacing: 1px;
}

.cormorant-garamond-unique {
	font-family: "Cormorant Garamond", serif;
	font-optical-sizing: auto;
	font-weight: 300;
	font-style: normal;
}

.container {
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 1fr;
  min-height: 100vh;
}

.top-p_h3, .top-p_btn, .top-p-list_btn, .top-news h2, .top-news-btn a, footer {
	font-family: var(--font-family-g);
	font-weight: 300;
}

.margin-b-100 {
	margin-bottom: 100px;
}

.margin-t-100 {
	margin-top: 50px;
}

/*
PCメニューボタン
*/

.global-menu {
	position: absolute;
	z-index: 1;
	top: 30px;
	right: 30px;
}

.global-menu ul {
	display: flex;
	justify-content: flex-end;
	text-align: right;
}

.global-menu li {
	margin-left: 30px;
}

.global-menu a {
	font-family: var(--font-family-g);
	font-weight: 300;
	text-decoration: none;
	font-size: 20px;
	color: var(--color-white);
}

.common-menu-color a {
color: var(--color-winered);
}

/*
スマホメニューボタン
*/
.global-menu_sp_box {
	background-color: var(--color-winered);
	margin: 0;
	font-family: var(--font-family-g);
	animation: bugfix infinite 1s;
	-webkit-animation: bugfix infinite 1s;
	position: relative;
	display: none;
}

@keyframes bugfix {
  from {
    padding: 0;
  }
  to {
    padding: 0;
  }
}

@-webkit-keyframes bugfix {
  from {
    padding: 0;
  }
  to {
    padding: 0;
  }
}

#overlay-button {
	position: fixed;
	right: 20px;
	top: 20px;
	width: 50px;
	height: 50px;
	background-color: var(--color-winered);
	padding: 25px 15px;
	z-index: 5;
	cursor: pointer;
	user-select: none;
}
#overlay-button span {
	height: 1px;
	width: 20px;
	border-radius: 2px;
	background-color: var(--color-white);
	position: relative;
	display: block;
	transition: all .2s ease-in-out;
}
#overlay-button span:before {
	top: -4px;
	visibility: visible;
}
#overlay-button span:after {
	top: 4px;
}
#overlay-button span:before, #overlay-button span:after {
	height: 1px;
	width: 20px;
	border-radius: 2px;
	background-color: var(--color-white);
	position: absolute;
	content: "";
	transition: all .2s ease-in-out;
}
#overlay-button:hover span, #overlay-button:hover span:before, #overlay-button:hover span:after {
	background: var(--color-white);
}

input[type=checkbox] {
  display: none; 
  
}

input[type=checkbox]:checked ~ #overlay {
  visibility: visible; 
}

input[type=checkbox]:checked ~ #overlay-button:hover span, input[type=checkbox]:checked ~ #overlay-button span {
  background: transparent;
  
  
}
input[type=checkbox]:checked ~ #overlay-button span:before {
  transform: rotate(45deg) translate(3px, 3px);

}
input[type=checkbox]:checked ~ #overlay-button span:after {
  transform: rotate(-45deg) translate(3px, -3px);


}

#overlay {
  height: 100vh;
  width: 100vw;
  background-color: var(--color-winered);
  z-index: 2;
  visibility: hidden;
  position: fixed;
}
#overlay.active {

}
#overlay ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  height: 100vh;
  padding-left: 0;
  list-style-type: none;
}
#overlay ul li {
  padding: 1em;
}
#overlay ul li a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 1.5em;
}
#overlay ul li a:hover {
  color: #000!important;
}

/*
メニューボタンここまで
*/


footer {
	background-color: var(--color-winered);
	width: 100vw;
	padding-top: 200px;
	color: var(--color-white);
}

.f-logo img {
	width: 200px;
	margin: 0 auto 0 auto;
}

.f-insta img {
	width: 35px;
	margin: 50px auto 50px auto;
}

.f-link a {
	font-size: 14px;
}

.f-link {
	text-align: center;
}

.f-copyright {
	display: flex;
	justify-content: flex-end;
	margin: 0 20px 20px 0;
}

.copyright-text {
	writing-mode: vertical-rl;
	font-size: 14px;
}

.top-mv-d-wrap {
	position: relative;
	clip-path: inset(0 0 0 0);
	width: 100vw;
	height: 100vh;
}

.top-mv-d {
	background-image: url("images/top/mv_backimage_2.jpg");
	background-image: image-set(url("images/top/mv_backimage_2.jpg") 1x, url("images/top/mv_backimage_2@2x.jpg") 2x);
	background-image: -webkit-image-set(url("images/top/mv_backimage_2.jpg") 1x, url("images/top/mv_backimage_2@2x.jpg") 2x);
    background-image: url("images/top/mv_backimage_2.webp");
	background-image: image-set(url("images/top/mv_backimage_2.webp") 1x, url("images/top/mv_backimage_2@2x.webp") 2x);
	background-image: -webkit-image-set(url("images/top/mv_backimage_2.webp") 1x, url("images/top/mv_backimage_2@2x.webp") 2x);
	background-color: var(--color-winered);
	background-position: center center;
	background-size: cover;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	animation: fade-in 3s;
	animation-fill-mode: forwards;
	font-family: var(--font-family-g);
	color: #FFFFFF;
	line-height: 1.5;
}

@keyframes fade-in {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.mv-position {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 400px;
	height: 400px;
	text-align: center;
	font-size: 16px;
}


.top-mv-logo img {
	margin: 100px auto 0 auto;
}

.top-concept-d {
	background-image: url("images/top/concept_backimage_2.jpg");
	background-image: url("images/top/concept_backimage_2.webp");
	background-color: var(--color-winered);
	background-position: center center;
	background-attachment: fixed;
	background-size: cover;
	width: 100vw;
	height: 1250px;
	position: relative;
	line-height: 1.5;
	padding-top: 200px;
}

.top-concept-sky {
	background-image: url("images/top/concept_sky_backimage_2.jpg") ;
	background-position: center center;
	width: 960px;
	margin: 0 auto;
	padding: 250px 0 250px 0;
	text-align: center;
}

.top-concept-sky p {
	font-size: 18px;
	line-height: 2.5;
}

.top-concept-sky img {
	width: 300px;
	margin: 100px auto 0 auto;
}


.top-concept-h2 {
	font-family: var(--font-family-g);
	font-weight: 300;
	font-size: 50px;
	margin-bottom: 60px;
}

.top-products-back {
	background-color: #F2F5F2;
	padding-top: 200px;
}

.top-products-back h2 {
	background-image: url("images/top/paints_image.png");
	background-image: image-set(url("images/top/paints_image.png") 1x, url("images/top/paints_image@2x.png") 2x);
	background-image: -webkit-image-set(url("images/top/paints_image.png") 1x, url("images/top/paints_image@2x.png") 2x);
	 background-image: url("images/top/paints_image.webp");
	background-image: image-set(url("images/top/paints_image.webp") 1x, url("images/top/paints_image@2x.webp") 2x);
	background-image: -webkit-image-set(url("images/top/paints_image.webp") 1x, url("images/top/paints_image@2x.webp") 2x);
	background-repeat: no-repeat;
	font-family: var(--font-family-g);
	font-weight: 300;
	font-size: 70px;
	padding: 200px 0 100px 100px;
}

.top-back-color {
	background: linear-gradient(90deg, #F1F5F2 0%, #F1F5F2 30%, #5C0639 30%, #5C0639 100%);
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 150px 0 150px 0;
}

.top-products {
	width: 1050px;
	margin: 0 auto;
}

.top-p-list img {
	width: 700px;
}

.top-p-list {
	display:flex;
	justify-content:space-between;
	align-items: flex-end;
	margin-bottom: 100px;
}



.top-p-sub-t, .top-p_h3, .top-p-t {
	color: var(--color-white);
	letter-spacing: 2px;
}

.top-p-sub-t {
	font-size: 14px;
}

.top-p_h3 {
	font-size: 36px;
	margin: 10px 0 20px 0;
}

.top-p-t {
	width: 300px;
}

.top-p_i {
	font-size: 16px;
	margin-bottom: 50px;
}

.top-p_btn a, .top-p-list_btn a{
	height: 60px;
	background-color: #E2E2E2;
	display:flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	color: var(--color-winered);
	background-image: url("images/common/btn_icon.png");
	background-repeat: no-repeat;
	background-size: 8px;
	background-position: bottom 50% right 10px;
	font-size: 18px;
}

.top-p_btn a {
	width: 100%;
}

.top-p-list_btn a {
	width: 300px;
	margin: 150px auto 0 auto;
}

.top-news {
	width: 1000px;
	margin: 200px auto 200px auto;
}

.news-border{
	border-top: 1px solid #DDC6D4;
}

.news-box a {
	border-bottom: 1px solid #DDC6D4;
	display: block;
	padding: 20px 30px 20px 0;
	background-image: url("images/common/btn_icon.png");
	background-repeat: no-repeat;
	background-size: 8px;
	background-position: bottom 50% right 10px;
	overflow-wrap: break-word; /* 単語の途中でも改行可 */
	word-wrap: break-word;     /* 古いブラウザ用の互換指定 */
	white-space: normal;       /* テキストを自動的に折り返す */
	max-width: 100%;           /* はみ出さない最大幅に制限 */
	box-sizing: border-box; 
}

.top-news h2 {
	font-size: 70px;
	margin-bottom: 40px;
}

.new-category {
	font-size: 14px;
}

.new-data{
	margin-right: 30px;
	font-size: 13px;
}

.news-list_title {
	margin-top: 6px;
	overflow-wrap: break-word;
	white-space: normal;
}

.top-news-btn {
	display: flex;
    justify-content: flex-end;
	margin-top: 30px;
}

.top-news-btn a {
	width: 150px;
	height: 40px;
	font-size: 16px;
	background-color: var(--color-winered);
	display:flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	color: var(--color-white);
	background-image: url("images/common/btn_icon_w.png");
	background-repeat: no-repeat;
	background-size: 6px;
	background-position: bottom 50% right 10px;
}

.common-page {
	width: 1000px;
	margin: 270px auto 200px auto;
}

.common-page_title_box {
	margin-bottom: 200px;
}

.common-page h1 {
	font-family: var(--font-family-g);
	font-weight: 300;
	font-size: 50px;
	overflow-wrap: break-word;
	word-break: break-word;
}

.products_h2 {
	font-family: var(--font-family-g);
	font-weight: 300;
	font-size: 30px;
}

.about-box {
	width: 850px;
	margin: 0 auto;
}

.about-box_theme {
	font-size: 18px;
	line-height: 2.5;
	text-align: center;
}

.table_section {
	display: flex;
	border-top: 1px solid #DDDADA;
	padding: 30px 0 30px 0;
}

.table_section_end {
	border-bottom: 1px solid #DDDADA;
}

.table_items {
	width: 300px;
	font-weight: bold;
}

.about-text_cautionarynote {
	font-size: 14px;
}

.p-morning_mv {
	background-image: url("images/morning/mv_morning.jpg");
	background-image: image-set(url("images/morning/mv_morning.jpg") 1x, url("images/morning/mv_morning@2x.jpg") 2x);
	background-image: -webkit-image-set(url("images/morning/mv_morning.jpg") 1x, url("images/morning/mv_morning@2x.jpg") 2x);
	background-image: url("images/morning/mv_morning.webp");
	background-image: image-set(url("images/morning/mv_morning.webp") 1x, url("images/morning/mv_morning@2x.webp") 2x);
	background-image: -webkit-image-set(url("images/morning/mv_morning.webp") 1x, url("images/morning/mv_morning@2x.webp") 2x);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	width: 100vw;
	height: 100vh;
	position: relative;
	animation: fade-in 3s;
	animation-fill-mode: forwards;
}

.p-morning-mv_text {
	position: absolute;
	top: 60%;
	right: 10%;
	text-align: right;
}

.p-morning-mv_text h1 {
	font-family: var(--font-family-g);
	font-weight: 300;
	font-size: 50px;
}

.p-morning-mv_text_s {
	font-size: 18px;
}

.p-morning-mv_text_m {
	font-size: 28px;
	margin-top: 10px;
	font-weight: 300;
}

.p-morning-info {
	background-image: url("images/morning/m-thoughts_back.jpg");
	background-image: image-set(url("images/morning/m-thoughts_back.jpg") 1x, url("images/morning/m-thoughts_back@2x.jpg") 2x);
	background-image: -webkit-image-set(url("images/morning/m-thoughts_back.jpg") 1x, url("images/morning/m-thoughts_back@2x.jpg") 2x);
	background-image: url("images/morning/m-thoughts_back.webp");
	background-image: image-set(url("images/morning/m-thoughts_back.webp") 1x, url("images/morning/m-thoughts_back@2x.webp") 2x);
	background-image: -webkit-image-set(url("images/morning/m-thoughts_back.webp") 1x, url("images/morning/m-thoughts_back@2x.webp") 2x);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

.p-morning-info_text_box {
	width: 1000px;
	display: flex;
	margin: 200px auto 200px auto;
	color: var(--color-white);
}

.p-morning-info_text_b {
	width: 500px;
	font-size: 36px;
	margin-right: 40px;
	letter-spacing: 2px;
	line-height: 2;
}

.p-morning-info_text_s {
	width: 450px;
}

.p-morning-info_text_s-b {
	font-size: 18px;
	letter-spacing: 1.5px;
	line-height: 2.5;
	font-weight: bold;
}

.p-morning-info_text_s-s {
	font-size: 17px;
	letter-spacing: 1.5px;
	line-height: 2.5;
	margin-top: 50px;
}

.p-morning-info_text_s-s span {
	font-size: 14px;	
}
	
.p-fragrance_howto {
	width: 900px;
	margin: 200px auto 0 auto;
	}

.p-fragrance_howto h2 ,.p-fragrance_detail h2{
	text-align: center;
	font-size: 40px;
	letter-spacing: 3px;
	margin-bottom: 100px;
}

.p-fragrance_Howto_list {
	text-align: center;
	font-size: 26px;
	border: 1px solid #5C0639;
	border-radius: 10px;
	padding: 30px;
	margin-bottom: 20px;
}

.p-morning_figure_1 {
	width: 100%;
	margin: 200px 0 0 auto;
}

.p-morning_img-right {
	margin-left: auto;
	display:block;
	width: 60vw;
}

.p-morning_composition_box {
	margin: -300px 0 0 20vw;
}

.p-morning_composition_box h2 {
	font-size: 40px;
	letter-spacing: 3px;
}

.p-morning_figure_2 {
	margin-top: 100px;
}

.p-morning_composition_text {
	font-size: 13px;
	margin: 20px 0 0 100px;
}

.p-morning_composition_text span {
	display: block;
	margin-bottom: 10px;
}

.p-morning_composition_text span::before {
	content: "■";
}

.p-morning_figure_3 {
	margin: 100px auto 0 auto;
}

.p-fragrance_detail {
	width: 600px;
	margin: 200px auto 100px auto;
}

.p-fragrance_table_section {
	display: flex;
	justify-content: space-between;
	border-top: 1px solid #DDDADA;
	padding: 30px 0 30px 0;
}

.p-fragrance_table_box {
	font-size: 16px;
	line-height: 1.8;
}

.p-fragrance_table_section_end {
	border-bottom: 1px solid #DDDADA;
}

.p-fragrance_table_items {
	width: 150px;
	font-weight: bold;
}

.p-fragrance_table_contents {
	width: 400px;
}

.p-fragrance_table_contents span {
	display: block;
	padding-left: 16px;
	position: relative;
	margin-bottom: 10px;
}

.p-fragrance_table_contents span::before {
	content: "・";
	position: absolute;
	left: 0;
}

.p-fragrance_btn a {
	display: block;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 600px;
	background-color: #96035B;
	color: var(--color-white);
	padding: 50px 0 50px 0;
	font-size: 20px;
	background-image: url("images/common/btn_icon_w.png");
	background-repeat: no-repeat;
	background-size: 8px;
	background-position: bottom 50% right 10px;
	margin-bottom: 50px;
}
	
.p-fragrance_btn_box {
	margin: 100px auto 200px auto;	
}

.p-fragrance_mv_daytime {
	background-image: url("images/daytime/mv_daytime.jpg");
	background-image: image-set(url("images/daytime/mv_daytime.jpg") 1x, url("images/daytime/mv_daytime@2x.jpg") 2x);
	background-image: -webkit-image-set(url("images/daytime/mv_daytime.jpg") 1x, url("images/daytime/mv_daytime@2x.jpg") 2x);
	background-image: url("images/top/mv_backimage_2.webp");
	background-image: image-set(url("images/daytime/mv_daytime.webp") 1x, url("images/daytime/mv_daytime@2x.webp") 2x);
	background-image: -webkit-image-set(url("images/daytime/mv_daytime.webp") 1x, url("images/daytime/mv_daytime@2x.webp") 2x);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	width: 100vw;
	height: 100vh;
	animation: fade-in 3s;
	animation-fill-mode: forwards;
	position: relative;
}

.p-daytime-mv_text {
	position: absolute;
	top: 50%;
	left: 10%;
	text-align: center;
}

.p-daytime-mv_text h1 {
	font-family: var(--font-family-g);
	font-weight: 300;
	font-size: 50px;
}

.p-daytime-mv_text_s {
	font-size: 18px;
}

.p-daytime-mv_text_m {
	font-size: 28px;
	margin-top: 10px;
	font-weight: 300;
}

.p-daytime-info {
	background-image: url("images/daytime/d-thoughts_back_2.jpg");
	background-image: image-set(url("images/daytime/d-thoughts_back_2.jpg") 1x, url("images/daytime/d-thoughts_back_2@2x.jpg") 2x);
	background-image: -webkit-image-set(url("images/daytime/d-thoughts_back_2.jpg") 1x, url("images/daytime/d-thoughts_back_2@2x.jpg") 2x);
	background-image: url("images/daytime/d-thoughts_back_2.webp");
	background-image: image-set(url("images/daytime/d-thoughts_back_2.webp") 1x, url("images/daytime/d-thoughts_back_2@2x.webp") 2x);
	background-image: -webkit-image-set(url("images/daytime/d-thoughts_back_2.webp") 1x, url("images/daytime/d-thoughts_back_2@2x.webp") 2x);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	width: 100vw;
}

.p-daytime-info_text_box {
	color: var(--color-winered);
}

.p-daytime_figure_4{
	width: 1000px;
	margin: -100px auto 200px auto; 
}

.p-daytime_figure_1 {
	width: 100%;
	margin-top: 200px;
}

.p-daytime_img-right {
	margin-left: auto;
	display:block;
	width: 60vw;
}

.p-daytime_composition_box {
	width: 600px;
	margin: -250px 0 0 15vw; 
}

.p-daytime_composition_box h2 {
	font-size: 40px;
	letter-spacing: 3px;
}

.p-daytime_figure_2 {
	margin-top: 100px;
}

.p-daytime_composition_text {
	font-size: 13px;
	margin: 20px 0 0 100px;
}


.p-fragrance_mv_evening {
	background-image: url("images/evening/mv_evening.jpg");
	background-image: image-set(url("images/evening/mv_evening.jpg") 1x, url("images/evening/mv_evening@2x.jpg") 2x);
	background-image: -webkit-image-set(url("images/evening/mv_evening.jpg") 1x, url("images/evening/mv_evening@2x.jpg") 2x);
	background-image: url("images/evening/mv_evening.webp");
	background-image: image-set(url("images/evening/mv_evening.webp") 1x, url("images/evening/mv_evening@2x.webp") 2x);
	background-image: -webkit-image-set(url("images/evening/mv_evening.webp") 1x, url("images/evening/mv_evening@2x.webp") 2x);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	width: 100vw;
	height: 100vh;
	position: relative;
	animation: fade-in 3s;
	animation-fill-mode: forwards;
}

.p-evening-mv_text {
	position: absolute;
	top: 20%;
	left: 10%;
	text-align: center;
}

.p-evening-mv_text h1 {
	font-family: var(--font-family-g);
	font-weight: 300;
	font-size: 50px;
}

.p-evening-mv_text_s {
	font-size: 18px;
}

.p-evening-mv_text_m {
	font-size: 28px;
	margin-top: 10px;
	font-weight: 300;
}

.p-evening-info {
	background-image: url("images/evening/e-thoughts_back_2.jpg");
	background-image: image-set(url("images/evening/e-thoughts_back_2.jpg") 1x, url("images/evening/e-thoughts_back_2@2x.jpg") 2x);
	background-image: -webkit-image-set(url("images/evening/e-thoughts_back_2.jpg") 1x, url("images/evening/e-thoughts_back_2@2x.jpg") 2x);
	background-image: url("images/evening/e-thoughts_back_2.webp");
	background-image: image-set(url("images/evening/e-thoughts_back_2.webp") 1x, url("images/evening/e-thoughts_back_2@2x.webp") 2x);
	background-image: -webkit-image-set(url("images/evening/e-thoughts_back_2.webp") 1x, url("images/evening/e-thoughts_back_2@2x.webp") 2x);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	animation: fade-in 3s;
	animation-fill-mode: forwards;
}

.products_h2 {
	border-bottom: 1px solid #DDDADA;
	font-size: 30px;
	margin-bottom: 50px;
}

.products_category-list a {
	text-decoration: none;
	color: var(--color-winered);
	background-image: url("images/common/btn_icon.png");
	background-repeat: no-repeat;
	background-size: 8px;
	background-position: bottom 50% left 0;
	font-family: var(--font-family-g);
	font-weight: 300;
	font-size: 26px;
	margin-bottom: 50px;
	padding-left: 20px;
}

.item_lisut {
	width: 100%;
	display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.item_lisut_box img{
	width: 475px;
}

.item_lisut_name {
	font-size: 22px;
	margin-top: 10px;
}

.item_lisut_catchphrase {
	font-size: 16px;
}

.item_lisut_price {
	font-size: 22px;
}

.item_lisut_tax {
	font-size: 14px;
}
	
.news-category_title {
	font-family: var(--font-family-g);
	font-weight: 300;
	font-size: 30px;
}

.news-category_box {
	margin: 20px 0 70px 0; 
}

.news-category_name {	
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0;
}

.news-category_name a {
	border: 1px solid #5C0639;
	padding: 10px;
	font-size: 14px;
	display: inline-block;
	text-decoration: none;
}

.news-category_name li {
	margin: 10px 10px 0 0;
}

.news-category_name .active a {
	background-color: var(--color-winered);
	color: var(--color-white);
	}

.pagination {
	margin-top: 50px;
	display: flex;          
	gap: 8px;            
	flex-wrap: wrap;
	justify-content: center; 
}

.page-numbers, .next, .prev, .current {
	display: flex; 
	align-items: center;
	justify-content: center;
	font-size: 13px;
	text-align: center;
}
.page-numbers {
	width: 40px;
	height: 40px;
	font-size: 13px;
	background-color: var(--color-winered);
	color: var(--color-white);
	margin: 0 4px;
}

.next, .prev {
	width: 60px;
	height: 40px;
}

.current {
	width: 40px;
	height: 40px;
	background-color: #8A6079;
	color: var(--color-white);
}

.news-article_title_box {
	border-top: 1px solid #DDC6D4;
	border-bottom: 1px solid #5C0639;
	padding: 30px 0 30px 0;
	margin-bottom: 50px;
}

.news-article_title_date {
	font-size: 14px;
}

.news-article_title_date_margin {
	margin-right: 30px;
}

.news-article_title {
	font-size: 24px;
	letter-spacing: 1px;
	margin-top: 40px;
}

.read_text {
	line-height: 2;
}

.read_text p {
	margin-bottom: 50px;
	font-size: 18px;
}

.privacy-policy_box {
	margin-top: 60px;
}

.privacy-policy_box h2 {
	font-size: 26px;
	font-family: var(--font-family-l);
	margin-bottom: 20px;
}

.privacy-policy_text {
	font-size: 18px;
	line-height: 1.8;
}

.privacy-policy_text a {
	border-bottom: 1px solid #5C0639;
	padding-bottom: 3px;
}

.p-fragrance_mv {
	background-image: url("images/f_sample/mv_f_sample.jpg");
	background-image: image-set(url("images/f_sample/mv_f_sample.jpg") 1x, url("images/f_sample/mv_f_sample@2x.jpg") 2x);
	background-image: -webkit-image-set(url("images/f_sample/mv_f_sample.jpg") 1x, url("images/f_sample/mv_f_sample@2x.jpg") 2x);
	background-image: url("images/f_sample/mv_f_sample.webp");
	background-image: image-set(url("images/f_sample/mv_f_sample.webp") 1x, url("images/f_sample/mv_f_sample@2x.webp") 2x);
	background-image: -webkit-image-set(url("images/f_sample/mv_f_sample.webp") 1x, url("images/f_sample/mv_f_sample@2x.webp") 2x);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	width: 100vw;
	height: 100vh;
	position: relative;
	animation: fade-in 3s;
	animation-fill-mode: forwards;
}

.p-fragrance_mv_text {
	position: absolute;
	top: 20%;
	left: 10%;
	text-align: center;
}

.p-fragrance_mv_text h1 {
	font-family: var(--font-family-g);
	font-weight: 300;
	font-size: 50px;
}

.p-fragrance_mv_text_s {
	font-size: 18px;
}

.p-fragrance_mv_text_m {
	font-size: 28px;
	margin-top: 10px;
	font-weight: 300;
}

.p-fragrance-info {
	background-image: url("images/f_sample/f_sample-thoughts_back.jpg");
	background-image: image-set(url("images/f_sample/f_sample-thoughts_back.jpg") 1x, url("images/f_sample/f_sample-thoughts_back@2x.jpg") 2x);
	background-image: -webkit-image-set(url("images/f_sample/f_sample-thoughts_back.jpg") 1x, url("images/f_sample/f_sample-thoughts_back@2x.jpg") 2x);
	background-image: url("images/f_sample/f_sample-thoughts_back.webp");
	background-image: image-set(url("images/f_sample/f_sample-thoughts_back.webp") 1x, url("images/f_sample/f_sample-thoughts_back@2x.webp") 2x);
	background-image: -webkit-image-set(url("f_sample/f_sample-thoughts_back.webp") 1x, url("images/f_sample/f_sample-thoughts_back@2x.webp") 2x);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	animation: fade-in 3s;
	animation-fill-mode: forwards;
}

.p-rinkn_btn a {
	width:300px;
	height: 50px;
	font-size: 16px;
	background-color: var(--color-winered);
	display:flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	color: var(--color-white);
	background-image: url("images/common/btn_icon_w.png");
	background-repeat: no-repeat;
	background-size: 6px;
	background-position: bottom 50% right 10px;
	margin-top: 30px;
}