@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Open+Sans');

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,menu,nav,
section,summary,time,mark,audio,video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    font-family: "Helvetica", "Roboto", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: normal;
}

p {
    line-height: 1.8;
}

a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    text-decoration: none;
    color: #444;
}

img {
    width: 100%;
    display: block;
}

html {
    height: 100%;
    font-size: 62.5%;
}

body {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    color: #444;
    position: relative;
    -webkit-text-size-adjust: 100%;
}

@media only screen and (min-width: 769px) {
    .sp {
        display: none!important;
    }
}

@media only screen and (max-width: 768px) {
    .pc {
        display: none!important;
    }
}

* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

ul {
    list-style: none;
}




/*========================================================
▼ヘッダー
========================================================*/

header {
    width: 100%;
    height: 90px;
    position: relative;
    display: flex;
    align-items: center;
    background-color: #0e0e0e;
    z-index: 9999;
}

.header-inner {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    position: relative;
    height: 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-inner .logo {}




/*SNSアイコン*/

.header-inner .sns {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-inner .sns a {
    display: block;
    text-align: center;
    padding: 0 1.5em;
    color: #fff;
}

.header-inner .sns a:hover,
.header-inner .logo:hover {
    opacity: 0.8;
}

.header-inner .sns a i {
    font-size: 3.5rem;
    vertical-align: middle;
}


@media only screen and (max-width: 768px) {
    header {
        width: 100%;
        height: 45px;
        margin: 0 auto;
    }

    .header-inner {
        width: 100%;
        position: relative;
        height: 45px;
        display: flex;
        justify-content: space-between;
        padding: 0 3%;
    }

    .header-inner .logo {
        width: 30vw;
    }

    /*SNSアイコン*/
    .header-inner .sns {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header-inner .sns a {
        display: block;
        text-align: center;
        padding: 0 1em;
        color: #fff;
    }

    .header-inner .sns a:last-of-type {
        padding-right: 0;
    }

    .header-inner .sns a:hover,
    .header-inner .logo:hover {
        opacity: 0.8;
    }

    .header-inner .sns a i {
        font-size: 2.4rem;
        vertical-align: middle;
    }
}



/*========================================================
▼メインコンテンツ
========================================================*/

#main {
    width: 100%;
    position: relative;
    background-image: url(../images/bg.jpg);
    background-attachment: fixed;
}

@media only screen and (max-width: 768px) {
    #main {
        width: 100%;
        margin: 0 auto;
    }
}



/*========================================================
▼メインビジュアル
========================================================*/

#mv {
    position: relative;
    z-index: 9998;
}

#mv .mv-img {
    max-width: 2500px;
    margin: 0 auto;
}

@media only screen and (max-width: 768px) {
    #mv {
        width: 100%;
    }
}



/*========================================================
▼メインコンテンツ
========================================================*/

#contents {
    width: 100%;
    margin: 0 auto;
    padding: 100px 40px;
    position: relative;
}

section {
    width: 1080px;
    margin: 0 auto 50px;
    font-size: 1.4rem;
    padding: 50px 40px;
    line-height: 1.7;
}

@media only screen and (max-width: 768px) {
    html,
    body {
        height: 100%;
        min-width: 320px;
    }

    #contents {
        width: 100%;
        padding: 0 4%;
        margin: 0 auto;
    }

    section {
        width: 100%;
        margin: 0 auto 10%;
        font-size: 1.6rem;
        padding: 10% 6%;
        line-height: 1.7;
    }
}


/*----------------------------------------
メニューボタン
----------------------------------------*/

#menu {
    position: fixed;
    top: 200px;
    right: -412px;
    z-index: 999;
    transition: left 0.5s, right 0.5s, opacity 0.5s;
    opacity: 0;
}

#menu.open {
    right: 0px;
}

#menu.active {
    opacity: 1;
}

#menu .menu-inner {
    display: flex;
}

#menu .menu-inner .menu-btn {
    width: 2em;
    background-color: #f4f1a5;
    color: #0090b6;
    font-size: 2rem;
    padding: 0 0.5em;
    display: flex;
    align-items: center;
}

