@charset "UTF-8";
/* 
Theme Name:safari-P
*/
/* 赤 */
/* 赤 */
/* 赤 */
/* 赤 */
/* グレー */
/* グレー */
/****** Elad Shechter's RESET *******/
/*** box sizing border-box for all elements ***/
@import url("https://fonts.googleapis.com/css2?family=Kiwi+Maru:wght@300;400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Questrial&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

button {
  background-color: transparent;
  color: inherit;
  border-width: 0;
  padding: 0;
  cursor: pointer;
}

figure {
  margin: 0;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
  margin: 0;
}

ul, ol, dl, dd {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

p {
  margin: 0;
}

cite {
  font-style: normal;
}

fieldset {
  border-width: 0;
  padding: 0;
  margin: 0;
}

table {
  border-collapse: collapse;
}

/*
丸ゴシ：font-family: 'Kiwi Maru', sans-serif;
ゴシ：font-family: 'Noto Sans JP', sans-serif;
明朝：font-family: 'Noto Serif JP', serif;
英文字1：font-family: 'Century Gothic', serif;
英文字2：font-family: 'Questrial', monospace, serif;
*/
/* ------------------------------------
// base
------------------------------------ */
html {
  font-size: 62.5%;
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6041666667vw;
  }
}

body {
  background: #FFFFFF;
  color: #242321;
  font-family: "Century Gothic", "Kiwi Maru", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.6;
  margin: 0;
}

.fontJpKi {
  font-family: "Kiwi Maru", serif;
}

.fontJpSu {
  font-family: "Noto Sans JP", sans-serif;
}

.fontJpSe {
  font-family: "Noto Serif JP", serif;
}

.fontEn01 {
  font-family: "Century Gothic", sans-serif;
}

.fontEn02 {
  font-family: "Questrial", sans-serif;
}

#wrapper {
  position: relative;
}

a {
  outline: none;
}
a:link {
  color: #325A8C;
  text-decoration: none;
}
a:visited {
  color: #325A8C;
  text-decoration: none;
}
a:hover {
  color: #325A8C;
  text-decoration: underline;
}
a:hover img {
  transition: 0.3s;
  opacity: 0.8;
}
a:active {
  color: #325A8C;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a[href*="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  a[href*="tel:"] {
    pointer-events: initial;
  }
}

.pc {
  display: block !important;
}

.sp, .md {
  display: none !important;
}

@media screen and (max-width: 1024px) {
  .pc {
    display: none !important;
  }
  .md {
    display: block !important;
  }
}
@media screen and (max-width: 767px) {
  .sp {
    display: block !important;
  }
  .pc-md {
    display: none !important;
  }
  p {
    word-break: break-all;
  }
}
/* ------------------------------------
// menu

----------------------------------- */
#menu {
  visibility: hidden;
  opacity: 0;
  transform: translateX(-100%);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 20;
  transition: visibility 0.3s, opacity 0.3s, transform 0.1s linear 0.3s;
  overflow-y: auto;
  background: #CCC;
  padding: 2rem;
}
#menu a {
  color: #555;
}
#menu > div {
  width: auto;
  margin: 0 auto;
}
.js-menuOpen #menu {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
  transition: visibility 0.3s, opacity 0.3s, transform 0s;
}
@media screen and (max-width: 767px) {
  #menu .mainmenu > li {
    margin-bottom: 2rem;
  }
  #menu .mainmenu > li a {
    font-size: 1.6rem;
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
  }
  #menu .mainmenu .submenu {
    padding-left: 2rem;
  }
  #menu .mainmenu .submenu li a {
    font-weight: normal;
  }
}

