@charset "UTF-8";
/* CSS Document */

/***************************** webフォントcss */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=REM:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Trirong:wght@100;200;300;400;500;600;700;800;900&family=Zen+Kaku+Gothic+Antique:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');
@import url('https://fonts.googleapis.com/css2?family=Material+Icons+Outlined');

/*
Theme Name: 北村写真スタジオ by MERCI
Author: Nobuyoshi Kosada
Description: 北村写真スタジオ by MERCIのマスターテンプレートです。
Version: 1.0
*/


/* ===============================================================
GLOBAL
================================================================== */
html,
body {
	height: 100%;
	margin: 0;
	padding: 0;
	border: none;
	font-family: 'Zen Kaku Gothic Antique', 'Noto Sans JP', sans-serif;
	font-size: 14px;
	line-height: 1.5;
	color: #2E2B2A;
	/*background-color: #fff;*/
	scroll-behavior: smooth;
}

@media (max-width: 767px) {

	html,
	body {
		font-size: 13px;
	}
}

/*****/

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

/***************************** a */
a:link,
a:visited {
	color: #2E2B2A;
	text-decoration: none;
	transition: 0.3s ease-in-out;
	opacity: 1;
}

a:hover {
	text-decoration: none;
	opacity: 0.4;
}

/***************************** img */

main img {
	max-width: 100%;
	height: auto;
	display: block;
}


/***************************** フォント｜サイズ */

.zen {
	font-family: 'Zen Kaku Gothic Antique', 'Noto Sans JP', sans-serif;
	font-weight: 400;
}

.tri {
	font-family: 'Trirong', serif;
	font-weight: 400;
}

.rem {
	font-family: 'REM', sans-serif;
	font-weight: 400;
}

/* PC：ベース14px */
:root {
	font-size: 14px;

	--fs-11: 0.7857rem;
	/* 11px ÷ 14 */
	--fs-12: 0.8571rem;
	/* 12px ÷ 14 */
	--fs-13: 0.9286rem;
	/* 13px ÷ 14 */
	--fs-14: 1rem;
	/* 14px ÷ 14 */
	--fs-16: 1.1429rem;
	/* 16px ÷ 14 */
	--fs-18: 1.2857rem;
	/* 18px ÷ 14 */
	--fs-20: 1.4286rem;
	/* 20px ÷ 14 */
	--fs-24: 1.7143rem;
	/* 24px ÷ 14 */
	--fs-28: 2rem;
	/* 28px ÷ 14 */
	--fs-32: 2.2857rem;
	/* 32px ÷ 14 */
}

/* スマホ：ベース13px */
@media screen and (max-width: 768px) {
	:root {
		font-size: 13px;
	}
}

.f11 {
	font-size: var(--fs-11);
}

.f12 {
	font-size: var(--fs-12);
}

.f13 {
	font-size: var(--fs-13);
}

.f14 {
	font-size: var(--fs-14);
}

.f16 {
	font-size: var(--fs-16);
}

.f18 {
	font-size: var(--fs-18);
}

.f20 {
	font-size: var(--fs-20);
}

.f24 {
	font-size: var(--fs-24);
}

.f28 {
	font-size: var(--fs-28);
}

.f32 {
	font-size: var(--fs-32);
}

/*px指定*/
.fp11 {
	font-size: 11px;
}

.fp12 {
	font-size: 12px;
}

.fp13 {
	font-size: 13px;
}

.fp14 {
	font-size: 14px;
}

.fp16 {
	font-size: 16px;
}

.fp18 {
	font-size: 18px;
}

.fp20 {
	font-size: 20px;
}

.fp24 {
	font-size: 24px;
}

.fp28 {
	font-size: 28px;
}

.fp32 {
	font-size: 32px;
}


/* ===============================================================
モジュール
================================================================== */

/***************************** 注釈 */
.note{
	font-size: 12px;
	margin-top: 1.5rem;
	display: inline-block;
}

