@charset "utf-8";
/*!
 * base CSS
 * ---------------------------------------------
 * 共通レイアウトに関わるCSS
 *
/*



/* reset
--------------------------------------------- */

article,aside,details,figcaption,figure,footer,header,menu,nav,section,main {
    display:block;
}
article,aside,details,figcaption,figure,footer,header,menu,nav,section,main,
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
fieldset,img {
	border: 0;
}
* {
	font-size:100%;
	max-height: 999999px;
}
body {
	font: 100%/1 'Hiragino Kaku Gothic Pro', Meiryo, Arial, sans-serif;
}
h1,h2,h3,h4,h5,h6,b {
	font-weight: 600;
}
ol,ul,li {
  list-style: none;
}
ul,ol {
	letter-spacing: -.40em;
}
ul > li,ol > li {
	letter-spacing: normal;
}
img {
	display: block;
	max-width: 100%;
	height: auto;
}
*:before,*:after {
	content: "";
	display: none;
}
html {
	-webkit-text-size-adjust: 100%;
}
input,textarea,select {
	-webkit-appearance: none;
    -webkit-border-radius: 0;
}
.hiddenPc,
.brkSp {
	display: none;
}
.brkPc {
	display: block;
}

/*===================================
	font link
=====================================*/
body,
a,a:visited {
	color: #000;
}
body {
	font-size: 16px;
}
a {
	text-decoration: none;
}
a.underine {
	text-decoration: underline;
}
a.underine:hover {
	text-decoration: none;
}

/*===================================
	layout
=====================================*/
body {
    min-width: 1144px;
    background-color: #fff;
}
.inner {
	width: 1144px;
	margin-left: auto;
	margin-right: auto;
}

/*===================================
	element
=====================================*/
/*  sprite
---------------------------------*/
.logo,
.pagetop a {
	background-image: url(../images/base/sprite.png);
	background-repeat: no-repeat;
}

/*  opacity
---------------------------------*/
.mode__pc a,.mode__pc a img,.mode__pc .pagetop a,
.mode__pc input[type="submit"],.mode__pc input[type="button"] {
    transition: .3s;
}
.mode__pc a:hover img,.mode__pc .pagetop a:hover,
.mode__pc .btn a:hover,.mode__pc input[type="submit"]:hover,.mode__pc input[type="button"]:hover {
	opacity: .7;
}

/*  btn arrow
---------------------------------*/
.btn a {
	display: inline-block;
    text-decoration: none !important;
}
.arrow:before {
    content: "▶︎";
    display: inline-block;
    width: 27px;
    height: 27px;
    line-height: 27px;
    margin: -3px 5px 0 0;
    border-radius: 50%;
    background: #ffd400;
    color: #fff;
    font-size: 14px;
    text-indent: 2px;
    text-align: center;
}

/*  li
---------------------------------*/
.disc li {
    padding-left: 1em;
    text-indent: -1em;
}
.disc li:before {
    display: inline;
    content: "・";
}

/*  form
---------------------------------*/
input[type="checkbox"],input[type="button"],input[type="submit"],input[type="text"],input[type="email"],select {
    border: none;
    background: none;
}
input[type="checkbox"] + label {
    position: relative;
    padding-left: 50px;
}
input[type="checkbox"] + label:before,
input[type="checkbox"]:checked + label:after {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
}
input[type="checkbox"] + label:before {
    width: 28px;
    height: 28px;
    margin-top: -14px;
    border: solid 2px #000;
}
input[type="checkbox"]:checked + label:after {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    background: url("../images/base/checked.png") no-repeat 0 0;
}
input[type="checkbox"]:checked + label {
    font-weight: 600;
}

input[type="button"],input[type="submit"] {
    font-weight: 600;
    cursor: pointer;
}

/*===================================
	header
=====================================*/
.header {
    position: relative;
    z-index: 10000;
    height: 112px;
    background: #ffd400;
}
.sub .header {
    margin-bottom: 100px;
}
.header > p {
	position: absolute;
    top: 25px;
    left: 43px;
}
.header > p a {
	display: block;
	width: 57px;
}
.logo {
	width: 57px;
	height: 65px;
	background-position: 0 0;
}