/* ------------------------------------
// header
----------------------------------- */
#header {
  background: #FFF;
  margin: 0 auto;
  position: relative;
  padding: 0 5%;
}
#header header {
  padding: 50px 0 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header header a {
  color: #bcbcbc;
}
#header header .logo {
  font-size: 3rem;
  font-weight: bold;
}
#header header nav > ul {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px 10px;
  margin-bottom: 10px;
}
#header header nav > ul > li {
  padding-right: 1.5rem;
  position: relative;
  font-size: 1.8rem;
}
#header header nav > ul > li ul.submenu {
  display: none;
}
#header header nav > ul > li ul.submenu.open {
  animation-name: fadein;
  animation-duration: 1s;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  background: #bcbcbc;
  padding: 15px 20px;
  z-index: 100;
}
#header header nav > ul > li ul.submenu.open a {
  color: #FFF;
  white-space: nowrap;
}
#header header nav > ul > li ul.submenu.open li {
  margin-bottom: 5px;
}
#header header nav > ul > li.parent > a {
  display: block;
}
#header header nav > ul > li.parent > a:after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border: 2px solid;
  border-color: #bcbcbc #bcbcbc transparent transparent;
  margin-left: 0.2em;
  transform: rotate(135deg) translateX(-50%);
}
#header .btn_menu {
  display: none;
}
@media screen and (max-width: 1024px) {
  #header header {
    display: block;
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  #header header {
    padding: 2rem;
  }
  #header nav {
    display: none;
  }
  .js-menuOpen #header .btn_menu > span {
    background: #FFF;
  }
  .js-menuOpen #header .btn_menu > span:nth-child(1) {
    top: 44%;
    transform: rotate(45deg);
  }
  .js-menuOpen #header .btn_menu > span:nth-child(2) {
    opacity: 0;
    transform: rotate(135deg);
  }
  .js-menuOpen #header .btn_menu > span:nth-child(3) {
    bottom: auto;
    top: 44%;
    transform: rotate(-45deg);
  }
  #header .btn_menu {
    display: block;
    position: absolute;
    right: 2.2rem;
    top: 2.8rem;
    z-index: 100;
    width: 3.6rem;
    height: 2.5rem;
    cursor: pointer;
  }
  #header .btn_menu > span {
    transition: transform 0.2s, opacity 0.1s, background-color 0.2s;
    position: absolute;
    left: 0;
    display: block;
    width: 3.5rem;
    height: 0.5rem;
    background: #bcbcbc;
  }
  #header .btn_menu > span:nth-child(1) {
    top: 0;
  }
  #header .btn_menu > span:nth-child(2) {
    top: 40%;
  }
  #header .btn_menu > span:nth-child(3) {
    bottom: 0;
  }
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* ------------------------------------
// main
----------------------------------- */
main article {
  margin: 0 auto 100px;
  padding: 0 5%;
  font-size: 1.6rem;
}
main article section {
  margin: 5rem 0 100px;
}
@media screen and (max-width: 1024px) {
  main article {
    padding: 0 2rem;
  }
  main article section {
    margin-bottom: 5rem;
  }
  main article section:last-child {
    margin-bottom: 0;
  }
  main article section > section {
    margin: 5rem 0;
  }
}

/* ------------------------------------
// footer
----------------------------------- */
#pagetop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 5;
}
#pagetop a {
  background: #B2B2B2;
  display: inline-block;
  width: 40px;
  height: 40px;
  position: relative;
}
#pagetop a span {
  position: absolute;
  top: 15px;
  left: 12.5px;
  display: block;
  width: 15px;
  height: 15px;
  border: 3px solid;
  border-color: #565656 #565656 transparent transparent;
  transform: rotate(-45deg);
  transition: 0.3s;
}
#pagetop a:hover span {
  border-color: #FFF #FFF transparent transparent;
}

#footer {
  background: #ededed;
  padding: 60px 0;
}
#footer footer {
  padding: 0 5%;
  margin: 0 auto;
}
#footer footer h2 {
  font-size: 2.4rem;
  margin-bottom: 30px;
}
#footer footer > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0 2%;
}
#footer footer > ul > li {
  background: #FFF;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.7);
  width: 23%;
  padding: 2rem;
  margin-bottom: 20px;
}
#footer footer > ul > li > a {
  font-weight: 300;
  font-size: 1.8rem;
  color: #000000;
}
#footer footer > ul > li > ul {
  margin-top: 15px;
}
#footer footer > ul > li > ul a {
  padding-left: 1em;
  text-indent: -1em;
  display: inline-block;
  color: #000000;
  font-size: 1.6rem;
}
#footer footer > ul > li > ul a:before {
  content: "－";
}
#footer footer .copyright {
  padding: 2em 0 0 0;
  border-top: 1px solid #B2B2B2;
}
@media screen and (max-width: 1024px) {
  #footer {
    padding: 60px 1em;
  }
  #footer footer > ul > li {
    width: 48%;
  }
  #footer footer > ul > li.workshop {
    width: 100%;
  }
  #footer footer > ul > li.blog {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  #footer footer > ul > li.english {
    width: 100%;
  }
}

/* ------------------------------------
// content structure
----------------------------------- */
/* ------------------------------------
// base parts
----------------------------------- */
#vi {
  text-align: center;
}

/* ------------------------------------
// snsbox
----------------------------------- */
.snsbox {
  padding: 0 5%;
}
.snsbox section {
  display: flex;
  gap: 20px;
}
.snsbox h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}
.snsbox ul {
  margin-bottom: 40px;
}
.snsbox ul li {
  display: inline-block;
  margin-right: 5px;
}
.snsbox ul li a {
  color: #555555;
  background: #F2F2F2;
  border-radius: 10px;
  padding: 1em;
  line-height: 1;
  transition: 0.5s;
}
.snsbox ul li a span.name {
  display: none;
}
.snsbox ul li a:hover {
  color: #FFF;
}
.snsbox ul li a.facebook:hover {
  background: #1877f2;
}
.snsbox ul li a.twitter:hover {
  background: #1DA1F2;
}

