@charset "UTF-8";

* {
margin: 0;
padding: 0;
}

body {
    font-family: "Noto Sans Japanese"!important;
    color: rgb(35, 25, 22);
font-weight: 400;
margin: 0; padding: 0;
}

*:focus {
outline: none;
}

img {
    vertical-align: middle;
}
.img_wrap {
    width: 100%;
    display: block;
}
/*
.content-wrap {
    width: 100%;
    position: relative;
    display: block;
    background: #000;
    display: flex;
}
*/
#cd-main-content {
    position: relative;
    width: 100%;
    min-height: 100vh;
    height: 100%;
    overflow: hidden;
    background-color: #3a393f;
    /* slightly visible only when we resize this element */
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
    z-index: 1;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    -moz-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -js-display: flex;
    display:-webkit-box;/*--- Androidブラウザ用 ---*/
    display:-ms-flexbox;/*--- IE10 ---*/
    display: -webkit-flex;/*--- safari（PC）用 ---*/
    display:flex;
    -webkit-box-pack:justify;/*--- Androidブラウザ用 ---*/
    -ms-flex-pack:justify;/*--- IE10 ---*/
    -webkit-justify-content:space-between;/*--- safari（PC）用 ---*/
    justify-content:space-between;
}
#cd-main-content.move-out {
    -webkit-transform: scale(0.6);
    -moz-transform: scale(0.6);
    -ms-transform: scale(0.6);
    -o-transform: scale(0.6);
    transform: scale(0.6);
}
.no-js #cd-main-content {
    height: auto;
    overflow-x: auto;
    overflow-y: auto;
}
.cd-menu-trigger {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
    height: 50px;
    line-height: 50px;
    padding: 0 1em;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    font-size: 0.875rem;
    background-color: #000;
}
.cd-menu-trigger span {
    /* hamburger icon */
    position: relative;
    display: inline-block;
    width: 18px;
    height: 2px;
    background-color: white;
    vertical-align: middle;
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    transform: translateY(-2px);
}
.cd-menu-trigger span::before, .cd-menu-trigger span::after {
    content: '';
    display: inline-block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: inherit;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s;
}
.cd-menu-trigger span::before {
    top: -6px;
}
.cd-menu-trigger span::after {
    bottom: -6px;
}
.no-touch .cd-menu-trigger:hover span::before {
    top: -8px;
}
.no-touch .cd-menu-trigger:hover span::after {
    bottom: -8px;
}
#main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    height: 100%;
    background: #000;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    /* we move this element off the canvas */
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    -moz-transition-duration: 0.5s;
    transition-duration: 0.5s;
    z-index: 3;
}

#main-nav video {
    z-index: 4;
    width: 100%;
    min-height: 100vh;
    height: 100%;
    width: auto;
    height: auto;
    position: fixed;
    bottom:0;
    right:0;
}

#main-nav .ovl {
    width: 100%;
    min-height: 100vh;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    position: absolute;
    top:0;
    left: 0;
    z-index: 5;
}
#main-nav .copy {
    width: 100%;
    color: #fff;
    font-size: 12px;
    text-align: center;
    position: absolute;
    bottom:0;
    left: 0;
    right:0;
    z-index: 7;
    padding: 10px;
}

#main-nav ul {
    height: 100%;
    z-index: 6;
    position: relative;
}
#main-nav li {
    padding: 10px 0;
}
#main-nav li img {
    padding: 10px;
    margin: 0 auto;
    max-width: 16%;
    height: auto;
    margin: 0 auto;
    display: block;
}
#main-nav li a {
    position: relative;
    display: block;
    padding: 0 10%;
    height: 100%;
    color: #fff;
    font-size: 20px;
    font-size: 1.25rem;
    font-weight: bold;
}
#main-nav li a span {
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
.no-touch #main-nav li a:hover {
    background-color: #FFF;
}
#main-nav li:last-child a {
    border-bottom: none;
}
#main-nav .cd-close-menu {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #111;
    /* image replacement */
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    z-index: 7;
}
#main-nav .cd-close-menu::before, #main-nav .cd-close-menu::after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 18px;
    left: 10px;
    width: 20px;
    height: 3px;
    background-color: #fff;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
