@charset "UTF-8";

html {
    font-family: "Maru Folk Regular", -apple-system, BlinkMacSystemFont, "游ゴシック体", YuGothic, "Yu Gothic Medium", "メイリオ", "Meiryo", 'Lucida Grande',sans-serif;
    font-feature-settings: "pkna" 1;
	font-size: 14px;
	letter-spacing: 0.05em;
	line-height: 2em;
	color: #666;
	margin: 0;
	padding: 0;
	background-color: #fff;
}
a {
    text-decoration: none;
    color: #ffbb00;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
b, strong, .b, .strong {
    font-family: "Maru Folk Medium", sans-serif;
}
blockquote {
    position: relative;
    margin: 0 auto 2em;
    padding: 10px 3em 10px 4em;
    font-style: italic;
    background: #efefef;
    color: #555;
    width: 90%;
    border-radius: 5px;
}
blockquote:before{
    display: inline-block;
    position: absolute;
    top: 18px;
    left: 15px;
    content: "\f10d";
    font-family: FontAwesome;
    color: #cfcfcf;
    font-size: 2em;
    line-height: 1;
    font-weight: 900;
}
blockquote:after{
    display: inline-block;
    position: absolute;
    bottom: 5px;
    right: 16px;
    text-align: center;
    content: "\f10e";
    font-family: FontAwesome;
    color: #cfcfcf;
    font-size: 2em;
    line-height: 1;
    font-weight: 900;
}
blockquote p {
    padding: 0;
    margin: 10px 0;
    line-height: 1.7;
}
@media (max-width: 800px) {
    blockquote {
        padding: 1em 1em 0.5em;
        width: 100%;
    }
    blockquote:before{
        display: block;
        position: absolute;
        top: 10px;
        left: 1em;
        content: "\f10d";
        font-family: FontAwesome;
        color: #cfcfcf;
        font-size: 1em;
        line-height: 1;
        font-weight: 900;
    }
    blockquote:after{
        display: block;
        position: absolute;
        bottom: 10px;
        right: 1em;
        text-align: center;
        content: "\f10e";
        font-family: FontAwesome;
        color: #cfcfcf;
        font-size: 1em;
        line-height: 1;
        font-weight: 900;
    }
}

.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}
.text-center {
    text-align: center;
}
.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}


/*
 * header
 */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}
.header {
    position: relative;
    display: table;
    table-layout: fixed;
    width: 100%;
    padding: 1em;
    border-bottom: 1px solid #999;
    background-color: #fff;
    z-index: 11;
}
.header .header-logo {
    display: table-cell;
    width: calc(100vw * 0.40);
    max-width: 450px;
    margin: 0;
    padding-top: 1em;
}
.header .header-logo img {
    display: block;
    margin: 0;
    width: 100%;
    max-width: 450px;
}

#menu-btn,#menu-btn span {
	display:inline-block;
	transition:all .4s;
	box-sizing:border-box;
	cursor:pointer;
}
#menu-btn {
    display: none;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 2em;
    margin: auto;
	width:40px;
	height:24px;
    z-index: 11;
}
#menu-btn span {
	position:absolute;
	left:0;
	right: 0;
	width:100%;
	height:2px;
	background-color:#666;
	border-radius:2px;
}
#menu-btn span:nth-of-type(1) {
	top:0;
}
#menu-btn span:nth-of-type(2) {
	top:11px;
}
#menu-btn span:nth-of-type(3) {
	bottom:0;
}
#menu-btn.on span:nth-of-type(1) {
	-webkit-transform:translateY(11px) rotate(-315deg);
	transform:translateY(11px) rotate(-315deg);
	background-color: #666;
}
#menu-btn.on span:nth-of-type(2) {
	opacity:0;
	background-color: #666;
}
#menu-btn.on span:nth-of-type(3) {
	-webkit-transform:translateY(-11px) rotate(315deg);
	transform:translateY(-11px) rotate(315deg);
	background-color: #666;
}

