@charset "utf-8";
/* CSS Document */

/***フォント
font-family: 'Noto Sans JP', sans-serif; wght@400;500;700;900
font-family: 'Noto Serif JP', serif; :wght@600;700;900
***/

/***色
黒　#231815; rgba(35,24,21,1);
***/


/******フェードイン*****/

.fadein {
    animation-name: fadein;
    animation-duration: 3s;
}

@keyframes fadein {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/********リンク********/
a {
    color: #231815;
    text-decoration: none;}
a:hover{}


a:hover img{
  filter: alpha(opacity=70);
  opacity: 0.7;
  zoom: 1.0;
  }

a:hover img{
  opacity: 1;
  -webkit-animation: flash 1.5s;
  animation: flash 1.5s;
}
@-webkit-keyframes flash {
  0% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}
@keyframes flash {
  0% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}

/********マージン、パディング********/

.marTop1em {margin-top: 1em;}
.marTop2em {margin-top: 2em;}
.marTop3em {margin-top: 3em;}
.marTop4em {margin-top: 4em;}
.marTop5em {margin-top: 5em;}
.marRgt1em {margin-right: 1em;}
.marRgt2em {margin-right: 2em;}
.marRgt3em {margin-right: 3em;}
.marRgt4em {margin-right: 4em;}
.marRgt5em {margin-right: 5em;}
.marBtm1em {margin-bottom: 1em;}
.marBtm2em {margin-bottom: 2em;}
.marBtm3em {margin-bottom: 3em;}
.marBtm4em {margin-bottom: 4em;}
.marBtm5em {margin-bottom: 5em;}
.marLft1em {margin-left: 1em;}
.marLft2em {margin-left: 2em;}
.marLft3em {margin-left: 3em;}
.marLft4em {margin-left: 4em;}
.marLft5em {margin-left: 5em;}


/********テキスト********/

.uline {text-decoration: underline;}
.bold {font-weight: bold;}
.italic {font-style: italic;}

.right {text-align: right;}
.left {text-align: left;}
.cen {text-align: center;}


/********共通********/

.floatL {float: left;}
.floatR {float: right;}
.clear {float: clear;}

.clearfix::after{
  content: "";
  display: block;
  clear: both;
}

.hidden {
	display: none;
}

.pk {
    display: inline-block;
}

.anchor {
	display: block;
	margin-top: -100px;
	padding-top: 100px;
}

html {  
	overflow-y:scroll; 
	overflow-x: hidden;
	margin: 0;
	padding: 0;
	font-size: 6.25%; /* sets the base font to 10px for easier math */
 	-webkit-text-size-adjust: none;
} 

body{
	margin: 0;
	padding: 0;
/*	border-top: 5px solid #231815;*/
	font-size: 18em;
	line-height:2;
	color: #231815;
	font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;	
	background-color: #fff;
}

body:before{
	content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100vh;
	background-image: url(../images/bg_pc.jpg);
	background-position:center;
	background-repeat: no-repeat;
	background-attachment:fixed;
	background-size: cover;
	background-color: #f2ede8;
}


@media screen and (max-width: 768px){
	html {font-size: 5%;}
	body {font-size: 16em;}
}


@media screen and (orientation: portrait) and (max-width: 740px) { /**　画面が縦長の時　**/
	body:before {
		background-image: url(../images/bg_smp.jpg);
		background-size: auto;
		background-position: top;
	}
}

/****************************************

　構造

*****************************************/

.wrap{ 
    min-height: 100vh;/*フッター固定用*/
	box-sizing: border-box;/*フッター固定用*/
	position: relative;
	width: 100%;
	margin: 0 auto;
	text-align: center;

}

main{
	padding: 0 1em;
}

.sec {
	max-width: 900px;
	margin: 0 auto;
}


.sponsor {
	width: 90%;
	max-width: 500px;
	margin: 0 auto;
}

.sponsor img {
	display: block;
	width: 100%;
}


/****************************************

　フッター

*****************************************/

/****　ページトップへ戻る　****/


#pagetop{
    position: fixed;
    right: 15px;
    bottom: 30px;
    line-height: 0;
	z-index: 1000;

}

#pagetop a {
	text-decoration: none;
	color: rgba(35,24,21,0.1);
}

#pagetop a::after {
	font-family: "Font Awesome 6 Free";	
	content: "\f139";
	font-weight: 900;
	font-size: 4em;
}


footer{
	width: 100%;
	margin: 10em auto 0;
    padding-bottom: 1em;
	text-align: center;
	font-size: 16rem;
	bottom: 0;
}