#menu .menu-inner .menu-btn span{
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    -o-writing-mode: vertical-rl;
    display: block;
    text-align: center;
}

#menu .menu-inner .menu-btn:hover {
    cursor: pointer;
}

#menu .menu-inner ul,
#menu .menu-inner ul a {
    color: #0090b6;
    font-size: 1.6rem;
}

#menu .menu-inner ul>li span {
    margin-bottom: 16px;
}


#menu .menu-inner ul>li>a span {
    height: 16px;
    display: block;
}

#menu .menu-inner ul>li>a img {
    width: auto;
    height: 100%;
}

#menu .menu-inner ul>li>a:hover img {
    opacity: 0.7;
}

#menu .menu-inner ul ul,
#menu .menu-inner ul ul a {
    font-size: 1.4rem;
    font-weight: 600;
}

#menu .menu-inner ul ul a:hover {
    text-decoration: underline;
}

#menu .menu-inner>ul {
    background-color: #fff;
    padding: 40px;
    width: 412px;
}

#menu .menu-inner ul ul {
    padding-left: 10px;
    margin-bottom: 12px;
}

#menu .menu-inner ul ul li {
    margin-bottom: 10px;
}

@media only screen and (max-width: 768px) {
    #menu {
    	width: 100%;
        position: fixed;
        top: 10%;
        right: -90%;
        opacity: 0;
    }

    #menu.open {
        right: 0px;
    }

    #menu.active {
        opacity: 1;
    }

    #menu .menu-inner {
        display: flex;
        width: 100%;
    }

    #menu .menu-inner .menu-btn {
    	width: 10%;
        min-width: 32px;
        font-size: 1.8rem;
        align-self:flex-start;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #menu .menu-inner .menu-btn span{
        width: 1em;
        padding: 3em 0;
    }

    #menu .menu-inner ul,
    #menu .menu-inner ul a {
        font-size: 1.6rem;
    }

    #menu .menu-inner ul>li span {
        margin-bottom: 16px;
    }


    #menu .menu-inner ul>li>a span {
        height: 16px;
        display: block;
    }

    #menu .menu-inner ul>li>a img {
        width: auto;
        height: 100%;
    }

    #menu .menu-inner ul>li>a:hover img {
        opacity: 0.7;
    }

    #menu .menu-inner ul ul,
    #menu .menu-inner ul ul a {
        font-size: 1.4rem;
        font-weight: 600;
    }

    #menu .menu-inner ul ul a:hover {
        text-decoration: underline;
    }

    #menu .menu-inner>ul {
        background-color: #fff;
        padding: 40px;
        width: 90%;
    }

    #menu .menu-inner ul ul {
        padding-left: 10px;
        margin-bottom: 12px;
    }

    #menu .menu-inner ul ul li {
        margin-bottom: 10px;
    }
}


/*----------------------------------------
リードテキスト
----------------------------------------*/

.lead {
    margin: 0 auto 80px;
    font-size: 1.6rem;
}

.lead-ttl {
    font-size: 3rem;
    text-align: center;
    width: 650px;
    margin: 0 auto;
}

.lead-ttl h2 {
    background-image: url(../images/line_wave.png);
    background-repeat: repeat-x;
    background-position: 0 100%;
    padding: 0 24px 20px;
    margin-bottom: 40px;
}