.navi {
    position: relative;
    display: table-cell;
    margin: 0;
    padding: 5px 0 0;
    vertical-align: middle;
    text-align: right;
    font-size: 0.9em;
}
.navi ul {
    position: relative;
    top: auto;
    right: 1em;
/*     float: right; */
    list-style: none;
/*     display: table; */
}
.navi ul li {
    display: table-cell;
    display: inline;
    text-align: center;
    padding: 3px 5px;
}
.navi ul li a {
	position: relative;
	padding: 0.1em 0.3em 0.3em;
	display: inline-block;
	transition: .3s;
	font-weight: 400;
	line-height: 1.2em;
	color: #333;
}
.navi ul li a::after {
	position: absolute;
	bottom: 0;
	left: 50%;
	content: '';
	width: 0;
	height: 1px;
	background-color: #ffbb00;
	transition: .3s;
	transform: translateX(-50%);
}
.navi ul li a:hover::after {
	width: 100%;
}
@media (max-width: 800px) {
    .header {
        padding: 1em;
    }
    .header .header-logo {
        width: calc(100vw * 0.5);
        max-width: 300px;
        margin: 0;
        padding-top: 1em;
    }
    .header .header-logo img {
        width: 100%;
        max-width: 300px;
    }
    #menu-btn {
        display: block;
    }
    .navi {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #fff;
    }
    .navi ul {
        width: 100%;
    }
    .navi ul li {
        display: block;
        width: 100%;
    }
}


.section {
    display: block;
	width: 100%;
	padding: 12em 2em 15em;
}
.section h2 {
    position: relative;
    margin-bottom: 2em;
    font-size: 1.6em;
    font-family: "Maru Folk Medium", sans-serif;
}
.section h2:before {
    display: inline-block;
    margin-right: 1em;
    content: '';
    width: 1.2em;
    height: 1.2em;
    background-image: url(../img/toon_gray.png);
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: top;
}
.section .sec-body {
    position: relative;
    display: block;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 1em;
}
.section .sec-body p {
    margin-bottom: 1.6em;
}
@media (max-width: 800px) {
    .section {
    	padding: 2em 1em 3em;
    }
    .section .sec-body {
        padding: 0;
    }
}

#modal-bg {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 15;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}
.modal {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  width: 50%;
  max-width: 600px;
  height: 50%;
  max-height: 480px;
  margin: auto;
  background: #fff;
  border-radius: 10px;
}
.modal-header {
    padding: 0 1em 1em;
    background-color: rgba(235, 235, 235, 0.8);
    border-radius: 10px 10px 0 0;
    border-bottom: 1px solid #ccc;
}
.modal-header .closeModal {
    text-align: right;
    font-size: 2em;
    color: #aaa;
}
.modal-body {
    padding: 1em;
    overflow-y: auto;
}
.modal-footer {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 1em;
    text-align: right;
    background-color: rgba(235, 235, 235, 0.8);
    border-radius: 0 0 10px 10px;
    border-top: 1px solid #ccc;
}
.modal-footer button {
	position: relative;
	float: right;
    display: block;
    padding: 5px 2em;
    border-radius: 5px;
	text-align: center;
	text-decoration: none;
	color: #aaa;
    background-color: #efefef;
    border: 1px solid #efefef;
	font-size: 1em;
	transition: .3s;
}
.modal-footer button:hover {
	color: #fff;
    background: #999;
    border: 1px solid #999;
    cursor: pointer;
    text-decoration: none;
	transition: .3s;
}
.openModal {
    cursor: pointer;
    color: #00a7ff;
}
.closeModal {
    cursor: pointer;
}
.openBq, .closeBq {
    position: relative;
    cursor: pointer;
    color: #ffbb00;
}
.openBq:after{
    display: inline-block;
    position: absolute;
    bottom: 0;
    text-align: center;
    content: "\f107";
    font-family: FontAwesome;
    color: #ffbb00;
    line-height: 1;
    margin-left: 5px;
}
.closeBq:after{
    display: inline-block;
    position: absolute;
    bottom: 0;
    text-align: center;
    content: "\f106";
    font-family: FontAwesome;
    color: #ffbb00;
    line-height: 1;
    margin-left: 5px;
}
@media (max-width: 800px) {
    .modal {
      width: 94%;
      max-width: none;
      height: 98%;
      max-height: none;
      border-radius: 5px;
    }
}