footer .copy {
	display: block;
    color: #1e2432;
}

footer .copy li {
	display: inline-block;
	margin: 0 1em;
}

footer .sns_link {
    padding-top: 40px;
}

footer .sns_link li {
    display: inline-block;
    margin: 1em;
    text-align: center;
    vertical-align: top;
}

footer .sns_link li img {
    width: 100%;
}

footer .sns_link li.icon_toho {
    width: 45px;
}

footer .sns_link li.icon_x {
	position: relative;
	top: 5px;
    width: 35px;
}

footer .policy_link {
	display: block;
    margin-bottom: 1em;
}

footer .policy_link .link a {
    display: inline-block;
	margin: 0 1em;
	text-decoration: none;
	color: #231815;
	font-size: 14rem;
	font-weight: 500;
	transition: 0.5s;
}

footer .policy_link .link a:hover {
	color: #231815;
}


/****************************************

　見出し

*****************************************/
/*
.heading_sec {
	margin: 0 auto;
}

.heading_sec .logo {
	display: block;
	max-width: 400px;
	width: 60%;
	margin: 0 auto;
}

.heading_sec .logo img {
	display: block;
	width: 100%;
}
.heading_sec .title {
	display: block;
	margin: 0.5em auto 0;
	font-size: 40rem;
	color: #231815;
}


@media screen and (max-width: 500px){
	.heading_sec .title {
		font-size: 30rem;
	}
}

@media screen and (max-width: 360px){
	.heading_sec .title {
		font-size: 26rem;
	}
}*/



/****************************************

　ヘッダー

*****************************************/

.area_info {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	max-width: 800px;
	margin: 0 auto;
	padding: 2em 1em;
}

.area_info .btn {
	display: block;
	text-decoration: none;
}
.area_info .btn img {
	display: block;
	width: 100%;
}


/****************************************

　トップページ

*****************************************/

.index header {
	width: 80%;
    margin: 2em auto 3em;
}

@media screen and (max-width: 500px){

    .index header {
        padding: 0 1em;
        width: 100%;
    }
}

.index header .area_ban {}

.index header .area_ban .btn_sc {
    display: block;
    max-width: 840px;
    margin: 0 auto 2em;
    padding: 0.5em;
    border: 2px solid #c10536;
    background: #c10536;
    border-radius: 5px;
    font-size: 22rem;
    text-decoration: none;

    color: #fff;

    line-height: 1.5;
    transition: 0.5s;
}

.index header .area_ban .btn_sc:hover {
    background: rgba(255,255,255,0.9);
    color: #c10536;
}

@media screen and (max-width: 500px){
    .index header .area_ban .btn_sc {
        font-size: 20rem;
    }
}

@media screen and (max-width: 380px){
    .index header .area_ban .btn_sc {
        font-size: 18rem;
    }
}

.index header .logo {
	display: block;
	max-width: 800px;
    width: 100%;
	margin: 0 auto;
}

.index header .logo img {
	display: block;
	width: 100%;
}

.index header .sponsor {
	display: block;
	max-width: 500px;
	width: 70%;
	margin: 2em auto 2em;
}

.index header .sponsor img {
	display: block;
	width: 100%;
}

.index header .visual {
	max-width: 900px;
    margin: 0 auto 0;
}

.index header .visual img {
    display: block;
	width: 100%;
	box-shadow: 3px 3px 10px rgba(0,0,0,0.1);
}

.area_intro {
	max-width: 900px;
    margin: 0 auto 2em;
}

.area_intro .box {
	margin: 1em auto 2em;
	font-weight: 500;
}
.area_intro .box .catch {
	margin: 0 auto 1em;
	font-weight: 700;
	font-size: 30rem;
	text-align: center;
}
.area_intro .box .text {
	margin: 0 auto;
	padding: 2em;
	background: rgba(255,255,255,0.8);
	border: 1px solid #231815;
	border-radius: 5px;
	font-weight: 500;
	font-weight: 500;
	font-size: 20rem;
	text-align: left;
}

.area_intro .box .text p:not(:last-of-type) {
	margin-bottom: 1em;
}


.area_intro .box .text p:not(:last-of-type) {
	margin-bottom: 1em;
}

@media screen and (max-width: 600px){

	.area_intro .box .catch {
		font-size: 24rem;
	}
	.area_intro .box .text {
		font-size: 18rem;
	}
}

@media screen and (max-width: 420px){

	.area_intro .box .catch {
		font-size: 20rem;
	}
}