@media screen and (max-width: 1024px) {
  .snsbox {
    padding: 0 2rem;
  }
}
/* ------------------------------------
// heading
----------------------------------- */
main .htype01 {
  padding: 4rem 0 4rem 0;
  font-size: 2.4rem;
  line-height: 1.4;
  position: relative;
}
main .htype01 span.sub {
  font-size: 1.8rem;
  display: block;
}
main .htype02 {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  position: relative;
  margin-bottom: 2rem;
}
main .htype03 {
  font-size: 2.4rem;
  margin-bottom: 2rem;
}
main .htype04 {
  font-size: 1.8rem;
  text-decoration: underline;
}
main .htype06 {
  font-size: 2.8rem;
  line-height: 1.4;
  position: relative;
  margin-bottom: 4rem;
}
main .htype05 {
  background: #4B4B4B;
  color: #FFF;
  font-size: 1.8rem;
  padding: 5px 1rem;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  main .htype01 {
    margin-bottom: 2.5rem;
  }
}

/* ------------------------------------
// text
----------------------------------- */
main p {
  line-height: 1.6;
  margin-bottom: 20px;
}
main p:last-child {
  margin-bottom: 0;
}
main a:hover {
  text-decoration: underline;
}
main .txt_G {
  color: #5c8d89;
}
main .txt_B {
  color: #2b3288;
}
main .txt_R {
  color: #e95180;
}
main .lead01 {
  font-size: 4.8rem;
  margin-bottom: 2rem;
}
main .lead02 {
  font-size: 3.6rem;
  margin-bottom: 2rem;
}
main .lead03 {
  font-size: 2.4rem;
  margin-bottom: 2rem;
}
main .lead04 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
main .mb1em {
  margin-bottom: 1em;
}
main .mb2em {
  margin-bottom: 2em;
}
main .mb3em {
  margin-bottom: 3em;
}
main .mb4em {
  margin-bottom: 4em;
}
main .mb5em {
  margin-bottom: 5em;
}
main .torikeshi {
  text-decoration: line-through;
}
main .topLine01 {
  padding: 2rem 0 0 0;
  margin: 2rem 0 0 0;
  border-top: 1px solid #bcbcbc;
}
main .topLine02 {
  padding: 4rem 0 0 0;
  margin: 4rem 0 0 0;
  border-top: 4px solid #CCC;
}

/* ------------------------------------
// list
----------------------------------- */
main ol.num01 {
  counter-reset: num01;
}
main ol.num01 li {
  position: relative;
  padding-left: 1.5em;
}
main ol.num01 li::before {
  content: counter(num01);
  counter-increment: num01;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 1.5em;
  height: 1.5em;
  background: #5c8d89;
  color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 100%;
  font-size: 1.2rem;
  line-height: 1;
  transform: translateY(30%);
  padding-top: 0.1em;
}
main ul.list_dot01 li {
  padding-left: 1rem;
  text-indent: -1rem;
}
main ul.list_dot01 li:before {
  content: "・";
}
main ul.ullist01 li {
  margin-bottom: 10px;
}
main dl.dltype01 {
  margin-bottom: 30px;
}
main dl.dltype01 dt {
  font-weight: bold;
  margin-bottom: 5px;
}
main dl.dltype01 dd {
  margin-bottom: 30px;
}
main dl.dltype02 {
  margin: 50px 0;
}
main dl.dltype02 dt {
  font-weight: bold;
  margin-bottom: 10px;
}
main dl.dltype02 dd {
  margin-bottom: 5px;
}
main dl.dltype03 {
  margin-bottom: 30px;
}
main dl.dltype03 dt {
  font-weight: normal;
}
main dl.dltype03 dd {
  padding-left: 1em;
  margin-bottom: 5px;
}
main ul.mark20231005 {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
}
main ul.mark20231005 li {
  max-width: 150px;
}

/* ------------------------------------
// notice
----------------------------------- */
main .colorbox01 {
  background: rgb(249, 219, 220);
  padding: 2rem;
  margin: 30px 0;
}