#top {
    margin-top: 100px;
    height: 580px;
    background-image: url(../img/senphil_bg.jpg);
    background-position: center center;
    background-size: cover;
}

#news {
    padding: 2rem 0;
    background-color: #000;
    font-size: 1em;
    font-weight: 300;

/*
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
	display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
	justify-content: center;
*/
}
#news .news-title {
    display: none;
}
#news-cnt {
    display: none;
    line-height: 1em;
    margin-right: 3em;
    color: #ff5a00;
}
#news ul {
    list-style: none;
    text-align: center;
    line-height: 1em;
    margin: 0 auto;
    visibility: hidden;
}
#news li {
    line-height: 1.5em;
    text-align: left;
}
/*
#news li:nth-child(n+2) {
    display: none
}
*/
#news ul li .news-date {
    display: inline-block;
    color: #fff;
    white-space: nowrap;
    padding-right: 1em;
}
#news ul li .news-text {
    display: inline-block;
}
#news a {
    color: #ffd700;
}
#ticker {
    display: none;
    min-width: 500px;
    height: 2em;
    line-height: 1em;
    position: relative;
    overflow: hidden;
}
#ticker p {
    position: absolute;
}
#ticker .news-date {
    display: inline-block;
    margin-right: 1em;
    color: #fff;
    white-space: nowrap;
}
#ticker .news-text {
    display: inline-block;
    white-space: normal;
}
#ticker a {
    color: #ffd700;
}
@media (max-width: 600px) {
    #news {
        display: block;
        width: 100%;
        padding: 2em 1em;
    }
    #news-cnt {
        display: block;
        width: 100%;
        margin-bottom: 1em;
        text-align: center;
    }
    #news-cnt span {
        font-feature-settings: "tnum";
    }
    #news ul .news-date {
        display: block;
        width: 100%;
    }
    #news ul .news-text {
        display: block;
        width: 100%;
        white-space: normal;
    }
}

#concert_information h1,
#concert_information2 h1 {
	margin-bottom: 30px;
	width: 100%;
	text-align: center;
	font-weight: 400;
	font-size: 2em;
	line-height: 1.5em;
}
.logo-color1 {
    display: inline-block;
    background: linear-gradient(90deg, #666, #f00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.logo-color2 {
    display: inline-block;
    background: linear-gradient(90deg, #666, #FFC200);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.logo-color3 {
    display: inline-block;
    background: linear-gradient(90deg, #666, #00AFFF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
/*IEで未対応の場合は以下で背景を非表示に*/
@media all and (-ms-high-contrast: none) { /* IE10,11用 */
    .logo-color1 {
        background: none;
        color: #FF0000;
    }
    .logo-color1::first-letter {
        color: #666;
    }
    .logo-color2 {
        background: none;
        color: #FFC200;
    }
    .logo-color2::first-letter {
        color: #666;
    }
    .logo-color3 {
        background: none;
        color: #00AFFF;
    }
    .logo-color3::first-letter {
        color: #666;
    }
}
.logo-kddi {
    color: #05277E;
}

#concert_outline {
    background-color: #666;
    color: #fff;
}
#concert_outline.section h2:before {
    background-image: url(../img/toon_white.png);
}
#concert_outline table {
    width: 100%;
}
#concert_outline table tr {
    display: block;
	border-bottom: 1px dotted #eee;
}
#concert_outline table th,
#concert_outline table td {
	border: none;
	padding: 1em;
	vertical-align: top;
}
#concert_outline table th {
	white-space: nowrap;
	text-align: right;
	font-family: "Maru Folk Medium", sans-serif;
	width: 9em;
	padding-right: 2em;
	color: #ffd700;
}
#concert_outline table th span {
    display: none;
}
#concert_outline table td div.prof-with-image {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
	display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
	align-items: flex-start;
	margin-top: 5px;
}
#concert_outline table td div.prof-with-image figure {
}
#concert_outline table td div.prof-with-image blockquote {
    display: none;
    margin-left: 1em;
	font-size: 0.8em;
	font-style: normal;
}
#concert_outline table td .contact-t {
    display: inline-block;
    width: 16em;
}
#concert_outline table td .contact-b:before {
    display: inline-block;
    content: "\f098";
    font-family: FontAwesome;
    color: #ffbb00;
    padding-right: 3px;
}
#concert_outline table .title {
    font-size: 1.2em;
}
#profSendaiphil {
    display: none;
	font-size: 0.8em;
	font-style: normal;
}
#measures {
    margin-top: 2em;
    background: #fafafa;
    color: #555;
    border-radius: 5px;
    padding: 10px 2em 10px 2em;
}
#measures h3 {
    font-family: "Maru Folk Medium", -apple-system, BlinkMacSystemFont, "游ゴシック体", YuGothic, "Yu Gothic Medium", "メイリオ", "Meiryo", 'Lucida Grande',sans-serif;
    color: #ff3333;
    font-weight: bold;
    margin-top: 1em;
    margin-bottom: 1em;
}
#measures p {
    margin-bottom: 1em;
}
#measures ul {
    margin-left: 2em;
    margin-bottom: 1em;
}
@media (max-width: 800px) {
    #concert_outline table th {
        display: block;
        padding: 0.5em 0 0;
        width: 100%;
        text-align: left;
    }
    #concert_outline table td {
        display: block;
        padding: 0.5em 0;
    }
    #measures ul li {
        padding-bottom: 0.5em;
        line-height: 1.4em;
    }

}
@media (max-width: 600px) {
    #concert_outline table td .contact-t {
        display: block;
        width: 100%;
    }

    #concert_outline table td div.prof-with-image {
    	display: block;
        width: 100%;
    }
    #concert_outline table td div.prof-with-image figure {
    	display: block;
        width: 100%;
        text-align: center;
    }
    #concert_outline table td div.prof-with-image img {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    #concert_outline table td div.prof-with-image blockquote {
        margin-left: 0;
    }
}