/***************************** PC/SP 切り替え */

.pc {
	display: inherit;
}

.sp {
	display: none;
}

@media (max-width:767px) {
	.pc {
		display: none;
	}

	.sp {
		display: inherit;
	}
}

/*****/

/***************************** アニメーション用初期スタイル */

@media (min-width: 768px) {

	.animate-fadeIn,
	.animate-fadeInUp,
	.animate-fadeInRight,
	.animate-fadeInLeft {
		opacity: 0;
		visibility: hidden;
		--animate-duration: 1s;
	}

	.delay1 {
		--animate-delay: 0.2s;
	}

	.delay2 {
		--animate-delay: 0.4s;
	}

	.delay3 {
		--animate-delay: 0.6s;
	}

	.delay4 {
		--animate-delay: 0.8s;
	}

	.delay5 {
		--animate-delay: 1.0s;
	}

	.delay6 {
		--animate-delay: 1.2s;
	}

	.delay7 {
		--animate-delay: 1.4s;
	}

	.delay8 {
		--animate-delay: 1.6s;
	}

	.delay9 {
		--animate-delay: 1.8s;
	}

	/* ▼ アニメーション共通クラス */
	.animate__animated {
		animation-duration: var(--animate-duration, 1s);
		animation-fill-mode: both;
		animation-delay: var(--animate-delay, 0s);
	}

	/* ▼ fadeIn */
	@keyframes fadeIn {
		from {
			opacity: 0;
		}

		to {
			opacity: 1;
		}
	}

	.animate__fadeIn {
		animation-name: fadeIn;
	}

	/* ▼ fadeInUp（移動距離短め） */
	@keyframes fadeInUp {
		from {
			opacity: 0;
			transform: translate3d(0, 20px, 0);
		}

		to {
			opacity: 1;
			transform: translate3d(0, 0, 0);
		}
	}

	.animate__fadeInUp {
		animation-name: fadeInUp;
	}

	/* ▼ fadeInLeft */
	@keyframes fadeInLeft {
		from {
			opacity: 0;
			transform: translate3d(-20px, 0, 0);
		}

		to {
			opacity: 1;
			transform: translate3d(0, 0, 0);
		}
	}

	.animate__fadeInLeft {
		animation-name: fadeInLeft;
	}

	/* ▼ fadeInRight */
	@keyframes fadeInRight {
		from {
			opacity: 0;
			transform: translate3d(20px, 0, 0);
		}

		to {
			opacity: 1;
			transform: translate3d(0, 0, 0);
		}
	}

	.animate__fadeInRight {
		animation-name: fadeInRight;
	}

}



/***************************** ulリセット */
.ul-set {
	list-style: none;
	margin: 0px;
	padding: 0px;
	display: block;
}

