* {
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    border: 0;
    font-size: 16px;
    line-height: 28px;
}
html,body {
    height:100%;
}
br{
  line-height: initial;
}


/*=================================
スライダー関連部品
==================================*/
/*めがね*/
@keyframes slide1 {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    30% {
        opacity: 1;
    }

    40% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

/*緑*/
@keyframes slide2 {
    0% {
        opacity: 0;
    }

    30% {
        opacity: 0;
    }

    40% {
        opacity: 1;
    }

    60% {
        opacity: 1;
    }

    70% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

/*地球儀*/
@keyframes slide3 {
    0% {
        opacity: 0;
    }

    60% {
        opacity: 0;
    }

    70% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/*画像ブロック*/
#mainimg {
    clear: left;
    max-width: 100%;
    height: auto;
    position: relative;
}

/*３枚画像の共通設定*/
#slide1,
#slide2,
#slide3 {
    -webkit-animation-duration: 16s;
    /*実行する時間。「s」は秒の事。*/
    animation-duration: 18s;
    /*同上*/
    -webkit-animation-iteration-count: infinite;
    /*実行する回数。「infinite」は無限に繰り返す意味。*/
    animation-iteration-count: infinite;
    /*同上*/
}

/*めがね*/
#slide1 {
    -webkit-animation-name: slide1;
    /*上で設定しているキーフレーム（keyframes）の名前*/
    animation-name: slide1;
    /*同上*/
    position: relative;
    width: 100%;
    height: auto;
}

/*緑*/
#slide2 {
    -webkit-animation-name: slide2;
    /*上で設定しているキーフレーム（keyframes）の名前*/
    animation-name: slide2;
    /*同上*/
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: auto;
}

/*地球儀*/
#slide3 {
    -webkit-animation-name: slide3;
    /*上で設定しているキーフレーム（keyframes）の名前*/
    animation-name: slide3;
    /*同上*/
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: auto;
}

/*================================================
 *  CSSリセット
 ================================================*/
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,
main,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: baseline;
    background: transparent;
    font-weight: normal;
}

body {
    line-height: 1
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block
}

ul {
    list-style: none
}

blockquote,
q {
    quotes: none
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: none
}

a {
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    background: transparent
}

del {
    text-decoration: line-through
}

abbr[title],
dfn[title] {
    border-bottom: 1px dotted;
    cursor: help
}

table {
    width:85%;
    border-collapse: collapse;
    border-spacing: 0
    margin:0 auto;    
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0
}

input,
select {
    vertical-align: middle
}

p {
    padding: 6px 5px 6px 0px;
    display: block;
}


h1 {
    border-left: 8px solid darkorange;
    padding: 3px 10px 3px 10px;
    font-size: 20px;
    color: white;
    background-color: #993300;
    margin: 10px 0 10px 0;
}

/*
h1 {
    position: relative;
    padding: 0.6em;
    background: -webkit-repeating-linear-gradient(-45deg, #fff5df, #fff5df 4px, #ffe4b1 3px, #ffe4b1 8px);
    background: repeating-linear-gradient(-45deg, #fff5df, #fff5df 4px, #ffe4b1 3px, #ffe4b1 8px);
    border-radius: 7px;
    font-size: 20px;
    font-weight: 500;
    color: #7b0000;
}

h1:after {
    position: absolute;
    content: '';
    top: 100%;
    left: 30px;
    border: 15px solid transparent;
    border-top: 15px solid #ffebbe;
    width: 0;
    height: 0;
}
*/

h2 {
    background-color: black;
    color: white;
    font-size: 18px;
    margin: 10px 0 1px 0;
    padding: 5px 2px 2px 8px;
    border-bottom: 3px solid #ff9900;


}

h3 {
    position: relative;
    padding: 0.25em 1em;
    border-top: solid 2px #993300;
    border-bottom: solid 2px #993300;
    font-weight: 600;
}

h3:before,
h3:after {
    content: '';
    position: absolute;
    top: -7px;
    width: 2px;
    height: -webkit-calc(100% + 14px);
    height: calc(100% + 14px);
    background-color: #993300;
}

h3:before {
    left: 7px;
}

h3:after {
    right: 7px;
}

.sph3 {
    position: relative;
    padding: 0.25em 1em;
    border-top: solid 2px darkorange;
    border-bottom: solid 2px darkorange;
    font-size: 14px;
    font-weight: 600;
}

.sph3:before,
.sph3:after {
    content: '';
    position: absolute;
    top: -7px;
    width: 2px;
    height: -webkit-calc(100% + 14px);
    height: calc(100% + 14px);
    background-color: darkorange;
}

.sph3:before {
    left: 7px;
}

.sph3:after {
    right: 7px;
}