/* ------------------------------------
// box
----------------------------------- */
main .txtCenter {
  text-align: center;
}
main .txtRight {
  text-align: right;
}
main .imgFlexRight {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
main .imgFlexRight .detail {
  flex: 1;
}
main .imgFlexRight .image {
  margin-left: 30px;
}
main .imgFloatRight {
  float: right;
  padding: 0 0 10px 10px;
}
main .imgCenter {
  text-align: center;
  margin: 0 0 30px;
}
main .imgCenter p.cap {
  font-size: 1.2rem;
}
main .imgCenter img.border {
  border: 1px solid #EEE;
}
main .movie {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
main .movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  main .imgFlexRight {
    display: block;
  }
  main .imgFlexRight .image {
    margin: 0 0 2rem;
  }
  main .imgFloatRight {
    float: none;
    padding: 10px 0;
    text-align: center;
  }
}

/* ------------------------------------
// btn
----------------------------------- */
.morebutton {
  text-align: center;
}
.morebutton a {
  display: inline-block;
  background: #F2F2F2;
  text-align: center;
  color: #000;
  overflow: hidden;
  padding: 0.8em 3.8em 0.8em 3.8em;
  position: relative;
  transition: 0.3s;
  border-radius: 5px;
}
.morebutton a:hover {
  text-decoration: none;
  background: #222222;
  color: #fff;
}
.morebutton a.wide {
  display: block;
}

.btn01 {
  border: 1px solid #555555;
  border-radius: 5px;
  text-align: center;
  margin-bottom: 5px;
  display: inline-block;
}
.btn01 + .btn01 {
  margin-left: 1rem;
}
.btn01 a {
  display: block;
  text-align: center;
  color: #555555;
  overflow: hidden;
  padding: 0.8em 0.8em 0.8em 1.75em;
  position: relative;
  transition: 0.3s;
}
.btn01 a:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 10px;
  display: block;
  width: 12px;
  height: 12px;
  border: 3px solid;
  border-color: #565656 #565656 transparent transparent;
  transform: rotate(45deg) translateX(-60%);
  transition: 0.3s;
}
.btn01 a:after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  content: "";
  width: 120%;
  height: 100%;
  background: #555555;
  transform-origin: right top;
  transform: skewX(-30deg) scale(0, 1);
  transition: transform 0.3s;
}
.btn01 a:hover {
  color: #FFF;
  text-decoration: none;
}
.btn01 a:hover:before {
  border-color: #FFFFFF #FFFFFF transparent transparent;
}
.btn01 a:hover::after {
  transform-origin: left top;
  transform: skewX(-30deg) scale(1.2, 1.2);
}

.btn02 {
  border-radius: 5px;
  text-align: center;
  display: inline-block;
  position: relative;
}
.btn02:after {
  border-radius: 5px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  content: "";
  width: 100%;
  height: 100%;
  background: #B2B2B2;
  transition: transform 0.3s;
}
.btn02 a, .btn02 span {
  display: block;
  text-align: center;
  color: #000;
  overflow: hidden;
  padding: 0.8em 0.8em 0.8em 1.75em;
  position: relative;
  transition: 0.3s;
  border-radius: 5px;
}
.btn02 a:before, .btn02 span:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 10px;
  display: block;
  width: 12px;
  height: 12px;
  border: 3px solid;
  border-color: #000 #000 transparent transparent;
  transform: rotate(45deg) translateX(-60%);
  transition: 0.3s;
}
.btn02 a:after, .btn02 span:after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  content: "";
  width: 120%;
  height: 100%;
  transform-origin: right top;
  transform: skewX(-30deg) scale(0, 1);
  transition: transform 0.3s;
}
.btn02 a:hover, .btn02 span:hover {
  color: #FFF;
}
.btn02 a:hover:before, .btn02 span:hover:before {
  border-color: #FFFFFF #FFFFFF transparent transparent;
}
.btn02 a:hover::after, .btn02 span:hover::after {
  transform-origin: left top;
  background: #555;
  transform: skewX(-30deg) scale(1.2, 1.2);
}

.btn03 {
  border-radius: 5px;
  text-align: center;
  display: inline-block;
  position: relative;
}
.btn03 span {
  background: #F3F3F3;
  display: block;
  text-align: center;
  color: #000;
  overflow: hidden;
  padding: 0.8em 0.8em 0.8em 1.75em;
  position: relative;
  transition: 0.3s;
  border-radius: 5px;
}

/* <i class="far fa-file-pdf"></i><span>観劇に当たっての注意事項</span></a> */
.btn_PDF {
  border-radius: 5px;
  text-align: center;
  display: inline-block;
  position: relative;
  border: 1px solid #000;
  padding: 0.8em 0.8em 0.8em 3.5rem;
  color: #000;
  transition: 0.3s;
}
.btn_PDF i {
  font-size: 2.44rem;
  color: #C00;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.btn_PDF:hover {
  color: #000;
  background: #CCC;
  text-decoration: none;
}

/* <i class="far fa-window-restore"></i> */
.btn_openwin {
  border: 1px solid #555555;
  border-radius: 5px;
  text-align: center;
  margin-bottom: 5px;
  display: inline-block;
}
.btn_openwin a {
  display: grid;
  grid-template-columns: 1.6rem 1fr;
  gap: 1rem;
  text-align: center;
  color: #555555;
  overflow: hidden;
  padding: 0.8em 0.8em 0.8em 0.8em;
  position: relative;
  transition: 0.3s;
}
.btn_openwin a i {
  font-size: 1.6rem;
  align-self: center;
}
.btn_openwin a:after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  content: "";
  width: 120%;
  height: 100%;
  background: #555555;
  transform-origin: right top;
  transform: skewX(-30deg) scale(0, 1);
  transition: transform 0.3s;
}
.btn_openwin a:hover {
  color: #FFF;
  text-decoration: none;
}
.btn_openwin a:hover::after {
  transform-origin: left top;
  transform: skewX(-30deg) scale(1.2, 1.2);
}