.lead-ttl>p {
    color: #008ea9;
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.lead>p {
    line-height: 2.4;
}


@media only screen and (max-width: 768px) {
    .lead {
        margin: 0 auto;
        font-size: 1.6rem;
    }

    .lead-ttl {
        font-size: 3rem;
        width: 100%;
    }

    .lead-ttl h2 {
        padding: 0 24px 20px;
        margin-bottom: 8%;
    }

    .lead-ttl>p {
        font-size: 1.9rem;
        margin-bottom: 8%;
    }

    .lead>p {
        line-height: 1.75;
    }
}


/*----------------------------------------
セクション
----------------------------------------*/


/*セクション共通
------------------------*/

section.bg {
    background-image: url(../images/section_bg.jpg);
    background-repeat: repeat-y;
    background-size: cover;
}



/*セクションタイトル
------------------------*/

.section-ttl {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-image: url(../images/line_wave.png);
    background-repeat: repeat-x;
    padding: 46px 0;
    border-bottom: 2px dashed #008ea9;
    margin-bottom: 20px;
}

.section-ttl h3 {
    height: 50px;
}

.section-ttl h3 img {
    width: auto;
    height: 100%;
}

.section-ttl>p {
    width: 546px;
    line-height: 1.7;
    font-weight: 600;
}

@media only screen and (max-width: 768px) {
    .section-ttl {
        display: block;
        padding: 10% 0 6.67%;
        border-bottom: 2px dashed #008ea9;
        margin-bottom: 4%;
    }

    .section-ttl h3 {
        height: 30px;
        margin-bottom: 5%;
    }

    .section-ttl h3 img {
        width: auto;
        height: 100%;
    }

    .section-ttl>p {
        width: 100%;
        line-height: 1.7;
    }
}


/*セクションコンテンツ共通
------------------------*/

h4 {
    color: #008ea9;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1;
}

h4 span {
    display: block;
    margin-top: 10px;
    height: 16px;
}

h4 span img {
    width: auto;
    height: 100%;
}

h5 {
    color: #008ea9;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1;
}

.section-contents {
    padding: 30px 0;
}


/*横均等並べのレイアウト*/

.group-h {
    display: flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    flex:1;
}


/*縦均等並べのレイアウト*/

.group-v {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-flow: column wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    flex: 0 0 auto; 
}

.contents-group {
    width: 500px;
}

.contents-wrap .contents-group:nth-of-type(odd) {
    padding: 20px 30px 16px 0;
}

.contents-wrap .contents-group:nth-of-type(even) {
    padding-left: 30px;
}

.group-v .contents-wrap {
    padding-bottom: 24px;
}

.group-v .group-v__inner {
    padding: 20px 0;
}

.group-v .group-v__inner:first-of-type {
    border-bottom: 2px dashed #008ea9;
}

.group-v .contents-wrap dt {
    width: 48%;
    padding-right: 30px;
}

.group-v .contents-wrap dd {
    width: 52%;
}

.line-b {
    border-bottom: 2px dashed #008ea9;
}

.contents-box {
    margin-bottom: 50px;
}

.txt {
    margin-bottom: 30px;
}

.img {
    margin-bottom: 50px;
}

.txt-img {
    height: 20px;
    margin-bottom: 20px;
}

.txt-img img {
    width: auto;
    height: 100%;
}

@media only screen and (max-width: 768px) {
    h4 {
        font-size: 2rem;
        margin-bottom: 5%;
        line-height: 1.3;
    }

    h4 span {
        margin-top: 10px;
        height: 16px;
    }

    h4 span img {
        width: auto;
        height: 100%;
    }

    h5 {
        color: #008ea9;
        font-size: 1.8rem;
        font-weight: 600;
        margin-bottom: 15px;
        line-height: 1;
    }
    .section-contents {
        padding: 6.4% 0;
    }
    /*横均等並べのレイアウト*/
    .group-h {
        display: block;
    }
    /*縦均等並べのレイアウト*/
    .group-v {
        display: block;
    }

    .contents-group {
        width: 100%;
    }

    .contents-wrap .contents-group:nth-of-type(odd) {
        padding: 0;
    }

    .contents-wrap .contents-group:nth-of-type(even) {
        padding-left: 0;
    }

    .group-v .contents-wrap {
        padding-bottom: 0;
    }

    .group-v .group-v__inner {
        padding: 6.4% 0 0;
    }

    .group-v .group-v__inner:first-of-type {
        border-bottom: none;
    }

    .group-v .contents-wrap dt {
        width: 100%;
        padding-right: 0;
        margin-bottom: 5%;
    }

    .group-v .contents-wrap dd {
        width: 100%;
    }

    .line-b {
        border-bottom: none;
    }

    .contents-box {
        margin-bottom: 6.4%;
    }

    .txt {
        margin-bottom: 6.4%;
    }

    .img {
        margin-bottom: 6.4%;
    }

    .txt-img {
        height: 20px;
        margin-bottom: 20px;
    }

    .txt-img img {
        width: auto;
        height: 100%;
    }

    .contents-group > p{
		margin-bottom: 6.4%;
    }
}


/*セクション：setup
------------------------*/

.measures dl {
    margin-bottom: 50px;
}

.measures dl>dt {
    color: #008ea9;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 20px;
    background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
}

.measures dl:first-of-type>dt {
    background-image: url(../images/txt_img_sand.png);
}

.measures dl:nth-of-type(2)>dt {
    background-image: url(../images/txt_img_wind.png);
}

.measures dl:last-of-type>dt {
    background-image: url(../images/txt_img_sunshine.png);
}

.tent {}

.tent dl {
    display: flex;
    flex-wrap: nowrap;
    flex:1;
}

.tent .peg dl dt {
    width: 34%;
    padding-right: 30px;
}

.tent .peg dl dd {
    width: 66%;
}

.tent .howto dl dt {
    width: 48%;
    padding-right: 30px;
}

.tent .howto dl dd {
    width: 52%;
    padding-right: 30px;
}


@media only screen and (max-width: 768px) {
    .measures dl {
        margin-bottom: 6.4%;
    }

    .measures dl:last-of-type {
        margin-bottom: 0;
    }

    .measures dl>dt {
        font-size: 1.8rem;
        margin-bottom: 4%;
    }

    .tent dl{
    	margin-bottom: 10%;
    }

    .tent dl:last-of-type{
    	margin-bottom: 0;
    }

    .tent .peg dl dt {
        width: 100%;
        padding-right: 6.4%;
    }

    .tent .peg dl dd {
        width: 100%;
    }

    .tent .howto dl dt {
        width: 50%;
        padding-right: 8%;
    }

    .tent .howto dl dd {
        width: 50%;
        padding-right: 0;
    }
}


/*FUN
------------------------*/

#fun .contents-wrap .contents-group:nth-of-type(even) {
    border-left: 2px dashed #008ea9;
    padding-bottom: 50px;
}

