@charset "utf-8";
@import url("color.css");

* {
	box-sizing: border-box;
}

html {
	overflow-y: scroll;
	scroll-behavior: smooth;
}
img {
	width: 100%;
}
body {
	color: var(--shienshi-text);
	background-color: fff;
	letter-spacing: 0.1em; /*100*/
	line-height: 1.7;
	font-size: 0.875rem;/*14px*/
	font-feature-settings: "palt";
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
}

main {
    width: min(720px, 100%);
    margin: 0 auto;
	box-shadow: 0 0 16px rgba(0,0,0,.25);
}





/*======================================
モーダル設定
======================================*/
	.modal-wrapper {
		z-index: 999;
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		padding: 60px 10px;
		text-align: center
	  }
	  
	  .modal-wrapper:not(:target) {
		opacity: 0;
		visibility: hidden;
		transition: opacity .3s, visibility .3s;
	  }
	  
	  .modal-wrapper:target {
		opacity: 1;
		visibility: visible;
		transition: opacity .4s, visibility .4s;
	  }
	  
	  .modal-wrapper::after {
		display: inline-block;
		height: 100%;
		margin-left: -.05em;
		vertical-align: middle;
		content: ""
	  }
	  
	  .modal-wrapper .modal-window {
		box-sizing: border-box;
		display: inline-block;
		z-index: 20;
		position: relative;
		width: 80%;
		max-width: 600px;
		padding: 20px;
		border-radius: 2px;
		background: #fff;
		box-shadow: 0 0 30px rgba(0, 0, 0, .6);
		vertical-align: middle
	  }
	  
	  .modal-wrapper .modal-window .modal-content {
		max-height: 80vh;
		overflow-y: auto;
	  }
	  
	  .modal-overlay {
		z-index: 10;
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background: rgba(0, 0, 0, .8)
	  }
	  
	  .modal-wrapper .modal-close {
		z-index: 20;
		position: absolute;
		top: 0;
		right: 0;
		width: 35px;
		color: #95979c !important;
		font-size: 20px;
		font-weight: 700;
		line-height: 35px;
		text-align: center;
		text-decoration: none;
		text-indent: 0
	  }
	  
	  .modal-wrapper .modal-close:hover {
		color: #2b2e38 !important
	  }

	  #modal-01 .modal-content,
	  #modal-02 .modal-content {
		text-align: left;
	  }
	  #modal-01 h2,
	  #modal-01 h1 {
		margin: 2em 0 0.5em 0;
	  }

	  #modal-01 h1, 
	  #modal-02 h1{
		font-size: 1.3em;
	  }

	  #modal-02 table tr {
		display: flex;
		flex-direction: column;
		border-top: 1px solid #CCC;
		border-right: 1px solid #CCC;
		border-left: 1px solid #CCC;
	  }
	  #modal-02 table tr:last-child {
		border-bottom: 1px solid #CCC;
	}
	  #modal-02 table tr th {
		width: 100%;
		background-color: #EEE;
	  }
	  #modal-02 table tr th,
	  #modal-02 table tr td {
		padding: 8px;
	  }
	  #modal-02 h1 {
		margin-bottom: 1em;
	  }
	  #modal-02 h2 {
		margin-bottom: 0.5em;
	  }

/*======================================
main設定
======================================*/

.video {
	display: block;
	position: relative;
}
.video span {
	display: block;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -40%);
	aspect-ratio: 16 / 9;
	width: 60%;
}



/*======================================
footer設定
======================================*/
footer {
	text-align: center;
	margin-bottom: 80px;
	
    width: min(720px, 100%);
    margin: 0 auto;
	padding-bottom: 60px;
	box-shadow: 0 0 16px rgba(0,0,0,.25);
}

footer > .footer-item {
	margin-bottom: 32px;
}
footer > .footer-item > p > a {
	color: #fff;
    font-size: 12px;
}
footer > small {
	font-size: 10px;
	color: #fff;
}

/*======================================
フローティングCTA設定
======================================*/
.cta-area {
	position: fixed;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 0);
	width: min(800px, 100%);
}
.cta-wrap {
	display: flex;
	justify-content: space-between;
	align-items: last baseline;
}
a.cta-btn {
	width: 48.5%;
	border-radius: 12px 12px 0 0;
	color: black;
	display: block;
    padding: 0.5em;
    line-height: 1.7em;
    text-align: center;
	text-decoration: none;
	font-size: 20px;
}

.cta-btn > p > span {
	font-size: 1.3em;
	font-weight: bold;
	display: block;
	display: none;
}
.cta-btn.business {
	background: #C9A746;
background: linear-gradient(0deg,rgba(201, 167, 70, 1) 0%, rgba(252, 251, 231, 1) 50%, rgba(201, 167, 70, 1) 100%);
display: none;
}

.cta-btn.user {
	background: #C5C4C4;
background: linear-gradient(0deg, rgba(197, 196, 196, 1) 0%, rgba(249, 248, 246, 1) 50%, rgba(205, 209, 214, 1) 100%);
width: min(550px, 90%) !important;
    margin: 0 auto;
}





/* =================================================

コンテンツ幅767px以下の表示はここからです

==================================================*/
@media screen and (max-width:767px){



	
}