@charset "UTF-8";
/*----------------------------------------------------------------------------------------------------------------------------------
　 　reset等
----------------------------------------------------------------------------------------------------------------------------------*/
*{
	-moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
	word-wrap:break-word;
    margin: 0;
    padding: 0;
}
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
body {line-height:1;}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { display:block;}
nav ul {list-style:none;}
blockquote, q {quotes:none;}
blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}
a {
	width: 100%;
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
	word-break: break-all; 
}
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}
mark {
    background-color:#ff9;
    color:#000; 
    font-style:italic;
    font-weight:bold;
}
del { text-decoration: line-through;}
abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

ul,ol{
	list-style: none;
  letter-spacing: -0.5em;
}
li {letter-spacing: normal;}
a{
    text-decoration: none;
	display: inline-block;
cursor: pointer;
	word-break: break-all; 
}
table {
    border-collapse:collapse;
    border-spacing:0;
}
hr {
    display:block;
    height:1px;
    border:0;   
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}
/*--------------------------------------------------------------------------------------------------------------------------
　　フォント
--------------------------------------------------------------------------------------------------------------------------*/
body {
	font-family:"Hiragino Kaku Gothic ProN","ヒラギノ角ゴ ProN W3","メイリオ","Meiryo","Arial",sans-serif;
	color: #000;
	font-size: 18px;
  	line-height:160%;
	letter-spacing: .05em;
    text-align: center;
    position: relative;
	background: #fff;
}
/*--------------------------------------------------------------------------------------------------------------------------
　　基本スタイル
--------------------------------------------------------------------------------------------------------------------------*/
html {height: 100%;}
body {
	text-align: center;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}
img {
  width: 100%;
  max-width: 100%;
  height: auto;
 vertical-align: bottom;
}
::-webkit-scrollbar { display:none;}

/*--------------------------------------------------------------------------------------------------------------------------
　　共通class
--------------------------------------------------------------------------------------------------------------------------*/
.flex{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.bold{font-weight: bold;}

.no_disp{display: none!important;}

.a_center{text-align: center;}
.a_left{text-align: left;}

.relative{position: relative;}


.white_text{color: #fff;}
.gry_text{color: #585858;}

.pc_on{display: inline-block!important;}
.sp_on{display: none!important;}
@media print, screen and (min-width: 1000px) {
a[href*="tel:"] {
pointer-events: none;
cursor: default;
text-decoration: none;
	}
}
@media print, screen and (max-width: 999px) {
.pc_on{display: none!important;}
.sp_on{display: inline-block!important;}
}

/*----------------------------------------------------------------------------------------------------------------------------------
	2カラム コンテンツ
----------------------------------------------------------------------------------------------------------------------------------*/
.wrapper{
    width: 100%;
    height: 100%;
	min-height: 100vh;
    position: relative;
	justify-content: flex-end;
	align-items: flex-end;
}

.mv_outline{
	width: 50vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	justify-content: center;
	align-items: center;
	z-index: 1;
	overflow: hidden;
		
}
.mv_outline::after{
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top:0;
	left: 0;
	backdrop-filter: blur(10px);
    z-index: 2;
}
.img_bk{
	position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  min-width: 120%;
    min-height: 120%;
  object-fit: cover;
font-family:"object-fit:cover;";
	z-index: 1;
}
.mv_img{
	object-fit: cover;
	position: relative;
	z-index: 4;
}

.contents_outline{
	width: 50vw;
	min-height: 100vh;
}
.contents{
	width: 85%;
	min-height: 100vh;
	max-width: 450px;
	margin: 0 auto;
	padding: 70px 0;
}
@media print, screen and (max-width: 1280px) {.contents{max-width: 430px;}}
@media print, screen and (max-width: 800px) {
.wrapper{
	justify-content: center;
	align-items: center;
	flex-direction: column
}
.mv_outline{
	width: 100vw;
	height: auto;
	position:relative;
}
.contents_outline{width: 100vw;}
}

/*----------------------------------------------------------------------------------------------------------------------------------
　 　footer
----------------------------------------------------------------------------------------------------------------------------------*/
.footer{
	margin-top: 150px;
	padding: 100px 0 0;
}
.user_img{
	width: 170px;
    padding-top: 156px;
	border: solid #fff 7px;
	overflow: hidden;
	border-radius: 200px;
	position: absolute;
	top:-85px;
	left: 0;
	right: 0;
	margin: auto;
	display: inline-block;
}
.user_img  img{
	position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  min-width: 100%;
    min-height: 100%;
  object-fit: cover;
font-family:"object-fit:cover;";
}
.footer_inner{
	width: 85%;
	max-width: 450px;
	margin: 0 auto;
}
.name{
	font-size: 133%;
	padding-bottom: 30px;
}
.name::before{
	content: "";
	width: 100%;
	height: 2px;
	border-radius: 10px;
	background: #fff;
	position: absolute;
	left: 0;
	bottom: 0;
}
.footer_content{padding:30px 10px;}
.address{margin-bottom: 15px;}
.icon{
	padding: 3px 8px;
	border-radius: 3px;
	border: solid 2px #fff;
	margin-right: 10px;
}
.tel,
.fax{
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 10px;
}
iframe{
	width: 100%;
	border-radius: 15px;
	border: solid 7px #fff!important;
	overflow: hidden;
	height: 280px;
	margin-bottom: 50px;
}
.copy{
	width: 100%;
	transition: left 0.5s ease 0s;
	line-height: 55px;
	font-size: 100%;
}
@media print, screen and (max-width: 1280px) {
.footer {
    margin-top: 85px;
    padding: 75px 0 0;
}
.footer_inner{max-width: 430px;}
.user_img {
    width: 115px;
    padding-top: 103px;
    border: solid #fff 5px;
    top: -60px;
}
.name {
    font-size: 100%;
    padding-bottom: 20px;
}
.footer_content {
    padding: 25px 10px;
    font-size: 89%;
}
iframe {
    border-radius: 10px;
    border: solid 5px #fff!important;
    height: 240px;
    margin-bottom: 15px;
}
}
/*----------------------------------------------------------------------------------------------------------------------------------
　 　page_top
----------------------------------------------------------------------------------------------------------------------------------*/
.page_top{
  position: fixed;
  right: 20px;
    bottom: 10px;
  z-index: 1000;
}
.page_top a {
    font-size: 200%;
    background: rgb(255,255,255,.8);
    border-radius: 10px;
    text-decoration: none;
    width: 80px;
	height: 80px;
	justify-content: center;
	align-items: center;
}
.page_top a::before{
font-family: "Font Awesome 5 Free";
  content: '\f102';
  font-weight: 900;
}
@media print, screen and (max-width: 750px){
.page_top a {
    font-size: 155%;
    padding: 0px 18px;
    width: 55px;
	height: 55px;
	}
.page_top {right: 5px;}
}