#main-nav .cd-close-menu::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
#main-nav .cd-close-menu::after {
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}
.no-touch #main-nav .cd-close-menu:hover::before {
    -webkit-transform: rotate(225deg);
    -moz-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    -o-transform: rotate(225deg);
    transform: rotate(225deg);
}
.no-touch #main-nav .cd-close-menu:hover::after {
    -webkit-transform: rotate(315deg);
    -moz-transform: rotate(315deg);
    -ms-transform: rotate(315deg);
    -o-transform: rotate(315deg);
    transform: rotate(315deg);
}
#main-nav.is-visible {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
.no-js #main-nav {
    position: static;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
.no-js #main-nav .cd-close-menu {
    display: none;
}

.cd-shadow-layer {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: visibility 0s 0.5s, opacity 0.5s 0s;
    -moz-transition: visibility 0s 0.5s, opacity 0.5s 0s;
    transition: visibility 0s 0.5s, opacity 0.5s 0s;
}
.cd-shadow-layer.is-visible {
    opacity: 1;
    visibility: visible;
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    transition-delay: 0s;
}
.cd-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    z-index: 2;
    -webkit-transition: background 0.2s;
    -moz-transition: background 0.2s;
    transition: background 0.2s;
}



.logo {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    padding: 24px 2%;
    background: #fff;
    z-index: 1000;
    width: 300px;
    height: 32px;
    display: block;
    border-radius: 180px / 65px;
    text-align: center;
    box-sizing: initial;
    -webkit-box-sizing: initial;
}
.logo a {
    display: inline-block;
}
.logo img {
    width: 180px;
    height: 36px;
}

.slide_block {
    width: 50%;
    height: 100vh;
    display: block;
}

.slide_block_right {
    width: 100%;
    height: 50vh;
    display: block;
}


.slider-for {
    width: 100%;
    height: 100vh;
    position: relative;
    display: block;
}
.slider-for01 {
    width: 100%;
    height: 100%;
    position: relative;
    display: block;
}
.slider-for02 {
    width: 100%;
    height: 100%;
    position: relative;
    display: block;
}

.slide01 {
    background-image: url(../img/top_photo/top11.jpg);
    background-position: center, center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100vh;
}
.slide02 {
    background-image: url(../img/top_photo/top04.jpg);
    background-position: center, center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100vh;
}
.slide03 {
    background-image: url(../img/top_photo/top06.jpg);
    background-position: center, center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100vh;
}
.slide04 {
    background-image: url(../img/top_photo/top10.jpg);
    background-position: center, center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100vh;
}
.slide05 {
    background-image: url(../img/top_photo/top09.jpg);
    background-position: center, center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100vh;
}
.slide06 {
    background-image: url(../img/top_photo/top12.jpg);
    background-position: center, center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100vh;
}

/* right slide */
.slide07 {
    background-image: url(../img/top_photo/top01.jpg);
    background-position: center, center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 50vh;
}
.slide08 {
    background-image: url(../img/top_photo/top02.jpg);
    background-position: center, center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 50vh;
}
.slide09 {
    background-image: url(../img/top_photo/top03.jpg);
    background-position: center, center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 50vh;
}
.slide10 {
    background-image: url(../img/top_photo/top05.jpg);
    background-position: center, center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 50vh;
}
.slide11 {
    background-image: url(../img/top_photo/top07.jpg);
    background-position: center, center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 50vh;
}
.slide12 {
    background-image: url(../img/top_photo/top08.jpg);
    background-position: center, center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 50vh;
}
.slide13 {
    background-image: url(../img/top_photo/top13.jpg);
    background-position: center, center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 50vh;
}
.slide14 {
    background-image: url(../img/top_photo/top14.jpg);
    background-position: center, center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 50vh;
}
.head_area {
    height: 50px;
    position: fixed;
    width: 98%;
    background: #fcfcfc;
    display: flex;
    padding-left: 50px;
    box-sizing: border-box;
    top: 0;
    left: 0;
    right: 0;
    align-items: center;
    z-index: 1;
}
.head_area h1 {
    display: block;
    display: inline-block;
    padding: 13px 0;
}

