@charset "UTF-8";


/* RESET
------------------------------------*/
html, body, div, span, applet, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,del, dfn, em, img, ins, kbd, q, s, samp,small, strike, strong, sub,sup, tt, var,b, u, i, center,dl, dt, dd, ol, ul, li,fieldset, form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td,article, aside, canvas, details, embed,figure, figcaption, footer, header, hgroup,menu, nav, output, ruby, section, summary,time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    position: relative;
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
caption, th, td {
    text-align: left;
    font-weight: normal;
    vertical-align: middle;
}
img {
    border-style: none;
    vertical-align: bottom;
    font-size:0;
}

article,aside,footer,header,nav,section,main {
    display: block;
}

* {
    box-sizing: border-box;
}

*:before,
*:after {
    box-sizing: inherit;
}

input,
label,
select,
button,
textarea {
  margin: 0;
  border: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  background: none;
  font: inherit;
  line-height: 1;
}

input:focus,
textarea:focus,
button:focus,
select:focus {
  outline: 0;
}

input[type="submit"],
input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
    display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
    outline-offset: -2px;
}
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px #fff inset;
}



/* BASE
------------------------------------*/

html {
    font-size: 62.5%;
    height: 100%;
}
body {
    font-family: 'Noto Sans JP',"ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, Verdana, sans-serif;
    font-size: 1.6rem;
    font-weight: 300;
    color: #595858;
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: none;
    background: #fff;
    letter-spacing: 0.05em;
    -webkit-print-color-adjust: exact;
}

.clearfix:after {
    content: "";
    clear: both;
    display: block;
}

@media only screen and (max-width: 767px) {
    html { min-width: auto; }
} /* end @media */




/* COMMON
------------------------------------*/

.wide {
    width: 1180px;
    margin-left: auto;
    margin-right: auto;
}
.wide_sp {
    width: 1216px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 16px;
}
.wide_sp2 {
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 16px;
}
.wide_sp3 {
    width: 1216px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 16px;
}

.right { float: right; }
.left { float: left; }
.clear{ clear:both; }

a {
    color: #333;
    text-decoration: none;
}
.linkBlue { color: #0033cc !important; }
.linkBlue:hover { text-decoration: underline;}

p, ul {
    line-height: 1.7em;
    font-size: 1.4rem;
}

.fwb { font-weight: bold; }
.ft10 { font-size: 1.0rem; }
.ft12 { font-size: 1.2rem; }
.ft14 { font-size: 1.4rem; }
.ft16 { font-size: 1.6rem; }
.ft22 { font-size: 2.2rem; }

.mt10 { margin-top: 10px; }
.mt20 { margin-top: 20px; }
.mt30 { margin-top: 30px; }
.mt40 { margin-top: 40px; }
.mt50 { margin-top: 50px; }
.mt70 { margin-top: 70px; }
.mt100 { margin-top: 100px; }

.mb10 { margin-bottom: 10px; }
.mb20 { margin-bottom: 20px; }
.mb30 { margin-bottom: 30px; }
.mb40 { margin-bottom: 40px; }
.mb50 { margin-bottom: 50px; }
.mb60 { margin-bottom: 60px; }
.mb70 { margin-bottom: 70px; }
.mb100 { margin-bottom: 100px; }

.img100 { width: 100%; height: auto; }
.img100c {
    display: block;
    max-width: 100%; height: auto;
    margin-left: auto;
    margin-right: auto;
}
.img_l {
    float: left;
    margin: 0 30px 30px 0;
}
.img_r {
    float: right;
    margin: 0 0 30px 30px;
}
.imgHover {
    transition: opacity 0.3s ease;
}
.imgHover:hover {
    opacity: 0.7;
}
.txtCenter { text-align: center; }
.txtIdt {
    text-indent: -1em;
    padding-left: 1em;
}
.red { color: red; }

.left { float:left!important; }
.right { float:right!important; }

.sp { display: none; }



@media only screen and (max-width: 767px) {
    .pc { display: none; }
    .sp { display: inherit; }
    .wide {width: 100%;}
    .wide_sp,
    .wide_sp2 {width: 100%;}
    .wide_sp3 {
        width: 100%;
        padding: 0;
    }
} /* end @media */




/* COMMON2
------------------------------------*/


.tFadein1 {
    opacity: 0;
    transition: 5s;
}
.tFadein1_animate {
    opacity: 1;
}

.tFadein2 {
    opacity: 0;
    transition: 2s;
    transform:  translate(0, 30px);
}
.tFadein2_animate {
    opacity: 1;
    transform:  translate(0, 2px);
}




/* HEADER
------------------------------------*/

header {
    position: relative;
    font-size:0;
    min-width: 1216px;
}

.logo {
    width: 343px;
    display: inline-block;
    margin-right: 4px;
}
.headSns {
    display: inline-block;
    margin-left: 12px;
    width: 30px;
}
.headerContact-pc {
    position: absolute;
    top: 15px;
    right: 100px;
}
.headerContact-pc .imageTel {
    display: none;
    width: 314px;
    height: auto;
}
.headerContact-pc .iconMail {
    width: 30px;
    height: auto;
    margin: 15px 0 0 10px;
}
.headerContact-sp { display: none; }

/*---------- #menu ----------*/
#menuBtn {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 40px;
    height: 40px;
    box-sizing: border-box;
    z-index: 1001;
}
#menuBtn span {
  display: block;
  width: 24px;
  height: 1px;
  background: #444;
  position: absolute;
  left: 10px;
  transition: all 0.5s ease;
}