@media screen and (max-width: 767px) {
  .btn01 {
    display: block;
    width: 100%;
  }
  .btn01 + .btn01 {
    margin: 1rem 0;
  }
  .btn_openwin {
    width: 100%;
  }
}
/* ------------------------------------
// top type
----------------------------------- */
main #infosection {
  display: flex;
  justify-content: space-between;
  max-width: 1024px;
  margin: 0 auto;
}
main #infosection > section:first-child {
  width: 65%;
}
main #infosection .cloudfunding {
  max-width: 750px;
}
main #infosection .cloudfunding h3 {
  position: relative;
  background: #C6C0B7;
  padding: 5px 0;
  text-align: center;
  color: #FFF;
  font-size: 1.8rem;
  margin-bottom: 10px;
}
main #infosection .cloudfunding h3:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-top: 10px solid #C6C0B7;
  border-bottom: 0;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}
main #infosection #twitter {
  width: 32%;
  max-height: 500px;
  overflow-y: auto;
}
@media screen and (max-width: 767px) {
  main #infosection {
    display: block;
  }
  main #infosection > section:first-child {
    width: 100%;
  }
  main #infosection #twitter {
    width: 100%;
  }
}
main .topInfo dd {
  margin-bottom: 2rem;
}
main .top_banner {
  margin-bottom: 4rem;
}
main .company {
  margin: 50px 0;
  display: flex;
  justify-content: space-between;
}
main .company li {
  width: 48%;
  position: relative;
  transition: all 0.5s 0s ease;
}
main .company li .thumb {
  z-index: 0;
}
main .company li .name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  line-height: 1;
  font-size: 3rem;
  z-index: 10;
  position: absolute;
  top: 50%;
  left: 0%;
  width: 100%;
  color: #FFF;
  text-align: center;
  transform: translateY(-100%);
  transition: all 0.5s 0s ease;
}
main .company li .detail {
  opacity: 0;
  transition: all 0.5s 0s ease;
  background: rgba(0, 0, 0, 0.8);
  z-index: 100;
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  color: #FFF;
  padding: 2em;
  display: flex;
  align-items: center;
}
main .company li .detail dl dt {
  font-size: 2rem;
  font-weight: bold;
  color: rgb(188, 60, 62);
}
main .company li a:hover .name {
  opacity: 0;
}
main .company li a:hover .detail {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  main .company {
    margin: 50px 0;
    display: block;
    justify-content: space-between;
  }
  main .company li {
    width: 100%;
    margin-bottom: 2rem;
    position: relative;
  }
  main .company li .detail dl dt {
    font-size: 1.6rem;
  }
  main .company li .detail dl dd {
    font-size: 3vw;
  }
}

/* top_vi */
main #top_vi {
  width: 100%;
  margin: 0;
}
main #top_vi .slider-for {
  margin-bottom: 10px;
}
main #top_vi .slider-nav li {
  cursor: pointer;
  position: relative;
}
main #top_vi .slider-nav li img {
  margin: 0 10px;
  z-index: 0;
}
main #top_vi .slider-nav li .textTitle {
  transition: 0.5s;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.8);
  color: #FFF;
  z-index: 10;
  width: 100%;
  height: 100%;
  padding: 5px;
}
main #top_vi .slider-nav li:hover .textTitle {
  opacity: 1;
}
main .nextstagebox {
  border-top: 1px solid #b2b2b2;
  padding-top: 50px;
  margin-top: 3em;
}
@media screen and (max-width: 767px) {
  main #top_vi .slider-nav li .textTitle {
    font-size: 3vw;
  }
}