.head_area h1 img {
    height: 24px;
    width: 119px;
    display: block;
}
.footer {
    width: 96%;
    padding: 20px 2%;
    background-color: #fcfcfc;
    text-align: right;
}

.footer p {
    font-size: 10px;
}

.contents_wrap {
    width: 100%;
    margin: 50px auto 0 auto;
    padding: 0 0 50px 0;
    display: table;
    position: relative;
}

.contents_wrap h2 {
    font-size: 42px;
    text-align: center;
    padding: 60px 0 80px 0;
    position: relative;
    display: block;
    font-weight: 800;
}
.contents_wrap h2::after {
    content: "";
    width: 40px;
    height: 4px;
    position: absolute;
    background-color: #000;
    bottom: 46px;
    left: 0;
    right: 0;
    margin: auto;
}

.trip {
    width: 100%;
    display: table;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0 50px;
    position: relative;
    table-layout: fixed;
    max-width: 1440px;
}
.trip a {
    text-decoration: none;
}
.trip p {
    font-size: 14px;
    line-height: 2.4em;
    color: #454545;
}

.fl_l {
    float: left;
}
.fl_r {
    float: right;
    padding-left: 2%;
}

.trip_info {
    width: 48%;
    padding-top: 2%;
    padding-bottom: 2%;
    padding-right: 2%;
    display: table;
    position: relative;
    table-layout: fixed;
}

.trip_img {
    width: 48%;
    display: table;
    padding-top: 2%;
    padding-bottom: 2%;
    position: relative;
    table-layout: fixed;
}
.trip_img img {
    max-width: 100%;
    width: auto;
    height: auto;
}
.trip_img p {
    font-size: 12px;
    padding: 5px 10px;
    background-color: #000;
    color: #fff;
    margin: 0px 0 20px 0;
    display: inline-block;
    position: relative;
}
.trip_img_xl p {
    font-size: 12px;
    padding: 5px 10px;
    background-color: #000;
    color: #fff;
    margin: 0px 0 20px 0;
    display: inline-block;
    position: relative;
}
.clear {
    clear: both;
    }
.trip_img_xl {
    width: 100%;
    display: table;
    padding: 0%;
    position: relative;
    margin: 0 auto;
    table-layout: fixed;
}
.trip_img_xl img {
    max-width: 100%;
    width: auto;
    height: auto;
}
span.fw500 {
    font-weight: 400;
    padding: 0 5px;
    background-color: #000;
    color: #fff;
    font-size: 13px;
}

span.fxs {
    font-size: 12px;
    display: block;
}
span.fs {
    font-size: 14px;
    display: block;
}

/* profile */
.profile {
    width: 100%;
    display: table;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0 50px;
    position: relative;
    table-layout: fixed;
    max-width: 1440px;
}

.profile h3 {
    display: block;
    text-align: center;
    padding-top: 20px;
}
.profile h3 img {
    max-width: 300px;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
}

p.name {
    text-align: center;
    padding: 20px 0 0 0;
    font-size: 24px;
    font-weight: 500;
    position: relative;
}

p.name_info {
    text-align: center;
    padding: 60px 0;
    font-size: 13px;
    font-weight: 400;
    line-height: 3.2em;
    color: #454545;
}

.prof_inner {
    width: 100%;
    margin: 0 auto;
    display: block;
    position: relative;
    /*max-width: 960px;*/
    padding: 60px 0;
}

