@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
/*
 * header
 */
/*
#news li:nth-child(n+2) {
    display: none
}
*/
/*IEで未対応の場合は以下で背景を非表示に*/
/* IE10,11用 */
html {
  font-family: "Lato", -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 {
  font-family: "Maru Folk Medium", sans-serif;
  font-weight: 700;
}

strong {
  font-family: "Maru Folk Medium", sans-serif;
  font-weight: 700;
}

.b {
  font-family: "Maru Folk Medium", sans-serif;
  font-weight: 700;
}

.strong {
  font-family: "Maru Folk Medium", sans-serif;
  font-weight: 700;
}

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;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

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

.pc {
  display: block;
}

.sp {
  display: none;
}

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: 40vw;
  max-width: 450px;
  margin: 0;
  padding-top: 1em;
}
.header .header-logo img {
  display: block;
  margin: 0;
  width: 100%;
  max-width: 450px;
}

#menu-btn {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
  cursor: pointer;
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 2em;
  margin: auto;
  width: 40px;
  height: 24px;
  z-index: 11;
}
#menu-btn span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
  cursor: pointer;
  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) {
  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) {
  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;
  list-style: none;
}
.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: 0.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: 0.3s;
  transform: translateX(-50%);
}
.navi ul li a:hover::after {
  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;
}

#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: 0.3s;
}
.modal-footer button:hover {
  color: #fff;
  background: #999;
  border: 1px solid #999;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s;
}

.openModal {
  cursor: pointer;
  color: #00a7ff;
  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: 0.3s;
}
.openModal:hover {
  color: #fff;
  background-color: #ffbe00;
  border: 1px solid #ffbe00;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s;
}

.closeModal {
  cursor: pointer;
}

.openBq {
  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 {
  position: relative;
  cursor: pointer;
  color: #ffbb00;
}
.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;
}

#top {
  margin-top: 0;
  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;
}
#news .news-title {
  display: none;
}
#news ul {
  list-style: none;
  text-align: center;
  line-height: 1em;
  margin: 0 auto;
  visibility: hidden;
}
#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 li {
  line-height: 1.5em;
  text-align: left;
}
#news a {
  color: #ffd700;
}

#news-cnt {
  display: none;
  line-height: 1em;
  margin-right: 3em;
  color: #ff5a00;
}

#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;
}

#concert_information h1 {
  margin-bottom: 30px;
  width: 100%;
  text-align: center;
  font-weight: 400;
  font-size: 2em;
  line-height: 1.5em;
}
#concert_information p {
  text-indent: 1em;
}

.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;
}

.logo-sponsor {
  color: #0059AA;
  font-weight: bold;
}

#concert_outline {
  background-color: #666;
  color: #fff;
}
#concert_outline table {
  width: 100%;
}
#concert_outline table tr {
  display: block;
  border-bottom: 1px dotted #eee;
}
#concert_outline table th {
  border: none;
  padding: 1em;
  vertical-align: top;
  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 {
  border: none;
  padding: 1em;
  vertical-align: top;
}
#concert_outline table td div.prof-with-image {
  display: flex;
  align-items: flex-start;
  margin-top: 5px;
}
#concert_outline table td div.prof-with-image figure img {
  width: auto;
  max-width: 260px;
}
#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 div.prof-with-image.vertical {
  flex-direction: column;
}
#concert_outline table td div.prof-with-image.vertical figure img {
  width: auto;
  max-width: 520px;
}
#concert_outline table td div.prof-with-image.vertical blockquote {
  margin-left: 0;
}
#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.1em;
}

#concert_outline.section h2:before {
  background-image: url(../img/toon_white.png);
}

#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;
}

#from_saito .prof-with-image {
  float: right;
  margin-bottom: 5px;
  margin-left: 2em;
  font-size: 0.8em;
  text-align: center;
}
#from_saito blockquote {
  margin: 2em auto 2em;
}
#from_saito blockquote.info {
  margin: 0 auto 2em;
  width: 80%;
  max-width: 680px;
  font-style: normal;
}
#from_saito blockquote.info p {
  width: 100%;
}
#from_saito blockquote.info p span {
  display: inline-block;
  text-align: right;
  width: 100%;
}
#from_saito .signature-box {
  display: flex;
  justify-content: space-between;
  margin-top: 1em;
}
#from_saito .signature-box .signature {
  padding-top: 2em;
  text-indent: -1em;
  text-align: right;
}