#fun .group-v {
    display: block;
}

#fun ul.list li {
    margin-bottom: 20px;
    padding-left: 1em;
    text-indent: -1em;
}

#fun ul.list li:last-of-type {
    margin-bottom: 0;
}

#fun .fire dl{
    padding-bottom: 40px;
}

@media only screen and (max-width: 768px) {
	#fun .section-contents{
		padding:0;
	}

	#fun .contents-wrap .contents-group:nth-of-type(odd) {
		padding-top:6.4%;
	}

    #fun .contents-wrap .contents-group:nth-of-type(even) {
        border-left: none;
        padding-bottom: 0;
    }

    #fun ul.list{
    	margin-bottom: 6.4%;
    }

    #fun ul.list li {
        margin-bottom: 4%;
        padding-left: 0.5em;
        text-indent: -0.5em;
    }

    #fun ul.list li:last-of-type {
        margin-bottom: 0;
    }

	#fun dl{
		border-bottom: 2px dashed #008ea9;
		padding-bottom: 6.4%;
	}

	#fun .txt{
		margin-bottom: 0;
	}
	
	/*火の起こし方・個別設定*/
	#fun .fire .group-h{
		display: -webkit-box;
    	display: -ms-flexbox;
    	display: flex;
    	border:none;
	}

    #fun .fire dl{
        padding-bottom: 6.4%;
    }

	#fun .fire .group-h dt,
	#fun .fire .group-h dd{
		width: 50%;
	}
	
	#fun .fire .group-h dt{
	    padding-right: 6.4%;
	}

	#bonfire dl{
		margin-bottom: 6.4%;
	}

}


/*GOODS
------------------------*/

#goods {}