#from_saito .prof-with-image {
	float: right;
	margin-bottom: 5px;
	margin-left: 2em;
	font-size: 0.8em;
	text-align: center;
}
#profSaito {
    display: none;
    width: 300px;
    text-align: left;
	font-style: normal;
}
#from_saito blockquote {
    margin: 2em auto 2em;
}
#from_saito blockquote.info {
    margin: 0 auto 2em;
}
#from_saito blockquote.info p {
    width: 100%;
    max-width: 480px;
}
#from_saito blockquote.info p span {
    display: inline-block;
    text-align: right;
    width: 100%;
}
@media (max-width: 800px) {
    #from_saito .prof-with-image {
    	float: none;
    	margin: 0 auto;
        width: 100%;
    }
}

#request_form {
    background-color: #fff9b2;
}
#request_form.section h2:before {
    background-image: url(../img/toon_yellow.png);
}
#request_form .reqmsg {
    display: block;
    text-align: center;
    margin: 3em;
}
#request_form .reqmsg .catch {
    margin-bottom: 2em;
    font-size: 2.4em;
    line-height: 1.3em;
    letter-spacing: 0.1em;
}
#request_form .reqmsg .catch span {
    color: #FFC632;
}
#request_form .openModal {
	position: relative;
    display: block;
    margin: 2em auto 0;
    padding: 0.8em 2em;
    border-radius: 5px;
	text-align: center;
	text-decoration: none;
	color: #fff;
    background-color: #ff9e00;
    border: 1px solid #ff9e00;
	font-size: 1em;
	transition: .3s;
}
#request_form .openModal:hover {
	color: #fff;
    background-color: #ffbe00;
    border: 1px solid #ffbe00;
    cursor: pointer;
    text-decoration: none;
	transition: .3s;
}

#FormModal.modal {
  height: 560px;
  max-height: 560px;
}
#FormModal.modal .modal-body {
	height: 410px;
}
#FormModal.modal iframe {
	width: 100%;
	height: 378px;
	overflow-y: auto;
}

#ps_column {
    background-color: #fbfbfb;
}
#ps_column .u-date {
/*     font-family: "Maru Folk Medium", sans-serif; */
/*     text-align: right; */
}
#ps_column .title {
    font-size: 1.5em;
    margin-bottom: 2em;
    line-height: 1.3em;
}
#ps_column .title span {
    color: #FFC632;
}
#ps_column .link {
    text-align: right;
    padding-right: 1em;
}
#ps_column .link a {
    padding: 0.2em 2em;
	text-align: center;
	color: #fff;
	font-weight: 300;
    background-color: #ff9e00;
	transition: .3s;
}
#ps_column .link a:hover {
	color: #fff;
    background-color: #ffbe00;
    cursor: pointer;
    text-decoration: none;
	transition: .3s;
}