.prof_inner dl {
    overflow: hidden;
    zoom: 1;
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 2em;
}
.prof_inner dl dt {
    width: 100px;
    float: left;
    clear: both;
    font-weight: bold;
    padding: 20px 0 10px 0;
}
.prof_inner dl dd {
    padding: 20px 0 10px 100px;
    border-bottom: 1px dotted #999;
}

.accent {
    width: 100%;
    height: 360px;
    background-image: url(../img/gallery/30.jpg);
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
}

.record_wrap {
    width: 100%;
    margin: 0 auto;
    display: block;
    position: relative;
    /*max-width: 960px;*/
    padding: 60px 0 0 0;
}
.record_wrap h3 {
    display: block;
    font-size: 24px;
    font-weight: 600;
    position: relative;
    margin-bottom: 60px;
    line-height: 2em;
}

.record_wrap h3:after {
    content: "";
    width: 40px;
    height: 2px;
    background-color: #000;
    bottom: 5px;
    left: 0;
    right: 0;
    position: absolute;
    margin: auto;
}

.record_wrap dl {
    overflow: hidden;
    zoom: 1;
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 2em;
    width: 100%;
    display: table;
}
.record_wrap dl dt {
    width: 100px;
    float: left;
    clear: both;
    font-weight: bold;
    padding: 20px 0 10px 0;
}
.record_wrap dl dd {
    padding: 20px 0 10px 100px;
    border-bottom: 1px dotted #999;
}

.record_wrap p {
    margin-bottom: 40px;
    display: block;
}

/* media */
.media {
    width: 100%;
    display: table;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0 50px;
    position: relative;
    table-layout: fixed;
    max-width: 1440px;
}

.media h3 {
    display: block;
    padding-top: 20px;
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
    font-weight: 600;
}

.media .flex_wrap {
    width: 100%;
    justify-content: space-between;
    margin: 0 auto;
    position: relative;
    display:-webkit-box;/*--- Androidブラウザ用 ---*/
    display:-ms-flexbox;/*--- IE10 ---*/
    display: -webkit-flex;/*--- safari（PC）用 ---*/
    display:flex;
    -js-display: flex;
    -webkit-box-pack:justify;/*--- Androidブラウザ用 ---*/
    -ms-flex-pack:justify;/*--- IE10 ---*/
    -webkit-justify-content:space-between;/*--- safari（PC）用 ---*/
}

.flex_bloc_l {
    width: 48%;
    display: table;
    position: relative;
}

.flex_bloc_r {
    width: 48%;
    display: table;
    margin-top: 50px;
    position: relative;
    table-layout: fixed;
}
.media .flex_wrap img {
    max-width: 100%;
    width: auto;
    height: auto;
    padding-bottom: 40px;
}
.media ul {
    padding: 0px 0 40px 0;
    display: block;
    margin: 0 auto;
}
.media ul li {
    list-style: none;
    font-size: 13px;
    padding: 20px 0 10px 0;
    border-bottom: 1px dotted #666;
    line-height: 1.6em;
}

/* gallery */
.gallery {
    width: 100%;
    display: table;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0 50px;
    position: relative;
    table-layout: fixed;
    max-width: 1440px;
}

.grid {
    max-width: 100em;
    list-style: none;
    margin: 30px auto;
    padding: 0;
}
.grid li {
    display: block;
    float: left;
    padding: 1.65%;
    width: 30%;
    opacity: 1;
    box-sizing: initial;
    -webkit-box-sizing: initial;
}
.grid li a, .grid li img {
    outline: none;
    border: none;
    display: block;
    max-width: 100%;
}
.grid li img {
background-image: url("../img/loading.gif");
background-repeat: no-repeat;
background-position: center;
}

img.lazy {
    display: none;
}

#prevNextNav li {
    position:fixed;
    top: 50%;
}
#prevNextNav .prev {
    left: 0px;
}
#prevNextNav .next {
    right: 0px;
}
#prevNextNav a {
    border: 1px solid #000;
    padding: 4px 12px 6px 12px;
    text-decoration: none;
    color: #fff;
    background-color: #000;
    box-sizing: border-box;
    font-size: 13px;
    line-height: 1.2em;
}