main #top_vi img,
main #top_vi video,
main .sliderBox iframe {
  width: 100%;
  height: auto;
}
main .slick-slide li {
  position: relative;
  padding-bottom: 56.85%;
  padding-bottom: 56.85%;
  height: 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  main .slider-for .slick-slide li {
    padding-bottom: 100%;
  }
}
main .slick-slide iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ------------------------------------
// photolist
----------------------------------- */
main ul.memberlist {
  display: flex;
  overflow: hidden;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 20px 0 40px;
}
main ul.memberlist li {
  width: 30%;
  margin-bottom: 100px;
}
main ul.memberlist li dl.photo {
  margin-bottom: 1rem;
}
main ul.memberlist li dl.photo dt {
  font-weight: bold;
  font-size: 2.4rem;
  margin-bottom: 1rem;
}
main ul.memberlist li dl.photo dt span {
  display: block;
  font-size: 1.6rem;
}
main ul.memberlist li dl.photo dd {
  position: relative;
}
main ul.memberlist li dl.photo dd .credit {
  text-align: right;
  font-size: 1rem;
}
main ul.memberlist li dl.data dt {
  font-size: 1.8rem;
}
main ul.memberlist li dl.data dt span {
  display: block;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  main ul.memberlist {
    display: flex;
    overflow: hidden;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 20px 0 40px;
  }
  main ul.memberlist li {
    width: 100%;
  }
}
main ul.photolist2 {
  display: flex;
  overflow: hidden;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 20px 0 40px;
}
main ul.photolist2 li {
  width: 48.5%;
  margin-bottom: 0.5%;
  text-align: center;
}
main ul.photolist2.clm3 li {
  width: 33%;
}
main ul.photolist4 {
  display: flex;
  overflow: hidden;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 20px 0 40px;
}
main ul.photolist4 li {
  width: 24.5%;
  margin-bottom: 0.5%;
  text-align: center;
}
main ul.photolist4 li a {
  aspect-ratio: 3/2;
  overflow: hidden;
  display: block;
  vertical-align: bottom;
  position: relative;
}
main ul.photolist4 li a img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
main ul.photolist4.clm3 li {
  width: 33%;
}
@media screen and (max-width: 767px) {
  main ul.photolist4 li {
    width: 49.5%;
    margin-bottom: 0.5%;
    text-align: center;
  }
  main ul.photolist4.clm3 li {
    width: 49.5%;
  }
}
main ul.photolist {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 20px 0 40px;
}
main ul.photolist li {
  margin-bottom: 3rem;
  text-align: center;
}
main ul.photolist li.wide {
  width: 100% !important;
}
main ul.photolist p {
  margin: 1rem 0 0 0;
  text-align: left;
}
main ul.photolist p.photocap {
  text-align: center;
}
main ul.photolist.pl2 li {
  width: 48%;
}
main ul.photolist.pl3 li {
  width: 30%;
}
main ul.photolist.pl4 li {
  width: 24%;
}
main .is-empty {
  height: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  border: none !important;
}
main .clm2 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
main .clm2 > * {
  width: 48%;
}
@media screen and (max-width: 767px) {
  main ul.photolist.pl2 li {
    width: 100%;
  }
  main ul.photolist.pl3 li {
    width: 49%;
  }
  main .clm2 {
    display: block;
  }
  main .clm2 > * {
    width: 100%;
    margin-bottom: 30px;
  }
}

/* ------------------------------------
// contents type
----------------------------------- */
.eventList01 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
  padding: 0 0 50px 0;
  border-bottom: 1px solid #b2b2b2;
}
.eventList01 .thumb {
  width: 25%;
  text-align: center;
}
.eventList01 .detail {
  width: 70%;
}
.eventList01 .detail h2 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  line-height: 1.2;
}
.eventList01 .detail h2 span.sub {
  font-size: 2rem;
}
.eventList01 .detail .date {
  font-size: 1.6rem;
}
.eventList01 .detail p.end {
  margin: 0 0 5px 0;
}
.eventList01 .detail p.end span {
  display: inline-block;
  border: 1px solid #000;
  border-radius: 10px;
  padding: 5px 10px;
  line-height: 1;
  background: #000;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .eventList01 {
    display: block;
    justify-content: space-between;
    margin-bottom: 50px;
    padding: 50px 0 0 0;
    border-top: 1px solid #b2b2b2;
  }
  .eventList01 .thumb {
    width: 100%;
    margin-bottom: 30px;
  }
  .eventList01 .detail {
    width: 100%;
  }
  .eventList01 .detail h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
  }
  .eventList01 .detail .date {
    font-size: 1.6rem;
  }
}
.eventList02 {
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.eventList02 > li {
  width: 30%;
  margin: 0 0% 5% 0;
  border: 1px solid #F2F2F2;
  position: relative;
}
.eventList02 > li:nth-child(3n) {
  margin-right: 0%;
}
.eventList02 > li a {
  display: block;
  color: #555555;
  font-size: 2rem;
  position: relative;
}
.eventList02 > li a dl dt {
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 5px;
}
.eventList02 > li a dl dd {
  font-size: 1.6rem;
}
.eventList02 > li a .thumb {
  aspect-ratio: 3/2;
}
.eventList02 > li a .thumb img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.eventList02 > li a:hover .thumb:before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.72);
  background: rgba(255, 255, 255, 0.6);
  z-index: 5;
}
.eventList02 > li a:hover .thumb:after {
  font-family: "Font Awesome 5 Free";
  content: "\f35a";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  color: #000;
  font-size: 4.4rem;
}
.eventList02 > li a ul.categorylabel {
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: 10;
  padding: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.eventList02 > li a ul.categorylabel li {
  padding: 3px 5px;
  line-height: 1;
  font-size: 9px;
  font-weight: bold;
  background: rgb(103, 45, 46);
  color: #FFF;
  margin: 0 3px 0 0;
  border: 1px solid #F6F6F6;
}
.eventList02 > li .thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  background-color: #F2F2F2;
}
.eventList02 > li .thumb img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.eventList02 > li .title {
  padding: 2rem;
}