h4 {
    font-size: 20px;
    font-weight: 700;
}

h5 {
    color: red;
    font-size: 28px;
}

h6 {
    color: deeppink;
    font-size: 20px;
    margin-top: 75px;
}

body {
    margin: 0;
    width: 100%;
    border-top: solid 10px red;
    font-family: メイリオ, sans-serif;
    font-size: 14px;
    line-height: 22px;
}

#wrapper {
    width: 100%;
}

.dummy {
    float: none;
    clear: both;
    width: 100%;
}

.dummy:after {
    content: "";
    clear: both;
    display: block;
}

/*  レイアウト関連 */

#header-back {
    width: 100%;
    background-color: black;
}

.header {
    width: 900px;
    padding: 15px 30px 10px 30px;
    background-color: white;
    margin: 0 auto;
    text-align: center;
}

.header:after {
    content: "";
    clear: both;
    display: block;
}

#glovalnavi-back {
    width: 100%;
    background-color: #cc6600;
}

.glovalnavi {
    background-color: #cc6600;
    width: 1100px;
    padding: 0px;
    margin: 0 auto;
}

.glovalnavi:after {
    content: "";
    clear: both;
    display: block;
}



#face-back {
    background-color: black;
    width: 100%;
}

.face {
    width: 1040px;
    vertical-align: bottom;
    margin: 0 auto;
    padding: 30px;

}
.select-lang-back{
    width:300px;
    height:30%;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    
    
}
#mainpage-back {
    width: 900px;



    background-image: url(image/back.jpg);
    background-attachment: fixed;
    background-position: center;


}

.mainpage {
    width: 900px;
    padding: 0px;
    margin: 0 auto;

}

.mainpage:after {
    content: "";
    clear: both;
    display: block;
}

.m-left {

    background-color: rgba(255, 255, 255, 0.5);
    padding: 15px;
    margin: 20px 10px 20px 20px;
    width: 280px;
    float: left;
}

.m-left p {
    font-size: 12px;
    line-height: 18px;
    margin-left: 15px;
    margin-right: 15p;
}

.m-right {
    margin: 20px 20px 20px 10px;
    padding: 33px;
    width: 660px;
    min-height: 900px;
    border: 1px solid #dddddd;
    float: left;
}

.m-right:after {
    content: "";
    clear: both;
    display: block;
}

#foot-back {
    background-color: black;
    width: 100%;
}

#foot-back:after {
    content: "";
    clear: both;
    display: block;
}

.foot {
    width: 1040px;
    margin: 0 auto;
    padding: 30px;
}


.foot h2 {
    color: white;
    background-color: black;
    border: 0px;
}

.foot p {
    color: white;
}

#header-logo {
    float: left;
}

#header-denwa {
    font-size: 14px;
    line-height: 16px;
    padding:10px;
    float: right;
}

#tel {
    margin: 5px 60px 5px 0px;
    font-size: 30px;
    line-height: 38px;
}

.glovalnavi a {
    text-decoration: none;
    color: white;
}

.glovalnavi ul,
.glovalnavi li {
    font-size: 18px;
    background-color: #cc6600;
    padding: 5px;
    list-style: none;
    line-height: 14px;
    float: left;
    text-align: center;
}

.glovalnavi li {
    width: 144px;
    border-left: solid 0px white;
}

.menu-r {
    border-right: solid 1px white;
}

.navi-s {
    font-size: 14px;
    color: darkorange;
}




.event {
    background-color: orange;
    color: white;
    font-size: 12px;
    padding: 3px;
}

.logo-img {
    width: 100%;
}

.date {
    font-size: 12px;
}

.youtube {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.youtube iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
}

.detail,
.detail li {
    margin: 0px 40px 0px 20px;
    display: block;
    font-size: 15px;
    line-height: 26px;

}
.detail:after {
    content: "";
    clear: both;
    display: block;
}



.accent01 {
    font-size: 32px;
    color: black;
    font-weight: 800;
    line-height: 40px;
    margin-left: 15px;
}

.accent01w {
    font-size: 32px;
    color: white;
    font-weight: 800;
    line-height: 40px;
    margin-left: 15px;
}

.accent02 {
    font-size: 19px;
    color: darkorange;
    line-height: 65px;
    background-color: beige;
    padding: 10px;
    border-left: solid 15px;
    border-bottom: solid 2px;

}

.accent03 {
    color: brown;
    font-size: 18px;
    font-weight: 900;
}

/*
.accent04{
    margin:0;
    color: white;
    background-color:darkorange;
    font-weight: 700;
    border-bottom: solid 2px #666666;
    font-size:16px;
    padding:3px;
    text-align: center;
}
*/