/* topics */
.topics {
    width: 100%;
    display: table;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0 50px;
    position: relative;
    table-layout: fixed;
    max-width: 1440px;
}

.topics .flex_wrap {
    width: 100%;
    display: table;
    margin: 0 auto;
    position: relative;
    padding: 60px 0 40px 0;
}

.topics .flex_bloc {
    width: 48%;
    display: table;
    position: relative;
    margin-bottom: 60px;
}

.topics .flex_bloc:nth-child(odd) {
    padding-right: 2%;
    float: left;
}
.topics .flex_bloc:nth-child(even) {
    padding-left: 2%;
    float: right;
}

.topics .flex_bloc dt {
    padding: 0 0 5px 0;
    border-bottom: 1px solid #000;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 600;
}
.topics .flex_bloc dd {
    padding: 0 0 5px 0;
    margin-bottom: 0px;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.6em;
}

.accent02 {
    width: 100%;
    height: 360px;
    background-image: url(../img/gallery/69.jpg);
    background-size: cover;
    background-position: center;
}

/* sponsors */
.sponsor {
    width: 100%;
    display: table;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0 50px;
    position: relative;
    table-layout: fixed;
    max-width: 1440px;
}
.sponsor_wrap {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content:flex-start;
    align-items: center;
    position: relative;
    border-bottom: 1px solid #333;
}

.sponsor_bloc {
    width: 25%;
    display: block;
    padding: 60px 4.15%;
    position: relative;
}

.sponsor_bloc a {
    display: block;
}
.sponsor_bloc img {
    max-width: 100%;
    width: auto;
    height: auto;
    display: block;
}

.sponsor_info {
    width: 65%;
    display: block;
    position: relative;
}

.sponsor_info h3 {
    font-size: 24px;
    font-weight: 600;
    padding-bottom: 10px;
}
.sponsor_info p {
    font-size: 14px;
    font-weight: 400;
    padding-bottom: 10px;
}
.sponsor_info a {
    color: #666;
}

/* loader */
/* ローディングの背景部分のCSS */
.loader{
    background:#fff;
    height:100%;
    left:0;
    position:fixed;
    top:0;
    width:100%;
    z-index:10;
}

/* ローディングのアニメーション部分のCSS (https://projects.lukehaas.me/css-loaders/) */
.loader-animation,
.loader-animation:before,
.loader-animation:after {
    background:#000;
    -webkit-animation:load1 1s infinite ease-in-out;
    animation:load1 1s infinite ease-in-out;
    width:1em;
    height:4em;
}
.loader-animation {
    height:10px;
    left:50%;
    margin:-5px 0 0 -5px;
    position:absolute;
    top:50%;
    width:10px;
    color:#000;
    text-indent:-9999em;
    font-size:10px;
    -webkit-transform:translateZ(0);
    -ms-transform:translateZ(0);
    transform:translateZ(0);
    -webkit-animation-delay:-0.16s;
    animation-delay:-0.16s;
}
.loader-animation:before,
.loader-animation:after {
    position:absolute;
    top:0;
    content:'';
}
.loader-animation:before {
    left:-1.5em;
    -webkit-animation-delay:-0.32s;
    animation-delay:-0.32s;
}
.loader-animation:after {
    left:1.5em;
}
@-webkit-keyframes load1 {
    0%,
    80%,
    100% {
        box-shadow:0 0;
        height:4em;
    }
    40% {
        box-shadow:0 -2em;
        height:5em;
    }
}
@keyframes load1 {
    0%,
    80%,
    100% {
        box-shadow:0 0;
        height:4em;
    }
    40% {
        box-shadow:0 -2em;
        height:5em;
    }
}