@media screen and (max-width: 767px) {
  .eventList02 {
    overflow: hidden;
    display: block;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .eventList02 li {
    width: 100%;
    margin: 0 0 5% 0;
    border: 1px solid #F2F2F2;
  }
  .eventList02 li:nth-child(3n) {
    margin-right: 0%;
  }
  .eventList02 li .thumb {
    min-height: 0;
    background: #F2f2f2;
    position: relative;
  }
  .eventList02 li .thumb a {
    display: block;
    width: 100%;
    height: 100%;
  }
  .eventList02 li .thumb img {
    width: 100%;
    position: relative;
    transform: none;
    top: auto;
    left: auto;
  }
}
.eventList03 {
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.eventList03 li {
  width: 100%;
  margin: 0 0 1rem 0;
  position: relative;
  overflow: hidden;
}
.eventList03 li a {
  transition: 0.5s;
  border: 10px solid #F2F2F2;
  padding: 2.5rem;
  display: block;
  color: #555555;
  font-size: 2rem;
  line-height: 1.2;
}
.eventList03 li a:hover {
  font-size: 2.1rem;
  border: 10px solid #CCC;
}

.workshopList2 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}
.workshopList2 > li {
  width: calc(50% - 1rem);
  display: block;
  border: 1px solid #F2F2F2;
}
.workshopList2 > li a {
  display: grid;
  grid-template-columns: 200px auto;
  align-items: center;
  color: #333;
  gap: 1rem;
}
.workshopList2 > li a:hover {
  text-decoration: none;
}
.workshopList2 > li a .thumb {
  grid-column: 1/2;
}
.workshopList2 > li a .data {
  grid-column: 2/3;
}
.workshopList2 > li a .data p {
  margin-bottom: 0.4rem;
  line-height: 1.2;
}
.workshopList2 > li a .data > div {
  margin-bottom: 0.6rem;
  line-height: 1.2;
}
.workshopList2 > li a .date {
  font-size: 1.2rem;
}
.workshopList2 > li a .title {
  font-size: 2.2rem;
}
.workshopList2 > li a .area {
  width: fit-content;
  background: #EFEFEF;
  padding: 0 1rem;
  font-size: 1.4rem;
}
.workshopList2 > li a .place {
  font-size: 1.4rem;
}

@media screen and (max-width: 1024px) {
  .workshopList2 {
    display: block;
    gap: 2rem;
  }
  .workshopList2 > li {
    width: 100%;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .workshopList2 {
    display: block;
    gap: 2rem;
  }
  .workshopList2 > li {
    width: 100%;
    margin-bottom: 2rem;
  }
  .workshopList2 > li a {
    display: grid;
    grid-template-columns: 25% auto;
    align-items: center;
    gap: 1rem;
  }
  .workshopList2 > li a .data {
    padding: 1rem;
  }
  .workshopList2 > li a .data p {
    margin-bottom: 0.6rem;
    line-height: 1.2;
  }
  .workshopList2 > li a .date {
    font-size: 1.2rem;
  }
  .workshopList2 > li a .title {
    font-size: 2rem;
  }
  .workshopList2 > li a .area {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  .workshopList2 > li a .place {
    font-size: 1.2rem;
  }
}
.workshopList {
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.workshopList > li {
  width: 30%;
  margin: 0 0% 5% 0;
  border: 1px solid #F2F2F2;
  position: relative;
}
.workshopList > li:nth-child(3n) {
  margin-right: 0%;
}
.workshopList > li a {
  display: grid;
  color: #555555;
  font-size: 2rem;
  position: relative;
  display: column;
}
.workshopList > li a .thumb {
  aspect-ratio: 3/2;
}
.workshopList > li a .thumb img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.workshopList > li a:hover {
  text-decoration: none;
}
.workshopList > li a:hover .thumb:before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.72);
  background: rgba(255, 255, 255, 0.6);
  z-index: 5;
}
.workshopList > li a:hover .thumb:after {
  font-family: "Font Awesome 5 Free";
  content: "\f35a";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  color: #000;
  font-size: 4.4rem;
}
.workshopList > li .thumb {
  grid-row: 1;
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  background-color: #F2F2F2;
}
.workshopList > li .thumb img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.workshopList > li p.categorylabel {
  grid-row: 2;
  padding: 2rem 2rem 0 2rem;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0;
  text-decoration: underline;
}
.workshopList > li ul.categorylabel {
  grid-row: 2;
  display: flex;
  justify-content: flex-start;
  gap: 2rem;
  padding: 1rem 2rem 1rem 2rem;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0;
  text-decoration: underline;
}
.workshopList > li .title {
  grid-row: 3;
  padding: 1.5rem 2rem 1.5rem 2rem;
}

@media screen and (max-width: 767px) {
  .workshopList {
    overflow: hidden;
    display: block;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .workshopList > li {
    width: 100%;
    margin: 0 0 5% 0;
    border: 1px solid #F2F2F2;
  }
  .workshopList > li:nth-child(3n) {
    margin-right: 0%;
  }
}
/* 縦積みリスト */
/* ------------------------------------
// gridbox
----------------------------------- */
main .gridbox01 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 100px;
}
main .gridbox01 > * {
  width: 47%;
}
@media screen and (max-width: 767px) {
  main .gridbox01 {
    display: block;
    justify-content: space-between;
    margin-bottom: 100px;
  }
  main .gridbox01 > * {
    width: 100%;
    margin-bottom: 100px;
  }
}

blockquote {
  background: #F2F2F2;
  padding: 30px;
  position: relative;
  margin: 30px 0;
}
blockquote .base {
  font-size: 1.2rem;
  text-align: right;
  font-style: italic;
}
blockquote:before {
  width: 50px;
  height: 50px;
  border-top: 10px solid #CCC;
  border-left: 10px solid #CCC;
  position: absolute;
  left: -5px;
  top: -5px;
  content: "";
  display: block;
}
blockquote:after {
  width: 50px;
  height: 50px;
  border-right: 10px solid #CCC;
  border-bottom: 10px solid #CCC;
  position: absolute;
  right: -5px;
  bottom: -5px;
  content: "";
  display: block;
}

/* ------------------------------------
// tab-wrap
----------------------------------- */
.tab-wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 20px auto;
  max-width: 700px;
}

.tab-wrap:after {
  content: "";
  width: 100%;
  height: 3px;
  background: #325A8C;
  display: block;
  order: -1;
}

.tab-label {
  color: White;
  background: LightGray;
  font-weight: bold;
  white-space: nowrap;
  text-align: center;
  padding: 10px 0.5em;
  order: -1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  border-radius: 5px 5px 0 0;
  flex: 0;
}

.tab-label:not(:last-of-type) {
  margin-right: 5px;
}

.tab-content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
}