#profSaito {
  display: none;
  width: 300px;
  text-align: left;
  font-style: normal;
}

#request_form {
  background-color: #fff9b2;
}
#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.section h2:before {
  background-image: url(../img/toon_yellow.png);
}

#FormModal.modal {
  height: 460px;
  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 .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: 0.3s;
}
#ps_column .link a:hover {
  color: #fff;
  background-color: #ffbe00;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s;
}

.ouen-link {
  margin: 5em auto 0;
  width: 500px;
  text-align: center;
}
.ouen-link a {
  display: block;
  padding: 1em 0;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 1.3em;
  background-color: #3cb371;
  border-radius: 5px;
  transition: 0.3s;
}

.youtube {
  width: 100%;
  max-width: 500px;
  max-height: 315px;
  aspect-ratio: 16/9;
}
.youtube iframe {
  width: 100%;
  height: 100%;
}

#column {
  margin-top: 150px;
}
#column .ouen-link {
  margin: 5em auto 0;
}
#column h3 {
  margin-bottom: 1.6em;
}
#column ul {
  margin: 10px 0 1em;
  padding-left: 2em;
}
#column iframe {
  display: block;
  margin: 2em 0;
}
#column .fn {
  font-style: normal;
}
#column .signature-box {
  float: right;
}
#column .signature-box .signature {
  text-align: left;
  padding-top: 2em;
  text-indent: -1em;
}

#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;
  width: 100%;
  max-width: 450px;
}

#backnumber {
  background-color: #fff9b2;
}
#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;
}
#backnumber a {
  display: inline-block;
  max-width: 375px;
  margin-right: 1em;
  margin-bottom: 1em;
}
#backnumber a img {
  display: block;
  width: 100%;
}

#backnumber.section h2:before {
  background-image: url(../img/toon_yellow.png);
}

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 0.5s;
  opacity: 1;
  z-index: 10;
}
.page-menu .bn-btn {
  cursor: pointer;
  height: 1.6em;
}

.page-menu.hide {
  transform: translateY(-100%);
}

#bn-box {
  display: none;
  margin-top: 1em;
}

#bn_list {
  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%;
}

@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;
  }
  .header {
    padding: 1em;
  }
  .header .header-logo {
    width: 50vw;
    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 {
    padding: 2em 1em 3em;
  }
  .section .sec-body {
    padding: 0;
    margin: 0;
  }
  .modal {
    width: 94%;
    max-width: none;
    height: 98%;
    max-height: none;
    border-radius: 5px;
  }
  #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;
  }
  #from_saito .prof-with-image {
    float: none;
    margin: 0 auto;
    width: 100%;
  }
  #from_saito .signature-box {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
  }
  #from_saito .signature-box .signature {
    padding-top: 0;
    text-align: right;
  }
}
@media (max-width: 657px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  #concert_information h1 {
    margin-bottom: 30px;
    width: 100%;
    text-align: center;
    font-weight: 400;
    font-size: 4vw;
    line-height: 1.5em;
  }
}
@media (max-width: 600px) {
  #news {
    display: block;
    width: 100%;
    padding: 2em 1em;
  }
  #news ul .news-date {
    display: block;
    width: 100%;
  }
  #news ul .news-text {
    display: block;
    width: 100%;
    white-space: normal;
  }
  #news-cnt {
    display: block;
    width: 100%;
    margin-bottom: 1em;
    text-align: center;
  }
  #news-cnt span {
    font-feature-settings: "tnum";
  }
  #concert_information h1 {
    font-size: 5vw;
  }
  #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;
  }
  #concert_outline table td div.prof-with-image.vertical figure img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}
@media all and (-ms-high-contrast: none) {
  .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;
  }
}
@media (max-width: 756px) {
  .ouen-link {
    width: 90%;
  }
  #column .ouen-link {
    margin: 5em auto 0;
  }
}/*# sourceMappingURL=top.css.map */