/***************************** レイアウト */
/*FLEX*/
.column {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

/*テキスト画像置換*/
.replace {
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}

/*共通*/
.content-wrap {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	padding: 0 40px;
}

.inner-content {
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
	padding: 0;
}

@media (max-width:767px) {

	/*共通*/
	.content-wrap {
		max-width: 767px;
		width: 100%;
		margin: 0 auto;
		padding: 0 20px;
	}

	.inner-content {
		max-width: 767px;
		width: 100%;
		margin: 0 auto;
		padding: 0;
	}

}

/*****/
@media (max-width: 1439px) {

	/*共通*/
	.content-wrap {
		max-width: 1200px;
		width: 100%;
		margin: 0 auto;
		padding: 0 40px;
	}

	.inner-content {
		max-width: 1000px;
		width: 100%;
		margin: 0 auto;
		padding: 0;
	}
}

/*****/
@media (min-width: 1440px) {

	/*共通*/
	.content-wrap {
		max-width: 1250px;
		width: 100%;
		margin: 0 auto;
		padding: 0 40px;
	}

	.inner-content {
		max-width: 1000px;
		width: 100%;
		margin: 0 auto;
		padding: 0;
	}
}

/*****/



/*sectionブロック共有padding*/
.py-section {
	padding: 130px 0;
}

@media (max-width:767px) {
	.py-section {
		padding: 80px 0;
	}
}

/*****/

/***************************** ボタン */


/*共有*/

.btn-style1 a i,
.btn-style2 a i,
.btn-style3 a i,
.btn-style4 a i,
.btn-style5 a i,
.btn-style6 a i,
.btn-style7 a i {
	font-family: 'REM', sans-serif;
	font-style: normal;
	font-weight: 400 !important;
}


/*
.btn-style1 a,
.btn-style2 a {
	display: inline-block;
	padding: 10px 49px 13px 30px;
	border-radius: 100px;
	border: solid thin #2E2B2A;
	text-decoration: none;
	transition: all 0.3s;
	white-space: nowrap;
	font-weight: 500;
	letter-spacing: 0.05em;
}
*/

.btn-style1 a,
.btn-style2 a {
	display: inline-flex;
	align-items: center;
	height: 48px;
	padding-right: 49px;
	padding-left: 30px;
	border: solid thin #2E2B2A;
	border-radius: 100px;
	text-decoration: none;
	white-space: nowrap;
	transition: all 0.3s;
	/*font*/
	font-weight: 500;
}




.btn-style1 a,
.btn-style2 a {
	background-repeat: no-repeat;
	background-position: right 24px center;
}

.btn-style1 a {
	background-image: url(assets/images/common/icon_arrow_B.svg);
}

.btn-style2 a {
	background-image: url(assets/images/common/icon_arrow_W.svg);
}

.btn-style1 a span,
.btn-style2 a span {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin: -2px 0 0 0;
}

/* スタイル1：黒枠 */
.btn-style1 a {
	color: #2E2B2A;
	background-color: transparent;
}

.btn-style1>a:hover {
	background-color: #2E2B2A !important;
	background-image: url(assets/images/common/icon_arrow_W.svg);
	color: #F0EEED !important;
	opacity: 1;
}

/* スタイル2：背景付き */
.btn-style2 a {
	background-color: #2E2B2A;
	color: #F0EEED !important;
}

.btn-style2>a:hover {
	background-color: #7E7977;
	border-color: #7E7977;
	opacity: 1;
}



/* スタイル3 */

.btn-style3 {}

.btn-style3 a {
	background-image: url(assets/images/common/bg_btn_01.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100% auto;
	width: 100%;
	min-width: 480px;
	max-width: 480px;
	aspect-ratio: 4 / 1;
	color: #2E2B2A;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-family: 'REM', sans-serif;
	font-size: 18px;
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 57.6px;
	text-indent: 0;
}

.btn-style3>a:hover {
	opacity: 1;
	background-color: rgba(170, 161, 158, 0.3);
}

@media (max-width:1199px) {
	.btn-style3 a {
		min-width: 280px;
	}
}

/*****/

@media (max-width: 767px) {
	.btn-style3 a {
		width: 154px !important;
		min-width: 0 !important;
		max-width: none !important;
		height: 131px !important;
		background-image: url(assets/images/common/bg_btn_02.svg);
		background-position: center top;
		background-size: 100% auto;
		background-repeat: no-repeat;
		aspect-ratio: auto;
		font-size: 16px;
	}
}

/*****/


/* スタイル4,5 */

.btn-style4 a,
.btn-style5 a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	border-radius: 100px;
	border: solid thin #F0EEED;
	text-decoration: none;
	text-align: center;
	transition: all 0.3s;
}

.btn-style4 a {
	color: #2E2B2A;
	background-color: #F0EEED;
}

.btn-style4>a:hover {
	background-color: #7E7977 !important;
	color: #F0EEED !important;
	opacity: 1;
}

.btn-style5 a {
	color: #F0EEED;
	background-color: transparent;
}

.btn-style5>a:hover {
	background-color: #F0EEED !important;
	color: #2E2B2A !important;
	opacity: 1;
}


/* スタイル6 */

.btn-style6 {
	display: block;
	border: thin solid #2E2B2A;
	border-radius: 100px;
	width: 42px;
	height: 32px;
	text-align: center;
	background-image: url(assets/images/common/icon_arrow_B.svg);
	background-repeat: no-repeat;
	background-position: center center;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	transition: all 0.6s ease;
}

@media (max-width:767px) {

	.btn-style6 {
		width: 30px;
		height: 23px;
	}
}

/* スタイル7 */

.btn-style7 {
	display: block;
	border: thin solid #F0EEED;
	border-radius: 100px;
	width: 42px;
	height: 32px;
	text-align: center;
	background-image: url(assets/images/common/icon_arrow_W.svg);
	background-repeat: no-repeat;
	background-position: center center;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	transition: all 0.6s ease;
}

@media (max-width:767px) {

	.btn-style6 {
		width: 30px;
		height: 23px;
	}
}

/*****/

/* ===============================================================
ヘッダー
================================================================== */
header {
	position: fixed;
	z-index: 100;
	width: 100vw;
	padding: 0;
	background-color: transparent;
	transition: all 0.3s;
}

header:hover {
	background-color: #fff;
}

header.bg {
	background-color: #fff;
	background-image: url(assets/images/common/bg_noise_G.png);
}

.header-nav {
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
	height: 100px;
	padding: 30px 0;
	transition: all 0.3s;
}

#site-logo {
	position: absolute;
	top: 30px;
	left: 40px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	/* リンクを無効化 */
	transition: opacity 1s ease, visibility 1s ease;
}

