@charset "UTF-8";
/***************************************
01.Reset
02.共通
　ーヘッダー
　ーパンくず
　ーフッター
03.トップページ
04.
05.

***************************************/
/***************************************
01.Reset
***************************************/
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
html {
	overflow-x: hidden;
	background: linear-gradient(#ffffff);
	height: 100vh;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Infant:ital,wght@0,300..700;1,300..700&family=Playfair+Display:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');
/***************************************
02.共通
***************************************/
body {
	font-size: 16px;
	color: #F7F7F7;
	font-family: "Noto Sans", sans-serif;
	font-weight: 400;
	text-align: justify;
	-webkit-text-size-adjust: 100%;
	overflow-x: hidden;
	position: relative;
	
}
h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
}
a {
	color: #28D8D8;
	word-break: break-all;
	text-decoration: none;
}


/***************************************
03.メインビジュアル
***************************************/
.mv {
	text-align: center;
}

.mv {
  position: relative;
  width: 100%;
  height: 0;
  background:#d2eced /*url("../img/mv_pc_ph.jpg") no-repeat center right/ contain*/;
}
.mv-img{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  height: 100%;
}
.mv h1{
	width: 60%;
	height: 100%;
	text-indent: -9999px;
	background: url(../img/mv_pc_logo.webp) no-repeat center center/90%;
}
.mv .ph{
	/*background: url("../img/mv_pc_ph.webp") no-repeat center right/ cover;*/
	width: 40%;
	height: 100%;
	overflow: hidden;
}
.mv .ph img{
	object-fit: cover;
	width: 100%;
	height: 100%;
	object-position: center top;
}

@media screen and (max-width: 767px) and (orientation: landscape){
    .mv-img {
		background: #eef1f5 url("../img/mv_pc.webp") no-repeat left center / 100%;
	}

  .mv h1,
  .mv .ph{
	display: none;
  }
}

@media screen and (max-width: 820px) and (orientation: portrait){
    .mv-img {
		background: #eef1f5 url("../img/mv_sp.webp") no-repeat left top / cover;
	}

  .mv h1,
  .mv .ph{
	display: none;
  }
}

@media screen and (max-width: 767px) {
  .mv {
    	background: #eef1f5 url("../img/mv_sp.webp") no-repeat left top / cover;
  }
  .mv h1,
  .mv .ph{
	display: none;
  }
}
@media screen and (max-width: 375px) {
  .mv {
    	background: #eef1f5 url("../img/mv_sp.webp") no-repeat left top / cover;
		height: 110vh!important;
  }

}