.tab-switch:checked + .tab-label {
  background: #325A8C;
}

.tab-switch:checked + .tab-label + .tab-content {
  height: auto;
  overflow: auto;
  padding: 15px;
  opacity: 1;
  transition: 0.5s opacity;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}

.tab-switch {
  display: none;
}

@media screen and (max-width: 767px) {
  .tab-label {
    flex: 1;
    flex-basis: 100%;
  }
  .tab-label:not(:last-of-type) {
    margin-right: 0px;
    margin-bottom: 3px;
  }
}
/* ------------------------------------
// forms
----------------------------------- */
.forms {
  max-width: 600px;
}
.forms .btn > * {
  margin-right: 2em;
}
.forms .btn button {
  border: 1px solid #333;
  border-radius: 4px;
  padding: 5px 10px;
  background: #F2F2F2;
}
.forms .btn input[type=submit] {
  cursor: pointer;
  border: 1px solid #333;
  border-radius: 4px;
  padding: 5px 10px;
  background: #000;
  color: #FFF;
}
.forms .error {
  color: #BC0003;
}
.forms dt {
  font-weight: bold;
  margin-bottom: 5px;
}
.forms dt .hissu {
  display: inline-block;
  font-size: 1.4rem;
  color: #555;
  padding-left: 1rem;
}
.forms dd {
  margin-bottom: 2rem;
}
.forms dd input[type=text], .forms dd input[type=email] {
  width: 100%;
  padding: 10px;
  border: 1px solid #CCC;
}
.forms dd input[type=text].yearold, .forms dd input[type=email].yearold {
  width: 4em;
}
.forms dd textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #CCC;
  height: 10em;
}

/* ------------------------------------
// pager
----------------------------------- */
.pager {
  margin-top: 100px;
  text-align: center;
}
.pager li {
  display: inline-block;
  font-size: 1.8rem;
  line-height: 1;
  margin: 0 6px;
}
.pager li span.current {
  background: #000;
  border: 1px solid #000;
  color: #fff;
  display: inline-block;
  font-weight: 500;
  padding: 0.5em 0.4em;
}
.pager li a {
  border: 1px solid #ddd;
  background: #fff;
  display: inline-block;
  padding: 0.5em 0.4em;
  text-decoration: none;
}
.pager li a:hover {
  background: #F3F3F3;
}
.pager li a.current {
  border: 1px solid #000;
  background: #000;
  display: inline-block;
  color: #fff;
  padding: 0.5em 0.4em;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .pager {
    margin-top: 5rem;
  }
  .pager li {
    font-size: 1.6rem;
    margin: 0 0.5rem;
  }
  .pager li span.current {
    padding: 0.7rem;
  }
  .pager li a {
    padding: 0.7rem;
  }
}

.wrap_movie {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.wrap_movie::before {
  padding-top: 56.25%;
  display: block;
  content: "";
}

.wrap_movie iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/* ------------------------------------
// blog_article
----------------------------------- */
.blog_article h2 {
  margin: 100px 0 20px;
  font-size: 2.8rem;
  line-height: 1.4;
  clear: both;
}
.blog_article p {
  margin-bottom: 2rem;
}
.blog_article .alignright {
  float: right;
  padding: 0 0 1rem 1rem;
}
@media screen and (max-width: 767px) {
  .blog_article h2 {
    margin: 100px 0 20px;
    font-size: 2.4rem;
    line-height: 1.4;
  }
  .blog_article .alignright {
    float: none;
    padding: 0 1rem 1rem 1rem;
    margin: 0 auto;
    width: 100% !important;
  }
}