#goods .group-h dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-flow: column;
    flex-wrap: nowrap;
    padding-right: 24px;
    flex:1;
}

#goods .group-h dl:last-of-type {
    padding-right: 0;
}

#goods .group-h dt {
    height: 170px;
    margin-bottom: 30px;
}

#goods .group-h dt img {
    width: auto;
    max-width: 100%;
    height: 100%;
    margin: 0 auto;
}

#goods .group-h dd>p:first-of-type {
    color: #008ea9;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

#goods .fashion {
    position: relative;
}

#goods .fashion .fashion-img {
    position: relative;
    width: 80%;
    margin: 0 0 0 auto;
}

#goods .fashion .comment01 {
    width: 10em;
    position: absolute;
    top: 30%;
    left: 4%;
}

#goods .fashion .comment02 {
    width: 10em;
    position: absolute;
    top: 68%;
    left: 4%;
}

@media only screen and (max-width: 768px) {
    #goods {}

    #goods .group-h dl {
        display: block;
        padding-right: 0;
        margin-bottom: 12%;
    }

    #goods .group-h dl:last-of-type {
        padding-right: 0;
    }

    #goods .group-h dt {
    	height: 150px;
        margin-bottom: 5%;
    }

    #goods .group-h dt img {
        width: auto;
    }

    #goods .group-h dd>p:first-of-type {
        font-size: 1.8rem;
        margin-bottom: 5px;
    }

    #goods .fashion {
    	margin-bottom: 8%;
	}

    #goods .fashion .fashion-img {
        position: relative;
        width: 80%;
    }

    #goods .fashion .comment01 {
        width: 9em;
        position: absolute;
        top: 30%;
        left: 0%;
        font-size: 1.3rem;
    }

    #goods .fashion .comment02 {
        width: 9em;
        position: absolute;
        top: 68%;
        left: 0%;
		font-size: 1.3rem;
    }
}


/*LOCATION
------------------------*/

#location {}

#location .about dt,
#location .about dd {
    margin-bottom: 26px;
}

#location .info>dl {
    display: flex;
}

#location .contents-group {
    margin-bottom: 50px;
}

#location .contents-group:nth-of-type(2n+1) {
    margin-bottom: 0;
}

#location .contents-wrap .contents-group:nth-of-type(odd){
    padding-top: 0;
}

#location .info dd a:hover {
    text-decoration: underline;
}

@media only screen and (max-width: 768px) {
    #location {}

    #location .about dt{
        margin-bottom: 5%;
    }

    #location .about dd{
        margin-bottom: 10%;
    }

    #location .contents-group {
        margin-bottom: 0;
    }

    #location .contents-group:nth-of-type(2n+1) {
        margin-bottom: 0;
    }

    #location .info{
    	margin-bottom: 10%;
    	word-break: break-all;
    }

    #location .section-contents .contents-wrap:last-of-type .contents-group:last-of-type .info{
    	margin-bottom: 0;
    }

    #location .info>dl{
		flex-wrap: nowrap;
		font-size: 1.4rem;
    }

    #location .info dt{
		width: 40%;
    }

    #location .info dd{
		width: 60%;
    }

    #location .info dd a{
		text-decoration: underline;
    }
}


/*Q&A
------------------------*/

#qa {}

#qa .qa-box {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 40px;
}

#qa .contents-wrap .contents-group:nth-of-type(odd) {
    padding-top:0;
}


/*Q部分*/

#qa .qa-box>dt {
    color: #008ea9;
    font-weight: inherit;
}


/*A部分*/

#qa .qa-box>dd>dl>dt {
    color: #ea541b;
    margin-bottom: 10px;
    font-weight: 600;
}


/*A・テキスト部分*/

#qa .qa-box>dd>dl>dd {
    font-size: 1.4rem;
}

#qa .qa-box .group-h {
    align-items: center;
}

#qa .qa-box .group-h dt {
    width: 60%;
    padding-right: 20px;
}

#qa .qa-box .group-h dd {
    width: 40%;
}

