@charset "UTF-8";
/* CSS Document */

/*=========================================== 
スマホ向けのレイアウトの指定：～768px 
===========================================*/
@media only screen and (min-width: 0px) {

body{
	overflow-x: hidden;
}
	
#container{
	width:100%;
	margin:0 auto;
	overflow: hidden;
}

#wrapper{
	width:100%;
	margin:0 auto;
}


/*メインビジュアル*/
.mv{
	background: url(../images/guide_mv.jpg) no-repeat top center;
	background-size: cover;
	background-position: left 35% center;
}

.mv .small {
    color: rgb(82,118,119);
    text-shadow: 0 0 3px white;
}

/*コンテンツ*/
section h2 {
    width: 90%;
    margin: 20px auto 0;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.5;
}
    
section p {
    width: 90%;
    margin: 0 auto;
}
    
section p a {
    font-size: 16px;
    color: rgb(139,199,207);
    margin: 10px 0 0;
    padding: 4px 2px;
    border-bottom: 1px solid;
}
    
.nav_guide {
    max-width: 960px;
    padding: 20px;
    margin: 40px auto 0;
    text-align: center;
}

.nav_guide li {
    margin: 0 0 10px;
}

.nav_guide li a {
    display: block;
    padding: 4px 0;
    font-size: 18px;
    font-weight: bold;
    color: rgb(138,198,206);
    text-decoration: underline;
}
    
.guide{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	margin: 0 auto;
	padding: 0 0 40px 0;
	font-size: 0;
	text-align: center;
}

.guide .content{
	box-sizing: border-box;
	width: 90%;
	margin: 20px auto;
	padding: 20px;
	text-align: center;
	border: 1px solid rgb(240,240,240);
	display: inline-block;
	vertical-align: top;
}

.guide .content figure {
    margin: 0;
}

.guide .content figure img {
    width: 100%;
    max-width: 320px;
    height: auto;
    border: 1px solid lightgray;
}

.guide .content figure figcaption {
    margin: 20px auto 0;
}

.guide .content figure figcaption p {
    margin: 10px auto;
    font-size: 12px;
    text-align: justify;
    line-height: 1.25;
}
    
.guide .content figure figcaption p .red{color: rgb(200,0,0);}
    
.guide .new{
	width: 90%;
	max-width: 320px;
	margin: 32px 10px 0;
	display: inline-block;
}

.guide .new-guide{
	width: 100%;
	font-size: 18px;
	text-align: center;
	letter-spacing: 0.12em;
	font-family: serif;
	color: rgb(255,255,255);
	background: rgb(231,153,142);
}

/* ふきだし*/
.guide .new-guide{
	position: relative;
	margin: 0 0 25px 0;
	padding: 7px 0;
	min-width: 120px;
	max-width: 100%;
}

.guide .new-guide:before{
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -15px;
	border: 15px solid transparent;
	border-top: 15px solid rgb(231,153,142);
}

.guide .new .content{
	width: 100%;
	margin: 0;
}

.guide .new .title {
    border-top: 2px solid rgb(231,153,142);
}
}


/*=========================================== 
PC向けのレイアウトの指定：768px〜
===========================================*/
@media only screen and (min-width: 768px) {

#container{
	width:100vw;
}

.mv{
	background-position: center;
}

/*コンテンツ*/
.guide{
	width: auto;
	max-width: 960px;
}

.guide .content{
	max-width: 460px;
	margin: 20px 0;
}
/*コンテンツ*/
section h2,section p {max-width: 960px;}
    
section p {
    font-size: 16px;
    line-height: 1.25;
}

.guide .info_box{
	width: 205px;
	float: left;
}

.guide .info{
	width: 160px;
}

.guide .img-3{
	margin: 0;
	float: right;
}

.guide .new{
	max-width: 460px;
}
}


/*=========================================== 
PC向けのレイアウトの指定：960px〜
===========================================*/
@media only screen and (min-width: 961px) {

.guide{
	text-align: left;
}
}