/*  menu
---------------------------------*/
@media screen and (min-width: 661px) {
    .menu {
        margin-left: 55px;
        text-align: center;
    }
    .menu > ul > li {
        display: inline;
        position: relative;
        padding: 0 2em;
        font-size: 22px;
        line-height: 112px;
        font-weight: 500;
    }
    .menu > ul > li a:hover {
        color: #f38f1e;
    }
    .home .menu > ul > li:nth-of-type(1) > a,
    .program .menu > ul > li:nth-of-type(2) > a,
    .backNumber .menu > ul > li:nth-of-type(3) > a,
    .contact .menu > ul > li:nth-of-type(4) > a {
        color: #d81c16;
        pointer-events: none;
    }

    .menu > ul > li {
        position: relative;
    }
    .menu ul ul {
        position: absolute;
        z-index: 9999;
        top: 100%;
        left: 0;
        width: 100%;
        padding-top: 20px;
    }
    .menu li:hover ul:before {
        display: block;
        position: absolute;
        top: 5px;
        left: 50%;
        margin-left: -8px;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 8px 15px 8px;
        border-color: transparent transparent #000 transparent;
    }
    .menu ul ul li {
        overflow: hidden;
        height: 0;
        transition: .2s;
        background: #000;
        line-height: 55px;
        font-size: 22px;
    }
    .menu ul ul li a {
        color: #ffd400;
    }
    .menu li:hover ul li {
        overflow: visible;
        height: 55px;
        font-weight: normal;
    }
    .menu li:hover ul li:nth-last-of-type(1) {
        height: 60px;
    }
}

/*===================================
	footer
=====================================*/
.footer {
    height: 80px;
    background: #ffd400;
}
.sub .footer {
    margin-top: 100px;
}
.copy {
	text-align: center;
    line-height: 80px;
}
.pagetop {
    position: absolute;
    position: fixed;
    right: 48px;
    z-index: 9000;
    bottom: 109px;
    text-indent: -9999em;
}
.pagetop a {
    display: block;
    width: 82px;
    height: 84px;
    background-position: -200px 0;
    text-indent: -9999em;
}

/*===================================
    共通
=====================================*/
.sec h2 {
    width: 696px;
    margin: 0 auto 35px;
    padding: 10px;
    border-radius: 2em;
    border: solid 5px #ffbb00;
    color: #ffbb00;
    font-size: 48px;
    line-height: 1.2;
    text-align: center;
}
.hamakatsu .sec h2 {
    border-color: #c6000b;
    color: #c6000b;
}

/************************************************************************************
smaller than 660px　max-device-width
*************************************************************************************/
@media screen and (max-device-width: 660px) {

	.hiddenPc,
	.brkSp {
		display: block;
	}
	.hiddenSp,
	.brkPc {
		display: none;
	}

	/*===================================
		font
	=====================================*/

	body {
		font-size: 24px;
	}

	/*===================================
		layout
	=====================================*/
	body {
        min-width: 640px;
    }
	.inner {
		width: 640px;
	}

	/*===================================
        header
    =====================================*/
    .header {
        height: 120px;
    }
    .header > p {
        top: 21px;
        left: 30px;
    }
    .header > p a {
        width: 69px;
    }
    .logo {
        width: 69px;
        height: 78px;
        background-position: -100px 0;
    }

	/*  menu
	---------------------------------*/
	/*  menuBtn  */
    .menuBtn {
        position: absolute;
        z-index: 110;
        top: 36px;
        right: 30px;
        width: 70px;
        height: 48px;
        cursor: pointer;
    }
    .menuBtn span,.menuBtn span:before,.menuBtn span:after {
        display: block;
        position: absolute;
        left: 0;
        width: 70px;
        height: 4px;
        border-radius: 2px;
        background: #000022;
        transition: .5s;
    }
    .menuBtn span {
        top: 0;
    }
    .menuBtn span:before {
        top: 22px;
    }
    .menuBtn span:after {
        top: 44px;
    }
    .menuBtn.open,.header.fixed .menuBtn.open  {
        top: 36px;
    }
    .menuBtn.open:after {
        opacity: 0;
    }
    .menuBtn.open span {
        background: none !important;
    }
    .menuBtn.open span:before,.menuBtn.open span:after {
        top: 13px;
    }
    .menuBtn.open span:before {
        transform: rotate(45deg);
    }
    .menuBtn.open span:after {
        transform: rotate(315deg);
    }
	.menuWrap {
        display: none;
		position: fixed;
        z-index: 100;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: #ffd400;
	}
     .menuWrap > div  {
        position: relative;
        overflow-y: auto;
        height: 100%;
		min-height: 100%;
        -webkit-overflow-scrolling: touch;
        overflow-scrolling: touch;
    }
	.menu {
        padding: 120px 30px 30px;
    }
    .menu li {
        border-bottom: solid 1px #000;
    }
    .menu li a {
        display: block;
        height: 100px;
        line-height: 100px;
        padding-left: 44px;
        font-size: 30px;
        font-weight: 600;
    }
	.menu li li {
        border-bottom: none;
        border-top: dotted 1px #000;
    }
    .menu li li a {
        padding-left: 90px;
        font-weight: normal;
    }

    /*===================================
        footer
    =====================================*/
    .copy {
        font-size: 18px;
    }

    /*===================================
        共通
    =====================================*/
    .sec h2 {
        width: auto;
        margin: 0 30px 30px;
        border-width: 4px;
        font-size: 40px;
    }

}


td.location_name a {
    text-decoration: underline;
}
td.location_name a:hover {
    text-decoration: none;
}
