@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, day, 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,day,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;
	list-style: none;
}
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;
}


/*----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
	　基本
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
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;}


/*--------------------------------------------------------------------------------------------------------------------------
　　フォント
--------------------------------------------------------------------------------------------------------------------------*/
body {
	font-family:"Hiragino Kaku Gothic ProN","ヒラギノ角ゴ ProN W3","メイリオ","Meiryo","Arial",sans-serif;
	letter-spacing: .05em;
    text-align: center;
    position: relative;
	background: #fff;
}
.senobi{
font-family: senobi-gothic, sans-serif;
font-weight: 400;
font-style: normal;
}
.zen{
font-family: zen-kaku-gothic-new, sans-serif;
font-weight: 500;
font-style: normal;
}
.heisei{
font-family: heisei-kaku-gothic-std, sans-serif;
font-weight: 700;
font-style: normal;
}

.w7{font-weight: 700;}
.w9{font-weight: 900;}

/*----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
	共通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;}

.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;}
}

/*----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
	　form
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

::placeholder{
	color: #ccc;
	font-weight: 500;
}

input[type="text"], button, input[type="radio"], select, textarea, input[type="submit"], input[type="file"], input[type="password"], input[type="date"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
    border-radius: 5px;
    padding:15px 10px;
    border: 2px solid #E2E2E2;
    font-size: 100%;
	cursor: pointer;
}
input[type="text"], input[type="radio"], select, textarea, input[type="submit"], input[type="file"], input[type="password"], input[type="date"]{ width: 100%;}
button{cursor: pointer;}
textarea{
	resize: vertical;
	min-height: 50px;
}
textarea::placeholder{font-weight: 300;}
.mini_btn,
.btn{
font-family: senobi-gothic, sans-serif;
font-weight: 400;
font-style: normal;
	border-radius: 50px;
	display: inline-block;
	border: none;
}
.btn{
	font-size: 150%;
	padding: 15px;
	min-width: 200px;
	cursor: pointer;
}
.mini_btn{
    font-size: 113%;
    padding: 10px;
    min-width: 150px;
}
.big_btn{
	width: 95%;
	max-width: 400px;
	margin: 0 auto;
    display: block;
    line-height: 1.6;
}
.mini{max-width: 140px;}
.minimini{max-width: 70px;}
.medium{max-width: 300px;}

@media print, screen and (max-width: 999px) {
.btn {
    font-size: 125%;
    padding: 10px 15px;
    min-width: inherit;
}
.mini_btn {
    font-size: 100%;
    padding: 5px 10px;
    min-width: 120px;
}
}
@media print, screen and (max-width: 750px){
	.btn {
    font-size: 113%;
    padding: 8px 10px;
    padding: 8px 10px;
}
}

@media print, screen and (max-width: 550px) {
.medium{max-width: 100%;}
.mini_btn {
	font-size: 88%;
    padding: 2px 8px;
}
}


/*----------------------------------------------------------------------------------------------------------------------------------
　 　modal
----------------------------------------------------------------------------------------------------------------------------------*/
.fixed {
    width: 100%;
    position: fixed;
    top:0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 1000;
    height: 100vh;
}
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    z-index: 10000;
    overflow: scroll;
}

.modal_outline {
    display: table-cell;
    width: 100vw;
    height: 100vh;
    position: relative;
    vertical-align: middle;
    text-align: center;
    padding: 50px 0;
}
.modal_bk {
    position: absolute;
    top: 0;
    left: 0;
    min-height: 100vh;
    height: 100%;
    width: 100%;
	opacity: .8;
    backdrop-filter: blur(20px);
}
.modal_close {
    position: absolute;
    top: -20px;
    right: -10px;
    cursor: pointer;
    font-size: 200%;
	width: 44px;
    padding: 2px 10px;
	border-radius: 50px;
	background: #13202F;
	justify-content: center;
	align-items: center;
	border: solid 2px #fff;
    line-height: 30px;
}
.modal_content {
    height: auto;
    width: 95%;
    max-width: 700px;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    margin: 0 auto;
}
.modal_link_content{ max-width: 500px;}
.modal_link_content img{
	height: 100%;
	width: auto;
	max-height: 530px;
}


@media print, screen and (max-width: 999px){
.modal_content{
    max-width: 700px;
    margin: 50px auto 0;
}
.modal_content_outline {padding: 50px 0;}
}

@media print, screen and (max-width: 550px){
.modal_outline {padding: 100px 0;}
.modal_content {
    padding: 20px;
}
}