.accent04 {
    width: 100%;
    font-size: 18px;
    color: orange;
    text-align: center;
    padding: 0.25em;
    border-top: solid 2px orange;
    border-bottom: solid 2px orange;
    margin-bottom: 20px;
    line-height:60px;

}
/*
.accent05 {
    margin: 25px;
    margin-left:0px;
    font-size: 24px;

}
*/

.accent05 {
  padding: 0.25em 0.5em;/*上下 左右の余白*/
  color: black;/*文字色*/
  background: transparent;/*背景透明に*/
  border-left: solid 10px black;/*左線*/
  font-size: 18px;
}
.accent06{
  font-size: 18px;
  background: #990000; /*背景色*/
  margin-top:4px;    
  padding: 0.5em;/*文字周りの余白*/
  padding-top:3px;
  padding-bottom: 3px;    
  color: white;/*文字を白に*/
  border-radius: 0.5em;/*角の丸み*/
  width:90%;
  display:block;    
}


.menu-title {
    display: block;
    padding: 5%;
    width: 90%;
    color: white;
    background-color: black;
}
.banner {
    width:60%;
    margin-left: 50px;
    
}

.img-main {
    max-width:490px;
    width: 100%;
}
.img-50per{
    width:50%;
}
.img-30px{
    margin-top:5px;
    width:20px;
}

.m-right p {
    margin: 10px 5px 10px 5px;
}



#footer p {
    margin: 0px 10px;
    color: white;
}

.gmap {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.gmap iframe,
.gmap object,
.gmap embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mail {
    text-decoration: none;
    color: white;
}

/*  （スマホ用ナビ　変更しないでください）ここから　 */
#nav-drawer {
    position: relative;
    display: none;
}

/*チェックボックス等は非表示に*/
.nav-unshown {
    display: none;
}

/*アイコンのスペース*/
#nav-open {
    display: inline-block;
    width: 30px;
    height: 22px;
    vertical-align: middle;
    margin: 10px;
}

/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span,
#nav-open span:before,
#nav-open span:after {
    position: absolute;
    height: 3px;
    /*線の太さ*/
    width: 25px;
    /*長さ*/
    border-radius: 3px;
    background: #555;
    display: block;
    content: '';
    cursor: pointer;
}

#nav-open span:before {
    bottom: -8px;
}

#nav-open span:after {
    bottom: -16px;
}

/*閉じる用の薄黒カバー*/
#nav-close {
    display: none;
    /*はじめは隠しておく*/
    position: fixed;
    z-index: 99;
    top: 0;
    /*全体に広がるように*/
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0;
    transition: .3s ease-in-out;
}

/*中身*/
#nav-content {
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    /*最前面に*/
    width: 90%;
    /*右側に隙間を作る（閉じるカバーを表示）*/
    max-width: 330px;
    /*最大幅（調整してください）*/
    height: 100%;
    background: #cc6600;
    /*背景色*/
    transition: .3s ease-in-out;
    /*滑らかに表示*/
    -webkit-transform: translateX(-105%);
    transform: translateX(-105%);
    /*左に隠しておく*/
}

/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
    display: block;
    /*カバーを表示*/
    opacity: .5;
}

#nav-input:checked ~ #nav-content {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    /*中身を表示（右へスライド）*/
    box-shadow: 6px 0 25px rgba(0, 0, 0, .15);
}

.list-set {
    list-style-type: disc;
    margin-left: 45px;
    margin-right: 35px;
}

.list-set li {
    font-size: 15px;
    line-height: 30px;
}

table.cal {
    width: 90%;
    padding: 8px;
    border: solid 1px orange;
    border-collapse: collapse;
    margin-top: 0px;

}


table,
th,
td {
    margin: 3%;
    padding: 3px;
    font-size: 16px;
    border-collapse: collapse;
    border: 1px solid #666666;
    line-height: 1.5;
    text-align: center;
}

.title {
    background-color: red;
    text-align: center;
    color:white;
}



.smh {
    display: none;
}
.meisai {
    float:left;
    width:60%;
    height:250px;
    margin-right:5%;
    display:block;
    font-size: 15px;
    line-height: 24px;

    
}

.menu {
    float:left;
    width:38%;
    margin-left:6%;
    margin-right:6%;
    display:block;
    font-size: 13px;
    line-height: 15px;
    text-align: center;
}
.ct {
    margin: 0 auto;
    display:inline-block;
}
.rubi {
    font-size: 8px;
}

@media screen and (max-width:900px) {
    .header{
        width:96%;
        padding:2%;
    }
    .mainpage {
        width:98%;
        margin:1%;
    }
    table {
        width:95%;
        border-collapse: collapse;
        border-spacing: 0
        margin:0 auto;    
    }
}