/**********************************************************************

　リンクボタン

**********************************************************************/
.area_link {
    margin-top: 3em;
}

.index .area_link {
    margin: 3em auto;
}
.index .area_link li {
    display: inline-block;
	max-width: 400px;
    width: 100%;
	margin: 0.5em 0.5em 0;
    vertical-align: top;
}
.index .area_link .btn_link {
    position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
    width: 100%;
    min-height: 3em;
	padding: 0.8em 1em;
	border: 1px solid #231815;
    background: #231815;
	border-radius: 3px;
	text-decoration: none;
	color: #fff;
	font-size: 22rem;
	line-height: 1.3;
	font-weight: 500;
	transition: 0.5s;
}

.index .area_link .btn_link:hover {
	background: rgba(255,255,255,0.5);
	color: #231815;
}

.index .area_link .btn_link .lbl {
    display: inline-block;
    margin-left: 0.5em;
    padding: 0.2em 1em;
	background: #c10536;
    border-radius: 1px;
    font-size: 0.7em;
    line-height: 1.3;
    color: #fff;
}
.index .area_link .btn_link .icon {
	position: absolute;
	top: calc(50% - 0.5em);
	right: 1em;
}

@media screen and (max-width: 460px){
    .index .area_link li {
        display: block;
        margin: 0.5em auto 0;
    }
}

.wp .btn_link {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
	max-width: 400px;
    width: 100%;
	margin: 0.5em 0.5em 0;
	padding: 0.8em 1em;
	border: 1px solid #231815;
    background: #231815;
	border-radius: 3px;
	text-decoration: none;
	color: #fff;
	font-size: 22rem;
	line-height: 1.3;
	font-weight: 500;
	transition: 0.5s;
}

.wp .btn_link .icon {
	margin-right: 0.4em;
}

.index .btn_link:hover,
.wp .btn_link:hover {
	background: rgba(255,255,255,0.5);
	color: #231815;
}



/**********************************************************************

　モーダルウィンドウ

**********************************************************************/

.modal-wrapper {
  z-index: 1001;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 60px 10px;
  text-align: center
}

.modal-wrapper:not(:target) {
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}

.modal-wrapper:target {
  opacity: 1;
  visibility: visible;
  transition: opacity .4s, visibility .4s;
}

.modal-wrapper::after {
  display: inline-block;
  height: 100%;
  margin-left: -.05em;
  vertical-align: middle;
  content: ""
}

.modal-wrapper .modal-window {
	box-sizing: border-box;
	display: inline-block;
	z-index: 20;
	position: relative;
	max-width: 800px;
	margin: 0 auto 2em;
	padding: 2em 3em 3em;
	background-color: rgba(255,255,255,0.9);
	border-radius: 5px;
	outline: 2px solid #231815;
	text-align: center;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
}

.modal-wrapper .modal-window .modal-content {
  max-height: 80vh;
  overflow-y: auto;
	padding: 0;
}

.modal-wrapper .modal-window .modal-content::-webkit-scrollbar {
    width: 10px;
}
.modal-wrapper .modal-window .modal-content::-webkit-scrollbar-track {
	background: #fff;
	
}
.modal-wrapper .modal-window .modal-content::-webkit-scrollbar-thumb {
	background: rgba(153,143,133,0.9);
	
}

.modal-overlay {
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .8)
}

.modal-wrapper .modal-close {
  z-index: 20;
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  color: #231815!important;
  font-size: 30px;
  font-weight: 700;
  line-height: 60px;
  text-align: center;
  text-decoration: none;
  text-indent: 0
}

.modal-wrapper .modal-close:hover {
  color: #fff !important
}

@media screen and (max-width: 414px){

    .modal-wrapper .modal-window {
	 padding: 2em 1.5em 1.5em;
    }
}

.prof_text .name {
    display: block;
	margin: 0 auto;
	font-size: 30rem;
    color: #231815;
    font-weight: 500;
}

.prof_text .work {
    display: block;
	margin: 0.5em auto 1em;
    font-size: 20rem;
    color: #231815;
    font-weight: 500;
}

.prof_text .text {
	padding: 0 1em;
    text-align: left;
	color: #231815;
	font-weight:500;
	font-size: 18rem;
}
.prof_text .text ul {
	margin: 1em auto 0;
}
.prof_text .text ul li{
	padding-left: 1em;
	text-indent: -1em;
}
.prof_text .note {
	margin: 1em 0 0;
	font-size: 0.9em;
}

/**********************************************************************

　よくあるご質問

**********************************************************************/

