html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;/*rem算出をしやすくするために*/
}
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

*{
  margin:0;
  padding:0;
}
html,
body,
.wrapper {
	height: 100%; /* 「div.background」に対してはmin-heightに対応していないブラウザ用 */
	background-color: #F4F4F0;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
 
.wrapper {
width: 100%;
height: 100%;
  background-color: #F4F4F0;
}
 
header{
	margin-left: auto;
	margin-right: auto;
	max-width: 1400px;
	margin-bottom: 10px;
	padding-top: 20px;
}

section.main{height: 100%;}

.container{
	display: flex;
	
	padding: 30px;
	background-color: #E0E1E1;
	margin-left: auto;
	margin-right: auto;
	max-width: 1400px;
	
	
}

.container .navi{
	flex-basis: 30%;
	min-width: 320px;	
}
.container .movie{
	flex-basis: 70%;
	box-sizing: border-box;
	/* [disabled]min-width: 800px; */
}

.container .movie .yt{
width:100%;
padding-bottom: 56.25%;
height:0px;
position: relative;
}
 
.container .movie .yt iframe {

	position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
}

ul.btns{
	
	height: 100%;
	margin-right: 20px;
	align-self:stretch;
	
	display:flex;
  flex-flow: column;
  justify-content:space-between;
}

li{
	border: 1px solid #00B6B4;
	border-radius: 0.5rem;
	background-color: #FFFFFF;
}

/* ボタン(リスト)のスタイル */
li a{display: block !important}
.btn
 {
	font-size: 1.6rem;
	font-weight: 700;
	padding-right: 1rem;
	padding-left: 2rem;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	text-align: left;
	vertical-align: middle;
	text-decoration: none;
	letter-spacing: 0.1em;
}
.btn {
	color: #00B6B4;
	height: 100%;
	line-height: 3;
}

a.btn:hover{
	background-color: #CCFFFE;
}



/* activeクラス */
.active,a.active:hover {
	background-color: #00B6B4;
	color: #FFFFFF !important;
}

ul.btns span{
	font-size: 20px;
	padding-right: 0.5em;
}
.container .navi p.saisei{
	margin-top: 1em;
	text-align: center;
	margin-right: 20px;
}
.container .navi p.saisei a:link {

	font-size: 1.2em;
	color: #000000;
	text-decoration: none;
}
.container .navi p.saisei a:hover{
	text-decoration: underline;
}

.toiawase{
	flex-basis: 100%;
	/* [disabled]min-width: 1100px; */
	padding-top: 30px;
	border-top: 1px solid #00B6B4;
}
.toiawase p{
	font-size: 16px;
	color: #00B6B4;
}

textarea {
    height: 150px;
}

.m-form-textarea {
	display: block;
	width: 100%;
	padding-top: 10px;
	padding-right: 16px;
	padding-left: 16px;
	padding-bottom: 10px;
	border-radius: 4px;
	border: none;
	box-shadow: 0 0 0 1px #ccc inset;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	resize: vertical;
	margin-top: 1em;
	font-size: 16px;
}

.m-form-textarea:focus {
    outline: 0;
    box-shadow: 0 0 0 2px rgb(33, 150, 243) inset;
}


.s-btn{
	margin-top: 20px;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 0;
	text-align: center;
	width: 400px;
}

.btn_03 {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 400px;
	height: 50px;
	position: relative;
	background: #228bc8;
	border: 1px solid #228bc8;
	border-radius: 30px;
	box-sizing: border-box;
	padding-top: 0;
	padding-right: 25px;
	padding-left: 25px;
	padding-bottom: 0;
	color: #fff;
	font-size: 16px;
	letter-spacing: 0.1em;
	line-height: 1.3;
	text-align: left;
	text-decoration: none;
	transition-duration: 0.3s;
	cursor: pointer;
}

.btn_03:hover {
  background: #fff;
  color: #228bc8;
}