#site-logo.visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	/* リンクを有効化 */
}

#site-logo img {
	max-width: 220px;
	height: auto;
}

@media (max-width: 1199px) {



	#site-logo {
		top: 15px;
		left: 15px;
	}

	#site-logo img {
		max-width: 160px;
		height: auto;
	}

	.header-nav {
		display: block;
		height: 50px;
	}

}

/******/


/* ===============================================================
フッター
================================================================== */

/*フッター共有*/

#footer {
	background-color: #2E2B2A;
}

#footer .content-wrap {
	max-width: 1200px;
	margin: auto;
	padding: 0;
}

#footer i {
	font-style: normal;
}

#footer .footer-nav ul li a:hover {
	color: #fff;
}

@media (max-width:1199px) {
	#footer .content-wrap {
		max-width: 1200px;
		margin: auto;
		padding-left: 20px !important;
		padding-right: 20px !important;
	}
}

/*****/

/*ボタン*/
/* 共通ボタンスタイル */
.btn-footer1 a,
.btn-footer2 a,
.btn-insta a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	border-radius: 100px;
	border: solid thin #F0EEED;
	text-decoration: none;
	text-align: center;
	transition: all 0.3s;
	width: 240px;
	font-weight: 500;
	letter-spacing: 0;
	line-height: normal;
}

/* スタイル別 */
.btn-footer1 a {
	color: #2E2B2A;
	background-color: #F0EEED;
	font-size: 16px;
	height: 48px;
	margin-bottom: 20px;
}

.btn-footer1 a i {
	font-family: 'REM', sans-serif;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 19px;
}

.btn-footer1>a:hover {
	background-color: #7E7977 !important;
	color: #F0EEED !important;
	opacity: 1;
}

.btn-footer2 a,
.btn-insta a {
	color: #F0EEED;
	background-color: transparent;
	font-size: 14px;
	height: 40px;
	margin-bottom: 20px;
}

.btn-footer2>a:hover {
	background-color: #F0EEED !important;
	color: #2E2B2A !important;
	opacity: 1;
}

.btn-insta>a span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	/*font*/
	font-family: 'REM', sans-serif;
	font-weight: 400 !important;
	letter-spacing: 0.02em;
	line-height: normal;
}

