@charset "utf-8";

section .title{
	width: 100%;
	~ .title h2 {
		margin-top: 80px;
		@media screen and (max-width: 768px){
			margin-top: 48px;
		}
	}
	+ p {
		margin-top: 1em;
	}
	@media screen and (max-width: 768px){
		&:first-child h2 {
			margin-top: 0;
		}
	}
}
section .title h2{
	width: 98%;
    position: relative;
    display: inline-block;
    margin: 30px 30px 0 0;
    padding-bottom: 15px;
    padding-left: 0;
    border-bottom: dotted 2px #cc0000;
    font-size: 3rem;
	@media screen and (max-width: 768px){
		width: 92%;
		font-size: 2.5rem;
	}
	&::before {
		content: none;
	}
	&::after {
		content: "";
		position: absolute;
		bottom: 2px;
		right: -30px;
		width: 33px;
		height: 16px;
		background: url(../images/icon_airplane.png) no-repeat center right;
		background-size: 33px 16px;
	}
}
.youtubeFrame {
	width: 100%;
	max-width: 750px;
	margin: 20px auto 0;
	position: relative;
	iframe {
		width: 100%;
		height: 414px;
	}
	@media screen and (max-width: 768px){
		padding-bottom: 56.25%;
		iframe {
			position: absolute;
			top: 0;
			left: 0;
			height: 100%;
		}
	}
}