.qa {}

.qa header .logo {
	width: 80%;
	max-width: 300px;
	margin: 0 auto 1em;
}
.qa header .logo img {
	width: 100%;
}
	
.qa header .title {
	font-size: 30rem;
}

.qa .list {
	max-width: 900px;
	margin: 0 auto;
	padding: 2em;
	background: rgba(255,255,255,0.8);
	border: 1px solid #231815;
	border-radius: 5px;
	font-weight: 500;
	text-align: left;
}

.qa .list dt,
.qa .list dd {
	padding: 0.5em;
}

.qa .list dt .lbl,
.qa .list dd .lbl {
	font-weight: 900;
}

.qa .list dt {
	background: rgba(35,24,21,0.1);
}

.qa .list dd {
	margin: 0 auto 1em;
}

.qa .btn_close {
	display: block;
	margin: 2em auto 0;
}



/***************************************************

　動画

**************************************************/
.movie {
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap; 
    margin: 0 auto;
}

.movie.center {
    justify-content: center;
}

.movie .item{
    width: 100%;
    justify-content: center;
	max-width: 800px;
    margin: 0 auto 1em;
    vertical-align: bottom;
	margin-top: auto;
}

.movie .name {
    padding: 0.3em;
    font-size: 18rem;
    color: #231815;
    line-height: 1.3;
	text-align: right;
}

.movie .youtube {
	position: relative;
	height: 0;
	margin-bottom: 0.5em;
	padding-bottom: 56.25%;
	overflow: hidden;
}

.movie .youtube iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%; 
}

@media screen and (max-width: 414px){
    .movie .name {
        font-size: 16rem;
    }
}



/****************************************

　Writing Program

*****************************************/

.wp header {
	width: 80%;
    margin: 2em auto 3em;
}

.wp header .logo {
	display: block;
	max-width: 400px;
    width: 100%;
	margin: 0 auto;
}

.wp header .logo img {
	display: block;
	width: 100%;
}
/*
.wp header .sponsor {
	display: block;
	max-width: 460px;
	width: 60%;
	margin: 1em auto 0;
}

.wp header .sponsor img {
	display: block;
	width: 100%;
}
*/

.wp .area_outline {
	max-width: 900px;
    margin: 0 auto 6em;
}

.wp .area_outline .title {
	display: block;
	margin: 0.5em auto 0;
	font-size: 40rem;
	color: #231815;
}


@media screen and (max-width: 500px){
	.wp .area_outline .title {
		font-size: 30rem;
	}
}

@media screen and (max-width: 360px){
	.wp .area_outline .title {
		font-size: 26rem;
	}
}

.wp .area_outline .box {
	margin: 1em auto 2em;
	padding: 2em;
	background: rgba(255,255,255,0.8);
	border: 1px solid #231815;
	border-radius: 5px;
	font-weight: 500;
}

.wp .area_outline .box .caution2 {
	display: inline-block;
	margin: 0 auto;
	text-align: left;
}

.wp .area_outline .box .caution2 li {
	padding-left: 1em;
	text-indent: -1em;
	line-height: 1.5;
}

.wp .area_outline .logo1 {
	display: block;
	max-width: 100px;
	margin: 0 auto;
}
.wp .area_outline .logo_us {
	display: block;
	max-width: 80px;
	margin: 0 auto;
}
.wp .area_outline .logo_uk {
	display: block;
	max-width: 200px;
	margin: 0 auto;
}

.wp .area_outline .logo img,.wp .area_outline .logo_us img,.wp .area_outline .logo_uk img {
	display: block;
	width: 100%;
}

@media screen and (max-width: 900px){
	.wp .area_outline .box {
		padding: 2em 2em;
	}
}

@media screen and (max-width: 480px){
	.wp .area_outline .box {
		padding: 2em 1em;
	}
}

.wp .area_outline .way {
	margin: 0 auto;
	text-align: left;
}

.wp .area_outline .way a {
    color: #231815;
	text-decoration: none;
	font-weight: 900;

}

.wp .area_outline .way .s {
	font-size: 0.9em;
    font-weight: 900
}


.wp .area_outline .way > dt{
	padding:0.5em 0;
	background: rgba(35,24,21,0.1);
	color: #231815;
	font-weight: 500;
    font-size: 22rem;
    text-align: center;
	line-height: 1.5;
}

.wp .area_outline .way > dd{
	padding: 2em 1em;
	border-top: none;	
	text-align: center;
	font-size: 18rem;
}