.btn-insta>a span::before {
	content: '';
	display: inline-block;
	background-image: url(assets/images/common/icon_instagram_W.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	width: 19px;
	height: 19px;
}

.btn-insta>a:hover {
	background-color: #F0EEED !important;
	color: #2E2B2A !important;
	opacity: 1;
}

.btn-insta>a:hover span::before {
	background-image: url(assets/images/common/icon_instagram_B.svg);
}


/* モバイル対応 */
@media (max-width: 767px) {
	.btn-footer1 a {
		margin-bottom: 20px;
		height: 56px;
	}

	.btn-footer2 a,
	.btn-insta a {
		height: 48px;
		margin-bottom: 20px;
	}

	.btn-footer1 a,
	.btn-footer2 a,
	.btn-insta a {
		width: 270px !important;
	}
}

/* upper */
/* footer-set01 */

#footer .upper {
	padding: 100px 0 0 0;
	height: 370px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start !important;
}

#footer .upper .footer-set01 {
	display: flex;
	justify-content: flex-start;
	width: 100%;
	margin: 0;
	padding: 0;
}

#footer .upper .footer-set01 .site-logo {
	max-width: 337px;
	text-align: left;
	margin: 0;
	padding: 0;
	margin-right: 110px;
}

#footer .upper .footer-set01 .site-logo img {
	width: 100%;
	min-width: 200px;
}

#footer .upper .footer-set01 .footer-nav {
	padding: 0;
	margin: 0;
}

#footer .upper .footer-set01 .footer-nav ul {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px 70px;
	max-width: 400px;
}

#footer .upper .footer-set01 .footer-nav ul li {
	white-space: nowrap;
	margin: 0;
	padding: 0;
}

#footer .upper .footer-set01 .footer-nav ul li a:link,
#footer .upper .footer-set01 .footer-nav ul li a:visited {
	font-size: 14px;
	letter-spacing: 0.5px;
	font-weight: 200;
	color: #F0EEED;
}

/* footer-set02 */

#footer .upper .footer-set02 {
	width: 240px;
	margin: 0 auto;
	padding: 0;
}




@media (max-width:991px) {
	#footer .upper .footer-set01 .site-logo {
		width: 100%;
		max-width: 270px;
		margin-right: 0px;
	}

	#footer .upper .footer-set01 .footer-nav {
		padding: 0 50px;
	}

}

/*****/

@media (max-width:767px) {
	#footer .upper {
		padding: 60px 20px 44px 20px;
		height: auto;
		display: block;
		margin-bottom: 0px;
	}

	#footer .upper .footer-set01 {
		display: block;
		margin-bottom: 65px;
	}

	#footer .upper .footer-set01 .site-logo {
		margin: 0 auto 40px auto;
		width: 270px;
	}

	#footer .upper .footer-set01 .site-logo img {
		width: 270px;
	}

	#footer .upper .footer-set01 .footer-nav {
		width: 270px;
		margin: auto;
		padding: 0;
	}

	#footer .upper .footer-set01 .footer-nav ul {
		max-width: 240px;
		gap: 16px 50px;
		justify-content: flex-start;
		padding: 0;
	}


	#footer .upper .footer-set02 {
		width: 270px !important;
		margin: 0 auto;
		padding: 0 !important;
	}


}

/*****/

/* lower */

#footer .lower {
	width: 100%;
	height: 100px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: thin solid #444;
	padding: 55px 20px !important;
}


#footer .lower .footer-set01 {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

#footer .lower .logo {
	width: 56px;
	margin-right: 40px;
}

#footer .lower .logo img {
	max-width: 56px;
	height: auto;
}

#footer .lower .footer-nav {}

#footer .lower .footer-nav ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
}

#footer .lower .footer-nav ul li {
	padding: 0;
	margin-right: 25px;
}