@media only screen and (max-width: 768px) {
    #qa {}

    #qa .qa-box {
        font-size: 1.8rem;
        margin-bottom: 10%;
    }

    #qa > div.section-contents .contents-wrap:last-of-type .contents-group:last-of-type .qa-box:last-of-type{
    	margin-bottom: 0;
    }

    /*A部分*/
    #qa .qa-box>dd>dl>dt {
        margin-bottom: 0.5em;
    }
    /*A・テキスト部分*/
    #qa .qa-box>dd>dl>dd {
        font-size: 1.4rem;
    }

    #qa .qa-box .group-h dt {
        width: 100%;
        padding-right: 0;
        margin-bottom: 6.4%;
    }

    #qa .qa-box .group-h dd {
        width: 60%;
        margin:0 auto;
    }
}


/*アテンション
------------------------*/

#attention {
    background-image: url(../images/credit_bg.jpg);
    background-position: left bottom;
    background-size: cover;
    padding-top: 325px;
}

#attention dl {
    color: #fff;
}

#attention .group-h {
    align-items: flex-end;
}

#attention .attention-txt {
    width: 360px;
}

#attention .credit dl {
    display: flex;
    margin-bottom: 5px;
}

#attention .credit dl:last-of-type {
    margin-bottom: 0;
}

#attention .credit dt {
    width: 10em;
    padding-right: 1.6em;
}

#attention .credit dd span {
    display: inline-block;
    height: 20px;
    padding-right: 16px;
}

#attention .credit dd span img {
    display: inline;
    width: auto;
    height: 100%;
}

@media only screen and (max-width: 768px) {
    #attention {
    	background-image: url(../images/credit_bg.jpg);
    	background-color: #000;
    	background-position: left top;
    	background-size: 100%;
    	background-repeat: no-repeat;
        padding-top: calc(100% * 0.6);
    }

    #attention .attention-txt {
        width: 100%;
        font-size: 1.4rem;
        margin-bottom: 6.4%;
    }

    #attention .credit dl {
        display: flex;
        flex-wrap: nowrap;
        margin-bottom: 5px;
        font-size: 1.2rem;
    }

    #attention .credit dl:last-of-type {
        margin-bottom: 0;
    }

    #attention .credit dt {
        width: 40%;
    }

    #attention .credit dd{
    	width: 60%;
    }

    #attention .credit dd span {
        display: block;
        height: 20px;
        padding-right: 16px;
    }

    #attention .credit dd span img {
        display: inline;
        width: auto;
        height: 100%;
    }
}


/*Youtube
------------------------*/

#yt {}

.yt-video {
    width: 100%;
    max-width: 800px;
    padding: 0 4.167%;
    margin: 0 auto;
}

.yt-video__inner {
    position: relative;
    padding-bottom: 56.25%;
    width: 100%;
/*    height: 0;
    overflow: hidden;*/
}

.yt-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media only screen and (max-width: 768px) {
	#yt{
		padding-left:0;
		padding-right:0;
		margin-bottom:0;
	}

	.yt-video {
    width: 100%;
    max-width: 768px;
    padding: 0;
    margin: 0 auto;
}

.yt-video__inner {
    position: relative;
    padding-bottom: 56.25%;
    /*アスペクト比 16:9の場合の縦幅*/
    height: 0;
    overflow: hidden;
}

.yt-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
}


/*========================================================
▼フッターバナー
========================================================*/

#footer-bnr {
    width: 650px;
    margin: 0 auto;
}

#footer-bnr a:hover img {
    opacity: 0.7;
}

@media only screen and (max-width: 768px) {
    #footer-bnr {
        width: 100%;
        margin: 0 auto;
    }
}




/*========================================================
▼フッター
========================================================*/

footer {
    text-align: center;
}

footer small {
    width: 100%;
    background: #000;
    color: #fff;
    font-size: 14px;
    line-height: 50px;
    display: block;
}

@media only screen and (max-width: 768px) {
    footer small {
        font-size: 2.6vw;
        line-height: 1.2;
        padding: 10px 0;
    }
}