.wp .area_outline .way .list {
	display: inline-block;
	margin: 0 auto 1em;
	text-align: left;
}

.wp .area_outline .way .note {
	font-size: 0.9em;
}

/***　講師　***/
.wp .area_outline .way .koshi {}
.wp .area_outline .way .koshi .list {
	text-align: center;
	line-height: 1.8;
}
.wp .area_outline .way .koshi .list li {
	display: inline-block;
	margin: 0 1em;
}
.wp .area_outline .way .koshi .list li:not(:last-of-type) {
	margin-bottom: 1em;
}
.wp .area_outline .way .koshi .name  {
	display: block;
	font-size: 24rem;
}

.wp .area_outline .way .koshi .work  {
	display: block;
	font-feature-settings: "palt";
	font-size: 0.9em;
}

.wp .area_outline .way .koshi .btn_prof {
	display: inline-block;
	margin: 0.5em auto 0;
	padding: 0.3em 2em;
	border: 1px solid #231815;
	border-radius: 2px;
	font-size: 0.9em;
	line-height: 1;
	font-size: 0.8em;
	font-weight: 700;
	color: #231815;
}

/***　応募資格・必要書類　***/
.wp .area_outline .way .list_detail {
	margin: 0 auto 0;
	text-align: left;
}

.wp .area_outline .way .list_detail dt,
.wp .area_outline .way .list_detail dd {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.wp .area_outline .way .list_detail > dt {
	width: 100%;
	padding: 0.5em;
	border: 1px solid #231815;
	text-align: center;
}

.wp .area_outline .way .list_detail > dt:not(:first-child) {
	margin-top: 1em;
}

.wp .area_outline .way .list_detail > dd {
	width: 100%;
	padding: 1em 2em;
	border: 1px solid #231815;
	border-top: none;
}

.wp .area_outline .way .list_detail dl dd:not(:last-of-type) {
	margin-bottom: 1em;
}

.wp .area_outline .way .list_detail dl > ul > li {
	padding-left: 1em;
	text-indent: -1em;
	line-height: 1.5;
}

.wp .area_outline .way .list_detail dl > ul > li:not(:last-of-type) {
	margin-bottom: 0.5em;
}

.wp .area_outline .way .list_detail .note2 {
	margin-left: 1em;
	font-size: 0.9em;
}
.wp .area_outline .way .list_detail .note2 li {
	padding-left: 1em;
	text-indent: -1em;
}
.wp .area_outline .way .list_detail .note_pair {
	margin-top: 1em;
	padding: 1em;
	border-top: 1px dotted #000;
	font-size: 0.9em;
	line-height: 1.5;
}


/***　結果通知　***/
.wp .area_outline .way .kekka .day{
}
/*.wp .area_outline .way .kekka .day .s{
	font-size: 0.8em;
	font-weight: normal;
}*/
.wp .area_outline .way .kekka .caution {
	margin: 1em auto 0;	
}

.wp .area_outline .way .kekka .caution li {
	padding-left: 1em;
	text-indent: -1em;
	font-size: 0.9em;
	line-height: 1.5;
	text-align: left;
}

.wp .area_outline .way .kekka .caution li:not(:last-of-type) {
	margin-bottom: 0.5em;
}

/***　その他　***/
.wp .area_outline .way .other .list li {
	padding-left: 1em;
	text-indent: -1em;
	text-align: left;
	line-height: 1.5;
}
.wp .area_outline .way .other .list li:not(:last-of-type) {
	margin-bottom: 0.5em;
}

/***　応募方法　***/
.wp .area_outline .way .btn_entry {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	max-width: 450px;
	margin: 0 auto;
	padding: 0.8em 2em;
	border-radius: 3px;
	background: #231815;
	color: #fff;
	text-decoration: none;
	font-size: 20rem;
	transition: 0.5s;
	font-weight: 500;
	line-height: 1.5;
}

.wp .area_outline .way .btn_entry .icon {
	margin-right: 0.3em;
}

.wp .area_outline .way .btn_entry:hover {
	background: rgba(35,24,21,0.3);
	color: #231815;
}


/***　問い合わせ　***/

.wp .area_outline .way .contact {}

.wp .area_outline .way .contact .office {
	display: block;
}

.wp .area_outline .way .contact .charge {
	display: block;
}

.wp .area_outline .way .contact .icon {
	margin-right: 0.2em;
}

.wp .area_outline .way .btn_qa {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	max-width: 300px;
	margin: 0.5em auto 0;
	padding: 0.8em 1em;
	border: 1px solid#231815;
	background: rgba(255,255,255,0.5);
	border-radius: 3px;
	text-decoration: none;
	color: #231815;
	font-size: 18rem;
	line-height: 1;
	font-weight: 500;
	transition: 0.5s;
}

.wp .area_outline .way .btn_qa .icon {
	margin-right: 0.2em;
}

@media screen and (max-width: 414px){}


/****************************
    SHOW CASE
****************************/

.sc header {
	width: 80%;
    margin: 2em auto 3em;
}

.sc header .logo {
	display: block;
	max-width: 400px;
    width: 100%;
	margin: 0 auto;
}

.sc header .logo img {
	display: block;
	width: 100%;
}
/*
.sc header .sponsor {
	display: block;
	max-width: 460px;
	width: 60%;
	margin: 1em auto 0;
}

.sc header .sponsor img {
	display: block;
	width: 100%;
}
*/

.sc .area_outline {
	max-width: 900px;
    margin: 0 auto 6em;
}

.sc .area_outline .title {
	display: block;
	margin: 0.5em auto 0;
	font-size: 40rem;
	color: #231815;
}


@media screen and (max-width: 500px){
	.sc .area_outline .title {
		font-size: 30rem;
	}
}

@media screen and (max-width: 360px){
	.sc .area_outline .title {
		font-size: 26rem;
	}
}

.sc .area_outline .box {
	margin: 1em auto 2em;
	padding: 2em;
	background: rgba(255,255,255,0.8);
	border: 1px solid #231815;
	border-radius: 5px;
	font-weight: 500;
}

.sc .area_outline .box .caution2 {
	display: inline-block;
	margin: 0 auto;
	text-align: left;
}

.sc .area_outline .box .caution2 li {
	padding-left: 1em;
	text-indent: -1em;
	line-height: 1.5;
}

.sc .area_outline .logo1 {
	display: block;
	max-width: 100px;
	margin: 0 auto;
}
.sc .area_outline .logo_us {
	display: block;
	max-width: 80px;
	margin: 0 auto;
}
.sc .area_outline .logo_uk {
	display: block;
	max-width: 200px;
	margin: 0 auto;
}

.sc .area_outline .logo img,.sc .area_outline .logo_us img,.sc .area_outline .logo_uk img {
	display: block;
	width: 100%;
}

@media screen and (max-width: 900px){
	.sc .area_outline .box {
		padding: 2em 2em;
	}
}

@media screen and (max-width: 480px){
	.sc .area_outline .box {
		padding: 2em 1em;
	}
}

.sc .area_outline .way {
	margin: 0 auto;
	text-align: left;
}

.sc .area_outline .way a {
    color: #231815;
	text-decoration: none;
	font-weight: 900;

}

.sc .area_outline .way .s {
	font-size: 0.9em;
    font-weight: 900
}


.sc .area_outline .way > dt{
	padding:0.5em 0;
	background: rgba(35,24,21,0.1);
	color: #231815;
	font-weight: 500;
    font-size: 22rem;
    text-align: center;
	line-height: 1.5;
}

.sc .area_outline .way > dd{
	padding: 2em 1em;
	border-top: none;	
	text-align: center;
	font-size: 18rem;
}

.sc .area_outline .way .list {
	display: inline-block;
	margin: 0 auto 1em;
	text-align: left;
}

.sc .area_outline .way .note {
	font-size: 0.9em;
}
.sc .area_outline .lead {
	padding: 1em 1em 2.5em;
	text-align: left;
}


/****　writer　****/

.sc .area_outline .lead .list_writer {
	margin: 1em auto 0;
	text-align: center;
}
.sc .area_outline .lead .list_writer caption {
	font-weight: 400;
}
.sc .area_outline .lead .list_writer caption::before {
	content: "《";
	margin-right: 0.5em;
}
.sc .area_outline .lead .list_writer caption::after {
	content: "》";
	margin-left: 0.5em;
}
.sc .area_outline .lead .list_writer th,
.sc .area_outline .lead .list_writer td {
	padding: 0.8em 0.5em;
	border: 1px solid rgba(35,24,21,0.5);
	font-weight: 400;
	line-height: 1.5;
	font-size: 0.9em;
}
.sc .area_outline .lead .list_writer th {
	width: 8em;
	text-align: center;
}
.sc .area_outline .lead .list_writer .name li {
	display: inline-block;
}

.sc .area_outline .lead .list_writer .name li:not(:last-of-type)::after {
	content: "／";
	margin: 0 0.2em;
}
.sc .area_outline .lead .list_writer .name.palt {
	font-feature-settings: "palt";
}
.sc .area_outline .lead .list_writer .writer_txt {
	margin: 0 auto 1.5em;
}


@media screen and (max-width: 400px){
	.sc .area_outline .lead .list_writer th {
		width:inherit;
		white-space: nowrap;
	}
}

@media screen and (max-width: 350px){
	.sc .area_outline .lead .list_writer th,
	.sc .area_outline .lead .list_writer td {
		padding: 0.8em 1em;
	}
	.sc .area_outline .lead .list_writer .name li {
/*		display: block;
		margin: 0;*/
	}
}
/*.sc .area_outline .lead .writer {
	margin: 1em auto 0;
	padding: 1em;
	border-top: 1px solid rgba(35,24,21,0.2);
	text-align: left;
}

.sc .area_outline .lead .writer > dt {}

.sc .area_outline .lead .list_writer {}

.sc .area_outline .lead .list_writer dt,
.sc .area_outline .lead .list_writer dd {
	display: inline-block;
}

.sc .area_outline .lead .list_writer dd {
}
.sc .area_outline .lead .list_writer dd:not(:last-of-type) {
	margin-bottom: 0.5em;
}

.sc .area_outline .lead .list_writer .name {}

.sc .area_outline .lead .list_writer .name li {
	display: inline-block;
	margin: 0 0.5em;
}

.sc .area_outline .lead .list_writer .name.palt {
}

@media screen and (max-width: 580px){
	.sc .area_outline .lead .list_writer .name.usa .pk {
		display: inline;
	}
}
@media screen and (max-width: 380px){
	.sc .area_outline .lead .list_writer .name.palt {
		font-feature-settings: "palt";
	}
}
@media screen and (max-width: 350px){
	.sc .area_outline .lead .list_writer .name.palt {
		font-feature-settings: normal;
	}
	.sc .area_outline .lead .list_writer .name li {
		display: block;
		margin: 0 auto;
	}
}*/



.sc .area_outline .way .list_cast li {
	display: inline-block;
	margin: 0 0.5em;
}

.sc .area_outline .way .list_cast li.note {
	font-size: 0.8em;
}

@media screen and (max-width: 600px){
	.sc .area_outline .way .list_cast .pk {
		display: inline;
	}
}
@media screen and (max-width: 350px){
	.sc .area_outline .way .list_cast:not(:last-of-type) {
		margin-bottom: 1em;
	}
	.sc .area_outline .way .list_cast li {
		display: block;
	}
}

/****　お問い合わせ　****/

.sc .area_outline .way .contact .tel {
	display: inline-block;
	text-decoration: none;
	color: #231815;
}

.sc .area_outline .btn {
	display: block;
	padding: 1em;
	border: 1px solid rgba(35,24,21,0.9);
	border-radius: 5px;
	line-height: 1.8;
	font-size: 20rem;
	font-weight: 900;
}
.sc .area_outline .btn .text .shimekiri {
	padding: 0 1em;
	border-top: 1px solid #c10536;
	border-bottom: 1px solid #c10536;
	color: #c10536;
	font-size: 0.8em;
}

.sc .area_outline .btn .entry {
	display: block;
	max-width: 200px;
	margin: 1em auto 0;
	padding: 0.3em 2em;
	background: #c10536;
	border-radius: 2em;
	font-weight: 700;
	color: #fff;
}

.sc .area_outline .btn .entry.close {
	display: block;
	margin: 0 auto;
	background: none;
/*	max-width: 200px;
	margin: 1em auto 0;
	padding: 0.3em 2em;
	background: #c10536;
	border-radius: 2em;*/
	font-weight: 700;
	color: #231815;
	font-size: 0.8em;
}

@media screen and (max-width: 330px){
	.sc .area_outline .btn {
		font-size: 18rem;
	}
}

@media screen and (max-width: 300px){
	.sc .area_outline .btn .text .shimekiri {
		border-top: none;
		border-bottom: none;
	}
}

/***　チケット情報　***/
.sc .area_outline .list_ticket {}

.sc .area_outline .list_ticket {
	margin: 0 auto 0;
}
.sc .area_outline .list_ticket .head {
	margin: 0 auto 2em;
}

.sc .area_outline .list_ticket .caution {
	margin: 0 auto;
	font-size: 0.9em;
	text-align: left;
}
.sc .area_outline .list_ticket .caution li {
	padding-left: 1em;
	text-indent: -1em;
}
.sc .area_outline .list_ticket .caution li a {
	font-weight: 500;
	text-decoration: underline;
}

.sc .area_outline .list_ticket dt,
.sc .area_outline .list_ticket dd {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.sc .area_outline .list_ticket dt {
	width: 100%;
	padding: 0.5em;
	border: 1px solid #231815;
	text-align: center;
}

.sc .area_outline .list_ticket dt:not(:first-child) {
	margin-top: 1em;
}

.sc .area_outline .list_ticket dd {
	width: 100%;
	padding: 1em 2em;
	border: 1px solid #231815;
	border-top: none;
}
.sc .area_outline .list_ticket dd .caution {
	margin-top: 1em;
}

@media screen and (max-width: 400px){
	.sc .area_outline .list_ticket dd {
		padding: 1em;
	}
}

.sc .area_outline .list_ticket .price .note {
	display: inline-block;
	font-size: 0.9em;
}

.sc .area_outline .list_ticket .start {}
.sc .area_outline .list_ticket .start .lbl {
	display: inline-block;
}
.sc .area_outline .list_ticket .start .day {
	display: inline-block;
}
.sc .area_outline .way .stage_day .btn {
	display: inline-block;
	max-width: 12em;
	width: 100%;
	margin: 0.5em 0.25em 0;
	padding: 0.3em 2em;
	border: 1px solid #231815;
	border-radius: 2px;
	line-height: 1;
	font-size: 0.8em;
	font-weight: 700;
	color: #231815;
}
.sc .area_outline .way .theater .btn {
	display: inline-block;
	max-width: 12em;
	width: 100%;
	margin: 0.5em 0.25em 0;
	padding: 0.3em 2em;
	border: 1px solid #231815;
	border-radius: 2px;
	line-height: 1;
	font-size: 0.8em;
	font-weight: 700;
	color: #231815;
}

.sc .area_outline .way .toho_navi .btn {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	max-width: 400px;
	margin: 0.5em auto 0;
	padding: 0.5em 0;
	border-radius: 3px;
	background: #231815;
	color: #fff;
	text-decoration: none;
	font-size: 24rem;
	transition: 0.5s;
	font-weight: 500;
}

.sc .area_outline .way .toho_navi .btn .icon {
	margin-right: 0.3em;
}

.sc .area_outline .way .toho_navi .btn:hover {
	background: rgba(35,24,21,0.3);
	color: #231815;
}


@media screen and (max-width: 500px){
	.sc .area_outline .way .stage_day .btn {
		padding: 0.3em 0.5em;
	}
	.sc .area_outline .way .theater .btn {
		padding: 0.3em 0.5em;
	}
}

@media screen and (max-width: 400px){

	.sc .area_outline .way .toho_navi .btn {
		font-size: 20rem;
	}
}

@media screen and (max-width: 370px){
	.sc .area_outline .way .stage_day .btn {
		display: block;
		width: 80%;
		max-width: inherit;
		margin: 1em auto 0;
		padding: 0.8em 0;
	}
	.sc .area_outline .way .theater .btn {
		display: block;
		width: 80%;
		max-width: inherit;
		margin: 0.5em auto 0;
		padding: 0.8em 0;
	}
	.sc .area_outline .way .theater .btn:first-of-type {
		margin-top: 1em;
	}
}

.sc .area_outline .way .tele {}

.sc .area_outline .way .tele .office {
	display: inline-block;
	margin: 0 0.5em;
}

.sc .area_outline .way .tele .tel {
	display: inline-block;
	margin: 0 0.5em;
}

.sc .area_outline .way .tele .tel a {
	text-decoration: none;
	color: #231815;
}

.sc .area_outline .credit {
	display: inline-block;
	margin: 0 auto 3em;
	line-height: 1.5;
	font-size: 0.85em;
	text-align: left;
}

.sc .area_outline .credit .list_credit {}

.sc .area_outline .credit .list_credit li:nth-child(2) {
	margin-top: 1em;
}

/**********************************************************************

　リンクボタン

**********************************************************************/

.sc .btn_link {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	max-width: 500px;
    width: 100%;
	margin: 0.5em auto 0;
	padding: 0.8em 1em;
	border: 1px solid #231815;
    background: #231815;
	border-radius: 3px;
	text-decoration: none;
	color: #fff;
	font-size: 20rem;
	line-height: 1.3;
	font-weight: 500;
	transition: 0.5s;
}

.sc .btn_link .icon {
	margin-right: 0.4em;
}

.sc .btn_link:hover {
	background: rgba(255,255,255,0.5);
	color: #231815;
}


