@charset "UTF-8";

/* ========================================

    Reset CSS

======================================== */

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p,
img, b, i,
dl, dt, dd, ol, ul, li,
table, tr, th, td,
header, footer, nav, section, article, aside,
fieldset, form, label, legend, video {
    font-size: 100%;
    vertical-align: baseline;
    border: 0;
    outline: 0;
    background: transparent;
    margin: 0;
    padding: 0;
}

body {
    line-height: 1;
}

article, aside,
header, footer, nav, section {
    display: block;
}

h1, h2, h3, h4, h5, h6, th {
    font-weight: 200;
}

a {
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    margin: 0;
    padding: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

input, select, textarea, img {
    vertical-align: middle;
}

ul, dl, ol {
    list-style: none;
}

/* ========================================

    Common

======================================== */

@font-face {
    font-family: "Yu Gothic";
    src: local("Yu Gothic Medium");
    font-weight: 400;
}

@font-face {
    font-family: "Yu Gothic";
    src: local("Yu Gothic Bold");
    font-weight: bold;
}

* {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-appearance: none;
            appearance: none;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

html,
body {
    width: 100%;
    height: 100%;
}

body {
    font-family: "Yu Gothic", YuGothic;
    font-size: 16px;
    font-weight: 400;
    color: #333;
    line-height: 2.0;
    background: #fff;
    -webkit-text-size-adjust: 100%;
}

@media screen and (max-width: 480px) {

body {
    font-size: 14px;
    line-height: 1.8;
}

}

a {
    color: #333;
    text-decoration: underline;
}

a:hover {
    color: #333;
    text-decoration: none;
}

a:hover img {
    opacity: 0.5;
}

a,
a:hover,
a:hover img {
    -webkit-transition-duration:0.3s;
    transition-duration: 0.3s;
}

img,
video,
object {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
    border: none;
    -webkit-transition-duration:0.3s;
    transition-duration: 0.3s;
}

/* ========================================

    Responsive

======================================== */

.wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}
#header .wrap {
    max-width: 100%;
}

@media screen and (max-width: 480px) {
    
    .wrap {
        padding: 0 15px;
    }

}


/*  PCで非表示／スマホで表示
----------------------------- */

.pcNone {
    display: none !important;
}

@media screen and (max-width: 1000px) {
    
    .pcNone {
        display: block !important;
    }

}

/*  PCで表示／スマホで非表示
----------------------------- */

@media screen and (max-width: 1000px) {
    
    .spNone {
        display: none !important;
    }

}

/*  PCで改行／スマホで非改行
----------------------------- */

.br {
    display: none;
}

@media screen and (max-width: 480px) {
    
    .br {
        display: block;
        font-size: 0;
    }

}

/* Flexbox
----------------------------- */

.flex {
    -js-display: flex;
    display: flex;
    margin: 0 auto;
}

.flex li {
    flex: 1;
    margin: 0 auto;
}

@media screen and (max-width: 1000px) {
    
    .flex {
        flex-direction: column;
    }

}

/* ?? ????/??Fix
----------------------------- */

body > div {
    background-position: center center;
    background-size: cover;
}

/* iframe
----------------------------- */

.iframeWrap {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}
.iframeWrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.youtube{
  display: block;
  margin: 0 auto ;
  max-width: 100%;
  width: 720px;
  height: 400px
}