.pc_none {
    display: none;
}
#zind {
    z-index: -11;
    position: fixed;
    width: auto;
    height: 120%;
}

/* school */
.school-wrap {
    width: 100%;
    display: block;
    padding: 0;
    margin: 0 auto;
    position: relative;
}

.cv-area {
    max-width: 480px;
    width: 100%;
    margin: 0px auto;
    position: relative;
    background-image: url(../img/cv-btn.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    padding: 20px;
}
.cv-area a {
    width: 100%;
    display: block;
    text-align: center;
    font-size: 2.2rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

.school-image {
    max-width: 240px;
    width: 100%;
    display: block;
    margin: 0 auto 48px auto;
}
.school-image img {
    max-width: 100%;
    width: auto;
    height: auto;
}

.instructor {
    max-width: 1440px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    background-color: #fcfcfc;
    margin: 0 auto 64px auto;
    padding: 4%;
}

.instructor .prof-img-bloc {
    width: 38%;
}
.instructor .prof-info-bloc {
    width: 60%;
}

.instructor .prof-info-bloc h3 {
    font-size: 3.6rem;
    line-height: 1.4em;
    font-weight: 900;
    padding-bottom: 24px;
    font-style: italic;
    margin-left: -10%;
}
.instructor .prof-info-bloc p {
    font-size: 2.2rem;
    line-height: 3.6rem;
    padding-bottom:36px;
    font-weight: 500;
    font-style: italic;
}
.instructor .prof-info-bloc a.prof-btn {
    font-size: .96rem;
    padding: 10px 12px;
    font-weight: bold;
    background-color: #000;
    border: 3px solid #000;
    color: #fff;
    text-align: center;
    display: inline-block;
    text-decoration: none;
    font-style: italic;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.instructor .prof-info-bloc a.prof-btn:hover {
    background-color: #fff;
    color: #000;
    border: 3px solid #000;
}

.school-outline-wrap {
    width: 100%;
    display: block;
}

.outline-image {
    width: 100%;
    display: block;
    background-image: url(../img/school-outline.jpg);
    background-position: center right;
    background-size: cover;
    height: 60vh;
}

.outline-info {
    max-width: 768px;
    width: 100%;
    margin: 0 auto;
    padding: 4%;
    display: block;
    position: relative;
}

.outline-info dl {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    position: relative;
}

.outline-info dl dt {
    width: 20%;
    font-size: 1.16rem;
    padding: 2%;
    font-weight: 600;
    background-color: #000;
    color: #fff;
    text-align: center;
    margin-bottom: 24px;
    font-style: italic;
    border-bottom: 1px solid #000;
}
.outline-info dl dd {
    width: 80%;
    padding: 2% 4%;
    font-size: 1rem;
    margin-bottom: 24px;
    font-weight: 500;
    border-bottom: 1px solid #000;
}
.outline-info dl dd h4 {
    font-size: 1.16rem;
    font-weight: 900;
    padding-bottom: 8px;
}
.outline-info dl dd p {
    font-size: .96rem;
    line-height: 1.36em;
    padding-bottom: 16px;
}

.outline-info p.notice {
    font-size: .9rem;
    font-weight: bold;
    padding-bottom: 64px;
}

.school-menu-wrap {
    width: 100%;
    display: block;
}

.menu-image {
    width: 100%;
    display: block;
    background-image: url(../img/school-menu.jpg);
    background-position: center left;
    background-size: cover;
    height: 60vh;
}

.menu-info {
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
    padding: 0 4% 4% 4%;
    display: block;
    position: relative;
}

.menu-info dl {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    position: relative;
    padding-bottom: 48px;
}

.menu-info dl dt {
    width: 30%;
    font-size: 1rem;
    padding: 2% 2% 2% 2%;
    font-weight: 600;
    text-align: center;
    margin-bottom: 24px;
    font-style: italic;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: #000;
    border-bottom: 1px solid #000;
}
/*.menu-info dl dt:after {
    content: "";
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    display: block;
    z-index: -1;
}*/
.menu-info dl dd {
    width: 70%;
    padding: 2% 4%;
    font-size: 1rem;
    margin-bottom: 24px;
    font-weight: 500;
    border-bottom: 1px solid #000;
}

.menu-info ul.step {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    position: relative;
    padding-bottom: 48px;
}
.menu-info ul.step li {
    width: 24%;
    display: block;
    position: relative;
    margin-bottom: 2%;
}
.menu-info ul.step li .step-img {
    width: 100%;
    display: block;
    position: relative;
    min-height: 0;
    margin-bottom: 8px;
}
.menu-info ul.step li p {
    font-size: .96rem;
    font-weight: bold;
}

.menu-info p.sub-title {
    font-size: 1.36rem;
    text-align: center;
    padding-bottom: 24px;
    font-weight: bold;
}
.menu-info p.info {
    font-size: 1rem;
    text-align: center;
    padding-bottom: 64px;
}

.school-reserve-wrap {
    width: 100%;
    display: block;
}

.reserve-image {
    width: 100%;
    display: block;
    background-image: url(../img/school-schedule.jpg);
    background-position: center left;
    background-size: cover;
    height: 60vh;
}

.reserve-info {
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
    padding: 0 4% 4% 4%;
    display: block;
    position: relative;
}
.reserve-info p.reserve-text {
    font-size: 1.36rem;
    text-align: center;
    padding-bottom: 36px;
}
.frame-wrap {
    width: 100%;
    display: block;
    position: relative;
}
.notice-area {
    width: 100%;
    display: block;
    padding: 0 0 48px 0;
}
.notice-area p {
    font-size: 1rem;
    line-height: 2em;
}

@media screen and (max-width:648px) {
    .pc_none {
        display: block;
    }
.sp_none {
    display: none;
}
    .slide_block {
        width: 100%;
    }
    .head_area {
        padding-left: 10px;
        }
    .footer {
        text-align: center;
    }
        /* topics */
    .topics {
        padding: 0 3%;
    }
    .accent02 {
        height: 180px;
    }
    .topics .flex_bloc:nth-child(odd) {
        padding-right: 0%;
        float: none;
    }
    .topics .flex_bloc {
        width: 100%;
        display: table;
        position: relative;
        margin-bottom: 30px;
    }
    .topics .flex_bloc:nth-child(even) {
        padding-left: 0%;
        float: none;
    }
    
    /* torip */
    .fl_l,.fl_r {
        float: none;
    }
    .fl_r {
    padding-left: 0px;
    }
    .trip {
        padding: 0 3%;
    }
    .trip_info {
        width: 100%;
        padding-right: 0%;
    }
    .trip p {
        font-size: 13px;
        line-height: 1.8em;
    }
    .trip_img {
        width: 100%;
        }
    .trip_img p {
        font-size: 12px;
        padding: 5px 10px;
        background-color: #000;
        color: #fff;
        margin: 0px 0 20px 0;
        display: inline-block;
        position: relative;
    }
    
    /* profile */
    .profile {
        padding: 0 3%;
    }
    .profile h3 img {
        max-width: 240px;
        width: auto;
        height: auto;
        display: block;
        margin: 0 auto;
    }
    p.name_info {
        text-align: center;
        padding: 30px 0 0 0;
        font-size: 13px;
        font-weight: 400;
        line-height: 2em;
        color: #454545;
    }
    .prof_inner {
        padding: 40px 0;
    }
    .prof_inner dl dt {
        width: 100%;
        float: none;
        /* clear: both; */
        font-weight: bold;
        padding: 20px 0 5px 0;
        border-bottom: 1px solid #000;
    }
    .prof_inner dl dd {
        padding: 5px 0 0px 0px;
        border-bottom: none;
        width: 100%;
        display: block;
    }
    .accent {
        width: 100%;
        height: 180px;
        background-attachment: inherit;
    }
    .record_wrap h3 {
        margin-bottom: 20px;
    }
    .record_wrap dl dt {
        width: 100%;
        float: none;
        clear: both;
        font-weight: bold;
        padding: 20px 0 5px 0;
        border-bottom: 1px solid #000;
    }
    .record_wrap dl dd {
        width: 100%;
        float: none;
        padding: 5px 0 10px 0;
        border-bottom: none;
        font-size: 12px;
    }
    
    /* gallery */
    .gallery {
        padding: 0 2%;
    }
    .grid li {
        display: block;
        float: left;
        padding: 1%;
        width: 48%;
        opacity: 1;
    }
    
    /* media */
    .media {
        padding: 0 3%;
    }
    .media .flex_wrap {
        width: 100%;
        justify-content: space-between;
        margin: 0 auto;
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: block;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        -webkit-justify-content: space-between;
    }
    .flex_bloc_l {
        width: 100%;
        display: table;
        position: relative;
    }
    .flex_bloc_r {
        width: 100%;
        display: table;
        margin-top: 30px;
        position: relative;
    }
    
    .mov,video {
        display: none;
    }
    .fat-nav .ovl {
        background-color: rgba(0,0,0,0.8);
    }
    
    /* sponsors */
    .sponsor {
        padding: 0 3%;
    }
    .sponsor_wrap {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-box;
        display: table!important;
        -ms-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        flex-wrap: nowrap;
        justify-content: none;
        align-items: center;
        position: relative;
        margin-bottom: 40px;
    }
    .sponsor_info {
        width: 100%;
        display: block;
        position: relative;
        padding-bottom: 20px;
    }
    .sponsor_bloc {
        width: 96%;
        display: block;
        padding: 0px 2% 40px 2%;
        position: relative;
    }
    .sponsor_bloc img {
        max-width: 80%;
        width: auto;
        height: auto;
        display: block;
        margin: 0 auto;
    }
    .sponsor_info h3 {
        font-size: 24px;
        font-weight: 600;
        padding-bottom: 10px;
        text-align: center;
    }
    
    #prevNextNav li {
        position:relative;
        top: 0%;
    }
    #prevNextNav .prev {
        left: 0px;
        float: left;
    }
    #prevNextNav .next {
        right: 0px;
        float: right;
    }

    /* school */
    .instructor {
        flex-flow: column;
    }
    .instructor .prof-img-bloc {
        width: 80%;
        margin: 0 auto 16px auto;
    }
    .instructor .prof-info-bloc {
        width: 100%;
    }
    .instructor .prof-info-bloc h3 {
        font-size: 2rem;
        margin: 0;
        text-align: center;
    }
    .instructor .prof-info-bloc p {
        font-size: 1.6rem;
        line-height: 1.6em;
    }
    .instructor .prof-info-bloc a.prof-btn {
        display: block;
    }
    .outline-info dl dt {
        width: 100%;
        font-size: 1rem;
        text-align: left;
        margin-bottom: 8px;
    }
    .outline-info dl dd {
        width: 100%;
        padding: 2% 2% 3% 2%;
        font-size: 0.9rem;
    }
    .cv-area {
        margin-bottom: 36px;
    }
    .cv-area a {
        font-size: 1.6rem;
    }
    .outline-image,.menu-image,.reserve-image {
        height: 40vh;
    }
    .menu-info dl dt {
        width: 100%;
        font-size: .8rem;
        padding: 2%;
        margin-bottom: 8px;
        justify-content: flex-start;
    }
    /*.menu-info dl dt:after {
        width: 40px;
        height: 40px;
    }*/
    .menu-info dl dd {
        width: 100%;
        padding: 2% 2% 4% 2%;
        font-size: .9rem;
    }
    .menu-info ul.step li {
        width: 48%;
        display: block;
        position: relative;
        margin-bottom: 4%;
    }
    .frame-wrap {
        width: 100%;
        display: block;
        position: relative;
        margin-bottom: 24px;
    }
}