#menuBtn span:nth-child(1) { top: 0px; }
#menuBtn span:nth-child(2) { top: 8px; }
#menuBtn span:nth-child(3) { top: 16px; }

#menuBtn span:nth-child(1).open2 {
    top: 8px;transform:
    rotate(45deg);
}
#menuBtn span:nth-child(2).open2 { opacity: 0; }
#menuBtn span:nth-child(3).open2 {
    top: 8px;transform:
    rotate(-45deg);
}

#menuBtn:hover {
    cursor: pointer;
}

#menu {
    width: 100%;
    max-width: 325px;
    height: 100%;
    background-color: #fff;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    transform: translate(325px);
    transition: all .5s;
    padding: 80px 20px 50px 20px;
    z-index: 1000;
}
#menu.open {
  transform: translate(0);
}
#menu ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
#menu li {
  padding: 8px 8px 8px 1em;
  color: #fff;
  border-bottom: 1px solid #fff;
}
#menu li a:hover {
    text-decoration: underline;
}
.menu-background {
  position: fixed;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.5s;
}
.menu-background.open {
  width: 100%;
  height: 100%;
  opacity: 1;
}
#menu li ul {
    margin-top: 10px;
}

.fadein {
  opacity : 0;
  transform: translateY(20px);
  transition: all 3s;
}
.fadein2 {
  opacity : 0;
  transition: opacity 3s;
}

.imgFade {
    opacity: 0;
    animation-name:fade-in1;
    animation-duration:4s;
    animation-timing-function: ease-out;
    animation-delay:0.5s;
    animation-fill-mode: forwards;
}
@keyframes fade-in1 {
    0% {opacity: 0}
    100% {opacity: 1}
}


@media only screen and (max-width: 767px) {
    header { min-width: auto; }

    .headerContact-pc { display: none; }

} /* end @media */


/* TOP
------------------------------------*/


.ttl1 {
    font-size: 1.7rem;
    font-weight: 400;
    text-align: center;
    margin: 50px 0 30px;
    line-height: 1.5em;
    padding: 0 16px;
}

.topSec01,
.topSec02,
.topSec03 {
    margin: 0 auto;
    position: relative;
    width: 100%;
    height: 508px;
    background: #ccc;
    transition: opacity 0.5s ease;
}
.topSec01 a,
.topSec02 a,
.topSec03 a {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.topSec01:hover,
.topSec02:hover,
.topSec03:hover {
    opacity: 0.8;
}

.topSec01::after,
.topSec02::after,
.topSec03::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: url(../img/07.png);
    opacity: 0.7;
    top: 0;
    left: 0;
    pointer-events: none;
}

.topTxt {
    width: 100%;
    height: auto;
    position: absolute;
    z-index: 1;
    color: #fff;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}
.topTxt img {
    max-width: 634.5px;
    height: auto;
    width: 100%;
}

#youtube-wrap1,
#youtube-wrap2,
#youtube-wrap3 {
  position: relative;
  height: 508px;
  width: 100%;
}

.topBox h2 {
    font-size: 2.8rem;
    font-weight: 300;
    line-height: 1.5em;
    vertical-align: middle;
    text-align: center;
    margin: 45px 0 26px;
    padding: 0 16px;
}
.topBox h2 span {
    font-size: 1rem;
    vertical-align: middle;
}
.topBox p {
    text-align: center;
    padding: 0 16px;
}
.topArr {
    display: block;
    margin: 30px auto 55px;
    width: 33px;
    height: auto;
}


footer {
    background: #eee;
}
.footerCr {
    background: #ccc;
    width: 100%;
    padding: 16px;
    font-size: 1.2rem;
    text-align: center;
}
.footerSpace {
    height: 70px;
}
.footerContact {
    background-color: #5676a6;
    text-align: center;
    padding: 20px 0;
}
.footerContact .imageTel {
    display: none;
    width: 405px;
    height: auto;
}
.footerContact .linkContactForm {
    display: inline-block;
    margin-left: 20px;
    width: 400px;
    height: 60px;
    position: relative;
    vertical-align: bottom;
}
.footerContact .linkContactForm a {
    background-color: #86bccc;
    border-radius: 10px;
    color: #ffffff;
    position: absolute;
    top:0; left:0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.5s ease;
    font-size: 2.5rem;
    font-weight: 700;
}
.footerContact .linkContactForm a:hover {
    background: #ffffff;
    color: #86bccc;
}

.commonHeader {
    width: 800px;
    height: auto;
}





@media only screen and (max-width: 767px) {

    .logo {
        width: 180px;
    }
    .headSns {
        width: 20px;
        margin-left: 6px;
    }
    #menuBtn {
        top: 16px;
        right: 14px;
    }
    #menu {
        padding-top: 50px;
    }

    .ttl1 {
        font-size: 1.4rem;
        margin: 30px 0;
        padding: 0 16px;
        text-align: left;
    }

    .topSec01,
    .topSec02,
    .topSec03,
    #youtube-wrap1,
    #youtube-wrap2,
    #youtube-wrap3 {
        height: 200px;
    }

    .topBox h2 {
        font-size: 1.8rem;
        margin: 30px 0 14px;
    }
    .topBox p {
        text-align: left;
        padding: 0 16px;
    }

    .footerContact .imageTel {
      width: 70%;
      margin: 0 0 10px;
    }
    .footerContact .linkContactForm {
      width: 70%;
      height: 50px;
      margin: 0;
    }
    .footerContact .linkContactForm a {
        font-size: 1.8rem;
    }

}/* end @media */