#ganbare_sendai_phil .catch {
    font-size: 2.4em;
    margin-top: 1em;
    margin-bottom: 1.6em;
}
#ganbare_sendai_phil .catch span {
    color: #FFC632;
}
#ganbare_sendai_phil img {
    display: block;
    margin: 0 auto;
}

#backnumber {
    background-color: #fff9b2;
}
#backnumber.section h2:before {
    background-image: url(../img/toon_yellow.png);
}
#backnumber .history {
    position: relative;
    margin-left: 1em;
}
#backnumber .history:before {
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0 1em;
    content: '';
    width: 4px;
    height: 96%;
    background-image: url(../img/line.png);
    background-size: contain;
    background-repeat: repeat-y;
}
#backnumber .history .years {
    margin-bottom: 1em;
    padding: 0.2em 1em;
}
#backnumber .history .years .nendo {
    position: relative;
    display: table-cell;
    vertical-align: top;
    padding-left: 1em;
}
#backnumber .history .years .nendo span {
    position: absolute;
    top: 10px;
    left: 0;
    display: block;
    width: 10px;
    height: 100%;
    background-color: #FFF9B2;
    z-index: 1;
}
#backnumber .history .years .nendo:before {
    display: inline-block;
    position: absolute;
    top: 5px;
    left: -5px;
    content: '';
    width: 14px;
    height: 14px;
    background-color: #ffd700;
    border-radius: 10px;
    z-index: 2;
}
#backnumber .history .years .inner-box {
    display: table-cell;
    padding-left: 2em;
}
#backnumber .history .years .title {
    display: block;
}
#backnumber .history .years .title a {
    display: inline-block;
    margin-left: 1em;
    padding: 3px 5px;
    background-color: #ff9e00;
    border-radius: 5px;
    color: #fff;
    line-height: 1em;
}
#backnumber .history .years .content {
    display: table;
    padding: 0 1em;
}
#backnumber .history .his-title {
    display: table-cell;
    width: 6em;
    color: #ff9e00;
    text-align: right;
    padding-right: 2em;
    font-family: "Maru Folk Medium", sans-serif;
}
#backnumber .history .his-item {
    display: table-cell;
}
@media (max-width: 800px) {
}

#backnumber a {
    display: inline-block;
    max-width: 375px;
    margin-right: 1em;
    margin-bottom: 1em;
}
#backnumber a img {
    display: block;
    width: 100%;
}

footer {
    padding: 2em 0;
    width: 100%;
    text-align: center;
    color: #FFBB00;
    background-color: #666;
}

#go_top {
	position: fixed;
	display: block;
	right: 20px;
	bottom: 30px;
	z-index: 100;
	text-align: center;
}
#go_top i {
    font-size: 48px;
}


.page-menu {
    position: relative;
    margin: 0;
    padding: 1em 2em;
    max-height: 70vh;
    font-size: 0.9em;
    background-color: #fff;
    transition: all .5s;
    opacity: 1;
    z-index: 10;
}
.page-menu.hide {
    transform: translateY(-100%);
}
.page-menu .bn-btn {
    cursor: pointer;
    height: 1.6em;
}
#bn-box {
    display: none;
    margin-top: 1em;
}
#bn_list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    max-height: calc(70vh - 3em);
    overflow-y: scroll;
    list-style: none;
}
#bn_list li {
    width: 15em;
    margin: 0 2em 1em 1em;
    line-height: 1.4em;
}
#bn_list li a {
    display: block;
    white-space:nowrap;
    width: 100%;
}
#bn_list li span {
    display: block;
    white-space:nowrap;
    width: 100%;
}

#column {
    margin-top: 150px;
}
#column ul {
    margin: 10px 0 1em;
    padding-left: 2em;
}
#column iframe {
    display: block;
    margin: 2em 0;
}