#footer .lower .footer-nav ul li a:link,
#footer .lower .footer-nav ul li a:visited {
	color: rgba(240, 238, 237, 0.7);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.05em;
	/* 約0.55px */
	line-height: 24px;
	text-indent: 0;
	text-align: left;
}

#footer .lower .footer-set02 {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#footer .copyright {
	color: rgba(240, 238, 237, 0.3);
	font-size: 11px;
	padding-right: 2rem;
	display: block;
}


.page-top {
	display: block;
	width: 56px;
	height: 56px;
	border: thin solid #F0EEED;
	border-radius: 100%;
	background-image: url(assets/images/common/icon_arrow_WU.svg);
	background-repeat: no-repeat;
	background-position: center center;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}



@media (max-width: 991px) {

	#footer .lower {
		display: block;
		height: auto;
		padding: 30px 20px;

	}

	#footer .lower .footer-set01,
	#footer .lower .footer-set02 {
		justify-content: center !important;
	}

}

/******/

@media (max-width: 767px) {

	#footer .lower {
		width: 90%;
		height: auto;
		padding: 20px 0px !important;
		margin: auto;
	}

	#footer .lower .footer-set01 {
		justify-content: center;
		max-width: 320px;
		width: 100%;
		margin: 0 auto 35px auto;
		padding-left: 10px;
	}

	#footer .lower .logo {
		width: 48px;
		margin-right: 16px;
	}

	#footer .lower .logo img {
		max-width: 48px;
		height: auto;
	}

	#footer .lower .footer-nav ul {
		padding-left: 10px;
	}

	#footer .lower .footer-nav ul li a:link,
	#footer .lower .footer-nav ul li a:visited {
		font-size: 12px;
		font-weight: 500;
		letter-spacing: 0.05em;
		/* 12px × 0.05 ≒ 0.6px */
		line-height: 28px;
		text-indent: 0;
		text-align: left;
	}

	#footer .lower .footer-set02 {
		justify-content: space-between !important;
		max-width: 320px;
		margin: 0 auto;
		padding: 0 !important;
	}

	#footer .copyright {
		color: rgba(240, 238, 237, 0.3);
		font-size: 10px;
		padding-right: 0rem;
		white-space: nowrap;
	}


	.page-top {
		width: 48px;
		height: 48px;
	}


}

/******/


/* ===============================================================
タイトル
================================================================== */

/*基本タイトルサイズ*/
h1,
h2 {
	font-size: 40px;
	font-weight: 400;
	line-height: 1.15em;
	letter-spacing: 0.08em;
	margin-bottom: 1.8rem;
}

h1 small,
h2 small {
	display: block;
	font-family: 'Zen Kaku Gothic Antique';
	font-size: 13px;
	font-weight: 500;
	color: #AAA19E;
	letter-spacing: 0.2px;
}

@media (max-width:767px) {

	h1,
	h2 {
		font-size: 34px;
		font-weight: 400;
		line-height: 1.15em;
		letter-spacing: 0.08em;
		margin-bottom: 1.8rem;
	}

	h1 small,
	h2 small {
		font-size: 12px;
	}
}

/*****/



/* [-] レスポンシブ対応
=========================================================================================== */
/* モバイル（小） */
@media (max-width: 480px) {
	/* スタイルを書く */
}

/*****/


/* モバイル（大） */
@media (max-width:767px) {}

/*****/
@media (min-width: 481px) and (max-width: 767px) {}

/*****/

/* タブレット縦 */
@media (max-width:991px) {}

/*****/
@media (min-width: 768px) and (max-width: 991px) {}

/*****/

/* タブレット横・小型PC */
@media (max-width:1199px) {}

/*****/
@media (min-width: 992px) and (max-width: 1199px) {}

/*****/

/* デスクトップ */
@media (min-width: 1200px) and (max-width: 1439px) {}

/*****/

/* 大型ディスプレイ */
@media (min-width: 1440px) {}

/*****/